xref: /minix3/sys/dev/pci/pcireg.h (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc /*	$NetBSD: pcireg.h,v 1.104 2015/10/02 05:22:53 msaitoh Exp $	*/
27eb99bdaSLionel Sambuc 
37eb99bdaSLionel Sambuc /*
47eb99bdaSLionel Sambuc  * Copyright (c) 1995, 1996, 1999, 2000
57eb99bdaSLionel Sambuc  *     Christopher G. Demetriou.  All rights reserved.
67eb99bdaSLionel Sambuc  * Copyright (c) 1994, 1996 Charles M. Hannum.  All rights reserved.
77eb99bdaSLionel Sambuc  *
87eb99bdaSLionel Sambuc  * Redistribution and use in source and binary forms, with or without
97eb99bdaSLionel Sambuc  * modification, are permitted provided that the following conditions
107eb99bdaSLionel Sambuc  * are met:
117eb99bdaSLionel Sambuc  * 1. Redistributions of source code must retain the above copyright
127eb99bdaSLionel Sambuc  *    notice, this list of conditions and the following disclaimer.
137eb99bdaSLionel Sambuc  * 2. Redistributions in binary form must reproduce the above copyright
147eb99bdaSLionel Sambuc  *    notice, this list of conditions and the following disclaimer in the
157eb99bdaSLionel Sambuc  *    documentation and/or other materials provided with the distribution.
167eb99bdaSLionel Sambuc  * 3. All advertising materials mentioning features or use of this software
177eb99bdaSLionel Sambuc  *    must display the following acknowledgement:
187eb99bdaSLionel Sambuc  *	This product includes software developed by Charles M. Hannum.
197eb99bdaSLionel Sambuc  * 4. The name of the author may not be used to endorse or promote products
207eb99bdaSLionel Sambuc  *    derived from this software without specific prior written permission.
217eb99bdaSLionel Sambuc  *
227eb99bdaSLionel Sambuc  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
237eb99bdaSLionel Sambuc  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
247eb99bdaSLionel Sambuc  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
257eb99bdaSLionel Sambuc  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
267eb99bdaSLionel Sambuc  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
277eb99bdaSLionel Sambuc  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
287eb99bdaSLionel Sambuc  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
297eb99bdaSLionel Sambuc  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
307eb99bdaSLionel Sambuc  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
317eb99bdaSLionel Sambuc  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
327eb99bdaSLionel Sambuc  */
337eb99bdaSLionel Sambuc 
347eb99bdaSLionel Sambuc #ifndef _DEV_PCI_PCIREG_H_
357eb99bdaSLionel Sambuc #define	_DEV_PCI_PCIREG_H_
367eb99bdaSLionel Sambuc 
377eb99bdaSLionel Sambuc /*
387eb99bdaSLionel Sambuc  * Standardized PCI configuration information
397eb99bdaSLionel Sambuc  *
407eb99bdaSLionel Sambuc  * XXX This is not complete.
417eb99bdaSLionel Sambuc  */
427eb99bdaSLionel Sambuc 
437eb99bdaSLionel Sambuc /*
447eb99bdaSLionel Sambuc  * Size of each function's configuration space.
457eb99bdaSLionel Sambuc  */
467eb99bdaSLionel Sambuc 
477eb99bdaSLionel Sambuc #define	PCI_CONF_SIZE			0x100
487eb99bdaSLionel Sambuc #define	PCI_EXTCONF_SIZE		0x1000
497eb99bdaSLionel Sambuc 
507eb99bdaSLionel Sambuc /*
517eb99bdaSLionel Sambuc  * Device identification register; contains a vendor ID and a device ID.
527eb99bdaSLionel Sambuc  */
537eb99bdaSLionel Sambuc #define	PCI_ID_REG			0x00
547eb99bdaSLionel Sambuc 
557eb99bdaSLionel Sambuc typedef u_int16_t pci_vendor_id_t;
567eb99bdaSLionel Sambuc typedef u_int16_t pci_product_id_t;
577eb99bdaSLionel Sambuc 
587eb99bdaSLionel Sambuc #define	PCI_VENDOR_SHIFT			0
597eb99bdaSLionel Sambuc #define	PCI_VENDOR_MASK				0xffff
607eb99bdaSLionel Sambuc #define	PCI_VENDOR(id) \
617eb99bdaSLionel Sambuc 	    (((id) >> PCI_VENDOR_SHIFT) & PCI_VENDOR_MASK)
627eb99bdaSLionel Sambuc 
637eb99bdaSLionel Sambuc #define	PCI_PRODUCT_SHIFT			16
647eb99bdaSLionel Sambuc #define	PCI_PRODUCT_MASK			0xffff
657eb99bdaSLionel Sambuc #define	PCI_PRODUCT(id) \
667eb99bdaSLionel Sambuc 	    (((id) >> PCI_PRODUCT_SHIFT) & PCI_PRODUCT_MASK)
677eb99bdaSLionel Sambuc 
687eb99bdaSLionel Sambuc #define PCI_ID_CODE(vid,pid)					\
697eb99bdaSLionel Sambuc 	((((vid) & PCI_VENDOR_MASK) << PCI_VENDOR_SHIFT) |	\
707eb99bdaSLionel Sambuc 	 (((pid) & PCI_PRODUCT_MASK) << PCI_PRODUCT_SHIFT))	\
717eb99bdaSLionel Sambuc 
727eb99bdaSLionel Sambuc /*
737eb99bdaSLionel Sambuc  * Command and status register.
747eb99bdaSLionel Sambuc  */
757eb99bdaSLionel Sambuc #define	PCI_COMMAND_STATUS_REG			0x04
767eb99bdaSLionel Sambuc #define	PCI_COMMAND_SHIFT			0
777eb99bdaSLionel Sambuc #define	PCI_COMMAND_MASK			0xffff
787eb99bdaSLionel Sambuc #define	PCI_STATUS_SHIFT			16
797eb99bdaSLionel Sambuc #define	PCI_STATUS_MASK				0xffff
807eb99bdaSLionel Sambuc 
817eb99bdaSLionel Sambuc #define PCI_COMMAND_STATUS_CODE(cmd,stat)			\
827eb99bdaSLionel Sambuc 	((((cmd) & PCI_COMMAND_MASK) << PCI_COMMAND_SHIFT) |	\
837eb99bdaSLionel Sambuc 	 (((stat) & PCI_STATUS_MASK) << PCI_STATUS_SHIFT))	\
847eb99bdaSLionel Sambuc 
857eb99bdaSLionel Sambuc #define	PCI_COMMAND_IO_ENABLE			0x00000001
867eb99bdaSLionel Sambuc #define	PCI_COMMAND_MEM_ENABLE			0x00000002
877eb99bdaSLionel Sambuc #define	PCI_COMMAND_MASTER_ENABLE		0x00000004
887eb99bdaSLionel Sambuc #define	PCI_COMMAND_SPECIAL_ENABLE		0x00000008
897eb99bdaSLionel Sambuc #define	PCI_COMMAND_INVALIDATE_ENABLE		0x00000010
907eb99bdaSLionel Sambuc #define	PCI_COMMAND_PALETTE_ENABLE		0x00000020
917eb99bdaSLionel Sambuc #define	PCI_COMMAND_PARITY_ENABLE		0x00000040
927eb99bdaSLionel Sambuc #define	PCI_COMMAND_STEPPING_ENABLE		0x00000080
937eb99bdaSLionel Sambuc #define	PCI_COMMAND_SERR_ENABLE			0x00000100
947eb99bdaSLionel Sambuc #define	PCI_COMMAND_BACKTOBACK_ENABLE		0x00000200
957eb99bdaSLionel Sambuc #define	PCI_COMMAND_INTERRUPT_DISABLE		0x00000400
967eb99bdaSLionel Sambuc 
977eb99bdaSLionel Sambuc #define	PCI_STATUS_INT_STATUS			0x00080000
987eb99bdaSLionel Sambuc #define	PCI_STATUS_CAPLIST_SUPPORT		0x00100000
997eb99bdaSLionel Sambuc #define	PCI_STATUS_66MHZ_SUPPORT		0x00200000
1007eb99bdaSLionel Sambuc #define	PCI_STATUS_UDF_SUPPORT			0x00400000
1017eb99bdaSLionel Sambuc #define	PCI_STATUS_BACKTOBACK_SUPPORT		0x00800000
1027eb99bdaSLionel Sambuc #define	PCI_STATUS_PARITY_ERROR			0x01000000
1037eb99bdaSLionel Sambuc #define	PCI_STATUS_DEVSEL_FAST			0x00000000
1047eb99bdaSLionel Sambuc #define	PCI_STATUS_DEVSEL_MEDIUM		0x02000000
1057eb99bdaSLionel Sambuc #define	PCI_STATUS_DEVSEL_SLOW			0x04000000
1067eb99bdaSLionel Sambuc #define	PCI_STATUS_DEVSEL_MASK			0x06000000
1077eb99bdaSLionel Sambuc #define	PCI_STATUS_TARGET_TARGET_ABORT		0x08000000
1087eb99bdaSLionel Sambuc #define	PCI_STATUS_MASTER_TARGET_ABORT		0x10000000
1097eb99bdaSLionel Sambuc #define	PCI_STATUS_MASTER_ABORT			0x20000000
1107eb99bdaSLionel Sambuc #define	PCI_STATUS_SPECIAL_ERROR		0x40000000
1117eb99bdaSLionel Sambuc #define	PCI_STATUS_PARITY_DETECT		0x80000000
1127eb99bdaSLionel Sambuc 
1137eb99bdaSLionel Sambuc /*
1147eb99bdaSLionel Sambuc  * PCI Class and Revision Register; defines type and revision of device.
1157eb99bdaSLionel Sambuc  */
1167eb99bdaSLionel Sambuc #define	PCI_CLASS_REG			0x08
1177eb99bdaSLionel Sambuc 
1187eb99bdaSLionel Sambuc typedef u_int8_t pci_class_t;
1197eb99bdaSLionel Sambuc typedef u_int8_t pci_subclass_t;
1207eb99bdaSLionel Sambuc typedef u_int8_t pci_interface_t;
1217eb99bdaSLionel Sambuc typedef u_int8_t pci_revision_t;
1227eb99bdaSLionel Sambuc 
1237eb99bdaSLionel Sambuc #define	PCI_CLASS_SHIFT				24
1247eb99bdaSLionel Sambuc #define	PCI_CLASS_MASK				0xff
1257eb99bdaSLionel Sambuc #define	PCI_CLASS(cr) \
1267eb99bdaSLionel Sambuc 	    (((cr) >> PCI_CLASS_SHIFT) & PCI_CLASS_MASK)
1277eb99bdaSLionel Sambuc 
1287eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SHIFT			16
1297eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_MASK			0xff
1307eb99bdaSLionel Sambuc #define	PCI_SUBCLASS(cr) \
1317eb99bdaSLionel Sambuc 	    (((cr) >> PCI_SUBCLASS_SHIFT) & PCI_SUBCLASS_MASK)
1327eb99bdaSLionel Sambuc 
1337eb99bdaSLionel Sambuc #define	PCI_INTERFACE_SHIFT			8
1347eb99bdaSLionel Sambuc #define	PCI_INTERFACE_MASK			0xff
1357eb99bdaSLionel Sambuc #define	PCI_INTERFACE(cr) \
1367eb99bdaSLionel Sambuc 	    (((cr) >> PCI_INTERFACE_SHIFT) & PCI_INTERFACE_MASK)
1377eb99bdaSLionel Sambuc 
1387eb99bdaSLionel Sambuc #define	PCI_REVISION_SHIFT			0
1397eb99bdaSLionel Sambuc #define	PCI_REVISION_MASK			0xff
1407eb99bdaSLionel Sambuc #define	PCI_REVISION(cr) \
1417eb99bdaSLionel Sambuc 	    (((cr) >> PCI_REVISION_SHIFT) & PCI_REVISION_MASK)
1427eb99bdaSLionel Sambuc 
1437eb99bdaSLionel Sambuc #define	PCI_CLASS_CODE(mainclass, subclass, interface) \
1447eb99bdaSLionel Sambuc 	    ((((mainclass) & PCI_CLASS_MASK) << PCI_CLASS_SHIFT) | \
1457eb99bdaSLionel Sambuc 	     (((subclass) & PCI_SUBCLASS_MASK) << PCI_SUBCLASS_SHIFT) | \
1467eb99bdaSLionel Sambuc 	     (((interface) & PCI_INTERFACE_MASK) << PCI_INTERFACE_SHIFT))
1477eb99bdaSLionel Sambuc 
1487eb99bdaSLionel Sambuc /* base classes */
1497eb99bdaSLionel Sambuc #define	PCI_CLASS_PREHISTORIC			0x00
1507eb99bdaSLionel Sambuc #define	PCI_CLASS_MASS_STORAGE			0x01
1517eb99bdaSLionel Sambuc #define	PCI_CLASS_NETWORK			0x02
1527eb99bdaSLionel Sambuc #define	PCI_CLASS_DISPLAY			0x03
1537eb99bdaSLionel Sambuc #define	PCI_CLASS_MULTIMEDIA			0x04
1547eb99bdaSLionel Sambuc #define	PCI_CLASS_MEMORY			0x05
1557eb99bdaSLionel Sambuc #define	PCI_CLASS_BRIDGE			0x06
1567eb99bdaSLionel Sambuc #define	PCI_CLASS_COMMUNICATIONS		0x07
1577eb99bdaSLionel Sambuc #define	PCI_CLASS_SYSTEM			0x08
1587eb99bdaSLionel Sambuc #define	PCI_CLASS_INPUT				0x09
1597eb99bdaSLionel Sambuc #define	PCI_CLASS_DOCK				0x0a
1607eb99bdaSLionel Sambuc #define	PCI_CLASS_PROCESSOR			0x0b
1617eb99bdaSLionel Sambuc #define	PCI_CLASS_SERIALBUS			0x0c
1627eb99bdaSLionel Sambuc #define	PCI_CLASS_WIRELESS			0x0d
1637eb99bdaSLionel Sambuc #define	PCI_CLASS_I2O				0x0e
1647eb99bdaSLionel Sambuc #define	PCI_CLASS_SATCOM			0x0f
1657eb99bdaSLionel Sambuc #define	PCI_CLASS_CRYPTO			0x10
1667eb99bdaSLionel Sambuc #define	PCI_CLASS_DASP				0x11
1677eb99bdaSLionel Sambuc #define	PCI_CLASS_UNDEFINED			0xff
1687eb99bdaSLionel Sambuc 
1697eb99bdaSLionel Sambuc /* 0x00 prehistoric subclasses */
1707eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_PREHISTORIC_MISC		0x00
1717eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_PREHISTORIC_VGA		0x01
1727eb99bdaSLionel Sambuc 
1737eb99bdaSLionel Sambuc /* 0x01 mass storage subclasses */
1747eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_MASS_STORAGE_SCSI		0x00
1757eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_MASS_STORAGE_IDE		0x01
1767eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_MASS_STORAGE_FLOPPY	0x02
1777eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_MASS_STORAGE_IPI		0x03
1787eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_MASS_STORAGE_RAID		0x04
1797eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_MASS_STORAGE_ATA		0x05
180*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_ATA_SINGLEDMA		0x20
181*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_ATA_CHAINEDDMA		0x30
1827eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_MASS_STORAGE_SATA		0x06
183*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_SATA_VND			0x00
184*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_SATA_AHCI10		0x01
185*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_SATA_SSBI			0x02
1867eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_MASS_STORAGE_SAS		0x07
1877eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_MASS_STORAGE_NVM		0x08
188*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_NVM_VND			0x00
189*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_NVM_NVMHCI10		0x01
190*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_NVM_NVME			0x02
1917eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_MASS_STORAGE_MISC		0x80
1927eb99bdaSLionel Sambuc 
1937eb99bdaSLionel Sambuc /* 0x02 network subclasses */
1947eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_NETWORK_ETHERNET		0x00
1957eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_NETWORK_TOKENRING		0x01
1967eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_NETWORK_FDDI		0x02
1977eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_NETWORK_ATM		0x03
1987eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_NETWORK_ISDN		0x04
1997eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_NETWORK_WORLDFIP		0x05
2007eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_NETWORK_PCIMGMULTICOMP	0x06
201*0a6a1f1dSLionel Sambuc #define	PCI_SUBCLASS_NETWORK_INFINIBAND		0x07
2027eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_NETWORK_MISC		0x80
2037eb99bdaSLionel Sambuc 
2047eb99bdaSLionel Sambuc /* 0x03 display subclasses */
2057eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_DISPLAY_VGA		0x00
206*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_VGA_VGA			0x00
207*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_VGA_8514			0x01
2087eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_DISPLAY_XGA		0x01
2097eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_DISPLAY_3D			0x02
2107eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_DISPLAY_MISC		0x80
2117eb99bdaSLionel Sambuc 
2127eb99bdaSLionel Sambuc /* 0x04 multimedia subclasses */
2137eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_MULTIMEDIA_VIDEO		0x00
2147eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_MULTIMEDIA_AUDIO		0x01
2157eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_MULTIMEDIA_TELEPHONY	0x02
2167eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_MULTIMEDIA_HDAUDIO		0x03
2177eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_MULTIMEDIA_MISC		0x80
2187eb99bdaSLionel Sambuc 
2197eb99bdaSLionel Sambuc /* 0x05 memory subclasses */
2207eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_MEMORY_RAM			0x00
2217eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_MEMORY_FLASH		0x01
2227eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_MEMORY_MISC		0x80
2237eb99bdaSLionel Sambuc 
2247eb99bdaSLionel Sambuc /* 0x06 bridge subclasses */
2257eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_BRIDGE_HOST		0x00
2267eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_BRIDGE_ISA			0x01
2277eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_BRIDGE_EISA		0x02
228*0a6a1f1dSLionel Sambuc #define	PCI_SUBCLASS_BRIDGE_MC			0x03	/* XXX _MCA */
2297eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_BRIDGE_PCI			0x04
230*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_BRIDGE_PCI_PCI		0x00
231*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_BRIDGE_PCI_SUBDEC		0x01
2327eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_BRIDGE_PCMCIA		0x05
2337eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_BRIDGE_NUBUS		0x06
2347eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_BRIDGE_CARDBUS		0x07
2357eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_BRIDGE_RACEWAY		0x08
236*0a6a1f1dSLionel Sambuc 		/* bit0 == 0 ? "transparent mode" : "endpoint mode" */
2377eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_BRIDGE_STPCI		0x09
238*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_STPCI_PRIMARY		0x40
239*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_STPCI_SECONDARY		0x80
2407eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_BRIDGE_INFINIBAND		0x0a
241*0a6a1f1dSLionel Sambuc #define	PCI_SUBCLASS_BRIDGE_ADVSW		0x0b
242*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_ADVSW_CUSTOM		0x00
243*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_ADVSW_ASISIG		0x01
2447eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_BRIDGE_MISC		0x80
2457eb99bdaSLionel Sambuc 
2467eb99bdaSLionel Sambuc /* 0x07 communications subclasses */
2477eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_COMMUNICATIONS_SERIAL	0x00
248*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_SERIAL_XT			0x00
249*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_SERIAL_16450		0x01
250*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_SERIAL_16550		0x02
251*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_SERIAL_16650		0x03
252*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_SERIAL_16750		0x04
253*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_SERIAL_16850		0x05
254*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_SERIAL_16950		0x06
2557eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_COMMUNICATIONS_PARALLEL	0x01
256*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_PARALLEL			0x00
257*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_PARALLEL_BIDIRECTIONAL	0x01
258*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_PARALLEL_ECP1X		0x02
259*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_PARALLEL_IEEE1284_CNTRL	0x03
260*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_PARALLEL_IEEE1284_TGT	0xfe
2617eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_COMMUNICATIONS_MPSERIAL	0x02
2627eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_COMMUNICATIONS_MODEM	0x03
263*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_MODEM			0x00
264*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_MODEM_HAYES16450		0x01
265*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_MODEM_HAYES16550		0x02
266*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_MODEM_HAYES16650		0x03
267*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_MODEM_HAYES16750		0x04
2687eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_COMMUNICATIONS_GPIB	0x04
2697eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_COMMUNICATIONS_SMARTCARD	0x05
2707eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_COMMUNICATIONS_MISC	0x80
2717eb99bdaSLionel Sambuc 
2727eb99bdaSLionel Sambuc /* 0x08 system subclasses */
2737eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SYSTEM_PIC			0x00
274*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_PIC_8259			0x00
275*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_PIC_ISA			0x01
276*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_PIC_EISA			0x02
277*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_PIC_IOAPIC		0x10
278*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_PIC_IOXAPIC		0x20
2797eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SYSTEM_DMA			0x01
280*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_DMA_8237			0x00
281*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_DMA_ISA			0x01
282*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_DMA_EISA			0x02
2837eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SYSTEM_TIMER		0x02
284*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_TIMER_8254		0x00
285*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_TIMER_ISA			0x01
286*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_TIMER_EISA		0x02
287*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_TIMER_HPET		0x03
2887eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SYSTEM_RTC			0x03
289*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_RTC_GENERIC		0x00
290*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_RTC_ISA			0x01
2917eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SYSTEM_PCIHOTPLUG		0x04
2927eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SYSTEM_SDHC		0x05
293*0a6a1f1dSLionel Sambuc #define	PCI_SUBCLASS_SYSTEM_IOMMU		0x06 /* or RCEC in old spec */
294*0a6a1f1dSLionel Sambuc #define	PCI_SUBCLASS_SYSTEM_RCEC		0x07
2957eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SYSTEM_MISC		0x80
2967eb99bdaSLionel Sambuc 
2977eb99bdaSLionel Sambuc /* 0x09 input subclasses */
2987eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_INPUT_KEYBOARD		0x00
2997eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_INPUT_DIGITIZER		0x01
3007eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_INPUT_MOUSE		0x02
3017eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_INPUT_SCANNER		0x03
3027eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_INPUT_GAMEPORT		0x04
303*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_GAMEPORT_GENERIC		0x00
304*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_GAMEPORT_LEGACY		0x10
3057eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_INPUT_MISC			0x80
3067eb99bdaSLionel Sambuc 
3077eb99bdaSLionel Sambuc /* 0x0a dock subclasses */
3087eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_DOCK_GENERIC		0x00
3097eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_DOCK_MISC			0x80
3107eb99bdaSLionel Sambuc 
3117eb99bdaSLionel Sambuc /* 0x0b processor subclasses */
3127eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_PROCESSOR_386		0x00
3137eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_PROCESSOR_486		0x01
3147eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_PROCESSOR_PENTIUM		0x02
3157eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_PROCESSOR_ALPHA		0x10
3167eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_PROCESSOR_POWERPC		0x20
3177eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_PROCESSOR_MIPS		0x30
3187eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_PROCESSOR_COPROC		0x40
319*0a6a1f1dSLionel Sambuc #define	PCI_SUBCLASS_PROCESSOR_MISC		0x80
3207eb99bdaSLionel Sambuc 
3217eb99bdaSLionel Sambuc /* 0x0c serial bus subclasses */
3227eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SERIALBUS_FIREWIRE		0x00
323*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_IEEE1394_FIREWIRE		0x00
324*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_IEEE1394_OPENHCI		0x10
3257eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SERIALBUS_ACCESS		0x01
3267eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SERIALBUS_SSA		0x02
3277eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SERIALBUS_USB		0x03
328*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_USB_UHCI			0x00
329*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_USB_OHCI			0x10
330*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_USB_EHCI			0x20
331*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_USB_XHCI			0x30
332*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_USB_OTHERHC		0x80
333*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_USB_DEVICE		0xfe
3347eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SERIALBUS_FIBER		0x04	/* XXX _FIBRECHANNEL */
3357eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SERIALBUS_SMBUS		0x05
336*0a6a1f1dSLionel Sambuc #define	PCI_SUBCLASS_SERIALBUS_INFINIBAND	0x06	/* Deprecated */
3377eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SERIALBUS_IPMI		0x07
338*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_IPMI_SMIC			0x00
339*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_IPMI_KBD			0x01
340*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_IPMI_BLOCKXFER		0x02
3417eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SERIALBUS_SERCOS		0x08
3427eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SERIALBUS_CANBUS		0x09
343*0a6a1f1dSLionel Sambuc #define	PCI_SUBCLASS_SERIALBUS_MISC		0x80
3447eb99bdaSLionel Sambuc 
3457eb99bdaSLionel Sambuc /* 0x0d wireless subclasses */
3467eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_WIRELESS_IRDA		0x00
3477eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_WIRELESS_CONSUMERIR	0x01
348*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_CONSUMERIR		0x00
349*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_UWB			0x10
3507eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_WIRELESS_RF		0x10
3517eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_WIRELESS_BLUETOOTH		0x11
3527eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_WIRELESS_BROADBAND		0x12
3537eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_WIRELESS_802_11A		0x20
3547eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_WIRELESS_802_11B		0x21
3557eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_WIRELESS_MISC		0x80
3567eb99bdaSLionel Sambuc 
3577eb99bdaSLionel Sambuc /* 0x0e I2O (Intelligent I/O) subclasses */
3587eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_I2O_STANDARD		0x00
359*0a6a1f1dSLionel Sambuc #define		PCI_INTERFACE_I2O_FIFOAT40		0x00
360*0a6a1f1dSLionel Sambuc 		/* others for I2O spec */
361*0a6a1f1dSLionel Sambuc #define	PCI_SUBCLASS_I2O_MISC			0x80
3627eb99bdaSLionel Sambuc 
3637eb99bdaSLionel Sambuc /* 0x0f satellite communication subclasses */
3647eb99bdaSLionel Sambuc /*	PCI_SUBCLASS_SATCOM_???			0x00	/ * XXX ??? */
3657eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SATCOM_TV			0x01
3667eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SATCOM_AUDIO		0x02
3677eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SATCOM_VOICE		0x03
3687eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_SATCOM_DATA		0x04
369*0a6a1f1dSLionel Sambuc #define	PCI_SUBCLASS_SATCOM_MISC		0x80
3707eb99bdaSLionel Sambuc 
3717eb99bdaSLionel Sambuc /* 0x10 encryption/decryption subclasses */
3727eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_CRYPTO_NETCOMP		0x00
3737eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_CRYPTO_ENTERTAINMENT	0x10
3747eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_CRYPTO_MISC		0x80
3757eb99bdaSLionel Sambuc 
3767eb99bdaSLionel Sambuc /* 0x11 data acquisition and signal processing subclasses */
3777eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_DASP_DPIO			0x00
378*0a6a1f1dSLionel Sambuc #define	PCI_SUBCLASS_DASP_TIMEFREQ		0x01 /* performance counters */
3797eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_DASP_SYNC			0x10
3807eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_DASP_MGMT			0x20
3817eb99bdaSLionel Sambuc #define	PCI_SUBCLASS_DASP_MISC			0x80
3827eb99bdaSLionel Sambuc 
3837eb99bdaSLionel Sambuc /*
3847eb99bdaSLionel Sambuc  * PCI BIST/Header Type/Latency Timer/Cache Line Size Register.
3857eb99bdaSLionel Sambuc  */
3867eb99bdaSLionel Sambuc #define	PCI_BHLC_REG			0x0c
3877eb99bdaSLionel Sambuc 
3887eb99bdaSLionel Sambuc #define	PCI_BIST_SHIFT				24
3897eb99bdaSLionel Sambuc #define	PCI_BIST_MASK				0xff
3907eb99bdaSLionel Sambuc #define	PCI_BIST(bhlcr) \
3917eb99bdaSLionel Sambuc 	    (((bhlcr) >> PCI_BIST_SHIFT) & PCI_BIST_MASK)
3927eb99bdaSLionel Sambuc 
3937eb99bdaSLionel Sambuc #define	PCI_HDRTYPE_SHIFT			16
3947eb99bdaSLionel Sambuc #define	PCI_HDRTYPE_MASK			0xff
3957eb99bdaSLionel Sambuc #define	PCI_HDRTYPE(bhlcr) \
3967eb99bdaSLionel Sambuc 	    (((bhlcr) >> PCI_HDRTYPE_SHIFT) & PCI_HDRTYPE_MASK)
3977eb99bdaSLionel Sambuc 
3987eb99bdaSLionel Sambuc #define	PCI_HDRTYPE_TYPE(bhlcr) \
3997eb99bdaSLionel Sambuc 	    (PCI_HDRTYPE(bhlcr) & 0x7f)
4007eb99bdaSLionel Sambuc #define	PCI_HDRTYPE_MULTIFN(bhlcr) \
4017eb99bdaSLionel Sambuc 	    ((PCI_HDRTYPE(bhlcr) & 0x80) != 0)
4027eb99bdaSLionel Sambuc 
4037eb99bdaSLionel Sambuc #define	PCI_LATTIMER_SHIFT			8
4047eb99bdaSLionel Sambuc #define	PCI_LATTIMER_MASK			0xff
4057eb99bdaSLionel Sambuc #define	PCI_LATTIMER(bhlcr) \
4067eb99bdaSLionel Sambuc 	    (((bhlcr) >> PCI_LATTIMER_SHIFT) & PCI_LATTIMER_MASK)
4077eb99bdaSLionel Sambuc 
4087eb99bdaSLionel Sambuc #define	PCI_CACHELINE_SHIFT			0
4097eb99bdaSLionel Sambuc #define	PCI_CACHELINE_MASK			0xff
4107eb99bdaSLionel Sambuc #define	PCI_CACHELINE(bhlcr) \
4117eb99bdaSLionel Sambuc 	    (((bhlcr) >> PCI_CACHELINE_SHIFT) & PCI_CACHELINE_MASK)
4127eb99bdaSLionel Sambuc 
4137eb99bdaSLionel Sambuc #define PCI_BHLC_CODE(bist,type,multi,latency,cacheline)		\
4147eb99bdaSLionel Sambuc 	    ((((bist) & PCI_BIST_MASK) << PCI_BIST_SHIFT) |		\
4157eb99bdaSLionel Sambuc 	     (((type) & PCI_HDRTYPE_MASK) << PCI_HDRTYPE_SHIFT) |	\
4167eb99bdaSLionel Sambuc 	     (((multi)?0x80:0) << PCI_HDRTYPE_SHIFT) |			\
4177eb99bdaSLionel Sambuc 	     (((latency) & PCI_LATTIMER_MASK) << PCI_LATTIMER_SHIFT) |	\
4187eb99bdaSLionel Sambuc 	     (((cacheline) & PCI_CACHELINE_MASK) << PCI_CACHELINE_SHIFT))
4197eb99bdaSLionel Sambuc 
4207eb99bdaSLionel Sambuc /*
4217eb99bdaSLionel Sambuc  * PCI header type
4227eb99bdaSLionel Sambuc  */
4237eb99bdaSLionel Sambuc #define PCI_HDRTYPE_DEVICE	0	/* PCI/PCIX/Cardbus */
4247eb99bdaSLionel Sambuc #define PCI_HDRTYPE_PPB		1	/* PCI/PCIX/Cardbus */
4257eb99bdaSLionel Sambuc #define PCI_HDRTYPE_PCB		2	/* PCI/PCIX/Cardbus */
4267eb99bdaSLionel Sambuc #define PCI_HDRTYPE_EP		0	/* PCI Express */
4277eb99bdaSLionel Sambuc #define PCI_HDRTYPE_RC		1	/* PCI Express */
4287eb99bdaSLionel Sambuc 
4297eb99bdaSLionel Sambuc 
4307eb99bdaSLionel Sambuc /*
4317eb99bdaSLionel Sambuc  * Mapping registers
4327eb99bdaSLionel Sambuc  */
4337eb99bdaSLionel Sambuc #define	PCI_MAPREG_START		0x10
4347eb99bdaSLionel Sambuc #define	PCI_MAPREG_END			0x28
4357eb99bdaSLionel Sambuc #define	PCI_MAPREG_ROM			0x30
4367eb99bdaSLionel Sambuc #define	PCI_MAPREG_PPB_END		0x18
4377eb99bdaSLionel Sambuc #define	PCI_MAPREG_PCB_END		0x14
4387eb99bdaSLionel Sambuc 
4397eb99bdaSLionel Sambuc #define PCI_BAR0		0x10
4407eb99bdaSLionel Sambuc #define PCI_BAR1		0x14
4417eb99bdaSLionel Sambuc #define PCI_BAR2		0x18
4427eb99bdaSLionel Sambuc #define PCI_BAR3		0x1C
4437eb99bdaSLionel Sambuc #define PCI_BAR4		0x20
4447eb99bdaSLionel Sambuc #define PCI_BAR5		0x24
4457eb99bdaSLionel Sambuc 
4467eb99bdaSLionel Sambuc #define	PCI_BAR(__n)		(PCI_MAPREG_START + 4 * (__n))
4477eb99bdaSLionel Sambuc 
4487eb99bdaSLionel Sambuc #define	PCI_MAPREG_TYPE(mr)						\
4497eb99bdaSLionel Sambuc 	    ((mr) & PCI_MAPREG_TYPE_MASK)
4507eb99bdaSLionel Sambuc #define	PCI_MAPREG_TYPE_MASK			0x00000001
4517eb99bdaSLionel Sambuc 
4527eb99bdaSLionel Sambuc #define	PCI_MAPREG_TYPE_MEM			0x00000000
4537eb99bdaSLionel Sambuc #define	PCI_MAPREG_TYPE_ROM			0x00000000
4547eb99bdaSLionel Sambuc #define	PCI_MAPREG_TYPE_IO			0x00000001
4557eb99bdaSLionel Sambuc #define	PCI_MAPREG_ROM_ENABLE			0x00000001
4567eb99bdaSLionel Sambuc 
4577eb99bdaSLionel Sambuc #define	PCI_MAPREG_MEM_TYPE(mr)						\
4587eb99bdaSLionel Sambuc 	    ((mr) & PCI_MAPREG_MEM_TYPE_MASK)
4597eb99bdaSLionel Sambuc #define	PCI_MAPREG_MEM_TYPE_MASK		0x00000006
4607eb99bdaSLionel Sambuc 
4617eb99bdaSLionel Sambuc #define	PCI_MAPREG_MEM_TYPE_32BIT		0x00000000
4627eb99bdaSLionel Sambuc #define	PCI_MAPREG_MEM_TYPE_32BIT_1M		0x00000002
4637eb99bdaSLionel Sambuc #define	PCI_MAPREG_MEM_TYPE_64BIT		0x00000004
4647eb99bdaSLionel Sambuc 
4657eb99bdaSLionel Sambuc #define	PCI_MAPREG_MEM_PREFETCHABLE(mr)				\
4667eb99bdaSLionel Sambuc 	    (((mr) & PCI_MAPREG_MEM_PREFETCHABLE_MASK) != 0)
4677eb99bdaSLionel Sambuc #define	PCI_MAPREG_MEM_PREFETCHABLE_MASK	0x00000008
4687eb99bdaSLionel Sambuc 
4697eb99bdaSLionel Sambuc #define	PCI_MAPREG_MEM_ADDR(mr)						\
4707eb99bdaSLionel Sambuc 	    ((mr) & PCI_MAPREG_MEM_ADDR_MASK)
4717eb99bdaSLionel Sambuc #define	PCI_MAPREG_MEM_SIZE(mr)						\
4727eb99bdaSLionel Sambuc 	    (PCI_MAPREG_MEM_ADDR(mr) & -PCI_MAPREG_MEM_ADDR(mr))
4737eb99bdaSLionel Sambuc #define	PCI_MAPREG_MEM_ADDR_MASK		0xfffffff0
4747eb99bdaSLionel Sambuc 
4757eb99bdaSLionel Sambuc #define	PCI_MAPREG_MEM64_ADDR(mr)					\
4767eb99bdaSLionel Sambuc 	    ((mr) & PCI_MAPREG_MEM64_ADDR_MASK)
4777eb99bdaSLionel Sambuc #define	PCI_MAPREG_MEM64_SIZE(mr)					\
4787eb99bdaSLionel Sambuc 	    (PCI_MAPREG_MEM64_ADDR(mr) & -PCI_MAPREG_MEM64_ADDR(mr))
4797eb99bdaSLionel Sambuc #define	PCI_MAPREG_MEM64_ADDR_MASK		0xfffffffffffffff0ULL
4807eb99bdaSLionel Sambuc 
4817eb99bdaSLionel Sambuc #define	PCI_MAPREG_IO_ADDR(mr)						\
4827eb99bdaSLionel Sambuc 	    ((mr) & PCI_MAPREG_IO_ADDR_MASK)
4837eb99bdaSLionel Sambuc #define	PCI_MAPREG_IO_SIZE(mr)						\
4847eb99bdaSLionel Sambuc 	    (PCI_MAPREG_IO_ADDR(mr) & -PCI_MAPREG_IO_ADDR(mr))
4857eb99bdaSLionel Sambuc #define	PCI_MAPREG_IO_ADDR_MASK			0xfffffffc
4867eb99bdaSLionel Sambuc 
4877eb99bdaSLionel Sambuc #define PCI_MAPREG_SIZE_TO_MASK(size)					\
4887eb99bdaSLionel Sambuc 	    (-(size))
4897eb99bdaSLionel Sambuc 
4907eb99bdaSLionel Sambuc #define PCI_MAPREG_NUM(offset)						\
4917eb99bdaSLionel Sambuc 	    (((unsigned)(offset)-PCI_MAPREG_START)/4)
4927eb99bdaSLionel Sambuc 
4937eb99bdaSLionel Sambuc 
4947eb99bdaSLionel Sambuc /*
4957eb99bdaSLionel Sambuc  * Cardbus CIS pointer (PCI rev. 2.1)
4967eb99bdaSLionel Sambuc  */
4977eb99bdaSLionel Sambuc #define PCI_CARDBUS_CIS_REG 0x28
4987eb99bdaSLionel Sambuc 
4997eb99bdaSLionel Sambuc /*
5007eb99bdaSLionel Sambuc  * Subsystem identification register; contains a vendor ID and a device ID.
5017eb99bdaSLionel Sambuc  * Types/macros for PCI_ID_REG apply.
5027eb99bdaSLionel Sambuc  * (PCI rev. 2.1)
5037eb99bdaSLionel Sambuc  */
5047eb99bdaSLionel Sambuc #define PCI_SUBSYS_ID_REG 0x2c
5057eb99bdaSLionel Sambuc 
5067eb99bdaSLionel Sambuc #define	PCI_SUBSYS_VENDOR_MASK	__BITS(15, 0)
5077eb99bdaSLionel Sambuc #define	PCI_SUBSYS_ID_MASK		__BITS(31, 16)
5087eb99bdaSLionel Sambuc 
5097eb99bdaSLionel Sambuc #define	PCI_SUBSYS_VENDOR(__subsys_id)	\
5107eb99bdaSLionel Sambuc     __SHIFTOUT(__subsys_id, PCI_SUBSYS_VENDOR_MASK)
5117eb99bdaSLionel Sambuc 
5127eb99bdaSLionel Sambuc #define	PCI_SUBSYS_ID(__subsys_id)	\
5137eb99bdaSLionel Sambuc     __SHIFTOUT(__subsys_id, PCI_SUBSYS_ID_MASK)
5147eb99bdaSLionel Sambuc 
5157eb99bdaSLionel Sambuc /*
5167eb99bdaSLionel Sambuc  * Capabilities link list (PCI rev. 2.2)
5177eb99bdaSLionel Sambuc  */
5187eb99bdaSLionel Sambuc #define	PCI_CAPLISTPTR_REG		0x34	/* header type 0 */
5197eb99bdaSLionel Sambuc #define	PCI_CARDBUS_CAPLISTPTR_REG	0x14	/* header type 2 */
5207eb99bdaSLionel Sambuc #define	PCI_CAPLIST_PTR(cpr)	((cpr) & 0xff)
5217eb99bdaSLionel Sambuc #define	PCI_CAPLIST_NEXT(cr)	(((cr) >> 8) & 0xff)
5227eb99bdaSLionel Sambuc #define	PCI_CAPLIST_CAP(cr)	((cr) & 0xff)
5237eb99bdaSLionel Sambuc 
5247eb99bdaSLionel Sambuc #define	PCI_CAP_RESERVED0	0x00
5257eb99bdaSLionel Sambuc #define	PCI_CAP_PWRMGMT		0x01
5267eb99bdaSLionel Sambuc #define	PCI_CAP_AGP		0x02
5277eb99bdaSLionel Sambuc #define PCI_CAP_AGP_MAJOR(cr)	(((cr) >> 20) & 0xf)
5287eb99bdaSLionel Sambuc #define PCI_CAP_AGP_MINOR(cr)	(((cr) >> 16) & 0xf)
5297eb99bdaSLionel Sambuc #define	PCI_CAP_VPD		0x03
5307eb99bdaSLionel Sambuc #define	PCI_CAP_SLOTID		0x04
5317eb99bdaSLionel Sambuc #define	PCI_CAP_MSI		0x05
5327eb99bdaSLionel Sambuc #define	PCI_CAP_CPCI_HOTSWAP	0x06
5337eb99bdaSLionel Sambuc #define	PCI_CAP_PCIX		0x07
534*0a6a1f1dSLionel Sambuc #define	PCI_CAP_LDT		0x08	/* HyperTransport */
5357eb99bdaSLionel Sambuc #define	PCI_CAP_VENDSPEC	0x09
5367eb99bdaSLionel Sambuc #define	PCI_CAP_DEBUGPORT	0x0a
5377eb99bdaSLionel Sambuc #define	PCI_CAP_CPCI_RSRCCTL	0x0b
5387eb99bdaSLionel Sambuc #define	PCI_CAP_HOTPLUG		0x0c
5397eb99bdaSLionel Sambuc #define	PCI_CAP_SUBVENDOR	0x0d
5407eb99bdaSLionel Sambuc #define	PCI_CAP_AGP8		0x0e
5417eb99bdaSLionel Sambuc #define	PCI_CAP_SECURE		0x0f
5427eb99bdaSLionel Sambuc #define	PCI_CAP_PCIEXPRESS     	0x10
5437eb99bdaSLionel Sambuc #define	PCI_CAP_MSIX		0x11
5447eb99bdaSLionel Sambuc #define	PCI_CAP_SATA		0x12
5457eb99bdaSLionel Sambuc #define	PCI_CAP_PCIAF		0x13
5467eb99bdaSLionel Sambuc 
5477eb99bdaSLionel Sambuc /*
548*0a6a1f1dSLionel Sambuc  * Capability ID: 0x01
549*0a6a1f1dSLionel Sambuc  * Power Management Capability; access via capability pointer.
550*0a6a1f1dSLionel Sambuc  */
551*0a6a1f1dSLionel Sambuc 
552*0a6a1f1dSLionel Sambuc /* Power Management Capability Register */
553*0a6a1f1dSLionel Sambuc #define PCI_PMCR_SHIFT		16
554*0a6a1f1dSLionel Sambuc #define PCI_PMCR		0x02
555*0a6a1f1dSLionel Sambuc #define PCI_PMCR_VERSION_MASK	0x0007
556*0a6a1f1dSLionel Sambuc #define PCI_PMCR_VERSION_10	0x0001
557*0a6a1f1dSLionel Sambuc #define PCI_PMCR_VERSION_11	0x0002
558*0a6a1f1dSLionel Sambuc #define PCI_PMCR_VERSION_12	0x0003
559*0a6a1f1dSLionel Sambuc #define PCI_PMCR_PME_CLOCK	0x0008
560*0a6a1f1dSLionel Sambuc #define PCI_PMCR_DSI		0x0020
561*0a6a1f1dSLionel Sambuc #define PCI_PMCR_AUXCUR_MASK	0x01c0
562*0a6a1f1dSLionel Sambuc #define PCI_PMCR_AUXCUR_0	0x0000
563*0a6a1f1dSLionel Sambuc #define PCI_PMCR_AUXCUR_55	0x0040
564*0a6a1f1dSLionel Sambuc #define PCI_PMCR_AUXCUR_100	0x0080
565*0a6a1f1dSLionel Sambuc #define PCI_PMCR_AUXCUR_160	0x00c0
566*0a6a1f1dSLionel Sambuc #define PCI_PMCR_AUXCUR_220	0x0100
567*0a6a1f1dSLionel Sambuc #define PCI_PMCR_AUXCUR_270	0x0140
568*0a6a1f1dSLionel Sambuc #define PCI_PMCR_AUXCUR_320	0x0180
569*0a6a1f1dSLionel Sambuc #define PCI_PMCR_AUXCUR_375	0x01c0
570*0a6a1f1dSLionel Sambuc #define PCI_PMCR_D1SUPP		0x0200
571*0a6a1f1dSLionel Sambuc #define PCI_PMCR_D2SUPP		0x0400
572*0a6a1f1dSLionel Sambuc #define PCI_PMCR_PME_D0		0x0800
573*0a6a1f1dSLionel Sambuc #define PCI_PMCR_PME_D1		0x1000
574*0a6a1f1dSLionel Sambuc #define PCI_PMCR_PME_D2		0x2000
575*0a6a1f1dSLionel Sambuc #define PCI_PMCR_PME_D3HOT	0x4000
576*0a6a1f1dSLionel Sambuc #define PCI_PMCR_PME_D3COLD	0x8000
577*0a6a1f1dSLionel Sambuc /*
578*0a6a1f1dSLionel Sambuc  * Power Management Control Status Register, Bridge Support Extensions Register
579*0a6a1f1dSLionel Sambuc  * and Data Register.
580*0a6a1f1dSLionel Sambuc  */
581*0a6a1f1dSLionel Sambuc #define PCI_PMCSR		0x04
582*0a6a1f1dSLionel Sambuc #define PCI_PMCSR_STATE_MASK	0x00000003
583*0a6a1f1dSLionel Sambuc #define PCI_PMCSR_STATE_D0	0x00000000
584*0a6a1f1dSLionel Sambuc #define PCI_PMCSR_STATE_D1	0x00000001
585*0a6a1f1dSLionel Sambuc #define PCI_PMCSR_STATE_D2	0x00000002
586*0a6a1f1dSLionel Sambuc #define PCI_PMCSR_STATE_D3	0x00000003
587*0a6a1f1dSLionel Sambuc #define PCI_PMCSR_NO_SOFTRST	0x00000008
588*0a6a1f1dSLionel Sambuc #define	PCI_PMCSR_PME_EN	0x00000100
589*0a6a1f1dSLionel Sambuc #define PCI_PMCSR_DATASEL_MASK	0x00001e00
590*0a6a1f1dSLionel Sambuc #define PCI_PMCSR_DATASCL_MASK	0x00006000
591*0a6a1f1dSLionel Sambuc #define PCI_PMCSR_PME_STS	0x00008000
592*0a6a1f1dSLionel Sambuc #define PCI_PMCSR_B2B3_SUPPORT	0x00400000
593*0a6a1f1dSLionel Sambuc #define PCI_PMCSR_BPCC_EN	0x00800000
594*0a6a1f1dSLionel Sambuc 
595*0a6a1f1dSLionel Sambuc 
596*0a6a1f1dSLionel Sambuc /*
597*0a6a1f1dSLionel Sambuc  * Capability ID: 0x02
598*0a6a1f1dSLionel Sambuc  * AGP
599*0a6a1f1dSLionel Sambuc  */
600*0a6a1f1dSLionel Sambuc 
601*0a6a1f1dSLionel Sambuc /*
602*0a6a1f1dSLionel Sambuc  * Capability ID: 0x03
6037eb99bdaSLionel Sambuc  * Vital Product Data; access via capability pointer (PCI rev 2.2).
6047eb99bdaSLionel Sambuc  */
6057eb99bdaSLionel Sambuc #define	PCI_VPD_ADDRESS_MASK	0x7fff
6067eb99bdaSLionel Sambuc #define	PCI_VPD_ADDRESS_SHIFT	16
6077eb99bdaSLionel Sambuc #define	PCI_VPD_ADDRESS(ofs)	\
6087eb99bdaSLionel Sambuc 	(((ofs) & PCI_VPD_ADDRESS_MASK) << PCI_VPD_ADDRESS_SHIFT)
6097eb99bdaSLionel Sambuc #define	PCI_VPD_DATAREG(ofs)	((ofs) + 4)
6107eb99bdaSLionel Sambuc #define	PCI_VPD_OPFLAG		0x80000000
6117eb99bdaSLionel Sambuc 
612*0a6a1f1dSLionel Sambuc /*
613*0a6a1f1dSLionel Sambuc  * Capability ID: 0x04
614*0a6a1f1dSLionel Sambuc  * Slot ID
615*0a6a1f1dSLionel Sambuc  */
616*0a6a1f1dSLionel Sambuc 
617*0a6a1f1dSLionel Sambuc /*
618*0a6a1f1dSLionel Sambuc  * Capability ID: 0x05
619*0a6a1f1dSLionel Sambuc  * MSI
620*0a6a1f1dSLionel Sambuc  */
621*0a6a1f1dSLionel Sambuc 
6227eb99bdaSLionel Sambuc #define	PCI_MSI_CTL		0x0	/* Message Control Register offset */
6237eb99bdaSLionel Sambuc #define	PCI_MSI_MADDR		0x4	/* Message Address Register (least
6247eb99bdaSLionel Sambuc 					 * significant bits) offset
6257eb99bdaSLionel Sambuc 					 */
6267eb99bdaSLionel Sambuc #define	PCI_MSI_MADDR64_LO	0x4	/* 64-bit Message Address Register
6277eb99bdaSLionel Sambuc 					 * (least significant bits) offset
6287eb99bdaSLionel Sambuc 					 */
6297eb99bdaSLionel Sambuc #define	PCI_MSI_MADDR64_HI	0x8	/* 64-bit Message Address Register
6307eb99bdaSLionel Sambuc 					 * (most significant bits) offset
6317eb99bdaSLionel Sambuc 					 */
6327eb99bdaSLionel Sambuc #define	PCI_MSI_MDATA		0x8	/* Message Data Register offset */
6337eb99bdaSLionel Sambuc #define	PCI_MSI_MDATA64		0xC	/* 64-bit Message Data Register
6347eb99bdaSLionel Sambuc 					 * offset
6357eb99bdaSLionel Sambuc 					 */
636*0a6a1f1dSLionel Sambuc #define	PCI_MSI_MASK		0x10	/* Vector Mask register */
637*0a6a1f1dSLionel Sambuc #define	PCI_MSI_PENDING		0x14	/* Vector Pending register */
6387eb99bdaSLionel Sambuc 
6397eb99bdaSLionel Sambuc #define	PCI_MSI_CTL_MASK	__BITS(31, 16)
6407eb99bdaSLionel Sambuc #define	PCI_MSI_CTL_PERVEC_MASK	__SHIFTIN(__BIT(8), PCI_MSI_CTL_MASK)
6417eb99bdaSLionel Sambuc #define	PCI_MSI_CTL_64BIT_ADDR	__SHIFTIN(__BIT(7), PCI_MSI_CTL_MASK)
6427eb99bdaSLionel Sambuc #define	PCI_MSI_CTL_MME_MASK	__SHIFTIN(__BITS(6, 4), PCI_MSI_CTL_MASK)
643*0a6a1f1dSLionel Sambuc #define	PCI_MSI_CTL_MME(reg)	__SHIFTOUT(reg, PCI_MSI_CTL_MME_MASK)
6447eb99bdaSLionel Sambuc #define	PCI_MSI_CTL_MMC_MASK	__SHIFTIN(__BITS(3, 1), PCI_MSI_CTL_MASK)
645*0a6a1f1dSLionel Sambuc #define	PCI_MSI_CTL_MMC(reg)	__SHIFTOUT(reg, PCI_MSI_CTL_MMC_MASK)
6467eb99bdaSLionel Sambuc #define	PCI_MSI_CTL_MSI_ENABLE	__SHIFTIN(__BIT(0), PCI_MSI_CTL_MASK)
6477eb99bdaSLionel Sambuc 
6487eb99bdaSLionel Sambuc /*
6497eb99bdaSLionel Sambuc  * MSI Message Address is at offset 4.
6507eb99bdaSLionel Sambuc  * MSI Message Upper Address (if 64bit) is at offset 8.
6517eb99bdaSLionel Sambuc  * MSI Message data is at offset 8 or 12 and is 16 bits.
6527eb99bdaSLionel Sambuc  * [16 bit reserved field]
6537eb99bdaSLionel Sambuc  * MSI Mask Bits (32 bit field)
6547eb99bdaSLionel Sambuc  * MSI Pending Bits (32 bit field)
6557eb99bdaSLionel Sambuc  */
6567eb99bdaSLionel Sambuc 
657*0a6a1f1dSLionel Sambuc  /* Max number of MSI vectors. See PCI-SIG specification. */
658*0a6a1f1dSLionel Sambuc #define	PCI_MSI_MAX_VECTORS	32
6597eb99bdaSLionel Sambuc 
6607eb99bdaSLionel Sambuc /*
661*0a6a1f1dSLionel Sambuc  * Capability ID: 0x07
6627eb99bdaSLionel Sambuc  * PCI-X capability.
663*0a6a1f1dSLionel Sambuc  *
664*0a6a1f1dSLionel Sambuc  * PCI-X capability register has two different layouts. One is for bridge
665*0a6a1f1dSLionel Sambuc  * function. Another is for non-bridge functions.
6667eb99bdaSLionel Sambuc  */
6677eb99bdaSLionel Sambuc 
668*0a6a1f1dSLionel Sambuc 
669*0a6a1f1dSLionel Sambuc /* For non-bridge functions */
670*0a6a1f1dSLionel Sambuc 
6717eb99bdaSLionel Sambuc /*
6727eb99bdaSLionel Sambuc  * Command. 16 bits at offset 2 (e.g. upper 16 bits of the first 32-bit
6737eb99bdaSLionel Sambuc  * word at the capability; the lower 16 bits are the capability ID and
6747eb99bdaSLionel Sambuc  * next capability pointer).
6757eb99bdaSLionel Sambuc  *
6767eb99bdaSLionel Sambuc  * Since we always read PCI config space in 32-bit words, we define these
6777eb99bdaSLionel Sambuc  * as 32-bit values, offset and shifted appropriately.  Make sure you perform
6787eb99bdaSLionel Sambuc  * the appropriate R/M/W cycles!
6797eb99bdaSLionel Sambuc  */
6807eb99bdaSLionel Sambuc #define PCIX_CMD		0x00
6817eb99bdaSLionel Sambuc #define PCIX_CMD_PERR_RECOVER	0x00010000
6827eb99bdaSLionel Sambuc #define PCIX_CMD_RELAXED_ORDER	0x00020000
6837eb99bdaSLionel Sambuc #define PCIX_CMD_BYTECNT_MASK	0x000c0000
6847eb99bdaSLionel Sambuc #define	PCIX_CMD_BYTECNT_SHIFT	18
685*0a6a1f1dSLionel Sambuc #define	PCIX_CMD_BYTECNT(reg)	\
686*0a6a1f1dSLionel Sambuc 	(512 << (((reg) & PCIX_CMD_BYTECNT_MASK) >> PCIX_CMD_BYTECNT_SHIFT))
6877eb99bdaSLionel Sambuc #define		PCIX_CMD_BCNT_512	0x00000000
6887eb99bdaSLionel Sambuc #define		PCIX_CMD_BCNT_1024	0x00040000
6897eb99bdaSLionel Sambuc #define		PCIX_CMD_BCNT_2048	0x00080000
6907eb99bdaSLionel Sambuc #define		PCIX_CMD_BCNT_4096	0x000c0000
6917eb99bdaSLionel Sambuc #define PCIX_CMD_SPLTRANS_MASK	0x00700000
692*0a6a1f1dSLionel Sambuc #define	PCIX_CMD_SPLTRANS_SHIFT	20
6937eb99bdaSLionel Sambuc #define		PCIX_CMD_SPLTRANS_1	0x00000000
6947eb99bdaSLionel Sambuc #define		PCIX_CMD_SPLTRANS_2	0x00100000
6957eb99bdaSLionel Sambuc #define		PCIX_CMD_SPLTRANS_3	0x00200000
6967eb99bdaSLionel Sambuc #define		PCIX_CMD_SPLTRANS_4	0x00300000
6977eb99bdaSLionel Sambuc #define		PCIX_CMD_SPLTRANS_8	0x00400000
6987eb99bdaSLionel Sambuc #define		PCIX_CMD_SPLTRANS_12	0x00500000
6997eb99bdaSLionel Sambuc #define		PCIX_CMD_SPLTRANS_16	0x00600000
7007eb99bdaSLionel Sambuc #define		PCIX_CMD_SPLTRANS_32	0x00700000
7017eb99bdaSLionel Sambuc 
7027eb99bdaSLionel Sambuc /*
7037eb99bdaSLionel Sambuc  * Status. 32 bits at offset 4.
7047eb99bdaSLionel Sambuc  */
7057eb99bdaSLionel Sambuc #define PCIX_STATUS		0x04
7067eb99bdaSLionel Sambuc #define PCIX_STATUS_FN_MASK	0x00000007
7077eb99bdaSLionel Sambuc #define PCIX_STATUS_DEV_MASK	0x000000f8
708*0a6a1f1dSLionel Sambuc #define PCIX_STATUS_DEV_SHIFT	3
7097eb99bdaSLionel Sambuc #define PCIX_STATUS_BUS_MASK	0x0000ff00
710*0a6a1f1dSLionel Sambuc #define PCIX_STATUS_BUS_SHIFT	8
711*0a6a1f1dSLionel Sambuc #define PCIX_STATUS_FN(val)	((val) & PCIX_STATUS_FN_MASK)
712*0a6a1f1dSLionel Sambuc #define PCIX_STATUS_DEV(val)	\
713*0a6a1f1dSLionel Sambuc 	(((val) & PCIX_STATUS_DEV_MASK) >> PCIX_STATUS_DEV_SHIFT)
714*0a6a1f1dSLionel Sambuc #define PCIX_STATUS_BUS(val)	\
715*0a6a1f1dSLionel Sambuc 	(((val) & PCIX_STATUS_BUS_MASK) >> PCIX_STATUS_BUS_SHIFT)
716*0a6a1f1dSLionel Sambuc #define PCIX_STATUS_64BIT	0x00010000	/* 64bit device */
717*0a6a1f1dSLionel Sambuc #define PCIX_STATUS_133		0x00020000	/* 133MHz capable */
718*0a6a1f1dSLionel Sambuc #define PCIX_STATUS_SPLDISC	0x00040000	/* Split completion discarded*/
719*0a6a1f1dSLionel Sambuc #define PCIX_STATUS_SPLUNEX	0x00080000	/* Unexpected split complet. */
720*0a6a1f1dSLionel Sambuc #define PCIX_STATUS_DEVCPLX	0x00100000	/* Device Complexity */
721*0a6a1f1dSLionel Sambuc #define PCIX_STATUS_MAXB_MASK	0x00600000	/* MAX memory read Byte count*/
7227eb99bdaSLionel Sambuc #define	PCIX_STATUS_MAXB_SHIFT	21
7237eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXB_512	0x00000000
7247eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXB_1024	0x00200000
7257eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXB_2048	0x00400000
7267eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXB_4096	0x00600000
727*0a6a1f1dSLionel Sambuc #define PCIX_STATUS_MAXST_MASK	0x03800000	/* MAX outstand. Split Trans.*/
728*0a6a1f1dSLionel Sambuc #define	PCIX_STATUS_MAXST_SHIFT	23
7297eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXST_1	0x00000000
7307eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXST_2	0x00800000
7317eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXST_3	0x01000000
7327eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXST_4	0x01800000
7337eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXST_8	0x02000000
7347eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXST_12	0x02800000
7357eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXST_16	0x03000000
7367eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXST_32	0x03800000
737*0a6a1f1dSLionel Sambuc #define PCIX_STATUS_MAXRS_MASK	0x1c000000	/* MAX cumulative Read Size */
738*0a6a1f1dSLionel Sambuc #define PCIX_STATUS_MAXRS_SHIFT	26
7397eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXRS_1K	0x00000000
7407eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXRS_2K	0x04000000
7417eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXRS_4K	0x08000000
7427eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXRS_8K	0x0c000000
7437eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXRS_16K	0x10000000
7447eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXRS_32K	0x14000000
7457eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXRS_64K	0x18000000
7467eb99bdaSLionel Sambuc #define		PCIX_STATUS_MAXRS_128K	0x1c000000
747*0a6a1f1dSLionel Sambuc #define PCIX_STATUS_SCERR	0x20000000	/* rcv. Split Completion ERR.*/
748*0a6a1f1dSLionel Sambuc #define PCIX_STATUS_266		0x40000000	/* 266MHz capable */
749*0a6a1f1dSLionel Sambuc #define PCIX_STATUS_533		0x80000000	/* 533MHz capable */
750*0a6a1f1dSLionel Sambuc 
751*0a6a1f1dSLionel Sambuc /* For bridge function */
752*0a6a1f1dSLionel Sambuc 
753*0a6a1f1dSLionel Sambuc #define PCIX_BRIDGE_2ND_STATUS	0x00
754*0a6a1f1dSLionel Sambuc #define PCIX_BRIDGE_ST_64BIT	0x00010000	/* Same as PCIX_STATUS (nonb)*/
755*0a6a1f1dSLionel Sambuc #define PCIX_BRIDGE_ST_133	0x00020000	/* Same as PCIX_STATUS (nonb)*/
756*0a6a1f1dSLionel Sambuc #define PCIX_BRIDGE_ST_SPLDISC	0x00040000	/* Same as PCIX_STATUS (nonb)*/
757*0a6a1f1dSLionel Sambuc #define PCIX_BRIDGE_ST_SPLUNEX	0x00080000	/* Same as PCIX_STATUS (nonb)*/
758*0a6a1f1dSLionel Sambuc #define PCIX_BRIDGE_ST_SPLOVRN	0x00100000	/* Split completion overrun */
759*0a6a1f1dSLionel Sambuc #define PCIX_BRIDGE_ST_SPLRQDL	0x00200000	/* Split request delayed */
760*0a6a1f1dSLionel Sambuc #define PCIX_BRIDGE_2NDST_CLKF	0x03c00000	/* Secondary clock frequency */
761*0a6a1f1dSLionel Sambuc #define PCIX_BRIDGE_2NDST_CLKF_SHIFT 22
762*0a6a1f1dSLionel Sambuc #define PCIX_BRIDGE_2NDST_VER_MASK 0x30000000	/* Version */
763*0a6a1f1dSLionel Sambuc #define PCIX_BRIDGE_2NDST_VER_SHIFT 28
764*0a6a1f1dSLionel Sambuc #define PCIX_BRIDGE_ST_266	0x40000000	/* Same as PCIX_STATUS (nonb)*/
765*0a6a1f1dSLionel Sambuc #define PCIX_BRIDGE_ST_533	0x80000000	/* Same as PCIX_STATUS (nonb)*/
766*0a6a1f1dSLionel Sambuc 
767*0a6a1f1dSLionel Sambuc #define PCIX_BRIDGE_PRI_STATUS	0x04
768*0a6a1f1dSLionel Sambuc /* Bit 0 to 15 are the same as PCIX_STATUS */
769*0a6a1f1dSLionel Sambuc /* Bit 16 to 21 are the same as PCIX_BRIDGE_2ND_STATUS */
770*0a6a1f1dSLionel Sambuc /* Bit 30 and 31 are the same as PCIX_BRIDGE_2ND_STATUS */
771*0a6a1f1dSLionel Sambuc 
772*0a6a1f1dSLionel Sambuc #define PCIX_BRIDGE_UP_STCR	0x08 /* Upstream Split Transaction Control */
773*0a6a1f1dSLionel Sambuc #define PCIX_BRIDGE_DOWN_STCR	0x0c /* Downstream Split Transaction Control */
774*0a6a1f1dSLionel Sambuc /* The layouts of above two registers are the same */
775*0a6a1f1dSLionel Sambuc #define PCIX_BRIDGE_STCAP	0x0000ffff	/* Sp. Tr. Capacity */
776*0a6a1f1dSLionel Sambuc #define PCIX_BRIDGE_STCLIM	0xffff0000	/* Sp. Tr. Commitment Limit */
777*0a6a1f1dSLionel Sambuc #define PCIX_BRIDGE_STCLIM_SHIFT 16
7787eb99bdaSLionel Sambuc 
7797eb99bdaSLionel Sambuc /*
780*0a6a1f1dSLionel Sambuc  * Capability ID: 0x08
781*0a6a1f1dSLionel Sambuc  * HyperTransport
782*0a6a1f1dSLionel Sambuc  */
783*0a6a1f1dSLionel Sambuc 
784*0a6a1f1dSLionel Sambuc #define PCI_HT_CMD	0x00	/* Capability List & Command Register */
785*0a6a1f1dSLionel Sambuc #define	PCI_HT_CMD_MASK		__BITS(31, 16)
786*0a6a1f1dSLionel Sambuc #define PCI_HT_MSI_ENABLED	__BIT(16)
787*0a6a1f1dSLionel Sambuc #define PCI_HT_MSI_FIXED	__BIT(17)
788*0a6a1f1dSLionel Sambuc #define PCI_HT_CAP(cr) ((((cr) >> 27) < 0x08) ?				      \
789*0a6a1f1dSLionel Sambuc     (((cr) >> 27) & 0x1c) : (((cr) >> 27) & 0x1f))
790*0a6a1f1dSLionel Sambuc #define PCI_HT_CAPMASK		__BITS(31, 27)
791*0a6a1f1dSLionel Sambuc #define PCI_HT_CAP_SLAVE	__SHIFTIN(0b00000, PCI_HT_CAPMASK) /* 000xx */
792*0a6a1f1dSLionel Sambuc #define PCI_HT_CAP_HOST		__SHIFTIN(0b00100, PCI_HT_CAPMASK) /* 001xx */
793*0a6a1f1dSLionel Sambuc #define PCI_HT_CAP_SWITCH	__SHIFTIN(0b01000, PCI_HT_CAPMASK)
794*0a6a1f1dSLionel Sambuc #define PCI_HT_CAP_INTERRUPT	__SHIFTIN(0b10000, PCI_HT_CAPMASK)
795*0a6a1f1dSLionel Sambuc #define PCI_HT_CAP_REVID	__SHIFTIN(0b10001, PCI_HT_CAPMASK)
796*0a6a1f1dSLionel Sambuc #define PCI_HT_CAP_UNITID_CLUMP	__SHIFTIN(0b10010, PCI_HT_CAPMASK)
797*0a6a1f1dSLionel Sambuc #define PCI_HT_CAP_EXTCNFSPACE	__SHIFTIN(0b10011, PCI_HT_CAPMASK)
798*0a6a1f1dSLionel Sambuc #define PCI_HT_CAP_ADDRMAP	__SHIFTIN(0b10100, PCI_HT_CAPMASK)
799*0a6a1f1dSLionel Sambuc #define PCI_HT_CAP_MSIMAP	__SHIFTIN(0b10101, PCI_HT_CAPMASK)
800*0a6a1f1dSLionel Sambuc #define PCI_HT_CAP_DIRECTROUTE	__SHIFTIN(0b10110, PCI_HT_CAPMASK)
801*0a6a1f1dSLionel Sambuc #define PCI_HT_CAP_VCSET	__SHIFTIN(0b10111, PCI_HT_CAPMASK)
802*0a6a1f1dSLionel Sambuc #define PCI_HT_CAP_RETRYMODE	__SHIFTIN(0b11000, PCI_HT_CAPMASK)
803*0a6a1f1dSLionel Sambuc #define PCI_HT_CAP_X86ENCODE	__SHIFTIN(0b11001, PCI_HT_CAPMASK)
804*0a6a1f1dSLionel Sambuc #define PCI_HT_CAP_GEN3		__SHIFTIN(0b11010, PCI_HT_CAPMASK)
805*0a6a1f1dSLionel Sambuc #define PCI_HT_CAP_FLE		__SHIFTIN(0b11011, PCI_HT_CAPMASK)
806*0a6a1f1dSLionel Sambuc #define PCI_HT_CAP_PM		__SHIFTIN(0b11100, PCI_HT_CAPMASK)
807*0a6a1f1dSLionel Sambuc #define PCI_HT_CAP_HIGHNODECNT	__SHIFTIN(0b11101, PCI_HT_CAPMASK)
808*0a6a1f1dSLionel Sambuc 
809*0a6a1f1dSLionel Sambuc #define PCI_HT_MSI_ADDR_LO	0x04
810*0a6a1f1dSLionel Sambuc #define PCI_HT_MSI_ADDR_HI	0x08
811*0a6a1f1dSLionel Sambuc #define PCI_HT_MSI_FIXED_ADDR	0xfee00000UL
812*0a6a1f1dSLionel Sambuc 
813*0a6a1f1dSLionel Sambuc /*
814*0a6a1f1dSLionel Sambuc  * Capability ID: 0x09
815*0a6a1f1dSLionel Sambuc  * Vendor Specific
816*0a6a1f1dSLionel Sambuc  */
817*0a6a1f1dSLionel Sambuc #define PCI_VENDORSPECIFIC_SHIFT	16
818*0a6a1f1dSLionel Sambuc #define PCI_VENDORSPECIFIC		0x02
819*0a6a1f1dSLionel Sambuc 
820*0a6a1f1dSLionel Sambuc /*
821*0a6a1f1dSLionel Sambuc  * Capability ID: 0x0a
822*0a6a1f1dSLionel Sambuc  * Debug Port
823*0a6a1f1dSLionel Sambuc  */
824*0a6a1f1dSLionel Sambuc #define PCI_DEBUG_BASER		0x00	/* Debug Base Register */
825*0a6a1f1dSLionel Sambuc #define PCI_DEBUG_BASER_SHIFT	16
826*0a6a1f1dSLionel Sambuc #define PCI_DEBUG_PORTOFF_SHIFT	16
827*0a6a1f1dSLionel Sambuc #define	PCI_DEBUG_PORTOFF_MASK	0x1fff0000	/* Debug port offset */
828*0a6a1f1dSLionel Sambuc #define PCI_DEBUG_BARNUM_SHIFT	29
829*0a6a1f1dSLionel Sambuc #define	PCI_DEBUG_BARNUM_MASK	0xe0000000	/* BAR number */
830*0a6a1f1dSLionel Sambuc 
831*0a6a1f1dSLionel Sambuc /*
832*0a6a1f1dSLionel Sambuc  * Capability ID: 0x0b
833*0a6a1f1dSLionel Sambuc  * Compact PCI
834*0a6a1f1dSLionel Sambuc  */
835*0a6a1f1dSLionel Sambuc 
836*0a6a1f1dSLionel Sambuc /*
837*0a6a1f1dSLionel Sambuc  * Capability ID: 0x0c
838*0a6a1f1dSLionel Sambuc  * Hotplug
839*0a6a1f1dSLionel Sambuc  */
840*0a6a1f1dSLionel Sambuc 
841*0a6a1f1dSLionel Sambuc /*
842*0a6a1f1dSLionel Sambuc  * Capability ID: 0x0d
843*0a6a1f1dSLionel Sambuc  * Subsystem
844*0a6a1f1dSLionel Sambuc  */
845*0a6a1f1dSLionel Sambuc #define PCI_CAP_SUBSYS_ID 0x04
846*0a6a1f1dSLionel Sambuc /* bit field layout is the same as PCI_SUBSYS_ID_REG's one */
847*0a6a1f1dSLionel Sambuc 
848*0a6a1f1dSLionel Sambuc /*
849*0a6a1f1dSLionel Sambuc  * Capability ID: 0x0e
850*0a6a1f1dSLionel Sambuc  * AGP8
851*0a6a1f1dSLionel Sambuc  */
852*0a6a1f1dSLionel Sambuc 
853*0a6a1f1dSLionel Sambuc /*
854*0a6a1f1dSLionel Sambuc  * Capability ID: 0x0f
855*0a6a1f1dSLionel Sambuc  * Secure
856*0a6a1f1dSLionel Sambuc  */
857*0a6a1f1dSLionel Sambuc 
858*0a6a1f1dSLionel Sambuc /*
859*0a6a1f1dSLionel Sambuc  * Capability ID: 0x10
8607eb99bdaSLionel Sambuc  * PCI Express; access via capability pointer.
8617eb99bdaSLionel Sambuc  */
8627eb99bdaSLionel Sambuc #define PCIE_XCAP	0x00	/* Capability List & Capabilities Register */
8637eb99bdaSLionel Sambuc #define	PCIE_XCAP_MASK		__BITS(31, 16)
8647eb99bdaSLionel Sambuc /* Capability Version */
8657eb99bdaSLionel Sambuc #define PCIE_XCAP_VER_MASK	__SHIFTIN(__BITS(3, 0), PCIE_XCAP_MASK)
866*0a6a1f1dSLionel Sambuc #define	 PCIE_XCAP_VER_1	__SHIFTIN(1, PCIE_XCAP_VER_MASK)
867*0a6a1f1dSLionel Sambuc #define	 PCIE_XCAP_VER_2	__SHIFTIN(2, PCIE_XCAP_VER_MASK)
8687eb99bdaSLionel Sambuc #define	PCIE_XCAP_TYPE_MASK	__SHIFTIN(__BITS(7, 4), PCIE_XCAP_MASK)
8697eb99bdaSLionel Sambuc #define	 PCIE_XCAP_TYPE_PCIE_DEV __SHIFTIN(0x0, PCIE_XCAP_TYPE_MASK)
8707eb99bdaSLionel Sambuc #define	 PCIE_XCAP_TYPE_PCI_DEV	__SHIFTIN(0x1, PCIE_XCAP_TYPE_MASK)
8717eb99bdaSLionel Sambuc #define	 PCIE_XCAP_TYPE_ROOT	__SHIFTIN(0x4, PCIE_XCAP_TYPE_MASK)
8727eb99bdaSLionel Sambuc #define	 PCIE_XCAP_TYPE_UP	__SHIFTIN(0x5, PCIE_XCAP_TYPE_MASK)
8737eb99bdaSLionel Sambuc #define	 PCIE_XCAP_TYPE_DOWN	__SHIFTIN(0x6, PCIE_XCAP_TYPE_MASK)
8747eb99bdaSLionel Sambuc #define	 PCIE_XCAP_TYPE_PCIE2PCI __SHIFTIN(0x7, PCIE_XCAP_TYPE_MASK)
8757eb99bdaSLionel Sambuc #define	 PCIE_XCAP_TYPE_PCI2PCIE __SHIFTIN(0x8, PCIE_XCAP_TYPE_MASK)
8767eb99bdaSLionel Sambuc #define	 PCIE_XCAP_TYPE_ROOT_INTEP __SHIFTIN(0x9, PCIE_XCAP_TYPE_MASK)
8777eb99bdaSLionel Sambuc #define	 PCIE_XCAP_TYPE_ROOT_EVNTC __SHIFTIN(0xa, PCIE_XCAP_TYPE_MASK)
8787eb99bdaSLionel Sambuc #define PCIE_XCAP_SI		__SHIFTIN(__BIT(8), PCIE_XCAP_MASK) /* Slot Implemented */
8797eb99bdaSLionel Sambuc #define PCIE_XCAP_IRQ		__SHIFTIN(__BITS(13, 9), PCIE_XCAP_MASK)
8807eb99bdaSLionel Sambuc #define PCIE_DCAP	0x04	/* Device Capabilities Register */
8817eb99bdaSLionel Sambuc #define PCIE_DCAP_MAX_PAYLOAD	__BITS(2, 0)   /* Max Payload Size Supported */
8827eb99bdaSLionel Sambuc #define PCIE_DCAP_PHANTOM_FUNCS	__BITS(4, 3)   /* Phantom Functions Supported*/
8837eb99bdaSLionel Sambuc #define PCIE_DCAP_EXT_TAG_FIELD	__BIT(5)       /* Extended Tag Field Support */
8847eb99bdaSLionel Sambuc #define PCIE_DCAP_L0S_LATENCY	__BITS(8, 6)   /* Endpoint L0 Accptbl Latency*/
8857eb99bdaSLionel Sambuc #define PCIE_DCAP_L1_LATENCY	__BITS(11, 9)  /* Endpoint L1 Accptbl Latency*/
8867eb99bdaSLionel Sambuc #define PCIE_DCAP_ATTN_BUTTON	__BIT(12)      /* Attention Indicator Button */
8877eb99bdaSLionel Sambuc #define PCIE_DCAP_ATTN_IND	__BIT(13)      /* Attention Indicator Present*/
8887eb99bdaSLionel Sambuc #define PCIE_DCAP_PWR_IND	__BIT(14)      /* Power Indicator Present */
8897eb99bdaSLionel Sambuc #define PCIE_DCAP_ROLE_ERR_RPT	__BIT(15)      /* Role-Based Error Reporting */
8907eb99bdaSLionel Sambuc #define PCIE_DCAP_SLOT_PWR_LIM_VAL __BITS(25, 18) /* Cap. Slot PWR Limit Val */
8917eb99bdaSLionel Sambuc #define PCIE_DCAP_SLOT_PWR_LIM_SCALE __BITS(27, 26) /* Cap. SlotPWRLimit Scl */
8927eb99bdaSLionel Sambuc #define PCIE_DCAP_FLR		__BIT(28)      /* Function-Level Reset Cap. */
8937eb99bdaSLionel Sambuc #define PCIE_DCSR	0x08	/* Device Control & Status Register */
8947eb99bdaSLionel Sambuc #define PCIE_DCSR_ENA_COR_ERR	__BIT(0)       /* Correctable Error Report En*/
8957eb99bdaSLionel Sambuc #define PCIE_DCSR_ENA_NFER	__BIT(1)       /* Non-Fatal Error Report En. */
8967eb99bdaSLionel Sambuc #define PCIE_DCSR_ENA_FER	__BIT(2)       /* Fatal Error Reporting Enabl*/
8977eb99bdaSLionel Sambuc #define PCIE_DCSR_ENA_URR	__BIT(3)       /* Unsupported Request Rpt En */
8987eb99bdaSLionel Sambuc #define PCIE_DCSR_ENA_RELAX_ORD	__BIT(4)       /* Enable Relaxed Ordering */
8997eb99bdaSLionel Sambuc #define PCIE_DCSR_MAX_PAYLOAD	__BITS(7, 5)   /* Max Payload Size */
9007eb99bdaSLionel Sambuc #define PCIE_DCSR_EXT_TAG_FIELD	__BIT(8)       /* Extended Tag Field Enable */
9017eb99bdaSLionel Sambuc #define PCIE_DCSR_PHANTOM_FUNCS	__BIT(9)       /* Phantom Functions Enable */
9027eb99bdaSLionel Sambuc #define PCIE_DCSR_AUX_POWER_PM	__BIT(10)      /* Aux Power PM Enable */
9037eb99bdaSLionel Sambuc #define PCIE_DCSR_ENA_NO_SNOOP	__BIT(11)      /* Enable No Snoop */
9047eb99bdaSLionel Sambuc #define PCIE_DCSR_MAX_READ_REQ	__BITS(14, 12) /* Max Read Request Size */
9057eb99bdaSLionel Sambuc #define PCIE_DCSR_BRDG_CFG_RETRY __BIT(15)     /* Bridge Config Retry Enable */
9067eb99bdaSLionel Sambuc #define PCIE_DCSR_INITIATE_FLR	__BIT(15)      /* Initiate Function-Level Rst*/
9077eb99bdaSLionel Sambuc #define PCIE_DCSR_CED		__BIT(0 + 16)  /* Correctable Error Detected */
9087eb99bdaSLionel Sambuc #define PCIE_DCSR_NFED		__BIT(1 + 16)  /* Non-Fatal Error Detected */
9097eb99bdaSLionel Sambuc #define PCIE_DCSR_FED		__BIT(2 + 16)  /* Fatal Error Detected */
9107eb99bdaSLionel Sambuc #define PCIE_DCSR_URD		__BIT(3 + 16)  /* Unsupported Req. Detected */
9117eb99bdaSLionel Sambuc #define PCIE_DCSR_AUX_PWR	__BIT(4 + 16)  /* Aux Power Detected */
9127eb99bdaSLionel Sambuc #define PCIE_DCSR_TRANSACTION_PND __BIT(5 + 16) /* Transaction Pending */
9137eb99bdaSLionel Sambuc #define PCIE_LCAP	0x0c	/* Link Capabilities Register */
9147eb99bdaSLionel Sambuc #define PCIE_LCAP_MAX_SPEED	__BITS(3, 0)   /* Max Link Speed */
9157eb99bdaSLionel Sambuc #define PCIE_LCAP_MAX_WIDTH	__BITS(9, 4)   /* Maximum Link Width */
9167eb99bdaSLionel Sambuc #define PCIE_LCAP_ASPM		__BITS(11, 10) /* Active State Link PM Supp. */
9177eb99bdaSLionel Sambuc #define PCIE_LCAP_L0S_EXIT	__BITS(14, 12) /* L0s Exit Latency */
9187eb99bdaSLionel Sambuc #define PCIE_LCAP_L1_EXIT	__BITS(17, 15) /* L1 Exit Latency */
9197eb99bdaSLionel Sambuc #define PCIE_LCAP_CLOCK_PM	__BIT(18)      /* Clock Power Management */
9207eb99bdaSLionel Sambuc #define PCIE_LCAP_SURPRISE_DOWN	__BIT(19)      /* Surprise Down Err Rpt Cap. */
9217eb99bdaSLionel Sambuc #define PCIE_LCAP_DL_ACTIVE	__BIT(20)      /* Data Link Layer Link Active*/
9227eb99bdaSLionel Sambuc #define PCIE_LCAP_LINK_BW_NOTIFY __BIT(21)     /* Link BW Notification Capabl*/
9237eb99bdaSLionel Sambuc #define PCIE_LCAP_ASPM_COMPLIANCE __BIT(22)    /* ASPM Optionally Compliance */
9247eb99bdaSLionel Sambuc #define PCIE_LCAP_PORT		__BITS(31, 24) /* Port Number */
9257eb99bdaSLionel Sambuc #define PCIE_LCSR	0x10	/* Link Control & Status Register */
9267eb99bdaSLionel Sambuc #define PCIE_LCSR_ASPM_L0S	__BIT(0)       /* Active State PM Control L0s*/
9277eb99bdaSLionel Sambuc #define PCIE_LCSR_ASPM_L1	__BIT(1)       /* Active State PM Control L1 */
9287eb99bdaSLionel Sambuc #define PCIE_LCSR_RCB		__BIT(3)       /* Read Completion Boundry Ctl*/
9297eb99bdaSLionel Sambuc #define PCIE_LCSR_LINK_DIS	__BIT(4)       /* Link Disable */
9307eb99bdaSLionel Sambuc #define PCIE_LCSR_RETRAIN	__BIT(5)       /* Retrain Link */
9317eb99bdaSLionel Sambuc #define PCIE_LCSR_COMCLKCFG	__BIT(6)       /* Common Clock Configuration */
9327eb99bdaSLionel Sambuc #define PCIE_LCSR_EXTNDSYNC	__BIT(7)       /* Extended Synch */
9337eb99bdaSLionel Sambuc #define PCIE_LCSR_ENCLKPM	__BIT(8)       /* Enable Clock Power Managmt */
9347eb99bdaSLionel Sambuc #define PCIE_LCSR_HAWD		__BIT(9)       /* HW Autonomous Width Disable*/
9357eb99bdaSLionel Sambuc #define PCIE_LCSR_LBMIE		__BIT(10)      /* Link BW Management Intr En */
9367eb99bdaSLionel Sambuc #define PCIE_LCSR_LABIE		__BIT(11)      /* Link Autonomous BW Intr En */
9377eb99bdaSLionel Sambuc #define	PCIE_LCSR_LINKSPEED	__BITS(19, 16) /* Link Speed */
9387eb99bdaSLionel Sambuc #define	PCIE_LCSR_NLW		__BITS(25, 20) /* Negotiated Link Width */
9397eb99bdaSLionel Sambuc #define	PCIE_LCSR_LINKTRAIN_ERR	__BIT(10 + 16) /* Link Training Error */
9407eb99bdaSLionel Sambuc #define	PCIE_LCSR_LINKTRAIN	__BIT(11 + 16) /* Link Training */
9417eb99bdaSLionel Sambuc #define	PCIE_LCSR_SLOTCLKCFG 	__BIT(12 + 16) /* Slot Clock Configuration */
9427eb99bdaSLionel Sambuc #define	PCIE_LCSR_DLACTIVE	__BIT(13 + 16) /* Data Link Layer Link Active*/
9437eb99bdaSLionel Sambuc #define	PCIE_LCSR_LINK_BW_MGMT	__BIT(14 + 16) /* Link BW Management Status */
9447eb99bdaSLionel Sambuc #define	PCIE_LCSR_LINK_AUTO_BW	__BIT(15 + 16) /* Link Autonomous BW Status */
9457eb99bdaSLionel Sambuc #define PCIE_SLCAP	0x14	/* Slot Capabilities Register */
9467eb99bdaSLionel Sambuc #define PCIE_SLCAP_ABP		__BIT(0)       /* Attention Button Present */
9477eb99bdaSLionel Sambuc #define PCIE_SLCAP_PCP		__BIT(1)       /* Power Controller Present */
9487eb99bdaSLionel Sambuc #define PCIE_SLCAP_MSP		__BIT(2)       /* MRL Sensor Present */
9497eb99bdaSLionel Sambuc #define PCIE_SLCAP_AIP		__BIT(3)       /* Attention Indicator Present*/
9507eb99bdaSLionel Sambuc #define PCIE_SLCAP_PIP		__BIT(4)       /* Power Indicator Present */
9517eb99bdaSLionel Sambuc #define PCIE_SLCAP_HPS		__BIT(5)       /* Hot-Plug Surprise */
9527eb99bdaSLionel Sambuc #define PCIE_SLCAP_HPC		__BIT(6)       /* Hot-Plug Capable */
9537eb99bdaSLionel Sambuc #define	PCIE_SLCAP_SPLV		__BITS(14, 7)  /* Slot Power Limit Value */
9547eb99bdaSLionel Sambuc #define	PCIE_SLCAP_SPLS		__BITS(16, 15) /* Slot Power Limit Scale */
9557eb99bdaSLionel Sambuc #define	PCIE_SLCAP_EIP		__BIT(17)      /* Electromechanical Interlock*/
9567eb99bdaSLionel Sambuc #define	PCIE_SLCAP_NCCS		__BIT(18)      /* No Command Completed Supp. */
9577eb99bdaSLionel Sambuc #define	PCIE_SLCAP_PSN		__BITS(31, 19) /* Physical Slot Number */
9587eb99bdaSLionel Sambuc #define PCIE_SLCSR	0x18	/* Slot Control & Status Register */
9597eb99bdaSLionel Sambuc #define PCIE_SLCSR_ABE		__BIT(0)       /* Attention Button Pressed En*/
9607eb99bdaSLionel Sambuc #define PCIE_SLCSR_PFE		__BIT(1)       /* Power Button Pressed Enable*/
9617eb99bdaSLionel Sambuc #define PCIE_SLCSR_MSE		__BIT(2)       /* MRL Sensor Changed Enable */
9627eb99bdaSLionel Sambuc #define PCIE_SLCSR_PDE		__BIT(3)       /* Presence Detect Changed Ena*/
9637eb99bdaSLionel Sambuc #define PCIE_SLCSR_CCE		__BIT(4)       /* Command Completed Intr. En */
9647eb99bdaSLionel Sambuc #define PCIE_SLCSR_HPE		__BIT(5)       /* Hot Plug Interrupt Enable */
9657eb99bdaSLionel Sambuc #define PCIE_SLCSR_AIC		__BITS(7, 6)   /* Attention Indicator Control*/
9667eb99bdaSLionel Sambuc #define PCIE_SLCSR_PIC		__BITS(9, 8)   /* Power Indicator Control */
9677eb99bdaSLionel Sambuc #define PCIE_SLCSR_PCC		__BIT(10)      /* Power Controller Control */
9687eb99bdaSLionel Sambuc #define PCIE_SLCSR_EIC		__BIT(11)      /* Electromechanical Interlock*/
9697eb99bdaSLionel Sambuc #define PCIE_SLCSR_DLLSCE	__BIT(12)      /* DataLinkLayer State Changed*/
9707eb99bdaSLionel Sambuc #define PCIE_SLCSR_ABP		__BIT(0 + 16)  /* Attention Button Pressed */
9717eb99bdaSLionel Sambuc #define PCIE_SLCSR_PFD		__BIT(1 + 16)  /* Power Fault Detected */
9727eb99bdaSLionel Sambuc #define PCIE_SLCSR_MSC		__BIT(2 + 16)  /* MRL Sensor Changed */
9737eb99bdaSLionel Sambuc #define PCIE_SLCSR_PDC		__BIT(3 + 16)  /* Presence Detect Changed */
9747eb99bdaSLionel Sambuc #define PCIE_SLCSR_CC		__BIT(4 + 16)  /* Command Completed */
9757eb99bdaSLionel Sambuc #define PCIE_SLCSR_MS		__BIT(5 + 16)  /* MRL Sensor State */
9767eb99bdaSLionel Sambuc #define PCIE_SLCSR_PDS		__BIT(6 + 16)  /* Presence Detect State */
9777eb99bdaSLionel Sambuc #define PCIE_SLCSR_EIS		__BIT(7 + 16)  /* Electromechanical Interlock*/
9787eb99bdaSLionel Sambuc #define PCIE_SLCSR_LACS		__BIT(8 + 16)  /* Data Link Layer State Chg. */
9797eb99bdaSLionel Sambuc #define PCIE_RCR	0x1c	/* Root Control & Capabilities Reg. */
9807eb99bdaSLionel Sambuc #define PCIE_RCR_SERR_CER	__BIT(0)       /* SERR on Correctable Err. En*/
9817eb99bdaSLionel Sambuc #define PCIE_RCR_SERR_NFER	__BIT(1)       /* SERR on Non-Fatal Error En */
9827eb99bdaSLionel Sambuc #define PCIE_RCR_SERR_FER	__BIT(2)       /* SERR on Fatal Error Enable */
9837eb99bdaSLionel Sambuc #define PCIE_RCR_PME_IE		__BIT(3)       /* PME Interrupt Enable */
984*0a6a1f1dSLionel Sambuc #define PCIE_RCR_CRS_SVE	__BIT(4)       /* CRS Software Visibility En */
985*0a6a1f1dSLionel Sambuc #define PCIE_RCR_CRS_SV		__BIT(16)      /* CRS Software Visibility */
9867eb99bdaSLionel Sambuc #define PCIE_RSR	0x20	/* Root Status Register */
9877eb99bdaSLionel Sambuc #define PCIE_RSR_PME_REQESTER	__BITS(15, 0)  /* PME Requester ID */
9887eb99bdaSLionel Sambuc #define PCIE_RSR_PME_STAT	__BIT(16)      /* PME Status */
9897eb99bdaSLionel Sambuc #define PCIE_RSR_PME_PEND	__BIT(17)      /* PME Pending */
9907eb99bdaSLionel Sambuc #define PCIE_DCAP2	0x24	/* Device Capabilities 2 Register */
9917eb99bdaSLionel Sambuc #define PCIE_DCAP2_COMPT_RANGE	__BITS(3,0)    /* Compl. Timeout Ranges Supp */
9927eb99bdaSLionel Sambuc #define PCIE_DCAP2_COMPT_DIS	__BIT(4)       /* Compl. Timeout Disable Supp*/
9937eb99bdaSLionel Sambuc #define PCIE_DCAP2_ARI_FWD	__BIT(5)       /* ARI Forward Supported */
9947eb99bdaSLionel Sambuc #define PCIE_DCAP2_ATOM_ROUT	__BIT(6)       /* AtomicOp Routing Supported */
9957eb99bdaSLionel Sambuc #define PCIE_DCAP2_32ATOM	__BIT(7)       /* 32bit AtomicOp Compl. Supp */
9967eb99bdaSLionel Sambuc #define PCIE_DCAP2_64ATOM	__BIT(8)       /* 64bit AtomicOp Compl. Supp */
9977eb99bdaSLionel Sambuc #define PCIE_DCAP2_128CAS	__BIT(9)       /* 128bit Cas Completer Supp. */
9987eb99bdaSLionel Sambuc #define PCIE_DCAP2_NO_ROPR_PASS	__BIT(10)      /* No RO-enabled PR-PR Passng */
9997eb99bdaSLionel Sambuc #define PCIE_DCAP2_LTR_MEC	__BIT(11)      /* LTR Mechanism Supported */
10007eb99bdaSLionel Sambuc #define PCIE_DCAP2_TPH_COMP	__BITS(13, 12) /* TPH Completer Supported */
10017eb99bdaSLionel Sambuc #define PCIE_DCAP2_OBFF		__BITS(19, 18) /* OBPF */
10027eb99bdaSLionel Sambuc #define PCIE_DCAP2_EXTFMT_FLD	__BIT(20)      /* Extended Fmt Field Support */
10037eb99bdaSLionel Sambuc #define PCIE_DCAP2_EETLP_PREF	__BIT(21)      /* End-End TLP Prefix Support */
10047eb99bdaSLionel Sambuc #define PCIE_DCAP2_MAX_EETLP	__BITS(23, 22) /* Max End-End TLP Prefix Sup */
10057eb99bdaSLionel Sambuc #define PCIE_DCSR2	0x28	/* Device Control & Status 2 Register */
10067eb99bdaSLionel Sambuc #define PCIE_DCSR2_COMPT_VAL	__BITS(3, 0)   /* Completion Timeout Value */
10077eb99bdaSLionel Sambuc #define PCIE_DCSR2_COMPT_DIS	__BIT(4)       /* Completion Timeout Disable */
10087eb99bdaSLionel Sambuc #define PCIE_DCSR2_ARI_FWD	__BIT(5)       /* ARI Forwarding Enable */
10097eb99bdaSLionel Sambuc #define PCIE_DCSR2_ATOM_REQ	__BIT(6)       /* AtomicOp Requester Enable */
10107eb99bdaSLionel Sambuc #define PCIE_DCSR2_ATOM_EBLK	__BIT(7)       /* AtomicOp Egress Blocking */
10117eb99bdaSLionel Sambuc #define PCIE_DCSR2_IDO_REQ	__BIT(8)       /* IDO Request Enable */
10127eb99bdaSLionel Sambuc #define PCIE_DCSR2_IDO_COMP	__BIT(9)       /* IDO Completion Enable */
10137eb99bdaSLionel Sambuc #define PCIE_DCSR2_LTR_MEC	__BIT(10)      /* LTR Mechanism Enable */
10147eb99bdaSLionel Sambuc #define PCIE_DCSR2_OBFF_EN	__BITS(14, 13) /* OBPF Enable */
10157eb99bdaSLionel Sambuc #define PCIE_DCSR2_EETLP	__BIT(15)      /* End-End TLP Prefix Blcking */
10167eb99bdaSLionel Sambuc #define PCIE_LCAP2	0x2c	/* Link Capabilities 2 Register */
10177eb99bdaSLionel Sambuc #define PCIE_LCAP2_SUP_LNKSV	__BITS(7, 1)   /* Supported Link Speeds Vect */
10187eb99bdaSLionel Sambuc #define PCIE_LCAP2_CROSSLNK	__BIT(8)       /* Crosslink Supported */
10197eb99bdaSLionel Sambuc #define PCIE_LCSR2	0x30	/* Link Control & Status 2 Register */
10207eb99bdaSLionel Sambuc #define PCIE_LCSR2_TGT_LSPEED	__BITS(3, 0)   /* Target Link Speed */
10217eb99bdaSLionel Sambuc #define PCIE_LCSR2_ENT_COMPL	__BIT(4)       /* Enter Compliance */
10227eb99bdaSLionel Sambuc #define PCIE_LCSR2_HW_AS_DIS	__BIT(5)       /* HW Autonomous Speed Disabl */
10237eb99bdaSLionel Sambuc #define PCIE_LCSR2_SEL_DEEMP	__BIT(6)       /* Selectable De-emphasis */
10247eb99bdaSLionel Sambuc #define PCIE_LCSR2_TX_MARGIN	__BITS(9, 7)   /* Transmit Margin */
10257eb99bdaSLionel Sambuc #define PCIE_LCSR2_EN_MCOMP	__BIT(10)      /* Enter Modified Compliance */
10267eb99bdaSLionel Sambuc #define PCIE_LCSR2_COMP_SOS	__BIT(11)      /* Compliance SOS */
10277eb99bdaSLionel Sambuc #define PCIE_LCSR2_COMP_DEEMP	__BITS(15, 12) /* Compliance Present/De-emph */
10287eb99bdaSLionel Sambuc #define PCIE_LCSR2_DEEMP_LVL	__BIT(0 + 16)  /* Current De-emphasis Level */
10297eb99bdaSLionel Sambuc #define PCIE_LCSR2_EQ_COMPL	__BIT(1 + 16)  /* Equalization Complete */
10307eb99bdaSLionel Sambuc #define PCIE_LCSR2_EQP1_SUC	__BIT(2 + 16)  /* Equaliz Phase 1 Successful */
10317eb99bdaSLionel Sambuc #define PCIE_LCSR2_EQP2_SUC	__BIT(3 + 16)  /* Equaliz Phase 2 Successful */
10327eb99bdaSLionel Sambuc #define PCIE_LCSR2_EQP3_SUC	__BIT(4 + 16)  /* Equaliz Phase 3 Successful */
10337eb99bdaSLionel Sambuc #define PCIE_LCSR2_LNKEQ_REQ	__BIT(5 + 16)  /* Link Equalization Request */
10347eb99bdaSLionel Sambuc 
10357eb99bdaSLionel Sambuc #define PCIE_SLCAP2	0x34	/* Slot Capabilities 2 Register */
10367eb99bdaSLionel Sambuc #define PCIE_SLCSR2	0x38	/* Slot Control & Status 2 Register */
10377eb99bdaSLionel Sambuc 
10387eb99bdaSLionel Sambuc /*
1039*0a6a1f1dSLionel Sambuc  * Capability ID: 0x11
1040*0a6a1f1dSLionel Sambuc  * MSIX
1041*0a6a1f1dSLionel Sambuc  */
1042*0a6a1f1dSLionel Sambuc 
1043*0a6a1f1dSLionel Sambuc #define PCI_MSIX_CTL	0x00
1044*0a6a1f1dSLionel Sambuc #define	PCI_MSIX_CTL_ENABLE	0x80000000
1045*0a6a1f1dSLionel Sambuc #define	PCI_MSIX_CTL_FUNCMASK	0x40000000
1046*0a6a1f1dSLionel Sambuc #define	PCI_MSIX_CTL_TBLSIZE_MASK 0x07ff0000
1047*0a6a1f1dSLionel Sambuc #define	PCI_MSIX_CTL_TBLSIZE_SHIFT 16
1048*0a6a1f1dSLionel Sambuc #define	PCI_MSIX_CTL_TBLSIZE(ofs)	((((ofs) & PCI_MSIX_CTL_TBLSIZE_MASK) \
1049*0a6a1f1dSLionel Sambuc 		>> PCI_MSIX_CTL_TBLSIZE_SHIFT) + 1)
1050*0a6a1f1dSLionel Sambuc /*
1051*0a6a1f1dSLionel Sambuc  * 2nd DWORD is the Table Offset
1052*0a6a1f1dSLionel Sambuc  */
1053*0a6a1f1dSLionel Sambuc #define	PCI_MSIX_TBLOFFSET	0x04
1054*0a6a1f1dSLionel Sambuc #define	PCI_MSIX_TBLOFFSET_MASK	0xfffffff8
1055*0a6a1f1dSLionel Sambuc #define	PCI_MSIX_TBLBIR_MASK	0x00000007
1056*0a6a1f1dSLionel Sambuc /*
1057*0a6a1f1dSLionel Sambuc  * 3rd DWORD is the Pending Bitmap Array Offset
1058*0a6a1f1dSLionel Sambuc  */
1059*0a6a1f1dSLionel Sambuc #define	PCI_MSIX_PBAOFFSET	0x08
1060*0a6a1f1dSLionel Sambuc #define	PCI_MSIX_PBAOFFSET_MASK	0xfffffff8
1061*0a6a1f1dSLionel Sambuc #define	PCI_MSIX_PBABIR_MASK	0x00000007
1062*0a6a1f1dSLionel Sambuc 
1063*0a6a1f1dSLionel Sambuc #define PCI_MSIX_TABLE_ENTRY_SIZE	16
1064*0a6a1f1dSLionel Sambuc #define PCI_MSIX_TABLE_ENTRY_ADDR_LO	0x0
1065*0a6a1f1dSLionel Sambuc #define PCI_MSIX_TABLE_ENTRY_ADDR_HI	0x4
1066*0a6a1f1dSLionel Sambuc #define PCI_MSIX_TABLE_ENTRY_DATA	0x8
1067*0a6a1f1dSLionel Sambuc #define PCI_MSIX_TABLE_ENTRY_VECTCTL	0xc
1068*0a6a1f1dSLionel Sambuc struct pci_msix_table_entry {
1069*0a6a1f1dSLionel Sambuc 	uint32_t pci_msix_addr_lo;
1070*0a6a1f1dSLionel Sambuc 	uint32_t pci_msix_addr_hi;
1071*0a6a1f1dSLionel Sambuc 	uint32_t pci_msix_value;
1072*0a6a1f1dSLionel Sambuc 	uint32_t pci_msix_vector_control;
1073*0a6a1f1dSLionel Sambuc };
1074*0a6a1f1dSLionel Sambuc #define	PCI_MSIX_VECTCTL_HWMASK_MASK	0x00000001
1075*0a6a1f1dSLionel Sambuc 
1076*0a6a1f1dSLionel Sambuc  /* Max number of MSI-X vectors. See PCI-SIG specification. */
1077*0a6a1f1dSLionel Sambuc #define	PCI_MSIX_MAX_VECTORS		2048
1078*0a6a1f1dSLionel Sambuc 
1079*0a6a1f1dSLionel Sambuc /*
1080*0a6a1f1dSLionel Sambuc  * Capability ID: 0x12
1081*0a6a1f1dSLionel Sambuc  * SATA
1082*0a6a1f1dSLionel Sambuc  */
1083*0a6a1f1dSLionel Sambuc 
1084*0a6a1f1dSLionel Sambuc /*
1085*0a6a1f1dSLionel Sambuc  * Capability ID: 0x13
1086*0a6a1f1dSLionel Sambuc  * Advanced Feature
1087*0a6a1f1dSLionel Sambuc  */
1088*0a6a1f1dSLionel Sambuc #define PCI_AFCAPR		0x00	/* Capabilities */
1089*0a6a1f1dSLionel Sambuc #define	PCI_AFCAPR_MASK		__BITS(31, 24)
1090*0a6a1f1dSLionel Sambuc #define	PCI_AF_TP_CAP		__BIT(24)	/* Transaction Pending */
1091*0a6a1f1dSLionel Sambuc #define	PCI_AF_FLR_CAP		__BIT(25)	/* Function Level Reset */
1092*0a6a1f1dSLionel Sambuc #define PCI_AFCSR		0x04	/* Control & Status register */
1093*0a6a1f1dSLionel Sambuc #define PCI_AFCR_INITIATE_FLR	__BIT(0)	/* Initiate Function LVL RST */
1094*0a6a1f1dSLionel Sambuc #define PCI_AFSR_TP		__BIT(8)	/* Transaction Pending */
1095*0a6a1f1dSLionel Sambuc 
1096*0a6a1f1dSLionel Sambuc 
1097*0a6a1f1dSLionel Sambuc /*
10987eb99bdaSLionel Sambuc  * Interrupt Configuration Register; contains interrupt pin and line.
10997eb99bdaSLionel Sambuc  */
11007eb99bdaSLionel Sambuc #define	PCI_INTERRUPT_REG		0x3c
11017eb99bdaSLionel Sambuc 
11027eb99bdaSLionel Sambuc typedef u_int8_t pci_intr_latency_t;
11037eb99bdaSLionel Sambuc typedef u_int8_t pci_intr_grant_t;
11047eb99bdaSLionel Sambuc typedef u_int8_t pci_intr_pin_t;
11057eb99bdaSLionel Sambuc typedef u_int8_t pci_intr_line_t;
11067eb99bdaSLionel Sambuc 
11077eb99bdaSLionel Sambuc #define PCI_MAX_LAT_SHIFT			24
11087eb99bdaSLionel Sambuc #define	PCI_MAX_LAT_MASK			0xff
11097eb99bdaSLionel Sambuc #define	PCI_MAX_LAT(icr) \
11107eb99bdaSLionel Sambuc 	    (((icr) >> PCI_MAX_LAT_SHIFT) & PCI_MAX_LAT_MASK)
11117eb99bdaSLionel Sambuc 
11127eb99bdaSLionel Sambuc #define PCI_MIN_GNT_SHIFT			16
11137eb99bdaSLionel Sambuc #define	PCI_MIN_GNT_MASK			0xff
11147eb99bdaSLionel Sambuc #define	PCI_MIN_GNT(icr) \
11157eb99bdaSLionel Sambuc 	    (((icr) >> PCI_MIN_GNT_SHIFT) & PCI_MIN_GNT_MASK)
11167eb99bdaSLionel Sambuc 
11177eb99bdaSLionel Sambuc #define	PCI_INTERRUPT_GRANT_SHIFT		24
11187eb99bdaSLionel Sambuc #define	PCI_INTERRUPT_GRANT_MASK		0xff
11197eb99bdaSLionel Sambuc #define	PCI_INTERRUPT_GRANT(icr) \
11207eb99bdaSLionel Sambuc 	    (((icr) >> PCI_INTERRUPT_GRANT_SHIFT) & PCI_INTERRUPT_GRANT_MASK)
11217eb99bdaSLionel Sambuc 
11227eb99bdaSLionel Sambuc #define	PCI_INTERRUPT_LATENCY_SHIFT		16
11237eb99bdaSLionel Sambuc #define	PCI_INTERRUPT_LATENCY_MASK		0xff
11247eb99bdaSLionel Sambuc #define	PCI_INTERRUPT_LATENCY(icr) \
11257eb99bdaSLionel Sambuc 	    (((icr) >> PCI_INTERRUPT_LATENCY_SHIFT) & PCI_INTERRUPT_LATENCY_MASK)
11267eb99bdaSLionel Sambuc 
11277eb99bdaSLionel Sambuc #define	PCI_INTERRUPT_PIN_SHIFT			8
11287eb99bdaSLionel Sambuc #define	PCI_INTERRUPT_PIN_MASK			0xff
11297eb99bdaSLionel Sambuc #define	PCI_INTERRUPT_PIN(icr) \
11307eb99bdaSLionel Sambuc 	    (((icr) >> PCI_INTERRUPT_PIN_SHIFT) & PCI_INTERRUPT_PIN_MASK)
11317eb99bdaSLionel Sambuc 
11327eb99bdaSLionel Sambuc #define	PCI_INTERRUPT_LINE_SHIFT		0
11337eb99bdaSLionel Sambuc #define	PCI_INTERRUPT_LINE_MASK			0xff
11347eb99bdaSLionel Sambuc #define	PCI_INTERRUPT_LINE(icr) \
11357eb99bdaSLionel Sambuc 	    (((icr) >> PCI_INTERRUPT_LINE_SHIFT) & PCI_INTERRUPT_LINE_MASK)
11367eb99bdaSLionel Sambuc 
11377eb99bdaSLionel Sambuc #define PCI_INTERRUPT_CODE(lat,gnt,pin,line)		\
11387eb99bdaSLionel Sambuc 	  ((((lat)&PCI_INTERRUPT_LATENCY_MASK)<<PCI_INTERRUPT_LATENCY_SHIFT)| \
11397eb99bdaSLionel Sambuc 	   (((gnt)&PCI_INTERRUPT_GRANT_MASK)  <<PCI_INTERRUPT_GRANT_SHIFT)  | \
11407eb99bdaSLionel Sambuc 	   (((pin)&PCI_INTERRUPT_PIN_MASK)    <<PCI_INTERRUPT_PIN_SHIFT)    | \
11417eb99bdaSLionel Sambuc 	   (((line)&PCI_INTERRUPT_LINE_MASK)  <<PCI_INTERRUPT_LINE_SHIFT))
11427eb99bdaSLionel Sambuc 
11437eb99bdaSLionel Sambuc #define	PCI_INTERRUPT_PIN_NONE			0x00
11447eb99bdaSLionel Sambuc #define	PCI_INTERRUPT_PIN_A			0x01
11457eb99bdaSLionel Sambuc #define	PCI_INTERRUPT_PIN_B			0x02
11467eb99bdaSLionel Sambuc #define	PCI_INTERRUPT_PIN_C			0x03
11477eb99bdaSLionel Sambuc #define	PCI_INTERRUPT_PIN_D			0x04
11487eb99bdaSLionel Sambuc #define	PCI_INTERRUPT_PIN_MAX			0x04
11497eb99bdaSLionel Sambuc 
11507eb99bdaSLionel Sambuc /* Header Type 1 (Bridge) configuration registers */
11517eb99bdaSLionel Sambuc #define PCI_BRIDGE_BUS_REG		0x18
1152*0a6a1f1dSLionel Sambuc #define   PCI_BRIDGE_BUS_EACH_MASK		0xff
11537eb99bdaSLionel Sambuc #define   PCI_BRIDGE_BUS_PRIMARY_SHIFT		0
11547eb99bdaSLionel Sambuc #define   PCI_BRIDGE_BUS_SECONDARY_SHIFT	8
11557eb99bdaSLionel Sambuc #define   PCI_BRIDGE_BUS_SUBORDINATE_SHIFT	16
1156*0a6a1f1dSLionel Sambuc #define   PCI_BRIDGE_BUS_SEC_LATTIMER_SHIFT	24
1157*0a6a1f1dSLionel Sambuc #define   PCI_BRIDGE_BUS_PRIMARY(reg) \
1158*0a6a1f1dSLionel Sambuc 	(((reg) >> PCI_BRIDGE_BUS_PRIMARY_SHIFT) & PCI_BRIDGE_BUS_EACH_MASK)
1159*0a6a1f1dSLionel Sambuc #define   PCI_BRIDGE_BUS_SECONDARY(reg) \
1160*0a6a1f1dSLionel Sambuc 	(((reg) >> PCI_BRIDGE_BUS_SECONDARY_SHIFT) & PCI_BRIDGE_BUS_EACH_MASK)
1161*0a6a1f1dSLionel Sambuc #define   PCI_BRIDGE_BUS_SUBORDINATE(reg) \
1162*0a6a1f1dSLionel Sambuc 	(((reg) >> PCI_BRIDGE_BUS_SUBORDINATE_SHIFT) &PCI_BRIDGE_BUS_EACH_MASK)
1163*0a6a1f1dSLionel Sambuc #define   PCI_BRIDGE_BUS_SEC_LATTIMER(reg) \
1164*0a6a1f1dSLionel Sambuc 	(((reg) >> PCI_BRIDGE_BUS_SEC_LATTIMER_SHIFT)&PCI_BRIDGE_BUS_EACH_MASK)
1165*0a6a1f1dSLionel Sambuc 
11667eb99bdaSLionel Sambuc 
11677eb99bdaSLionel Sambuc #define PCI_BRIDGE_STATIO_REG		0x1C
11687eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_STATIO_IOBASE_SHIFT	0
11697eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_STATIO_IOLIMIT_SHIFT	8
11707eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_STATIO_STATUS_SHIFT	16
11717eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_STATIO_IOBASE_MASK		0xf0
11727eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_STATIO_IOLIMIT_MASK	0xf0
11737eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_STATIO_STATUS_MASK		0xffff
11747eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_IO_32BITS(reg)		(((reg) & 0xf) == 1)
11757eb99bdaSLionel Sambuc 
11767eb99bdaSLionel Sambuc #define PCI_BRIDGE_MEMORY_REG		0x20
11777eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_MEMORY_BASE_SHIFT		4
11787eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_MEMORY_LIMIT_SHIFT		20
11797eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_MEMORY_BASE_MASK		0x0fff
11807eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_MEMORY_LIMIT_MASK		0x0fff
11817eb99bdaSLionel Sambuc 
11827eb99bdaSLionel Sambuc #define PCI_BRIDGE_PREFETCHMEM_REG	0x24
11837eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_PREFETCHMEM_BASE_SHIFT	4
11847eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_PREFETCHMEM_LIMIT_SHIFT	20
11857eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_PREFETCHMEM_BASE_MASK	0x0fff
11867eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_PREFETCHMEM_LIMIT_MASK	0x0fff
11877eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_PREFETCHMEM_64BITS(reg)	((reg) & 0xf)
11887eb99bdaSLionel Sambuc 
11897eb99bdaSLionel Sambuc #define PCI_BRIDGE_PREFETCHBASE32_REG	0x28
11907eb99bdaSLionel Sambuc #define PCI_BRIDGE_PREFETCHLIMIT32_REG	0x2C
11917eb99bdaSLionel Sambuc 
11927eb99bdaSLionel Sambuc #define PCI_BRIDGE_IOHIGH_REG		0x30
11937eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_IOHIGH_BASE_SHIFT		0
11947eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_IOHIGH_LIMIT_SHIFT		16
11957eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_IOHIGH_BASE_MASK		0xffff
11967eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_IOHIGH_LIMIT_MASK		0xffff
11977eb99bdaSLionel Sambuc 
11987eb99bdaSLionel Sambuc #define PCI_BRIDGE_CONTROL_REG		0x3C
11997eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_CONTROL_SHIFT		16
12007eb99bdaSLionel Sambuc #define	  PCI_BRIDGE_CONTROL_MASK		0xffff
12017eb99bdaSLionel Sambuc #define   PCI_BRIDGE_CONTROL_PERE		(1 <<  0)
12027eb99bdaSLionel Sambuc #define   PCI_BRIDGE_CONTROL_SERR		(1 <<  1)
12037eb99bdaSLionel Sambuc #define   PCI_BRIDGE_CONTROL_ISA		(1 <<  2)
12047eb99bdaSLionel Sambuc #define   PCI_BRIDGE_CONTROL_VGA		(1 <<  3)
12057eb99bdaSLionel Sambuc /* Reserved					(1 <<  4) */
12067eb99bdaSLionel Sambuc #define   PCI_BRIDGE_CONTROL_MABRT		(1 <<  5)
12077eb99bdaSLionel Sambuc #define   PCI_BRIDGE_CONTROL_SECBR		(1 <<  6)
12087eb99bdaSLionel Sambuc #define   PCI_BRIDGE_CONTROL_SECFASTB2B		(1 <<  7)
12097eb99bdaSLionel Sambuc #define   PCI_BRIDGE_CONTROL_PRI_DISC_TIMER	(1 <<  8)
12107eb99bdaSLionel Sambuc #define   PCI_BRIDGE_CONTROL_SEC_DISC_TIMER	(1 <<  9)
12117eb99bdaSLionel Sambuc #define   PCI_BRIDGE_CONTROL_DISC_TIMER_STAT	(1 << 10)
12127eb99bdaSLionel Sambuc #define   PCI_BRIDGE_CONTROL_DISC_TIMER_SERR	(1 << 11)
12137eb99bdaSLionel Sambuc /* Reserved					(1 << 12) - (1 << 15) */
12147eb99bdaSLionel Sambuc 
12157eb99bdaSLionel Sambuc /*
12167eb99bdaSLionel Sambuc  * Vital Product Data resource tags.
12177eb99bdaSLionel Sambuc  */
12187eb99bdaSLionel Sambuc struct pci_vpd_smallres {
12197eb99bdaSLionel Sambuc 	uint8_t		vpdres_byte0;		/* length of data + tag */
12207eb99bdaSLionel Sambuc 	/* Actual data. */
12217eb99bdaSLionel Sambuc } __packed;
12227eb99bdaSLionel Sambuc 
12237eb99bdaSLionel Sambuc struct pci_vpd_largeres {
12247eb99bdaSLionel Sambuc 	uint8_t		vpdres_byte0;
12257eb99bdaSLionel Sambuc 	uint8_t		vpdres_len_lsb;		/* length of data only */
12267eb99bdaSLionel Sambuc 	uint8_t		vpdres_len_msb;
12277eb99bdaSLionel Sambuc 	/* Actual data. */
12287eb99bdaSLionel Sambuc } __packed;
12297eb99bdaSLionel Sambuc 
12307eb99bdaSLionel Sambuc #define	PCI_VPDRES_ISLARGE(x)			((x) & 0x80)
12317eb99bdaSLionel Sambuc 
12327eb99bdaSLionel Sambuc #define	PCI_VPDRES_SMALL_LENGTH(x)		((x) & 0x7)
12337eb99bdaSLionel Sambuc #define	PCI_VPDRES_SMALL_NAME(x)		(((x) >> 3) & 0xf)
12347eb99bdaSLionel Sambuc 
12357eb99bdaSLionel Sambuc #define	PCI_VPDRES_LARGE_NAME(x)		((x) & 0x7f)
12367eb99bdaSLionel Sambuc 
12377eb99bdaSLionel Sambuc #define	PCI_VPDRES_TYPE_COMPATIBLE_DEVICE_ID	0x3	/* small */
12387eb99bdaSLionel Sambuc #define	PCI_VPDRES_TYPE_VENDOR_DEFINED		0xe	/* small */
12397eb99bdaSLionel Sambuc #define	PCI_VPDRES_TYPE_END_TAG			0xf	/* small */
12407eb99bdaSLionel Sambuc 
12417eb99bdaSLionel Sambuc #define	PCI_VPDRES_TYPE_IDENTIFIER_STRING	0x02	/* large */
12427eb99bdaSLionel Sambuc #define	PCI_VPDRES_TYPE_VPD			0x10	/* large */
12437eb99bdaSLionel Sambuc 
12447eb99bdaSLionel Sambuc struct pci_vpd {
12457eb99bdaSLionel Sambuc 	uint8_t		vpd_key0;
12467eb99bdaSLionel Sambuc 	uint8_t		vpd_key1;
12477eb99bdaSLionel Sambuc 	uint8_t		vpd_len;		/* length of data only */
12487eb99bdaSLionel Sambuc 	/* Actual data. */
12497eb99bdaSLionel Sambuc } __packed;
12507eb99bdaSLionel Sambuc 
12517eb99bdaSLionel Sambuc /*
12527eb99bdaSLionel Sambuc  * Recommended VPD fields:
12537eb99bdaSLionel Sambuc  *
12547eb99bdaSLionel Sambuc  *	PN		Part number of assembly
12557eb99bdaSLionel Sambuc  *	FN		FRU part number
12567eb99bdaSLionel Sambuc  *	EC		EC level of assembly
12577eb99bdaSLionel Sambuc  *	MN		Manufacture ID
12587eb99bdaSLionel Sambuc  *	SN		Serial Number
12597eb99bdaSLionel Sambuc  *
12607eb99bdaSLionel Sambuc  * Conditionally recommended VPD fields:
12617eb99bdaSLionel Sambuc  *
12627eb99bdaSLionel Sambuc  *	LI		Load ID
12637eb99bdaSLionel Sambuc  *	RL		ROM Level
12647eb99bdaSLionel Sambuc  *	RM		Alterable ROM Level
12657eb99bdaSLionel Sambuc  *	NA		Network Address
12667eb99bdaSLionel Sambuc  *	DD		Device Driver Level
12677eb99bdaSLionel Sambuc  *	DG		Diagnostic Level
12687eb99bdaSLionel Sambuc  *	LL		Loadable Microcode Level
12697eb99bdaSLionel Sambuc  *	VI		Vendor ID/Device ID
12707eb99bdaSLionel Sambuc  *	FU		Function Number
12717eb99bdaSLionel Sambuc  *	SI		Subsystem Vendor ID/Subsystem ID
12727eb99bdaSLionel Sambuc  *
12737eb99bdaSLionel Sambuc  * Additional VPD fields:
12747eb99bdaSLionel Sambuc  *
12757eb99bdaSLionel Sambuc  *	Z0-ZZ		User/Product Specific
12767eb99bdaSLionel Sambuc  */
12777eb99bdaSLionel Sambuc 
12787eb99bdaSLionel Sambuc /*
12797eb99bdaSLionel Sambuc  * PCI Expansion Rom
12807eb99bdaSLionel Sambuc  */
12817eb99bdaSLionel Sambuc 
12827eb99bdaSLionel Sambuc struct pci_rom_header {
12837eb99bdaSLionel Sambuc 	uint16_t		romh_magic;	/* 0xAA55 little endian */
12847eb99bdaSLionel Sambuc 	uint8_t			romh_reserved[22];
12857eb99bdaSLionel Sambuc 	uint16_t		romh_data_ptr;	/* pointer to pci_rom struct */
12867eb99bdaSLionel Sambuc } __packed;
12877eb99bdaSLionel Sambuc 
12887eb99bdaSLionel Sambuc #define	PCI_ROM_HEADER_MAGIC	0xAA55		/* little endian */
12897eb99bdaSLionel Sambuc 
12907eb99bdaSLionel Sambuc struct pci_rom {
12917eb99bdaSLionel Sambuc 	uint32_t		rom_signature;
12927eb99bdaSLionel Sambuc 	pci_vendor_id_t		rom_vendor;
12937eb99bdaSLionel Sambuc 	pci_product_id_t	rom_product;
12947eb99bdaSLionel Sambuc 	uint16_t		rom_vpd_ptr;	/* reserved in PCI 2.2 */
12957eb99bdaSLionel Sambuc 	uint16_t		rom_data_len;
12967eb99bdaSLionel Sambuc 	uint8_t			rom_data_rev;
12977eb99bdaSLionel Sambuc 	pci_interface_t		rom_interface;	/* the class reg is 24-bits */
12987eb99bdaSLionel Sambuc 	pci_subclass_t		rom_subclass;	/* in little endian */
12997eb99bdaSLionel Sambuc 	pci_class_t		rom_class;
13007eb99bdaSLionel Sambuc 	uint16_t		rom_len;	/* code length / 512 byte */
13017eb99bdaSLionel Sambuc 	uint16_t		rom_rev;	/* code revision level */
13027eb99bdaSLionel Sambuc 	uint8_t			rom_code_type;	/* type of code */
13037eb99bdaSLionel Sambuc 	uint8_t			rom_indicator;
13047eb99bdaSLionel Sambuc 	uint16_t		rom_reserved;
13057eb99bdaSLionel Sambuc 	/* Actual data. */
13067eb99bdaSLionel Sambuc } __packed;
13077eb99bdaSLionel Sambuc 
13087eb99bdaSLionel Sambuc #define	PCI_ROM_SIGNATURE	0x52494350	/* "PCIR", endian reversed */
13097eb99bdaSLionel Sambuc #define	PCI_ROM_CODE_TYPE_X86	0		/* Intel x86 BIOS */
13107eb99bdaSLionel Sambuc #define	PCI_ROM_CODE_TYPE_OFW	1		/* Open Firmware */
13117eb99bdaSLionel Sambuc #define	PCI_ROM_CODE_TYPE_HPPA	2		/* HP PA/RISC */
13127eb99bdaSLionel Sambuc #define	PCI_ROM_CODE_TYPE_EFI	3		/* EFI Image */
13137eb99bdaSLionel Sambuc 
13147eb99bdaSLionel Sambuc #define	PCI_ROM_INDICATOR_LAST	0x80
13157eb99bdaSLionel Sambuc 
13167eb99bdaSLionel Sambuc /*
13177eb99bdaSLionel Sambuc  * Threshold below which 32bit PCI DMA needs bouncing.
13187eb99bdaSLionel Sambuc  */
13197eb99bdaSLionel Sambuc #define PCI32_DMA_BOUNCE_THRESHOLD	0x100000000ULL
13207eb99bdaSLionel Sambuc 
13217eb99bdaSLionel Sambuc /*
1322*0a6a1f1dSLionel Sambuc  * PCI-X 2.0/ PCI-express Extended Capability List
13237eb99bdaSLionel Sambuc  */
13247eb99bdaSLionel Sambuc 
13257eb99bdaSLionel Sambuc #define	PCI_EXTCAPLIST_BASE		0x100
13267eb99bdaSLionel Sambuc 
13277eb99bdaSLionel Sambuc #define	PCI_EXTCAPLIST_CAP(ecr)		((ecr) & 0xffff)
13287eb99bdaSLionel Sambuc #define	PCI_EXTCAPLIST_VERSION(ecr)	(((ecr) >> 16) & 0xf)
13297eb99bdaSLionel Sambuc #define	PCI_EXTCAPLIST_NEXT(ecr)	(((ecr) >> 20) & 0xfff)
13307eb99bdaSLionel Sambuc 
1331*0a6a1f1dSLionel Sambuc /* Extended Capability Identification Numbers */
1332*0a6a1f1dSLionel Sambuc 
1333*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_AER		0x0001	/* Advanced Error Reporting */
1334*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_VC		0x0002	/* Virtual Channel if MFVC Ext Cap not set */
1335*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_SERNUM	0x0003	/* Device Serial Number */
1336*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_PWRBDGT	0x0004	/* Power Budgeting */
1337*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_RCLINK_DCL	0x0005	/* Root Complex Link Declaration */
1338*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_RCLINK_CTL	0x0006	/* Root Complex Internal Link Control */
1339*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_RCEC_ASSOC	0x0007	/* Root Complex Event Collector Association */
1340*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_MFVC		0x0008	/* Multi-Function Virtual Channel */
1341*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_VC2		0x0009	/* Virtual Channel if MFVC Ext Cap set */
1342*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_RCRB		0x000a	/* RCRB Header */
1343*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_VENDOR	0x000b	/* Vendor Unique */
1344*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_CAC		0x000c	/* Configuration Access Correction -- obsolete */
1345*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_ACS		0x000d	/* Access Control Services */
1346*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_ARI		0x000e	/* Alternative Routing-ID Interpretation */
1347*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_ATS		0x000f	/* Address Translation Services */
1348*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_SRIOV	0x0010	/* Single Root IO Virtualization */
1349*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_MRIOV	0x0011	/* Multiple Root IO Virtualization */
1350*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_MULTICAST	0x0012	/* Multicast */
1351*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_PAGE_REQ	0x0013	/* Page Request */
1352*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_AMD		0x0014	/* Reserved for AMD */
1353*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_RESIZE_BAR	0x0015	/* Resizable BAR */
1354*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_DPA		0x0016	/* Dynamic Power Allocation */
1355*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_TPH_REQ	0x0017	/* TPH Requester */
1356*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_LTR		0x0018	/* Latency Tolerance Reporting */
1357*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_SEC_PCIE	0x0019	/* Secondary PCI Express */
1358*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_PMUX		0x001a	/* Protocol Multiplexing */
1359*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_PASID	0x001b	/* Process Address Space ID */
1360*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_LN_REQ	0x001c	/* LN Requester */
1361*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_DPC		0x001d	/* Downstream Port Containment */
1362*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_L1PM		0x001e	/* L1 PM Substates */
1363*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_PTM		0x001f	/* Precision Time Management */
1364*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_MPCIE	0x0020	/* M-PCIe */
1365*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_FRSQ		0x0021	/* Function Reading Status Queueing */
1366*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_RTR		0x0022	/* Readiness Time Reporting */
1367*0a6a1f1dSLionel Sambuc #define	PCI_EXTCAP_DESIGVNDSP	0x0023	/* Designated Vendor-Specific */
1368*0a6a1f1dSLionel Sambuc 
1369*0a6a1f1dSLionel Sambuc /*
1370*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x0001
1371*0a6a1f1dSLionel Sambuc  * Advanced Error Reporting
1372*0a6a1f1dSLionel Sambuc  */
1373*0a6a1f1dSLionel Sambuc #define	PCI_AER_UC_STATUS	0x04	/* Uncorrectable Error Status Register */
1374*0a6a1f1dSLionel Sambuc #define	  PCI_AER_UC_UNDEFINED			__BIT(0)
1375*0a6a1f1dSLionel Sambuc #define	  PCI_AER_UC_DL_PROTOCOL_ERROR		__BIT(4)
1376*0a6a1f1dSLionel Sambuc #define	  PCI_AER_UC_SURPRISE_DOWN_ERROR	__BIT(5)
1377*0a6a1f1dSLionel Sambuc #define	  PCI_AER_UC_POISONED_TLP		__BIT(12)
1378*0a6a1f1dSLionel Sambuc #define	  PCI_AER_UC_FC_PROTOCOL_ERROR		__BIT(13)
1379*0a6a1f1dSLionel Sambuc #define	  PCI_AER_UC_COMPLETION_TIMEOUT		__BIT(14)
1380*0a6a1f1dSLionel Sambuc #define	  PCI_AER_UC_COMPLETER_ABORT		__BIT(15)
1381*0a6a1f1dSLionel Sambuc #define	  PCI_AER_UC_UNEXPECTED_COMPLETION	__BIT(16)
1382*0a6a1f1dSLionel Sambuc #define	  PCI_AER_UC_RECEIVER_OVERFLOW		__BIT(17)
1383*0a6a1f1dSLionel Sambuc #define	  PCI_AER_UC_MALFORMED_TLP		__BIT(18)
1384*0a6a1f1dSLionel Sambuc #define	  PCI_AER_UC_ECRC_ERROR			__BIT(19)
1385*0a6a1f1dSLionel Sambuc #define	  PCI_AER_UC_UNSUPPORTED_REQUEST_ERROR	__BIT(20)
1386*0a6a1f1dSLionel Sambuc #define	  PCI_AER_UC_ACS_VIOLATION		__BIT(21)
1387*0a6a1f1dSLionel Sambuc #define	  PCI_AER_UC_INTERNAL_ERROR		__BIT(22)
1388*0a6a1f1dSLionel Sambuc #define	  PCI_AER_UC_MC_BLOCKED_TLP		__BIT(23)
1389*0a6a1f1dSLionel Sambuc #define	  PCI_AER_UC_ATOMIC_OP_EGRESS_BLOCKED	__BIT(24)
1390*0a6a1f1dSLionel Sambuc #define	  PCI_AER_UC_TLP_PREFIX_BLOCKED_ERROR	__BIT(25)
1391*0a6a1f1dSLionel Sambuc #define	PCI_AER_UC_MASK		0x08	/* Uncorrectable Error Mask Register */
1392*0a6a1f1dSLionel Sambuc 	  /* Shares bits with UC_STATUS */
1393*0a6a1f1dSLionel Sambuc #define	PCI_AER_UC_SEVERITY	0x0c	/* Uncorrectable Error Severity Register */
1394*0a6a1f1dSLionel Sambuc 	  /* Shares bits with UC_STATUS */
1395*0a6a1f1dSLionel Sambuc #define	PCI_AER_COR_STATUS	0x10	/* Correctable Error Status Register */
1396*0a6a1f1dSLionel Sambuc #define	  PCI_AER_COR_RECEIVER_ERROR		__BIT(0)
1397*0a6a1f1dSLionel Sambuc #define	  PCI_AER_COR_BAD_TLP			__BIT(6)
1398*0a6a1f1dSLionel Sambuc #define	  PCI_AER_COR_BAD_DLLP			__BIT(7)
1399*0a6a1f1dSLionel Sambuc #define	  PCI_AER_COR_REPLAY_NUM_ROLLOVER	__BIT(8)
1400*0a6a1f1dSLionel Sambuc #define	  PCI_AER_COR_REPLAY_TIMER_TIMEOUT	__BIT(12)
1401*0a6a1f1dSLionel Sambuc #define	  PCI_AER_COR_ADVISORY_NF_ERROR		__BIT(13)
1402*0a6a1f1dSLionel Sambuc #define	  PCI_AER_COR_INTERNAL_ERROR		__BIT(14)
1403*0a6a1f1dSLionel Sambuc #define	  PCI_AER_COR_HEADER_LOG_OVERFLOW	__BIT(15)
1404*0a6a1f1dSLionel Sambuc #define	PCI_AER_COR_MASK	0x14	/* Correctable Error Mask Register */
1405*0a6a1f1dSLionel Sambuc 	  /* Shares bits with COR_STATUS */
1406*0a6a1f1dSLionel Sambuc #define	PCI_AER_CAP_CONTROL	0x18	/* Advanced Error Capabilities and Control Register */
1407*0a6a1f1dSLionel Sambuc #define	  PCI_AER_FIRST_ERROR_PTR		__BITS(4, 0)
1408*0a6a1f1dSLionel Sambuc #define	  PCI_AER_FIRST_ERROR_PTR_S		0
1409*0a6a1f1dSLionel Sambuc #define	  PCI_AER_FIRST_ERROR_PTR_M		0x1f
1410*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ECRC_GEN_CAPABLE		__BIT(5)
1411*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ECRC_GEN_ENABLE		__BIT(6)
1412*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ECRC_CHECK_CAPABLE		__BIT(7)
1413*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ECRC_CHECK_ENABLE		__BIT(8)
1414*0a6a1f1dSLionel Sambuc #define	  PCI_AER_MULT_HDR_CAPABLE		__BIT(9)
1415*0a6a1f1dSLionel Sambuc #define	  PCI_AER_MULT_HDR_ENABLE		__BIT(10)
1416*0a6a1f1dSLionel Sambuc #define	  PCI_AER_TLP_PREFIX_LOG_PRESENT	__BIT(11)
1417*0a6a1f1dSLionel Sambuc #define	PCI_AER_HEADER_LOG	0x1c	/* Header Log Register */
1418*0a6a1f1dSLionel Sambuc #define	PCI_AER_ROOTERR_CMD	0x2c	/* Root Error Command Register */
1419*0a6a1f1dSLionel Sambuc 					/* Only for root complex ports */
1420*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ROOTERR_COR_ENABLE		__BIT(0)
1421*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ROOTERR_NF_ENABLE		__BIT(1)
1422*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ROOTERR_F_ENABLE		__BIT(2)
1423*0a6a1f1dSLionel Sambuc #define	PCI_AER_ROOTERR_STATUS	0x30	/* Root Error Status Register */
1424*0a6a1f1dSLionel Sambuc 					/* Only for root complex ports */
1425*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ROOTERR_COR_ERR		__BIT(0)
1426*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ROOTERR_MULTI_COR_ERR		__BIT(1)
1427*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ROOTERR_UC_ERR		__BIT(2)
1428*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ROOTERR_MULTI_UC_ERR		__BIT(3)
1429*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ROOTERR_FIRST_UC_FATAL	__BIT(4)
1430*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ROOTERR_NF_ERR		__BIT(5)
1431*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ROOTERR_F_ERR			__BIT(6)
1432*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ROOTERR_INT_MESSAGE		__BITS(31, 27)
1433*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ROOTERR_INT_MESSAGE_S		27
1434*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ROOTERR_INT_MESSAGE_M		0x1f
1435*0a6a1f1dSLionel Sambuc #define	PCI_AER_ERRSRC_ID	0x34	/* Error Source Identification Register */
1436*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ERRSRC_ID_ERR_COR		__BITS(15, 0)
1437*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ERRSRC_ID_ERR_COR_S		0
1438*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ERRSRC_ID_ERR_COR_M		0xffff
1439*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ERRSRC_ID_ERR_UC		__BITS(31, 16)
1440*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ERRSRC_ID_ERR_UC_S		16
1441*0a6a1f1dSLionel Sambuc #define	  PCI_AER_ERRSRC_ID_ERR_UC_M		0xffff
1442*0a6a1f1dSLionel Sambuc 					/* Only for root complex ports */
1443*0a6a1f1dSLionel Sambuc #define	PCI_AER_TLP_PREFIX_LOG	0x38	/*TLP Prefix Log Register */
1444*0a6a1f1dSLionel Sambuc 					/* Only for TLP prefix functions */
1445*0a6a1f1dSLionel Sambuc 
1446*0a6a1f1dSLionel Sambuc /*
1447*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x0002, 0x0009
1448*0a6a1f1dSLionel Sambuc  * Virtual Channel
1449*0a6a1f1dSLionel Sambuc  */
1450*0a6a1f1dSLionel Sambuc #define	PCI_VC_CAP1		0x04	/* Port VC Capability Register 1 */
1451*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP1_EXT_COUNT			__BITS(2, 0)
1452*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP1_EXT_COUNT_S		0
1453*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP1_EXT_COUNT_M		0x7
1454*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP1_LOWPRI_EXT_COUNT		__BITS(6, 4)
1455*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP1_LOWPRI_EXT_COUNT_S	4
1456*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP1_LOWPRI_EXT_COUNT_M	0x7
1457*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP1_REFCLK			__BITS(9, 8)
1458*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP1_REFCLK_S			8
1459*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP1_REFCLK_M			0x3
1460*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP1_REFCLK_100NS		0x0
1461*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP1_PORT_ARB_TABLE_SIZE	__BITS(11, 10)
1462*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP1_PORT_ARB_TABLE_SIZE_S	10
1463*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP1_PORT_ARB_TABLE_SIZE_M	0x3
1464*0a6a1f1dSLionel Sambuc #define	PCI_VC_CAP2		0x08	/* Port VC Capability Register 2 */
1465*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP2_ARB_CAP_HW_FIXED_SCHEME	__BIT(0)
1466*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP2_ARB_CAP_WRR_32		__BIT(1)
1467*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP2_ARB_CAP_WRR_64		__BIT(2)
1468*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP2_ARB_CAP_WRR_128		__BIT(3)
1469*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP2_ARB_TABLE_OFFSET		__BITS(31, 24)
1470*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP2_ARB_TABLE_OFFSET_S	24
1471*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CAP2_ARB_TABLE_OFFSET_M	0xff
1472*0a6a1f1dSLionel Sambuc #define	PCI_VC_CONTROL		0x0c	/* Port VC Control Register (16bit) */
1473*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CONTROL_LOAD_VC_ARB_TABLE	__BIT(0)
1474*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CONTROL_VC_ARB_SELECT		__BITS(3, 1)
1475*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CONTROL_VC_ARB_SELECT_S	1
1476*0a6a1f1dSLionel Sambuc #define	  PCI_VC_CONTROL_VC_ARB_SELECT_M	0x7
1477*0a6a1f1dSLionel Sambuc #define	PCI_VC_STATUS		0x0e	/* Port VC Status Register (16bit) */
1478*0a6a1f1dSLionel Sambuc #define	  PCI_VC_STATUS_LOAD_VC_ARB_TABLE	__BIT(0)
1479*0a6a1f1dSLionel Sambuc #define	PCI_VC_RESOURCE_CAP(n)	(0x10 + ((n) * 0x0c))	/* VC Resource Capability Register */
1480*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CAP_PORT_ARB_CAP_HW_FIXED_SCHEME __BIT(0)
1481*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CAP_PORT_ARB_CAP_WRR_32          __BIT(1)
1482*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CAP_PORT_ARB_CAP_WRR_64          __BIT(2)
1483*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CAP_PORT_ARB_CAP_WRR_128         __BIT(3)
1484*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CAP_PORT_ARB_CAP_TWRR_128        __BIT(4)
1485*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CAP_PORT_ARB_CAP_WRR_256         __BIT(5)
1486*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CAP_ADV_PKT_SWITCH	__BIT(14)
1487*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CAP_REJCT_SNOOP_TRANS	__BIT(15)
1488*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CAP_MAX_TIME_SLOTS	__BITS(22, 16)
1489*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CAP_MAX_TIME_SLOTS_S	16
1490*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CAP_MAX_TIME_SLOTS_M	0x7f
1491*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CAP_PORT_ARB_TABLE_OFFSET   __BITS(31, 24)
1492*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CAP_PORT_ARB_TABLE_OFFSET_S 24
1493*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CAP_PORT_ARB_TABLE_OFFSET_M 0xff
1494*0a6a1f1dSLionel Sambuc #define	PCI_VC_RESOURCE_CTL(n)	(0x14 + ((n) * 0x0c))	/* VC Resource Control Register */
1495*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CTL_TCVC_MAP		__BITS(7, 0)
1496*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CTL_TCVC_MAP_S	0
1497*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CTL_TCVC_MAP_M	0xff
1498*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CTL_LOAD_PORT_ARB_TABLE __BIT(16)
1499*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CTL_PORT_ARB_SELECT	__BITS(19, 17)
1500*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CTL_PORT_ARB_SELECT_S	17
1501*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CTL_PORT_ARB_SELECT_M	0x7
1502*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CTL_VC_ID		__BITS(26, 24)
1503*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CTL_VC_ID_S		24
1504*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CTL_VC_ID_M		0x7
1505*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_CTL_VC_ENABLE		__BIT(31)
1506*0a6a1f1dSLionel Sambuc #define	PCI_VC_RESOURCE_STA(n)	(0x18 + ((n) * 0x0c))	/* VC Resource Status Register */
1507*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_STA_PORT_ARB_TABLE	__BIT(0)
1508*0a6a1f1dSLionel Sambuc #define	  PCI_VC_RESOURCE_STA_VC_NEG_PENDING	__BIT(1)
1509*0a6a1f1dSLionel Sambuc 
1510*0a6a1f1dSLionel Sambuc /*
1511*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x0003
1512*0a6a1f1dSLionel Sambuc  * Serial Number
1513*0a6a1f1dSLionel Sambuc  */
1514*0a6a1f1dSLionel Sambuc #define	PCI_SERIAL_LOW		0x04
1515*0a6a1f1dSLionel Sambuc #define	PCI_SERIAL_HIGH		0x08
1516*0a6a1f1dSLionel Sambuc 
1517*0a6a1f1dSLionel Sambuc /*
1518*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x0004
1519*0a6a1f1dSLionel Sambuc  * Power Budgeting
1520*0a6a1f1dSLionel Sambuc  */
1521*0a6a1f1dSLionel Sambuc #define	PCI_PWRBDGT_DSEL	0x04	/* Data Select */
1522*0a6a1f1dSLionel Sambuc #define	PCI_PWRBDGT_DATA	0x08	/* Data */
1523*0a6a1f1dSLionel Sambuc #define	PCI_PWRBDGT_DATA_BASEPWR	__BITS(7, 0)	/* Base Power */
1524*0a6a1f1dSLionel Sambuc #define	PCI_PWRBDGT_DATA_SCALE		__BITS(9, 8)	/* Data Scale */
1525*0a6a1f1dSLionel Sambuc #define	PCI_PWRBDGT_PM_SUBSTAT		__BITS(12, 10)	/* PM Sub State */
1526*0a6a1f1dSLionel Sambuc #define	PCI_PWRBDGT_PM_STAT		__BITS(14, 13)	/* PM State */
1527*0a6a1f1dSLionel Sambuc #define	PCI_PWRBDGT_TYPE		__BITS(17, 15)	/* Type */
1528*0a6a1f1dSLionel Sambuc #define	PCI_PWRBDGT_PWRRAIL		__BITS(20, 18)	/* Power Rail */
1529*0a6a1f1dSLionel Sambuc #define	PCI_PWRBDGT_CAP		0x0c	/* Capability */
1530*0a6a1f1dSLionel Sambuc #define	PCI_PWRBDGT_CAP_SYSALLOC	__BIT(0)	/* System Allocated */
1531*0a6a1f1dSLionel Sambuc 
1532*0a6a1f1dSLionel Sambuc /*
1533*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x0005
1534*0a6a1f1dSLionel Sambuc  * Root Complex Link Declaration
1535*0a6a1f1dSLionel Sambuc  */
1536*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_ESDESC	0x04	/* Element Self Description */
1537*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_ESDESC_ELMTYPE __BITS(3, 0)	/* Element Type */
1538*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_ESDESC_NUMLINKENT __BITS(15, 8) /* Num of Link Entries*/
1539*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_ESDESC_COMPID  __BITS(23, 16)	/* Component ID */
1540*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_ESDESC_PORTNUM __BITS(31, 24)	/* Port Number */
1541*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_LINKENTS	0x10	/* Link Entries */
1542*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_LINKDESC(x)	/* Link Description */	\
1543*0a6a1f1dSLionel Sambuc 	(PCI_RCLINK_DCL_LINKENTS + ((x) * 16))
1544*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_LINKDESC_LVALID	__BIT(0)	/* Link Valid */
1545*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_LINKDESC_LTYPE	__BIT(1)	/* Link Type */
1546*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_LINKDESC_ARCRBH	__BIT(2)    /* Associate RCRB Header */
1547*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_LINKDESC_TCOMPID	__BITS(23, 16) /* Target Component ID*/
1548*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_LINKDESC_TPNUM	__BITS(31, 24) /* Target Port Number */
1549*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_LINKADDR_LT0_LO(x) /* LT0: Link Address Low */	\
1550*0a6a1f1dSLionel Sambuc 	(PCI_RCLINK_DCL_LINKENTS + ((x) * 16) + 0x08)
1551*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_LINKADDR_LT0_HI(x) /* LT0: Link Address High */	\
1552*0a6a1f1dSLionel Sambuc 	(PCI_RCLINK_DCL_LINKENTS + ((x) * 16) + 0x0c)
1553*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_LINKADDR_LT1_LO(x) /* LT1: Config Space (low) */	\
1554*0a6a1f1dSLionel Sambuc 	(PCI_RCLINK_DCL_LINKENTS + ((x) * 16) + 0x08)
1555*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_LINKADDR_LT1_N	__BITS(2, 0)	/* N */
1556*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_LINKADDR_LT1_FUNC __BITS(14, 12)	/* Function Number */
1557*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_LINKADDR_LT1_DEV	__BITS(19, 15)	/* Device Number */
1558*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_LINKADDR_LT1_BUS(N) __BITS(19 + (N), 20) /* Bus Number*/
1559*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_LINKADDR_LT1_BAL(N) __BITS(31, 20 + (N)) /* BAddr(L) */
1560*0a6a1f1dSLionel Sambuc #define	PCI_RCLINK_DCL_LINKADDR_LT1_HI(x) /* LT1: Config Space Base Addr(H) */\
1561*0a6a1f1dSLionel Sambuc 	(PCI_RCLINK_DCL_LINKENTS + ((x) * 16) + 0x0c)
1562*0a6a1f1dSLionel Sambuc 
1563*0a6a1f1dSLionel Sambuc /*
1564*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x0006
1565*0a6a1f1dSLionel Sambuc  * Root Complex Internal Link Control
1566*0a6a1f1dSLionel Sambuc  */
1567*0a6a1f1dSLionel Sambuc 
1568*0a6a1f1dSLionel Sambuc /*
1569*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x0007
1570*0a6a1f1dSLionel Sambuc  * Root Complex Event Collector Association
1571*0a6a1f1dSLionel Sambuc  */
1572*0a6a1f1dSLionel Sambuc #define	PCI_RCEC_ASSOC_ASSOCBITMAP 0x04
1573*0a6a1f1dSLionel Sambuc 
1574*0a6a1f1dSLionel Sambuc /*
1575*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x0008
1576*0a6a1f1dSLionel Sambuc  * Multi-Function Virtual Channel
1577*0a6a1f1dSLionel Sambuc  */
1578*0a6a1f1dSLionel Sambuc 
1579*0a6a1f1dSLionel Sambuc /*
1580*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x0009
1581*0a6a1f1dSLionel Sambuc  * Virtual Channel if MFVC Ext Cap set
1582*0a6a1f1dSLionel Sambuc  */
1583*0a6a1f1dSLionel Sambuc 
1584*0a6a1f1dSLionel Sambuc /*
1585*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x000a
1586*0a6a1f1dSLionel Sambuc  * RCRB Header
1587*0a6a1f1dSLionel Sambuc  */
1588*0a6a1f1dSLionel Sambuc 
1589*0a6a1f1dSLionel Sambuc /*
1590*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x000b
1591*0a6a1f1dSLionel Sambuc  * Vendor Unique
1592*0a6a1f1dSLionel Sambuc  */
1593*0a6a1f1dSLionel Sambuc 
1594*0a6a1f1dSLionel Sambuc /*
1595*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x000c
1596*0a6a1f1dSLionel Sambuc  * Configuration Access Correction
1597*0a6a1f1dSLionel Sambuc  */
1598*0a6a1f1dSLionel Sambuc 
1599*0a6a1f1dSLionel Sambuc /*
1600*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x000d
1601*0a6a1f1dSLionel Sambuc  * Access Control Services
1602*0a6a1f1dSLionel Sambuc  */
1603*0a6a1f1dSLionel Sambuc #define	PCI_ACS_CAP	0x04	/* Capability Register */
1604*0a6a1f1dSLionel Sambuc #define PCI_ACS_CAP_V	__BIT(0)	/* Source Validation */
1605*0a6a1f1dSLionel Sambuc #define PCI_ACS_CAP_B	__BIT(1)	/* Transaction Blocking */
1606*0a6a1f1dSLionel Sambuc #define PCI_ACS_CAP_R	__BIT(2)	/* P2P Request Redirect */
1607*0a6a1f1dSLionel Sambuc #define PCI_ACS_CAP_C	__BIT(3)	/* P2P Completion Redirect */
1608*0a6a1f1dSLionel Sambuc #define PCI_ACS_CAP_U	__BIT(4)	/* Upstream Forwarding */
1609*0a6a1f1dSLionel Sambuc #define PCI_ACS_CAP_E	__BIT(5)	/* Egress Control */
1610*0a6a1f1dSLionel Sambuc #define PCI_ACS_CAP_T	__BIT(6)	/* Direct Translated P2P */
1611*0a6a1f1dSLionel Sambuc #define PCI_ACS_CAP_ECVSIZE __BITS(15, 8) /* Egress Control Vector Size */
1612*0a6a1f1dSLionel Sambuc #define	PCI_ACS_CTL	0x04	/* Control Register */
1613*0a6a1f1dSLionel Sambuc #define PCI_ACS_CTL_V	__BIT(0 + 16)	/* Source Validation Enable */
1614*0a6a1f1dSLionel Sambuc #define PCI_ACS_CTL_B	__BIT(1 + 16)	/* Transaction Blocking Enable */
1615*0a6a1f1dSLionel Sambuc #define PCI_ACS_CTL_R	__BIT(2 + 16)	/* P2P Request Redirect Enable */
1616*0a6a1f1dSLionel Sambuc #define PCI_ACS_CTL_C	__BIT(3 + 16)	/* P2P Completion Redirect Enable */
1617*0a6a1f1dSLionel Sambuc #define PCI_ACS_CTL_U	__BIT(4 + 16)	/* Upstream Forwarding Enable */
1618*0a6a1f1dSLionel Sambuc #define PCI_ACS_CTL_E	__BIT(5 + 16)	/* Egress Control Enable */
1619*0a6a1f1dSLionel Sambuc #define PCI_ACS_CTL_T	__BIT(6 + 16)	/* Direct Translated P2P Enable */
1620*0a6a1f1dSLionel Sambuc #define	PCI_ACS_ECV	0x08	/* Egress Control Vector */
1621*0a6a1f1dSLionel Sambuc 
1622*0a6a1f1dSLionel Sambuc /*
1623*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x000e
1624*0a6a1f1dSLionel Sambuc  * ARI
1625*0a6a1f1dSLionel Sambuc  */
1626*0a6a1f1dSLionel Sambuc #define PCI_ARI_CAP	0x04	/* Capability Register */
1627*0a6a1f1dSLionel Sambuc #define PCI_ARI_CAP_M		__BIT(0)	/* MFVC Function Groups Cap. */
1628*0a6a1f1dSLionel Sambuc #define PCI_ARI_CAP_A		__BIT(1)	/* ACS Function Groups Cap. */
1629*0a6a1f1dSLionel Sambuc #define PCI_ARI_CAP_NXTFN	__BITS(15, 8)	/* Next Function Number */
1630*0a6a1f1dSLionel Sambuc #define PCI_ARI_CTL	0x04	/* Control Register */
1631*0a6a1f1dSLionel Sambuc #define PCI_ARI_CTL_M		__BIT(16)	/* MFVC Function Groups Ena. */
1632*0a6a1f1dSLionel Sambuc #define PCI_ARI_CTL_A		__BIT(17)	/* ACS Function Groups Ena. */
1633*0a6a1f1dSLionel Sambuc #define PCI_ARI_CTL_FUNCGRP	__BITS(31, 24)	/* Function Group */
1634*0a6a1f1dSLionel Sambuc 
1635*0a6a1f1dSLionel Sambuc /*
1636*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x000f
1637*0a6a1f1dSLionel Sambuc  * Address Translation Services
1638*0a6a1f1dSLionel Sambuc  */
1639*0a6a1f1dSLionel Sambuc #define	PCI_ATS_CAP	0x04	/* Capability Register */
1640*0a6a1f1dSLionel Sambuc #define	PCI_ATS_CAP_INVQDEPTH	__BITS(4, 0)	/* Invalidate Queue Depth */
1641*0a6a1f1dSLionel Sambuc #define	PCI_ATS_CAP_PALIGNREQ	__BIT(5)	/* Page Aligned Request */
1642*0a6a1f1dSLionel Sambuc #define	PCI_ATS_CTL	0x04	/* Control Register */
1643*0a6a1f1dSLionel Sambuc #define	PCI_ATS_CTL_STU		__BITS(20, 16)	/* Smallest Translation Unit */
1644*0a6a1f1dSLionel Sambuc #define	PCI_ATS_CTL_EN		__BIT(31)	/* Enable */
1645*0a6a1f1dSLionel Sambuc 
1646*0a6a1f1dSLionel Sambuc /*
1647*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x0010
1648*0a6a1f1dSLionel Sambuc  * SR-IOV
1649*0a6a1f1dSLionel Sambuc  */
1650*0a6a1f1dSLionel Sambuc #define	PCI_SRIOV_CAP		0x04	/* SR-IOV Capabilities */
1651*0a6a1f1dSLionel Sambuc #define	  PCI_SRIOV_CAP_VF_MIGRATION		__BIT(0)
1652*0a6a1f1dSLionel Sambuc #define	  PCI_SRIOV_CAP_ARI_CAP_HIER_PRESERVED	__BIT(1)
1653*0a6a1f1dSLionel Sambuc #define	  PCI_SRIOV_CAP_VF_MIGRATION_INTMSG_N	__BITS(31, 21)
1654*0a6a1f1dSLionel Sambuc #define	  PCI_SRIOV_CAP_VF_MIGRATION_INTMSG_N_S	21
1655*0a6a1f1dSLionel Sambuc #define	  PCI_SRIOV_CAP_VF_MIGRATION_INTMSG_N_M	0x7ff
1656*0a6a1f1dSLionel Sambuc #define	PCI_SRIOV_CTL		0x08	/* SR-IOV Control (16bit) */
1657*0a6a1f1dSLionel Sambuc #define	  PCI_SRIOV_CTL_VF_ENABLE		__BIT(0)
1658*0a6a1f1dSLionel Sambuc #define	  PCI_SRIOV_CTL_VF_MIGRATION_SUPPORT	__BIT(1)
1659*0a6a1f1dSLionel Sambuc #define	  PCI_SRIOV_CTL_VF_MIGRATION_INT_ENABLE	__BIT(2)
1660*0a6a1f1dSLionel Sambuc #define	  PCI_SRIOV_CTL_VF_MSE			__BIT(3)
1661*0a6a1f1dSLionel Sambuc #define	  PCI_SRIOV_CTL_ARI_CAP_HIER		__BIT(4)
1662*0a6a1f1dSLionel Sambuc #define	PCI_SRIOV_STA		0x0a	/* SR-IOV Status (16bit) */
1663*0a6a1f1dSLionel Sambuc #define	  PCI_SRIOV_STA_VF_MIGRATION		__BIT(0)
1664*0a6a1f1dSLionel Sambuc #define	PCI_SRIOV_INITIAL_VFS	0x0c	/* InitialVFs (16bit) */
1665*0a6a1f1dSLionel Sambuc #define	PCI_SRIOV_TOTAL_VFS	0x0e	/* TotalVFs (16bit) */
1666*0a6a1f1dSLionel Sambuc #define	PCI_SRIOV_NUM_VFS	0x10	/* NumVFs (16bit) */
1667*0a6a1f1dSLionel Sambuc #define	PCI_SRIOV_FUNC_DEP_LINK	0x12	/* Function Dependency Link (16bit) */
1668*0a6a1f1dSLionel Sambuc #define	PCI_SRIOV_VF_OFF	0x14	/* First VF Offset (16bit) */
1669*0a6a1f1dSLionel Sambuc #define	PCI_SRIOV_VF_STRIDE	0x16	/* VF Stride (16bit) */
1670*0a6a1f1dSLionel Sambuc #define	PCI_SRIOV_VF_DID	0x1a	/* VF Device ID (16bit) */
1671*0a6a1f1dSLionel Sambuc #define	PCI_SRIOV_PAGE_CAP	0x1c	/* Supported Page Sizes */
1672*0a6a1f1dSLionel Sambuc #define	PCI_SRIOV_PAGE_SIZE	0x20	/* System Page Size */
1673*0a6a1f1dSLionel Sambuc #define	  PCI_SRIOV_BASE_PAGE_SHIFT	12
1674*0a6a1f1dSLionel Sambuc #define	PCI_SRIOV_BARS		0x24	/* VF BAR0-5 */
1675*0a6a1f1dSLionel Sambuc #define	PCI_SRIOV_BAR(x)	(PCI_SRIOV_BARS + ((x) * 4))
1676*0a6a1f1dSLionel Sambuc #define	PCI_SRIOV_VF_MIG_STA_AR	0x3c	/* VF Migration State Array Offset */
1677*0a6a1f1dSLionel Sambuc #define	  PCI_SRIOV_VF_MIG_STA_OFFSET	__BITS(31, 3)
1678*0a6a1f1dSLionel Sambuc #define	  PCI_SRIOV_VF_MIG_STA_OFFSET_S	3
1679*0a6a1f1dSLionel Sambuc #define	  PCI_SRIOV_VF_MIG_STA_OFFSET_M	0x1fffffff
1680*0a6a1f1dSLionel Sambuc #define	  PCI_SRIOV_VF_MIG_STA_BIR		__BITS(2, 0)
1681*0a6a1f1dSLionel Sambuc #define	  PCI_SRIOV_VF_MIG_STA_BIR_S		0
1682*0a6a1f1dSLionel Sambuc #define	  PCI_SRIOV_VF_MIG_STA_BIR_M		0x7
1683*0a6a1f1dSLionel Sambuc 
1684*0a6a1f1dSLionel Sambuc /*
1685*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x0011
1686*0a6a1f1dSLionel Sambuc  * Multiple Root IO Virtualization
1687*0a6a1f1dSLionel Sambuc  */
1688*0a6a1f1dSLionel Sambuc 
1689*0a6a1f1dSLionel Sambuc /*
1690*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x0012
1691*0a6a1f1dSLionel Sambuc  * Multicast
1692*0a6a1f1dSLionel Sambuc  */
1693*0a6a1f1dSLionel Sambuc 
1694*0a6a1f1dSLionel Sambuc /*
1695*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x0013
1696*0a6a1f1dSLionel Sambuc  * Page Request
1697*0a6a1f1dSLionel Sambuc  */
1698*0a6a1f1dSLionel Sambuc #define	PCI_PAGE_REQ_CTL	0x04	/* Control Register */
1699*0a6a1f1dSLionel Sambuc #define	PCI_PAGE_REQ_CTL_E	__BIT(0)	/* Enalbe */
1700*0a6a1f1dSLionel Sambuc #define	PCI_PAGE_REQ_CTL_R	__BIT(1)	/* Reset */
1701*0a6a1f1dSLionel Sambuc #define	PCI_PAGE_REQ_STA	0x04	/* Status Register */
1702*0a6a1f1dSLionel Sambuc #define	PCI_PAGE_REQ_STA_RF	__BIT(0+16)	/* Response Failure */
1703*0a6a1f1dSLionel Sambuc #define	PCI_PAGE_REQ_STA_UPRGI	__BIT(1+16)   /* Unexpected Page Req Grp Idx */
1704*0a6a1f1dSLionel Sambuc #define	PCI_PAGE_REQ_STA_S	__BIT(8+16)	/* Stopped */
1705*0a6a1f1dSLionel Sambuc #define	PCI_PAGE_REQ_OUTSTCAPA	0x08	/* Outstanding Page Request Capacity */
1706*0a6a1f1dSLionel Sambuc #define	PCI_PAGE_REQ_OUTSTALLOC	0x0c  /* Outstanding Page Request Allocation */
1707*0a6a1f1dSLionel Sambuc 
1708*0a6a1f1dSLionel Sambuc /*
1709*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x0014
1710*0a6a1f1dSLionel Sambuc  * (Reserved for AMD)
1711*0a6a1f1dSLionel Sambuc  */
1712*0a6a1f1dSLionel Sambuc 
1713*0a6a1f1dSLionel Sambuc /*
1714*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x0015
1715*0a6a1f1dSLionel Sambuc  * Resizable BAR
1716*0a6a1f1dSLionel Sambuc  */
1717*0a6a1f1dSLionel Sambuc 
1718*0a6a1f1dSLionel Sambuc /*
1719*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x0016
1720*0a6a1f1dSLionel Sambuc  * Dynamic Power Allocation
1721*0a6a1f1dSLionel Sambuc  */
1722*0a6a1f1dSLionel Sambuc 
1723*0a6a1f1dSLionel Sambuc /*
1724*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x0017
1725*0a6a1f1dSLionel Sambuc  * TPH Requester
1726*0a6a1f1dSLionel Sambuc  */
1727*0a6a1f1dSLionel Sambuc #define	PCI_TPH_REQ_CAP	0x04	/* TPH Requester Capability */
1728*0a6a1f1dSLionel Sambuc #define	PCI_TPH_REQ_CAP_NOST	__BIT(0)	/* No ST Mode Supported */
1729*0a6a1f1dSLionel Sambuc #define	PCI_TPH_REQ_CAP_INTVEC	__BIT(1)	/* Intr Vec Mode Supported */
1730*0a6a1f1dSLionel Sambuc #define	PCI_TPH_REQ_CAP_DEVSPEC	__BIT(2)   /* Device Specific Mode Supported */
1731*0a6a1f1dSLionel Sambuc #define	PCI_TPH_REQ_CAP_XTPHREQ	__BIT(8)    /* Extend TPH Reqester Supported */
1732*0a6a1f1dSLionel Sambuc #define	PCI_TPH_REQ_CAP_STTBLLOC __BITS(10, 9)	/* ST Table Location */
1733*0a6a1f1dSLionel Sambuc #define	PCI_TPH_REQ_CAP_STTBLSIZ __BITS(26, 16)	/* ST Table Size */
1734*0a6a1f1dSLionel Sambuc #define	PCI_TPH_REQ_CTL	0x08	/* TPH Requester Control */
1735*0a6a1f1dSLionel Sambuc #define	PCI_TPH_REQ_CTL_STSEL	_BITS(2, 0)	/* ST Mode Select */
1736*0a6a1f1dSLionel Sambuc #define	PCI_TPH_REQ_CTL_TPHREQEN _BITS(9, 8)	/* TPH Requester Enable */
1737*0a6a1f1dSLionel Sambuc #define	PCI_TPH_REQ_STTBL 0x0c	/* TPH ST Table */
1738*0a6a1f1dSLionel Sambuc 
1739*0a6a1f1dSLionel Sambuc /*
1740*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x0018
1741*0a6a1f1dSLionel Sambuc  * Latency Tolerance Reporting
1742*0a6a1f1dSLionel Sambuc  */
1743*0a6a1f1dSLionel Sambuc #define	PCI_LTR_MAXSNOOPLAT	0x04	/* Max Snoop Latency */
1744*0a6a1f1dSLionel Sambuc #define	PCI_LTR_MAXSNOOPLAT_VAL	__BITS(9, 0)	/* Max Snoop LatencyValue */
1745*0a6a1f1dSLionel Sambuc #define	PCI_LTR_MAXSNOOPLAT_SCALE __BITS(12, 10) /* Max Snoop LatencyScale */
1746*0a6a1f1dSLionel Sambuc #define	PCI_LTR_MAXNOSNOOPLAT	0x04	/* Max No-Snoop Latency */
1747*0a6a1f1dSLionel Sambuc #define	PCI_LTR_MAXNOSNOOPLAT_VAL __BITS(25, 16) /* Max No-Snoop LatencyValue*/
1748*0a6a1f1dSLionel Sambuc #define	PCI_LTR_MAXNOSNOOPLAT_SCALE __BITS(28, 26) /*Max NoSnoop LatencyScale*/
1749*0a6a1f1dSLionel Sambuc #define	PCI_LTR_SCALETONS(x) ((32 << (x)) / 32)
1750*0a6a1f1dSLionel Sambuc 
1751*0a6a1f1dSLionel Sambuc /*
1752*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x0019
1753*0a6a1f1dSLionel Sambuc  * Seconday PCI Express Extended Capability
1754*0a6a1f1dSLionel Sambuc  */
1755*0a6a1f1dSLionel Sambuc #define PCI_SECPCIE_LCTL3	0x04	/* Link Control 3 */
1756*0a6a1f1dSLionel Sambuc #define PCI_SECPCIE_LCTL3_PERFEQ	__BIT(0) /* Perform Equalization */
1757*0a6a1f1dSLionel Sambuc #define PCI_SECPCIE_LCTL3_LINKEQREQ_IE	__BIT(1) /* Link Eq. Req. Int. Ena. */
1758*0a6a1f1dSLionel Sambuc #define PCI_SECPCIE_LANEERR_STA 0x08	/* Lane Error Status */
1759*0a6a1f1dSLionel Sambuc #define PCI_SECPCIE_EQCTLS	0x0c	/* Equalization Control [0-maxlane] */
1760*0a6a1f1dSLionel Sambuc #define	PCI_SECPCIE_EQCTL(x)	(PCI_SECPCIE_EQCTLS + ((x) * 2))
1761*0a6a1f1dSLionel Sambuc #define	PCI_SECPCIE_EQCTL_DP_XMIT_PRESET __BITS(3, 0) /* DwnStPort Xmit Pres */
1762*0a6a1f1dSLionel Sambuc #define	PCI_SECPCIE_EQCTL_DP_RCV_HINT	__BITS(6, 4) /* DwnStPort Rcv PreHnt */
1763*0a6a1f1dSLionel Sambuc #define	PCI_SECPCIE_EQCTL_UP_XMIT_PRESET __BITS(11, 8) /* UpStPort Xmit Pres */
1764*0a6a1f1dSLionel Sambuc #define	PCI_SECPCIE_EQCTL_UP_RCV_HINT	__BITS(14, 12) /* UpStPort Rcv PreHnt*/
1765*0a6a1f1dSLionel Sambuc 
1766*0a6a1f1dSLionel Sambuc /*
1767*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x001a
1768*0a6a1f1dSLionel Sambuc  * Protocol Multiplexing
1769*0a6a1f1dSLionel Sambuc  */
1770*0a6a1f1dSLionel Sambuc 
1771*0a6a1f1dSLionel Sambuc /*
1772*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x001b
1773*0a6a1f1dSLionel Sambuc  * Process Address Space ID
1774*0a6a1f1dSLionel Sambuc  */
1775*0a6a1f1dSLionel Sambuc #define	PCI_PASID_CAP	0x04	/* Capability Register */
1776*0a6a1f1dSLionel Sambuc #define	PCI_PASID_CAP_XPERM	__BIT(1)     /* Execute Permission Supported */
1777*0a6a1f1dSLionel Sambuc #define	PCI_PASID_CAP_PRIVMODE	__BIT(2)	/* Privileged Mode Supported */
1778*0a6a1f1dSLionel Sambuc #define	PCI_PASID_CAP_MAXPASIDW	__BITS(12, 8)	/* Max PASID Width */
1779*0a6a1f1dSLionel Sambuc #define	PCI_PASID_CTL	0x04	/* Control Register */
1780*0a6a1f1dSLionel Sambuc #define	PCI_PASID_CTL_PASID_EN	__BIT(0)	/* PASID Enable */
1781*0a6a1f1dSLionel Sambuc #define	PCI_PASID_CTL_XPERM_EN	__BIT(1)	/* Execute Permission Enable */
1782*0a6a1f1dSLionel Sambuc #define	PCI_PASID_CTL_PRIVMODE_EN __BIT(2)	/* Privileged Mode Enable */
1783*0a6a1f1dSLionel Sambuc 
1784*0a6a1f1dSLionel Sambuc /*
1785*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x001c
1786*0a6a1f1dSLionel Sambuc  * LN Requester
1787*0a6a1f1dSLionel Sambuc  */
1788*0a6a1f1dSLionel Sambuc #define	PCI_LNR_CAP	0x04	/* Capability Register */
1789*0a6a1f1dSLionel Sambuc #define	PCI_LNR_CAP_64		__BIT(0)	/* LNR-64 Supported */
1790*0a6a1f1dSLionel Sambuc #define	PCI_LNR_CAP_128		__BIT(1)	/* LNR-128 Supported */
1791*0a6a1f1dSLionel Sambuc #define	PCI_LNR_CAP_REGISTMAX	__BITS(12, 8)	/* LNR Registration MAX */
1792*0a6a1f1dSLionel Sambuc #define	PCI_LNR_CTL	0x04	/* Control Register */
1793*0a6a1f1dSLionel Sambuc #define	PCI_LNR_CTL_EN		__BIT(0+16)	/* LNR Enable */
1794*0a6a1f1dSLionel Sambuc #define	PCI_LNR_CTL_CLS		__BIT(1+16)	/* LNR CLS */
1795*0a6a1f1dSLionel Sambuc #define	PCI_LNR_CTL_REGISTLIM	__BITS(28, 24)	/* LNR Registration Limit */
1796*0a6a1f1dSLionel Sambuc 
1797*0a6a1f1dSLionel Sambuc /*
1798*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x001d
1799*0a6a1f1dSLionel Sambuc  * Downstream Port Containment
1800*0a6a1f1dSLionel Sambuc  */
1801*0a6a1f1dSLionel Sambuc 
1802*0a6a1f1dSLionel Sambuc /*
1803*0a6a1f1dSLionel Sambuc  * Extended capability ID: 0x001e
1804*0a6a1f1dSLionel Sambuc  * L1 PM Substates
1805*0a6a1f1dSLionel Sambuc  */
1806*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CAP	0x04	/* Capabilities Register */
1807*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CAP_PCIPM12	__BIT(0)	/* PCI-PM L1.2 Supported */
1808*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CAP_PCIPM11	__BIT(1)	/* PCI-PM L1.1 Supported */
1809*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CAP_ASPM12	__BIT(2)	/* ASPM L1.2 Supported */
1810*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CAP_ASPM11	__BIT(3)	/* ASPM L1.1 Supported */
1811*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CAP_L1PM	__BIT(4)	/* L1 PM Substates Supported */
1812*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CAP_PCMRT	__BITS(15, 8) /*Port Common Mode Restore Time*/
1813*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CAP_PTPOSCALE	__BITS(17, 16)	/* Port T_POWER_ON Scale */
1814*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CAP_PTPOVAL	__BITS(23, 19)	/* Port T_POWER_ON Value */
1815*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CTL1	0x08	/* Control Register 1 */
1816*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CTL1_PCIPM12_EN __BIT(0)	/* PCI-PM L1.2 Enable */
1817*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CTL1_PCIPM11_EN __BIT(1)	/* PCI-PM L1.1 Enable */
1818*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CTL1_ASPM12_EN	__BIT(2)	/* ASPM L1.2 Enable */
1819*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CTL1_ASPM11_EN	__BIT(3)	/* ASPM L1.1 Enable */
1820*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CTL1_CMRT	__BITS(15, 8)	/* Common Mode Restore Time */
1821*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CTL1_LTRTHVAL	__BITS(25, 16)	/* LTR L1.2 THRESHOLD Value */
1822*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CTL1_LTRTHSCALE __BITS(31, 29)	/* LTR L1.2 THRESHOLD Scale */
1823*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CTL2	0x0c	/* Control Register 2 */
1824*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CTL2_TPOSCALE	__BITS(1, 0)	/* T_POWER_ON Scale */
1825*0a6a1f1dSLionel Sambuc #define	PCI_L1PM_CTL2_TPOVAL	__BITS(7, 3)	/* T_POWER_ON Value */
1826*0a6a1f1dSLionel Sambuc 
1827*0a6a1f1dSLionel Sambuc /*
1828*0a6a1f1dSLionel Sambuc  * Local constants
1829*0a6a1f1dSLionel Sambuc  */
1830*0a6a1f1dSLionel Sambuc #define PCI_INTRSTR_LEN			64
1831*0a6a1f1dSLionel Sambuc 
18327eb99bdaSLionel Sambuc #endif /* _DEV_PCI_PCIREG_H_ */
1833