iPXE
Pci22.h
Go to the documentation of this file.
1 /** @file
2  Support for PCI 2.2 standard.
3 
4  This file includes the definitions in the following specifications,
5  PCI Local Bus Specification, 2.2
6  PCI-to-PCI Bridge Architecture Specification, Revision 1.2
7  PC Card Standard, 8.0
8  PCI Power Management Interface Specification, Revision 1.2
9 
10  Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
11  Copyright (c) 2014 - 2015, Hewlett-Packard Development Company, L.P.<BR>
12  SPDX-License-Identifier: BSD-2-Clause-Patent
13 
14 **/
15 
16 #ifndef _PCI22_H_
17 #define _PCI22_H_
18 
19 FILE_LICENCE ( BSD2_PATENT );
20 FILE_SECBOOT ( PERMITTED );
21 
22 #define PCI_MAX_BUS 255
23 #define PCI_MAX_DEVICE 31
24 #define PCI_MAX_FUNC 7
25 
26 #pragma pack(1)
27 
28 ///
29 /// Common header region in PCI Configuration Space
30 /// Section 6.1, PCI Local Bus Specification, 2.2
31 ///
32 typedef struct {
38  UINT8 ClassCode[3];
44 
45 ///
46 /// PCI Device header region in PCI Configuration Space
47 /// Section 6.1, PCI Local Bus Specification, 2.2
48 ///
49 typedef struct {
50  UINT32 Bar[6];
56  UINT8 Reserved1[3];
63 
64 ///
65 /// PCI Device Configuration Space
66 /// Section 6.1, PCI Local Bus Specification, 2.2
67 ///
68 typedef struct {
71 } PCI_TYPE00;
72 
73 ///
74 /// PCI-PCI Bridge header region in PCI Configuration Space
75 /// Section 3.2, PCI-PCI Bridge Architecture, Version 1.2
76 ///
77 typedef struct {
78  UINT32 Bar[2];
101 
102 ///
103 /// PCI-to-PCI Bridge Configuration Space
104 /// Section 3.2, PCI-PCI Bridge Architecture, Version 1.2
105 ///
106 typedef struct {
109 } PCI_TYPE01;
110 
111 typedef union {
115 
116 ///
117 /// CardBus Controller Configuration Space,
118 /// Section 4.5.1, PC Card Standard. 8.0
119 ///
120 typedef struct {
121  UINT32 CardBusSocketReg; ///< Cardbus Socket/ExCA Base
124  UINT16 SecondaryStatus; ///< Secondary Status
125  UINT8 PciBusNumber; ///< PCI Bus Number
126  UINT8 CardBusBusNumber; ///< CardBus Bus Number
127  UINT8 SubordinateBusNumber; ///< Subordinate Bus Number
128  UINT8 CardBusLatencyTimer; ///< CardBus Latency Timer
129  UINT32 MemoryBase0; ///< Memory Base Register 0
130  UINT32 MemoryLimit0; ///< Memory Limit Register 0
134  UINT32 IoLimit0; ///< I/O Base Register 0
135  UINT32 IoBase1; ///< I/O Limit Register 0
137  UINT8 InterruptLine; ///< Interrupt Line
138  UINT8 InterruptPin; ///< Interrupt Pin
139  UINT16 BridgeControl; ///< Bridge Control
141 
142 //
143 // Definitions of PCI class bytes and manipulation macros.
144 //
145 #define PCI_CLASS_OLD 0x00
146 #define PCI_CLASS_OLD_OTHER 0x00
147 #define PCI_CLASS_OLD_VGA 0x01
148 
149 #define PCI_CLASS_MASS_STORAGE 0x01
150 #define PCI_CLASS_MASS_STORAGE_SCSI 0x00
151 #define PCI_CLASS_MASS_STORAGE_IDE 0x01
152 #define PCI_CLASS_MASS_STORAGE_FLOPPY 0x02
153 #define PCI_CLASS_MASS_STORAGE_IPI 0x03
154 #define PCI_CLASS_MASS_STORAGE_RAID 0x04
155 #define PCI_CLASS_MASS_STORAGE_OTHER 0x80
156 
157 #define PCI_CLASS_NETWORK 0x02
158 #define PCI_CLASS_NETWORK_ETHERNET 0x00
159 #define PCI_CLASS_NETWORK_TOKENRING 0x01
160 #define PCI_CLASS_NETWORK_FDDI 0x02
161 #define PCI_CLASS_NETWORK_ATM 0x03
162 #define PCI_CLASS_NETWORK_ISDN 0x04
163 #define PCI_CLASS_NETWORK_OTHER 0x80
164 
165 #define PCI_CLASS_DISPLAY 0x03
166 #define PCI_CLASS_DISPLAY_VGA 0x00
167 #define PCI_IF_VGA_VGA 0x00
168 #define PCI_IF_VGA_8514 0x01
169 #define PCI_CLASS_DISPLAY_XGA 0x01
170 #define PCI_CLASS_DISPLAY_3D 0x02
171 #define PCI_CLASS_DISPLAY_OTHER 0x80
172 
173 #define PCI_CLASS_MEDIA 0x04
174 #define PCI_CLASS_MEDIA_VIDEO 0x00
175 #define PCI_CLASS_MEDIA_AUDIO 0x01
176 #define PCI_CLASS_MEDIA_TELEPHONE 0x02
177 #define PCI_CLASS_MEDIA_OTHER 0x80
178 
179 #define PCI_CLASS_MEMORY_CONTROLLER 0x05
180 #define PCI_CLASS_MEMORY_RAM 0x00
181 #define PCI_CLASS_MEMORY_FLASH 0x01
182 #define PCI_CLASS_MEMORY_OTHER 0x80
183 
184 #define PCI_CLASS_BRIDGE 0x06
185 #define PCI_CLASS_BRIDGE_HOST 0x00
186 #define PCI_CLASS_BRIDGE_ISA 0x01
187 #define PCI_CLASS_BRIDGE_EISA 0x02
188 #define PCI_CLASS_BRIDGE_MCA 0x03
189 #define PCI_CLASS_BRIDGE_P2P 0x04
190 #define PCI_IF_BRIDGE_P2P 0x00
191 #define PCI_IF_BRIDGE_P2P_SUBTRACTIVE 0x01
192 #define PCI_CLASS_BRIDGE_PCMCIA 0x05
193 #define PCI_CLASS_BRIDGE_NUBUS 0x06
194 #define PCI_CLASS_BRIDGE_CARDBUS 0x07
195 #define PCI_CLASS_BRIDGE_RACEWAY 0x08
196 #define PCI_CLASS_BRIDGE_OTHER 0x80
197 #define PCI_CLASS_BRIDGE_ISA_PDECODE 0x80
198 
199 #define PCI_CLASS_SCC 0x07///< Simple communications controllers
200 #define PCI_SUBCLASS_SERIAL 0x00
201 #define PCI_IF_GENERIC_XT 0x00
202 #define PCI_IF_16450 0x01
203 #define PCI_IF_16550 0x02
204 #define PCI_IF_16650 0x03
205 #define PCI_IF_16750 0x04
206 #define PCI_IF_16850 0x05
207 #define PCI_IF_16950 0x06
208 #define PCI_SUBCLASS_PARALLEL 0x01
209 #define PCI_IF_PARALLEL_PORT 0x00
210 #define PCI_IF_BI_DIR_PARALLEL_PORT 0x01
211 #define PCI_IF_ECP_PARALLEL_PORT 0x02
212 #define PCI_IF_1284_CONTROLLER 0x03
213 #define PCI_IF_1284_DEVICE 0xFE
214 #define PCI_SUBCLASS_MULTIPORT_SERIAL 0x02
215 #define PCI_SUBCLASS_MODEM 0x03
216 #define PCI_IF_GENERIC_MODEM 0x00
217 #define PCI_IF_16450_MODEM 0x01
218 #define PCI_IF_16550_MODEM 0x02
219 #define PCI_IF_16650_MODEM 0x03
220 #define PCI_IF_16750_MODEM 0x04
221 #define PCI_SUBCLASS_SCC_OTHER 0x80
222 
223 #define PCI_CLASS_SYSTEM_PERIPHERAL 0x08
224 #define PCI_SUBCLASS_PIC 0x00
225 #define PCI_IF_8259_PIC 0x00
226 #define PCI_IF_ISA_PIC 0x01
227 #define PCI_IF_EISA_PIC 0x02
228 #define PCI_IF_APIC_CONTROLLER 0x10 ///< I/O APIC interrupt controller , 32 byte none-prefetchable memory.
229 #define PCI_IF_APIC_CONTROLLER2 0x20
230 #define PCI_SUBCLASS_DMA 0x01
231 #define PCI_IF_8237_DMA 0x00
232 #define PCI_IF_ISA_DMA 0x01
233 #define PCI_IF_EISA_DMA 0x02
234 #define PCI_SUBCLASS_TIMER 0x02
235 #define PCI_IF_8254_TIMER 0x00
236 #define PCI_IF_ISA_TIMER 0x01
237 #define PCI_IF_EISA_TIMER 0x02
238 #define PCI_SUBCLASS_RTC 0x03
239 #define PCI_IF_GENERIC_RTC 0x00
240 #define PCI_IF_ISA_RTC 0x01
241 #define PCI_SUBCLASS_PNP_CONTROLLER 0x04 ///< HotPlug Controller
242 #define PCI_SUBCLASS_PERIPHERAL_OTHER 0x80
243 
244 #define PCI_CLASS_INPUT_DEVICE 0x09
245 #define PCI_SUBCLASS_KEYBOARD 0x00
246 #define PCI_SUBCLASS_PEN 0x01
247 #define PCI_SUBCLASS_MOUSE_CONTROLLER 0x02
248 #define PCI_SUBCLASS_SCAN_CONTROLLER 0x03
249 #define PCI_SUBCLASS_GAMEPORT 0x04
250 #define PCI_IF_GAMEPORT 0x00
251 #define PCI_IF_GAMEPORT1 0x10
252 #define PCI_SUBCLASS_INPUT_OTHER 0x80
253 
254 #define PCI_CLASS_DOCKING_STATION 0x0A
255 #define PCI_SUBCLASS_DOCKING_GENERIC 0x00
256 #define PCI_SUBCLASS_DOCKING_OTHER 0x80
257 
258 #define PCI_CLASS_PROCESSOR 0x0B
259 #define PCI_SUBCLASS_PROC_386 0x00
260 #define PCI_SUBCLASS_PROC_486 0x01
261 #define PCI_SUBCLASS_PROC_PENTIUM 0x02
262 #define PCI_SUBCLASS_PROC_ALPHA 0x10
263 #define PCI_SUBCLASS_PROC_POWERPC 0x20
264 #define PCI_SUBCLASS_PROC_MIPS 0x30
265 #define PCI_SUBCLASS_PROC_CO_PORC 0x40 ///< Co-Processor
266 
267 #define PCI_CLASS_SERIAL 0x0C
268 #define PCI_CLASS_SERIAL_FIREWIRE 0x00
269 #define PCI_IF_1394 0x00
270 #define PCI_IF_1394_OPEN_HCI 0x10
271 #define PCI_CLASS_SERIAL_ACCESS_BUS 0x01
272 #define PCI_CLASS_SERIAL_SSA 0x02
273 #define PCI_CLASS_SERIAL_USB 0x03
274 #define PCI_IF_UHCI 0x00
275 #define PCI_IF_OHCI 0x10
276 #define PCI_IF_USB_OTHER 0x80
277 #define PCI_IF_USB_DEVICE 0xFE
278 #define PCI_CLASS_SERIAL_FIBRECHANNEL 0x04
279 #define PCI_CLASS_SERIAL_SMB 0x05
280 
281 #define PCI_CLASS_WIRELESS 0x0D
282 #define PCI_SUBCLASS_IRDA 0x00
283 #define PCI_SUBCLASS_IR 0x01
284 #define PCI_SUBCLASS_RF 0x10
285 #define PCI_SUBCLASS_WIRELESS_OTHER 0x80
286 
287 #define PCI_CLASS_INTELLIGENT_IO 0x0E
288 
289 #define PCI_CLASS_SATELLITE 0x0F
290 #define PCI_SUBCLASS_TV 0x01
291 #define PCI_SUBCLASS_AUDIO 0x02
292 #define PCI_SUBCLASS_VOICE 0x03
293 #define PCI_SUBCLASS_DATA 0x04
294 
295 #define PCI_SECURITY_CONTROLLER 0x10 ///< Encryption and decryption controller
296 #define PCI_SUBCLASS_NET_COMPUT 0x00
297 #define PCI_SUBCLASS_ENTERTAINMENT 0x10
298 #define PCI_SUBCLASS_SECURITY_OTHER 0x80
299 
300 #define PCI_CLASS_DPIO 0x11
301 #define PCI_SUBCLASS_DPIO 0x00
302 #define PCI_SUBCLASS_DPIO_OTHER 0x80
303 
304 /**
305  Macro that checks whether the Base Class code of device matched.
306 
307  @param _p Specified device.
308  @param c Base Class code needs matching.
309 
310  @retval TRUE Base Class code matches the specified device.
311  @retval FALSE Base Class code doesn't match the specified device.
312 
313 **/
314 #define IS_CLASS1(_p, c) ((_p)->Hdr.ClassCode[2] == (c))
315 
316 /**
317  Macro that checks whether the Base Class code and Sub-Class code of device matched.
318 
319  @param _p Specified device.
320  @param c Base Class code needs matching.
321  @param s Sub-Class code needs matching.
322 
323  @retval TRUE Base Class code and Sub-Class code match the specified device.
324  @retval FALSE Base Class code and Sub-Class code don't match the specified device.
325 
326 **/
327 #define IS_CLASS2(_p, c, s) (IS_CLASS1 (_p, c) && ((_p)->Hdr.ClassCode[1] == (s)))
328 
329 /**
330  Macro that checks whether the Base Class code, Sub-Class code and Interface code of device matched.
331 
332  @param _p Specified device.
333  @param c Base Class code needs matching.
334  @param s Sub-Class code needs matching.
335  @param p Interface code needs matching.
336 
337  @retval TRUE Base Class code, Sub-Class code and Interface code match the specified device.
338  @retval FALSE Base Class code, Sub-Class code and Interface code don't match the specified device.
339 
340 **/
341 #define IS_CLASS3(_p, c, s, p) (IS_CLASS2 (_p, c, s) && ((_p)->Hdr.ClassCode[0] == (p)))
342 
343 /**
344  Macro that checks whether device is a display controller.
345 
346  @param _p Specified device.
347 
348  @retval TRUE Device is a display controller.
349  @retval FALSE Device is not a display controller.
350 
351 **/
352 #define IS_PCI_DISPLAY(_p) IS_CLASS1 (_p, PCI_CLASS_DISPLAY)
353 
354 /**
355  Macro that checks whether device is a VGA-compatible controller.
356 
357  @param _p Specified device.
358 
359  @retval TRUE Device is a VGA-compatible controller.
360  @retval FALSE Device is not a VGA-compatible controller.
361 
362 **/
363 #define IS_PCI_VGA(_p) IS_CLASS3 (_p, PCI_CLASS_DISPLAY, PCI_CLASS_DISPLAY_VGA, PCI_IF_VGA_VGA)
364 
365 /**
366  Macro that checks whether device is an 8514-compatible controller.
367 
368  @param _p Specified device.
369 
370  @retval TRUE Device is an 8514-compatible controller.
371  @retval FALSE Device is not an 8514-compatible controller.
372 
373 **/
374 #define IS_PCI_8514(_p) IS_CLASS3 (_p, PCI_CLASS_DISPLAY, PCI_CLASS_DISPLAY_VGA, PCI_IF_VGA_8514)
375 
376 /**
377  Macro that checks whether device is built before the Class Code field was defined.
378 
379  @param _p Specified device.
380 
381  @retval TRUE Device is an old device.
382  @retval FALSE Device is not an old device.
383 
384 **/
385 #define IS_PCI_OLD(_p) IS_CLASS1 (_p, PCI_CLASS_OLD)
386 
387 /**
388  Macro that checks whether device is a VGA-compatible device built before the Class Code field was defined.
389 
390  @param _p Specified device.
391 
392  @retval TRUE Device is an old VGA-compatible device.
393  @retval FALSE Device is not an old VGA-compatible device.
394 
395 **/
396 #define IS_PCI_OLD_VGA(_p) IS_CLASS2 (_p, PCI_CLASS_OLD, PCI_CLASS_OLD_VGA)
397 
398 /**
399  Macro that checks whether device is an IDE controller.
400 
401  @param _p Specified device.
402 
403  @retval TRUE Device is an IDE controller.
404  @retval FALSE Device is not an IDE controller.
405 
406 **/
407 #define IS_PCI_IDE(_p) IS_CLASS2 (_p, PCI_CLASS_MASS_STORAGE, PCI_CLASS_MASS_STORAGE_IDE)
408 
409 /**
410  Macro that checks whether device is a SCSI bus controller.
411 
412  @param _p Specified device.
413 
414  @retval TRUE Device is a SCSI bus controller.
415  @retval FALSE Device is not a SCSI bus controller.
416 
417 **/
418 #define IS_PCI_SCSI(_p) IS_CLASS2 (_p, PCI_CLASS_MASS_STORAGE, PCI_CLASS_MASS_STORAGE_SCSI)
419 
420 /**
421  Macro that checks whether device is a RAID controller.
422 
423  @param _p Specified device.
424 
425  @retval TRUE Device is a RAID controller.
426  @retval FALSE Device is not a RAID controller.
427 
428 **/
429 #define IS_PCI_RAID(_p) IS_CLASS2 (_p, PCI_CLASS_MASS_STORAGE, PCI_CLASS_MASS_STORAGE_RAID)
430 
431 /**
432  Macro that checks whether device is an ISA bridge.
433 
434  @param _p Specified device.
435 
436  @retval TRUE Device is an ISA bridge.
437  @retval FALSE Device is not an ISA bridge.
438 
439 **/
440 #define IS_PCI_LPC(_p) IS_CLASS2 (_p, PCI_CLASS_BRIDGE, PCI_CLASS_BRIDGE_ISA)
441 
442 /**
443  Macro that checks whether device is a PCI-to-PCI bridge.
444 
445  @param _p Specified device.
446 
447  @retval TRUE Device is a PCI-to-PCI bridge.
448  @retval FALSE Device is not a PCI-to-PCI bridge.
449 
450 **/
451 #define IS_PCI_P2P(_p) IS_CLASS3 (_p, PCI_CLASS_BRIDGE, PCI_CLASS_BRIDGE_P2P, PCI_IF_BRIDGE_P2P)
452 
453 /**
454  Macro that checks whether device is a Subtractive Decode PCI-to-PCI bridge.
455 
456  @param _p Specified device.
457 
458  @retval TRUE Device is a Subtractive Decode PCI-to-PCI bridge.
459  @retval FALSE Device is not a Subtractive Decode PCI-to-PCI bridge.
460 
461 **/
462 #define IS_PCI_P2P_SUB(_p) IS_CLASS3 (_p, PCI_CLASS_BRIDGE, PCI_CLASS_BRIDGE_P2P, PCI_IF_BRIDGE_P2P_SUBTRACTIVE)
463 
464 /**
465  Macro that checks whether device is a 16550-compatible serial controller.
466 
467  @param _p Specified device.
468 
469  @retval TRUE Device is a 16550-compatible serial controller.
470  @retval FALSE Device is not a 16550-compatible serial controller.
471 
472 **/
473 #define IS_PCI_16550_SERIAL(_p) IS_CLASS3 (_p, PCI_CLASS_SCC, PCI_SUBCLASS_SERIAL, PCI_IF_16550)
474 
475 /**
476  Macro that checks whether device is a Universal Serial Bus controller.
477 
478  @param _p Specified device.
479 
480  @retval TRUE Device is a Universal Serial Bus controller.
481  @retval FALSE Device is not a Universal Serial Bus controller.
482 
483 **/
484 #define IS_PCI_USB(_p) IS_CLASS2 (_p, PCI_CLASS_SERIAL, PCI_CLASS_SERIAL_USB)
485 
486 //
487 // the definition of Header Type
488 //
489 #define HEADER_TYPE_DEVICE 0x00
490 #define HEADER_TYPE_PCI_TO_PCI_BRIDGE 0x01
491 #define HEADER_TYPE_CARDBUS_BRIDGE 0x02
492 #define HEADER_TYPE_MULTI_FUNCTION 0x80
493 //
494 // Mask of Header type
495 //
496 #define HEADER_LAYOUT_CODE 0x7f
497 
498 /**
499  Macro that checks whether device is a PCI-PCI bridge.
500 
501  @param _p Specified device.
502 
503  @retval TRUE Device is a PCI-PCI bridge.
504  @retval FALSE Device is not a PCI-PCI bridge.
505 
506 **/
507 #define IS_PCI_BRIDGE(_p) (((_p)->Hdr.HeaderType & HEADER_LAYOUT_CODE) == (HEADER_TYPE_PCI_TO_PCI_BRIDGE))
508 
509 /**
510  Macro that checks whether device is a CardBus bridge.
511 
512  @param _p Specified device.
513 
514  @retval TRUE Device is a CardBus bridge.
515  @retval FALSE Device is not a CardBus bridge.
516 
517 **/
518 #define IS_CARDBUS_BRIDGE(_p) (((_p)->Hdr.HeaderType & HEADER_LAYOUT_CODE) == (HEADER_TYPE_CARDBUS_BRIDGE))
519 
520 /**
521  Macro that checks whether device is a multiple functions device.
522 
523  @param _p Specified device.
524 
525  @retval TRUE Device is a multiple functions device.
526  @retval FALSE Device is not a multiple functions device.
527 
528 **/
529 #define IS_PCI_MULTI_FUNC(_p) ((_p)->Hdr.HeaderType & HEADER_TYPE_MULTI_FUNCTION)
530 
531 ///
532 /// Rom Base Address in Bridge, defined in PCI-to-PCI Bridge Architecture Specification,
533 ///
534 #define PCI_BRIDGE_ROMBAR 0x38
535 
536 #define PCI_MAX_BAR 0x0006
537 #define PCI_MAX_CONFIG_OFFSET 0x0100
538 
539 #define PCI_VENDOR_ID_OFFSET 0x00
540 #define PCI_DEVICE_ID_OFFSET 0x02
541 #define PCI_COMMAND_OFFSET 0x04
542 #define PCI_PRIMARY_STATUS_OFFSET 0x06
543 #define PCI_REVISION_ID_OFFSET 0x08
544 #define PCI_CLASSCODE_OFFSET 0x09
545 #define PCI_CACHELINE_SIZE_OFFSET 0x0C
546 #define PCI_LATENCY_TIMER_OFFSET 0x0D
547 #define PCI_HEADER_TYPE_OFFSET 0x0E
548 #define PCI_BIST_OFFSET 0x0F
549 #define PCI_BASE_ADDRESSREG_OFFSET 0x10
550 #define PCI_CARDBUS_CIS_OFFSET 0x28
551 #define PCI_SVID_OFFSET 0x2C ///< SubSystem Vendor id
552 #define PCI_SUBSYSTEM_VENDOR_ID_OFFSET 0x2C
553 #define PCI_SID_OFFSET 0x2E ///< SubSystem ID
554 #define PCI_SUBSYSTEM_ID_OFFSET 0x2E
555 #define PCI_EXPANSION_ROM_BASE 0x30
556 #define PCI_CAPBILITY_POINTER_OFFSET 0x34
557 #define PCI_INT_LINE_OFFSET 0x3C ///< Interrupt Line Register
558 #define PCI_INT_PIN_OFFSET 0x3D ///< Interrupt Pin Register
559 #define PCI_MAXGNT_OFFSET 0x3E ///< Max Grant Register
560 #define PCI_MAXLAT_OFFSET 0x3F ///< Max Latency Register
561 
562 //
563 // defined in PCI-to-PCI Bridge Architecture Specification
564 //
565 #define PCI_BRIDGE_PRIMARY_BUS_REGISTER_OFFSET 0x18
566 #define PCI_BRIDGE_SECONDARY_BUS_REGISTER_OFFSET 0x19
567 #define PCI_BRIDGE_SUBORDINATE_BUS_REGISTER_OFFSET 0x1a
568 #define PCI_BRIDGE_SECONDARY_LATENCY_TIMER_OFFSET 0x1b
569 #define PCI_BRIDGE_STATUS_REGISTER_OFFSET 0x1E
570 #define PCI_BRIDGE_CONTROL_REGISTER_OFFSET 0x3E
571 
572 ///
573 /// Interrupt Line "Unknown" or "No connection" value defined for x86 based system
574 ///
575 #define PCI_INT_LINE_UNKNOWN 0xFF
576 
577 ///
578 /// PCI Access Data Format
579 ///
580 typedef union {
581  struct {
582  UINT32 Reg : 8;
584  UINT32 Dev : 5;
585  UINT32 Bus : 8;
588  } Bits;
591 
592 #pragma pack()
593 
594 #define EFI_PCI_COMMAND_IO_SPACE BIT0 ///< 0x0001
595 #define EFI_PCI_COMMAND_MEMORY_SPACE BIT1 ///< 0x0002
596 #define EFI_PCI_COMMAND_BUS_MASTER BIT2 ///< 0x0004
597 #define EFI_PCI_COMMAND_SPECIAL_CYCLE BIT3 ///< 0x0008
598 #define EFI_PCI_COMMAND_MEMORY_WRITE_AND_INVALIDATE BIT4 ///< 0x0010
599 #define EFI_PCI_COMMAND_VGA_PALETTE_SNOOP BIT5 ///< 0x0020
600 #define EFI_PCI_COMMAND_PARITY_ERROR_RESPOND BIT6 ///< 0x0040
601 #define EFI_PCI_COMMAND_STEPPING_CONTROL BIT7 ///< 0x0080
602 #define EFI_PCI_COMMAND_SERR BIT8 ///< 0x0100
603 #define EFI_PCI_COMMAND_FAST_BACK_TO_BACK BIT9 ///< 0x0200
604 
605 //
606 // defined in PCI-to-PCI Bridge Architecture Specification
607 //
608 #define EFI_PCI_BRIDGE_CONTROL_PARITY_ERROR_RESPONSE BIT0 ///< 0x0001
609 #define EFI_PCI_BRIDGE_CONTROL_SERR BIT1 ///< 0x0002
610 #define EFI_PCI_BRIDGE_CONTROL_ISA BIT2 ///< 0x0004
611 #define EFI_PCI_BRIDGE_CONTROL_VGA BIT3 ///< 0x0008
612 #define EFI_PCI_BRIDGE_CONTROL_VGA_16 BIT4 ///< 0x0010
613 #define EFI_PCI_BRIDGE_CONTROL_MASTER_ABORT BIT5 ///< 0x0020
614 #define EFI_PCI_BRIDGE_CONTROL_RESET_SECONDARY_BUS BIT6 ///< 0x0040
615 #define EFI_PCI_BRIDGE_CONTROL_FAST_BACK_TO_BACK BIT7 ///< 0x0080
616 #define EFI_PCI_BRIDGE_CONTROL_PRIMARY_DISCARD_TIMER BIT8 ///< 0x0100
617 #define EFI_PCI_BRIDGE_CONTROL_SECONDARY_DISCARD_TIMER BIT9 ///< 0x0200
618 #define EFI_PCI_BRIDGE_CONTROL_TIMER_STATUS BIT10 ///< 0x0400
619 #define EFI_PCI_BRIDGE_CONTROL_DISCARD_TIMER_SERR BIT11 ///< 0x0800
620 
621 //
622 // Following are the PCI-CARDBUS bridge control bit, defined in PC Card Standard
623 //
624 #define EFI_PCI_BRIDGE_CONTROL_IREQINT_ENABLE BIT7 ///< 0x0080
625 #define EFI_PCI_BRIDGE_CONTROL_RANGE0_MEMORY_TYPE BIT8 ///< 0x0100
626 #define EFI_PCI_BRIDGE_CONTROL_RANGE1_MEMORY_TYPE BIT9 ///< 0x0200
627 #define EFI_PCI_BRIDGE_CONTROL_WRITE_POSTING_ENABLE BIT10 ///< 0x0400
628 
629 //
630 // Following are the PCI status control bit
631 //
632 #define EFI_PCI_STATUS_CAPABILITY BIT4 ///< 0x0010
633 #define EFI_PCI_STATUS_66MZ_CAPABLE BIT5 ///< 0x0020
634 #define EFI_PCI_FAST_BACK_TO_BACK_CAPABLE BIT7 ///< 0x0080
635 #define EFI_PCI_MASTER_DATA_PARITY_ERROR BIT8 ///< 0x0100
636 
637 ///
638 /// defined in PC Card Standard
639 ///
640 #define EFI_PCI_CARDBUS_BRIDGE_CAPABILITY_PTR 0x14
641 
642 #pragma pack(1)
643 //
644 // PCI Capability List IDs and records
645 //
646 #define EFI_PCI_CAPABILITY_ID_PMI 0x01
647 #define EFI_PCI_CAPABILITY_ID_AGP 0x02
648 #define EFI_PCI_CAPABILITY_ID_VPD 0x03
649 #define EFI_PCI_CAPABILITY_ID_SLOTID 0x04
650 #define EFI_PCI_CAPABILITY_ID_MSI 0x05
651 #define EFI_PCI_CAPABILITY_ID_HOTPLUG 0x06
652 #define EFI_PCI_CAPABILITY_ID_SHPC 0x0C
653 
654 ///
655 /// Capabilities List Header
656 /// Section 6.7, PCI Local Bus Specification, 2.2
657 ///
658 typedef struct {
662 
663 ///
664 /// PMC - Power Management Capabilities
665 /// Section 3.2.3, PCI Power Management Interface Specification, Revision 1.2
666 ///
667 typedef union {
668  struct {
677  } Bits;
679 } EFI_PCI_PMC;
680 
681 #define EFI_PCI_PMC_D3_COLD_MASK (BIT15)
682 
683 ///
684 /// PMCSR - Power Management Control/Status
685 /// Section 3.2.4, PCI Power Management Interface Specification, Revision 1.2
686 ///
687 typedef union {
688  struct {
697  } Bits;
699 } EFI_PCI_PMCSR;
700 
701 #define PCI_POWER_STATE_D0 0
702 #define PCI_POWER_STATE_D1 1
703 #define PCI_POWER_STATE_D2 2
704 #define PCI_POWER_STATE_D3_HOT 3
705 
706 ///
707 /// PMCSR_BSE - PMCSR PCI-to-PCI Bridge Support Extensions
708 /// Section 3.2.5, PCI Power Management Interface Specification, Revision 1.2
709 ///
710 typedef union {
711  struct {
713  UINT8 B2B3 : 1;
715  } Bits;
718 
719 ///
720 /// Power Management Register Block Definition
721 /// Section 3.2, PCI Power Management Interface Specification, Revision 1.2
722 ///
723 typedef struct {
730 
731 ///
732 /// A.G.P Capability
733 /// Section 6.1.4, Accelerated Graphics Port Interface Specification, Revision 1.0
734 ///
735 typedef struct {
742 
743 ///
744 /// VPD Capability Structure
745 /// Appendix I, PCI Local Bus Specification, 2.2
746 ///
747 typedef struct {
752 
753 ///
754 /// Slot Numbering Capabilities Register
755 /// Section 3.2.6, PCI-to-PCI Bridge Architecture Specification, Revision 1.2
756 ///
757 typedef struct {
762 
763 ///
764 /// Message Capability Structure for 32-bit Message Address
765 /// Section 6.8.1, PCI Local Bus Specification, 2.2
766 ///
767 typedef struct {
773 
774 ///
775 /// Message Capability Structure for 64-bit Message Address
776 /// Section 6.8.1, PCI Local Bus Specification, 2.2
777 ///
778 typedef struct {
785 
786 ///
787 /// Capability EFI_PCI_CAPABILITY_ID_HOTPLUG,
788 /// CompactPCI Hot Swap Specification PICMG 2.1, R1.0
789 ///
790 typedef struct {
792  ///
793  /// not finished - fields need to go here
794  ///
796 
797 #define PCI_BAR_IDX0 0x00
798 #define PCI_BAR_IDX1 0x01
799 #define PCI_BAR_IDX2 0x02
800 #define PCI_BAR_IDX3 0x03
801 #define PCI_BAR_IDX4 0x04
802 #define PCI_BAR_IDX5 0x05
803 
804 ///
805 /// EFI PCI Option ROM definitions
806 ///
807 #define EFI_ROOT_BRIDGE_LIST 'eprb'
808 #define EFI_PCI_EXPANSION_ROM_HEADER_EFISIGNATURE 0x0EF1 ///< defined in UEFI Spec.
809 
810 #define PCI_EXPANSION_ROM_HEADER_SIGNATURE 0xaa55
811 #define PCI_DATA_STRUCTURE_SIGNATURE SIGNATURE_32 ('P', 'C', 'I', 'R')
812 #define PCI_CODE_TYPE_PCAT_IMAGE 0x00
813 #define EFI_PCI_EXPANSION_ROM_HEADER_COMPRESSED 0x0001 ///< defined in UEFI spec.
814 
815 ///
816 /// Standard PCI Expansion ROM Header
817 /// Section 13.4.2, Unified Extensible Firmware Interface Specification, Version 2.1
818 ///
819 typedef struct {
820  UINT16 Signature; ///< 0xaa55
824 
825 ///
826 /// Legacy ROM Header Extensions
827 /// Section 6.3.3.1, PCI Local Bus Specification, 2.2
828 ///
829 typedef struct {
830  UINT16 Signature; ///< 0xaa55
832  UINT8 InitEntryPoint[3];
836 
837 ///
838 /// PCI Data Structure Format
839 /// Section 6.3.1.2, PCI Local Bus Specification, 2.2
840 ///
841 typedef struct {
842  UINT32 Signature; ///< "PCIR"
848  UINT8 ClassCode[3];
855 
856 ///
857 /// EFI PCI Expansion ROM Header
858 /// Section 13.4.2, Unified Extensible Firmware Interface Specification, Version 2.1
859 ///
860 typedef struct {
861  UINT16 Signature; ///< 0xaa55
863  UINT32 EfiSignature; ///< 0x0EF1
871 
872 typedef union {
878 
879 #pragma pack()
880 
881 #endif
PCI_EXPANSION_ROM_HEADER * Generic
Definition: Pci22.h:874
UINT16 Reserved0
Definition: Pci22.h:845
UINT8 PciBusNumber
PCI Bus Number.
Definition: Pci22.h:125
PCI-to-PCI Bridge Configuration Space Section 3.2, PCI-PCI Bridge Architecture, Version 1....
Definition: Pci22.h:106
UINT16 Reserved
Definition: Pci22.h:671
UINT16 Length
Definition: Pci22.h:846
UINT8 CardBusBusNumber
CardBus Bus Number.
Definition: Pci22.h:126
UINT32 IoLimit0
I/O Base Register 0.
Definition: Pci22.h:134
UINT16 D2Support
Definition: Pci22.h:675
UINT16 CodeRevision
Definition: Pci22.h:850
Message Capability Structure for 64-bit Message Address Section 6.8.1, PCI Local Bus Specification,...
Definition: Pci22.h:778
UINT32 Signature
"PCIR"
Definition: Pci22.h:842
EFI_PCI_CAPABILITY_HDR Hdr
Definition: Pci22.h:791
EFI_PCI_CAPABILITY_HDR Hdr
Definition: Pci22.h:748
UINT32_t Reserved[2]
Must be zero.
Definition: pxe_api.h:76
PCI Device header region in PCI Configuration Space Section 6.1, PCI Local Bus Specification,...
Definition: Pci22.h:49
PMCSR - Power Management Control/Status Section 3.2.4, PCI Power Management Interface Specification,...
Definition: Pci22.h:687
UINT16 NoSoftReset
Definition: Pci22.h:691
A.G.P Capability Section 6.1.4, Accelerated Graphics Port Interface Specification,...
Definition: Pci22.h:735
FILE_SECBOOT(PERMITTED)
UINT16 Data
Definition: Pci22.h:698
UINT32 IoBase1
I/O Limit Register 0.
Definition: Pci22.h:135
PCI_TYPE01 Bridge
Definition: Pci22.h:113
unsigned int UINT32
Definition: ProcessorBind.h:99
UINT8 Indicator
Definition: Pci22.h:852
VPD Capability Structure Appendix I, PCI Local Bus Specification, 2.2.
Definition: Pci22.h:747
UINT16 Version
Definition: Pci22.h:669
UINT16 SecondaryStatus
Secondary Status.
Definition: Pci22.h:124
UINT8 SubordinateBusNumber
Subordinate Bus Number.
Definition: Pci22.h:127
UINT32 CardBusSocketReg
Cardbus Socket/ExCA Base.
Definition: Pci22.h:121
PMCSR_BSE - PMCSR PCI-to-PCI Bridge Support Extensions Section 3.2.5, PCI Power Management Interface ...
Definition: Pci22.h:710
FILE_LICENCE(BSD2_PATENT)
UINT8 BusPowerClockControl
Definition: Pci22.h:714
unsigned char UINT8
UINT16 PrefetchableMemoryBase
Definition: Pci22.h:88
EFI_PCI_CAPABILITY_HDR Hdr
Definition: Pci22.h:779
UINT16 ImageLength
Definition: Pci22.h:849
Capability EFI_PCI_CAPABILITY_ID_HOTPLUG, CompactPCI Hot Swap Specification PICMG 2....
Definition: Pci22.h:790
PCI_BRIDGE_CONTROL_REGISTER Bridge
Definition: Pci22.h:108
UINT16 DataSelect
Definition: Pci22.h:694
PCI Device Configuration Space Section 6.1, PCI Local Bus Specification, 2.2.
Definition: Pci22.h:68
PCI_DEVICE_INDEPENDENT_REGION Hdr
Definition: Pci22.h:69
UINT16 VendorId
Definition: Pci22.h:843
PCI_DEVICE_INDEPENDENT_REGION Hdr
Definition: Pci22.h:107
UINT16 Data
Definition: Pci22.h:678
UINT16 ReservedForPciExpress
Definition: Pci22.h:690
Standard PCI Expansion ROM Header Section 13.4.2, Unified Extensible Firmware Interface Specification...
Definition: Pci22.h:819
PCI-PCI Bridge header region in PCI Configuration Space Section 3.2, PCI-PCI Bridge Architecture,...
Definition: Pci22.h:77
UINT8 * Raw
Definition: Pci22.h:873
Power Management Register Block Definition Section 3.2, PCI Power Management Interface Specification,...
Definition: Pci22.h:723
CardBus Controller Configuration Space, Section 4.5.1, PC Card Standard.
Definition: Pci22.h:120
UINT16 AuxCurrent
Definition: Pci22.h:673
EFI_PCI_PMCSR_BSE BridgeExtention
Definition: Pci22.h:727
UINT32 MemoryBase0
Memory Base Register 0.
Definition: Pci22.h:129
EFI_LEGACY_EXPANSION_ROM_HEADER * PcAt
Definition: Pci22.h:876
EFI_PCI_EXPANSION_ROM_HEADER * Efi
Definition: Pci22.h:875
UINT8 Reserved
Definition: Pci22.h:712
UINT16 PrefetchableMemoryLimit
Definition: Pci22.h:89
EFI_PCI_CAPABILITY_HDR Hdr
Definition: Pci22.h:768
PCI_TYPE00 Device
Definition: Pci22.h:112
UINT16 PmeSupport
Definition: Pci22.h:676
unsigned short UINT16
UINT16 PmeStatus
Definition: Pci22.h:696
PACKED struct @540::@554 Bits
EFI_PCI_CAPABILITY_HDR Hdr
Definition: Pci22.h:758
Message Capability Structure for 32-bit Message Address Section 6.8.1, PCI Local Bus Specification,...
Definition: Pci22.h:767
UINT16 Signature
0xaa55
Definition: Pci22.h:861
Slot Numbering Capabilities Register Section 3.2.6, PCI-to-PCI Bridge Architecture Specification,...
Definition: Pci22.h:757
UINT32 MemoryLimit0
Memory Limit Register 0.
Definition: Pci22.h:130
UINT8 InterruptLine
Interrupt Line.
Definition: Pci22.h:137
UINT32 EfiSignature
0x0EF1
Definition: Pci22.h:863
UINT16 BridgeControl
Bridge Control.
Definition: Pci22.h:139
EFI_PCI_CAPABILITY_HDR Hdr
Definition: Pci22.h:736
UINT16 D1Support
Definition: Pci22.h:674
UINT16 DataScale
Definition: Pci22.h:695
EFI PCI Expansion ROM Header Section 13.4.2, Unified Extensible Firmware Interface Specification,...
Definition: Pci22.h:860
UINT8 CardBusLatencyTimer
CardBus Latency Timer.
Definition: Pci22.h:128
PCI Access Data Format.
Definition: Pci22.h:580
EFI_PCI_PMCSR PMCSR
Definition: Pci22.h:726
UINT8 CodeType
Definition: Pci22.h:851
UINT16 Reserved1
Definition: Pci22.h:853
UINT16 PmeClock
Definition: Pci22.h:670
UINT16 PmeEnable
Definition: Pci22.h:693
UINT16 Reserved
Definition: Pci22.h:692
PCI Data Structure Format Section 6.3.1.2, PCI Local Bus Specification, 2.2.
Definition: Pci22.h:841
PCI_DEVICE_HEADER_TYPE_REGION Device
Definition: Pci22.h:70
Common header region in PCI Configuration Space Section 6.1, PCI Local Bus Specification,...
Definition: Pci22.h:32
UINT16 DeviceId
Definition: Pci22.h:844
PMC - Power Management Capabilities Section 3.2.3, PCI Power Management Interface Specification,...
Definition: Pci22.h:667
UINT32 PrefetchableLimitUpper32
Definition: Pci22.h:91
UINT32 PrefetchableBaseUpper32
Definition: Pci22.h:90
UINT16 PowerState
Definition: Pci22.h:689
Legacy ROM Header Extensions Section 6.3.3.1, PCI Local Bus Specification, 2.2.
Definition: Pci22.h:829
EFI_PCI_CAPABILITY_HDR Hdr
Definition: Pci22.h:724
EFI_PCI_PMC PMC
Definition: Pci22.h:725
UINT8 Revision
Definition: Pci22.h:847
UINT8 InterruptPin
Interrupt Pin.
Definition: Pci22.h:138
Capabilities List Header Section 6.7, PCI Local Bus Specification, 2.2.
Definition: Pci22.h:658
UINT16 Signature
0xaa55
Definition: Pci22.h:820
UINT16 DeviceSpecificInitialization
Definition: Pci22.h:672