xref: /netbsd-src/sys/dev/pci/pcireg.h (revision b7b7574d3bf8eeb51a1fa3977b59142ec6434a55)
1 /*	$NetBSD: pcireg.h,v 1.95 2014/06/09 11:08:05 msaitoh Exp $	*/
2 
3 /*
4  * Copyright (c) 1995, 1996, 1999, 2000
5  *     Christopher G. Demetriou.  All rights reserved.
6  * Copyright (c) 1994, 1996 Charles M. Hannum.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *	This product includes software developed by Charles M. Hannum.
19  * 4. The name of the author may not be used to endorse or promote products
20  *    derived from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 #ifndef _DEV_PCI_PCIREG_H_
35 #define	_DEV_PCI_PCIREG_H_
36 
37 /*
38  * Standardized PCI configuration information
39  *
40  * XXX This is not complete.
41  */
42 
43 /*
44  * Size of each function's configuration space.
45  */
46 
47 #define	PCI_CONF_SIZE			0x100
48 #define	PCI_EXTCONF_SIZE		0x1000
49 
50 /*
51  * Device identification register; contains a vendor ID and a device ID.
52  */
53 #define	PCI_ID_REG			0x00
54 
55 typedef u_int16_t pci_vendor_id_t;
56 typedef u_int16_t pci_product_id_t;
57 
58 #define	PCI_VENDOR_SHIFT			0
59 #define	PCI_VENDOR_MASK				0xffff
60 #define	PCI_VENDOR(id) \
61 	    (((id) >> PCI_VENDOR_SHIFT) & PCI_VENDOR_MASK)
62 
63 #define	PCI_PRODUCT_SHIFT			16
64 #define	PCI_PRODUCT_MASK			0xffff
65 #define	PCI_PRODUCT(id) \
66 	    (((id) >> PCI_PRODUCT_SHIFT) & PCI_PRODUCT_MASK)
67 
68 #define PCI_ID_CODE(vid,pid)					\
69 	((((vid) & PCI_VENDOR_MASK) << PCI_VENDOR_SHIFT) |	\
70 	 (((pid) & PCI_PRODUCT_MASK) << PCI_PRODUCT_SHIFT))	\
71 
72 /*
73  * Command and status register.
74  */
75 #define	PCI_COMMAND_STATUS_REG			0x04
76 #define	PCI_COMMAND_SHIFT			0
77 #define	PCI_COMMAND_MASK			0xffff
78 #define	PCI_STATUS_SHIFT			16
79 #define	PCI_STATUS_MASK				0xffff
80 
81 #define PCI_COMMAND_STATUS_CODE(cmd,stat)			\
82 	((((cmd) & PCI_COMMAND_MASK) << PCI_COMMAND_SHIFT) |	\
83 	 (((stat) & PCI_STATUS_MASK) << PCI_STATUS_SHIFT))	\
84 
85 #define	PCI_COMMAND_IO_ENABLE			0x00000001
86 #define	PCI_COMMAND_MEM_ENABLE			0x00000002
87 #define	PCI_COMMAND_MASTER_ENABLE		0x00000004
88 #define	PCI_COMMAND_SPECIAL_ENABLE		0x00000008
89 #define	PCI_COMMAND_INVALIDATE_ENABLE		0x00000010
90 #define	PCI_COMMAND_PALETTE_ENABLE		0x00000020
91 #define	PCI_COMMAND_PARITY_ENABLE		0x00000040
92 #define	PCI_COMMAND_STEPPING_ENABLE		0x00000080
93 #define	PCI_COMMAND_SERR_ENABLE			0x00000100
94 #define	PCI_COMMAND_BACKTOBACK_ENABLE		0x00000200
95 #define	PCI_COMMAND_INTERRUPT_DISABLE		0x00000400
96 
97 #define	PCI_STATUS_INT_STATUS			0x00080000
98 #define	PCI_STATUS_CAPLIST_SUPPORT		0x00100000
99 #define	PCI_STATUS_66MHZ_SUPPORT		0x00200000
100 #define	PCI_STATUS_UDF_SUPPORT			0x00400000
101 #define	PCI_STATUS_BACKTOBACK_SUPPORT		0x00800000
102 #define	PCI_STATUS_PARITY_ERROR			0x01000000
103 #define	PCI_STATUS_DEVSEL_FAST			0x00000000
104 #define	PCI_STATUS_DEVSEL_MEDIUM		0x02000000
105 #define	PCI_STATUS_DEVSEL_SLOW			0x04000000
106 #define	PCI_STATUS_DEVSEL_MASK			0x06000000
107 #define	PCI_STATUS_TARGET_TARGET_ABORT		0x08000000
108 #define	PCI_STATUS_MASTER_TARGET_ABORT		0x10000000
109 #define	PCI_STATUS_MASTER_ABORT			0x20000000
110 #define	PCI_STATUS_SPECIAL_ERROR		0x40000000
111 #define	PCI_STATUS_PARITY_DETECT		0x80000000
112 
113 /*
114  * PCI Class and Revision Register; defines type and revision of device.
115  */
116 #define	PCI_CLASS_REG			0x08
117 
118 typedef u_int8_t pci_class_t;
119 typedef u_int8_t pci_subclass_t;
120 typedef u_int8_t pci_interface_t;
121 typedef u_int8_t pci_revision_t;
122 
123 #define	PCI_CLASS_SHIFT				24
124 #define	PCI_CLASS_MASK				0xff
125 #define	PCI_CLASS(cr) \
126 	    (((cr) >> PCI_CLASS_SHIFT) & PCI_CLASS_MASK)
127 
128 #define	PCI_SUBCLASS_SHIFT			16
129 #define	PCI_SUBCLASS_MASK			0xff
130 #define	PCI_SUBCLASS(cr) \
131 	    (((cr) >> PCI_SUBCLASS_SHIFT) & PCI_SUBCLASS_MASK)
132 
133 #define	PCI_INTERFACE_SHIFT			8
134 #define	PCI_INTERFACE_MASK			0xff
135 #define	PCI_INTERFACE(cr) \
136 	    (((cr) >> PCI_INTERFACE_SHIFT) & PCI_INTERFACE_MASK)
137 
138 #define	PCI_REVISION_SHIFT			0
139 #define	PCI_REVISION_MASK			0xff
140 #define	PCI_REVISION(cr) \
141 	    (((cr) >> PCI_REVISION_SHIFT) & PCI_REVISION_MASK)
142 
143 #define	PCI_CLASS_CODE(mainclass, subclass, interface) \
144 	    ((((mainclass) & PCI_CLASS_MASK) << PCI_CLASS_SHIFT) | \
145 	     (((subclass) & PCI_SUBCLASS_MASK) << PCI_SUBCLASS_SHIFT) | \
146 	     (((interface) & PCI_INTERFACE_MASK) << PCI_INTERFACE_SHIFT))
147 
148 /* base classes */
149 #define	PCI_CLASS_PREHISTORIC			0x00
150 #define	PCI_CLASS_MASS_STORAGE			0x01
151 #define	PCI_CLASS_NETWORK			0x02
152 #define	PCI_CLASS_DISPLAY			0x03
153 #define	PCI_CLASS_MULTIMEDIA			0x04
154 #define	PCI_CLASS_MEMORY			0x05
155 #define	PCI_CLASS_BRIDGE			0x06
156 #define	PCI_CLASS_COMMUNICATIONS		0x07
157 #define	PCI_CLASS_SYSTEM			0x08
158 #define	PCI_CLASS_INPUT				0x09
159 #define	PCI_CLASS_DOCK				0x0a
160 #define	PCI_CLASS_PROCESSOR			0x0b
161 #define	PCI_CLASS_SERIALBUS			0x0c
162 #define	PCI_CLASS_WIRELESS			0x0d
163 #define	PCI_CLASS_I2O				0x0e
164 #define	PCI_CLASS_SATCOM			0x0f
165 #define	PCI_CLASS_CRYPTO			0x10
166 #define	PCI_CLASS_DASP				0x11
167 #define	PCI_CLASS_UNDEFINED			0xff
168 
169 /* 0x00 prehistoric subclasses */
170 #define	PCI_SUBCLASS_PREHISTORIC_MISC		0x00
171 #define	PCI_SUBCLASS_PREHISTORIC_VGA		0x01
172 
173 /* 0x01 mass storage subclasses */
174 #define	PCI_SUBCLASS_MASS_STORAGE_SCSI		0x00
175 #define	PCI_SUBCLASS_MASS_STORAGE_IDE		0x01
176 #define	PCI_SUBCLASS_MASS_STORAGE_FLOPPY	0x02
177 #define	PCI_SUBCLASS_MASS_STORAGE_IPI		0x03
178 #define	PCI_SUBCLASS_MASS_STORAGE_RAID		0x04
179 #define	PCI_SUBCLASS_MASS_STORAGE_ATA		0x05
180 #define		PCI_INTERFACE_ATA_SINGLEDMA		0x20
181 #define		PCI_INTERFACE_ATA_CHAINEDDMA		0x30
182 #define	PCI_SUBCLASS_MASS_STORAGE_SATA		0x06
183 #define		PCI_INTERFACE_SATA_AHCI10		0x01
184 #define	PCI_SUBCLASS_MASS_STORAGE_SAS		0x07
185 #define	PCI_SUBCLASS_MASS_STORAGE_NVM		0x08
186 #define	PCI_SUBCLASS_MASS_STORAGE_MISC		0x80
187 
188 /* 0x02 network subclasses */
189 #define	PCI_SUBCLASS_NETWORK_ETHERNET		0x00
190 #define	PCI_SUBCLASS_NETWORK_TOKENRING		0x01
191 #define	PCI_SUBCLASS_NETWORK_FDDI		0x02
192 #define	PCI_SUBCLASS_NETWORK_ATM		0x03
193 #define	PCI_SUBCLASS_NETWORK_ISDN		0x04
194 #define	PCI_SUBCLASS_NETWORK_WORLDFIP		0x05
195 #define	PCI_SUBCLASS_NETWORK_PCIMGMULTICOMP	0x06
196 #define	PCI_SUBCLASS_NETWORK_INFINIBAND		0x07
197 #define	PCI_SUBCLASS_NETWORK_MISC		0x80
198 
199 /* 0x03 display subclasses */
200 #define	PCI_SUBCLASS_DISPLAY_VGA		0x00
201 #define		PCI_INTERFACE_VGA_VGA			0x00
202 #define		PCI_INTERFACE_VGA_8514			0x01
203 #define	PCI_SUBCLASS_DISPLAY_XGA		0x01
204 #define	PCI_SUBCLASS_DISPLAY_3D			0x02
205 #define	PCI_SUBCLASS_DISPLAY_MISC		0x80
206 
207 /* 0x04 multimedia subclasses */
208 #define	PCI_SUBCLASS_MULTIMEDIA_VIDEO		0x00
209 #define	PCI_SUBCLASS_MULTIMEDIA_AUDIO		0x01
210 #define	PCI_SUBCLASS_MULTIMEDIA_TELEPHONY	0x02
211 #define	PCI_SUBCLASS_MULTIMEDIA_HDAUDIO		0x03
212 #define	PCI_SUBCLASS_MULTIMEDIA_MISC		0x80
213 
214 /* 0x05 memory subclasses */
215 #define	PCI_SUBCLASS_MEMORY_RAM			0x00
216 #define	PCI_SUBCLASS_MEMORY_FLASH		0x01
217 #define	PCI_SUBCLASS_MEMORY_MISC		0x80
218 
219 /* 0x06 bridge subclasses */
220 #define	PCI_SUBCLASS_BRIDGE_HOST		0x00
221 #define	PCI_SUBCLASS_BRIDGE_ISA			0x01
222 #define	PCI_SUBCLASS_BRIDGE_EISA		0x02
223 #define	PCI_SUBCLASS_BRIDGE_MC			0x03	/* XXX _MCA? */
224 #define	PCI_SUBCLASS_BRIDGE_PCI			0x04
225 #define		PCI_INTERFACE_BRIDGE_PCI_PCI		0x00
226 #define		PCI_INTERFACE_BRIDGE_PCI_SUBDEC		0x01
227 #define	PCI_SUBCLASS_BRIDGE_PCMCIA		0x05
228 #define	PCI_SUBCLASS_BRIDGE_NUBUS		0x06
229 #define	PCI_SUBCLASS_BRIDGE_CARDBUS		0x07
230 #define	PCI_SUBCLASS_BRIDGE_RACEWAY		0x08
231 #define	PCI_SUBCLASS_BRIDGE_STPCI		0x09
232 #define	PCI_SUBCLASS_BRIDGE_INFINIBAND		0x0a
233 #define		PCI_INTERFACE_STPCI_PRIMARY		0x40
234 #define		PCI_INTERFACE_STPCI_SECONDARY		0x80
235 #define	PCI_SUBCLASS_BRIDGE_MISC		0x80
236 
237 /* 0x07 communications subclasses */
238 #define	PCI_SUBCLASS_COMMUNICATIONS_SERIAL	0x00
239 #define		PCI_INTERFACE_SERIAL_XT			0x00
240 #define		PCI_INTERFACE_SERIAL_16450		0x01
241 #define		PCI_INTERFACE_SERIAL_16550		0x02
242 #define		PCI_INTERFACE_SERIAL_16650		0x03
243 #define		PCI_INTERFACE_SERIAL_16750		0x04
244 #define		PCI_INTERFACE_SERIAL_16850		0x05
245 #define		PCI_INTERFACE_SERIAL_16950		0x06
246 #define	PCI_SUBCLASS_COMMUNICATIONS_PARALLEL	0x01
247 #define		PCI_INTERFACE_PARALLEL			0x00
248 #define		PCI_INTERFACE_PARALLEL_BIDIRECTIONAL	0x01
249 #define		PCI_INTERFACE_PARALLEL_ECP1X		0x02
250 #define		PCI_INTERFACE_PARALLEL_IEEE1284		0x03
251 #define		PCI_INTERFACE_PARALLEL_IEEE1284_TGT	0xfe
252 #define	PCI_SUBCLASS_COMMUNICATIONS_MPSERIAL	0x02
253 #define	PCI_SUBCLASS_COMMUNICATIONS_MODEM	0x03
254 #define		PCI_INTERFACE_MODEM			0x00
255 #define		PCI_INTERFACE_MODEM_HAYES16450		0x01
256 #define		PCI_INTERFACE_MODEM_HAYES16550		0x02
257 #define		PCI_INTERFACE_MODEM_HAYES16650		0x03
258 #define		PCI_INTERFACE_MODEM_HAYES16750		0x04
259 #define	PCI_SUBCLASS_COMMUNICATIONS_GPIB	0x04
260 #define	PCI_SUBCLASS_COMMUNICATIONS_SMARTCARD	0x05
261 #define	PCI_SUBCLASS_COMMUNICATIONS_MISC	0x80
262 
263 /* 0x08 system subclasses */
264 #define	PCI_SUBCLASS_SYSTEM_PIC			0x00
265 #define		PCI_INTERFACE_PIC_8259			0x00
266 #define		PCI_INTERFACE_PIC_ISA			0x01
267 #define		PCI_INTERFACE_PIC_EISA			0x02
268 #define		PCI_INTERFACE_PIC_IOAPIC		0x10
269 #define		PCI_INTERFACE_PIC_IOXAPIC		0x20
270 #define	PCI_SUBCLASS_SYSTEM_DMA			0x01
271 #define		PCI_INTERFACE_DMA_8237			0x00
272 #define		PCI_INTERFACE_DMA_ISA			0x01
273 #define		PCI_INTERFACE_DMA_EISA			0x02
274 #define	PCI_SUBCLASS_SYSTEM_TIMER		0x02
275 #define		PCI_INTERFACE_TIMER_8254		0x00
276 #define		PCI_INTERFACE_TIMER_ISA			0x01
277 #define		PCI_INTERFACE_TIMER_EISA		0x02
278 #define	PCI_SUBCLASS_SYSTEM_RTC			0x03
279 #define		PCI_INTERFACE_RTC_GENERIC		0x00
280 #define		PCI_INTERFACE_RTC_ISA			0x01
281 #define	PCI_SUBCLASS_SYSTEM_PCIHOTPLUG		0x04
282 #define	PCI_SUBCLASS_SYSTEM_SDHC		0x05
283 #define	PCI_SUBCLASS_SYSTEM_IOMMU		0x06
284 #define	PCI_SUBCLASS_SYSTEM_RCEC		0x07
285 #define	PCI_SUBCLASS_SYSTEM_MISC		0x80
286 
287 /* 0x09 input subclasses */
288 #define	PCI_SUBCLASS_INPUT_KEYBOARD		0x00
289 #define	PCI_SUBCLASS_INPUT_DIGITIZER		0x01
290 #define	PCI_SUBCLASS_INPUT_MOUSE		0x02
291 #define	PCI_SUBCLASS_INPUT_SCANNER		0x03
292 #define	PCI_SUBCLASS_INPUT_GAMEPORT		0x04
293 #define		PCI_INTERFACE_GAMEPORT_GENERIC		0x00
294 #define		PCI_INTERFACE_GAMEPORT_LEGACY		0x10
295 #define	PCI_SUBCLASS_INPUT_MISC			0x80
296 
297 /* 0x0a dock subclasses */
298 #define	PCI_SUBCLASS_DOCK_GENERIC		0x00
299 #define	PCI_SUBCLASS_DOCK_MISC			0x80
300 
301 /* 0x0b processor subclasses */
302 #define	PCI_SUBCLASS_PROCESSOR_386		0x00
303 #define	PCI_SUBCLASS_PROCESSOR_486		0x01
304 #define	PCI_SUBCLASS_PROCESSOR_PENTIUM		0x02
305 #define	PCI_SUBCLASS_PROCESSOR_ALPHA		0x10
306 #define	PCI_SUBCLASS_PROCESSOR_POWERPC		0x20
307 #define	PCI_SUBCLASS_PROCESSOR_MIPS		0x30
308 #define	PCI_SUBCLASS_PROCESSOR_COPROC		0x40
309 
310 /* 0x0c serial bus subclasses */
311 #define	PCI_SUBCLASS_SERIALBUS_FIREWIRE		0x00
312 #define		PCI_INTERFACE_IEEE1394_FIREWIRE		0x00
313 #define		PCI_INTERFACE_IEEE1394_OPENHCI		0x10
314 #define	PCI_SUBCLASS_SERIALBUS_ACCESS		0x01
315 #define	PCI_SUBCLASS_SERIALBUS_SSA		0x02
316 #define	PCI_SUBCLASS_SERIALBUS_USB		0x03
317 #define		PCI_INTERFACE_USB_UHCI			0x00
318 #define		PCI_INTERFACE_USB_OHCI			0x10
319 #define		PCI_INTERFACE_USB_EHCI			0x20
320 #define		PCI_INTERFACE_USB_XHCI			0x30
321 #define		PCI_INTERFACE_USB_OTHERHC		0x80
322 #define		PCI_INTERFACE_USB_DEVICE		0xfe
323 #define	PCI_SUBCLASS_SERIALBUS_FIBER		0x04	/* XXX _FIBRECHANNEL */
324 #define	PCI_SUBCLASS_SERIALBUS_SMBUS		0x05
325 #define	PCI_SUBCLASS_SERIALBUS_INFINIBAND	0x06	/* Deprecated */
326 #define	PCI_SUBCLASS_SERIALBUS_IPMI		0x07
327 #define		PCI_INTERFACE_IPMI_SMIC			0x00
328 #define		PCI_INTERFACE_IPMI_KBD			0x01
329 #define		PCI_INTERFACE_IPMI_BLOCKXFER		0x02
330 #define	PCI_SUBCLASS_SERIALBUS_SERCOS		0x08
331 #define	PCI_SUBCLASS_SERIALBUS_CANBUS		0x09
332 #define	PCI_SUBCLASS_SERIALBUS_MISC		0x80
333 
334 /* 0x0d wireless subclasses */
335 #define	PCI_SUBCLASS_WIRELESS_IRDA		0x00
336 #define	PCI_SUBCLASS_WIRELESS_CONSUMERIR	0x01
337 #define	PCI_SUBCLASS_WIRELESS_RF		0x10
338 #define	PCI_SUBCLASS_WIRELESS_BLUETOOTH		0x11
339 #define	PCI_SUBCLASS_WIRELESS_BROADBAND		0x12
340 #define	PCI_SUBCLASS_WIRELESS_802_11A		0x20
341 #define	PCI_SUBCLASS_WIRELESS_802_11B		0x21
342 #define	PCI_SUBCLASS_WIRELESS_MISC		0x80
343 
344 /* 0x0e I2O (Intelligent I/O) subclasses */
345 #define	PCI_SUBCLASS_I2O_STANDARD		0x00
346 #define		PCI_INTERFACE_I2O_FIFOAT40		0x00
347 		/* others for I2O spec */
348 #define	PCI_SUBCLASS_I2O_MISC			0x80
349 
350 /* 0x0f satellite communication subclasses */
351 /*	PCI_SUBCLASS_SATCOM_???			0x00	/ * XXX ??? */
352 #define	PCI_SUBCLASS_SATCOM_TV			0x01
353 #define	PCI_SUBCLASS_SATCOM_AUDIO		0x02
354 #define	PCI_SUBCLASS_SATCOM_VOICE		0x03
355 #define	PCI_SUBCLASS_SATCOM_DATA		0x04
356 #define	PCI_SUBCLASS_SATCOM_MISC		0x80
357 
358 /* 0x10 encryption/decryption subclasses */
359 #define	PCI_SUBCLASS_CRYPTO_NETCOMP		0x00
360 #define	PCI_SUBCLASS_CRYPTO_ENTERTAINMENT	0x10
361 #define	PCI_SUBCLASS_CRYPTO_MISC		0x80
362 
363 /* 0x11 data acquisition and signal processing subclasses */
364 #define	PCI_SUBCLASS_DASP_DPIO			0x00
365 #define	PCI_SUBCLASS_DASP_TIMEFREQ		0x01
366 #define	PCI_SUBCLASS_DASP_SYNC			0x10
367 #define	PCI_SUBCLASS_DASP_MGMT			0x20
368 #define	PCI_SUBCLASS_DASP_MISC			0x80
369 
370 /*
371  * PCI BIST/Header Type/Latency Timer/Cache Line Size Register.
372  */
373 #define	PCI_BHLC_REG			0x0c
374 
375 #define	PCI_BIST_SHIFT				24
376 #define	PCI_BIST_MASK				0xff
377 #define	PCI_BIST(bhlcr) \
378 	    (((bhlcr) >> PCI_BIST_SHIFT) & PCI_BIST_MASK)
379 
380 #define	PCI_HDRTYPE_SHIFT			16
381 #define	PCI_HDRTYPE_MASK			0xff
382 #define	PCI_HDRTYPE(bhlcr) \
383 	    (((bhlcr) >> PCI_HDRTYPE_SHIFT) & PCI_HDRTYPE_MASK)
384 
385 #define	PCI_HDRTYPE_TYPE(bhlcr) \
386 	    (PCI_HDRTYPE(bhlcr) & 0x7f)
387 #define	PCI_HDRTYPE_MULTIFN(bhlcr) \
388 	    ((PCI_HDRTYPE(bhlcr) & 0x80) != 0)
389 
390 #define	PCI_LATTIMER_SHIFT			8
391 #define	PCI_LATTIMER_MASK			0xff
392 #define	PCI_LATTIMER(bhlcr) \
393 	    (((bhlcr) >> PCI_LATTIMER_SHIFT) & PCI_LATTIMER_MASK)
394 
395 #define	PCI_CACHELINE_SHIFT			0
396 #define	PCI_CACHELINE_MASK			0xff
397 #define	PCI_CACHELINE(bhlcr) \
398 	    (((bhlcr) >> PCI_CACHELINE_SHIFT) & PCI_CACHELINE_MASK)
399 
400 #define PCI_BHLC_CODE(bist,type,multi,latency,cacheline)		\
401 	    ((((bist) & PCI_BIST_MASK) << PCI_BIST_SHIFT) |		\
402 	     (((type) & PCI_HDRTYPE_MASK) << PCI_HDRTYPE_SHIFT) |	\
403 	     (((multi)?0x80:0) << PCI_HDRTYPE_SHIFT) |			\
404 	     (((latency) & PCI_LATTIMER_MASK) << PCI_LATTIMER_SHIFT) |	\
405 	     (((cacheline) & PCI_CACHELINE_MASK) << PCI_CACHELINE_SHIFT))
406 
407 /*
408  * PCI header type
409  */
410 #define PCI_HDRTYPE_DEVICE	0	/* PCI/PCIX/Cardbus */
411 #define PCI_HDRTYPE_PPB		1	/* PCI/PCIX/Cardbus */
412 #define PCI_HDRTYPE_PCB		2	/* PCI/PCIX/Cardbus */
413 #define PCI_HDRTYPE_EP		0	/* PCI Express */
414 #define PCI_HDRTYPE_RC		1	/* PCI Express */
415 
416 
417 /*
418  * Mapping registers
419  */
420 #define	PCI_MAPREG_START		0x10
421 #define	PCI_MAPREG_END			0x28
422 #define	PCI_MAPREG_ROM			0x30
423 #define	PCI_MAPREG_PPB_END		0x18
424 #define	PCI_MAPREG_PCB_END		0x14
425 
426 #define PCI_BAR0		0x10
427 #define PCI_BAR1		0x14
428 #define PCI_BAR2		0x18
429 #define PCI_BAR3		0x1C
430 #define PCI_BAR4		0x20
431 #define PCI_BAR5		0x24
432 
433 #define	PCI_BAR(__n)		(PCI_MAPREG_START + 4 * (__n))
434 
435 #define	PCI_MAPREG_TYPE(mr)						\
436 	    ((mr) & PCI_MAPREG_TYPE_MASK)
437 #define	PCI_MAPREG_TYPE_MASK			0x00000001
438 
439 #define	PCI_MAPREG_TYPE_MEM			0x00000000
440 #define	PCI_MAPREG_TYPE_ROM			0x00000000
441 #define	PCI_MAPREG_TYPE_IO			0x00000001
442 #define	PCI_MAPREG_ROM_ENABLE			0x00000001
443 
444 #define	PCI_MAPREG_MEM_TYPE(mr)						\
445 	    ((mr) & PCI_MAPREG_MEM_TYPE_MASK)
446 #define	PCI_MAPREG_MEM_TYPE_MASK		0x00000006
447 
448 #define	PCI_MAPREG_MEM_TYPE_32BIT		0x00000000
449 #define	PCI_MAPREG_MEM_TYPE_32BIT_1M		0x00000002
450 #define	PCI_MAPREG_MEM_TYPE_64BIT		0x00000004
451 
452 #define	PCI_MAPREG_MEM_PREFETCHABLE(mr)				\
453 	    (((mr) & PCI_MAPREG_MEM_PREFETCHABLE_MASK) != 0)
454 #define	PCI_MAPREG_MEM_PREFETCHABLE_MASK	0x00000008
455 
456 #define	PCI_MAPREG_MEM_ADDR(mr)						\
457 	    ((mr) & PCI_MAPREG_MEM_ADDR_MASK)
458 #define	PCI_MAPREG_MEM_SIZE(mr)						\
459 	    (PCI_MAPREG_MEM_ADDR(mr) & -PCI_MAPREG_MEM_ADDR(mr))
460 #define	PCI_MAPREG_MEM_ADDR_MASK		0xfffffff0
461 
462 #define	PCI_MAPREG_MEM64_ADDR(mr)					\
463 	    ((mr) & PCI_MAPREG_MEM64_ADDR_MASK)
464 #define	PCI_MAPREG_MEM64_SIZE(mr)					\
465 	    (PCI_MAPREG_MEM64_ADDR(mr) & -PCI_MAPREG_MEM64_ADDR(mr))
466 #define	PCI_MAPREG_MEM64_ADDR_MASK		0xfffffffffffffff0ULL
467 
468 #define	PCI_MAPREG_IO_ADDR(mr)						\
469 	    ((mr) & PCI_MAPREG_IO_ADDR_MASK)
470 #define	PCI_MAPREG_IO_SIZE(mr)						\
471 	    (PCI_MAPREG_IO_ADDR(mr) & -PCI_MAPREG_IO_ADDR(mr))
472 #define	PCI_MAPREG_IO_ADDR_MASK			0xfffffffc
473 
474 #define PCI_MAPREG_SIZE_TO_MASK(size)					\
475 	    (-(size))
476 
477 #define PCI_MAPREG_NUM(offset)						\
478 	    (((unsigned)(offset)-PCI_MAPREG_START)/4)
479 
480 
481 /*
482  * Cardbus CIS pointer (PCI rev. 2.1)
483  */
484 #define PCI_CARDBUS_CIS_REG 0x28
485 
486 /*
487  * Subsystem identification register; contains a vendor ID and a device ID.
488  * Types/macros for PCI_ID_REG apply.
489  * (PCI rev. 2.1)
490  */
491 #define PCI_SUBSYS_ID_REG 0x2c
492 
493 #define	PCI_SUBSYS_VENDOR_MASK	__BITS(15, 0)
494 #define	PCI_SUBSYS_ID_MASK		__BITS(31, 16)
495 
496 #define	PCI_SUBSYS_VENDOR(__subsys_id)	\
497     __SHIFTOUT(__subsys_id, PCI_SUBSYS_VENDOR_MASK)
498 
499 #define	PCI_SUBSYS_ID(__subsys_id)	\
500     __SHIFTOUT(__subsys_id, PCI_SUBSYS_ID_MASK)
501 
502 /*
503  * Capabilities link list (PCI rev. 2.2)
504  */
505 #define	PCI_CAPLISTPTR_REG		0x34	/* header type 0 */
506 #define	PCI_CARDBUS_CAPLISTPTR_REG	0x14	/* header type 2 */
507 #define	PCI_CAPLIST_PTR(cpr)	((cpr) & 0xff)
508 #define	PCI_CAPLIST_NEXT(cr)	(((cr) >> 8) & 0xff)
509 #define	PCI_CAPLIST_CAP(cr)	((cr) & 0xff)
510 
511 #define	PCI_CAP_RESERVED0	0x00
512 #define	PCI_CAP_PWRMGMT		0x01
513 #define	PCI_CAP_AGP		0x02
514 #define PCI_CAP_AGP_MAJOR(cr)	(((cr) >> 20) & 0xf)
515 #define PCI_CAP_AGP_MINOR(cr)	(((cr) >> 16) & 0xf)
516 #define	PCI_CAP_VPD		0x03
517 #define	PCI_CAP_SLOTID		0x04
518 #define	PCI_CAP_MSI		0x05
519 #define	PCI_CAP_CPCI_HOTSWAP	0x06
520 #define	PCI_CAP_PCIX		0x07
521 #define	PCI_CAP_LDT		0x08
522 #define	PCI_CAP_VENDSPEC	0x09
523 #define	PCI_CAP_DEBUGPORT	0x0a
524 #define	PCI_CAP_CPCI_RSRCCTL	0x0b
525 #define	PCI_CAP_HOTPLUG		0x0c
526 #define	PCI_CAP_SUBVENDOR	0x0d
527 #define	PCI_CAP_AGP8		0x0e
528 #define	PCI_CAP_SECURE		0x0f
529 #define	PCI_CAP_PCIEXPRESS     	0x10
530 #define	PCI_CAP_MSIX		0x11
531 #define	PCI_CAP_SATA		0x12
532 #define	PCI_CAP_PCIAF		0x13
533 
534 /*
535  * Capability ID: 0x01
536  * Power Management Capability; access via capability pointer.
537  */
538 
539 /* Power Management Capability Register */
540 #define PCI_PMCR_SHIFT		16
541 #define PCI_PMCR		0x02
542 #define PCI_PMCR_VERSION_MASK	0x0007
543 #define PCI_PMCR_VERSION_10	0x0001
544 #define PCI_PMCR_VERSION_11	0x0002
545 #define PCI_PMCR_VERSION_12	0x0003
546 #define PCI_PMCR_PME_CLOCK	0x0008
547 #define PCI_PMCR_DSI		0x0020
548 #define PCI_PMCR_AUXCUR_MASK	0x01c0
549 #define PCI_PMCR_AUXCUR_0	0x0000
550 #define PCI_PMCR_AUXCUR_55	0x0040
551 #define PCI_PMCR_AUXCUR_100	0x0080
552 #define PCI_PMCR_AUXCUR_160	0x00c0
553 #define PCI_PMCR_AUXCUR_220	0x0100
554 #define PCI_PMCR_AUXCUR_270	0x0140
555 #define PCI_PMCR_AUXCUR_320	0x0180
556 #define PCI_PMCR_AUXCUR_375	0x01c0
557 #define PCI_PMCR_D1SUPP		0x0200
558 #define PCI_PMCR_D2SUPP		0x0400
559 #define PCI_PMCR_PME_D0		0x0800
560 #define PCI_PMCR_PME_D1		0x1000
561 #define PCI_PMCR_PME_D2		0x2000
562 #define PCI_PMCR_PME_D3HOT	0x4000
563 #define PCI_PMCR_PME_D3COLD	0x8000
564 /*
565  * Power Management Control Status Register, Bridge Support Extensions Register
566  * and Data Register.
567  */
568 #define PCI_PMCSR		0x04
569 #define PCI_PMCSR_STATE_MASK	0x00000003
570 #define PCI_PMCSR_STATE_D0	0x00000000
571 #define PCI_PMCSR_STATE_D1	0x00000001
572 #define PCI_PMCSR_STATE_D2	0x00000002
573 #define PCI_PMCSR_STATE_D3	0x00000003
574 #define PCI_PMCSR_NO_SOFTRST	0x00000008
575 #define	PCI_PMCSR_PME_EN	0x00000100
576 #define PCI_PMCSR_DATASEL_MASK	0x00001e00
577 #define PCI_PMCSR_DATASCL_MASK	0x00006000
578 #define PCI_PMCSR_PME_STS	0x00008000
579 #define PCI_PMCSR_B2B3_SUPPORT	0x00400000
580 #define PCI_PMCSR_BPCC_EN	0x00800000
581 
582 
583 /*
584  * Capability ID: 0x02
585  * AGP
586  */
587 
588 /*
589  * Capability ID: 0x03
590  * Vital Product Data; access via capability pointer (PCI rev 2.2).
591  */
592 #define	PCI_VPD_ADDRESS_MASK	0x7fff
593 #define	PCI_VPD_ADDRESS_SHIFT	16
594 #define	PCI_VPD_ADDRESS(ofs)	\
595 	(((ofs) & PCI_VPD_ADDRESS_MASK) << PCI_VPD_ADDRESS_SHIFT)
596 #define	PCI_VPD_DATAREG(ofs)	((ofs) + 4)
597 #define	PCI_VPD_OPFLAG		0x80000000
598 
599 /*
600  * Capability ID: 0x04
601  * Slot ID
602  */
603 
604 /*
605  * Capability ID: 0x05
606  * MSI
607  */
608 
609 #define	PCI_MSI_CTL		0x0	/* Message Control Register offset */
610 #define	PCI_MSI_MADDR		0x4	/* Message Address Register (least
611 					 * significant bits) offset
612 					 */
613 #define	PCI_MSI_MADDR64_LO	0x4	/* 64-bit Message Address Register
614 					 * (least significant bits) offset
615 					 */
616 #define	PCI_MSI_MADDR64_HI	0x8	/* 64-bit Message Address Register
617 					 * (most significant bits) offset
618 					 */
619 #define	PCI_MSI_MDATA		0x8	/* Message Data Register offset */
620 #define	PCI_MSI_MDATA64		0xC	/* 64-bit Message Data Register
621 					 * offset
622 					 */
623 #define	PCI_MSI_MASK		0x10	/* Vector Mask register */
624 #define	PCI_MSI_PENDING		0x14	/* Vector Pending register */
625 
626 #define	PCI_MSI_CTL_MASK	__BITS(31, 16)
627 #define	PCI_MSI_CTL_PERVEC_MASK	__SHIFTIN(__BIT(8), PCI_MSI_CTL_MASK)
628 #define	PCI_MSI_CTL_64BIT_ADDR	__SHIFTIN(__BIT(7), PCI_MSI_CTL_MASK)
629 #define	PCI_MSI_CTL_MME_MASK	__SHIFTIN(__BITS(6, 4), PCI_MSI_CTL_MASK)
630 #define	PCI_MSI_CTL_MMC_MASK	__SHIFTIN(__BITS(3, 1), PCI_MSI_CTL_MASK)
631 #define	PCI_MSI_CTL_MSI_ENABLE	__SHIFTIN(__BIT(0), PCI_MSI_CTL_MASK)
632 
633 /*
634  * MSI Message Address is at offset 4.
635  * MSI Message Upper Address (if 64bit) is at offset 8.
636  * MSI Message data is at offset 8 or 12 and is 16 bits.
637  * [16 bit reserved field]
638  * MSI Mask Bits (32 bit field)
639  * MSI Pending Bits (32 bit field)
640  */
641 
642 /*
643  * Capability ID: 0x07
644  * PCI-X capability.
645  *
646  * PCI-X capability register has two different layouts. One is for bridge
647  * function. Another is for non-bridge functions.
648  */
649 
650 
651 /* For non-bridge functions */
652 
653 /*
654  * Command. 16 bits at offset 2 (e.g. upper 16 bits of the first 32-bit
655  * word at the capability; the lower 16 bits are the capability ID and
656  * next capability pointer).
657  *
658  * Since we always read PCI config space in 32-bit words, we define these
659  * as 32-bit values, offset and shifted appropriately.  Make sure you perform
660  * the appropriate R/M/W cycles!
661  */
662 #define PCIX_CMD		0x00
663 #define PCIX_CMD_PERR_RECOVER	0x00010000
664 #define PCIX_CMD_RELAXED_ORDER	0x00020000
665 #define PCIX_CMD_BYTECNT_MASK	0x000c0000
666 #define	PCIX_CMD_BYTECNT_SHIFT	18
667 #define	PCIX_CMD_BYTECNT(reg)	\
668 	(512 << (((reg) & PCIX_CMD_BYTECNT_MASK) >> PCIX_CMD_BYTECNT_SHIFT))
669 #define		PCIX_CMD_BCNT_512	0x00000000
670 #define		PCIX_CMD_BCNT_1024	0x00040000
671 #define		PCIX_CMD_BCNT_2048	0x00080000
672 #define		PCIX_CMD_BCNT_4096	0x000c0000
673 #define PCIX_CMD_SPLTRANS_MASK	0x00700000
674 #define	PCIX_CMD_SPLTRANS_SHIFT	20
675 #define		PCIX_CMD_SPLTRANS_1	0x00000000
676 #define		PCIX_CMD_SPLTRANS_2	0x00100000
677 #define		PCIX_CMD_SPLTRANS_3	0x00200000
678 #define		PCIX_CMD_SPLTRANS_4	0x00300000
679 #define		PCIX_CMD_SPLTRANS_8	0x00400000
680 #define		PCIX_CMD_SPLTRANS_12	0x00500000
681 #define		PCIX_CMD_SPLTRANS_16	0x00600000
682 #define		PCIX_CMD_SPLTRANS_32	0x00700000
683 
684 /*
685  * Status. 32 bits at offset 4.
686  */
687 #define PCIX_STATUS		0x04
688 #define PCIX_STATUS_FN_MASK	0x00000007
689 #define PCIX_STATUS_DEV_MASK	0x000000f8
690 #define PCIX_STATUS_DEV_SHIFT	3
691 #define PCIX_STATUS_BUS_MASK	0x0000ff00
692 #define PCIX_STATUS_BUS_SHIFT	8
693 #define PCIX_STATUS_FN(val)	((val) & PCIX_STATUS_FN_MASK)
694 #define PCIX_STATUS_DEV(val)	\
695 	(((val) & PCIX_STATUS_DEV_MASK) >> PCIX_STATUS_DEV_SHIFT)
696 #define PCIX_STATUS_BUS(val)	\
697 	(((val) & PCIX_STATUS_BUS_MASK) >> PCIX_STATUS_BUS_SHIFT)
698 #define PCIX_STATUS_64BIT	0x00010000	/* 64bit device */
699 #define PCIX_STATUS_133		0x00020000	/* 133MHz capable */
700 #define PCIX_STATUS_SPLDISC	0x00040000	/* Split completion discarded*/
701 #define PCIX_STATUS_SPLUNEX	0x00080000	/* Unexpected split complet. */
702 #define PCIX_STATUS_DEVCPLX	0x00100000	/* Device Complexity */
703 #define PCIX_STATUS_MAXB_MASK	0x00600000	/* MAX memory read Byte count*/
704 #define	PCIX_STATUS_MAXB_SHIFT	21
705 #define		PCIX_STATUS_MAXB_512	0x00000000
706 #define		PCIX_STATUS_MAXB_1024	0x00200000
707 #define		PCIX_STATUS_MAXB_2048	0x00400000
708 #define		PCIX_STATUS_MAXB_4096	0x00600000
709 #define PCIX_STATUS_MAXST_MASK	0x03800000	/* MAX outstand. Split Trans.*/
710 #define	PCIX_STATUS_MAXST_SHIFT	23
711 #define		PCIX_STATUS_MAXST_1	0x00000000
712 #define		PCIX_STATUS_MAXST_2	0x00800000
713 #define		PCIX_STATUS_MAXST_3	0x01000000
714 #define		PCIX_STATUS_MAXST_4	0x01800000
715 #define		PCIX_STATUS_MAXST_8	0x02000000
716 #define		PCIX_STATUS_MAXST_12	0x02800000
717 #define		PCIX_STATUS_MAXST_16	0x03000000
718 #define		PCIX_STATUS_MAXST_32	0x03800000
719 #define PCIX_STATUS_MAXRS_MASK	0x1c000000	/* MAX cumulative Read Size */
720 #define PCIX_STATUS_MAXRS_SHIFT	26
721 #define		PCIX_STATUS_MAXRS_1K	0x00000000
722 #define		PCIX_STATUS_MAXRS_2K	0x04000000
723 #define		PCIX_STATUS_MAXRS_4K	0x08000000
724 #define		PCIX_STATUS_MAXRS_8K	0x0c000000
725 #define		PCIX_STATUS_MAXRS_16K	0x10000000
726 #define		PCIX_STATUS_MAXRS_32K	0x14000000
727 #define		PCIX_STATUS_MAXRS_64K	0x18000000
728 #define		PCIX_STATUS_MAXRS_128K	0x1c000000
729 #define PCIX_STATUS_SCERR	0x20000000	/* rcv. Split Completion ERR.*/
730 #define PCIX_STATUS_266		0x40000000	/* 266MHz capable */
731 #define PCIX_STATUS_533		0x80000000	/* 533MHz capable */
732 
733 /* For bridge function */
734 
735 #define PCIX_BRIDGE_2ND_STATUS	0x00
736 #define PCIX_BRIDGE_ST_64BIT	0x00010000	/* Same as PCIX_STATUS (nonb)*/
737 #define PCIX_BRIDGE_ST_133	0x00020000	/* Same as PCIX_STATUS (nonb)*/
738 #define PCIX_BRIDGE_ST_SPLDISC	0x00040000	/* Same as PCIX_STATUS (nonb)*/
739 #define PCIX_BRIDGE_ST_SPLUNEX	0x00080000	/* Same as PCIX_STATUS (nonb)*/
740 #define PCIX_BRIDGE_ST_SPLOVRN	0x00100000	/* Split completion overrun */
741 #define PCIX_BRIDGE_ST_SPLRQDL	0x00200000	/* Split request delayed */
742 #define PCIX_BRIDGE_2NDST_CLKF	0x03c00000	/* Secondary clock frequency */
743 #define PCIX_BRIDGE_2NDST_CLKF_SHIFT 22
744 #define PCIX_BRIDGE_2NDST_VER_MASK 0x30000000	/* Version */
745 #define PCIX_BRIDGE_2NDST_VER_SHIFT 28
746 #define PCIX_BRIDGE_ST_266	0x40000000	/* Same as PCIX_STATUS (nonb)*/
747 #define PCIX_BRIDGE_ST_533	0x80000000	/* Same as PCIX_STATUS (nonb)*/
748 
749 #define PCIX_BRIDGE_PRI_STATUS	0x04
750 /* Bit 0 to 15 are the same as PCIX_STATUS */
751 /* Bit 16 to 21 are the same as PCIX_BRIDGE_2ND_STATUS */
752 /* Bit 30 and 31 are the same as PCIX_BRIDGE_2ND_STATUS */
753 
754 #define PCIX_BRIDGE_UP_STCR	0x08 /* Upstream Split Transaction Control */
755 #define PCIX_BRIDGE_DOWN_STCR	0x0c /* Downstream Split Transaction Control */
756 /* The layouts of above two registers are the same */
757 #define PCIX_BRIDGE_STCAP	0x0000ffff	/* Sp. Tr. Capacity */
758 #define PCIX_BRIDGE_STCLIM	0xffff0000	/* Sp. Tr. Commitment Limit */
759 #define PCIX_BRIDGE_STCLIM_SHIFT 16
760 
761 /*
762  * Capability ID: 0x08
763  * HyperTransport
764  */
765 
766 /*
767  * Capability ID: 0x09
768  * Vendor Specific
769  */
770 #define PCI_VENDORSPECIFIC_SHIFT	16
771 #define PCI_VENDORSPECIFIC		0x02
772 
773 /*
774  * Capability ID: 0x0a
775  * Debug Port
776  */
777 #define PCI_DEBUG_BASER		0x00	/* Debug Base Register */
778 #define PCI_DEBUG_BASER_SHIFT	16
779 #define PCI_DEBUG_PORTOFF_SHIFT	16
780 #define	PCI_DEBUG_PORTOFF_MASK	0x1fff0000	/* Debug port offset */
781 #define PCI_DEBUG_BARNUM_SHIFT	29
782 #define	PCI_DEBUG_BARNUM_MASK	0xe0000000	/* BAR number */
783 
784 /*
785  * Capability ID: 0x0b
786  * Compact PCI
787  */
788 
789 /*
790  * Capability ID: 0x0c
791  * Hotplug
792  */
793 
794 /*
795  * Capability ID: 0x0d
796  * Subsystem
797  */
798 #define PCI_CAP_SUBSYS_ID 0x04
799 /* bit field layout is the same as PCI_SUBSYS_ID_REG's one */
800 
801 /*
802  * Capability ID: 0x0e
803  * AGP8
804  */
805 
806 /*
807  * Capability ID: 0x0f
808  * Secure
809  */
810 
811 /*
812  * Capability ID: 0x10
813  * PCI Express; access via capability pointer.
814  */
815 #define PCIE_XCAP	0x00	/* Capability List & Capabilities Register */
816 #define	PCIE_XCAP_MASK		__BITS(31, 16)
817 /* Capability Version */
818 #define PCIE_XCAP_VER_MASK	__SHIFTIN(__BITS(3, 0), PCIE_XCAP_MASK)
819 #define	 PCIE_XCAP_VER_1_0	__SHIFTIN(1, PCIE_XCAP_VER_MASK)
820 #define	 PCIE_XCAP_VER_2_0	__SHIFTIN(2, PCIE_XCAP_VER_MASK)
821 #define	PCIE_XCAP_TYPE_MASK	__SHIFTIN(__BITS(7, 4), PCIE_XCAP_MASK)
822 #define	 PCIE_XCAP_TYPE_PCIE_DEV __SHIFTIN(0x0, PCIE_XCAP_TYPE_MASK)
823 #define	 PCIE_XCAP_TYPE_PCI_DEV	__SHIFTIN(0x1, PCIE_XCAP_TYPE_MASK)
824 #define	 PCIE_XCAP_TYPE_ROOT	__SHIFTIN(0x4, PCIE_XCAP_TYPE_MASK)
825 #define	 PCIE_XCAP_TYPE_UP	__SHIFTIN(0x5, PCIE_XCAP_TYPE_MASK)
826 #define	 PCIE_XCAP_TYPE_DOWN	__SHIFTIN(0x6, PCIE_XCAP_TYPE_MASK)
827 #define	 PCIE_XCAP_TYPE_PCIE2PCI __SHIFTIN(0x7, PCIE_XCAP_TYPE_MASK)
828 #define	 PCIE_XCAP_TYPE_PCI2PCIE __SHIFTIN(0x8, PCIE_XCAP_TYPE_MASK)
829 #define	 PCIE_XCAP_TYPE_ROOT_INTEP __SHIFTIN(0x9, PCIE_XCAP_TYPE_MASK)
830 #define	 PCIE_XCAP_TYPE_ROOT_EVNTC __SHIFTIN(0xa, PCIE_XCAP_TYPE_MASK)
831 #define PCIE_XCAP_SI		__SHIFTIN(__BIT(8), PCIE_XCAP_MASK) /* Slot Implemented */
832 #define PCIE_XCAP_IRQ		__SHIFTIN(__BITS(13, 9), PCIE_XCAP_MASK)
833 #define PCIE_DCAP	0x04	/* Device Capabilities Register */
834 #define PCIE_DCAP_MAX_PAYLOAD	__BITS(2, 0)   /* Max Payload Size Supported */
835 #define PCIE_DCAP_PHANTOM_FUNCS	__BITS(4, 3)   /* Phantom Functions Supported*/
836 #define PCIE_DCAP_EXT_TAG_FIELD	__BIT(5)       /* Extended Tag Field Support */
837 #define PCIE_DCAP_L0S_LATENCY	__BITS(8, 6)   /* Endpoint L0 Accptbl Latency*/
838 #define PCIE_DCAP_L1_LATENCY	__BITS(11, 9)  /* Endpoint L1 Accptbl Latency*/
839 #define PCIE_DCAP_ATTN_BUTTON	__BIT(12)      /* Attention Indicator Button */
840 #define PCIE_DCAP_ATTN_IND	__BIT(13)      /* Attention Indicator Present*/
841 #define PCIE_DCAP_PWR_IND	__BIT(14)      /* Power Indicator Present */
842 #define PCIE_DCAP_ROLE_ERR_RPT	__BIT(15)      /* Role-Based Error Reporting */
843 #define PCIE_DCAP_SLOT_PWR_LIM_VAL __BITS(25, 18) /* Cap. Slot PWR Limit Val */
844 #define PCIE_DCAP_SLOT_PWR_LIM_SCALE __BITS(27, 26) /* Cap. SlotPWRLimit Scl */
845 #define PCIE_DCAP_FLR		__BIT(28)      /* Function-Level Reset Cap. */
846 #define PCIE_DCSR	0x08	/* Device Control & Status Register */
847 #define PCIE_DCSR_ENA_COR_ERR	__BIT(0)       /* Correctable Error Report En*/
848 #define PCIE_DCSR_ENA_NFER	__BIT(1)       /* Non-Fatal Error Report En. */
849 #define PCIE_DCSR_ENA_FER	__BIT(2)       /* Fatal Error Reporting Enabl*/
850 #define PCIE_DCSR_ENA_URR	__BIT(3)       /* Unsupported Request Rpt En */
851 #define PCIE_DCSR_ENA_RELAX_ORD	__BIT(4)       /* Enable Relaxed Ordering */
852 #define PCIE_DCSR_MAX_PAYLOAD	__BITS(7, 5)   /* Max Payload Size */
853 #define PCIE_DCSR_EXT_TAG_FIELD	__BIT(8)       /* Extended Tag Field Enable */
854 #define PCIE_DCSR_PHANTOM_FUNCS	__BIT(9)       /* Phantom Functions Enable */
855 #define PCIE_DCSR_AUX_POWER_PM	__BIT(10)      /* Aux Power PM Enable */
856 #define PCIE_DCSR_ENA_NO_SNOOP	__BIT(11)      /* Enable No Snoop */
857 #define PCIE_DCSR_MAX_READ_REQ	__BITS(14, 12) /* Max Read Request Size */
858 #define PCIE_DCSR_BRDG_CFG_RETRY __BIT(15)     /* Bridge Config Retry Enable */
859 #define PCIE_DCSR_INITIATE_FLR	__BIT(15)      /* Initiate Function-Level Rst*/
860 #define PCIE_DCSR_CED		__BIT(0 + 16)  /* Correctable Error Detected */
861 #define PCIE_DCSR_NFED		__BIT(1 + 16)  /* Non-Fatal Error Detected */
862 #define PCIE_DCSR_FED		__BIT(2 + 16)  /* Fatal Error Detected */
863 #define PCIE_DCSR_URD		__BIT(3 + 16)  /* Unsupported Req. Detected */
864 #define PCIE_DCSR_AUX_PWR	__BIT(4 + 16)  /* Aux Power Detected */
865 #define PCIE_DCSR_TRANSACTION_PND __BIT(5 + 16) /* Transaction Pending */
866 #define PCIE_LCAP	0x0c	/* Link Capabilities Register */
867 #define PCIE_LCAP_MAX_SPEED	__BITS(3, 0)   /* Max Link Speed */
868 #define PCIE_LCAP_MAX_WIDTH	__BITS(9, 4)   /* Maximum Link Width */
869 #define PCIE_LCAP_ASPM		__BITS(11, 10) /* Active State Link PM Supp. */
870 #define PCIE_LCAP_L0S_EXIT	__BITS(14, 12) /* L0s Exit Latency */
871 #define PCIE_LCAP_L1_EXIT	__BITS(17, 15) /* L1 Exit Latency */
872 #define PCIE_LCAP_CLOCK_PM	__BIT(18)      /* Clock Power Management */
873 #define PCIE_LCAP_SURPRISE_DOWN	__BIT(19)      /* Surprise Down Err Rpt Cap. */
874 #define PCIE_LCAP_DL_ACTIVE	__BIT(20)      /* Data Link Layer Link Active*/
875 #define PCIE_LCAP_LINK_BW_NOTIFY __BIT(21)     /* Link BW Notification Capabl*/
876 #define PCIE_LCAP_ASPM_COMPLIANCE __BIT(22)    /* ASPM Optionally Compliance */
877 #define PCIE_LCAP_PORT		__BITS(31, 24) /* Port Number */
878 #define PCIE_LCSR	0x10	/* Link Control & Status Register */
879 #define PCIE_LCSR_ASPM_L0S	__BIT(0)       /* Active State PM Control L0s*/
880 #define PCIE_LCSR_ASPM_L1	__BIT(1)       /* Active State PM Control L1 */
881 #define PCIE_LCSR_RCB		__BIT(3)       /* Read Completion Boundry Ctl*/
882 #define PCIE_LCSR_LINK_DIS	__BIT(4)       /* Link Disable */
883 #define PCIE_LCSR_RETRAIN	__BIT(5)       /* Retrain Link */
884 #define PCIE_LCSR_COMCLKCFG	__BIT(6)       /* Common Clock Configuration */
885 #define PCIE_LCSR_EXTNDSYNC	__BIT(7)       /* Extended Synch */
886 #define PCIE_LCSR_ENCLKPM	__BIT(8)       /* Enable Clock Power Managmt */
887 #define PCIE_LCSR_HAWD		__BIT(9)       /* HW Autonomous Width Disable*/
888 #define PCIE_LCSR_LBMIE		__BIT(10)      /* Link BW Management Intr En */
889 #define PCIE_LCSR_LABIE		__BIT(11)      /* Link Autonomous BW Intr En */
890 #define	PCIE_LCSR_LINKSPEED	__BITS(19, 16) /* Link Speed */
891 #define	PCIE_LCSR_NLW		__BITS(25, 20) /* Negotiated Link Width */
892 #define	PCIE_LCSR_LINKTRAIN_ERR	__BIT(10 + 16) /* Link Training Error */
893 #define	PCIE_LCSR_LINKTRAIN	__BIT(11 + 16) /* Link Training */
894 #define	PCIE_LCSR_SLOTCLKCFG 	__BIT(12 + 16) /* Slot Clock Configuration */
895 #define	PCIE_LCSR_DLACTIVE	__BIT(13 + 16) /* Data Link Layer Link Active*/
896 #define	PCIE_LCSR_LINK_BW_MGMT	__BIT(14 + 16) /* Link BW Management Status */
897 #define	PCIE_LCSR_LINK_AUTO_BW	__BIT(15 + 16) /* Link Autonomous BW Status */
898 #define PCIE_SLCAP	0x14	/* Slot Capabilities Register */
899 #define PCIE_SLCAP_ABP		__BIT(0)       /* Attention Button Present */
900 #define PCIE_SLCAP_PCP		__BIT(1)       /* Power Controller Present */
901 #define PCIE_SLCAP_MSP		__BIT(2)       /* MRL Sensor Present */
902 #define PCIE_SLCAP_AIP		__BIT(3)       /* Attention Indicator Present*/
903 #define PCIE_SLCAP_PIP		__BIT(4)       /* Power Indicator Present */
904 #define PCIE_SLCAP_HPS		__BIT(5)       /* Hot-Plug Surprise */
905 #define PCIE_SLCAP_HPC		__BIT(6)       /* Hot-Plug Capable */
906 #define	PCIE_SLCAP_SPLV		__BITS(14, 7)  /* Slot Power Limit Value */
907 #define	PCIE_SLCAP_SPLS		__BITS(16, 15) /* Slot Power Limit Scale */
908 #define	PCIE_SLCAP_EIP		__BIT(17)      /* Electromechanical Interlock*/
909 #define	PCIE_SLCAP_NCCS		__BIT(18)      /* No Command Completed Supp. */
910 #define	PCIE_SLCAP_PSN		__BITS(31, 19) /* Physical Slot Number */
911 #define PCIE_SLCSR	0x18	/* Slot Control & Status Register */
912 #define PCIE_SLCSR_ABE		__BIT(0)       /* Attention Button Pressed En*/
913 #define PCIE_SLCSR_PFE		__BIT(1)       /* Power Button Pressed Enable*/
914 #define PCIE_SLCSR_MSE		__BIT(2)       /* MRL Sensor Changed Enable */
915 #define PCIE_SLCSR_PDE		__BIT(3)       /* Presence Detect Changed Ena*/
916 #define PCIE_SLCSR_CCE		__BIT(4)       /* Command Completed Intr. En */
917 #define PCIE_SLCSR_HPE		__BIT(5)       /* Hot Plug Interrupt Enable */
918 #define PCIE_SLCSR_AIC		__BITS(7, 6)   /* Attention Indicator Control*/
919 #define PCIE_SLCSR_PIC		__BITS(9, 8)   /* Power Indicator Control */
920 #define PCIE_SLCSR_PCC		__BIT(10)      /* Power Controller Control */
921 #define PCIE_SLCSR_EIC		__BIT(11)      /* Electromechanical Interlock*/
922 #define PCIE_SLCSR_DLLSCE	__BIT(12)      /* DataLinkLayer State Changed*/
923 #define PCIE_SLCSR_ABP		__BIT(0 + 16)  /* Attention Button Pressed */
924 #define PCIE_SLCSR_PFD		__BIT(1 + 16)  /* Power Fault Detected */
925 #define PCIE_SLCSR_MSC		__BIT(2 + 16)  /* MRL Sensor Changed */
926 #define PCIE_SLCSR_PDC		__BIT(3 + 16)  /* Presence Detect Changed */
927 #define PCIE_SLCSR_CC		__BIT(4 + 16)  /* Command Completed */
928 #define PCIE_SLCSR_MS		__BIT(5 + 16)  /* MRL Sensor State */
929 #define PCIE_SLCSR_PDS		__BIT(6 + 16)  /* Presence Detect State */
930 #define PCIE_SLCSR_EIS		__BIT(7 + 16)  /* Electromechanical Interlock*/
931 #define PCIE_SLCSR_LACS		__BIT(8 + 16)  /* Data Link Layer State Chg. */
932 #define PCIE_RCR	0x1c	/* Root Control & Capabilities Reg. */
933 #define PCIE_RCR_SERR_CER	__BIT(0)       /* SERR on Correctable Err. En*/
934 #define PCIE_RCR_SERR_NFER	__BIT(1)       /* SERR on Non-Fatal Error En */
935 #define PCIE_RCR_SERR_FER	__BIT(2)       /* SERR on Fatal Error Enable */
936 #define PCIE_RCR_PME_IE		__BIT(3)       /* PME Interrupt Enable */
937 #define PCIE_RCR_CRS_SVE	__BIT(4)       /* CRS Software Visibility En */
938 #define PCIE_RSR	0x20	/* Root Status Register */
939 #define PCIE_RSR_PME_REQESTER	__BITS(15, 0)  /* PME Requester ID */
940 #define PCIE_RSR_PME_STAT	__BIT(16)      /* PME Status */
941 #define PCIE_RSR_PME_PEND	__BIT(17)      /* PME Pending */
942 #define PCIE_DCAP2	0x24	/* Device Capabilities 2 Register */
943 #define PCIE_DCAP2_COMPT_RANGE	__BITS(3,0)    /* Compl. Timeout Ranges Supp */
944 #define PCIE_DCAP2_COMPT_DIS	__BIT(4)       /* Compl. Timeout Disable Supp*/
945 #define PCIE_DCAP2_ARI_FWD	__BIT(5)       /* ARI Forward Supported */
946 #define PCIE_DCAP2_ATOM_ROUT	__BIT(6)       /* AtomicOp Routing Supported */
947 #define PCIE_DCAP2_32ATOM	__BIT(7)       /* 32bit AtomicOp Compl. Supp */
948 #define PCIE_DCAP2_64ATOM	__BIT(8)       /* 64bit AtomicOp Compl. Supp */
949 #define PCIE_DCAP2_128CAS	__BIT(9)       /* 128bit Cas Completer Supp. */
950 #define PCIE_DCAP2_NO_ROPR_PASS	__BIT(10)      /* No RO-enabled PR-PR Passng */
951 #define PCIE_DCAP2_LTR_MEC	__BIT(11)      /* LTR Mechanism Supported */
952 #define PCIE_DCAP2_TPH_COMP	__BITS(13, 12) /* TPH Completer Supported */
953 #define PCIE_DCAP2_OBFF		__BITS(19, 18) /* OBPF */
954 #define PCIE_DCAP2_EXTFMT_FLD	__BIT(20)      /* Extended Fmt Field Support */
955 #define PCIE_DCAP2_EETLP_PREF	__BIT(21)      /* End-End TLP Prefix Support */
956 #define PCIE_DCAP2_MAX_EETLP	__BITS(23, 22) /* Max End-End TLP Prefix Sup */
957 #define PCIE_DCSR2	0x28	/* Device Control & Status 2 Register */
958 #define PCIE_DCSR2_COMPT_VAL	__BITS(3, 0)   /* Completion Timeout Value */
959 #define PCIE_DCSR2_COMPT_DIS	__BIT(4)       /* Completion Timeout Disable */
960 #define PCIE_DCSR2_ARI_FWD	__BIT(5)       /* ARI Forwarding Enable */
961 #define PCIE_DCSR2_ATOM_REQ	__BIT(6)       /* AtomicOp Requester Enable */
962 #define PCIE_DCSR2_ATOM_EBLK	__BIT(7)       /* AtomicOp Egress Blocking */
963 #define PCIE_DCSR2_IDO_REQ	__BIT(8)       /* IDO Request Enable */
964 #define PCIE_DCSR2_IDO_COMP	__BIT(9)       /* IDO Completion Enable */
965 #define PCIE_DCSR2_LTR_MEC	__BIT(10)      /* LTR Mechanism Enable */
966 #define PCIE_DCSR2_OBFF_EN	__BITS(14, 13) /* OBPF Enable */
967 #define PCIE_DCSR2_EETLP	__BIT(15)      /* End-End TLP Prefix Blcking */
968 #define PCIE_LCAP2	0x2c	/* Link Capabilities 2 Register */
969 #define PCIE_LCAP2_SUP_LNKSV	__BITS(7, 1)   /* Supported Link Speeds Vect */
970 #define PCIE_LCAP2_CROSSLNK	__BIT(8)       /* Crosslink Supported */
971 #define PCIE_LCSR2	0x30	/* Link Control & Status 2 Register */
972 #define PCIE_LCSR2_TGT_LSPEED	__BITS(3, 0)   /* Target Link Speed */
973 #define PCIE_LCSR2_ENT_COMPL	__BIT(4)       /* Enter Compliance */
974 #define PCIE_LCSR2_HW_AS_DIS	__BIT(5)       /* HW Autonomous Speed Disabl */
975 #define PCIE_LCSR2_SEL_DEEMP	__BIT(6)       /* Selectable De-emphasis */
976 #define PCIE_LCSR2_TX_MARGIN	__BITS(9, 7)   /* Transmit Margin */
977 #define PCIE_LCSR2_EN_MCOMP	__BIT(10)      /* Enter Modified Compliance */
978 #define PCIE_LCSR2_COMP_SOS	__BIT(11)      /* Compliance SOS */
979 #define PCIE_LCSR2_COMP_DEEMP	__BITS(15, 12) /* Compliance Present/De-emph */
980 #define PCIE_LCSR2_DEEMP_LVL	__BIT(0 + 16)  /* Current De-emphasis Level */
981 #define PCIE_LCSR2_EQ_COMPL	__BIT(1 + 16)  /* Equalization Complete */
982 #define PCIE_LCSR2_EQP1_SUC	__BIT(2 + 16)  /* Equaliz Phase 1 Successful */
983 #define PCIE_LCSR2_EQP2_SUC	__BIT(3 + 16)  /* Equaliz Phase 2 Successful */
984 #define PCIE_LCSR2_EQP3_SUC	__BIT(4 + 16)  /* Equaliz Phase 3 Successful */
985 #define PCIE_LCSR2_LNKEQ_REQ	__BIT(5 + 16)  /* Link Equalization Request */
986 
987 #define PCIE_SLCAP2	0x34	/* Slot Capabilities 2 Register */
988 #define PCIE_SLCSR2	0x38	/* Slot Control & Status 2 Register */
989 
990 /*
991  * Capability ID: 0x11
992  * MSIX
993  */
994 
995 #define PCI_MSIX_CTL	0x00
996 #define	PCI_MSIX_CTL_ENABLE	0x80000000
997 #define	PCI_MSIX_CTL_FUNCMASK	0x40000000
998 #define	PCI_MSIX_CTL_TBLSIZE_MASK 0x07ff0000
999 #define	PCI_MSIX_CTL_TBLSIZE_SHIFT 16
1000 #define	PCI_MSIX_CTL_TBLSIZE(ofs)	((((ofs) & PCI_MSIX_CTL_TBLSIZE_MASK) \
1001 		>> PCI_MSIX_CTL_TBLSIZE_SHIFT) + 1)
1002 /*
1003  * 2nd DWORD is the Table Offset
1004  */
1005 #define	PCI_MSIX_TBLOFFSET	0x04
1006 #define	PCI_MSIX_TBLOFFSET_MASK	0xfffffff8
1007 #define	PCI_MSIX_TBLBIR_MASK	0x00000007
1008 /*
1009  * 3rd DWORD is the Pending Bitmap Array Offset
1010  */
1011 #define	PCI_MSIX_PBAOFFSET	0x08
1012 #define	PCI_MSIX_PBAOFFSET_MASK	0xfffffff8
1013 #define	PCI_MSIX_PBABIR_MASK	0x00000007
1014 
1015 struct pci_msix_table_entry {
1016 	uint32_t pci_msix_addr_lo;
1017 	uint32_t pci_msix_addr_hi;
1018 	uint32_t pci_msix_value;
1019 	uint32_t pci_msix_vendor_control;
1020 };
1021 #define	PCI_MSIX_VENDCTL_MASK	0x00000001
1022 
1023 
1024 /*
1025  * Capability ID: 0x12
1026  * SATA
1027  */
1028 
1029 /*
1030  * Capability ID: 0x13
1031  * Advanced Feature
1032  */
1033 #define PCI_AFCAPR		0x00	/* Capabilities */
1034 #define	PCI_AFCAPR_MASK		__BITS(31, 24)
1035 #define	PCI_AF_TP_CAP		__BIT(24)	/* Transaction Pending */
1036 #define	PCI_AF_FLR_CAP		__BIT(25)	/* Function Level Reset */
1037 #define PCI_AFCSR		0x04	/* Control & Status register */
1038 #define PCI_AFCR_INITIATE_FLR	__BIT(0)	/* Initiate Function LVL RST */
1039 #define PCI_AFSR_TP		__BIT(8)	/* Transaction Pending */
1040 
1041 
1042 /*
1043  * Interrupt Configuration Register; contains interrupt pin and line.
1044  */
1045 #define	PCI_INTERRUPT_REG		0x3c
1046 
1047 typedef u_int8_t pci_intr_latency_t;
1048 typedef u_int8_t pci_intr_grant_t;
1049 typedef u_int8_t pci_intr_pin_t;
1050 typedef u_int8_t pci_intr_line_t;
1051 
1052 #define PCI_MAX_LAT_SHIFT			24
1053 #define	PCI_MAX_LAT_MASK			0xff
1054 #define	PCI_MAX_LAT(icr) \
1055 	    (((icr) >> PCI_MAX_LAT_SHIFT) & PCI_MAX_LAT_MASK)
1056 
1057 #define PCI_MIN_GNT_SHIFT			16
1058 #define	PCI_MIN_GNT_MASK			0xff
1059 #define	PCI_MIN_GNT(icr) \
1060 	    (((icr) >> PCI_MIN_GNT_SHIFT) & PCI_MIN_GNT_MASK)
1061 
1062 #define	PCI_INTERRUPT_GRANT_SHIFT		24
1063 #define	PCI_INTERRUPT_GRANT_MASK		0xff
1064 #define	PCI_INTERRUPT_GRANT(icr) \
1065 	    (((icr) >> PCI_INTERRUPT_GRANT_SHIFT) & PCI_INTERRUPT_GRANT_MASK)
1066 
1067 #define	PCI_INTERRUPT_LATENCY_SHIFT		16
1068 #define	PCI_INTERRUPT_LATENCY_MASK		0xff
1069 #define	PCI_INTERRUPT_LATENCY(icr) \
1070 	    (((icr) >> PCI_INTERRUPT_LATENCY_SHIFT) & PCI_INTERRUPT_LATENCY_MASK)
1071 
1072 #define	PCI_INTERRUPT_PIN_SHIFT			8
1073 #define	PCI_INTERRUPT_PIN_MASK			0xff
1074 #define	PCI_INTERRUPT_PIN(icr) \
1075 	    (((icr) >> PCI_INTERRUPT_PIN_SHIFT) & PCI_INTERRUPT_PIN_MASK)
1076 
1077 #define	PCI_INTERRUPT_LINE_SHIFT		0
1078 #define	PCI_INTERRUPT_LINE_MASK			0xff
1079 #define	PCI_INTERRUPT_LINE(icr) \
1080 	    (((icr) >> PCI_INTERRUPT_LINE_SHIFT) & PCI_INTERRUPT_LINE_MASK)
1081 
1082 #define PCI_INTERRUPT_CODE(lat,gnt,pin,line)		\
1083 	  ((((lat)&PCI_INTERRUPT_LATENCY_MASK)<<PCI_INTERRUPT_LATENCY_SHIFT)| \
1084 	   (((gnt)&PCI_INTERRUPT_GRANT_MASK)  <<PCI_INTERRUPT_GRANT_SHIFT)  | \
1085 	   (((pin)&PCI_INTERRUPT_PIN_MASK)    <<PCI_INTERRUPT_PIN_SHIFT)    | \
1086 	   (((line)&PCI_INTERRUPT_LINE_MASK)  <<PCI_INTERRUPT_LINE_SHIFT))
1087 
1088 #define	PCI_INTERRUPT_PIN_NONE			0x00
1089 #define	PCI_INTERRUPT_PIN_A			0x01
1090 #define	PCI_INTERRUPT_PIN_B			0x02
1091 #define	PCI_INTERRUPT_PIN_C			0x03
1092 #define	PCI_INTERRUPT_PIN_D			0x04
1093 #define	PCI_INTERRUPT_PIN_MAX			0x04
1094 
1095 /* Header Type 1 (Bridge) configuration registers */
1096 #define PCI_BRIDGE_BUS_REG		0x18
1097 #define   PCI_BRIDGE_BUS_EACH_MASK		0xff
1098 #define   PCI_BRIDGE_BUS_PRIMARY_SHIFT		0
1099 #define   PCI_BRIDGE_BUS_SECONDARY_SHIFT	8
1100 #define   PCI_BRIDGE_BUS_SUBORDINATE_SHIFT	16
1101 #define   PCI_BRIDGE_BUS_SEC_LATTIMER_SHIFT	24
1102 #define   PCI_BRIDGE_BUS_PRIMARY(reg) \
1103 	(((reg) >> PCI_BRIDGE_BUS_PRIMARY_SHIFT) & PCI_BRIDGE_BUS_EACH_MASK)
1104 #define   PCI_BRIDGE_BUS_SECONDARY(reg) \
1105 	(((reg) >> PCI_BRIDGE_BUS_SECONDARY_SHIFT) & PCI_BRIDGE_BUS_EACH_MASK)
1106 #define   PCI_BRIDGE_BUS_SUBORDINATE(reg) \
1107 	(((reg) >> PCI_BRIDGE_BUS_SUBORDINATE_SHIFT) &PCI_BRIDGE_BUS_EACH_MASK)
1108 #define   PCI_BRIDGE_BUS_SEC_LATTIMER(reg) \
1109 	(((reg) >> PCI_BRIDGE_BUS_SEC_LATTIMER_SHIFT)&PCI_BRIDGE_BUS_EACH_MASK)
1110 
1111 
1112 #define PCI_BRIDGE_STATIO_REG		0x1C
1113 #define	  PCI_BRIDGE_STATIO_IOBASE_SHIFT	0
1114 #define	  PCI_BRIDGE_STATIO_IOLIMIT_SHIFT	8
1115 #define	  PCI_BRIDGE_STATIO_STATUS_SHIFT	16
1116 #define	  PCI_BRIDGE_STATIO_IOBASE_MASK		0xf0
1117 #define	  PCI_BRIDGE_STATIO_IOLIMIT_MASK	0xf0
1118 #define	  PCI_BRIDGE_STATIO_STATUS_MASK		0xffff
1119 #define	  PCI_BRIDGE_IO_32BITS(reg)		(((reg) & 0xf) == 1)
1120 
1121 #define PCI_BRIDGE_MEMORY_REG		0x20
1122 #define	  PCI_BRIDGE_MEMORY_BASE_SHIFT		4
1123 #define	  PCI_BRIDGE_MEMORY_LIMIT_SHIFT		20
1124 #define	  PCI_BRIDGE_MEMORY_BASE_MASK		0x0fff
1125 #define	  PCI_BRIDGE_MEMORY_LIMIT_MASK		0x0fff
1126 
1127 #define PCI_BRIDGE_PREFETCHMEM_REG	0x24
1128 #define	  PCI_BRIDGE_PREFETCHMEM_BASE_SHIFT	4
1129 #define	  PCI_BRIDGE_PREFETCHMEM_LIMIT_SHIFT	20
1130 #define	  PCI_BRIDGE_PREFETCHMEM_BASE_MASK	0x0fff
1131 #define	  PCI_BRIDGE_PREFETCHMEM_LIMIT_MASK	0x0fff
1132 #define	  PCI_BRIDGE_PREFETCHMEM_64BITS(reg)	((reg) & 0xf)
1133 
1134 #define PCI_BRIDGE_PREFETCHBASE32_REG	0x28
1135 #define PCI_BRIDGE_PREFETCHLIMIT32_REG	0x2C
1136 
1137 #define PCI_BRIDGE_IOHIGH_REG		0x30
1138 #define	  PCI_BRIDGE_IOHIGH_BASE_SHIFT		0
1139 #define	  PCI_BRIDGE_IOHIGH_LIMIT_SHIFT		16
1140 #define	  PCI_BRIDGE_IOHIGH_BASE_MASK		0xffff
1141 #define	  PCI_BRIDGE_IOHIGH_LIMIT_MASK		0xffff
1142 
1143 #define PCI_BRIDGE_CONTROL_REG		0x3C
1144 #define	  PCI_BRIDGE_CONTROL_SHIFT		16
1145 #define	  PCI_BRIDGE_CONTROL_MASK		0xffff
1146 #define   PCI_BRIDGE_CONTROL_PERE		(1 <<  0)
1147 #define   PCI_BRIDGE_CONTROL_SERR		(1 <<  1)
1148 #define   PCI_BRIDGE_CONTROL_ISA		(1 <<  2)
1149 #define   PCI_BRIDGE_CONTROL_VGA		(1 <<  3)
1150 /* Reserved					(1 <<  4) */
1151 #define   PCI_BRIDGE_CONTROL_MABRT		(1 <<  5)
1152 #define   PCI_BRIDGE_CONTROL_SECBR		(1 <<  6)
1153 #define   PCI_BRIDGE_CONTROL_SECFASTB2B		(1 <<  7)
1154 #define   PCI_BRIDGE_CONTROL_PRI_DISC_TIMER	(1 <<  8)
1155 #define   PCI_BRIDGE_CONTROL_SEC_DISC_TIMER	(1 <<  9)
1156 #define   PCI_BRIDGE_CONTROL_DISC_TIMER_STAT	(1 << 10)
1157 #define   PCI_BRIDGE_CONTROL_DISC_TIMER_SERR	(1 << 11)
1158 /* Reserved					(1 << 12) - (1 << 15) */
1159 
1160 /*
1161  * Vital Product Data resource tags.
1162  */
1163 struct pci_vpd_smallres {
1164 	uint8_t		vpdres_byte0;		/* length of data + tag */
1165 	/* Actual data. */
1166 } __packed;
1167 
1168 struct pci_vpd_largeres {
1169 	uint8_t		vpdres_byte0;
1170 	uint8_t		vpdres_len_lsb;		/* length of data only */
1171 	uint8_t		vpdres_len_msb;
1172 	/* Actual data. */
1173 } __packed;
1174 
1175 #define	PCI_VPDRES_ISLARGE(x)			((x) & 0x80)
1176 
1177 #define	PCI_VPDRES_SMALL_LENGTH(x)		((x) & 0x7)
1178 #define	PCI_VPDRES_SMALL_NAME(x)		(((x) >> 3) & 0xf)
1179 
1180 #define	PCI_VPDRES_LARGE_NAME(x)		((x) & 0x7f)
1181 
1182 #define	PCI_VPDRES_TYPE_COMPATIBLE_DEVICE_ID	0x3	/* small */
1183 #define	PCI_VPDRES_TYPE_VENDOR_DEFINED		0xe	/* small */
1184 #define	PCI_VPDRES_TYPE_END_TAG			0xf	/* small */
1185 
1186 #define	PCI_VPDRES_TYPE_IDENTIFIER_STRING	0x02	/* large */
1187 #define	PCI_VPDRES_TYPE_VPD			0x10	/* large */
1188 
1189 struct pci_vpd {
1190 	uint8_t		vpd_key0;
1191 	uint8_t		vpd_key1;
1192 	uint8_t		vpd_len;		/* length of data only */
1193 	/* Actual data. */
1194 } __packed;
1195 
1196 /*
1197  * Recommended VPD fields:
1198  *
1199  *	PN		Part number of assembly
1200  *	FN		FRU part number
1201  *	EC		EC level of assembly
1202  *	MN		Manufacture ID
1203  *	SN		Serial Number
1204  *
1205  * Conditionally recommended VPD fields:
1206  *
1207  *	LI		Load ID
1208  *	RL		ROM Level
1209  *	RM		Alterable ROM Level
1210  *	NA		Network Address
1211  *	DD		Device Driver Level
1212  *	DG		Diagnostic Level
1213  *	LL		Loadable Microcode Level
1214  *	VI		Vendor ID/Device ID
1215  *	FU		Function Number
1216  *	SI		Subsystem Vendor ID/Subsystem ID
1217  *
1218  * Additional VPD fields:
1219  *
1220  *	Z0-ZZ		User/Product Specific
1221  */
1222 
1223 /*
1224  * PCI Expansion Rom
1225  */
1226 
1227 struct pci_rom_header {
1228 	uint16_t		romh_magic;	/* 0xAA55 little endian */
1229 	uint8_t			romh_reserved[22];
1230 	uint16_t		romh_data_ptr;	/* pointer to pci_rom struct */
1231 } __packed;
1232 
1233 #define	PCI_ROM_HEADER_MAGIC	0xAA55		/* little endian */
1234 
1235 struct pci_rom {
1236 	uint32_t		rom_signature;
1237 	pci_vendor_id_t		rom_vendor;
1238 	pci_product_id_t	rom_product;
1239 	uint16_t		rom_vpd_ptr;	/* reserved in PCI 2.2 */
1240 	uint16_t		rom_data_len;
1241 	uint8_t			rom_data_rev;
1242 	pci_interface_t		rom_interface;	/* the class reg is 24-bits */
1243 	pci_subclass_t		rom_subclass;	/* in little endian */
1244 	pci_class_t		rom_class;
1245 	uint16_t		rom_len;	/* code length / 512 byte */
1246 	uint16_t		rom_rev;	/* code revision level */
1247 	uint8_t			rom_code_type;	/* type of code */
1248 	uint8_t			rom_indicator;
1249 	uint16_t		rom_reserved;
1250 	/* Actual data. */
1251 } __packed;
1252 
1253 #define	PCI_ROM_SIGNATURE	0x52494350	/* "PCIR", endian reversed */
1254 #define	PCI_ROM_CODE_TYPE_X86	0		/* Intel x86 BIOS */
1255 #define	PCI_ROM_CODE_TYPE_OFW	1		/* Open Firmware */
1256 #define	PCI_ROM_CODE_TYPE_HPPA	2		/* HP PA/RISC */
1257 #define	PCI_ROM_CODE_TYPE_EFI	3		/* EFI Image */
1258 
1259 #define	PCI_ROM_INDICATOR_LAST	0x80
1260 
1261 /*
1262  * Threshold below which 32bit PCI DMA needs bouncing.
1263  */
1264 #define PCI32_DMA_BOUNCE_THRESHOLD	0x100000000ULL
1265 
1266 /*
1267  * PCI-X 2.0 Extended Capability List
1268  */
1269 
1270 #define	PCI_EXTCAPLIST_BASE		0x100
1271 
1272 #define	PCI_EXTCAPLIST_CAP(ecr)		((ecr) & 0xffff)
1273 #define	PCI_EXTCAPLIST_VERSION(ecr)	(((ecr) >> 16) & 0xf)
1274 #define	PCI_EXTCAPLIST_NEXT(ecr)	(((ecr) >> 20) & 0xfff)
1275 
1276 /*
1277  * Local constants
1278  */
1279 #define PCI_INTRSTR_LEN			64
1280 
1281 #endif /* _DEV_PCI_PCIREG_H_ */
1282