Initial directory structure of IntelFrameworkPkg.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2657 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
30
IntelFrameworkPkg/Include/Guid/AcpiTableStorage.h
Normal file
30
IntelFrameworkPkg/Include/Guid/AcpiTableStorage.h
Normal file
@@ -0,0 +1,30 @@
|
||||
/** @file
|
||||
The ACPI table storage file is fully FFS compliant.
|
||||
The file is a number of sections of type EFI_SECTION_RAW.
|
||||
This GUID is used to identify the file as an ACPI table storage file.
|
||||
|
||||
Copyright (c) 2007, 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.
|
||||
|
||||
Module Name: AcpiTableStorage.h
|
||||
|
||||
@par Revision Reference:
|
||||
GUID defined in ACPI Table Storage Spec Version 0.9.
|
||||
|
||||
**/
|
||||
|
||||
#ifndef _ACPI_TABLE_STORAGE_H_
|
||||
#define _ACPI_TABLE_STORAGE_H_
|
||||
|
||||
#define EFI_ACPI_TABLE_STORAGE_GUID \
|
||||
{ 0x7e374e25, 0x8e01, 0x4fee, {0x87, 0xf2, 0x39, 0xc, 0x23, 0xc6, 0x6, 0xcd } }
|
||||
|
||||
extern EFI_GUID gEfiAcpiTableStorageGuid;
|
||||
|
||||
#endif
|
43
IntelFrameworkPkg/Include/Guid/Capsule.h
Normal file
43
IntelFrameworkPkg/Include/Guid/Capsule.h
Normal file
@@ -0,0 +1,43 @@
|
||||
/** @file
|
||||
GUIDs used for EFI Capsule
|
||||
|
||||
Copyright (c) 2007, 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.
|
||||
|
||||
Module Name: Capsule.h
|
||||
|
||||
@par Revision Reference:
|
||||
GUIDs defined in Capsule Spec Version 0.9
|
||||
|
||||
**/
|
||||
|
||||
#ifndef _CAPSULE_GUID_H__
|
||||
#define _CAPSULE_GUID_H__
|
||||
|
||||
//
|
||||
// This is the GUID of the capsule header of the image on disk.
|
||||
//
|
||||
#define EFI_CAPSULE_GUID \
|
||||
{ \
|
||||
0x3B6686BD, 0x0D76, 0x4030, {0xB7, 0x0E, 0xB5, 0x51, 0x9E, 0x2F, 0xC5, 0xA0 } \
|
||||
}
|
||||
|
||||
//
|
||||
// This is the GUID of the configuration results file created by the capsule
|
||||
// application.
|
||||
//
|
||||
#define EFI_CONFIG_FILE_NAME_GUID \
|
||||
{ \
|
||||
0x98B8D59B, 0xE8BA, 0x48EE, {0x98, 0xDD, 0xC2, 0x95, 0x39, 0x2F, 0x1E, 0xDB } \
|
||||
}
|
||||
|
||||
extern EFI_GUID gEfiCapsuleGuid;
|
||||
extern EFI_GUID gEfiConfigFileNameGuid;
|
||||
|
||||
#endif
|
63
IntelFrameworkPkg/Include/Guid/DataHubRecords.h
Normal file
63
IntelFrameworkPkg/Include/Guid/DataHubRecords.h
Normal file
@@ -0,0 +1,63 @@
|
||||
/** @file
|
||||
DataHubRecord.h include all data hub sub class GUID defitions.
|
||||
|
||||
Copyright (c) 2007, 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.
|
||||
|
||||
Module Name:
|
||||
|
||||
@par Revision Reference:
|
||||
These GUID are from Cache subclass spec 0.9, DataHub SubClass spec 0.9, Memory SubClass Spec 0.9,
|
||||
Processor Subclass spec 0.9, Misc SubClass spec 0.9.
|
||||
|
||||
**/
|
||||
#ifndef _DATAHUB_RECORDS_GUID_H_
|
||||
#define _DATAHUB_RECORDS_GUID_H_
|
||||
|
||||
#define EFI_PROCESSOR_PRODUCER_GUID \
|
||||
{ 0x1bf06aea, 0x5bec, 0x4a8d, {0x95, 0x76, 0x74, 0x9b, 0x09, 0x56, 0x2d, 0x30 } }
|
||||
|
||||
extern EFI_GUID gEfiProcessorProducerGuid;
|
||||
|
||||
|
||||
#define EFI_PROCESSOR_SUBCLASS_GUID \
|
||||
{ 0x26fdeb7e, 0xb8af, 0x4ccf, {0xaa, 0x97, 0x02, 0x63, 0x3c, 0xe4, 0x8c, 0xa7 } }
|
||||
|
||||
extern EFI_GUID gEfiProcessorSubClassGuid;
|
||||
|
||||
|
||||
#define EFI_CACHE_SUBCLASS_GUID \
|
||||
{ 0x7f0013a7, 0xdc79, 0x4b22, {0x80, 0x99, 0x11, 0xf7, 0x5f, 0xdc, 0x82, 0x9d } }
|
||||
|
||||
extern EFI_GUID gEfiCacheSubClassGuid;
|
||||
|
||||
|
||||
#define EFI_MEMORY_PRODUCER_GUID \
|
||||
{ 0x1d7add6e, 0xb2da, 0x4b0b, {0xb2, 0x9f, 0x49, 0xcb, 0x42, 0xf4, 0x63, 0x56 } }
|
||||
|
||||
extern EFI_GUID gEfiMemoryProducerGuid;
|
||||
|
||||
|
||||
#define EFI_MEMORY_SUBCLASS_GUID \
|
||||
{0x4E8F4EBB, 0x64B9, 0x4e05, {0x9B, 0x18, 0x4C, 0xFE, 0x49, 0x23, 0x50, 0x97} }
|
||||
|
||||
extern EFI_GUID gEfiMemorySubClassGuid;
|
||||
|
||||
|
||||
#define EFI_MISC_PRODUCER_GUID \
|
||||
{ 0x62512c92, 0x63c4, 0x4d80, {0x82, 0xb1, 0xc1, 0xa4, 0xdc, 0x44, 0x80, 0xe5 } }
|
||||
|
||||
extern EFI_GUID gEfiMiscProducerGuid;
|
||||
|
||||
#define EFI_MISC_SUBCLASS_GUID \
|
||||
{ 0x772484B2, 0x7482, 0x4b91, {0x9F, 0x9A, 0xAD, 0x43, 0xF8, 0x1C, 0x58, 0x81 } }
|
||||
|
||||
extern EFI_GUID gEfiMiscSubClassGuid;
|
||||
|
||||
#endif
|
29
IntelFrameworkPkg/Include/Guid/FrameworkDevicePath.h
Normal file
29
IntelFrameworkPkg/Include/Guid/FrameworkDevicePath.h
Normal file
@@ -0,0 +1,29 @@
|
||||
/** @file
|
||||
This GUID is used to define a vendor specific device path being owned by the
|
||||
Framework specificaitons.
|
||||
|
||||
Copyright (c) 2007, 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.
|
||||
|
||||
Module Name: FrameworkDevicePath.h
|
||||
|
||||
@par Revision Reference:
|
||||
Spec Version 0.9
|
||||
|
||||
**/
|
||||
|
||||
#ifndef _FRAMEWORK_DEVICE_PATH_GUID_H_
|
||||
#define _FRAMEWORK_DEVICE_PATH_GUID_H_
|
||||
|
||||
#define EFI_FRAMEWORK_DEVICE_PATH_GUID \
|
||||
{ 0xb7084e63, 0x46b7, 0x4d1a, { 0x86, 0x77, 0xe3, 0x0b, 0x53, 0xdb, 0xf0, 0x50 } }
|
||||
|
||||
extern EFI_GUID gEfiFrameworkDevicePathGuid;
|
||||
|
||||
#endif
|
40
IntelFrameworkPkg/Include/Guid/SmmCommunicate.h
Normal file
40
IntelFrameworkPkg/Include/Guid/SmmCommunicate.h
Normal file
@@ -0,0 +1,40 @@
|
||||
/** @file
|
||||
Definitions EFI_SMM_COMMUNICATE_HEADER used by EFI_SMM_BASE_PROTOCOL.Communicate()
|
||||
functions
|
||||
|
||||
Copyright (c) 2007, 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.
|
||||
|
||||
Module Name: SmmCommunicate.h
|
||||
|
||||
@par Revision Reference:
|
||||
GUIDs defined in SmmCis spec version 0.9
|
||||
|
||||
**/
|
||||
|
||||
#ifndef _SMM_COMMUNICATE_GUID_H_
|
||||
#define _SMM_COMMUNICATE_GUID_H_
|
||||
|
||||
//******************************************************
|
||||
// EFI_SMM_COMMUNICATE_HEADER
|
||||
//******************************************************
|
||||
#define SMM_COMMUNICATE_HEADER_GUID \
|
||||
{ \
|
||||
0xf328e36c, 0x23b6, 0x4a95, {0x85, 0x4b, 0x32, 0xe1, 0x95, 0x34, 0xcd, 0x75 } \
|
||||
}
|
||||
|
||||
typedef struct {
|
||||
EFI_GUID HeaderGuid;
|
||||
UINTN MessageLength;
|
||||
UINT8 Data[1];
|
||||
} EFI_SMM_COMMUNICATE_HEADER;
|
||||
|
||||
extern EFI_GUID gSmmCommunicateHeaderGuid;
|
||||
|
||||
#endif
|
67
IntelFrameworkPkg/Include/Guid/SmramMemoryReserve.h
Normal file
67
IntelFrameworkPkg/Include/Guid/SmramMemoryReserve.h
Normal file
@@ -0,0 +1,67 @@
|
||||
/** @file
|
||||
GUID for use in reserving SMRAM regions.
|
||||
|
||||
Copyright (c) 2007, 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.
|
||||
|
||||
Module Name: SmramMemoryReserve.h
|
||||
|
||||
@par Revision Reference:
|
||||
GUIDs defined in SmmCis spec version 0.9
|
||||
|
||||
**/
|
||||
|
||||
#ifndef _EFI_SMM_PEI_SMRAM_MEMORY_RESERVE_H_
|
||||
#define _EFI_SMM_PEI_SMRAM_MEMORY_RESERVE_H_
|
||||
|
||||
#define EFI_SMM_PEI_SMRAM_MEMORY_RESERVE \
|
||||
{ \
|
||||
0x6dadf1d1, 0xd4cc, 0x4910, {0xbb, 0x6e, 0x82, 0xb1, 0xfd, 0x80, 0xff, 0x3d } \
|
||||
}
|
||||
|
||||
//
|
||||
// *******************************************************
|
||||
// EFI_SMRAM_DESCRIPTOR
|
||||
// *******************************************************
|
||||
//
|
||||
typedef struct {
|
||||
EFI_PHYSICAL_ADDRESS PhysicalStart; // Phsyical location in DRAM
|
||||
EFI_PHYSICAL_ADDRESS CpuStart; // Address CPU uses to access the SMI handler
|
||||
// May or may not match PhysicalStart
|
||||
//
|
||||
UINT64 PhysicalSize;
|
||||
UINT64 RegionState;
|
||||
} EFI_SMRAM_DESCRIPTOR;
|
||||
|
||||
//
|
||||
// *******************************************************
|
||||
// EFI_SMRAM_STATE
|
||||
// *******************************************************
|
||||
//
|
||||
#define EFI_SMRAM_OPEN 0x00000001
|
||||
#define EFI_SMRAM_CLOSED 0x00000002
|
||||
#define EFI_SMRAM_LOCKED 0x00000004
|
||||
#define EFI_CACHEABLE 0x00000008
|
||||
#define EFI_ALLOCATED 0x00000010
|
||||
#define EFI_NEEDS_TESTING 0x00000020
|
||||
#define EFI_NEEDS_ECC_INITIALIZATION 0x00000040
|
||||
|
||||
//
|
||||
// *******************************************************
|
||||
// EFI_SMRAM_HOB_DESCRIPTOR_BLOCK
|
||||
// *******************************************************
|
||||
//
|
||||
typedef struct {
|
||||
UINTN NumberOfSmmReservedRegions;
|
||||
EFI_SMRAM_DESCRIPTOR Descriptor[1];
|
||||
} EFI_SMRAM_HOB_DESCRIPTOR_BLOCK;
|
||||
|
||||
extern EFI_GUID gEfiSmmPeiSmramMemoryReserveGuid;
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user