]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/IndustryStandard/Pci30.h
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2835 6f19259b...
[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 **/
14
15 #ifndef __PCI30_H__
16 #define __PCI30_H__
17
18 //#include "pci23.h"
19
20 #define PCI_CLASS_MASS_STORAGE_SATADPA 0x06
21
22 #pragma pack(push, 1)
23
24 typedef struct {
25 UINT32 Signature; // "PCIR"
26 UINT16 VendorId;
27 UINT16 DeviceId;
28 UINT16 DeviceListOffset;
29 UINT16 Length;
30 UINT8 Revision;
31 UINT8 ClassCode[3];
32 UINT16 ImageLength;
33 UINT16 CodeRevision;
34 UINT8 CodeType;
35 UINT8 Indicator;
36 UINT16 MaxRuntimeImageLength;
37 UINT16 ConfigUtilityCodeHeaderOffset;
38 UINT16 DMTFCLPEntryPointOffset;
39 } PCI_3_0_DATA_STRUCTURE;
40
41 #pragma pack(pop)
42
43
44 #include <IndustryStandard/Pci23.h>
45
46 #endif