a9102619 |
1 | /*++\r |
2 | \r |
3 | Copyright (c) 2006, Intel Corporation \r |
4 | All rights reserved. This program and the accompanying materials \r |
5 | are licensed and made available under the terms and conditions of the BSD License \r |
6 | which accompanies this distribution. The full text of the license may be found at \r |
7 | http://opensource.org/licenses/bsd-license.php \r |
8 | \r |
9 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r |
10 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r |
11 | \r |
12 | Module Name:\r |
13 | \r |
14 | PciOptionRomTable.h\r |
15 | \r |
16 | Abstract:\r |
17 | \r |
18 | GUID and data structure used to describe the list of PCI Option ROMs present in a system.\r |
19 | \r |
20 | --*/\r |
21 | \r |
22 | #ifndef __PCI_OPTION_ROM_TABLE_GUID_H_\r |
23 | #define __PCI_OPTION_ROM_TABLE_GUID_H_\r |
24 | \r |
25 | #define EFI_PCI_OPTION_ROM_TABLE_GUID \\r |
26 | { 0x7462660f, 0x1cbd, 0x48da, {0xad, 0x11, 0x91, 0x71, 0x79, 0x13, 0x83, 0x1c } }\r |
27 | \r |
28 | extern EFI_GUID gEfiPciOptionRomTableGuid;\r |
29 | \r |
30 | typedef struct {\r |
31 | EFI_PHYSICAL_ADDRESS RomAddress; \r |
32 | EFI_MEMORY_TYPE MemoryType;\r |
33 | UINT32 RomLength; \r |
34 | UINT32 Seg; \r |
35 | UINT8 Bus; \r |
36 | UINT8 Dev; \r |
37 | UINT8 Func; \r |
38 | BOOLEAN ExecutedLegacyBiosImage; \r |
39 | BOOLEAN DontLoadEfiRom;\r |
40 | } EFI_PCI_OPTION_ROM_DESCRIPTOR;\r |
41 | \r |
42 | typedef struct {\r |
43 | UINT64 PciOptionRomCount;\r |
44 | EFI_PCI_OPTION_ROM_DESCRIPTOR *PciOptionRomDescriptors;\r |
45 | } EFI_PCI_OPTION_ROM_TABLE;\r |
46 | \r |
47 | #endif\r |