uhci_pci.c revision 278278
1/*-
2 * Copyright (c) 1998 The NetBSD Foundation, Inc.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to The NetBSD Foundation
6 * by Lennart Augustsson (augustss@carlstedt.se) at
7 * Carlstedt Research & Technology.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 *    notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 *    notice, this list of conditions and the following disclaimer in the
16 *    documentation and/or other materials provided with the distribution.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#include <sys/cdefs.h>
32__FBSDID("$FreeBSD: stable/10/sys/dev/usb/controller/uhci_pci.c 278278 2015-02-05 20:03:02Z hselasky $");
33
34/* Universal Host Controller Interface
35 *
36 * UHCI spec: http://www.intel.com/
37 */
38
39/* The low level controller code for UHCI has been split into
40 * PCI probes and UHCI specific code. This was done to facilitate the
41 * sharing of code between *BSD's
42 */
43
44#include <sys/stdint.h>
45#include <sys/stddef.h>
46#include <sys/param.h>
47#include <sys/queue.h>
48#include <sys/types.h>
49#include <sys/systm.h>
50#include <sys/kernel.h>
51#include <sys/bus.h>
52#include <sys/module.h>
53#include <sys/lock.h>
54#include <sys/mutex.h>
55#include <sys/condvar.h>
56#include <sys/sysctl.h>
57#include <sys/sx.h>
58#include <sys/unistd.h>
59#include <sys/callout.h>
60#include <sys/malloc.h>
61#include <sys/priv.h>
62
63#include <dev/usb/usb.h>
64#include <dev/usb/usbdi.h>
65
66#include <dev/usb/usb_core.h>
67#include <dev/usb/usb_busdma.h>
68#include <dev/usb/usb_process.h>
69#include <dev/usb/usb_util.h>
70#include <dev/usb/usb_debug.h>
71
72#include <dev/usb/usb_controller.h>
73#include <dev/usb/usb_bus.h>
74#include <dev/usb/usb_pci.h>
75#include <dev/usb/controller/uhci.h>
76#include <dev/usb/controller/uhcireg.h>
77#include "usb_if.h"
78
79#define	PCI_UHCI_VENDORID_INTEL		0x8086
80#define	PCI_UHCI_VENDORID_VIA		0x1106
81
82/* PIIX4E has no separate stepping */
83
84static device_probe_t uhci_pci_probe;
85static device_attach_t uhci_pci_attach;
86static device_detach_t uhci_pci_detach;
87static usb_take_controller_t uhci_pci_take_controller;
88
89static int
90uhci_pci_take_controller(device_t self)
91{
92	pci_write_config(self, PCI_LEGSUP, PCI_LEGSUP_USBPIRQDEN, 2);
93
94	return (0);
95}
96
97static const char *
98uhci_pci_match(device_t self)
99{
100	uint32_t device_id = pci_get_devid(self);
101
102	switch (device_id) {
103	case 0x26888086:
104		return ("Intel 631XESB/632XESB/3100 USB controller USB-1");
105
106	case 0x26898086:
107		return ("Intel 631XESB/632XESB/3100 USB controller USB-2");
108
109	case 0x268a8086:
110		return ("Intel 631XESB/632XESB/3100 USB controller USB-3");
111
112	case 0x268b8086:
113		return ("Intel 631XESB/632XESB/3100 USB controller USB-4");
114
115	case 0x70208086:
116		return ("Intel 82371SB (PIIX3) USB controller");
117
118	case 0x71128086:
119		return ("Intel 82371AB/EB (PIIX4) USB controller");
120
121	case 0x24128086:
122		return ("Intel 82801AA (ICH) USB controller");
123
124	case 0x24228086:
125		return ("Intel 82801AB (ICH0) USB controller");
126
127	case 0x24428086:
128		return ("Intel 82801BA/BAM (ICH2) USB controller USB-A");
129
130	case 0x24448086:
131		return ("Intel 82801BA/BAM (ICH2) USB controller USB-B");
132
133	case 0x24828086:
134		return ("Intel 82801CA/CAM (ICH3) USB controller USB-A");
135
136	case 0x24848086:
137		return ("Intel 82801CA/CAM (ICH3) USB controller USB-B");
138
139	case 0x24878086:
140		return ("Intel 82801CA/CAM (ICH3) USB controller USB-C");
141
142	case 0x24c28086:
143		return ("Intel 82801DB (ICH4) USB controller USB-A");
144
145	case 0x24c48086:
146		return ("Intel 82801DB (ICH4) USB controller USB-B");
147
148	case 0x24c78086:
149		return ("Intel 82801DB (ICH4) USB controller USB-C");
150
151	case 0x24d28086:
152		return ("Intel 82801EB (ICH5) USB controller USB-A");
153
154	case 0x24d48086:
155		return ("Intel 82801EB (ICH5) USB controller USB-B");
156
157	case 0x24d78086:
158		return ("Intel 82801EB (ICH5) USB controller USB-C");
159
160	case 0x24de8086:
161		return ("Intel 82801EB (ICH5) USB controller USB-D");
162
163	case 0x26588086:
164		return ("Intel 82801FB/FR/FW/FRW (ICH6) USB controller USB-A");
165
166	case 0x26598086:
167		return ("Intel 82801FB/FR/FW/FRW (ICH6) USB controller USB-B");
168
169	case 0x265a8086:
170		return ("Intel 82801FB/FR/FW/FRW (ICH6) USB controller USB-C");
171
172	case 0x265b8086:
173		return ("Intel 82801FB/FR/FW/FRW (ICH6) USB controller USB-D");
174
175	case 0x27c88086:
176		return ("Intel 82801G (ICH7) USB controller USB-A");
177	case 0x27c98086:
178		return ("Intel 82801G (ICH7) USB controller USB-B");
179	case 0x27ca8086:
180		return ("Intel 82801G (ICH7) USB controller USB-C");
181	case 0x27cb8086:
182		return ("Intel 82801G (ICH7) USB controller USB-D");
183
184	case 0x28308086:
185		return ("Intel 82801H (ICH8) USB controller USB-A");
186	case 0x28318086:
187		return ("Intel 82801H (ICH8) USB controller USB-B");
188	case 0x28328086:
189		return ("Intel 82801H (ICH8) USB controller USB-C");
190	case 0x28348086:
191		return ("Intel 82801H (ICH8) USB controller USB-D");
192	case 0x28358086:
193		return ("Intel 82801H (ICH8) USB controller USB-E");
194	case 0x29348086:
195		return ("Intel 82801I (ICH9) USB controller");
196	case 0x29358086:
197		return ("Intel 82801I (ICH9) USB controller");
198	case 0x29368086:
199		return ("Intel 82801I (ICH9) USB controller");
200	case 0x29378086:
201		return ("Intel 82801I (ICH9) USB controller");
202	case 0x29388086:
203		return ("Intel 82801I (ICH9) USB controller");
204	case 0x29398086:
205		return ("Intel 82801I (ICH9) USB controller");
206	case 0x3a348086:
207		return ("Intel 82801JI (ICH10) USB controller USB-A");
208	case 0x3a358086:
209		return ("Intel 82801JI (ICH10) USB controller USB-B");
210	case 0x3a368086:
211		return ("Intel 82801JI (ICH10) USB controller USB-C");
212	case 0x3a378086:
213		return ("Intel 82801JI (ICH10) USB controller USB-D");
214	case 0x3a388086:
215		return ("Intel 82801JI (ICH10) USB controller USB-E");
216	case 0x3a398086:
217		return ("Intel 82801JI (ICH10) USB controller USB-F");
218
219	case 0x719a8086:
220		return ("Intel 82443MX USB controller");
221
222	case 0x76028086:
223		return ("Intel 82372FB/82468GX USB controller");
224
225	case 0x30381106:
226		return ("VIA 83C572 USB controller");
227
228	default:
229		break;
230	}
231
232	if ((pci_get_class(self) == PCIC_SERIALBUS) &&
233	    (pci_get_subclass(self) == PCIS_SERIALBUS_USB) &&
234	    (pci_get_progif(self) == PCI_INTERFACE_UHCI)) {
235		return ("UHCI (generic) USB controller");
236	}
237	return (NULL);
238}
239
240static int
241uhci_pci_probe(device_t self)
242{
243	const char *desc = uhci_pci_match(self);
244
245	if (desc) {
246		device_set_desc(self, desc);
247		return (0);
248	} else {
249		return (ENXIO);
250	}
251}
252
253static int
254uhci_pci_attach(device_t self)
255{
256	uhci_softc_t *sc = device_get_softc(self);
257	int rid;
258	int err;
259
260	/* initialise some bus fields */
261	sc->sc_bus.parent = self;
262	sc->sc_bus.devices = sc->sc_devices;
263	sc->sc_bus.devices_max = UHCI_MAX_DEVICES;
264	sc->sc_bus.dma_bits = 32;
265
266	/* get all DMA memory */
267	if (usb_bus_mem_alloc_all(&sc->sc_bus, USB_GET_DMA_TAG(self),
268	    &uhci_iterate_hw_softc)) {
269		return ENOMEM;
270	}
271	sc->sc_dev = self;
272
273	pci_enable_busmaster(self);
274
275	rid = PCI_UHCI_BASE_REG;
276	sc->sc_io_res = bus_alloc_resource_any(self, SYS_RES_IOPORT, &rid,
277	    RF_ACTIVE);
278	if (!sc->sc_io_res) {
279		device_printf(self, "Could not map ports\n");
280		goto error;
281	}
282	sc->sc_io_tag = rman_get_bustag(sc->sc_io_res);
283	sc->sc_io_hdl = rman_get_bushandle(sc->sc_io_res);
284	sc->sc_io_size = rman_get_size(sc->sc_io_res);
285
286	/* disable interrupts */
287	bus_space_write_2(sc->sc_io_tag, sc->sc_io_hdl, UHCI_INTR, 0);
288
289	rid = 0;
290	sc->sc_irq_res = bus_alloc_resource_any(self, SYS_RES_IRQ, &rid,
291	    RF_SHAREABLE | RF_ACTIVE);
292	if (sc->sc_irq_res == NULL) {
293		device_printf(self, "Could not allocate irq\n");
294		goto error;
295	}
296	sc->sc_bus.bdev = device_add_child(self, "usbus", -1);
297	if (!sc->sc_bus.bdev) {
298		device_printf(self, "Could not add USB device\n");
299		goto error;
300	}
301	device_set_ivars(sc->sc_bus.bdev, &sc->sc_bus);
302
303	/*
304	 * uhci_pci_match must never return NULL if uhci_pci_probe
305	 * succeeded
306	 */
307	device_set_desc(sc->sc_bus.bdev, uhci_pci_match(self));
308	switch (pci_get_vendor(self)) {
309	case PCI_UHCI_VENDORID_INTEL:
310		sprintf(sc->sc_vendor, "Intel");
311		break;
312	case PCI_UHCI_VENDORID_VIA:
313		sprintf(sc->sc_vendor, "VIA");
314		break;
315	default:
316		if (bootverbose) {
317			device_printf(self, "(New UHCI DeviceId=0x%08x)\n",
318			    pci_get_devid(self));
319		}
320		sprintf(sc->sc_vendor, "(0x%04x)", pci_get_vendor(self));
321	}
322
323	switch (pci_read_config(self, PCI_USBREV, 1) & PCI_USB_REV_MASK) {
324	case PCI_USB_REV_PRE_1_0:
325		sc->sc_bus.usbrev = USB_REV_PRE_1_0;
326		break;
327	case PCI_USB_REV_1_0:
328		sc->sc_bus.usbrev = USB_REV_1_0;
329		break;
330	default:
331		/* Quirk for Parallels Desktop 4.0 */
332		device_printf(self, "USB revision is unknown. Assuming v1.1.\n");
333		sc->sc_bus.usbrev = USB_REV_1_1;
334		break;
335	}
336
337#if (__FreeBSD_version >= 700031)
338	err = bus_setup_intr(self, sc->sc_irq_res, INTR_TYPE_BIO | INTR_MPSAFE,
339	    NULL, (driver_intr_t *)uhci_interrupt, sc, &sc->sc_intr_hdl);
340#else
341	err = bus_setup_intr(self, sc->sc_irq_res, INTR_TYPE_BIO | INTR_MPSAFE,
342	    (driver_intr_t *)uhci_interrupt, sc, &sc->sc_intr_hdl);
343#endif
344
345	if (err) {
346		device_printf(self, "Could not setup irq, %d\n", err);
347		sc->sc_intr_hdl = NULL;
348		goto error;
349	}
350	/*
351	 * Set the PIRQD enable bit and switch off all the others. We don't
352	 * want legacy support to interfere with us XXX Does this also mean
353	 * that the BIOS won't touch the keyboard anymore if it is connected
354	 * to the ports of the root hub?
355	 */
356#ifdef USB_DEBUG
357	if (pci_read_config(self, PCI_LEGSUP, 2) != PCI_LEGSUP_USBPIRQDEN) {
358		device_printf(self, "LegSup = 0x%04x\n",
359		    pci_read_config(self, PCI_LEGSUP, 2));
360	}
361#endif
362	pci_write_config(self, PCI_LEGSUP, PCI_LEGSUP_USBPIRQDEN, 2);
363
364	err = uhci_init(sc);
365	if (!err) {
366		err = device_probe_and_attach(sc->sc_bus.bdev);
367	}
368	if (err) {
369		device_printf(self, "USB init failed\n");
370		goto error;
371	}
372	return (0);
373
374error:
375	uhci_pci_detach(self);
376	return (ENXIO);
377}
378
379int
380uhci_pci_detach(device_t self)
381{
382	uhci_softc_t *sc = device_get_softc(self);
383	device_t bdev;
384
385	if (sc->sc_bus.bdev) {
386		bdev = sc->sc_bus.bdev;
387		device_detach(bdev);
388		device_delete_child(self, bdev);
389	}
390	/* during module unload there are lots of children leftover */
391	device_delete_children(self);
392
393	/*
394	 * disable interrupts that might have been switched on in
395	 * uhci_init.
396	 */
397	if (sc->sc_io_res) {
398		USB_BUS_LOCK(&sc->sc_bus);
399
400		/* stop the controller */
401		uhci_reset(sc);
402
403		USB_BUS_UNLOCK(&sc->sc_bus);
404	}
405	pci_disable_busmaster(self);
406
407	if (sc->sc_irq_res && sc->sc_intr_hdl) {
408		int err = bus_teardown_intr(self, sc->sc_irq_res, sc->sc_intr_hdl);
409
410		if (err) {
411			/* XXX or should we panic? */
412			device_printf(self, "Could not tear down irq, %d\n",
413			    err);
414		}
415		sc->sc_intr_hdl = NULL;
416	}
417	if (sc->sc_irq_res) {
418		bus_release_resource(self, SYS_RES_IRQ, 0, sc->sc_irq_res);
419		sc->sc_irq_res = NULL;
420	}
421	if (sc->sc_io_res) {
422		bus_release_resource(self, SYS_RES_IOPORT, PCI_UHCI_BASE_REG,
423		    sc->sc_io_res);
424		sc->sc_io_res = NULL;
425	}
426	usb_bus_mem_free_all(&sc->sc_bus, &uhci_iterate_hw_softc);
427
428	return (0);
429}
430
431static device_method_t uhci_pci_methods[] = {
432	/* Device interface */
433	DEVMETHOD(device_probe, uhci_pci_probe),
434	DEVMETHOD(device_attach, uhci_pci_attach),
435	DEVMETHOD(device_detach, uhci_pci_detach),
436	DEVMETHOD(device_suspend, bus_generic_suspend),
437	DEVMETHOD(device_resume, bus_generic_resume),
438	DEVMETHOD(device_shutdown, bus_generic_shutdown),
439	DEVMETHOD(usb_take_controller, uhci_pci_take_controller),
440
441	DEVMETHOD_END
442};
443
444static driver_t uhci_driver = {
445	.name = "uhci",
446	.methods = uhci_pci_methods,
447	.size = sizeof(struct uhci_softc),
448};
449
450static devclass_t uhci_devclass;
451
452DRIVER_MODULE(uhci, pci, uhci_driver, uhci_devclass, 0, 0);
453MODULE_DEPEND(uhci, usb, 1, 1, 1);
454