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