1999-01-10 18:31:22 +00:00
|
|
|
/* $FreeBSD$ */
|
1998-12-09 23:28:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Lennart Augustsson (augustss@carlstedt.se) at
|
|
|
|
* Carlstedt Research & Technology.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* USB Open Host Controller driver.
|
|
|
|
*
|
|
|
|
* OHCI spec: http://www.intel.com/design/usb/ohci11d.pdf
|
|
|
|
*/
|
|
|
|
|
1999-05-20 19:52:04 +00:00
|
|
|
/* The low level controller code for OHCI has been split into
|
|
|
|
* PCI probes and OHCI specific code. This was done to facilitate the
|
|
|
|
* sharing of code between *BSD's
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
1999-04-16 21:22:55 +00:00
|
|
|
#include "opt_bus.h"
|
|
|
|
|
1998-12-09 23:28:43 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/module.h>
|
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <sys/queue.h>
|
1999-04-16 21:22:55 +00:00
|
|
|
#include <machine/bus.h>
|
|
|
|
#include <sys/rman.h>
|
|
|
|
#include <machine/resource.h>
|
1998-12-09 23:28:43 +00:00
|
|
|
|
|
|
|
#include <pci/pcivar.h>
|
|
|
|
#include <pci/pcireg.h>
|
|
|
|
|
|
|
|
#include <dev/usb/usb.h>
|
|
|
|
#include <dev/usb/usbdi.h>
|
|
|
|
#include <dev/usb/usbdivar.h>
|
|
|
|
#include <dev/usb/usb_mem.h>
|
|
|
|
|
|
|
|
#include <dev/usb/ohcireg.h>
|
|
|
|
#include <dev/usb/ohcivar.h>
|
|
|
|
|
1999-01-06 19:55:49 +00:00
|
|
|
#define PCI_OHCI_VENDORID_ALI 0x10b9
|
2000-01-21 10:46:29 +00:00
|
|
|
#define PCI_OHCI_VENDORID_AMD756 0x1022
|
2001-07-02 14:03:25 +00:00
|
|
|
#define PCI_OHCI_VENDORID_APPLE 0x106b
|
1999-02-15 21:39:49 +00:00
|
|
|
#define PCI_OHCI_VENDORID_CMDTECH 0x1095
|
|
|
|
#define PCI_OHCI_VENDORID_COMPAQ 0x0e11
|
1999-01-22 00:36:46 +00:00
|
|
|
#define PCI_OHCI_VENDORID_NEC 0x1033
|
|
|
|
#define PCI_OHCI_VENDORID_OPTI 0x1045
|
1999-01-06 19:55:49 +00:00
|
|
|
#define PCI_OHCI_VENDORID_SIS 0x1039
|
|
|
|
|
|
|
|
#define PCI_OHCI_DEVICEID_ALADDIN_V 0x523710b9
|
1999-06-13 20:46:10 +00:00
|
|
|
static const char *ohci_device_aladdin_v = "AcerLabs M5237 (Aladdin-V) USB controller";
|
2000-01-21 10:46:29 +00:00
|
|
|
#define PCI_OHCI_DEVICEID_AMD756 0x740c1022
|
|
|
|
static const char *ohci_device_amd756 = "AMD-756 USB Controller";
|
1999-01-22 00:36:46 +00:00
|
|
|
#define PCI_OHCI_DEVICEID_FIRELINK 0xc8611045
|
1999-06-13 20:46:10 +00:00
|
|
|
static const char *ohci_device_firelink = "OPTi 82C861 (FireLink) USB controller";
|
1999-01-22 00:36:46 +00:00
|
|
|
#define PCI_OHCI_DEVICEID_NEC 0x00351033
|
1999-06-13 20:46:10 +00:00
|
|
|
static const char *ohci_device_nec = "NEC uPD 9210 USB controller";
|
1999-02-15 21:39:49 +00:00
|
|
|
#define PCI_OHCI_DEVICEID_USB0670 0x06701095
|
1999-06-13 20:46:10 +00:00
|
|
|
static const char *ohci_device_usb0670 = "CMD Tech 670 (USB0670) USB controller";
|
1999-02-15 21:39:49 +00:00
|
|
|
#define PCI_OHCI_DEVICEID_USB0673 0x06731095
|
1999-06-13 20:46:10 +00:00
|
|
|
static const char *ohci_device_usb0673 = "CMD Tech 673 (USB0673) USB controller";
|
2000-03-15 22:26:17 +00:00
|
|
|
#define PCI_OHCI_DEVICEID_SIS5571 0x70011039
|
|
|
|
static const char *ohci_device_sis5571 = "SiS 5571 USB controller";
|
2001-07-02 14:03:25 +00:00
|
|
|
#define PCI_OHCI_DEVICEID_KEYLARGO 0x0019106b
|
|
|
|
static const char *ohci_device_keylargo = "Apple KeyLargo USB controller";
|
1999-02-15 21:39:49 +00:00
|
|
|
|
1999-06-13 20:46:10 +00:00
|
|
|
static const char *ohci_device_generic = "OHCI (generic) USB controller";
|
1999-01-22 00:36:46 +00:00
|
|
|
|
1999-04-16 21:22:55 +00:00
|
|
|
#define PCI_OHCI_BASE_REG 0x10
|
1999-03-27 23:08:44 +00:00
|
|
|
|
2000-05-07 20:16:25 +00:00
|
|
|
|
|
|
|
static int ohci_pci_attach(device_t self);
|
|
|
|
static int ohci_pci_detach(device_t self);
|
|
|
|
|
1998-12-14 06:37:37 +00:00
|
|
|
static const char *
|
1999-08-18 10:24:59 +00:00
|
|
|
ohci_pci_match(device_t self)
|
1998-12-09 23:28:43 +00:00
|
|
|
{
|
1999-08-18 10:24:59 +00:00
|
|
|
u_int32_t device_id = pci_get_devid(self);
|
1998-12-09 23:28:43 +00:00
|
|
|
|
1999-03-27 23:08:44 +00:00
|
|
|
switch(device_id) {
|
|
|
|
case PCI_OHCI_DEVICEID_ALADDIN_V:
|
1999-01-06 19:55:49 +00:00
|
|
|
return (ohci_device_aladdin_v);
|
2000-01-21 10:46:29 +00:00
|
|
|
case PCI_OHCI_DEVICEID_AMD756:
|
|
|
|
return (ohci_device_amd756);
|
1999-03-27 23:08:44 +00:00
|
|
|
case PCI_OHCI_DEVICEID_USB0670:
|
1999-02-15 21:39:49 +00:00
|
|
|
return (ohci_device_usb0670);
|
1999-03-27 23:08:44 +00:00
|
|
|
case PCI_OHCI_DEVICEID_USB0673:
|
1999-02-15 21:39:49 +00:00
|
|
|
return (ohci_device_usb0673);
|
1999-03-27 23:08:44 +00:00
|
|
|
case PCI_OHCI_DEVICEID_FIRELINK:
|
1999-01-22 00:36:46 +00:00
|
|
|
return (ohci_device_firelink);
|
1999-03-27 23:08:44 +00:00
|
|
|
case PCI_OHCI_DEVICEID_NEC:
|
1999-01-22 00:36:46 +00:00
|
|
|
return (ohci_device_nec);
|
2000-03-15 22:26:17 +00:00
|
|
|
case PCI_OHCI_DEVICEID_SIS5571:
|
|
|
|
return (ohci_device_sis5571);
|
2001-07-02 14:03:25 +00:00
|
|
|
case PCI_OHCI_DEVICEID_KEYLARGO:
|
|
|
|
return (ohci_device_keylargo);
|
1999-03-27 23:08:44 +00:00
|
|
|
default:
|
1999-08-18 10:24:59 +00:00
|
|
|
if ( pci_get_class(self) == PCIC_SERIALBUS
|
|
|
|
&& pci_get_subclass(self) == PCIS_SERIALBUS_USB
|
|
|
|
&& pci_get_progif(self) == PCI_INTERFACE_OHCI) {
|
1999-04-16 21:22:55 +00:00
|
|
|
return (ohci_device_generic);
|
1999-01-06 19:55:49 +00:00
|
|
|
}
|
|
|
|
}
|
1998-12-09 23:28:43 +00:00
|
|
|
|
|
|
|
return NULL; /* dunno */
|
|
|
|
}
|
|
|
|
|
1999-04-16 21:22:55 +00:00
|
|
|
static int
|
1999-08-18 10:24:59 +00:00
|
|
|
ohci_pci_probe(device_t self)
|
1998-12-09 23:28:43 +00:00
|
|
|
{
|
1999-08-18 10:24:59 +00:00
|
|
|
const char *desc = ohci_pci_match(self);
|
1999-04-16 21:22:55 +00:00
|
|
|
if (desc) {
|
1999-08-18 10:24:59 +00:00
|
|
|
device_set_desc(self, desc);
|
1999-04-16 21:22:55 +00:00
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return ENXIO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
1999-08-18 10:24:59 +00:00
|
|
|
ohci_pci_attach(device_t self)
|
1999-04-16 21:22:55 +00:00
|
|
|
{
|
1999-08-18 10:24:59 +00:00
|
|
|
ohci_softc_t *sc = device_get_softc(self);
|
|
|
|
int err;
|
1999-04-16 21:22:55 +00:00
|
|
|
int rid;
|
|
|
|
|
1999-12-03 01:34:42 +00:00
|
|
|
/* XXX where does it say so in the spec? */
|
|
|
|
sc->sc_bus.usbrev = USBREV_1_0;
|
|
|
|
|
1999-04-16 21:22:55 +00:00
|
|
|
rid = PCI_CBMEM;
|
2000-05-07 20:16:25 +00:00
|
|
|
sc->io_res = bus_alloc_resource(self, SYS_RES_MEMORY, &rid,
|
|
|
|
0, ~0, 1, RF_ACTIVE);
|
|
|
|
if (!sc->io_res) {
|
|
|
|
device_printf(self, "Could not map memory\n");
|
1999-04-16 21:22:55 +00:00
|
|
|
return ENXIO;
|
|
|
|
}
|
1998-12-09 23:28:43 +00:00
|
|
|
|
2000-05-07 20:16:25 +00:00
|
|
|
sc->iot = rman_get_bustag(sc->io_res);
|
|
|
|
sc->ioh = rman_get_bushandle(sc->io_res);
|
1998-12-09 23:28:43 +00:00
|
|
|
|
1999-04-16 21:22:55 +00:00
|
|
|
rid = 0;
|
2000-05-07 20:16:25 +00:00
|
|
|
sc->irq_res = bus_alloc_resource(self, SYS_RES_IRQ, &rid, 0, ~0, 1,
|
2000-01-31 14:05:21 +00:00
|
|
|
RF_SHAREABLE | RF_ACTIVE);
|
2000-05-07 20:16:25 +00:00
|
|
|
if (sc->irq_res == NULL) {
|
|
|
|
device_printf(self, "Could not allocate irq\n");
|
|
|
|
ohci_pci_detach(self);
|
|
|
|
return ENXIO;
|
1999-04-16 21:22:55 +00:00
|
|
|
}
|
1998-12-09 23:28:43 +00:00
|
|
|
|
2000-01-26 10:52:27 +00:00
|
|
|
sc->sc_bus.bdev = device_add_child(self, "usb", -1);
|
|
|
|
if (!sc->sc_bus.bdev) {
|
2000-05-07 20:16:25 +00:00
|
|
|
device_printf(self, "Could not add USB device\n");
|
|
|
|
ohci_pci_detach(self);
|
|
|
|
return ENOMEM;
|
1998-12-09 23:28:43 +00:00
|
|
|
}
|
2000-01-26 10:52:27 +00:00
|
|
|
device_set_ivars(sc->sc_bus.bdev, sc);
|
1998-12-09 23:28:43 +00:00
|
|
|
|
1999-08-18 10:24:59 +00:00
|
|
|
switch (pci_get_devid(self)) {
|
1999-01-06 19:55:49 +00:00
|
|
|
case PCI_OHCI_DEVICEID_ALADDIN_V:
|
2000-01-26 10:52:27 +00:00
|
|
|
device_set_desc(sc->sc_bus.bdev, ohci_device_aladdin_v);
|
1999-03-27 23:08:44 +00:00
|
|
|
sprintf(sc->sc_vendor, "AcerLabs");
|
1999-01-06 19:55:49 +00:00
|
|
|
break;
|
2000-01-21 10:46:29 +00:00
|
|
|
case PCI_OHCI_DEVICEID_AMD756:
|
2000-01-26 10:52:27 +00:00
|
|
|
device_set_desc(sc->sc_bus.bdev, ohci_device_amd756);
|
2000-01-21 10:46:29 +00:00
|
|
|
sprintf(sc->sc_vendor, "AMD");
|
|
|
|
break;
|
1999-01-22 00:36:46 +00:00
|
|
|
case PCI_OHCI_DEVICEID_FIRELINK:
|
2000-01-26 10:52:27 +00:00
|
|
|
device_set_desc(sc->sc_bus.bdev, ohci_device_firelink);
|
1999-03-27 23:08:44 +00:00
|
|
|
sprintf(sc->sc_vendor, "OPTi");
|
1999-01-22 00:36:46 +00:00
|
|
|
break;
|
|
|
|
case PCI_OHCI_DEVICEID_NEC:
|
2000-01-26 10:52:27 +00:00
|
|
|
device_set_desc(sc->sc_bus.bdev, ohci_device_nec);
|
1999-03-27 23:08:44 +00:00
|
|
|
sprintf(sc->sc_vendor, "NEC");
|
1999-01-22 00:36:46 +00:00
|
|
|
break;
|
1999-02-15 21:39:49 +00:00
|
|
|
case PCI_OHCI_DEVICEID_USB0670:
|
2000-01-26 10:52:27 +00:00
|
|
|
device_set_desc(sc->sc_bus.bdev, ohci_device_usb0670);
|
1999-03-27 23:08:44 +00:00
|
|
|
sprintf(sc->sc_vendor, "CMDTECH");
|
1999-02-15 21:39:49 +00:00
|
|
|
break;
|
|
|
|
case PCI_OHCI_DEVICEID_USB0673:
|
2000-01-26 10:52:27 +00:00
|
|
|
device_set_desc(sc->sc_bus.bdev, ohci_device_usb0673);
|
1999-03-27 23:08:44 +00:00
|
|
|
sprintf(sc->sc_vendor, "CMDTECH");
|
1999-02-15 21:39:49 +00:00
|
|
|
break;
|
2000-03-15 22:26:17 +00:00
|
|
|
case PCI_OHCI_DEVICEID_SIS5571:
|
|
|
|
device_set_desc(sc->sc_bus.bdev, ohci_device_sis5571);
|
|
|
|
sprintf(sc->sc_vendor, "SiS");
|
|
|
|
break;
|
2001-07-05 12:04:19 +00:00
|
|
|
case PCI_OHCI_DEVICEID_KEYLARGO:
|
|
|
|
device_set_desc(sc->sc_bus.bdev, ohci_device_keylargo);
|
|
|
|
sprintf(sc->sc_vendor, "Apple");
|
|
|
|
break;
|
1999-01-06 19:55:49 +00:00
|
|
|
default:
|
1999-03-27 23:08:44 +00:00
|
|
|
if (bootverbose)
|
1999-08-18 10:24:59 +00:00
|
|
|
device_printf(self, "(New OHCI DeviceId=0x%08x)\n",
|
|
|
|
pci_get_devid(self));
|
2000-01-26 10:52:27 +00:00
|
|
|
device_set_desc(sc->sc_bus.bdev, ohci_device_generic);
|
1999-03-27 23:08:44 +00:00
|
|
|
sprintf(sc->sc_vendor, "(unknown)");
|
1999-01-06 19:55:49 +00:00
|
|
|
}
|
1998-12-09 23:28:43 +00:00
|
|
|
|
2000-05-07 20:16:25 +00:00
|
|
|
err = bus_setup_intr(self, sc->irq_res, INTR_TYPE_BIO,
|
|
|
|
(driver_intr_t *) ohci_intr, sc, &sc->ih);
|
1999-08-18 10:24:59 +00:00
|
|
|
if (err) {
|
2000-05-07 20:16:25 +00:00
|
|
|
device_printf(self, "Could not setup irq, %d\n", err);
|
|
|
|
ohci_pci_detach(self);
|
|
|
|
return ENXIO;
|
1999-08-18 10:24:59 +00:00
|
|
|
}
|
|
|
|
|
1999-03-27 23:08:44 +00:00
|
|
|
err = ohci_init(sc);
|
1999-08-18 10:24:59 +00:00
|
|
|
if (!err)
|
|
|
|
err = device_probe_and_attach(sc->sc_bus.bdev);
|
|
|
|
|
|
|
|
if (err) {
|
2000-01-26 10:52:27 +00:00
|
|
|
device_printf(self, "USB init failed\n");
|
2000-05-07 20:16:25 +00:00
|
|
|
ohci_pci_detach(self);
|
|
|
|
return EIO;
|
1999-01-22 00:36:46 +00:00
|
|
|
}
|
|
|
|
|
1999-08-18 10:24:59 +00:00
|
|
|
return 0;
|
2000-05-07 20:16:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ohci_pci_detach(device_t self)
|
|
|
|
{
|
|
|
|
ohci_softc_t *sc = device_get_softc(self);
|
|
|
|
|
|
|
|
/* XXX this code is not yet fit to be used as detach for
|
|
|
|
* the OHCI controller
|
|
|
|
*/
|
|
|
|
|
2000-01-26 10:52:27 +00:00
|
|
|
/* disable interrupts that might have been switched on
|
|
|
|
* in ohci_init
|
|
|
|
*/
|
2000-05-07 20:16:25 +00:00
|
|
|
if (sc->iot && sc->ioh)
|
|
|
|
bus_space_write_4(sc->iot, sc->ioh,
|
|
|
|
OHCI_INTERRUPT_DISABLE, OHCI_ALL_INTRS);
|
|
|
|
|
|
|
|
if (sc->irq_res) {
|
|
|
|
int err = bus_teardown_intr(self, sc->irq_res, sc->ih);
|
|
|
|
if (err)
|
|
|
|
/* XXX or should we panic? */
|
|
|
|
device_printf(self, "Could not tear down irq, %d\n",
|
|
|
|
err);
|
|
|
|
sc->irq_res = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sc->sc_bus.bdev) {
|
|
|
|
device_delete_child(self, sc->sc_bus.bdev);
|
|
|
|
sc->sc_bus.bdev = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sc->irq_res) {
|
|
|
|
bus_release_resource(self, SYS_RES_IOPORT, 0, sc->irq_res);
|
|
|
|
sc->irq_res = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sc->io_res) {
|
|
|
|
bus_release_resource(self, SYS_RES_MEMORY,PCI_CBMEM,sc->io_res);
|
|
|
|
sc->io_res = NULL;
|
|
|
|
sc->iot = 0;
|
|
|
|
sc->ioh = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
1998-12-09 23:28:43 +00:00
|
|
|
}
|
1999-04-16 21:22:55 +00:00
|
|
|
|
|
|
|
static device_method_t ohci_methods[] = {
|
|
|
|
/* Device interface */
|
|
|
|
DEVMETHOD(device_probe, ohci_pci_probe),
|
|
|
|
DEVMETHOD(device_attach, ohci_pci_attach),
|
1999-11-22 03:22:43 +00:00
|
|
|
DEVMETHOD(device_shutdown, bus_generic_shutdown),
|
1999-04-16 21:22:55 +00:00
|
|
|
|
|
|
|
/* Bus interface */
|
|
|
|
DEVMETHOD(bus_print_child, bus_generic_print_child),
|
|
|
|
|
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
static driver_t ohci_driver = {
|
|
|
|
"ohci",
|
|
|
|
ohci_methods,
|
|
|
|
sizeof(ohci_softc_t),
|
|
|
|
};
|
|
|
|
|
|
|
|
static devclass_t ohci_devclass;
|
|
|
|
|
|
|
|
DRIVER_MODULE(ohci, pci, ohci_driver, ohci_devclass, 0, 0);
|