/** @file Header file for Platform Smm driver. Copyright (c) 1999 - 2017, 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 _PLATFORM_H #define _PLATFORM_H #include #include #include #include #include #include #include #include #include #include #include #include "Protocol/GlobalNvsArea.h" #include #include #include #include #include #include "ScAccess.h" #include "CpuRegs.h" #include "CmosMap.h" #include "PlatformBaseAddresses.h" #include "SaRegs.h" #include #include #include #include #include #include #include #include #include #include #include #include #include typedef struct { UINT8 Register; UINT8 Function; UINT8 Device; UINT8 Bus; UINT32 ExtendedRegister; } SMM_PCI_IO_ADDRESS; typedef struct { CHAR8 BoardAaNumber[7]; UINTN BoardFabNumber; } BOARD_AA_NUMBER_DECODE; // // BugBug -- Need to get these two values from acpi.h, but right now, they are // declared in platform-specific variants of this file, so no easy // way to pick-up the include file and work across platforms. // Need these definitions to go into a file like common\acpi.h. // #define ACPI_ENABLE 0xA0 #define ACPI_DISABLE 0xA1 #define SMI_SET_SMMVARIABLE_PROTOCOL 0x51 // this is used in Cpu\Pentium\Smm\Base\SmmBase.c #define SMI_CMD_GET_MSEG_STATUS 0x70 #define SMI_CMD_UPDATE_MSEG_SIZE 0x71 #define SMI_CMD_LOAD_STM 0x72 #define SMI_CMD_UNLOAD_STM 0x73 #define SMI_CMD_GET_SMRAM_RANGES 0x74 #define PCAT_RTC_ADDRESS_REGISTER 0x74 #define PCAT_RTC_DATA_REGISTER 0x75 #define RTC_ADDRESS_SECOND 0x00 #define RTC_ADDRESS_SECOND_ALARM 0x01 #define RTC_ADDRESS_MINUTE 0x02 #define RTC_ADDRESS_MINUTE_ALARM 0x03 #define RTC_ADDRESS_HOUR 0x04 #define RTC_ADDRESS_HOUR_ALARM 0x05 #define RTC_ADDRESS_REGISTER_A 0x0A #define RTC_ADDRESS_REGISTER_B 0x0B #define RTC_ADDRESS_REGISTER_C 0x0C #define RTC_ADDRESS_REGISTER_D 0x0D #define B_RTC_ALARM_INT_ENABLE 0x20 #define B_RTC_ALARM_INT_STATUS 0x20 #define B_RTC_DATE_ALARM_MASK 0x3F #define PCAT_CMOS_2_ADDRESS_REGISTER 0x72 #define PCAT_CMOS_2_DATA_REGISTER 0x73 // // Callback function prototypes // EFI_STATUS EFIAPI PowerButtonCallback ( IN EFI_HANDLE DispatchHandle, IN CONST VOID *DispatchContext, IN OUT VOID *CommBuffer OPTIONAL, IN UINTN *CommBufferSize OPTIONAL ); EFI_STATUS EFIAPI S5SleepWakeOnLanCallBack ( IN EFI_HANDLE DispatchHandle, IN CONST VOID *DispatchContext, IN OUT VOID *CommBuffer OPTIONAL, IN UINTN *CommBufferSize OPTIONAL ); EFI_STATUS EFIAPI S5SleepAcLossCallBack ( IN EFI_HANDLE DispatchHandle, IN CONST VOID *DispatchContext, IN OUT VOID *CommBuffer OPTIONAL, IN UINTN *CommBufferSize OPTIONAL ); EFI_STATUS EFIAPI S4S5CallBack ( IN EFI_HANDLE DispatchHandle, IN CONST VOID *DispatchContext, IN OUT VOID *CommBuffer OPTIONAL, IN UINTN *CommBufferSize OPTIONAL ); EFI_STATUS EFIAPI EnableAcpiCallback ( IN EFI_HANDLE DispatchHandle, IN CONST VOID *DispatchContext, IN OUT VOID *CommBuffer OPTIONAL, IN UINTN *CommBufferSize OPTIONAL ); EFI_STATUS EFIAPI DisableAcpiCallback ( IN EFI_HANDLE DispatchHandle, IN CONST VOID *DispatchContext, IN OUT VOID *CommBuffer OPTIONAL, IN UINTN *CommBufferSize OPTIONAL ); EFI_STATUS EFIAPI SmmReadyToBootCallback ( IN EFI_HANDLE DispatchHandle, IN CONST VOID *DispatchContext, IN OUT VOID *CommBuffer OPTIONAL, IN UINTN *CommBufferSize OPTIONAL ); VOID EFIAPI DummyTco1Callback ( IN EFI_HANDLE DispatchHandle, IN EFI_SMM_ICHN_DISPATCH_CONTEXT *DispatchContext ); VOID EFIAPI PmeCallback ( IN EFI_HANDLE DispatchHandle, IN EFI_SMM_ICHN_DISPATCH_CONTEXT *DispatchContext ); VOID EFIAPI PerrSerrCallback ( IN EFI_HANDLE DispatchHandle, IN EFI_SMM_ICHN_DISPATCH_CONTEXT *DispatchContext ); VOID EFIAPI EnableWatchdogCallback ( IN EFI_HANDLE DispatchHandle, IN EFI_SMM_ICHN_DISPATCH_CONTEXT *DispatchContext ); VOID SetAfterG3On ( BOOLEAN Enable ); VOID TurnOffVregUsb ( ); EFI_STATUS EFIAPI SxSleepEntryCallBack ( IN EFI_HANDLE DispatchHandle, IN CONST VOID *DispatchContext, IN OUT VOID *CommBuffer OPTIONAL, IN UINTN *CommBufferSize OPTIONAL ); EFI_STATUS SaveRuntimeScriptTable ( IN EFI_SMM_SYSTEM_TABLE2 *Smst ); EFI_STATUS EFIAPI TpmPtsSmbsCallback ( IN EFI_HANDLE DispatchHandle, IN CONST VOID *DispatchContext, IN OUT VOID *CommBuffer OPTIONAL, IN UINTN *CommBufferSize OPTIONAL ); #endif