ac(8): Staticize and raise WARNS to 6.
[dragonfly.git] / sys / bus / firewire / fwohci_pci.c
blobd896caf9b2620d32863fec2e437b0f2d929ecaed
1 /*
2 * Copyright (c) 2003 Hidetoshi Shimokawa
3 * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. All advertising materials mentioning features or use of this software
15 * must display the acknowledgement as bellow:
17 * This product includes software developed by K. Kobayashi and H. SHimokawa
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.
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
24 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
26 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
27 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
30 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE.
34 * $FreeBSD: src/sys/dev/firewire/fwohci_pci.c,v 1.38 2004/01/23 17:37:09 simokawa Exp $
37 #define BOUNCE_BUFFER_TEST 0
39 #include <sys/param.h>
40 #include <sys/systm.h>
41 #include <sys/kernel.h>
42 #include <sys/module.h>
43 #include <sys/conf.h>
44 #include <sys/bus.h>
45 #include <sys/queue.h>
46 #include <sys/rman.h>
47 #include <sys/malloc.h>
48 #if defined(__FreeBSD__) && __FreeBSD_version >= 501102
49 #include <sys/lock.h>
50 #include <sys/mutex.h>
51 #endif
52 #include <sys/thread2.h>
54 #include <bus/pci/pcivar.h>
55 #include <bus/pci/pcireg.h>
57 #include <bus/firewire/firewire.h>
58 #include <bus/firewire/firewirereg.h>
60 #include <bus/firewire/fwdma.h>
61 #include <bus/firewire/fwohcireg.h>
62 #include <bus/firewire/fwohcivar.h>
64 static int fwohci_pci_attach(device_t self);
65 static int fwohci_pci_detach(device_t self);
68 * The probe routine.
70 static int
71 fwohci_pci_probe( device_t dev )
73 #if 1
74 u_int32_t id;
76 id = pci_get_devid(dev);
77 if (id == (FW_VENDORID_NATSEMI | FW_DEVICE_CS4210)) {
78 device_set_desc(dev, "National Semiconductor CS4210");
79 return 0;
81 if (id == (FW_VENDORID_NEC | FW_DEVICE_UPD861)) {
82 device_set_desc(dev, "NEC uPD72861");
83 return 0;
85 if (id == (FW_VENDORID_NEC | FW_DEVICE_UPD871)) {
86 device_set_desc(dev, "NEC uPD72871/2");
87 return 0;
89 if (id == (FW_VENDORID_NEC | FW_DEVICE_UPD72870)) {
90 device_set_desc(dev, "NEC uPD72870");
91 return 0;
93 if (id == (FW_VENDORID_NEC | FW_DEVICE_UPD72874)) {
94 device_set_desc(dev, "NEC uPD72874");
95 return 0;
97 if (id == (FW_VENDORID_SIS | FW_DEVICE_7007)) {
98 /* It has no real identifier, using device id. */
99 device_set_desc(dev, "SiS 7007");
100 return 0;
102 if (id == (FW_VENDORID_TI | FW_DEVICE_TITSB22)) {
103 device_set_desc(dev, "Texas Instruments TSB12LV22");
104 return 0;
106 if (id == (FW_VENDORID_TI | FW_DEVICE_TITSB23)) {
107 device_set_desc(dev, "Texas Instruments TSB12LV23");
108 return 0;
110 if (id == (FW_VENDORID_TI | FW_DEVICE_TITSB26)) {
111 device_set_desc(dev, "Texas Instruments TSB12LV26");
112 return 0;
114 if (id == (FW_VENDORID_TI | FW_DEVICE_TITSB43)) {
115 device_set_desc(dev, "Texas Instruments TSB43AA22");
116 return 0;
118 if (id == (FW_VENDORID_TI | FW_DEVICE_TITSB43A)) {
119 device_set_desc(dev, "Texas Instruments TSB43AB22/A");
120 return 0;
122 if (id == (FW_VENDORID_TI | FW_DEVICE_TITSB43AB21)) {
123 device_set_desc(dev, "Texas Instruments TSB43AB21/A/AI/A-EP");
124 return 0;
126 if (id == (FW_VENDORID_TI | FW_DEVICE_TITSB43AB23)) {
127 device_set_desc(dev, "Texas Instruments TSB43AB23");
128 return 0;
130 if (id == (FW_VENDORID_TI | FW_DEVICE_TITSB82AA2)) {
131 device_set_desc(dev, "Texas Instruments TSB82AA2");
132 return 0;
134 if (id == (FW_VENDORID_TI | FW_DEVICE_TIPCI4450)) {
135 device_set_desc(dev, "Texas Instruments PCI4450");
136 return 0;
138 if (id == (FW_VENDORID_TI | FW_DEVICE_TIPCI4410A)) {
139 device_set_desc(dev, "Texas Instruments PCI4410A");
140 return 0;
142 if (id == (FW_VENDORID_TI | FW_DEVICE_TIPCI4451)) {
143 device_set_desc(dev, "Texas Instruments PCI4451");
144 return 0;
146 if (id == (FW_VENDORID_SONY | FW_DEVICE_CXD1947)) {
147 device_set_desc(dev, "Sony i.LINK (CXD1947)");
148 return 0;
150 if (id == (FW_VENDORID_SONY | FW_DEVICE_CXD3222)) {
151 device_set_desc(dev, "Sony i.LINK (CXD3222)");
152 return 0;
154 if (id == (FW_VENDORID_VIA | FW_DEVICE_VT6306)) {
155 device_set_desc(dev, "VIA Fire II (VT6306)");
156 return 0;
158 if (id == (FW_VENDORID_RICOH | FW_DEVICE_R5C551)) {
159 device_set_desc(dev, "Ricoh R5C551");
160 return 0;
162 if (id == (FW_VENDORID_RICOH | FW_DEVICE_R5C552)) {
163 device_set_desc(dev, "Ricoh R5C552");
164 return 0;
166 if (id == (FW_VENDORID_APPLE | FW_DEVICE_PANGEA)) {
167 device_set_desc(dev, "Apple Pangea");
168 return 0;
170 if (id == (FW_VENDORID_APPLE | FW_DEVICE_UNINORTH)) {
171 device_set_desc(dev, "Apple UniNorth");
172 return 0;
174 if (id == (FW_VENDORID_LUCENT | FW_DEVICE_FW322)) {
175 device_set_desc(dev, "Lucent FW322/323");
176 return 0;
178 if (id == (FW_VENDORID_INTEL | FW_DEVICE_82372FB)) {
179 device_set_desc(dev, "Intel 82372FB");
180 return 0;
182 if (id == (FW_VENDORID_ADAPTEC | FW_DEVICE_AIC5800)) {
183 device_set_desc(dev, "Adaptec AHA-894x/AIC-5800");
184 return 0;
186 #endif
187 if (pci_get_class(dev) == PCIC_SERIALBUS
188 && pci_get_subclass(dev) == PCIS_SERIALBUS_FW
189 && pci_get_progif(dev) == PCI_INTERFACE_OHCI) {
190 device_printf(dev, "vendor=%x, dev=%x\n", pci_get_vendor(dev),
191 pci_get_device(dev));
192 device_set_desc(dev, "1394 Open Host Controller Interface");
193 return 0;
196 return ENXIO;
199 static int
200 fwohci_pci_init(device_t self)
202 int olatency, latency, ocache_line, cache_line;
203 u_int16_t cmd;
206 * Clear PCIM_CMD_MWRICEN as per FreeBSD/1.20, but note that the
207 * problem may have been related to SERR and PERR being
208 * unconditionally enabled in that rev.
210 * Do not change the SERRESPEN or PERRESPEN bits. Use the BIOS
211 * values (probably off). This crashes some machines in fwohci_init().
213 * The theory here is that the device may not be properly initializing
214 * its on-chip memory, leaving some of it in a parity errored state,
215 * and enabling parity check may result in the device blowing up.
216 * It's also possible that some hardware is just plain broken. OpenBSD
217 * does not turn on SERRESPEN or PERRESPEN so we won't either.
219 cmd = pci_read_config(self, PCIR_COMMAND, 2);
220 cmd |= PCIM_CMD_MEMEN | PCIM_CMD_BUSMASTEREN;
221 cmd &= ~PCIM_CMD_MWRICEN;
222 pci_write_config(self, PCIR_COMMAND, cmd, 2);
224 latency = olatency = pci_read_config(self, PCIR_LATTIMER, 1);
225 #define DEF_LATENCY 0x20
226 if (olatency < DEF_LATENCY) {
227 latency = DEF_LATENCY;
228 pci_write_config(self, PCIR_LATTIMER, latency, 1);
231 cache_line = ocache_line = pci_read_config(self, PCIR_CACHELNSZ, 1);
232 #define DEF_CACHE_LINE 8
233 if (ocache_line < DEF_CACHE_LINE) {
234 cache_line = DEF_CACHE_LINE;
235 pci_write_config(self, PCIR_CACHELNSZ, cache_line, 1);
238 if (firewire_debug) {
239 device_printf(self, "latency timer %d -> %d.\n",
240 olatency, latency);
241 device_printf(self, "cache size %d -> %d.\n",
242 ocache_line, cache_line);
245 return 0;
248 static int
249 fwohci_pci_attach(device_t self)
251 fwohci_softc_t *sc = device_get_softc(self);
252 int err;
253 int rid;
254 int intr;
256 /* For the moment, put in a message stating what is wrong */
257 intr = pci_read_config(self, PCIR_INTLINE, 1);
258 if (intr == 0 || intr == 255)
259 device_printf(self, "Invalid irq %d\n", intr);
261 if (bootverbose)
262 firewire_debug = bootverbose;
264 fwohci_pci_init(self);
266 rid = PCI_CBMEM;
267 sc->bsr = bus_alloc_resource(self, SYS_RES_MEMORY, &rid,
268 0, ~0, 1, RF_ACTIVE);
269 if (!sc->bsr) {
270 device_printf(self, "Could not map memory\n");
271 return ENXIO;
274 sc->bst = rman_get_bustag(sc->bsr);
275 sc->bsh = rman_get_bushandle(sc->bsr);
277 rid = 0;
278 sc->irq_res = bus_alloc_resource(self, SYS_RES_IRQ, &rid, 0, ~0, 1,
279 RF_SHAREABLE | RF_ACTIVE);
280 if (sc->irq_res == NULL) {
281 device_printf(self, "Could not allocate irq\n");
282 fwohci_pci_detach(self);
283 return ENXIO;
287 err = bus_setup_intr(self, sc->irq_res,
288 #if FWOHCI_TASKQUEUE
289 INTR_MPSAFE,
290 #else
292 #endif
293 (driver_intr_t *) fwohci_intr, sc, &sc->ih, NULL);
294 if (err) {
295 device_printf(self, "Could not setup irq, %d\n", err);
296 fwohci_pci_detach(self);
297 return ENXIO;
300 err = bus_dma_tag_create(/*parent*/NULL, /*alignment*/1,
301 /*boundary*/0,
302 #if BOUNCE_BUFFER_TEST
303 /*lowaddr*/BUS_SPACE_MAXADDR_24BIT,
304 #else
305 /*lowaddr*/BUS_SPACE_MAXADDR_32BIT,
306 #endif
307 /*highaddr*/BUS_SPACE_MAXADDR,
308 /*filter*/NULL, /*filterarg*/NULL,
309 /*maxsize*/0x100000,
310 /*nsegments*/0x20,
311 /*maxsegsz*/0x8000,
312 /*flags*/BUS_DMA_ALLOCNOW,
313 #if defined(__FreeBSD__) && __FreeBSD_version >= 501102
314 /*lockfunc*/busdma_lock_mutex,
315 /*lockarg*/&Giant,
316 #endif
317 &sc->fc.dmat);
318 if (err != 0) {
319 kprintf("fwohci_pci_attach: Could not allocate DMA tag "
320 "- error %d\n", err);
321 return (ENOMEM);
324 err = fwohci_init(sc, self);
326 if (err) {
327 device_printf(self, "fwohci_init failed with err=%d\n", err);
328 fwohci_pci_detach(self);
329 return EIO;
332 /* probe and attach a child device(firewire) */
333 bus_generic_probe(self);
334 bus_generic_attach(self);
336 return 0;
339 static int
340 fwohci_pci_detach(device_t self)
342 fwohci_softc_t *sc = device_get_softc(self);
344 crit_enter();
345 if (sc->bsr)
346 fwohci_stop(sc, self);
348 bus_generic_detach(self);
349 if (sc->fc.bdev) {
350 device_delete_child(self, sc->fc.bdev);
351 sc->fc.bdev = NULL;
354 /* disable interrupts that might have been switched on */
355 if (sc->bst && sc->bsh)
356 bus_space_write_4(sc->bst, sc->bsh,
357 FWOHCI_INTMASKCLR, OHCI_INT_EN);
359 if (sc->irq_res) {
360 int err = bus_teardown_intr(self, sc->irq_res, sc->ih);
361 if (err)
362 /* XXX or should we panic? */
363 device_printf(self, "Could not tear down irq, %d\n",
364 err);
365 sc->ih = NULL;
368 if (sc->irq_res) {
369 bus_release_resource(self, SYS_RES_IRQ, 0, sc->irq_res);
370 sc->irq_res = NULL;
373 if (sc->bsr) {
374 bus_release_resource(self, SYS_RES_MEMORY,PCI_CBMEM,sc->bsr);
375 sc->bsr = NULL;
376 sc->bst = 0;
377 sc->bsh = 0;
380 fwohci_detach(sc, self);
381 crit_exit();
383 return 0;
386 static int
387 fwohci_pci_suspend(device_t dev)
389 fwohci_softc_t *sc = device_get_softc(dev);
390 int err;
392 device_printf(dev, "fwohci_pci_suspend\n");
393 err = bus_generic_suspend(dev);
394 if (err)
395 return err;
396 fwohci_stop(sc, dev);
397 return 0;
400 static int
401 fwohci_pci_resume(device_t dev)
403 fwohci_softc_t *sc = device_get_softc(dev);
405 #ifndef BURN_BRIDGES
406 device_printf(dev, "fwohci_pci_resume: power_state = 0x%08x\n",
407 pci_get_powerstate(dev));
408 pci_set_powerstate(dev, PCI_POWERSTATE_D0);
409 #endif
410 fwohci_pci_init(dev);
411 fwohci_resume(sc, dev);
412 return 0;
415 static int
416 fwohci_pci_shutdown(device_t dev)
418 fwohci_softc_t *sc = device_get_softc(dev);
420 bus_generic_shutdown(dev);
421 fwohci_stop(sc, dev);
422 return 0;
425 static device_t
426 fwohci_pci_add_child(device_t bus, device_t parent, int order, const char *name, int unit)
428 struct fwohci_softc *sc;
429 device_t child;
430 int err = 0;
432 sc = (struct fwohci_softc *)device_get_softc(bus);
433 child = device_add_child(parent, name, unit);
434 if (child == NULL)
435 return (child);
437 sc->fc.bdev = child;
438 device_set_ivars(child, (void *)&sc->fc);
440 err = device_probe_and_attach(child);
441 if (err) {
442 device_printf(parent, "probe_and_attach failed with err=%d\n",
443 err);
444 fwohci_pci_detach(parent);
445 device_delete_child(parent, child);
446 return NULL;
449 /* XXX
450 * Clear the bus reset event flag to start transactions even when
451 * interrupt is disabled during the boot process.
453 DELAY(250); /* 2 cycles */
454 crit_enter();
455 fwohci_poll((void *)sc, 0, -1);
456 crit_exit();
458 return (child);
461 static device_method_t fwohci_methods[] = {
462 /* Device interface */
463 DEVMETHOD(device_probe, fwohci_pci_probe),
464 DEVMETHOD(device_attach, fwohci_pci_attach),
465 DEVMETHOD(device_detach, fwohci_pci_detach),
466 DEVMETHOD(device_suspend, fwohci_pci_suspend),
467 DEVMETHOD(device_resume, fwohci_pci_resume),
468 DEVMETHOD(device_shutdown, fwohci_pci_shutdown),
470 /* Bus interface */
471 DEVMETHOD(bus_add_child, fwohci_pci_add_child),
472 DEVMETHOD(bus_print_child, bus_generic_print_child),
474 DEVMETHOD_END
477 static driver_t fwohci_driver = {
478 "fwohci",
479 fwohci_methods,
480 sizeof(fwohci_softc_t),
483 static devclass_t fwohci_devclass;
485 #ifdef FWOHCI_MODULE
486 MODULE_DEPEND(fwohci, firewire, 1, 1, 1);
487 #endif
488 DRIVER_MODULE(fwohci, pci, fwohci_driver, fwohci_devclass, NULL, NULL);
489 DRIVER_MODULE(fwohci, cardbus, fwohci_driver, fwohci_devclass, NULL, NULL);