/** @file Multiplatform initialization header file. This file includes package header files, library classes. Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at http://opensource.org/licenses/bsd-license.php. THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. **/ #ifndef _AURORA_MULTIPLATFORM_LIB_H_ #define _AURORA_MULTIPLATFORM_LIB_H_ #define LEN_64M 0x4000000 // // Default PCI32 resource size // #define RES_MEM32_MIN_LEN 0x38000000 #define RES_IO_BASE 0x0D00 #define RES_IO_LIMIT 0xFFFF #include #include #include "CMOSMap.h" #include "CpuRegs.h" #include "Platform.h" #include "PlatformBaseAddresses.h" #include "PlatformBootMode.h" #include "ScAccess.h" #include "SetupMode.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define EFI_ACPI_OEM_ID_DEFAULT SIGNATURE_64('I', 'N', 'T', 'E', 'L', ' ', ' ', ' ') // max 6 chars #define EFI_ACPI_OEM_ID1 SIGNATURE_64('I', 'N', 'T', 'E', 'L', '1', ' ', ' ') // max 6 chars #define EFI_ACPI_OEM_ID2 SIGNATURE_64('I', 'N', 'T', 'E', 'L', '2', ' ', ' ') // max 6 chars #define EFI_ACPI_OEM_TABLE_ID_DEFAULT SIGNATURE_64('E', 'D', 'K', '2', ' ', ' ', ' ', ' ') #define EFI_ACPI_OEM_TABLE_ID1 SIGNATURE_64('E', 'D', 'K', '2', '_', '1', ' ', ' ') #define EFI_ACPI_OEM_TABLE_ID2 SIGNATURE_64('E', 'D', 'K', '2', '_', '2', ' ', ' ') // // Default Vendor ID and Subsystem ID // #define SUBSYSTEM_VENDOR_ID1 0x8086 #define SUBSYSTEM_DEVICE_ID1 0x1999 #define SUBSYSTEM_SVID_SSID1 (SUBSYSTEM_VENDOR_ID1 + (SUBSYSTEM_DEVICE_ID1 << 16)) #define SUBSYSTEM_VENDOR_ID2 0x8086 #define SUBSYSTEM_DEVICE_ID2 0x1888 #define SUBSYSTEM_SVID_SSID2 (SUBSYSTEM_VENDOR_ID2 + (SUBSYSTEM_DEVICE_ID2 << 16)) #define SUBSYSTEM_VENDOR_ID 0x8086 #define SUBSYSTEM_DEVICE_ID 0x1234 #define SUBSYSTEM_SVID_SSID (SUBSYSTEM_VENDOR_ID + (SUBSYSTEM_DEVICE_ID << 16)) // // MaxPkgCState identifier. // #define MAX_PKG_CSTATE_C0 0x00 #define MAX_PKG_CSTATE_C1 0x01 #define MAX_PKG_CSTATE_C2 0x02 EFI_STATUS AuroraGetPlatformInfoHob ( IN CONST EFI_PEI_SERVICES **PeiServices, OUT EFI_PLATFORM_INFO_HOB **PlatformInfoHob ); EFI_STATUS AuroraMultiPlatformGpioTableInit ( IN CONST EFI_PEI_SERVICES **PeiServices, IN EFI_PLATFORM_INFO_HOB *PlatformInfoHob ); EFI_STATUS AuroraMultiPlatformGpioProgram ( IN CONST EFI_PEI_SERVICES **PeiServices, IN EFI_PLATFORM_INFO_HOB *PlatformInfoHob ); EFI_STATUS AuroraMultiPlatformInfoInit ( IN CONST EFI_PEI_SERVICES **PeiServices, IN OUT EFI_PLATFORM_INFO_HOB *PlatformInfoHob ); EFI_STATUS AuroraInitializeBoardOemId ( IN CONST EFI_PEI_SERVICES **PeiServices, IN EFI_PLATFORM_INFO_HOB *PlatformInfoHob ); EFI_STATUS AuroraInitializeBoardSsidSvid ( IN CONST EFI_PEI_SERVICES **PeiServices, IN EFI_PLATFORM_INFO_HOB *PlatformInfoHob ); VOID DumpMux ( VOID ); EFI_STATUS EFIAPI SetupTypecMuxAux ( VOID ); #endif