pci_subr.c revision 1.96 1 1.96 msaitoh /* $NetBSD: pci_subr.c,v 1.96 2013/04/15 18:51:29 msaitoh Exp $ */
2 1.3 cgd
3 1.1 mycroft /*
4 1.22 thorpej * Copyright (c) 1997 Zubin D. Dittia. All rights reserved.
5 1.40 cgd * Copyright (c) 1995, 1996, 1998, 2000
6 1.26 cgd * Christopher G. Demetriou. All rights reserved.
7 1.30 mycroft * Copyright (c) 1994 Charles M. Hannum. All rights reserved.
8 1.1 mycroft *
9 1.1 mycroft * Redistribution and use in source and binary forms, with or without
10 1.1 mycroft * modification, are permitted provided that the following conditions
11 1.1 mycroft * are met:
12 1.1 mycroft * 1. Redistributions of source code must retain the above copyright
13 1.1 mycroft * notice, this list of conditions and the following disclaimer.
14 1.1 mycroft * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 mycroft * notice, this list of conditions and the following disclaimer in the
16 1.1 mycroft * documentation and/or other materials provided with the distribution.
17 1.1 mycroft * 3. All advertising materials mentioning features or use of this software
18 1.1 mycroft * must display the following acknowledgement:
19 1.30 mycroft * This product includes software developed by Charles M. Hannum.
20 1.1 mycroft * 4. The name of the author may not be used to endorse or promote products
21 1.1 mycroft * derived from this software without specific prior written permission.
22 1.1 mycroft *
23 1.1 mycroft * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 1.1 mycroft * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 1.1 mycroft * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 1.1 mycroft * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 1.1 mycroft * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 1.1 mycroft * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 1.1 mycroft * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 1.1 mycroft * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 1.1 mycroft * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 1.1 mycroft * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 1.1 mycroft */
34 1.1 mycroft
35 1.1 mycroft /*
36 1.10 cgd * PCI autoconfiguration support functions.
37 1.45 thorpej *
38 1.45 thorpej * Note: This file is also built into a userland library (libpci).
39 1.45 thorpej * Pay attention to this when you make modifications.
40 1.1 mycroft */
41 1.47 lukem
42 1.47 lukem #include <sys/cdefs.h>
43 1.96 msaitoh __KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.96 2013/04/15 18:51:29 msaitoh Exp $");
44 1.21 enami
45 1.45 thorpej #ifdef _KERNEL_OPT
46 1.35 cgd #include "opt_pci.h"
47 1.45 thorpej #endif
48 1.1 mycroft
49 1.1 mycroft #include <sys/param.h>
50 1.1 mycroft
51 1.45 thorpej #ifdef _KERNEL
52 1.62 simonb #include <sys/systm.h>
53 1.73 ad #include <sys/intr.h>
54 1.80 pgoyette #include <sys/module.h>
55 1.45 thorpej #else
56 1.45 thorpej #include <pci.h>
57 1.72 joerg #include <stdbool.h>
58 1.46 enami #include <stdio.h>
59 1.45 thorpej #endif
60 1.24 thorpej
61 1.10 cgd #include <dev/pci/pcireg.h>
62 1.45 thorpej #ifdef _KERNEL
63 1.7 cgd #include <dev/pci/pcivar.h>
64 1.10 cgd #endif
65 1.10 cgd
66 1.10 cgd /*
67 1.10 cgd * Descriptions of known PCI classes and subclasses.
68 1.10 cgd *
69 1.10 cgd * Subclasses are described in the same way as classes, but have a
70 1.10 cgd * NULL subclass pointer.
71 1.10 cgd */
72 1.10 cgd struct pci_class {
73 1.44 thorpej const char *name;
74 1.91 matt u_int val; /* as wide as pci_{,sub}class_t */
75 1.42 jdolecek const struct pci_class *subclasses;
76 1.10 cgd };
77 1.10 cgd
78 1.61 thorpej static const struct pci_class pci_subclass_prehistoric[] = {
79 1.65 christos { "miscellaneous", PCI_SUBCLASS_PREHISTORIC_MISC, NULL, },
80 1.65 christos { "VGA", PCI_SUBCLASS_PREHISTORIC_VGA, NULL, },
81 1.65 christos { NULL, 0, NULL, },
82 1.10 cgd };
83 1.10 cgd
84 1.61 thorpej static const struct pci_class pci_subclass_mass_storage[] = {
85 1.65 christos { "SCSI", PCI_SUBCLASS_MASS_STORAGE_SCSI, NULL, },
86 1.65 christos { "IDE", PCI_SUBCLASS_MASS_STORAGE_IDE, NULL, },
87 1.65 christos { "floppy", PCI_SUBCLASS_MASS_STORAGE_FLOPPY, NULL, },
88 1.65 christos { "IPI", PCI_SUBCLASS_MASS_STORAGE_IPI, NULL, },
89 1.65 christos { "RAID", PCI_SUBCLASS_MASS_STORAGE_RAID, NULL, },
90 1.65 christos { "ATA", PCI_SUBCLASS_MASS_STORAGE_ATA, NULL, },
91 1.65 christos { "SATA", PCI_SUBCLASS_MASS_STORAGE_SATA, NULL, },
92 1.65 christos { "SAS", PCI_SUBCLASS_MASS_STORAGE_SAS, NULL, },
93 1.94 matt { "NVM", PCI_SUBCLASS_MASS_STORAGE_NVM, NULL, },
94 1.65 christos { "miscellaneous", PCI_SUBCLASS_MASS_STORAGE_MISC, NULL, },
95 1.65 christos { NULL, 0, NULL, },
96 1.10 cgd };
97 1.10 cgd
98 1.61 thorpej static const struct pci_class pci_subclass_network[] = {
99 1.65 christos { "ethernet", PCI_SUBCLASS_NETWORK_ETHERNET, NULL, },
100 1.65 christos { "token ring", PCI_SUBCLASS_NETWORK_TOKENRING, NULL, },
101 1.65 christos { "FDDI", PCI_SUBCLASS_NETWORK_FDDI, NULL, },
102 1.65 christos { "ATM", PCI_SUBCLASS_NETWORK_ATM, NULL, },
103 1.65 christos { "ISDN", PCI_SUBCLASS_NETWORK_ISDN, NULL, },
104 1.65 christos { "WorldFip", PCI_SUBCLASS_NETWORK_WORLDFIP, NULL, },
105 1.65 christos { "PCMIG Multi Computing", PCI_SUBCLASS_NETWORK_PCIMGMULTICOMP, NULL, },
106 1.65 christos { "miscellaneous", PCI_SUBCLASS_NETWORK_MISC, NULL, },
107 1.65 christos { NULL, 0, NULL, },
108 1.10 cgd };
109 1.10 cgd
110 1.61 thorpej static const struct pci_class pci_subclass_display[] = {
111 1.65 christos { "VGA", PCI_SUBCLASS_DISPLAY_VGA, NULL, },
112 1.65 christos { "XGA", PCI_SUBCLASS_DISPLAY_XGA, NULL, },
113 1.65 christos { "3D", PCI_SUBCLASS_DISPLAY_3D, NULL, },
114 1.65 christos { "miscellaneous", PCI_SUBCLASS_DISPLAY_MISC, NULL, },
115 1.65 christos { NULL, 0, NULL, },
116 1.10 cgd };
117 1.10 cgd
118 1.61 thorpej static const struct pci_class pci_subclass_multimedia[] = {
119 1.65 christos { "video", PCI_SUBCLASS_MULTIMEDIA_VIDEO, NULL, },
120 1.65 christos { "audio", PCI_SUBCLASS_MULTIMEDIA_AUDIO, NULL, },
121 1.65 christos { "telephony", PCI_SUBCLASS_MULTIMEDIA_TELEPHONY, NULL,},
122 1.93 chs { "HD audio", PCI_SUBCLASS_MULTIMEDIA_HDAUDIO, NULL, },
123 1.65 christos { "miscellaneous", PCI_SUBCLASS_MULTIMEDIA_MISC, NULL, },
124 1.65 christos { NULL, 0, NULL, },
125 1.10 cgd };
126 1.10 cgd
127 1.61 thorpej static const struct pci_class pci_subclass_memory[] = {
128 1.65 christos { "RAM", PCI_SUBCLASS_MEMORY_RAM, NULL, },
129 1.65 christos { "flash", PCI_SUBCLASS_MEMORY_FLASH, NULL, },
130 1.65 christos { "miscellaneous", PCI_SUBCLASS_MEMORY_MISC, NULL, },
131 1.65 christos { NULL, 0, NULL, },
132 1.10 cgd };
133 1.10 cgd
134 1.61 thorpej static const struct pci_class pci_subclass_bridge[] = {
135 1.65 christos { "host", PCI_SUBCLASS_BRIDGE_HOST, NULL, },
136 1.65 christos { "ISA", PCI_SUBCLASS_BRIDGE_ISA, NULL, },
137 1.65 christos { "EISA", PCI_SUBCLASS_BRIDGE_EISA, NULL, },
138 1.65 christos { "MicroChannel", PCI_SUBCLASS_BRIDGE_MC, NULL, },
139 1.65 christos { "PCI", PCI_SUBCLASS_BRIDGE_PCI, NULL, },
140 1.65 christos { "PCMCIA", PCI_SUBCLASS_BRIDGE_PCMCIA, NULL, },
141 1.65 christos { "NuBus", PCI_SUBCLASS_BRIDGE_NUBUS, NULL, },
142 1.65 christos { "CardBus", PCI_SUBCLASS_BRIDGE_CARDBUS, NULL, },
143 1.65 christos { "RACEway", PCI_SUBCLASS_BRIDGE_RACEWAY, NULL, },
144 1.65 christos { "Semi-transparent PCI", PCI_SUBCLASS_BRIDGE_STPCI, NULL, },
145 1.65 christos { "InfiniBand", PCI_SUBCLASS_BRIDGE_INFINIBAND, NULL, },
146 1.65 christos { "miscellaneous", PCI_SUBCLASS_BRIDGE_MISC, NULL, },
147 1.65 christos { NULL, 0, NULL, },
148 1.10 cgd };
149 1.10 cgd
150 1.61 thorpej static const struct pci_class pci_subclass_communications[] = {
151 1.65 christos { "serial", PCI_SUBCLASS_COMMUNICATIONS_SERIAL, NULL, },
152 1.65 christos { "parallel", PCI_SUBCLASS_COMMUNICATIONS_PARALLEL, NULL, },
153 1.65 christos { "multi-port serial", PCI_SUBCLASS_COMMUNICATIONS_MPSERIAL, NULL, },
154 1.65 christos { "modem", PCI_SUBCLASS_COMMUNICATIONS_MODEM, NULL, },
155 1.65 christos { "GPIB", PCI_SUBCLASS_COMMUNICATIONS_GPIB, NULL, },
156 1.65 christos { "smartcard", PCI_SUBCLASS_COMMUNICATIONS_SMARTCARD, NULL, },
157 1.65 christos { "miscellaneous", PCI_SUBCLASS_COMMUNICATIONS_MISC, NULL, },
158 1.65 christos { NULL, 0, NULL, },
159 1.20 cgd };
160 1.20 cgd
161 1.61 thorpej static const struct pci_class pci_subclass_system[] = {
162 1.65 christos { "interrupt", PCI_SUBCLASS_SYSTEM_PIC, NULL, },
163 1.65 christos { "8237 DMA", PCI_SUBCLASS_SYSTEM_DMA, NULL, },
164 1.65 christos { "8254 timer", PCI_SUBCLASS_SYSTEM_TIMER, NULL, },
165 1.65 christos { "RTC", PCI_SUBCLASS_SYSTEM_RTC, NULL, },
166 1.65 christos { "PCI Hot-Plug", PCI_SUBCLASS_SYSTEM_PCIHOTPLUG, NULL, },
167 1.65 christos { "SD Host Controller", PCI_SUBCLASS_SYSTEM_SDHC, NULL, },
168 1.65 christos { "miscellaneous", PCI_SUBCLASS_SYSTEM_MISC, NULL, },
169 1.65 christos { NULL, 0, NULL, },
170 1.20 cgd };
171 1.20 cgd
172 1.61 thorpej static const struct pci_class pci_subclass_input[] = {
173 1.65 christos { "keyboard", PCI_SUBCLASS_INPUT_KEYBOARD, NULL, },
174 1.65 christos { "digitizer", PCI_SUBCLASS_INPUT_DIGITIZER, NULL, },
175 1.65 christos { "mouse", PCI_SUBCLASS_INPUT_MOUSE, NULL, },
176 1.65 christos { "scanner", PCI_SUBCLASS_INPUT_SCANNER, NULL, },
177 1.65 christos { "game port", PCI_SUBCLASS_INPUT_GAMEPORT, NULL, },
178 1.65 christos { "miscellaneous", PCI_SUBCLASS_INPUT_MISC, NULL, },
179 1.65 christos { NULL, 0, NULL, },
180 1.20 cgd };
181 1.20 cgd
182 1.61 thorpej static const struct pci_class pci_subclass_dock[] = {
183 1.65 christos { "generic", PCI_SUBCLASS_DOCK_GENERIC, NULL, },
184 1.65 christos { "miscellaneous", PCI_SUBCLASS_DOCK_MISC, NULL, },
185 1.65 christos { NULL, 0, NULL, },
186 1.20 cgd };
187 1.20 cgd
188 1.61 thorpej static const struct pci_class pci_subclass_processor[] = {
189 1.65 christos { "386", PCI_SUBCLASS_PROCESSOR_386, NULL, },
190 1.65 christos { "486", PCI_SUBCLASS_PROCESSOR_486, NULL, },
191 1.65 christos { "Pentium", PCI_SUBCLASS_PROCESSOR_PENTIUM, NULL, },
192 1.65 christos { "Alpha", PCI_SUBCLASS_PROCESSOR_ALPHA, NULL, },
193 1.65 christos { "PowerPC", PCI_SUBCLASS_PROCESSOR_POWERPC, NULL, },
194 1.65 christos { "MIPS", PCI_SUBCLASS_PROCESSOR_MIPS, NULL, },
195 1.65 christos { "Co-processor", PCI_SUBCLASS_PROCESSOR_COPROC, NULL, },
196 1.65 christos { NULL, 0, NULL, },
197 1.20 cgd };
198 1.20 cgd
199 1.61 thorpej static const struct pci_class pci_subclass_serialbus[] = {
200 1.65 christos { "Firewire", PCI_SUBCLASS_SERIALBUS_FIREWIRE, NULL, },
201 1.65 christos { "ACCESS.bus", PCI_SUBCLASS_SERIALBUS_ACCESS, NULL, },
202 1.65 christos { "SSA", PCI_SUBCLASS_SERIALBUS_SSA, NULL, },
203 1.65 christos { "USB", PCI_SUBCLASS_SERIALBUS_USB, NULL, },
204 1.32 cgd /* XXX Fiber Channel/_FIBRECHANNEL */
205 1.65 christos { "Fiber Channel", PCI_SUBCLASS_SERIALBUS_FIBER, NULL, },
206 1.65 christos { "SMBus", PCI_SUBCLASS_SERIALBUS_SMBUS, NULL, },
207 1.65 christos { "InfiniBand", PCI_SUBCLASS_SERIALBUS_INFINIBAND, NULL,},
208 1.65 christos { "IPMI", PCI_SUBCLASS_SERIALBUS_IPMI, NULL, },
209 1.65 christos { "SERCOS", PCI_SUBCLASS_SERIALBUS_SERCOS, NULL, },
210 1.65 christos { "CANbus", PCI_SUBCLASS_SERIALBUS_CANBUS, NULL, },
211 1.65 christos { NULL, 0, NULL, },
212 1.32 cgd };
213 1.32 cgd
214 1.61 thorpej static const struct pci_class pci_subclass_wireless[] = {
215 1.65 christos { "IrDA", PCI_SUBCLASS_WIRELESS_IRDA, NULL, },
216 1.65 christos { "Consumer IR", PCI_SUBCLASS_WIRELESS_CONSUMERIR, NULL, },
217 1.65 christos { "RF", PCI_SUBCLASS_WIRELESS_RF, NULL, },
218 1.65 christos { "bluetooth", PCI_SUBCLASS_WIRELESS_BLUETOOTH, NULL, },
219 1.65 christos { "broadband", PCI_SUBCLASS_WIRELESS_BROADBAND, NULL, },
220 1.65 christos { "802.11a (5 GHz)", PCI_SUBCLASS_WIRELESS_802_11A, NULL, },
221 1.65 christos { "802.11b (2.4 GHz)", PCI_SUBCLASS_WIRELESS_802_11B, NULL, },
222 1.65 christos { "miscellaneous", PCI_SUBCLASS_WIRELESS_MISC, NULL, },
223 1.65 christos { NULL, 0, NULL, },
224 1.32 cgd };
225 1.32 cgd
226 1.61 thorpej static const struct pci_class pci_subclass_i2o[] = {
227 1.65 christos { "standard", PCI_SUBCLASS_I2O_STANDARD, NULL, },
228 1.65 christos { NULL, 0, NULL, },
229 1.32 cgd };
230 1.32 cgd
231 1.61 thorpej static const struct pci_class pci_subclass_satcom[] = {
232 1.65 christos { "TV", PCI_SUBCLASS_SATCOM_TV, NULL, },
233 1.65 christos { "audio", PCI_SUBCLASS_SATCOM_AUDIO, NULL, },
234 1.65 christos { "voice", PCI_SUBCLASS_SATCOM_VOICE, NULL, },
235 1.65 christos { "data", PCI_SUBCLASS_SATCOM_DATA, NULL, },
236 1.65 christos { NULL, 0, NULL, },
237 1.32 cgd };
238 1.32 cgd
239 1.61 thorpej static const struct pci_class pci_subclass_crypto[] = {
240 1.65 christos { "network/computing", PCI_SUBCLASS_CRYPTO_NETCOMP, NULL, },
241 1.65 christos { "entertainment", PCI_SUBCLASS_CRYPTO_ENTERTAINMENT, NULL,},
242 1.65 christos { "miscellaneous", PCI_SUBCLASS_CRYPTO_MISC, NULL, },
243 1.65 christos { NULL, 0, NULL, },
244 1.32 cgd };
245 1.32 cgd
246 1.61 thorpej static const struct pci_class pci_subclass_dasp[] = {
247 1.65 christos { "DPIO", PCI_SUBCLASS_DASP_DPIO, NULL, },
248 1.65 christos { "Time and Frequency", PCI_SUBCLASS_DASP_TIMEFREQ, NULL, },
249 1.65 christos { "synchronization", PCI_SUBCLASS_DASP_SYNC, NULL, },
250 1.65 christos { "management", PCI_SUBCLASS_DASP_MGMT, NULL, },
251 1.65 christos { "miscellaneous", PCI_SUBCLASS_DASP_MISC, NULL, },
252 1.65 christos { NULL, 0, NULL, },
253 1.20 cgd };
254 1.20 cgd
255 1.61 thorpej static const struct pci_class pci_class[] = {
256 1.10 cgd { "prehistoric", PCI_CLASS_PREHISTORIC,
257 1.10 cgd pci_subclass_prehistoric, },
258 1.10 cgd { "mass storage", PCI_CLASS_MASS_STORAGE,
259 1.10 cgd pci_subclass_mass_storage, },
260 1.10 cgd { "network", PCI_CLASS_NETWORK,
261 1.10 cgd pci_subclass_network, },
262 1.10 cgd { "display", PCI_CLASS_DISPLAY,
263 1.11 cgd pci_subclass_display, },
264 1.10 cgd { "multimedia", PCI_CLASS_MULTIMEDIA,
265 1.10 cgd pci_subclass_multimedia, },
266 1.10 cgd { "memory", PCI_CLASS_MEMORY,
267 1.10 cgd pci_subclass_memory, },
268 1.10 cgd { "bridge", PCI_CLASS_BRIDGE,
269 1.10 cgd pci_subclass_bridge, },
270 1.20 cgd { "communications", PCI_CLASS_COMMUNICATIONS,
271 1.20 cgd pci_subclass_communications, },
272 1.20 cgd { "system", PCI_CLASS_SYSTEM,
273 1.20 cgd pci_subclass_system, },
274 1.20 cgd { "input", PCI_CLASS_INPUT,
275 1.20 cgd pci_subclass_input, },
276 1.20 cgd { "dock", PCI_CLASS_DOCK,
277 1.20 cgd pci_subclass_dock, },
278 1.20 cgd { "processor", PCI_CLASS_PROCESSOR,
279 1.20 cgd pci_subclass_processor, },
280 1.20 cgd { "serial bus", PCI_CLASS_SERIALBUS,
281 1.20 cgd pci_subclass_serialbus, },
282 1.32 cgd { "wireless", PCI_CLASS_WIRELESS,
283 1.32 cgd pci_subclass_wireless, },
284 1.32 cgd { "I2O", PCI_CLASS_I2O,
285 1.32 cgd pci_subclass_i2o, },
286 1.32 cgd { "satellite comm", PCI_CLASS_SATCOM,
287 1.32 cgd pci_subclass_satcom, },
288 1.32 cgd { "crypto", PCI_CLASS_CRYPTO,
289 1.32 cgd pci_subclass_crypto, },
290 1.32 cgd { "DASP", PCI_CLASS_DASP,
291 1.32 cgd pci_subclass_dasp, },
292 1.10 cgd { "undefined", PCI_CLASS_UNDEFINED,
293 1.65 christos NULL, },
294 1.65 christos { NULL, 0,
295 1.65 christos NULL, },
296 1.10 cgd };
297 1.10 cgd
298 1.83 pgoyette void pci_load_verbose(void);
299 1.83 pgoyette
300 1.80 pgoyette #if defined(_KERNEL)
301 1.80 pgoyette /*
302 1.80 pgoyette * In kernel, these routines are provided and linked via the
303 1.80 pgoyette * pciverbose module.
304 1.80 pgoyette */
305 1.83 pgoyette const char *pci_findvendor_stub(pcireg_t);
306 1.83 pgoyette const char *pci_findproduct_stub(pcireg_t);
307 1.83 pgoyette
308 1.83 pgoyette const char *(*pci_findvendor)(pcireg_t) = pci_findvendor_stub;
309 1.83 pgoyette const char *(*pci_findproduct)(pcireg_t) = pci_findproduct_stub;
310 1.80 pgoyette const char *pci_unmatched = "";
311 1.80 pgoyette #else
312 1.10 cgd /*
313 1.80 pgoyette * For userland we just set the vectors here.
314 1.10 cgd */
315 1.81 pgoyette const char *(*pci_findvendor)(pcireg_t id_reg) = pci_findvendor_real;
316 1.81 pgoyette const char *(*pci_findproduct)(pcireg_t id_reg) = pci_findproduct_real;
317 1.80 pgoyette const char *pci_unmatched = "unmatched ";
318 1.76 matt #endif
319 1.76 matt
320 1.83 pgoyette int pciverbose_loaded = 0;
321 1.59 mycroft
322 1.80 pgoyette #if defined(_KERNEL)
323 1.80 pgoyette /*
324 1.83 pgoyette * Routine to load the pciverbose kernel module as needed
325 1.80 pgoyette */
326 1.83 pgoyette void pci_load_verbose(void)
327 1.59 mycroft {
328 1.85 pgoyette if (pciverbose_loaded == 0)
329 1.84 pgoyette module_autoload("pciverbose", MODULE_CLASS_MISC);
330 1.83 pgoyette }
331 1.80 pgoyette
332 1.83 pgoyette const char *pci_findvendor_stub(pcireg_t id_reg)
333 1.83 pgoyette {
334 1.83 pgoyette pci_load_verbose();
335 1.83 pgoyette if (pciverbose_loaded)
336 1.83 pgoyette return pci_findvendor(id_reg);
337 1.83 pgoyette else
338 1.83 pgoyette return NULL;
339 1.83 pgoyette }
340 1.83 pgoyette
341 1.83 pgoyette const char *pci_findproduct_stub(pcireg_t id_reg)
342 1.83 pgoyette {
343 1.83 pgoyette pci_load_verbose();
344 1.83 pgoyette if (pciverbose_loaded)
345 1.83 pgoyette return pci_findproduct(id_reg);
346 1.83 pgoyette else
347 1.83 pgoyette return NULL;
348 1.80 pgoyette }
349 1.29 augustss #endif
350 1.10 cgd
351 1.10 cgd void
352 1.58 itojun pci_devinfo(pcireg_t id_reg, pcireg_t class_reg, int showclass, char *cp,
353 1.58 itojun size_t l)
354 1.10 cgd {
355 1.10 cgd pci_vendor_id_t vendor;
356 1.10 cgd pci_product_id_t product;
357 1.10 cgd pci_class_t class;
358 1.10 cgd pci_subclass_t subclass;
359 1.10 cgd pci_interface_t interface;
360 1.10 cgd pci_revision_t revision;
361 1.80 pgoyette const char *unmatched = pci_unmatched;
362 1.59 mycroft const char *vendor_namep, *product_namep;
363 1.42 jdolecek const struct pci_class *classp, *subclassp;
364 1.58 itojun char *ep;
365 1.58 itojun
366 1.58 itojun ep = cp + l;
367 1.10 cgd
368 1.10 cgd vendor = PCI_VENDOR(id_reg);
369 1.10 cgd product = PCI_PRODUCT(id_reg);
370 1.10 cgd
371 1.10 cgd class = PCI_CLASS(class_reg);
372 1.10 cgd subclass = PCI_SUBCLASS(class_reg);
373 1.10 cgd interface = PCI_INTERFACE(class_reg);
374 1.10 cgd revision = PCI_REVISION(class_reg);
375 1.10 cgd
376 1.81 pgoyette vendor_namep = pci_findvendor(id_reg);
377 1.81 pgoyette product_namep = pci_findproduct(id_reg);
378 1.10 cgd
379 1.10 cgd classp = pci_class;
380 1.10 cgd while (classp->name != NULL) {
381 1.10 cgd if (class == classp->val)
382 1.10 cgd break;
383 1.10 cgd classp++;
384 1.10 cgd }
385 1.10 cgd
386 1.10 cgd subclassp = (classp->name != NULL) ? classp->subclasses : NULL;
387 1.10 cgd while (subclassp && subclassp->name != NULL) {
388 1.10 cgd if (subclass == subclassp->val)
389 1.10 cgd break;
390 1.10 cgd subclassp++;
391 1.10 cgd }
392 1.10 cgd
393 1.10 cgd if (vendor_namep == NULL)
394 1.58 itojun cp += snprintf(cp, ep - cp, "%svendor 0x%04x product 0x%04x",
395 1.15 cgd unmatched, vendor, product);
396 1.10 cgd else if (product_namep != NULL)
397 1.58 itojun cp += snprintf(cp, ep - cp, "%s %s", vendor_namep,
398 1.58 itojun product_namep);
399 1.10 cgd else
400 1.58 itojun cp += snprintf(cp, ep - cp, "%s product 0x%04x",
401 1.10 cgd vendor_namep, product);
402 1.13 cgd if (showclass) {
403 1.58 itojun cp += snprintf(cp, ep - cp, " (");
404 1.13 cgd if (classp->name == NULL)
405 1.58 itojun cp += snprintf(cp, ep - cp,
406 1.58 itojun "class 0x%02x, subclass 0x%02x", class, subclass);
407 1.13 cgd else {
408 1.13 cgd if (subclassp == NULL || subclassp->name == NULL)
409 1.58 itojun cp += snprintf(cp, ep - cp,
410 1.78 drochner "%s, subclass 0x%02x",
411 1.20 cgd classp->name, subclass);
412 1.13 cgd else
413 1.58 itojun cp += snprintf(cp, ep - cp, "%s %s",
414 1.20 cgd subclassp->name, classp->name);
415 1.13 cgd }
416 1.20 cgd if (interface != 0)
417 1.58 itojun cp += snprintf(cp, ep - cp, ", interface 0x%02x",
418 1.58 itojun interface);
419 1.20 cgd if (revision != 0)
420 1.58 itojun cp += snprintf(cp, ep - cp, ", revision 0x%02x",
421 1.58 itojun revision);
422 1.58 itojun cp += snprintf(cp, ep - cp, ")");
423 1.13 cgd }
424 1.22 thorpej }
425 1.22 thorpej
426 1.89 drochner #ifdef _KERNEL
427 1.89 drochner void
428 1.90 drochner pci_aprint_devinfo_fancy(const struct pci_attach_args *pa, const char *naive,
429 1.90 drochner const char *known, int addrev)
430 1.89 drochner {
431 1.89 drochner char devinfo[256];
432 1.89 drochner
433 1.90 drochner if (known) {
434 1.90 drochner aprint_normal(": %s", known);
435 1.90 drochner if (addrev)
436 1.90 drochner aprint_normal(" (rev. 0x%02x)",
437 1.90 drochner PCI_REVISION(pa->pa_class));
438 1.90 drochner aprint_normal("\n");
439 1.90 drochner } else {
440 1.90 drochner pci_devinfo(pa->pa_id, pa->pa_class, 0,
441 1.90 drochner devinfo, sizeof(devinfo));
442 1.90 drochner aprint_normal(": %s (rev. 0x%02x)\n", devinfo,
443 1.90 drochner PCI_REVISION(pa->pa_class));
444 1.90 drochner }
445 1.90 drochner if (naive)
446 1.90 drochner aprint_naive(": %s\n", naive);
447 1.90 drochner else
448 1.90 drochner aprint_naive("\n");
449 1.89 drochner }
450 1.89 drochner #endif
451 1.89 drochner
452 1.22 thorpej /*
453 1.22 thorpej * Print out most of the PCI configuration registers. Typically used
454 1.22 thorpej * in a device attach routine like this:
455 1.22 thorpej *
456 1.22 thorpej * #ifdef MYDEV_DEBUG
457 1.95 chs * printf("%s: ", device_xname(sc->sc_dev));
458 1.43 enami * pci_conf_print(pa->pa_pc, pa->pa_tag, NULL);
459 1.22 thorpej * #endif
460 1.22 thorpej */
461 1.26 cgd
462 1.26 cgd #define i2o(i) ((i) * 4)
463 1.26 cgd #define o2i(o) ((o) / 4)
464 1.86 matt #define onoff2(str, bit, onstr, offstr) \
465 1.86 matt printf(" %s: %s\n", (str), (rval & (bit)) ? onstr : offstr);
466 1.86 matt #define onoff(str, bit) onoff2(str, bit, "on", "off")
467 1.26 cgd
468 1.26 cgd static void
469 1.45 thorpej pci_conf_print_common(
470 1.45 thorpej #ifdef _KERNEL
471 1.71 christos pci_chipset_tag_t pc, pcitag_t tag,
472 1.45 thorpej #endif
473 1.45 thorpej const pcireg_t *regs)
474 1.22 thorpej {
475 1.59 mycroft const char *name;
476 1.42 jdolecek const struct pci_class *classp, *subclassp;
477 1.26 cgd pcireg_t rval;
478 1.22 thorpej
479 1.26 cgd rval = regs[o2i(PCI_ID_REG)];
480 1.81 pgoyette name = pci_findvendor(rval);
481 1.59 mycroft if (name)
482 1.59 mycroft printf(" Vendor Name: %s (0x%04x)\n", name,
483 1.26 cgd PCI_VENDOR(rval));
484 1.22 thorpej else
485 1.26 cgd printf(" Vendor ID: 0x%04x\n", PCI_VENDOR(rval));
486 1.81 pgoyette name = pci_findproduct(rval);
487 1.59 mycroft if (name)
488 1.59 mycroft printf(" Device Name: %s (0x%04x)\n", name,
489 1.26 cgd PCI_PRODUCT(rval));
490 1.22 thorpej else
491 1.26 cgd printf(" Device ID: 0x%04x\n", PCI_PRODUCT(rval));
492 1.22 thorpej
493 1.26 cgd rval = regs[o2i(PCI_COMMAND_STATUS_REG)];
494 1.23 drochner
495 1.26 cgd printf(" Command register: 0x%04x\n", rval & 0xffff);
496 1.26 cgd onoff("I/O space accesses", PCI_COMMAND_IO_ENABLE);
497 1.26 cgd onoff("Memory space accesses", PCI_COMMAND_MEM_ENABLE);
498 1.26 cgd onoff("Bus mastering", PCI_COMMAND_MASTER_ENABLE);
499 1.26 cgd onoff("Special cycles", PCI_COMMAND_SPECIAL_ENABLE);
500 1.26 cgd onoff("MWI transactions", PCI_COMMAND_INVALIDATE_ENABLE);
501 1.26 cgd onoff("Palette snooping", PCI_COMMAND_PALETTE_ENABLE);
502 1.26 cgd onoff("Parity error checking", PCI_COMMAND_PARITY_ENABLE);
503 1.26 cgd onoff("Address/data stepping", PCI_COMMAND_STEPPING_ENABLE);
504 1.26 cgd onoff("System error (SERR)", PCI_COMMAND_SERR_ENABLE);
505 1.26 cgd onoff("Fast back-to-back transactions", PCI_COMMAND_BACKTOBACK_ENABLE);
506 1.70 drochner onoff("Interrupt disable", PCI_COMMAND_INTERRUPT_DISABLE);
507 1.26 cgd
508 1.26 cgd printf(" Status register: 0x%04x\n", (rval >> 16) & 0xffff);
509 1.86 matt onoff2("Interrupt status", PCI_STATUS_INT_STATUS, "active", "inactive");
510 1.33 kleink onoff("Capability List support", PCI_STATUS_CAPLIST_SUPPORT);
511 1.26 cgd onoff("66 MHz capable", PCI_STATUS_66MHZ_SUPPORT);
512 1.26 cgd onoff("User Definable Features (UDF) support", PCI_STATUS_UDF_SUPPORT);
513 1.26 cgd onoff("Fast back-to-back capable", PCI_STATUS_BACKTOBACK_SUPPORT);
514 1.26 cgd onoff("Data parity error detected", PCI_STATUS_PARITY_ERROR);
515 1.22 thorpej
516 1.26 cgd printf(" DEVSEL timing: ");
517 1.22 thorpej switch (rval & PCI_STATUS_DEVSEL_MASK) {
518 1.22 thorpej case PCI_STATUS_DEVSEL_FAST:
519 1.22 thorpej printf("fast");
520 1.22 thorpej break;
521 1.22 thorpej case PCI_STATUS_DEVSEL_MEDIUM:
522 1.22 thorpej printf("medium");
523 1.22 thorpej break;
524 1.22 thorpej case PCI_STATUS_DEVSEL_SLOW:
525 1.22 thorpej printf("slow");
526 1.22 thorpej break;
527 1.26 cgd default:
528 1.26 cgd printf("unknown/reserved"); /* XXX */
529 1.26 cgd break;
530 1.22 thorpej }
531 1.26 cgd printf(" (0x%x)\n", (rval & PCI_STATUS_DEVSEL_MASK) >> 25);
532 1.22 thorpej
533 1.26 cgd onoff("Slave signaled Target Abort", PCI_STATUS_TARGET_TARGET_ABORT);
534 1.26 cgd onoff("Master received Target Abort", PCI_STATUS_MASTER_TARGET_ABORT);
535 1.26 cgd onoff("Master received Master Abort", PCI_STATUS_MASTER_ABORT);
536 1.26 cgd onoff("Asserted System Error (SERR)", PCI_STATUS_SPECIAL_ERROR);
537 1.26 cgd onoff("Parity error detected", PCI_STATUS_PARITY_DETECT);
538 1.22 thorpej
539 1.26 cgd rval = regs[o2i(PCI_CLASS_REG)];
540 1.22 thorpej for (classp = pci_class; classp->name != NULL; classp++) {
541 1.22 thorpej if (PCI_CLASS(rval) == classp->val)
542 1.22 thorpej break;
543 1.22 thorpej }
544 1.22 thorpej subclassp = (classp->name != NULL) ? classp->subclasses : NULL;
545 1.22 thorpej while (subclassp && subclassp->name != NULL) {
546 1.22 thorpej if (PCI_SUBCLASS(rval) == subclassp->val)
547 1.22 thorpej break;
548 1.22 thorpej subclassp++;
549 1.22 thorpej }
550 1.22 thorpej if (classp->name != NULL) {
551 1.26 cgd printf(" Class Name: %s (0x%02x)\n", classp->name,
552 1.26 cgd PCI_CLASS(rval));
553 1.22 thorpej if (subclassp != NULL && subclassp->name != NULL)
554 1.26 cgd printf(" Subclass Name: %s (0x%02x)\n",
555 1.26 cgd subclassp->name, PCI_SUBCLASS(rval));
556 1.22 thorpej else
557 1.26 cgd printf(" Subclass ID: 0x%02x\n", PCI_SUBCLASS(rval));
558 1.22 thorpej } else {
559 1.26 cgd printf(" Class ID: 0x%02x\n", PCI_CLASS(rval));
560 1.26 cgd printf(" Subclass ID: 0x%02x\n", PCI_SUBCLASS(rval));
561 1.22 thorpej }
562 1.26 cgd printf(" Interface: 0x%02x\n", PCI_INTERFACE(rval));
563 1.26 cgd printf(" Revision ID: 0x%02x\n", PCI_REVISION(rval));
564 1.22 thorpej
565 1.26 cgd rval = regs[o2i(PCI_BHLC_REG)];
566 1.26 cgd printf(" BIST: 0x%02x\n", PCI_BIST(rval));
567 1.26 cgd printf(" Header Type: 0x%02x%s (0x%02x)\n", PCI_HDRTYPE_TYPE(rval),
568 1.26 cgd PCI_HDRTYPE_MULTIFN(rval) ? "+multifunction" : "",
569 1.26 cgd PCI_HDRTYPE(rval));
570 1.26 cgd printf(" Latency Timer: 0x%02x\n", PCI_LATTIMER(rval));
571 1.26 cgd printf(" Cache Line Size: 0x%02x\n", PCI_CACHELINE(rval));
572 1.26 cgd }
573 1.22 thorpej
574 1.37 nathanw static int
575 1.45 thorpej pci_conf_print_bar(
576 1.45 thorpej #ifdef _KERNEL
577 1.45 thorpej pci_chipset_tag_t pc, pcitag_t tag,
578 1.45 thorpej #endif
579 1.45 thorpej const pcireg_t *regs, int reg, const char *name
580 1.45 thorpej #ifdef _KERNEL
581 1.45 thorpej , int sizebar
582 1.45 thorpej #endif
583 1.45 thorpej )
584 1.26 cgd {
585 1.45 thorpej int width;
586 1.45 thorpej pcireg_t rval, rval64h;
587 1.45 thorpej #ifdef _KERNEL
588 1.45 thorpej int s;
589 1.45 thorpej pcireg_t mask, mask64h;
590 1.45 thorpej #endif
591 1.45 thorpej
592 1.37 nathanw width = 4;
593 1.22 thorpej
594 1.27 cgd /*
595 1.27 cgd * Section 6.2.5.1, `Address Maps', tells us that:
596 1.27 cgd *
597 1.27 cgd * 1) The builtin software should have already mapped the
598 1.27 cgd * device in a reasonable way.
599 1.27 cgd *
600 1.27 cgd * 2) A device which wants 2^n bytes of memory will hardwire
601 1.27 cgd * the bottom n bits of the address to 0. As recommended,
602 1.27 cgd * we write all 1s and see what we get back.
603 1.27 cgd */
604 1.45 thorpej
605 1.27 cgd rval = regs[o2i(reg)];
606 1.45 thorpej if (PCI_MAPREG_TYPE(rval) == PCI_MAPREG_TYPE_MEM &&
607 1.45 thorpej PCI_MAPREG_MEM_TYPE(rval) == PCI_MAPREG_MEM_TYPE_64BIT) {
608 1.45 thorpej rval64h = regs[o2i(reg + 4)];
609 1.45 thorpej width = 8;
610 1.45 thorpej } else
611 1.45 thorpej rval64h = 0;
612 1.45 thorpej
613 1.45 thorpej #ifdef _KERNEL
614 1.38 cgd /* XXX don't size unknown memory type? */
615 1.38 cgd if (rval != 0 && sizebar) {
616 1.24 thorpej /*
617 1.27 cgd * The following sequence seems to make some devices
618 1.27 cgd * (e.g. host bus bridges, which don't normally
619 1.27 cgd * have their space mapped) very unhappy, to
620 1.27 cgd * the point of crashing the system.
621 1.24 thorpej *
622 1.27 cgd * Therefore, if the mapping register is zero to
623 1.27 cgd * start out with, don't bother trying.
624 1.24 thorpej */
625 1.27 cgd s = splhigh();
626 1.27 cgd pci_conf_write(pc, tag, reg, 0xffffffff);
627 1.27 cgd mask = pci_conf_read(pc, tag, reg);
628 1.27 cgd pci_conf_write(pc, tag, reg, rval);
629 1.37 nathanw if (PCI_MAPREG_TYPE(rval) == PCI_MAPREG_TYPE_MEM &&
630 1.37 nathanw PCI_MAPREG_MEM_TYPE(rval) == PCI_MAPREG_MEM_TYPE_64BIT) {
631 1.37 nathanw pci_conf_write(pc, tag, reg + 4, 0xffffffff);
632 1.37 nathanw mask64h = pci_conf_read(pc, tag, reg + 4);
633 1.37 nathanw pci_conf_write(pc, tag, reg + 4, rval64h);
634 1.54 scw } else
635 1.54 scw mask64h = 0;
636 1.27 cgd splx(s);
637 1.27 cgd } else
638 1.54 scw mask = mask64h = 0;
639 1.45 thorpej #endif /* _KERNEL */
640 1.27 cgd
641 1.28 cgd printf(" Base address register at 0x%02x", reg);
642 1.28 cgd if (name)
643 1.28 cgd printf(" (%s)", name);
644 1.28 cgd printf("\n ");
645 1.27 cgd if (rval == 0) {
646 1.27 cgd printf("not implemented(?)\n");
647 1.37 nathanw return width;
648 1.60 perry }
649 1.28 cgd printf("type: ");
650 1.28 cgd if (PCI_MAPREG_TYPE(rval) == PCI_MAPREG_TYPE_MEM) {
651 1.34 drochner const char *type, *prefetch;
652 1.27 cgd
653 1.27 cgd switch (PCI_MAPREG_MEM_TYPE(rval)) {
654 1.27 cgd case PCI_MAPREG_MEM_TYPE_32BIT:
655 1.27 cgd type = "32-bit";
656 1.27 cgd break;
657 1.27 cgd case PCI_MAPREG_MEM_TYPE_32BIT_1M:
658 1.27 cgd type = "32-bit-1M";
659 1.27 cgd break;
660 1.27 cgd case PCI_MAPREG_MEM_TYPE_64BIT:
661 1.27 cgd type = "64-bit";
662 1.27 cgd break;
663 1.27 cgd default:
664 1.27 cgd type = "unknown (XXX)";
665 1.27 cgd break;
666 1.22 thorpej }
667 1.34 drochner if (PCI_MAPREG_MEM_PREFETCHABLE(rval))
668 1.34 drochner prefetch = "";
669 1.27 cgd else
670 1.34 drochner prefetch = "non";
671 1.34 drochner printf("%s %sprefetchable memory\n", type, prefetch);
672 1.37 nathanw switch (PCI_MAPREG_MEM_TYPE(rval)) {
673 1.37 nathanw case PCI_MAPREG_MEM_TYPE_64BIT:
674 1.38 cgd printf(" base: 0x%016llx, ",
675 1.37 nathanw PCI_MAPREG_MEM64_ADDR(
676 1.38 cgd ((((long long) rval64h) << 32) | rval)));
677 1.45 thorpej #ifdef _KERNEL
678 1.38 cgd if (sizebar)
679 1.38 cgd printf("size: 0x%016llx",
680 1.38 cgd PCI_MAPREG_MEM64_SIZE(
681 1.38 cgd ((((long long) mask64h) << 32) | mask)));
682 1.38 cgd else
683 1.45 thorpej #endif /* _KERNEL */
684 1.38 cgd printf("not sized");
685 1.38 cgd printf("\n");
686 1.37 nathanw break;
687 1.37 nathanw case PCI_MAPREG_MEM_TYPE_32BIT:
688 1.37 nathanw case PCI_MAPREG_MEM_TYPE_32BIT_1M:
689 1.37 nathanw default:
690 1.38 cgd printf(" base: 0x%08x, ",
691 1.38 cgd PCI_MAPREG_MEM_ADDR(rval));
692 1.45 thorpej #ifdef _KERNEL
693 1.38 cgd if (sizebar)
694 1.38 cgd printf("size: 0x%08x",
695 1.38 cgd PCI_MAPREG_MEM_SIZE(mask));
696 1.38 cgd else
697 1.45 thorpej #endif /* _KERNEL */
698 1.38 cgd printf("not sized");
699 1.38 cgd printf("\n");
700 1.37 nathanw break;
701 1.37 nathanw }
702 1.27 cgd } else {
703 1.45 thorpej #ifdef _KERNEL
704 1.38 cgd if (sizebar)
705 1.38 cgd printf("%d-bit ", mask & ~0x0000ffff ? 32 : 16);
706 1.45 thorpej #endif /* _KERNEL */
707 1.27 cgd printf("i/o\n");
708 1.38 cgd printf(" base: 0x%08x, ", PCI_MAPREG_IO_ADDR(rval));
709 1.45 thorpej #ifdef _KERNEL
710 1.38 cgd if (sizebar)
711 1.38 cgd printf("size: 0x%08x", PCI_MAPREG_IO_SIZE(mask));
712 1.38 cgd else
713 1.45 thorpej #endif /* _KERNEL */
714 1.38 cgd printf("not sized");
715 1.38 cgd printf("\n");
716 1.22 thorpej }
717 1.37 nathanw
718 1.37 nathanw return width;
719 1.27 cgd }
720 1.28 cgd
721 1.28 cgd static void
722 1.44 thorpej pci_conf_print_regs(const pcireg_t *regs, int first, int pastlast)
723 1.28 cgd {
724 1.28 cgd int off, needaddr, neednl;
725 1.28 cgd
726 1.28 cgd needaddr = 1;
727 1.28 cgd neednl = 0;
728 1.28 cgd for (off = first; off < pastlast; off += 4) {
729 1.28 cgd if ((off % 16) == 0 || needaddr) {
730 1.28 cgd printf(" 0x%02x:", off);
731 1.28 cgd needaddr = 0;
732 1.28 cgd }
733 1.28 cgd printf(" 0x%08x", regs[o2i(off)]);
734 1.28 cgd neednl = 1;
735 1.28 cgd if ((off % 16) == 12) {
736 1.28 cgd printf("\n");
737 1.28 cgd neednl = 0;
738 1.28 cgd }
739 1.28 cgd }
740 1.28 cgd if (neednl)
741 1.28 cgd printf("\n");
742 1.28 cgd }
743 1.28 cgd
744 1.27 cgd static void
745 1.45 thorpej pci_conf_print_type0(
746 1.45 thorpej #ifdef _KERNEL
747 1.45 thorpej pci_chipset_tag_t pc, pcitag_t tag,
748 1.45 thorpej #endif
749 1.45 thorpej const pcireg_t *regs
750 1.45 thorpej #ifdef _KERNEL
751 1.45 thorpej , int sizebars
752 1.45 thorpej #endif
753 1.45 thorpej )
754 1.27 cgd {
755 1.37 nathanw int off, width;
756 1.27 cgd pcireg_t rval;
757 1.27 cgd
758 1.45 thorpej for (off = PCI_MAPREG_START; off < PCI_MAPREG_END; off += width) {
759 1.45 thorpej #ifdef _KERNEL
760 1.38 cgd width = pci_conf_print_bar(pc, tag, regs, off, NULL, sizebars);
761 1.45 thorpej #else
762 1.45 thorpej width = pci_conf_print_bar(regs, off, NULL);
763 1.45 thorpej #endif
764 1.45 thorpej }
765 1.22 thorpej
766 1.26 cgd printf(" Cardbus CIS Pointer: 0x%08x\n", regs[o2i(0x28)]);
767 1.22 thorpej
768 1.31 drochner rval = regs[o2i(PCI_SUBSYS_ID_REG)];
769 1.26 cgd printf(" Subsystem vendor ID: 0x%04x\n", PCI_VENDOR(rval));
770 1.26 cgd printf(" Subsystem ID: 0x%04x\n", PCI_PRODUCT(rval));
771 1.26 cgd
772 1.26 cgd /* XXX */
773 1.26 cgd printf(" Expansion ROM Base Address: 0x%08x\n", regs[o2i(0x30)]);
774 1.33 kleink
775 1.33 kleink if (regs[o2i(PCI_COMMAND_STATUS_REG)] & PCI_STATUS_CAPLIST_SUPPORT)
776 1.33 kleink printf(" Capability list pointer: 0x%02x\n",
777 1.33 kleink PCI_CAPLIST_PTR(regs[o2i(PCI_CAPLISTPTR_REG)]));
778 1.33 kleink else
779 1.33 kleink printf(" Reserved @ 0x34: 0x%08x\n", regs[o2i(0x34)]);
780 1.33 kleink
781 1.26 cgd printf(" Reserved @ 0x38: 0x%08x\n", regs[o2i(0x38)]);
782 1.26 cgd
783 1.26 cgd rval = regs[o2i(PCI_INTERRUPT_REG)];
784 1.26 cgd printf(" Maximum Latency: 0x%02x\n", (rval >> 24) & 0xff);
785 1.26 cgd printf(" Minimum Grant: 0x%02x\n", (rval >> 16) & 0xff);
786 1.27 cgd printf(" Interrupt pin: 0x%02x ", PCI_INTERRUPT_PIN(rval));
787 1.22 thorpej switch (PCI_INTERRUPT_PIN(rval)) {
788 1.22 thorpej case PCI_INTERRUPT_PIN_NONE:
789 1.27 cgd printf("(none)");
790 1.22 thorpej break;
791 1.22 thorpej case PCI_INTERRUPT_PIN_A:
792 1.27 cgd printf("(pin A)");
793 1.22 thorpej break;
794 1.22 thorpej case PCI_INTERRUPT_PIN_B:
795 1.27 cgd printf("(pin B)");
796 1.22 thorpej break;
797 1.22 thorpej case PCI_INTERRUPT_PIN_C:
798 1.27 cgd printf("(pin C)");
799 1.22 thorpej break;
800 1.22 thorpej case PCI_INTERRUPT_PIN_D:
801 1.27 cgd printf("(pin D)");
802 1.27 cgd break;
803 1.27 cgd default:
804 1.36 mrg printf("(? ? ?)");
805 1.22 thorpej break;
806 1.22 thorpej }
807 1.22 thorpej printf("\n");
808 1.26 cgd printf(" Interrupt line: 0x%02x\n", PCI_INTERRUPT_LINE(rval));
809 1.51 drochner }
810 1.51 drochner
811 1.51 drochner static void
812 1.72 joerg pci_conf_print_pcie_cap(const pcireg_t *regs, int capoff)
813 1.72 joerg {
814 1.72 joerg bool check_slot = false;
815 1.92 drochner static const char * const linkspeeds[] = {"2.5", "5.0", "8.0"};
816 1.72 joerg
817 1.72 joerg printf("\n PCI Express Capabilities Register\n");
818 1.72 joerg printf(" Capability version: %x\n",
819 1.72 joerg (unsigned int)((regs[o2i(capoff)] & 0x000f0000) >> 16));
820 1.72 joerg printf(" Device type: ");
821 1.72 joerg switch ((regs[o2i(capoff)] & 0x00f00000) >> 20) {
822 1.72 joerg case 0x0:
823 1.72 joerg printf("PCI Express Endpoint device\n");
824 1.72 joerg break;
825 1.72 joerg case 0x1:
826 1.75 jmcneill printf("Legacy PCI Express Endpoint device\n");
827 1.72 joerg break;
828 1.72 joerg case 0x4:
829 1.72 joerg printf("Root Port of PCI Express Root Complex\n");
830 1.72 joerg check_slot = true;
831 1.72 joerg break;
832 1.72 joerg case 0x5:
833 1.72 joerg printf("Upstream Port of PCI Express Switch\n");
834 1.72 joerg break;
835 1.72 joerg case 0x6:
836 1.72 joerg printf("Downstream Port of PCI Express Switch\n");
837 1.72 joerg check_slot = true;
838 1.72 joerg break;
839 1.72 joerg case 0x7:
840 1.72 joerg printf("PCI Express to PCI/PCI-X Bridge\n");
841 1.72 joerg break;
842 1.72 joerg case 0x8:
843 1.72 joerg printf("PCI/PCI-X to PCI Express Bridge\n");
844 1.72 joerg break;
845 1.96 msaitoh case 0x9:
846 1.96 msaitoh printf("Root Complex Integrated Endpoint\n");
847 1.96 msaitoh break;
848 1.96 msaitoh case 0xa:
849 1.96 msaitoh printf("Root Complex Event Collector\n");
850 1.96 msaitoh break;
851 1.72 joerg default:
852 1.72 joerg printf("unknown\n");
853 1.72 joerg break;
854 1.72 joerg }
855 1.72 joerg if (check_slot && (regs[o2i(capoff)] & 0x01000000) != 0)
856 1.72 joerg printf(" Slot implemented\n");
857 1.72 joerg printf(" Interrupt Message Number: %x\n",
858 1.72 joerg (unsigned int)((regs[o2i(capoff)] & 0x4e000000) >> 27));
859 1.86 matt printf(" Link Capabilities Register: 0x%08x\n",
860 1.86 matt regs[o2i(capoff + 0x0c)]);
861 1.86 matt printf(" Maximum Link Speed: ");
862 1.92 drochner if ((regs[o2i(capoff + 0x0c)] & 0x000f) < 1 ||
863 1.92 drochner (regs[o2i(capoff + 0x0c)] & 0x000f) > 3) {
864 1.86 matt printf("unknown %u value\n",
865 1.86 matt (regs[o2i(capoff + 0x0c)] & 0x000f));
866 1.86 matt } else {
867 1.92 drochner printf("%sGb/s\n", linkspeeds[(regs[o2i(capoff + 0x0c)] & 0x000f) - 1]);
868 1.86 matt }
869 1.86 matt printf(" Maximum Link Width: x%u lanes\n",
870 1.86 matt (regs[o2i(capoff + 0x0c)] & 0x03f0) >> 4);
871 1.86 matt printf(" Port Number: %u\n", regs[o2i(capoff + 0x0c)] >> 24);
872 1.86 matt printf(" Link Status Register: 0x%04x\n",
873 1.86 matt regs[o2i(capoff + 0x10)] >> 16);
874 1.86 matt printf(" Negotiated Link Speed: ");
875 1.92 drochner if (((regs[o2i(capoff + 0x10)] >> 16) & 0x000f) < 1 ||
876 1.92 drochner ((regs[o2i(capoff + 0x10)] >> 16) & 0x000f) > 3) {
877 1.86 matt printf("unknown %u value\n",
878 1.86 matt (regs[o2i(capoff + 0x10)] >> 16) & 0x000f);
879 1.86 matt } else {
880 1.92 drochner printf("%sGb/s\n", linkspeeds[((regs[o2i(capoff + 0x10)] >> 16) & 0x000f) - 1]);
881 1.86 matt }
882 1.86 matt printf(" Negotiated Link Width: x%u lanes\n",
883 1.86 matt (regs[o2i(capoff + 0x10)] >> 20) & 0x003f);
884 1.72 joerg if ((regs[o2i(capoff + 0x18)] & 0x07ff) != 0) {
885 1.72 joerg printf(" Slot Control Register:\n");
886 1.72 joerg if ((regs[o2i(capoff + 0x18)] & 0x0001) != 0)
887 1.72 joerg printf(" Attention Button Pressed Enabled\n");
888 1.72 joerg if ((regs[o2i(capoff + 0x18)] & 0x0002) != 0)
889 1.72 joerg printf(" Power Fault Detected Enabled\n");
890 1.72 joerg if ((regs[o2i(capoff + 0x18)] & 0x0004) != 0)
891 1.72 joerg printf(" MRL Sensor Changed Enabled\n");
892 1.72 joerg if ((regs[o2i(capoff + 0x18)] & 0x0008) != 0)
893 1.72 joerg printf(" Presense Detected Changed Enabled\n");
894 1.72 joerg if ((regs[o2i(capoff + 0x18)] & 0x0010) != 0)
895 1.72 joerg printf(" Command Completed Interrupt Enabled\n");
896 1.72 joerg if ((regs[o2i(capoff + 0x18)] & 0x0020) != 0)
897 1.72 joerg printf(" Hot-Plug Interrupt Enabled\n");
898 1.78 drochner printf(" Attention Indicator Control: ");
899 1.78 drochner switch ((regs[o2i(capoff + 0x18)] & 0x00c0) >> 6) {
900 1.72 joerg case 0x0:
901 1.72 joerg printf("reserved\n");
902 1.72 joerg break;
903 1.72 joerg case 0x1:
904 1.72 joerg printf("on\n");
905 1.72 joerg break;
906 1.72 joerg case 0x2:
907 1.72 joerg printf("blink\n");
908 1.72 joerg break;
909 1.72 joerg case 0x3:
910 1.72 joerg printf("off\n");
911 1.72 joerg break;
912 1.72 joerg }
913 1.78 drochner printf(" Power Indicator Control: ");
914 1.72 joerg switch ((regs[o2i(capoff + 0x18)] & 0x0300) >> 8) {
915 1.72 joerg case 0x0:
916 1.72 joerg printf("reserved\n");
917 1.72 joerg break;
918 1.72 joerg case 0x1:
919 1.72 joerg printf("on\n");
920 1.72 joerg break;
921 1.72 joerg case 0x2:
922 1.72 joerg printf("blink\n");
923 1.72 joerg break;
924 1.72 joerg case 0x3:
925 1.72 joerg printf("off\n");
926 1.72 joerg break;
927 1.72 joerg }
928 1.72 joerg printf(" Power Controller Control: ");
929 1.72 joerg if ((regs[o2i(capoff + 0x18)] & 0x0400) != 0)
930 1.72 joerg printf("off\n");
931 1.72 joerg else
932 1.72 joerg printf("on\n");
933 1.72 joerg }
934 1.72 joerg }
935 1.72 joerg
936 1.77 jmcneill static const char *
937 1.77 jmcneill pci_conf_print_pcipm_cap_aux(uint16_t caps)
938 1.77 jmcneill {
939 1.77 jmcneill switch ((caps >> 6) & 7) {
940 1.77 jmcneill case 0: return "self-powered";
941 1.77 jmcneill case 1: return "55 mA";
942 1.77 jmcneill case 2: return "100 mA";
943 1.77 jmcneill case 3: return "160 mA";
944 1.77 jmcneill case 4: return "220 mA";
945 1.77 jmcneill case 5: return "270 mA";
946 1.77 jmcneill case 6: return "320 mA";
947 1.77 jmcneill case 7:
948 1.77 jmcneill default: return "375 mA";
949 1.77 jmcneill }
950 1.77 jmcneill }
951 1.77 jmcneill
952 1.77 jmcneill static const char *
953 1.77 jmcneill pci_conf_print_pcipm_cap_pmrev(uint8_t val)
954 1.77 jmcneill {
955 1.77 jmcneill static const char unk[] = "unknown";
956 1.77 jmcneill static const char *pmrev[8] = {
957 1.77 jmcneill unk, "1.0", "1.1", "1.2", unk, unk, unk, unk
958 1.77 jmcneill };
959 1.77 jmcneill if (val > 7)
960 1.77 jmcneill return unk;
961 1.77 jmcneill return pmrev[val];
962 1.77 jmcneill }
963 1.77 jmcneill
964 1.77 jmcneill static void
965 1.77 jmcneill pci_conf_print_pcipm_cap(const pcireg_t *regs, int capoff)
966 1.77 jmcneill {
967 1.77 jmcneill uint16_t caps, pmcsr;
968 1.77 jmcneill
969 1.77 jmcneill caps = regs[o2i(capoff)] >> 16;
970 1.77 jmcneill pmcsr = regs[o2i(capoff + 0x04)] & 0xffff;
971 1.77 jmcneill
972 1.77 jmcneill printf("\n PCI Power Management Capabilities Register\n");
973 1.77 jmcneill
974 1.77 jmcneill printf(" Capabilities register: 0x%04x\n", caps);
975 1.77 jmcneill printf(" Version: %s\n",
976 1.77 jmcneill pci_conf_print_pcipm_cap_pmrev(caps & 0x3));
977 1.77 jmcneill printf(" PME# clock: %s\n", caps & 0x4 ? "on" : "off");
978 1.77 jmcneill printf(" Device specific initialization: %s\n",
979 1.77 jmcneill caps & 0x20 ? "on" : "off");
980 1.77 jmcneill printf(" 3.3V auxiliary current: %s\n",
981 1.77 jmcneill pci_conf_print_pcipm_cap_aux(caps));
982 1.77 jmcneill printf(" D1 power management state support: %s\n",
983 1.77 jmcneill (caps >> 9) & 1 ? "on" : "off");
984 1.77 jmcneill printf(" D2 power management state support: %s\n",
985 1.77 jmcneill (caps >> 10) & 1 ? "on" : "off");
986 1.77 jmcneill printf(" PME# support: 0x%02x\n", caps >> 11);
987 1.77 jmcneill
988 1.77 jmcneill printf(" Control/status register: 0x%04x\n", pmcsr);
989 1.77 jmcneill printf(" Power state: D%d\n", pmcsr & 3);
990 1.77 jmcneill printf(" PCI Express reserved: %s\n",
991 1.77 jmcneill (pmcsr >> 2) & 1 ? "on" : "off");
992 1.77 jmcneill printf(" No soft reset: %s\n", (pmcsr >> 3) & 1 ? "on" : "off");
993 1.77 jmcneill printf(" PME# assertion %sabled\n",
994 1.77 jmcneill (pmcsr >> 8) & 1 ? "en" : "dis");
995 1.77 jmcneill printf(" PME# status: %s\n", (pmcsr >> 15) ? "on" : "off");
996 1.77 jmcneill }
997 1.77 jmcneill
998 1.72 joerg static void
999 1.86 matt pci_conf_print_msi_cap(const pcireg_t *regs, int capoff)
1000 1.86 matt {
1001 1.86 matt uint32_t ctl, mmc, mme;
1002 1.86 matt
1003 1.86 matt regs += o2i(capoff);
1004 1.86 matt ctl = *regs++;
1005 1.88 dyoung mmc = __SHIFTOUT(ctl, PCI_MSI_CTL_MMC_MASK);
1006 1.88 dyoung mme = __SHIFTOUT(ctl, PCI_MSI_CTL_MME_MASK);
1007 1.86 matt
1008 1.86 matt printf("\n PCI Message Signaled Interrupt\n");
1009 1.86 matt
1010 1.86 matt printf(" Message Control register: 0x%04x\n", ctl >> 16);
1011 1.86 matt printf(" MSI Enabled: %s\n",
1012 1.86 matt ctl & PCI_MSI_CTL_MSI_ENABLE ? "yes" : "no");
1013 1.86 matt printf(" Multiple Message Capable: %s (%d vector%s)\n",
1014 1.86 matt mmc > 0 ? "yes" : "no", 1 << mmc, mmc > 0 ? "s" : "");
1015 1.86 matt printf(" Multiple Message Enabled: %s (%d vector%s)\n",
1016 1.86 matt mme > 0 ? "on" : "off", 1 << mme, mme > 0 ? "s" : "");
1017 1.86 matt printf(" 64 Bit Address Capable: %s\n",
1018 1.86 matt ctl & PCI_MSI_CTL_64BIT_ADDR ? "yes" : "no");
1019 1.86 matt printf(" Per-Vector Masking Capable: %s\n",
1020 1.86 matt ctl & PCI_MSI_CTL_PERVEC_MASK ? "yes" : "no");
1021 1.86 matt printf(" Message Address %sregister: 0x%08x\n",
1022 1.86 matt ctl & PCI_MSI_CTL_64BIT_ADDR ? "(lower) " : "", *regs++);
1023 1.86 matt if (ctl & PCI_MSI_CTL_64BIT_ADDR) {
1024 1.86 matt printf(" Message Address %sregister: 0x%08x\n",
1025 1.86 matt "(upper) ", *regs++);
1026 1.86 matt }
1027 1.86 matt printf(" Message Data register: 0x%08x\n", *regs++);
1028 1.86 matt if (ctl & PCI_MSI_CTL_PERVEC_MASK) {
1029 1.86 matt printf(" Vector Mask register: 0x%08x\n", *regs++);
1030 1.86 matt printf(" Vector Pending register: 0x%08x\n", *regs++);
1031 1.86 matt }
1032 1.86 matt }
1033 1.86 matt static void
1034 1.51 drochner pci_conf_print_caplist(
1035 1.51 drochner #ifdef _KERNEL
1036 1.71 christos pci_chipset_tag_t pc, pcitag_t tag,
1037 1.51 drochner #endif
1038 1.52 drochner const pcireg_t *regs, int capoff)
1039 1.51 drochner {
1040 1.51 drochner int off;
1041 1.51 drochner pcireg_t rval;
1042 1.86 matt int pcie_off = -1, pcipm_off = -1, msi_off = -1;
1043 1.33 kleink
1044 1.52 drochner for (off = PCI_CAPLIST_PTR(regs[o2i(capoff)]);
1045 1.51 drochner off != 0;
1046 1.51 drochner off = PCI_CAPLIST_NEXT(regs[o2i(off)])) {
1047 1.51 drochner rval = regs[o2i(off)];
1048 1.51 drochner printf(" Capability register at 0x%02x\n", off);
1049 1.51 drochner
1050 1.51 drochner printf(" type: 0x%02x (", PCI_CAPLIST_CAP(rval));
1051 1.51 drochner switch (PCI_CAPLIST_CAP(rval)) {
1052 1.51 drochner case PCI_CAP_RESERVED0:
1053 1.51 drochner printf("reserved");
1054 1.51 drochner break;
1055 1.51 drochner case PCI_CAP_PWRMGMT:
1056 1.64 drochner printf("Power Management, rev. %s",
1057 1.77 jmcneill pci_conf_print_pcipm_cap_pmrev((rval >> 0) & 0x07));
1058 1.77 jmcneill pcipm_off = off;
1059 1.51 drochner break;
1060 1.51 drochner case PCI_CAP_AGP:
1061 1.51 drochner printf("AGP, rev. %d.%d",
1062 1.57 soren PCI_CAP_AGP_MAJOR(rval),
1063 1.57 soren PCI_CAP_AGP_MINOR(rval));
1064 1.51 drochner break;
1065 1.51 drochner case PCI_CAP_VPD:
1066 1.51 drochner printf("VPD");
1067 1.51 drochner break;
1068 1.51 drochner case PCI_CAP_SLOTID:
1069 1.51 drochner printf("SlotID");
1070 1.51 drochner break;
1071 1.51 drochner case PCI_CAP_MSI:
1072 1.51 drochner printf("MSI");
1073 1.86 matt msi_off = off;
1074 1.51 drochner break;
1075 1.51 drochner case PCI_CAP_CPCI_HOTSWAP:
1076 1.51 drochner printf("CompactPCI Hot-swapping");
1077 1.51 drochner break;
1078 1.51 drochner case PCI_CAP_PCIX:
1079 1.51 drochner printf("PCI-X");
1080 1.51 drochner break;
1081 1.51 drochner case PCI_CAP_LDT:
1082 1.51 drochner printf("LDT");
1083 1.51 drochner break;
1084 1.51 drochner case PCI_CAP_VENDSPEC:
1085 1.51 drochner printf("Vendor-specific");
1086 1.51 drochner break;
1087 1.51 drochner case PCI_CAP_DEBUGPORT:
1088 1.51 drochner printf("Debug Port");
1089 1.51 drochner break;
1090 1.51 drochner case PCI_CAP_CPCI_RSRCCTL:
1091 1.51 drochner printf("CompactPCI Resource Control");
1092 1.51 drochner break;
1093 1.51 drochner case PCI_CAP_HOTPLUG:
1094 1.51 drochner printf("Hot-Plug");
1095 1.51 drochner break;
1096 1.51 drochner case PCI_CAP_AGP8:
1097 1.51 drochner printf("AGP 8x");
1098 1.51 drochner break;
1099 1.51 drochner case PCI_CAP_SECURE:
1100 1.51 drochner printf("Secure Device");
1101 1.51 drochner break;
1102 1.51 drochner case PCI_CAP_PCIEXPRESS:
1103 1.51 drochner printf("PCI Express");
1104 1.72 joerg pcie_off = off;
1105 1.51 drochner break;
1106 1.51 drochner case PCI_CAP_MSIX:
1107 1.51 drochner printf("MSI-X");
1108 1.51 drochner break;
1109 1.87 msaitoh case PCI_CAP_SATA:
1110 1.87 msaitoh printf("SATA");
1111 1.87 msaitoh break;
1112 1.87 msaitoh case PCI_CAP_PCIAF:
1113 1.87 msaitoh printf("Advanced Features");
1114 1.87 msaitoh break;
1115 1.51 drochner default:
1116 1.51 drochner printf("unknown");
1117 1.33 kleink }
1118 1.51 drochner printf(")\n");
1119 1.33 kleink }
1120 1.86 matt if (msi_off != -1)
1121 1.86 matt pci_conf_print_msi_cap(regs, msi_off);
1122 1.77 jmcneill if (pcipm_off != -1)
1123 1.77 jmcneill pci_conf_print_pcipm_cap(regs, pcipm_off);
1124 1.72 joerg if (pcie_off != -1)
1125 1.72 joerg pci_conf_print_pcie_cap(regs, pcie_off);
1126 1.26 cgd }
1127 1.26 cgd
1128 1.79 dyoung /* Print the Secondary Status Register. */
1129 1.79 dyoung static void
1130 1.79 dyoung pci_conf_print_ssr(pcireg_t rval)
1131 1.79 dyoung {
1132 1.79 dyoung pcireg_t devsel;
1133 1.79 dyoung
1134 1.79 dyoung printf(" Secondary status register: 0x%04x\n", rval); /* XXX bits */
1135 1.79 dyoung onoff("66 MHz capable", __BIT(5));
1136 1.79 dyoung onoff("User Definable Features (UDF) support", __BIT(6));
1137 1.79 dyoung onoff("Fast back-to-back capable", __BIT(7));
1138 1.79 dyoung onoff("Data parity error detected", __BIT(8));
1139 1.79 dyoung
1140 1.79 dyoung printf(" DEVSEL timing: ");
1141 1.79 dyoung devsel = __SHIFTOUT(rval, __BITS(10, 9));
1142 1.79 dyoung switch (devsel) {
1143 1.79 dyoung case 0:
1144 1.79 dyoung printf("fast");
1145 1.79 dyoung break;
1146 1.79 dyoung case 1:
1147 1.79 dyoung printf("medium");
1148 1.79 dyoung break;
1149 1.79 dyoung case 2:
1150 1.79 dyoung printf("slow");
1151 1.79 dyoung break;
1152 1.79 dyoung default:
1153 1.79 dyoung printf("unknown/reserved"); /* XXX */
1154 1.79 dyoung break;
1155 1.79 dyoung }
1156 1.79 dyoung printf(" (0x%x)\n", devsel);
1157 1.79 dyoung
1158 1.79 dyoung onoff("Signalled target abort", __BIT(11));
1159 1.79 dyoung onoff("Received target abort", __BIT(12));
1160 1.79 dyoung onoff("Received master abort", __BIT(13));
1161 1.79 dyoung onoff("Received system error", __BIT(14));
1162 1.79 dyoung onoff("Detected parity error", __BIT(15));
1163 1.79 dyoung }
1164 1.79 dyoung
1165 1.27 cgd static void
1166 1.45 thorpej pci_conf_print_type1(
1167 1.45 thorpej #ifdef _KERNEL
1168 1.45 thorpej pci_chipset_tag_t pc, pcitag_t tag,
1169 1.45 thorpej #endif
1170 1.45 thorpej const pcireg_t *regs
1171 1.45 thorpej #ifdef _KERNEL
1172 1.45 thorpej , int sizebars
1173 1.45 thorpej #endif
1174 1.45 thorpej )
1175 1.27 cgd {
1176 1.37 nathanw int off, width;
1177 1.27 cgd pcireg_t rval;
1178 1.27 cgd
1179 1.27 cgd /*
1180 1.27 cgd * XXX these need to be printed in more detail, need to be
1181 1.27 cgd * XXX checked against specs/docs, etc.
1182 1.27 cgd *
1183 1.27 cgd * This layout was cribbed from the TI PCI2030 PCI-to-PCI
1184 1.27 cgd * Bridge chip documentation, and may not be correct with
1185 1.27 cgd * respect to various standards. (XXX)
1186 1.27 cgd */
1187 1.27 cgd
1188 1.45 thorpej for (off = 0x10; off < 0x18; off += width) {
1189 1.45 thorpej #ifdef _KERNEL
1190 1.38 cgd width = pci_conf_print_bar(pc, tag, regs, off, NULL, sizebars);
1191 1.45 thorpej #else
1192 1.45 thorpej width = pci_conf_print_bar(regs, off, NULL);
1193 1.45 thorpej #endif
1194 1.45 thorpej }
1195 1.27 cgd
1196 1.27 cgd printf(" Primary bus number: 0x%02x\n",
1197 1.27 cgd (regs[o2i(0x18)] >> 0) & 0xff);
1198 1.27 cgd printf(" Secondary bus number: 0x%02x\n",
1199 1.27 cgd (regs[o2i(0x18)] >> 8) & 0xff);
1200 1.27 cgd printf(" Subordinate bus number: 0x%02x\n",
1201 1.27 cgd (regs[o2i(0x18)] >> 16) & 0xff);
1202 1.27 cgd printf(" Secondary bus latency timer: 0x%02x\n",
1203 1.27 cgd (regs[o2i(0x18)] >> 24) & 0xff);
1204 1.27 cgd
1205 1.79 dyoung pci_conf_print_ssr(__SHIFTOUT(regs[o2i(0x1c)], __BITS(31, 16)));
1206 1.27 cgd
1207 1.27 cgd /* XXX Print more prettily */
1208 1.27 cgd printf(" I/O region:\n");
1209 1.27 cgd printf(" base register: 0x%02x\n", (regs[o2i(0x1c)] >> 0) & 0xff);
1210 1.27 cgd printf(" limit register: 0x%02x\n", (regs[o2i(0x1c)] >> 8) & 0xff);
1211 1.27 cgd printf(" base upper 16 bits register: 0x%04x\n",
1212 1.27 cgd (regs[o2i(0x30)] >> 0) & 0xffff);
1213 1.27 cgd printf(" limit upper 16 bits register: 0x%04x\n",
1214 1.27 cgd (regs[o2i(0x30)] >> 16) & 0xffff);
1215 1.27 cgd
1216 1.27 cgd /* XXX Print more prettily */
1217 1.27 cgd printf(" Memory region:\n");
1218 1.27 cgd printf(" base register: 0x%04x\n",
1219 1.27 cgd (regs[o2i(0x20)] >> 0) & 0xffff);
1220 1.27 cgd printf(" limit register: 0x%04x\n",
1221 1.27 cgd (regs[o2i(0x20)] >> 16) & 0xffff);
1222 1.27 cgd
1223 1.27 cgd /* XXX Print more prettily */
1224 1.27 cgd printf(" Prefetchable memory region:\n");
1225 1.27 cgd printf(" base register: 0x%04x\n",
1226 1.27 cgd (regs[o2i(0x24)] >> 0) & 0xffff);
1227 1.27 cgd printf(" limit register: 0x%04x\n",
1228 1.27 cgd (regs[o2i(0x24)] >> 16) & 0xffff);
1229 1.27 cgd printf(" base upper 32 bits register: 0x%08x\n", regs[o2i(0x28)]);
1230 1.27 cgd printf(" limit upper 32 bits register: 0x%08x\n", regs[o2i(0x2c)]);
1231 1.27 cgd
1232 1.53 drochner if (regs[o2i(PCI_COMMAND_STATUS_REG)] & PCI_STATUS_CAPLIST_SUPPORT)
1233 1.53 drochner printf(" Capability list pointer: 0x%02x\n",
1234 1.53 drochner PCI_CAPLIST_PTR(regs[o2i(PCI_CAPLISTPTR_REG)]));
1235 1.53 drochner else
1236 1.53 drochner printf(" Reserved @ 0x34: 0x%08x\n", regs[o2i(0x34)]);
1237 1.53 drochner
1238 1.27 cgd /* XXX */
1239 1.27 cgd printf(" Expansion ROM Base Address: 0x%08x\n", regs[o2i(0x38)]);
1240 1.27 cgd
1241 1.27 cgd printf(" Interrupt line: 0x%02x\n",
1242 1.27 cgd (regs[o2i(0x3c)] >> 0) & 0xff);
1243 1.27 cgd printf(" Interrupt pin: 0x%02x ",
1244 1.27 cgd (regs[o2i(0x3c)] >> 8) & 0xff);
1245 1.27 cgd switch ((regs[o2i(0x3c)] >> 8) & 0xff) {
1246 1.27 cgd case PCI_INTERRUPT_PIN_NONE:
1247 1.27 cgd printf("(none)");
1248 1.27 cgd break;
1249 1.27 cgd case PCI_INTERRUPT_PIN_A:
1250 1.27 cgd printf("(pin A)");
1251 1.27 cgd break;
1252 1.27 cgd case PCI_INTERRUPT_PIN_B:
1253 1.27 cgd printf("(pin B)");
1254 1.27 cgd break;
1255 1.27 cgd case PCI_INTERRUPT_PIN_C:
1256 1.27 cgd printf("(pin C)");
1257 1.27 cgd break;
1258 1.27 cgd case PCI_INTERRUPT_PIN_D:
1259 1.27 cgd printf("(pin D)");
1260 1.27 cgd break;
1261 1.27 cgd default:
1262 1.36 mrg printf("(? ? ?)");
1263 1.27 cgd break;
1264 1.27 cgd }
1265 1.27 cgd printf("\n");
1266 1.27 cgd rval = (regs[o2i(0x3c)] >> 16) & 0xffff;
1267 1.27 cgd printf(" Bridge control register: 0x%04x\n", rval); /* XXX bits */
1268 1.27 cgd onoff("Parity error response", 0x0001);
1269 1.27 cgd onoff("Secondary SERR forwarding", 0x0002);
1270 1.27 cgd onoff("ISA enable", 0x0004);
1271 1.27 cgd onoff("VGA enable", 0x0008);
1272 1.27 cgd onoff("Master abort reporting", 0x0020);
1273 1.27 cgd onoff("Secondary bus reset", 0x0040);
1274 1.27 cgd onoff("Fast back-to-back capable", 0x0080);
1275 1.27 cgd }
1276 1.27 cgd
1277 1.27 cgd static void
1278 1.45 thorpej pci_conf_print_type2(
1279 1.45 thorpej #ifdef _KERNEL
1280 1.45 thorpej pci_chipset_tag_t pc, pcitag_t tag,
1281 1.45 thorpej #endif
1282 1.45 thorpej const pcireg_t *regs
1283 1.45 thorpej #ifdef _KERNEL
1284 1.45 thorpej , int sizebars
1285 1.45 thorpej #endif
1286 1.45 thorpej )
1287 1.27 cgd {
1288 1.27 cgd pcireg_t rval;
1289 1.27 cgd
1290 1.27 cgd /*
1291 1.27 cgd * XXX these need to be printed in more detail, need to be
1292 1.27 cgd * XXX checked against specs/docs, etc.
1293 1.27 cgd *
1294 1.79 dyoung * This layout was cribbed from the TI PCI1420 PCI-to-CardBus
1295 1.27 cgd * controller chip documentation, and may not be correct with
1296 1.27 cgd * respect to various standards. (XXX)
1297 1.27 cgd */
1298 1.27 cgd
1299 1.45 thorpej #ifdef _KERNEL
1300 1.28 cgd pci_conf_print_bar(pc, tag, regs, 0x10,
1301 1.38 cgd "CardBus socket/ExCA registers", sizebars);
1302 1.45 thorpej #else
1303 1.45 thorpej pci_conf_print_bar(regs, 0x10, "CardBus socket/ExCA registers");
1304 1.45 thorpej #endif
1305 1.27 cgd
1306 1.53 drochner if (regs[o2i(PCI_COMMAND_STATUS_REG)] & PCI_STATUS_CAPLIST_SUPPORT)
1307 1.53 drochner printf(" Capability list pointer: 0x%02x\n",
1308 1.53 drochner PCI_CAPLIST_PTR(regs[o2i(PCI_CARDBUS_CAPLISTPTR_REG)]));
1309 1.53 drochner else
1310 1.79 dyoung printf(" Reserved @ 0x14: 0x%04" PRIxMAX "\n",
1311 1.79 dyoung __SHIFTOUT(regs[o2i(0x14)], __BITS(15, 0)));
1312 1.79 dyoung pci_conf_print_ssr(__SHIFTOUT(regs[o2i(0x14)], __BITS(31, 16)));
1313 1.27 cgd
1314 1.27 cgd printf(" PCI bus number: 0x%02x\n",
1315 1.27 cgd (regs[o2i(0x18)] >> 0) & 0xff);
1316 1.27 cgd printf(" CardBus bus number: 0x%02x\n",
1317 1.27 cgd (regs[o2i(0x18)] >> 8) & 0xff);
1318 1.27 cgd printf(" Subordinate bus number: 0x%02x\n",
1319 1.27 cgd (regs[o2i(0x18)] >> 16) & 0xff);
1320 1.27 cgd printf(" CardBus latency timer: 0x%02x\n",
1321 1.27 cgd (regs[o2i(0x18)] >> 24) & 0xff);
1322 1.27 cgd
1323 1.27 cgd /* XXX Print more prettily */
1324 1.27 cgd printf(" CardBus memory region 0:\n");
1325 1.27 cgd printf(" base register: 0x%08x\n", regs[o2i(0x1c)]);
1326 1.27 cgd printf(" limit register: 0x%08x\n", regs[o2i(0x20)]);
1327 1.27 cgd printf(" CardBus memory region 1:\n");
1328 1.27 cgd printf(" base register: 0x%08x\n", regs[o2i(0x24)]);
1329 1.27 cgd printf(" limit register: 0x%08x\n", regs[o2i(0x28)]);
1330 1.27 cgd printf(" CardBus I/O region 0:\n");
1331 1.27 cgd printf(" base register: 0x%08x\n", regs[o2i(0x2c)]);
1332 1.27 cgd printf(" limit register: 0x%08x\n", regs[o2i(0x30)]);
1333 1.27 cgd printf(" CardBus I/O region 1:\n");
1334 1.27 cgd printf(" base register: 0x%08x\n", regs[o2i(0x34)]);
1335 1.27 cgd printf(" limit register: 0x%08x\n", regs[o2i(0x38)]);
1336 1.27 cgd
1337 1.27 cgd printf(" Interrupt line: 0x%02x\n",
1338 1.27 cgd (regs[o2i(0x3c)] >> 0) & 0xff);
1339 1.27 cgd printf(" Interrupt pin: 0x%02x ",
1340 1.27 cgd (regs[o2i(0x3c)] >> 8) & 0xff);
1341 1.27 cgd switch ((regs[o2i(0x3c)] >> 8) & 0xff) {
1342 1.27 cgd case PCI_INTERRUPT_PIN_NONE:
1343 1.27 cgd printf("(none)");
1344 1.27 cgd break;
1345 1.27 cgd case PCI_INTERRUPT_PIN_A:
1346 1.27 cgd printf("(pin A)");
1347 1.27 cgd break;
1348 1.27 cgd case PCI_INTERRUPT_PIN_B:
1349 1.27 cgd printf("(pin B)");
1350 1.27 cgd break;
1351 1.27 cgd case PCI_INTERRUPT_PIN_C:
1352 1.27 cgd printf("(pin C)");
1353 1.27 cgd break;
1354 1.27 cgd case PCI_INTERRUPT_PIN_D:
1355 1.27 cgd printf("(pin D)");
1356 1.27 cgd break;
1357 1.27 cgd default:
1358 1.36 mrg printf("(? ? ?)");
1359 1.27 cgd break;
1360 1.27 cgd }
1361 1.27 cgd printf("\n");
1362 1.27 cgd rval = (regs[o2i(0x3c)] >> 16) & 0xffff;
1363 1.27 cgd printf(" Bridge control register: 0x%04x\n", rval);
1364 1.79 dyoung onoff("Parity error response", __BIT(0));
1365 1.79 dyoung onoff("SERR# enable", __BIT(1));
1366 1.79 dyoung onoff("ISA enable", __BIT(2));
1367 1.79 dyoung onoff("VGA enable", __BIT(3));
1368 1.79 dyoung onoff("Master abort mode", __BIT(5));
1369 1.79 dyoung onoff("Secondary (CardBus) bus reset", __BIT(6));
1370 1.79 dyoung onoff("Functional interrupts routed by ExCA registers", __BIT(7));
1371 1.79 dyoung onoff("Memory window 0 prefetchable", __BIT(8));
1372 1.79 dyoung onoff("Memory window 1 prefetchable", __BIT(9));
1373 1.79 dyoung onoff("Write posting enable", __BIT(10));
1374 1.28 cgd
1375 1.28 cgd rval = regs[o2i(0x40)];
1376 1.28 cgd printf(" Subsystem vendor ID: 0x%04x\n", PCI_VENDOR(rval));
1377 1.28 cgd printf(" Subsystem ID: 0x%04x\n", PCI_PRODUCT(rval));
1378 1.28 cgd
1379 1.45 thorpej #ifdef _KERNEL
1380 1.38 cgd pci_conf_print_bar(pc, tag, regs, 0x44, "legacy-mode registers",
1381 1.38 cgd sizebars);
1382 1.45 thorpej #else
1383 1.45 thorpej pci_conf_print_bar(regs, 0x44, "legacy-mode registers");
1384 1.45 thorpej #endif
1385 1.27 cgd }
1386 1.27 cgd
1387 1.26 cgd void
1388 1.45 thorpej pci_conf_print(
1389 1.45 thorpej #ifdef _KERNEL
1390 1.45 thorpej pci_chipset_tag_t pc, pcitag_t tag,
1391 1.45 thorpej void (*printfn)(pci_chipset_tag_t, pcitag_t, const pcireg_t *)
1392 1.45 thorpej #else
1393 1.45 thorpej int pcifd, u_int bus, u_int dev, u_int func
1394 1.45 thorpej #endif
1395 1.45 thorpej )
1396 1.26 cgd {
1397 1.26 cgd pcireg_t regs[o2i(256)];
1398 1.52 drochner int off, capoff, endoff, hdrtype;
1399 1.27 cgd const char *typename;
1400 1.45 thorpej #ifdef _KERNEL
1401 1.38 cgd void (*typeprintfn)(pci_chipset_tag_t, pcitag_t, const pcireg_t *, int);
1402 1.38 cgd int sizebars;
1403 1.45 thorpej #else
1404 1.45 thorpej void (*typeprintfn)(const pcireg_t *);
1405 1.45 thorpej #endif
1406 1.26 cgd
1407 1.26 cgd printf("PCI configuration registers:\n");
1408 1.26 cgd
1409 1.45 thorpej for (off = 0; off < 256; off += 4) {
1410 1.45 thorpej #ifdef _KERNEL
1411 1.26 cgd regs[o2i(off)] = pci_conf_read(pc, tag, off);
1412 1.45 thorpej #else
1413 1.45 thorpej if (pcibus_conf_read(pcifd, bus, dev, func, off,
1414 1.45 thorpej ®s[o2i(off)]) == -1)
1415 1.45 thorpej regs[o2i(off)] = 0;
1416 1.45 thorpej #endif
1417 1.45 thorpej }
1418 1.26 cgd
1419 1.45 thorpej #ifdef _KERNEL
1420 1.38 cgd sizebars = 1;
1421 1.38 cgd if (PCI_CLASS(regs[o2i(PCI_CLASS_REG)]) == PCI_CLASS_BRIDGE &&
1422 1.38 cgd PCI_SUBCLASS(regs[o2i(PCI_CLASS_REG)]) == PCI_SUBCLASS_BRIDGE_HOST)
1423 1.38 cgd sizebars = 0;
1424 1.45 thorpej #endif
1425 1.38 cgd
1426 1.26 cgd /* common header */
1427 1.26 cgd printf(" Common header:\n");
1428 1.28 cgd pci_conf_print_regs(regs, 0, 16);
1429 1.28 cgd
1430 1.26 cgd printf("\n");
1431 1.45 thorpej #ifdef _KERNEL
1432 1.26 cgd pci_conf_print_common(pc, tag, regs);
1433 1.45 thorpej #else
1434 1.45 thorpej pci_conf_print_common(regs);
1435 1.45 thorpej #endif
1436 1.26 cgd printf("\n");
1437 1.26 cgd
1438 1.26 cgd /* type-dependent header */
1439 1.26 cgd hdrtype = PCI_HDRTYPE_TYPE(regs[o2i(PCI_BHLC_REG)]);
1440 1.26 cgd switch (hdrtype) { /* XXX make a table, eventually */
1441 1.26 cgd case 0:
1442 1.27 cgd /* Standard device header */
1443 1.27 cgd typename = "\"normal\" device";
1444 1.27 cgd typeprintfn = &pci_conf_print_type0;
1445 1.52 drochner capoff = PCI_CAPLISTPTR_REG;
1446 1.28 cgd endoff = 64;
1447 1.27 cgd break;
1448 1.27 cgd case 1:
1449 1.27 cgd /* PCI-PCI bridge header */
1450 1.27 cgd typename = "PCI-PCI bridge";
1451 1.26 cgd typeprintfn = &pci_conf_print_type1;
1452 1.52 drochner capoff = PCI_CAPLISTPTR_REG;
1453 1.28 cgd endoff = 64;
1454 1.26 cgd break;
1455 1.27 cgd case 2:
1456 1.27 cgd /* PCI-CardBus bridge header */
1457 1.27 cgd typename = "PCI-CardBus bridge";
1458 1.27 cgd typeprintfn = &pci_conf_print_type2;
1459 1.52 drochner capoff = PCI_CARDBUS_CAPLISTPTR_REG;
1460 1.28 cgd endoff = 72;
1461 1.27 cgd break;
1462 1.26 cgd default:
1463 1.27 cgd typename = NULL;
1464 1.26 cgd typeprintfn = 0;
1465 1.52 drochner capoff = -1;
1466 1.28 cgd endoff = 64;
1467 1.28 cgd break;
1468 1.26 cgd }
1469 1.27 cgd printf(" Type %d ", hdrtype);
1470 1.27 cgd if (typename != NULL)
1471 1.27 cgd printf("(%s) ", typename);
1472 1.27 cgd printf("header:\n");
1473 1.28 cgd pci_conf_print_regs(regs, 16, endoff);
1474 1.27 cgd printf("\n");
1475 1.45 thorpej if (typeprintfn) {
1476 1.45 thorpej #ifdef _KERNEL
1477 1.38 cgd (*typeprintfn)(pc, tag, regs, sizebars);
1478 1.45 thorpej #else
1479 1.45 thorpej (*typeprintfn)(regs);
1480 1.45 thorpej #endif
1481 1.45 thorpej } else
1482 1.26 cgd printf(" Don't know how to pretty-print type %d header.\n",
1483 1.26 cgd hdrtype);
1484 1.26 cgd printf("\n");
1485 1.51 drochner
1486 1.55 jdolecek /* capability list, if present */
1487 1.52 drochner if ((regs[o2i(PCI_COMMAND_STATUS_REG)] & PCI_STATUS_CAPLIST_SUPPORT)
1488 1.52 drochner && (capoff > 0)) {
1489 1.51 drochner #ifdef _KERNEL
1490 1.52 drochner pci_conf_print_caplist(pc, tag, regs, capoff);
1491 1.51 drochner #else
1492 1.52 drochner pci_conf_print_caplist(regs, capoff);
1493 1.51 drochner #endif
1494 1.51 drochner printf("\n");
1495 1.51 drochner }
1496 1.26 cgd
1497 1.26 cgd /* device-dependent header */
1498 1.26 cgd printf(" Device-dependent header:\n");
1499 1.28 cgd pci_conf_print_regs(regs, endoff, 256);
1500 1.26 cgd printf("\n");
1501 1.49 nathanw #ifdef _KERNEL
1502 1.26 cgd if (printfn)
1503 1.26 cgd (*printfn)(pc, tag, regs);
1504 1.26 cgd else
1505 1.26 cgd printf(" Don't know how to pretty-print device-dependent header.\n");
1506 1.26 cgd printf("\n");
1507 1.45 thorpej #endif /* _KERNEL */
1508 1.1 mycroft }
1509