QuarkSocPkg: Add new package for Quark SoC X1000
Changes for V4 ============== 1) Remove Unicode character from C source file 2) Move delete of QuarkSocPkg\QuarkNorthCluster\Binary\QuarkMicrocode from QuarkPlatformPkg commit to QuarkSocPkg commit Changes for V2 ============== 1) Sync with new APIs in SmmCpuFeaturesLib class 2) Use new generic PCI serial driver PciSioSerialDxe in MdeModulePkg 3) Remove PCI serial driver from QuarkSocPkg 4) Apply optimizations to MtrrLib from MtrrLib in UefiCpuPkg 5) Convert all UNI files to utf-8 6) Replace tabs with spaces and remove trailing spaces 7) Add License.txt Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Michael Kinney <michael.d.kinney@intel.com> Acked-by: Jordan Justen <jordan.l.justen@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19286 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -0,0 +1,382 @@
|
||||
/** @file
|
||||
This is the driver that publishes the SMM Access Ppi
|
||||
instance for the Quark SOC.
|
||||
|
||||
Copyright (c) 2013-2015 Intel Corporation.
|
||||
|
||||
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.
|
||||
|
||||
**/
|
||||
#include <PiPei.h>
|
||||
#include <Ppi/SmmAccess.h>
|
||||
#include <Guid/SmramMemoryReserve.h>
|
||||
#include <Library/BaseMemoryLib.h>
|
||||
#include <Library/MemoryAllocationLib.h>
|
||||
#include <Library/DebugLib.h>
|
||||
#include <Library/HobLib.h>
|
||||
#include <Library/PciLib.h>
|
||||
#include <Library/PeiServicesLib.h>
|
||||
#include <Library/QNCSmmLib.h>
|
||||
#include <QNCAccess.h>
|
||||
|
||||
#define SMM_ACCESS_PRIVATE_DATA_FROM_THIS(a) \
|
||||
CR ( \
|
||||
a, \
|
||||
SMM_ACCESS_PRIVATE_DATA, \
|
||||
SmmAccess, \
|
||||
SMM_ACCESS_PRIVATE_DATA_SIGNATURE \
|
||||
)
|
||||
|
||||
#define MAX_CPU_SOCKET 1
|
||||
#define MAX_SMRAM_RANGES 4
|
||||
|
||||
typedef struct {
|
||||
UINTN Signature;
|
||||
EFI_HANDLE Handle;
|
||||
PEI_SMM_ACCESS_PPI SmmAccess;
|
||||
UINTN NumberRegions;
|
||||
EFI_SMRAM_DESCRIPTOR SmramDesc[MAX_SMRAM_RANGES];
|
||||
UINT8 TsegSize;
|
||||
UINT8 MaxBusNumber;
|
||||
UINT8 SocketPopulated[MAX_CPU_SOCKET];
|
||||
UINT8 SocketBusNum[MAX_CPU_SOCKET];
|
||||
} SMM_ACCESS_PRIVATE_DATA;
|
||||
|
||||
#define SMM_ACCESS_PRIVATE_DATA_SIGNATURE SIGNATURE_32 ('i', 's', 'm', 'a')
|
||||
|
||||
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
Open (
|
||||
IN EFI_PEI_SERVICES **PeiServices,
|
||||
IN PEI_SMM_ACCESS_PPI *This,
|
||||
IN UINTN DescriptorIndex
|
||||
)
|
||||
/*++
|
||||
|
||||
Routine Description:
|
||||
|
||||
This routine accepts a request to "open" a region of SMRAM. The
|
||||
region could be legacy ABSEG, HSEG, or TSEG near top of physical memory.
|
||||
The use of "open" means that the memory is visible from all PEIM
|
||||
and SMM agents.
|
||||
|
||||
Arguments:
|
||||
|
||||
PeiServices - General purpose services available to every PEIM.
|
||||
This - Pointer to the SMM Access Interface.
|
||||
DescriptorIndex - Region of SMRAM to Open.
|
||||
|
||||
Returns:
|
||||
|
||||
EFI_SUCCESS - The region was successfully opened.
|
||||
EFI_DEVICE_ERROR - The region could not be opened because locked by
|
||||
chipset.
|
||||
EFI_INVALID_PARAMETER - The descriptor index was out of bounds.
|
||||
|
||||
--*/
|
||||
{
|
||||
SMM_ACCESS_PRIVATE_DATA *SmmAccess;
|
||||
|
||||
SmmAccess = SMM_ACCESS_PRIVATE_DATA_FROM_THIS (This);
|
||||
|
||||
if (DescriptorIndex >= SmmAccess->NumberRegions) {
|
||||
return EFI_INVALID_PARAMETER;
|
||||
} else if (SmmAccess->SmramDesc[DescriptorIndex].RegionState & EFI_SMRAM_LOCKED) {
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
//
|
||||
// Open TSEG
|
||||
//
|
||||
if (!QNCOpenSmramRegion ()) {
|
||||
SmmAccess->SmramDesc[DescriptorIndex].RegionState |= EFI_SMRAM_LOCKED;
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
SmmAccess->SmramDesc[DescriptorIndex].RegionState &= ~(EFI_SMRAM_CLOSED | EFI_ALLOCATED);
|
||||
SmmAccess->SmramDesc[DescriptorIndex].RegionState |= EFI_SMRAM_OPEN;
|
||||
SmmAccess->SmmAccess.OpenState = TRUE;
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
Close (
|
||||
IN EFI_PEI_SERVICES **PeiServices,
|
||||
IN PEI_SMM_ACCESS_PPI *This,
|
||||
IN UINTN DescriptorIndex
|
||||
)
|
||||
/*++
|
||||
|
||||
Routine Description:
|
||||
|
||||
This routine accepts a request to "close" a region of SMRAM. This is valid for
|
||||
compatible SMRAM region.
|
||||
|
||||
Arguments:
|
||||
|
||||
PeiServices - General purpose services available to every PEIM.
|
||||
This - Pointer to the SMM Access Interface.
|
||||
DescriptorIndex - Region of SMRAM to Close.
|
||||
|
||||
Returns:
|
||||
|
||||
EFI_SUCCESS - The region was successfully closed.
|
||||
EFI_DEVICE_ERROR - The region could not be closed because locked by
|
||||
chipset.
|
||||
EFI_INVALID_PARAMETER - The descriptor index was out of bounds.
|
||||
|
||||
--*/
|
||||
{
|
||||
SMM_ACCESS_PRIVATE_DATA *SmmAccess;
|
||||
BOOLEAN OpenState;
|
||||
UINTN Index;
|
||||
|
||||
|
||||
SmmAccess = SMM_ACCESS_PRIVATE_DATA_FROM_THIS (This);
|
||||
|
||||
if (DescriptorIndex >= SmmAccess->NumberRegions) {
|
||||
return EFI_INVALID_PARAMETER;
|
||||
} else if (SmmAccess->SmramDesc[DescriptorIndex].RegionState & EFI_SMRAM_LOCKED) {
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
if (SmmAccess->SmramDesc[DescriptorIndex].RegionState & EFI_SMRAM_CLOSED) {
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
//
|
||||
// Close TSEG
|
||||
//
|
||||
if (!QNCCloseSmramRegion ()) {
|
||||
SmmAccess->SmramDesc[DescriptorIndex].RegionState |= EFI_SMRAM_LOCKED;
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
SmmAccess->SmramDesc[DescriptorIndex].RegionState &= ~EFI_SMRAM_OPEN;
|
||||
SmmAccess->SmramDesc[DescriptorIndex].RegionState |= (EFI_SMRAM_CLOSED | EFI_ALLOCATED);
|
||||
|
||||
//
|
||||
// Find out if any regions are still open
|
||||
//
|
||||
OpenState = FALSE;
|
||||
for (Index = 0; Index < SmmAccess->NumberRegions; Index++) {
|
||||
if ((SmmAccess->SmramDesc[Index].RegionState & EFI_SMRAM_OPEN) == EFI_SMRAM_OPEN) {
|
||||
OpenState = TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
SmmAccess->SmmAccess.OpenState = OpenState;
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
Lock (
|
||||
IN EFI_PEI_SERVICES **PeiServices,
|
||||
IN PEI_SMM_ACCESS_PPI *This,
|
||||
IN UINTN DescriptorIndex
|
||||
)
|
||||
/*++
|
||||
|
||||
Routine Description:
|
||||
|
||||
This routine accepts a request to "lock" SMRAM. The
|
||||
region could be legacy AB or TSEG near top of physical memory.
|
||||
The use of "lock" means that the memory can no longer be opened
|
||||
to PEIM.
|
||||
|
||||
Arguments:
|
||||
|
||||
PeiServices - General purpose services available to every PEIM.
|
||||
This - Pointer to the SMM Access Interface.
|
||||
DescriptorIndex - Region of SMRAM to Lock.
|
||||
|
||||
Returns:
|
||||
|
||||
EFI_SUCCESS - The region was successfully locked.
|
||||
EFI_DEVICE_ERROR - The region could not be locked because at least
|
||||
one range is still open.
|
||||
EFI_INVALID_PARAMETER - The descriptor index was out of bounds.
|
||||
|
||||
--*/
|
||||
{
|
||||
SMM_ACCESS_PRIVATE_DATA *SmmAccess;
|
||||
|
||||
SmmAccess = SMM_ACCESS_PRIVATE_DATA_FROM_THIS (This);
|
||||
|
||||
if (DescriptorIndex >= SmmAccess->NumberRegions) {
|
||||
return EFI_INVALID_PARAMETER;
|
||||
} else if (SmmAccess->SmmAccess.OpenState) {
|
||||
return EFI_DEVICE_ERROR;
|
||||
}
|
||||
|
||||
SmmAccess->SmramDesc[DescriptorIndex].RegionState |= EFI_SMRAM_LOCKED;
|
||||
SmmAccess->SmmAccess.LockState = TRUE;
|
||||
|
||||
//
|
||||
// Lock TSEG
|
||||
//
|
||||
QNCLockSmramRegion ();
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
GetCapabilities (
|
||||
IN EFI_PEI_SERVICES **PeiServices,
|
||||
IN PEI_SMM_ACCESS_PPI *This,
|
||||
IN OUT UINTN *SmramMapSize,
|
||||
IN OUT EFI_SMRAM_DESCRIPTOR *SmramMap
|
||||
)
|
||||
/*++
|
||||
|
||||
Routine Description:
|
||||
|
||||
This routine services a user request to discover the SMRAM
|
||||
capabilities of this platform. This will report the possible
|
||||
ranges that are possible for SMRAM access, based upon the
|
||||
memory controller capabilities.
|
||||
|
||||
Arguments:
|
||||
|
||||
PeiServices - General purpose services available to every PEIM.
|
||||
This - Pointer to the SMRAM Access Interface.
|
||||
SmramMapSize - Pointer to the variable containing size of the
|
||||
buffer to contain the description information.
|
||||
SmramMap - Buffer containing the data describing the Smram
|
||||
region descriptors.
|
||||
Returns:
|
||||
|
||||
EFI_BUFFER_TOO_SMALL - The user did not provide a sufficient buffer.
|
||||
EFI_SUCCESS - The user provided a sufficiently-sized buffer.
|
||||
|
||||
--*/
|
||||
{
|
||||
EFI_STATUS Status;
|
||||
SMM_ACCESS_PRIVATE_DATA *SmmAccess;
|
||||
UINTN BufferSize;
|
||||
|
||||
SmmAccess = SMM_ACCESS_PRIVATE_DATA_FROM_THIS (This);
|
||||
BufferSize = SmmAccess->NumberRegions * sizeof (EFI_SMRAM_DESCRIPTOR);
|
||||
|
||||
if (*SmramMapSize < BufferSize) {
|
||||
Status = EFI_BUFFER_TOO_SMALL;
|
||||
} else {
|
||||
CopyMem (SmramMap, SmmAccess->SmramDesc, *SmramMapSize);
|
||||
Status = EFI_SUCCESS;
|
||||
}
|
||||
|
||||
*SmramMapSize = BufferSize;
|
||||
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
SmmAccessPeiEntryPoint (
|
||||
IN EFI_PEI_FILE_HANDLE FileHandle,
|
||||
IN CONST EFI_PEI_SERVICES **PeiServices
|
||||
)
|
||||
/*++
|
||||
|
||||
Routine Description:
|
||||
|
||||
This is the constructor for the SMM Access Ppi
|
||||
|
||||
Arguments:
|
||||
|
||||
FfsHeader - FfsHeader.
|
||||
PeiServices - General purpose services available to every PEIM.
|
||||
|
||||
Returns:
|
||||
|
||||
EFI_SUCCESS - Protocol successfully started and installed.
|
||||
EFI_UNSUPPORTED - Protocol can't be started.
|
||||
--*/
|
||||
{
|
||||
|
||||
EFI_STATUS Status;
|
||||
UINTN Index;
|
||||
EFI_SMRAM_HOB_DESCRIPTOR_BLOCK *DescriptorBlock;
|
||||
SMM_ACCESS_PRIVATE_DATA *SmmAccessPrivate;
|
||||
EFI_PEI_PPI_DESCRIPTOR *PpiList;
|
||||
EFI_HOB_GUID_TYPE *GuidHob;
|
||||
|
||||
//
|
||||
// Initialize private data
|
||||
//
|
||||
SmmAccessPrivate = AllocatePool (sizeof(*SmmAccessPrivate));
|
||||
ASSERT(SmmAccessPrivate);
|
||||
|
||||
PpiList = AllocatePool (sizeof(*PpiList));
|
||||
ASSERT (PpiList);
|
||||
|
||||
//
|
||||
// Build SMM related information
|
||||
//
|
||||
SmmAccessPrivate->Signature = SMM_ACCESS_PRIVATE_DATA_SIGNATURE;
|
||||
|
||||
//
|
||||
// Get Hob list
|
||||
//
|
||||
GuidHob = GetFirstGuidHob (&gEfiSmmPeiSmramMemoryReserveGuid);
|
||||
DescriptorBlock = GET_GUID_HOB_DATA (GuidHob);
|
||||
ASSERT (DescriptorBlock);
|
||||
|
||||
// Get CPU Max bus number
|
||||
|
||||
SmmAccessPrivate->MaxBusNumber = PCI_BUS_NUMBER_QNC;
|
||||
for (Index = 0; Index < MAX_CPU_SOCKET; Index++) {
|
||||
SmmAccessPrivate->SocketPopulated[Index] = TRUE;
|
||||
SmmAccessPrivate->SocketBusNum[Index] = PCI_BUS_NUMBER_QNC;
|
||||
}
|
||||
|
||||
//
|
||||
// Use the hob to publish SMRAM capabilities
|
||||
//
|
||||
ASSERT (DescriptorBlock->NumberOfSmmReservedRegions <= MAX_SMRAM_RANGES);
|
||||
for (Index = 0; Index < DescriptorBlock->NumberOfSmmReservedRegions; Index++) {
|
||||
SmmAccessPrivate->SmramDesc[Index].PhysicalStart = DescriptorBlock->Descriptor[Index].PhysicalStart;
|
||||
SmmAccessPrivate->SmramDesc[Index].CpuStart = DescriptorBlock->Descriptor[Index].CpuStart;
|
||||
SmmAccessPrivate->SmramDesc[Index].PhysicalSize = DescriptorBlock->Descriptor[Index].PhysicalSize;
|
||||
SmmAccessPrivate->SmramDesc[Index].RegionState = DescriptorBlock->Descriptor[Index].RegionState;
|
||||
}
|
||||
|
||||
SmmAccessPrivate->NumberRegions = Index;
|
||||
SmmAccessPrivate->SmmAccess.Open = Open;
|
||||
SmmAccessPrivate->SmmAccess.Close = Close;
|
||||
SmmAccessPrivate->SmmAccess.Lock = Lock;
|
||||
SmmAccessPrivate->SmmAccess.GetCapabilities = GetCapabilities;
|
||||
SmmAccessPrivate->SmmAccess.LockState = FALSE;
|
||||
SmmAccessPrivate->SmmAccess.OpenState = FALSE;
|
||||
|
||||
PpiList->Flags = (EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST);
|
||||
PpiList->Guid = &gPeiSmmAccessPpiGuid;
|
||||
PpiList->Ppi = &SmmAccessPrivate->SmmAccess;
|
||||
|
||||
Status = (**PeiServices).InstallPpi (PeiServices, PpiList);
|
||||
ASSERT_EFI_ERROR(Status);
|
||||
|
||||
DEBUG (
|
||||
(EFI_D_INFO, "SMM Base:Size %08X:%08X\n",
|
||||
(UINTN)(SmmAccessPrivate->SmramDesc[SmmAccessPrivate->NumberRegions-1].PhysicalStart),
|
||||
(UINTN)(SmmAccessPrivate->SmramDesc[SmmAccessPrivate->NumberRegions-1].PhysicalSize)
|
||||
));
|
||||
|
||||
SmmAccessPrivate->TsegSize = (UINT8)(SmmAccessPrivate->SmramDesc[SmmAccessPrivate->NumberRegions-1].PhysicalSize);
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
@@ -0,0 +1,51 @@
|
||||
## @file
|
||||
# Component description file for SmmAccessPei module
|
||||
#
|
||||
# Copyright (c) 2013-2015 Intel Corporation.
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
##
|
||||
|
||||
[Defines]
|
||||
INF_VERSION = 0x00010005
|
||||
BASE_NAME = SmmAccessPei
|
||||
FILE_GUID = B4E0CDFC-30CD-4b29-A445-B0AA95A532E4
|
||||
MODULE_TYPE = PEIM
|
||||
VERSION_STRING = 1.0
|
||||
ENTRY_POINT = SmmAccessPeiEntryPoint
|
||||
|
||||
[Sources]
|
||||
SmmAccessPei.c
|
||||
|
||||
[Packages]
|
||||
MdePkg/MdePkg.dec
|
||||
MdeModulePkg/MdeModulePkg.dec
|
||||
IntelFrameworkPkg/IntelFrameworkPkg.dec
|
||||
QuarkSocPkg/QuarkSocPkg.dec
|
||||
|
||||
[LibraryClasses]
|
||||
PeimEntryPoint
|
||||
BaseMemoryLib
|
||||
MemoryAllocationLib
|
||||
DebugLib
|
||||
HobLib
|
||||
PeiServicesLib
|
||||
PciLib
|
||||
SmmLib
|
||||
|
||||
[Guids]
|
||||
gEfiSmmPeiSmramMemoryReserveGuid # ALWAYS_CONSUMED
|
||||
|
||||
[Ppis]
|
||||
gPeiSmmAccessPpiGuid # ALWAYS_PRODUCED
|
||||
gEfiPeiMemoryDiscoveredPpiGuid # ALWAYS_CONSUMED
|
||||
|
||||
[Depex]
|
||||
gEfiPeiMemoryDiscoveredPpiGuid
|
@@ -0,0 +1,282 @@
|
||||
/** @file
|
||||
This module provides an implementation of the SMM Control PPI for use with
|
||||
the QNC.
|
||||
|
||||
Copyright (c) 2013-2015 Intel Corporation.
|
||||
|
||||
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.
|
||||
|
||||
**/
|
||||
|
||||
#include <PiPei.h>
|
||||
|
||||
#include <Ppi/SmmControl.h>
|
||||
|
||||
#include <Library/DebugLib.h>
|
||||
#include <Library/HobLib.h>
|
||||
#include <Library/PeiServicesLib.h>
|
||||
#include <Library/PcdLib.h>
|
||||
#include <Library/IoLib.h>
|
||||
#include <Library/PciLib.h>
|
||||
|
||||
#include <IntelQNCPeim.h>
|
||||
#include <Library/QNCAccessLib.h>
|
||||
#include <Uefi/UefiBaseType.h>
|
||||
|
||||
/**
|
||||
Generates an SMI using the parameters passed in.
|
||||
|
||||
@param PeiServices Describes the list of possible PEI Services.
|
||||
@param This A pointer to an instance of
|
||||
EFI_SMM_CONTROL_PPI
|
||||
@param ArgumentBuffer The argument buffer
|
||||
@param ArgumentBufferSize The size of the argument buffer
|
||||
@param Periodic TRUE to indicate a periodical SMI
|
||||
@param ActivationInterval Interval of the periodical SMI
|
||||
|
||||
@retval EFI_INVALID_PARAMETER Periodic is TRUE or ArgumentBufferSize > 1
|
||||
@retval EFI_SUCCESS SMI generated
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
PeiActivate (
|
||||
IN EFI_PEI_SERVICES **PeiServices,
|
||||
IN PEI_SMM_CONTROL_PPI *This,
|
||||
IN OUT INT8 *ArgumentBuffer OPTIONAL,
|
||||
IN OUT UINTN *ArgumentBufferSize OPTIONAL,
|
||||
IN BOOLEAN Periodic OPTIONAL,
|
||||
IN UINTN ActivationInterval OPTIONAL
|
||||
);
|
||||
|
||||
/**
|
||||
Clears an SMI.
|
||||
|
||||
@param PeiServices Describes the list of possible PEI Services.
|
||||
@param This Pointer to an instance of EFI_SMM_CONTROL_PPI
|
||||
@param Periodic TRUE to indicate a periodical SMI
|
||||
|
||||
@return Return value from SmmClear()
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
PeiDeactivate (
|
||||
IN EFI_PEI_SERVICES **PeiServices,
|
||||
IN PEI_SMM_CONTROL_PPI *This,
|
||||
IN BOOLEAN Periodic OPTIONAL
|
||||
);
|
||||
|
||||
PEI_SMM_CONTROL_PPI mSmmControlPpi = {
|
||||
PeiActivate,
|
||||
PeiDeactivate
|
||||
};
|
||||
|
||||
EFI_PEI_PPI_DESCRIPTOR mPpiList = {
|
||||
(EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),
|
||||
&gPeiSmmControlPpiGuid,
|
||||
&mSmmControlPpi
|
||||
};
|
||||
|
||||
/**
|
||||
Clear SMI related chipset status and re-enable SMI by setting the EOS bit.
|
||||
|
||||
@retval EFI_SUCCESS The requested operation has been carried out successfully
|
||||
@retval EFI_DEVICE_ERROR The EOS bit could not be set.
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
SmmClear (
|
||||
VOID
|
||||
)
|
||||
{
|
||||
UINT16 PM1BLK_Base;
|
||||
UINT16 GPE0BLK_Base;
|
||||
|
||||
//
|
||||
// Get PM1BLK_Base & GPE0BLK_Base
|
||||
//
|
||||
PM1BLK_Base = PcdGet16 (PcdPm1blkIoBaseAddress);
|
||||
GPE0BLK_Base = PcdGet16 (PcdGpe0blkIoBaseAddress);
|
||||
|
||||
//
|
||||
// Clear the Power Button Override Status Bit, it gates EOS from being set.
|
||||
// In QuarkNcSocId - Bit is read only. Handled by external SMC, do nothing.
|
||||
//
|
||||
|
||||
//
|
||||
// Clear the APM SMI Status Bit
|
||||
//
|
||||
IoWrite32 ((GPE0BLK_Base + R_QNC_GPE0BLK_SMIS), B_QNC_GPE0BLK_SMIS_APM);
|
||||
|
||||
//
|
||||
// Set the EOS Bit
|
||||
//
|
||||
IoOr32 ((GPE0BLK_Base + R_QNC_GPE0BLK_SMIS), B_QNC_GPE0BLK_SMIS_EOS);
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
SmmTrigger (
|
||||
IN UINT8 Data
|
||||
)
|
||||
/*++
|
||||
|
||||
Routine Description:
|
||||
|
||||
Trigger the software SMI
|
||||
|
||||
Arguments:
|
||||
|
||||
Data The value to be set on the software SMI data port
|
||||
|
||||
Returns:
|
||||
|
||||
EFI_SUCCESS Function completes successfully
|
||||
|
||||
--*/
|
||||
{
|
||||
UINT16 GPE0BLK_Base;
|
||||
UINT32 NewValue;
|
||||
|
||||
//
|
||||
// Get GPE0BLK_Base
|
||||
//
|
||||
GPE0BLK_Base = PcdGet16 (PcdGpe0blkIoBaseAddress);
|
||||
|
||||
//
|
||||
// Enable the APMC SMI
|
||||
//
|
||||
IoOr32 (GPE0BLK_Base + R_QNC_GPE0BLK_SMIE, B_QNC_GPE0BLK_SMIE_APM);
|
||||
|
||||
//
|
||||
// Enable SMI globally
|
||||
//
|
||||
NewValue = QNCPortRead (QUARK_NC_HOST_BRIDGE_SB_PORT_ID, QNC_MSG_FSBIC_REG_HMISC);
|
||||
NewValue |= SMI_EN;
|
||||
QNCPortWrite (QUARK_NC_HOST_BRIDGE_SB_PORT_ID, QNC_MSG_FSBIC_REG_HMISC, NewValue);
|
||||
|
||||
|
||||
//
|
||||
// Generate the APMC SMI
|
||||
//
|
||||
IoWrite8 (PcdGet16 (PcdSmmActivationPort), Data);
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
/**
|
||||
Generates an SMI using the parameters passed in.
|
||||
|
||||
@param PeiServices Describes the list of possible PEI Services.
|
||||
@param This A pointer to an instance of
|
||||
EFI_SMM_CONTROL_PPI
|
||||
@param ArgumentBuffer The argument buffer
|
||||
@param ArgumentBufferSize The size of the argument buffer
|
||||
@param Periodic TRUE to indicate a periodical SMI
|
||||
@param ActivationInterval Interval of the periodical SMI
|
||||
|
||||
@retval EFI_INVALID_PARAMETER Periodic is TRUE or ArgumentBufferSize > 1
|
||||
@retval EFI_SUCCESS SMI generated
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
PeiActivate (
|
||||
IN EFI_PEI_SERVICES **PeiServices,
|
||||
IN PEI_SMM_CONTROL_PPI *This,
|
||||
IN OUT INT8 *ArgumentBuffer OPTIONAL,
|
||||
IN OUT UINTN *ArgumentBufferSize OPTIONAL,
|
||||
IN BOOLEAN Periodic OPTIONAL,
|
||||
IN UINTN ActivationInterval OPTIONAL
|
||||
)
|
||||
{
|
||||
INT8 Data;
|
||||
EFI_STATUS Status;
|
||||
//
|
||||
// Periodic SMI not supported.
|
||||
//
|
||||
if (Periodic) {
|
||||
DEBUG ((DEBUG_WARN, "Invalid parameter\n"));
|
||||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
if (ArgumentBuffer == NULL) {
|
||||
Data = 0xFF;
|
||||
} else {
|
||||
if (ArgumentBufferSize == NULL || *ArgumentBufferSize != 1) {
|
||||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
Data = *ArgumentBuffer;
|
||||
}
|
||||
//
|
||||
// Clear any pending the APM SMI
|
||||
//
|
||||
Status = SmmClear ();
|
||||
if (EFI_ERROR (Status)) {
|
||||
return Status;
|
||||
}
|
||||
|
||||
return SmmTrigger (Data);
|
||||
}
|
||||
|
||||
/**
|
||||
Clears an SMI.
|
||||
|
||||
@param PeiServices Describes the list of possible PEI Services.
|
||||
@param This Pointer to an instance of EFI_SMM_CONTROL_PPI
|
||||
@param Periodic TRUE to indicate a periodical SMI
|
||||
|
||||
@return Return value from SmmClear()
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
PeiDeactivate (
|
||||
IN EFI_PEI_SERVICES **PeiServices,
|
||||
IN PEI_SMM_CONTROL_PPI *This,
|
||||
IN BOOLEAN Periodic OPTIONAL
|
||||
)
|
||||
{
|
||||
if (Periodic) {
|
||||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
return SmmClear ();
|
||||
}
|
||||
|
||||
/**
|
||||
This is the constructor for the SMM Control Ppi.
|
||||
|
||||
This function installs EFI_SMM_CONTROL_PPI.
|
||||
|
||||
@param FileHandle Handle of the file being invoked.
|
||||
@param PeiServices Describes the list of possible PEI Services.
|
||||
|
||||
@retval EFI_UNSUPPORTED There's no Intel ICH on this platform
|
||||
@return The status returned from InstallPpi().
|
||||
|
||||
--*/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
SmmControlPeiEntry (
|
||||
IN EFI_PEI_FILE_HANDLE FileHandle,
|
||||
IN CONST EFI_PEI_SERVICES **PeiServices
|
||||
)
|
||||
{
|
||||
EFI_STATUS Status;
|
||||
|
||||
Status = (**PeiServices).InstallPpi (PeiServices, &mPpiList);
|
||||
ASSERT_EFI_ERROR (Status);
|
||||
|
||||
return Status;
|
||||
}
|
@@ -0,0 +1,57 @@
|
||||
## @file
|
||||
# Component description file for SmmControlPei module.
|
||||
#
|
||||
# Copyright (c) 2013-2015 Intel Corporation.
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
##
|
||||
|
||||
|
||||
[Defines]
|
||||
INF_VERSION = 0x00010005
|
||||
BASE_NAME = SmmControlPei
|
||||
FILE_GUID = 60EC7720-512B-4490-9FD1-A336769AE01F
|
||||
MODULE_TYPE = PEIM
|
||||
VERSION_STRING = 1.0
|
||||
ENTRY_POINT = SmmControlPeiEntry
|
||||
|
||||
#
|
||||
# The following information is for reference only and not required by the build tools.
|
||||
#
|
||||
# VALID_ARCHITECTURES = IA32 X64
|
||||
#
|
||||
|
||||
[Sources]
|
||||
SmmControlPei.c
|
||||
|
||||
[Packages]
|
||||
MdePkg/MdePkg.dec
|
||||
MdeModulePkg/MdeModulePkg.dec
|
||||
QuarkSocPkg/QuarkSocPkg.dec
|
||||
|
||||
[LibraryClasses]
|
||||
PeimEntryPoint
|
||||
DebugLib
|
||||
PeiServicesLib
|
||||
PcdLib
|
||||
IoLib
|
||||
PciLib
|
||||
QNCAccessLib
|
||||
|
||||
[Ppis]
|
||||
gPeiSmmControlPpiGuid # ALWAYS_PRODUCED
|
||||
|
||||
[Pcd]
|
||||
gEfiQuarkNcSocIdTokenSpaceGuid.PcdPm1blkIoBaseAddress
|
||||
gEfiQuarkNcSocIdTokenSpaceGuid.PcdGpe0blkIoBaseAddress
|
||||
gEfiQuarkNcSocIdTokenSpaceGuid.PcdSmmActivationPort
|
||||
|
||||
[Depex]
|
||||
TRUE
|
Reference in New Issue
Block a user