summaryrefslogtreecommitdiff
path: root/Silicon/BroxtonSoC/BroxtonSiPkg/Cpu/Include/Pram.h
diff options
context:
space:
mode:
Diffstat (limited to 'Silicon/BroxtonSoC/BroxtonSiPkg/Cpu/Include/Pram.h')
-rw-r--r--Silicon/BroxtonSoC/BroxtonSiPkg/Cpu/Include/Pram.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/Silicon/BroxtonSoC/BroxtonSiPkg/Cpu/Include/Pram.h b/Silicon/BroxtonSoC/BroxtonSiPkg/Cpu/Include/Pram.h
new file mode 100644
index 0000000000..c46ce09303
--- /dev/null
+++ b/Silicon/BroxtonSoC/BroxtonSiPkg/Cpu/Include/Pram.h
@@ -0,0 +1,41 @@
+/** @file
+ Copyright (c) 1999 - 2016, Intel Corporation. All rights reserved.<BR>
+
+ 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 _PRAM_H_
+#define _PRAM_H_
+
+//
+// Statements that include other files
+//
+#include <IndustryStandard/Acpi20.h>
+#include "Platform.h"
+#include <Uefi.h>
+
+#define EFI_ACPI_PRAM_BASE_ADDRESS_TABLE_SIGNATURE 0x4D415250
+
+#define EFI_ACPI_OEM_PRAM_REVISION 0x00000001
+
+#define EFI_ACPI_PRAM_BASE_ADDRESS_TABLE_REVISION 0x01
+
+#pragma pack(1)
+
+typedef struct {
+ EFI_ACPI_DESCRIPTION_HEADER Header;
+ EFI_PHYSICAL_ADDRESS PramBaseAddress;
+ UINT32 PramSize;
+} EFI_ACPI_PRAM_BASE_ADDRESS_TABLE;
+
+#pragma pack()
+
+#endif //
+