]> git.proxmox.com Git - mirror_edk2.git/blame - EdkModulePkg/Include/Guid/PciOptionRomTable.h
Fix some cleanall issues
[mirror_edk2.git] / EdkModulePkg / Include / Guid / PciOptionRomTable.h
CommitLineData
878ddf1f 1/*++\r
2\r
3Copyright (c) 2006, Intel Corporation \r
4All rights reserved. This program and the accompanying materials \r
5are licensed and made available under the terms and conditions of the BSD License \r
6which accompanies this distribution. The full text of the license may be found at \r
7http://opensource.org/licenses/bsd-license.php \r
8 \r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
11\r
12Module Name:\r
13\r
14 PciOptionRomTable.h\r
15 \r
16Abstract:\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\r
24#define EFI_PCI_OPTION_ROM_TABLE_GUID \\r
25 { 0x7462660f, 0x1cbd, 0x48da, {0xad, 0x11, 0x91, 0x71, 0x79, 0x13, 0x83, 0x1c } }\r
26\r
27extern EFI_GUID gEfiPciOptionRomTableGuid;\r
28\r
29typedef struct {\r
30 EFI_PHYSICAL_ADDRESS RomAddress; \r
31 EFI_MEMORY_TYPE MemoryType;\r
32 UINT32 RomLength; \r
33 UINT32 Seg; \r
34 UINT8 Bus; \r
35 UINT8 Dev; \r
36 UINT8 Func; \r
37 BOOLEAN ExecutedLegacyBiosImage; \r
38 BOOLEAN DontLoadEfiRom;\r
39} EFI_PCI_OPTION_ROM_DESCRIPTOR;\r
40\r
41typedef struct {\r
42 UINT64 PciOptionRomCount;\r
43 EFI_PCI_OPTION_ROM_DESCRIPTOR *PciOptionRomDescriptors;\r
44} EFI_PCI_OPTION_ROM_TABLE;\r
45\r
46#endif\r