gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
pcireg.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2001-2005 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 /* @file
42  * Device register definitions for a device's PCI config space
43  */
44 
45 #ifndef __PCIREG_H__
46 #define __PCIREG_H__
47 
48 #include <sys/types.h>
49 
50 #include "base/bitfield.hh"
51 #include "base/bitunion.hh"
52 
53 BitUnion16(PciCommandRegister)
54  Bitfield<15, 10> reserved;
55  Bitfield<9> fastBackToBackEn;
56  Bitfield<8> serrEn;
57  Bitfield<7> steppingControl;
58  Bitfield<6> parityErrResp;
59  Bitfield<5> vgaPaletteSnoopEn;
60  Bitfield<4> memWriteInvEn;
61  Bitfield<3> specialCycles;
62  Bitfield<2> busMaster;
63  Bitfield<1> memorySpace;
64  Bitfield<0> ioSpace;
65 EndBitUnion(PciCommandRegister)
66 
67 union PCIConfig {
68  uint8_t data[64];
69 
70  struct {
71  uint16_t vendor;
72  uint16_t device;
73  uint16_t command;
74  uint16_t status;
75  uint8_t revision;
76  uint8_t progIF;
77  uint8_t subClassCode;
78  uint8_t classCode;
79  uint8_t cacheLineSize;
80  uint8_t latencyTimer;
81  uint8_t headerType;
82  uint8_t bist;
83  uint32_t baseAddr[6];
84  uint32_t cardbusCIS;
85  uint16_t subsystemVendorID;
86  uint16_t subsystemID;
87  uint32_t expansionROM;
88  uint8_t capabilityPtr;
89  // Was 8 bytes in the legacy PCI spec, but to support PCIe
90  // this field is now 7 bytes with PCIe's addition of the
91  // capability list pointer.
92  uint8_t reserved[7];
93  uint8_t interruptLine;
94  uint8_t interruptPin;
95  uint8_t minimumGrant;
96  uint8_t maximumLatency;
97  };
98 };
99 
100 // Common PCI offsets
101 #define PCI_VENDOR_ID 0x00 // Vendor ID ro
102 #define PCI_DEVICE_ID 0x02 // Device ID ro
103 #define PCI_COMMAND 0x04 // Command rw
104 #define PCI_STATUS 0x06 // Status rw
105 #define PCI_REVISION_ID 0x08 // Revision ID ro
106 #define PCI_CLASS_CODE 0x09 // Class Code ro
107 #define PCI_SUB_CLASS_CODE 0x0A // Sub Class Code ro
108 #define PCI_BASE_CLASS_CODE 0x0B // Base Class Code ro
109 #define PCI_CACHE_LINE_SIZE 0x0C // Cache Line Size ro+
110 #define PCI_LATENCY_TIMER 0x0D // Latency Timer ro+
111 #define PCI_HEADER_TYPE 0x0E // Header Type ro
112 #define PCI_BIST 0x0F // Built in self test rw
113 
114 // some pci command reg bitfields
115 #define PCI_CMD_BME 0x04 // Bus master function enable
116 #define PCI_CMD_MSE 0x02 // Memory Space Access enable
117 #define PCI_CMD_IOSE 0x01 // I/O space enable
118 
119 // Type 0 PCI offsets
120 #define PCI0_BASE_ADDR0 0x10 // Base Address 0 rw
121 #define PCI0_BASE_ADDR1 0x14 // Base Address 1 rw
122 #define PCI0_BASE_ADDR2 0x18 // Base Address 2 rw
123 #define PCI0_BASE_ADDR3 0x1C // Base Address 3 rw
124 #define PCI0_BASE_ADDR4 0x20 // Base Address 4 rw
125 #define PCI0_BASE_ADDR5 0x24 // Base Address 5 rw
126 #define PCI0_CIS 0x28 // CardBus CIS Pointer ro
127 #define PCI0_SUB_VENDOR_ID 0x2C // Sub-Vendor ID ro
128 #define PCI0_SUB_SYSTEM_ID 0x2E // Sub-System ID ro
129 #define PCI0_ROM_BASE_ADDR 0x30 // Expansion ROM Base Address rw
130 #define PCI0_CAP_PTR 0x34 // Capability list pointer ro
131 #define PCI0_RESERVED 0x35
132 #define PCI0_INTERRUPT_LINE 0x3C // Interrupt Line rw
133 #define PCI0_INTERRUPT_PIN 0x3D // Interrupt Pin ro
134 #define PCI0_MINIMUM_GRANT 0x3E // Maximum Grant ro
135 #define PCI0_MAXIMUM_LATENCY 0x3F // Maximum Latency ro
136 
137 // Type 1 PCI offsets
138 #define PCI1_BASE_ADDR0 0x10 // Base Address 0 rw
139 #define PCI1_BASE_ADDR1 0x14 // Base Address 1 rw
140 #define PCI1_PRI_BUS_NUM 0x18 // Primary Bus Number rw
141 #define PCI1_SEC_BUS_NUM 0x19 // Secondary Bus Number rw
142 #define PCI1_SUB_BUS_NUM 0x1A // Subordinate Bus Number rw
143 #define PCI1_SEC_LAT_TIMER 0x1B // Secondary Latency Timer ro+
144 #define PCI1_IO_BASE 0x1C // I/O Base rw
145 #define PCI1_IO_LIMIT 0x1D // I/O Limit rw
146 #define PCI1_SECONDARY_STATUS 0x1E // Secondary Status rw
147 #define PCI1_MEM_BASE 0x20 // Memory Base rw
148 #define PCI1_MEM_LIMIT 0x22 // Memory Limit rw
149 #define PCI1_PRF_MEM_BASE 0x24 // Prefetchable Memory Base rw
150 #define PCI1_PRF_MEM_LIMIT 0x26 // Prefetchable Memory Limit rw
151 #define PCI1_PRF_BASE_UPPER 0x28 // Prefetchable Base Upper 32 rw
152 #define PCI1_PRF_LIMIT_UPPER 0x2C // Prefetchable Limit Upper 32 rw
153 #define PCI1_IO_BASE_UPPER 0x30 // I/O Base Upper 16 bits rw
154 #define PCI1_IO_LIMIT_UPPER 0x32 // I/O Limit Upper 16 bits rw
155 #define PCI1_RESERVED 0x34 // Reserved ro
156 #define PCI1_ROM_BASE_ADDR 0x38 // Expansion ROM Base Address rw
157 #define PCI1_INTR_LINE 0x3C // Interrupt Line rw
158 #define PCI1_INTR_PIN 0x3D // Interrupt Pin ro
159 #define PCI1_BRIDGE_CTRL 0x3E // Bridge Control rw
160 
161 // Device specific offsets
162 #define PCI_DEVICE_SPECIFIC 0x40 // 192 bytes
163 #define PCI_CONFIG_SIZE 0xFF
164 
165 // Some Vendor IDs
166 #define PCI_VENDOR_DEC 0x1011
167 #define PCI_VENDOR_NCR 0x101A
168 #define PCI_VENDOR_QLOGIC 0x1077
169 #define PCI_VENDOR_SIMOS 0x1291
170 
171 // Some Product IDs
172 #define PCI_PRODUCT_DEC_PZA 0x0008
173 #define PCI_PRODUCT_NCR_810 0x0001
174 #define PCI_PRODUCT_QLOGIC_ISP1020 0x1020
175 #define PCI_PRODUCT_SIMOS_SIMOS 0x1291
176 #define PCI_PRODUCT_SIMOS_ETHER 0x1292
177 
183 #define PMCAP_ID 0x00
184 #define PMCAP_PC 0x02
185 #define PMCAP_PMCS 0x04
186 #define PMCAP_SIZE 0x06
187 
188 #define MSICAP_ID 0x00
189 #define MSICAP_MC 0x02
190 #define MSICAP_MA 0x04
191 #define MSICAP_MUA 0x08
192 #define MSICAP_MD 0x0C
193 #define MSICAP_MMASK 0x10
194 #define MSICAP_MPEND 0x14
195 #define MSICAP_SIZE 0x18
196 
197 #define MSIXCAP_ID 0x00
198 #define MSIXCAP_MXC 0x02
199 #define MSIXCAP_MTAB 0x04
200 #define MSIXCAP_MPBA 0x08
201 #define MSIXCAP_SIZE 0x0C
202 
203 #define PXCAP_ID 0x00
204 #define PXCAP_PXCAP 0x02
205 #define PXCAP_PXDCAP 0x04
206 #define PXCAP_PXDC 0x08
207 #define PXCAP_PXDS 0x0A
208 #define PXCAP_PXLCAP 0x0C
209 #define PXCAP_PXLC 0x10
210 #define PXCAP_PXLS 0x12
211 #define PXCAP_PXDCAP2 0x24
212 #define PXCAP_PXDC2 0x28
213 #define PXCAP_SIZE 0x30
214 
219 union PMCAP {
220  uint8_t data[6];
221  struct {
222  uint16_t pid; /* 0:7 cid
223  * 8:15 next
224  */
225  uint16_t pc; /* 0:2 vs
226  * 3 pmec
227  * 4 reserved
228  * 5 dsi
229  * 6:8 auxc
230  * 9 d1s
231  * 10 d2s
232  * 11:15 psup
233  */
234  uint16_t pmcs; /* 0:1 ps
235  * 2 reserved
236  * 3 nsfrst
237  * 4:7 reserved
238  * 8 pmee
239  * 9:12 dse
240  * 13:14 dsc
241  * 15 pmes
242  */
243  };
244 };
245 
252 union MSICAP {
253  uint8_t data[24];
254  struct {
255  uint16_t mid; /* 0:7 cid
256  * 8:15 next
257  */
258  uint16_t mc; /* 0 msie;
259  * 1:3 mmc;
260  * 4:6 mme;
261  * 7 c64;
262  * 8 pvm;
263  * 9:15 reserved;
264  */
265  uint32_t ma; /* 0:1 reserved
266  * 2:31 addr
267  */
268  uint32_t mua;
269  uint16_t md;
270  uint32_t mmask;
271  uint32_t mpend;
272  };
273 };
274 
279 union MSIXCAP {
280  uint8_t data[12];
281  struct {
282  uint16_t mxid; /* 0:7 cid
283  * 8:15 next
284  */
285  uint16_t mxc; /* 0:10 ts;
286  * 11:13 reserved;
287  * 14 fm;
288  * 15 mxe;
289  */
290  uint32_t mtab; /* 0:2 tbir;
291  * 3:31 to;
292  */
293  uint32_t mpba; /* 0:2 pbir;
294  * 3:31> pbao;
295  */
296  };
297 };
298 
299 union MSIXTable {
300  struct {
301  uint32_t addr_lo;
302  uint32_t addr_hi;
303  uint32_t msg_data;
304  uint32_t vec_ctrl;
305  } fields;
306  uint32_t data[4];
307 };
308 
309 #define MSIXVECS_PER_PBA 64
310 struct MSIXPbaEntry {
311  uint64_t bits;
312 };
313 
318 struct PXCAP {
319  uint8_t data[48];
320  struct {
321  uint16_t pxid; /* 0:7 cid
322  * 8:15 next
323  */
324  uint16_t pxcap; /* 0:3 ver;
325  * 4:7 dpt;
326  * 8 si;
327  * 9:13 imn;
328  * 14:15 reserved;
329  */
330  uint32_t pxdcap; /* 0:2 mps;
331  * 3:4 pfs;
332  * 5 etfs;
333  * 6:8 l0sl;
334  * 9:11 l1l;
335  * 12:14 reserved;
336  * 15 rer;
337  * 16:17 reserved;
338  * 18:25 csplv;
339  * 26:27 cspls;
340  * 28 flrc;
341  * 29:31 reserved;
342  */
343  uint16_t pxdc; /* 0 cere;
344  * 1 nfere;
345  * 2 fere;
346  * 3 urre;
347  * 4 ero;
348  * 5:7 mps;
349  * 8 ete;
350  * 9 pfe;
351  * 10 appme;
352  * 11 ens;
353  * 12:14 mrrs;
354  * 15 func_reset;
355  */
356  uint16_t pxds; /* 0 ced;
357  * 1 nfed;
358  * 2 fed;
359  * 3 urd;
360  * 4 apd;
361  * 5 tp;
362  * 6:15 reserved;
363  */
364  uint32_t pxlcap; /* 0:3 sls;
365  * 4:9 mlw;
366  * 10:11 aspms;
367  * 12:14 l0sel;
368  * 15:17 l1el;
369  * 18 cpm;
370  * 19 sderc;
371  * 20 dllla;
372  * 21 lbnc;
373  * 22:23 reserved;
374  * 24:31 pn;
375  */
376  uint16_t pxlc; /* 0:1 aspmc;
377  * 2 reserved;
378  * 3 rcb;
379  * 4:5 reserved;
380  * 6 ccc;
381  * 7 es;
382  * 8 ecpm;
383  * 9 hawd;
384  * 10:15 reserved;
385  */
386  uint16_t pxls; /* 0:3 cls;
387  * 4:9 nlw;
388  * 10:11 reserved;
389  * 12 slot_clk_config;
390  * 13:15 reserved;
391  */
392  uint8_t reserved[20];
393  uint32_t pxdcap2; /* 0:3 ctrs;
394  * 4 ctds;
395  * 5 arifs;
396  * 6 aors;
397  * 7 aocs32;
398  * 8 aocs64;
399  * 9 ccs128;
400  * 10 nprpr;
401  * 11 ltrs;
402  * 12:13 tphcs;
403  * 14:17 reserved;
404  * 18:19 obffs;
405  * 20 effs;
406  * 21 eetps;
407  * 22:23 meetp;
408  * 24:31 reserved;
409  */
410  uint32_t pxdc2; /* 0:3 ctv;
411  * 4 ctd;
412  * 5:9 reserved;
413  * 10 ltrme;
414  * 11:12 reserved;
415  * 13:14 obffe;
416  * 15:31 reserved;
417  */
418  };
419 };
420 #endif // __PCIREG_H__
MSIXCAP::mtab
uint32_t mtab
Definition: pcireg.h:290
ArmISA::status
Bitfield< 5, 0 > status
Definition: miscregs_types.hh:417
MSIXTable::msg_data
uint32_t msg_data
Definition: pcireg.h:303
PXCAP::pxdc2
uint32_t pxdc2
Definition: pcireg.h:410
MSIXCAP::data
uint8_t data[12]
Definition: pcireg.h:280
data
const char data[]
Definition: circlebuf.test.cc:47
MSIXTable::data
uint32_t data[4]
Definition: pcireg.h:306
PMCAP::pc
uint16_t pc
Definition: pcireg.h:225
MSIXTable::vec_ctrl
uint32_t vec_ctrl
Definition: pcireg.h:304
PXCAP::reserved
uint8_t reserved[20]
Definition: pcireg.h:392
memorySpace
Bitfield< 1 > memorySpace
Definition: pcireg.h:63
PXCAP::pxlcap
uint32_t pxlcap
Definition: pcireg.h:364
fastBackToBackEn
Bitfield< 9 > fastBackToBackEn
Definition: pcireg.h:55
busMaster
Bitfield< 2 > busMaster
Definition: pcireg.h:62
MSIXTable::addr_hi
uint32_t addr_hi
Definition: pcireg.h:302
PXCAP::pxds
uint16_t pxds
Definition: pcireg.h:356
specialCycles
Bitfield< 3 > specialCycles
Definition: pcireg.h:61
MSICAP::mmask
uint32_t mmask
Definition: pcireg.h:270
MSIXTable
Definition: pcireg.h:299
PXCAP::data
uint8_t data[48]
Definition: pcireg.h:319
steppingControl
Bitfield< 7 > steppingControl
Definition: pcireg.h:57
reserved
reserved
Definition: pcireg.h:54
MSIXTable::fields
struct MSIXTable::@97 fields
MSICAP::data
uint8_t data[24]
Definition: pcireg.h:253
MSIXCAP::mxc
uint16_t mxc
Definition: pcireg.h:285
MSIXPbaEntry
Definition: pcireg.h:310
bitfield.hh
PMCAP
Definition: pcireg.h:219
MSICAP::mc
uint16_t mc
Definition: pcireg.h:258
MSIXCAP::mpba
uint32_t mpba
Definition: pcireg.h:293
EndBitUnion
EndBitUnion(PciCommandRegister) union PCIConfig
Definition: pcireg.h:65
MSIXPbaEntry::bits
uint64_t bits
Definition: pcireg.h:311
bitunion.hh
PXCAP::pxid
uint16_t pxid
Definition: pcireg.h:321
MSICAP::md
uint16_t md
Definition: pcireg.h:269
PXCAP::pxdcap
uint32_t pxdcap
Definition: pcireg.h:330
PXCAP::pxdcap2
uint32_t pxdcap2
Definition: pcireg.h:393
PXCAP
Definition: pcireg.h:318
MSIXCAP::mxid
uint16_t mxid
Definition: pcireg.h:282
PXCAP::pxls
uint16_t pxls
Definition: pcireg.h:386
memWriteInvEn
Bitfield< 4 > memWriteInvEn
Definition: pcireg.h:60
PXCAP::pxcap
uint16_t pxcap
Definition: pcireg.h:324
vgaPaletteSnoopEn
Bitfield< 5 > vgaPaletteSnoopEn
Definition: pcireg.h:59
MSIXTable::addr_lo
uint32_t addr_lo
Definition: pcireg.h:301
ioSpace
Bitfield< 0 > ioSpace
Definition: pcireg.h:64
BitUnion16
BitUnion16(PciCommandRegister) Bitfield< 15
MSIXCAP
Definition: pcireg.h:279
PMCAP::pid
uint16_t pid
Definition: pcireg.h:222
PMCAP::data
uint8_t data[6]
Definition: pcireg.h:220
MSICAP
Definition: pcireg.h:252
MSICAP::mid
uint16_t mid
Definition: pcireg.h:255
MSICAP::mpend
uint32_t mpend
Definition: pcireg.h:271
MSICAP::mua
uint32_t mua
Definition: pcireg.h:268
MSICAP::ma
uint32_t ma
Definition: pcireg.h:265
parityErrResp
Bitfield< 6 > parityErrResp
Definition: pcireg.h:58
serrEn
Bitfield< 8 > serrEn
Definition: pcireg.h:56
PXCAP::pxdc
uint16_t pxdc
Definition: pcireg.h:343
PMCAP::pmcs
uint16_t pmcs
Definition: pcireg.h:234
PXCAP::pxlc
uint16_t pxlc
Definition: pcireg.h:376

Generated on Tue Mar 23 2021 19:41:26 for gem5 by doxygen 1.8.17