1 /*++ 2 3 Copyright (c) 2004 - 2007, Intel Corporation. All rights reserved.<BR> 4 This program and the accompanying materials 5 are licensed and made available under the terms and conditions of the BSD License 6 which accompanies this distribution. The full text of the license may be found at 7 http://opensource.org/licenses/bsd-license.php 8 9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 11 12 Module Name: 13 14 DataHubRecords.h 15 16 Abstract: 17 18 This file defines GUIDs and associated data structures for records 19 posted to the Data Hub. 20 The producers of these records use these definitions to construct 21 records. 22 The consumers of these records use these definitions to retrieve, 23 filter and parse records. 24 25 For more information please look at DataHub.doc 26 27 --*/ 28 29 #ifndef _DATAHUB_RECORDS_H_ 30 #define _DATAHUB_RECORDS_H_ 31 32 #if (EFI_SPECIFICATION_VERSION >= 0x0002000A) 33 #include "TianoHii.h" 34 #else 35 #include "EfiInternalFormRepresentation.h" 36 #endif 37 #include "DataHubSubClass.h" 38 #include "DataHubSubClassProcessor.h" 39 #include "DataHubSubClassCache.h" 40 #include "DataHubSubClassMemory.h" 41 #include "DataHubSubClassMisc.h" 42 43 /*++ 44 BEGIN: Processor records definitions 45 --*/ 46 47 extern EFI_GUID gProcessorProducerGuid; 48 49 #define EFI_PROCESSOR_PRODUCER_GUID \ 50 { 0x1bf06aea, 0x5bec, 0x4a8d, {0x95, 0x76, 0x74, 0x9b, 0x09, 0x56, 0x2d, 0x30} } 51 52 53 extern EFI_GUID gProcessorSubClassName; 54 55 56 extern EFI_GUID gCacheSubClassName; 57 58 59 extern EFI_GUID gMiscSubClassName; 60 61 /*++ 62 END: Processor records definitions 63 --*/ 64 65 66 67 /*++ 68 BEGIN: Memory records definitions 69 --*/ 70 71 extern EFI_GUID gMemoryProducerGuid; 72 73 #define EFI_MEMORY_PRODUCER_GUID \ 74 { 0x1d7add6e, 0xb2da, 0x4b0b, {0xb2, 0x9f, 0x49, 0xcb, 0x42, 0xf4, 0x63, 0x56} } 75 76 // 77 // ... need memory sub classes here... 78 // 79 extern EFI_GUID gEfiMemorySubClassGuid; 80 81 82 83 /*++ 84 END: Memory records definitions 85 --*/ 86 87 88 /*++ 89 BEGIN: Misc records definitions 90 --*/ 91 92 extern EFI_GUID gMiscProducerGuid; 93 94 #define EFI_MISC_PRODUCER_GUID \ 95 { 0x62512c92, 0x63c4, 0x4d80, {0x82, 0xb1, 0xc1, 0xa4, 0xdc, 0x44, 0x80, 0xe5} } 96 97 98 99 // 100 // ... need misc sub classes here... 101 // 102 extern EFI_GUID gEfiMiscSubClassGuid; 103 104 105 106 107 /*++ 108 END: Misc records definitions 109 --*/ 110 111 112 #endif 113