blob: 0e5745adeb97eb18ee88f56521bea552db996c9b [file] [log] [blame]
Subrata Banik8b9f2892018-01-25 10:50:39 +05301/** @file
2 Support for PCI 2.3 standard.
3
4 Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR>
Peter Lemenkov7bbe3bb2018-12-07 11:23:21 +01005 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.
Subrata Banik8b9f2892018-01-25 10:50:39 +05309
Peter Lemenkov7bbe3bb2018-12-07 11:23:21 +010010 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.
Subrata Banik8b9f2892018-01-25 10:50:39 +053012
13**/
14
15#ifndef _PCI23_H_
16#define _PCI23_H_
17
18#include <IndustryStandard/Pci22.h>
19
20///
21/// PCI_CLASS_MASS_STORAGE, Base Class 01h.
22///
23///@{
24#define PCI_CLASS_MASS_STORAGE_ATA 0x05
25#define PCI_IF_MASS_STORAGE_SINGLE_DMA 0x20
26#define PCI_IF_MASS_STORAGE_CHAINED_DMA 0x30
27///@}
28
29///
30/// PCI_CLASS_NETWORK, Base Class 02h.
31///
32///@{
33#define PCI_CLASS_NETWORK_WORLDFIP 0x05
34#define PCI_CLASS_NETWORK_PICMG_MULTI_COMPUTING 0x06
35///@}
36
37///
38/// PCI_CLASS_BRIDGE, Base Class 06h.
39///
40///@{
41#define PCI_CLASS_BRIDGE_SEMI_TRANSPARENT_P2P 0x09
42#define PCI_IF_BRIDGE_SEMI_TRANSPARENT_P2P_PRIMARY 0x40
43#define PCI_IF_BRIDGE_SEMI_TRANSPARENT_P2P_SECONDARY 0x80
44#define PCI_CLASS_BRIDGE_INFINIBAND_TO_PCI 0x0A
45///@}
46
47///
48/// PCI_CLASS_SCC, Base Class 07h.
49///
50///@{
51#define PCI_SUBCLASS_GPIB 0x04
52#define PCI_SUBCLASS_SMART_CARD 0x05
53///@}
54
55///
56/// PCI_CLASS_SERIAL, Base Class 0Ch.
57///
58///@{
59#define PCI_IF_EHCI 0x20
60#define PCI_CLASS_SERIAL_IB 0x06
61#define PCI_CLASS_SERIAL_IPMI 0x07
62#define PCI_IF_IPMI_SMIC 0x00
63#define PCI_IF_IPMI_KCS 0x01 ///< Keyboard Controller Style
64#define PCI_IF_IPMI_BT 0x02 ///< Block Transfer
65#define PCI_CLASS_SERIAL_SERCOS 0x08
66#define PCI_CLASS_SERIAL_CANBUS 0x09
67///@}
68
69///
70/// PCI_CLASS_WIRELESS, Base Class 0Dh.
71///
72///@{
73#define PCI_SUBCLASS_BLUETOOTH 0x11
74#define PCI_SUBCLASS_BROADBAND 0x12
75///@}
76
77///
78/// PCI_CLASS_DPIO, Base Class 11h.
79///
80///@{
81#define PCI_SUBCLASS_PERFORMANCE_COUNTERS 0x01
82#define PCI_SUBCLASS_COMMUNICATION_SYNCHRONIZATION 0x10
83#define PCI_SUBCLASS_MANAGEMENT_CARD 0x20
84///@}
85
86///
87/// defined in PCI Express Spec.
88///
89#define PCI_EXP_MAX_CONFIG_OFFSET 0x1000
90
91///
92/// PCI Capability List IDs and records.
93///
94#define EFI_PCI_CAPABILITY_ID_PCIX 0x07
95#define EFI_PCI_CAPABILITY_ID_VENDOR 0x09
96
97#pragma pack(1)
98///
Peter Lemenkov7bbe3bb2018-12-07 11:23:21 +010099/// PCI-X Capabilities List,
Subrata Banik8b9f2892018-01-25 10:50:39 +0530100/// Section 7.2, PCI-X Addendum to the PCI Local Bus Specification, Revision 1.0b.
101///
102typedef struct {
103 EFI_PCI_CAPABILITY_HDR Hdr;
104 UINT16 CommandReg;
105 UINT32 StatusReg;
106} EFI_PCI_CAPABILITY_PCIX;
107
108///
Peter Lemenkov7bbe3bb2018-12-07 11:23:21 +0100109/// PCI-X Bridge Capabilities List,
Subrata Banik8b9f2892018-01-25 10:50:39 +0530110/// Section 8.6.2, PCI-X Addendum to the PCI Local Bus Specification, Revision 1.0b.
111///
112typedef struct {
113 EFI_PCI_CAPABILITY_HDR Hdr;
114 UINT16 SecStatusReg;
115 UINT32 StatusReg;
116 UINT32 SplitTransCtrlRegUp;
117 UINT32 SplitTransCtrlRegDn;
118} EFI_PCI_CAPABILITY_PCIX_BRDG;
119
120///
121/// Vendor Specific Capability Header
122/// Table H-1: Capability IDs, PCI Local Bus Specification, 2.3
123///
124typedef struct {
125 EFI_PCI_CAPABILITY_HDR Hdr;
126 UINT8 Length;
127} EFI_PCI_CAPABILITY_VENDOR_HDR;
128
129#pragma pack()
130
131#define PCI_CODE_TYPE_EFI_IMAGE 0x03
132
133#endif