]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/C/Include/IndustryStandard/pci30.h
5477f44fed46a361b3cec55523014b809a5d101f
[mirror_edk2.git] / BaseTools / Source / C / Include / IndustryStandard / pci30.h
1 /** @file
2 Support for PCI 3.0 standard.
3
4 Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
5
6 This program and the accompanying materials are licensed and made available
7 under the terms and conditions of the BSD License which accompanies this
8 distribution. The full text of the license may be found at:
9 http://opensource.org/licenses/bsd-license.php
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 File Name: pci30.h
15
16 **/
17
18 #ifndef _PCI30_H
19 #define _PCI30_H
20
21 //#include "pci23.h"
22
23 #define PCI_CLASS_MASS_STORAGE_SATADPA 0x06
24
25 #pragma pack(push, 1)
26
27 typedef struct {
28 UINT32 Signature; // "PCIR"
29 UINT16 VendorId;
30 UINT16 DeviceId;
31 UINT16 DeviceListOffset;
32 UINT16 Length;
33 UINT8 Revision;
34 UINT8 ClassCode[3];
35 UINT16 ImageLength;
36 UINT16 CodeRevision;
37 UINT8 CodeType;
38 UINT8 Indicator;
39 UINT16 MaxRuntimeImageLength;
40 UINT16 ConfigUtilityCodeHeaderOffset;
41 UINT16 DMTFCLPEntryPointOffset;
42 } PCI_3_0_DATA_STRUCTURE;
43
44 #pragma pack(pop)
45
46 #endif