]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Include/Pi/PiMultiPhase.h
BaseTools: refactor and remove out of date use of .keys()
[mirror_edk2.git] / MdePkg / Include / Pi / PiMultiPhase.h
index a92ba4b62cd942d333318f5b5d671898b76fde7b..68390385805e4f0eb5f597b715976637ae159ca4 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   Include file matches things in PI for multiple module types.\r
 \r
-Copyright (c) 2006 - 2010, Intel Corporation.  All rights reserved<BR>\r
+Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>\r
 This program and the accompanying materials are licensed and made available under \r
 the terms and conditions of the BSD License that accompanies this distribution.  \r
 The full text of the license may be found at\r
@@ -95,42 +95,91 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
 ///@}\r
 \r
 ///\r
-/// SMRAM states and capabilities\r
+/// MMRAM states and capabilities\r
 ///\r
-#define EFI_SMRAM_OPEN                  0x00000001\r
-#define EFI_SMRAM_CLOSED                0x00000002\r
-#define EFI_SMRAM_LOCKED                0x00000004\r
+#define EFI_MMRAM_OPEN                  0x00000001\r
+#define EFI_MMRAM_CLOSED                0x00000002\r
+#define EFI_MMRAM_LOCKED                0x00000004\r
 #define EFI_CACHEABLE                   0x00000008\r
 #define EFI_ALLOCATED                   0x00000010\r
 #define EFI_NEEDS_TESTING               0x00000020\r
 #define EFI_NEEDS_ECC_INITIALIZATION    0x00000040\r
 \r
+#define EFI_SMRAM_OPEN                  EFI_MMRAM_OPEN\r
+#define EFI_SMRAM_CLOSED                EFI_MMRAM_CLOSED\r
+#define EFI_SMRAM_LOCKED                EFI_MMRAM_LOCKED\r
+\r
 ///\r
-/// Structure describing a SMRAM region and its accessibility attributes.\r
+/// Structure describing a MMRAM region and its accessibility attributes.\r
 ///\r
 typedef struct {\r
   ///\r
-  /// Designates the physical address of the SMRAM in memory. This view of memory is \r
-  /// the same as seen by I/O-based agents, for example, but it may not be the address seen \r
+  /// Designates the physical address of the MMRAM in memory. This view of memory is\r
+  /// the same as seen by I/O-based agents, for example, but it may not be the address seen\r
   /// by the processors.\r
   ///\r
   EFI_PHYSICAL_ADDRESS  PhysicalStart;\r
   ///\r
-  /// Designates the address of the SMRAM, as seen by software executing on the \r
+  /// Designates the address of the MMRAM, as seen by software executing on the\r
   /// processors. This address may or may not match PhysicalStart.\r
   ///\r
   EFI_PHYSICAL_ADDRESS  CpuStart;       \r
   ///\r
-  /// Describes the number of bytes in the SMRAM region.\r
+  /// Describes the number of bytes in the MMRAM region.\r
   ///\r
   UINT64                PhysicalSize;\r
   ///\r
-  /// Describes the accessibility attributes of the SMRAM.  These attributes include the \r
-  /// hardware state (e.g., Open/Closed/Locked), capability (e.g., cacheable), logical \r
-  /// allocation (e.g., allocated), and pre-use initialization (e.g., needs testing/ECC \r
+  /// Describes the accessibility attributes of the MMRAM.  These attributes include the\r
+  /// hardware state (e.g., Open/Closed/Locked), capability (e.g., cacheable), logical\r
+  /// allocation (e.g., allocated), and pre-use initialization (e.g., needs testing/ECC\r
   /// initialization).\r
   ///\r
   UINT64                RegionState;\r
-} EFI_SMRAM_DESCRIPTOR;\r
+} EFI_MMRAM_DESCRIPTOR;\r
+\r
+typedef EFI_MMRAM_DESCRIPTOR  EFI_SMRAM_DESCRIPTOR;\r
+\r
+typedef enum {\r
+  EFI_PCD_TYPE_8,\r
+  EFI_PCD_TYPE_16,\r
+  EFI_PCD_TYPE_32,\r
+  EFI_PCD_TYPE_64,\r
+  EFI_PCD_TYPE_BOOL,\r
+  EFI_PCD_TYPE_PTR\r
+} EFI_PCD_TYPE;\r
+\r
+typedef struct {\r
+  ///\r
+  /// The returned information associated with the requested TokenNumber. If\r
+  /// TokenNumber is 0, then PcdType is set to EFI_PCD_TYPE_8.\r
+  ///\r
+  EFI_PCD_TYPE      PcdType;\r
+  ///\r
+  /// The size of the data in bytes associated with the TokenNumber specified. If\r
+  /// TokenNumber is 0, then PcdSize is set 0.\r
+  ///\r
+  UINTN             PcdSize;\r
+  ///\r
+  /// The null-terminated ASCII string associated with a given token. If the\r
+  /// TokenNumber specified was 0, then this field corresponds to the null-terminated\r
+  /// ASCII string associated with the token's namespace Guid. If NULL, there is no\r
+  /// name associated with this request.\r
+  ///\r
+  CHAR8             *PcdName;\r
+} EFI_PCD_INFO;\r
+\r
+/**\r
+  The function prototype for invoking a function on an Application Processor.\r
+\r
+  This definition is used by the UEFI MP Serices Protocol, and the\r
+  PI SMM System Table.\r
+\r
+  @param[in,out] Buffer  The pointer to private data buffer.\r
+**/\r
+typedef\r
+VOID\r
+(EFIAPI *EFI_AP_PROCEDURE)(\r
+  IN OUT VOID  *Buffer\r
+  );\r
 \r
 #endif\r