]> git.proxmox.com Git - mirror_edk2.git/blame - BaseTools/Source/C/Include/IndustryStandard/MemoryMappedConfigurationSpaceAccessTable.h
License header updated to match correct format.
[mirror_edk2.git] / BaseTools / Source / C / Include / IndustryStandard / MemoryMappedConfigurationSpaceAccessTable.h
CommitLineData
30fdf114
LG
1/** @file\r
2 ACPI memory mapped configuration space access table definition, defined at \r
3 in the PCI Firmware Specification, version 3.0 draft version 0.5.\r
4 Specification is available at http://www.pcisig.com.\r
5\r
97fa0ee9 6 Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>\r
30fdf114
LG
7\r
8 This program and the accompanying materials are licensed and made available\r
9 under the terms and conditions of the BSD License which accompanies this\r
97fa0ee9
YL
10 distribution. The full text of the license may be found at\r
11 http://opensource.org/licenses/bsd-license.php\r
30fdf114
LG
12\r
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
15\r
30fdf114
LG
16**/\r
17\r
18#ifndef _MEMORY_MAPPED_CONFIGURATION_SPACE_ACCESS_TABLE_H_\r
19#define _MEMORY_MAPPED_CONFIGURATION_SPACE_ACCESS_TABLE_H_\r
20\r
21//\r
22// Ensure proper structure formats\r
23//\r
24#pragma pack(1)\r
25//\r
26// Memory Mapped Configuration Space Access Table (MCFG)\r
27// This table is a basic description table header followed by\r
28// a number of base address allocation structures.\r
29//\r
30typedef struct {\r
31 UINT64 BaseAddress;\r
32 UINT16 PciSegmentGroupNumber;\r
33 UINT8 StartBusNumber;\r
34 UINT8 EndBusNumber;\r
35 UINT32 Reserved;\r
36} EFI_ACPI_MEMORY_MAPPED_ENHANCED_CONFIGURATION_SPACE_BASE_ADDRESS_ALLOCATION_STRUCTURE;\r
37\r
38//\r
39// MCFG Revision (defined in spec)\r
40//\r
41#define EFI_ACPI_MEMORY_MAPPED_CONFIGURATION_SPACE_ACCESS_TABLE_REVISION 0x01\r
42\r
43#pragma pack()\r
44\r
45#endif\r