blob: 6ee5a58ce5ec7ff52ce7ad25206dc0eacf86e1c3 [file] [log] [blame]
Vishal Bhoj82c80712015-12-15 21:13:33 +05301/** @file
2
3Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
4This program and the accompanying materials
5are licensed and made available under the terms and conditions of the BSD License
6which accompanies this distribution. The full text of the license may be found at
7http://opensource.org/licenses/bsd-license.php
8
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12Module Name:
13
14 PciExpressBaseAddress.h
15
16Abstract:
17
18
19 GUIDs used for PciExpress Base Address
20
21**/
22
23#ifndef _EFI_PCI_EXPRESS_BASE_ADDRESS_H_
24#define _EFI_PCI_EXPRESS_BASE_ADDRESS_H_
25
26#define EFI_PCI_EXPRESS_BASE_ADDRESS_GUID \
27 { \
28 0x3677d529, 0x326f, 0x4603, {0xa9, 0x26, 0xea, 0xac, 0xe0, 0x1d, 0xcb, 0xb0} \
29 }
30
31//
32// Following structure defines PCI Express Base Address information.
33// This information is platform specific, and built into hob in PEI phase.
34// It can be consumed by PEI PCI driver and DXE PCI driver.
35//
36#pragma pack(1)
37typedef struct _EFI_PCI_EXPRESS_BASE_ADDRESS_INFORMATION {
38 UINT32 HostBridgeNumber;
39 UINT32 RootBridgeNumber;
40 UINT64 PciExpressBaseAddress;
41} EFI_PCI_EXPRESS_BASE_ADDRESS_INFORMATION;
42#pragma pack()
43
44extern EFI_GUID gEfiPciExpressBaseAddressGuid;
45
46#endif