summaryrefslogtreecommitdiff
path: root/Board/EM/Platform/PlatformInfo/PlatformInfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'Board/EM/Platform/PlatformInfo/PlatformInfo.h')
-rw-r--r--Board/EM/Platform/PlatformInfo/PlatformInfo.h74
1 files changed, 74 insertions, 0 deletions
diff --git a/Board/EM/Platform/PlatformInfo/PlatformInfo.h b/Board/EM/Platform/PlatformInfo/PlatformInfo.h
new file mode 100644
index 0000000..6ee5a1c
--- /dev/null
+++ b/Board/EM/Platform/PlatformInfo/PlatformInfo.h
@@ -0,0 +1,74 @@
+//*************************************************************************
+//*************************************************************************
+//** **
+//** (C)Copyright 1985-2011, American Megatrends, Inc. **
+//** **
+//** All Rights Reserved. **
+//** **
+//** 5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093 **
+//** **
+//** Phone: (770)-246-8600 **
+//** **
+//*************************************************************************
+//*************************************************************************
+
+//*************************************************************************
+// $Header: /Alaska/SOURCE/Modules/SharkBayRefCodes/Platform/PlatformInfo/PlatformInfo.h 2 10/31/12 4:28a Alanlin $
+//
+// $Revision: 2 $
+//
+// $Date: 10/31/12 4:28a $
+//*************************************************************************
+// Revision History
+// ----------------
+// $Log: /Alaska/SOURCE/Modules/SharkBayRefCodes/Platform/PlatformInfo/PlatformInfo.h $
+//
+// 2 10/31/12 4:28a Alanlin
+// [TAG] None
+// [Category] Improvement
+// [Description] Fine tune Platform Board Information.
+//
+// 1 2/09/12 12:33a Yurenlai
+// Initial check in.
+//
+//*************************************************************************
+
+
+#ifndef _PLATFORM_INFO_DRIVER_H_
+#define _PLATFORM_INFO_DRIVER_H_
+
+#include "EFI.h"
+
+#define EFI_PLATFORM_INFO_PROTOCOL_GUID \
+ { \
+ 0xd9035175, 0x8ce2, 0x47de, 0xa8, 0xb8, 0xcc, 0x98, 0xe5, 0xe2, 0xa8, 0x85 \
+ }
+
+EFI_FORWARD_DECLARATION (PLATFORM_INFO_PROTOCOL);
+
+typedef struct _PLATFORM_INFO_PROTOCOL {
+ UINT8 RevisonId; // Structure Revision ID
+ UINT8 PlatformFlavor; // Platform Flavor
+ UINT16 BoardId; // Board ID
+ UINT8 BoardRev; // Board Revision
+} PLATFORM_INFO_PROTOCOL;
+
+extern EFI_GUID gPlatformInfoProtocolGuid;
+
+
+#endif
+
+
+//*************************************************************************
+//*************************************************************************
+//** **
+//** (C)Copyright 1985-2011, American Megatrends, Inc. **
+//** **
+//** All Rights Reserved. **
+//** **
+//** 5555 Oakbrook Parkway, Suite 200, Norcross, GA 30093 **
+//** **
+//** Phone: (770)-246-8600 **
+//** **
+//*************************************************************************
+//*************************************************************************