mirror of https://github.com/acidanthera/audk.git
ArmPkg/CpuDxe: drop ARM_PROCESSOR_TABLE pseudo-ACPI table
The ARM_PROCESSOR_TABLE pseudo-ACPI table (which carries a ACPI-table like header but is published as a EFI config table) is not described in any relevant spec, and is not known to be relied upon by any OS. Let's just get rid of it. Signed-off-by: Ard Biesheuvel <ardb@kernel.org> Reviewed-by: Sami Mujawar <sami.mujawar@arm.com> Tested-by: Sami Mujawar <sami.mujawar@arm.com>
This commit is contained in:
parent
343f37b5c0
commit
c8af26627a
|
@ -256,12 +256,6 @@ CpuDxeInitialize (
|
||||||
SyncCacheConfig (&mCpu);
|
SyncCacheConfig (&mCpu);
|
||||||
mIsFlushingGCD = FALSE;
|
mIsFlushingGCD = FALSE;
|
||||||
|
|
||||||
// If the platform is a MPCore system then install the Configuration Table describing the
|
|
||||||
// secondary core states
|
|
||||||
if (ArmIsMpCore ()) {
|
|
||||||
PublishArmProcessorTable ();
|
|
||||||
}
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Setup a callback for idle events
|
// Setup a callback for idle events
|
||||||
//
|
//
|
||||||
|
|
|
@ -104,21 +104,6 @@ SyncCacheConfig (
|
||||||
IN EFI_CPU_ARCH_PROTOCOL *CpuProtocol
|
IN EFI_CPU_ARCH_PROTOCOL *CpuProtocol
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
|
||||||
* Publish ARM Processor Data table in UEFI SYSTEM Table.
|
|
||||||
* @param HobStart Pointer to the beginning of the HOB List from PEI.
|
|
||||||
*
|
|
||||||
* Description : This function iterates through HOB list and finds ARM processor Table Entry HOB.
|
|
||||||
* If the ARM processor Table Entry HOB is found, the HOB data is copied to run-time memory
|
|
||||||
* and a pointer is assigned to it in ARM processor table. Then the ARM processor table is
|
|
||||||
* installed in EFI configuration table.
|
|
||||||
**/
|
|
||||||
VOID
|
|
||||||
EFIAPI
|
|
||||||
PublishArmProcessorTable (
|
|
||||||
VOID
|
|
||||||
);
|
|
||||||
|
|
||||||
// The ARM Attributes might be defined on 64-bit (case of the long format description table)
|
// The ARM Attributes might be defined on 64-bit (case of the long format description table)
|
||||||
UINT64
|
UINT64
|
||||||
EfiAttributeToArmAttribute (
|
EfiAttributeToArmAttribute (
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
[Sources.Common]
|
[Sources.Common]
|
||||||
CpuDxe.c
|
CpuDxe.c
|
||||||
CpuDxe.h
|
CpuDxe.h
|
||||||
CpuMpCore.c
|
|
||||||
CpuMmuCommon.c
|
CpuMmuCommon.c
|
||||||
Exception.c
|
Exception.c
|
||||||
|
|
||||||
|
|
|
@ -1,98 +0,0 @@
|
||||||
/** @file
|
|
||||||
*
|
|
||||||
* Copyright (c) 2011-2021, Arm Limited. All rights reserved.<BR>
|
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
||||||
*
|
|
||||||
**/
|
|
||||||
|
|
||||||
#include <Library/UefiBootServicesTableLib.h>
|
|
||||||
#include <Library/BaseMemoryLib.h>
|
|
||||||
#include <Library/HobLib.h>
|
|
||||||
#include <Library/DebugLib.h>
|
|
||||||
#include <Library/MemoryAllocationLib.h>
|
|
||||||
|
|
||||||
#include <Guid/ArmMpCoreInfo.h>
|
|
||||||
|
|
||||||
ARM_PROCESSOR_TABLE mArmProcessorTableTemplate = {
|
|
||||||
{
|
|
||||||
EFI_ARM_PROCESSOR_TABLE_SIGNATURE,
|
|
||||||
0,
|
|
||||||
EFI_ARM_PROCESSOR_TABLE_REVISION,
|
|
||||||
EFI_ARM_PROCESSOR_TABLE_OEM_ID,
|
|
||||||
EFI_ARM_PROCESSOR_TABLE_OEM_TABLE_ID,
|
|
||||||
EFI_ARM_PROCESSOR_TABLE_OEM_REVISION,
|
|
||||||
EFI_ARM_PROCESSOR_TABLE_CREATOR_ID,
|
|
||||||
EFI_ARM_PROCESSOR_TABLE_CREATOR_REVISION,
|
|
||||||
{ 0 },
|
|
||||||
0
|
|
||||||
}, // ARM Processor table header
|
|
||||||
0, // Number of entries in ARM processor Table
|
|
||||||
NULL // ARM Processor Table
|
|
||||||
};
|
|
||||||
|
|
||||||
/** Publish ARM Processor Data table in UEFI SYSTEM Table.
|
|
||||||
* @param HobStart Pointer to the beginning of the HOB List from PEI.
|
|
||||||
*
|
|
||||||
* Description : This function iterates through HOB list and finds ARM processor Table Entry HOB.
|
|
||||||
* If the ARM processor Table Entry HOB is found, the HOB data is copied to run-time memory
|
|
||||||
* and a pointer is assigned to it in ARM processor table. Then the ARM processor table is
|
|
||||||
* installed in EFI configuration table.
|
|
||||||
**/
|
|
||||||
VOID
|
|
||||||
EFIAPI
|
|
||||||
PublishArmProcessorTable (
|
|
||||||
VOID
|
|
||||||
)
|
|
||||||
{
|
|
||||||
EFI_PEI_HOB_POINTERS Hob;
|
|
||||||
|
|
||||||
Hob.Raw = GetHobList ();
|
|
||||||
|
|
||||||
// Iterate through the HOBs and find if there is ARM PROCESSOR ENTRY HOB
|
|
||||||
for ( ; !END_OF_HOB_LIST (Hob); Hob.Raw = GET_NEXT_HOB (Hob)) {
|
|
||||||
// Check for Correct HOB type
|
|
||||||
if ((GET_HOB_TYPE (Hob)) == EFI_HOB_TYPE_GUID_EXTENSION) {
|
|
||||||
// Check for correct GUID type
|
|
||||||
if (CompareGuid (&(Hob.Guid->Name), &gArmMpCoreInfoGuid)) {
|
|
||||||
ARM_PROCESSOR_TABLE *ArmProcessorTable;
|
|
||||||
EFI_STATUS Status;
|
|
||||||
|
|
||||||
// Allocate Runtime memory for ARM processor table
|
|
||||||
ArmProcessorTable = (ARM_PROCESSOR_TABLE *)AllocateRuntimePool (sizeof (ARM_PROCESSOR_TABLE));
|
|
||||||
|
|
||||||
// Check if the memory allocation is successful or not
|
|
||||||
ASSERT (NULL != ArmProcessorTable);
|
|
||||||
|
|
||||||
// Set ARM processor table to default values
|
|
||||||
CopyMem (ArmProcessorTable, &mArmProcessorTableTemplate, sizeof (ARM_PROCESSOR_TABLE));
|
|
||||||
|
|
||||||
// Fill in Length fields of ARM processor table
|
|
||||||
ArmProcessorTable->Header.Length = sizeof (ARM_PROCESSOR_TABLE);
|
|
||||||
ArmProcessorTable->Header.DataLen = GET_GUID_HOB_DATA_SIZE (Hob);
|
|
||||||
|
|
||||||
// Fill in Identifier(ARM processor table GUID)
|
|
||||||
ArmProcessorTable->Header.Identifier = gArmMpCoreInfoGuid;
|
|
||||||
|
|
||||||
// Set Number of ARM core entries in the Table
|
|
||||||
ArmProcessorTable->NumberOfEntries = GET_GUID_HOB_DATA_SIZE (Hob)/sizeof (ARM_CORE_INFO);
|
|
||||||
|
|
||||||
// Allocate runtime memory for ARM processor Table entries
|
|
||||||
ArmProcessorTable->ArmCpus = (ARM_CORE_INFO *)AllocateRuntimePool (
|
|
||||||
ArmProcessorTable->NumberOfEntries * sizeof (ARM_CORE_INFO)
|
|
||||||
);
|
|
||||||
|
|
||||||
// Check if the memory allocation is successful or not
|
|
||||||
ASSERT (NULL != ArmProcessorTable->ArmCpus);
|
|
||||||
|
|
||||||
// Copy ARM Processor Table data from HOB list to newly allocated memory
|
|
||||||
CopyMem (ArmProcessorTable->ArmCpus, GET_GUID_HOB_DATA (Hob), ArmProcessorTable->Header.DataLen);
|
|
||||||
|
|
||||||
// Install the ARM Processor table into EFI system configuration table
|
|
||||||
Status = gBS->InstallConfigurationTable (&gArmMpCoreInfoGuid, ArmProcessorTable);
|
|
||||||
|
|
||||||
ASSERT_EFI_ERROR (Status);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -23,36 +23,9 @@ typedef struct {
|
||||||
UINT64 MailboxClearValue;
|
UINT64 MailboxClearValue;
|
||||||
} ARM_CORE_INFO;
|
} ARM_CORE_INFO;
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
UINT64 Signature;
|
|
||||||
UINT32 Length;
|
|
||||||
UINT32 Revision;
|
|
||||||
UINT64 OemId;
|
|
||||||
UINT64 OemTableId;
|
|
||||||
UINTN OemRevision;
|
|
||||||
UINTN CreatorId;
|
|
||||||
UINTN CreatorRevision;
|
|
||||||
EFI_GUID Identifier;
|
|
||||||
UINTN DataLen;
|
|
||||||
} ARM_PROCESSOR_TABLE_HEADER;
|
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
ARM_PROCESSOR_TABLE_HEADER Header;
|
|
||||||
UINTN NumberOfEntries;
|
|
||||||
ARM_CORE_INFO *ArmCpus;
|
|
||||||
} ARM_PROCESSOR_TABLE;
|
|
||||||
|
|
||||||
#define ARM_MP_CORE_INFO_GUID \
|
#define ARM_MP_CORE_INFO_GUID \
|
||||||
{ 0xa4ee0728, 0xe5d7, 0x4ac5, {0xb2, 0x1e, 0x65, 0x8e, 0xd8, 0x57, 0xe8, 0x34} }
|
{ 0xa4ee0728, 0xe5d7, 0x4ac5, {0xb2, 0x1e, 0x65, 0x8e, 0xd8, 0x57, 0xe8, 0x34} }
|
||||||
|
|
||||||
#define EFI_ARM_PROCESSOR_TABLE_SIGNATURE SIGNATURE_64 ('C', 'P', 'U', 'T', 'A', 'B', 'L', 'E')
|
|
||||||
#define EFI_ARM_PROCESSOR_TABLE_REVISION 0x00010000// 1.0
|
|
||||||
#define EFI_ARM_PROCESSOR_TABLE_OEM_ID SIGNATURE_64('A','R','M',' ', 'L', 't', 'd', ' ')
|
|
||||||
#define EFI_ARM_PROCESSOR_TABLE_OEM_TABLE_ID SIGNATURE_64('V', 'E', 'R', 'S', 'A', 'T', 'I', 'L')
|
|
||||||
#define EFI_ARM_PROCESSOR_TABLE_OEM_REVISION 0x00000001
|
|
||||||
#define EFI_ARM_PROCESSOR_TABLE_CREATOR_ID 0xA5A5A5A5
|
|
||||||
#define EFI_ARM_PROCESSOR_TABLE_CREATOR_REVISION 0x01000001
|
|
||||||
|
|
||||||
extern EFI_GUID gArmMpCoreInfoGuid;
|
extern EFI_GUID gArmMpCoreInfoGuid;
|
||||||
|
|
||||||
#endif /* ARM_MP_CORE_INFO_GUID_H_ */
|
#endif /* ARM_MP_CORE_INFO_GUID_H_ */
|
||||||
|
|
Loading…
Reference in New Issue