2011-04-05 02:48:15 +04:00
|
|
|
/* $NetBSD: ohci_pci.c,v 1.47 2011/04/04 22:48:15 dyoung Exp $ */
|
1998-07-12 23:51:55 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
1998-11-26 01:32:04 +03:00
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
2000-04-27 19:26:44 +04:00
|
|
|
* by Lennart Augustsson (lennart@augustsson.net) at
|
1998-11-26 01:32:04 +03:00
|
|
|
* Carlstedt Research & Technology.
|
1998-07-12 23:51:55 +04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2001-11-13 10:48:40 +03:00
|
|
|
#include <sys/cdefs.h>
|
2011-04-05 02:48:15 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: ohci_pci.c,v 1.47 2011/04/04 22:48:15 dyoung Exp $");
|
2001-11-13 10:48:40 +03:00
|
|
|
|
2001-11-06 06:17:36 +03:00
|
|
|
#include "ehci.h"
|
|
|
|
|
1998-07-12 23:51:55 +04:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/queue.h>
|
|
|
|
|
2007-10-19 15:59:34 +04:00
|
|
|
#include <sys/bus.h>
|
1998-07-25 19:15:39 +04:00
|
|
|
|
1998-07-12 23:51:55 +04:00
|
|
|
#include <dev/pci/pcivar.h>
|
2001-11-06 06:17:36 +03:00
|
|
|
#include <dev/pci/usb_pci.h>
|
1998-07-12 23:51:55 +04:00
|
|
|
|
|
|
|
#include <dev/usb/usb.h>
|
|
|
|
#include <dev/usb/usbdi.h>
|
|
|
|
#include <dev/usb/usbdivar.h>
|
1998-07-25 19:15:39 +04:00
|
|
|
#include <dev/usb/usb_mem.h>
|
|
|
|
|
1998-07-12 23:51:55 +04:00
|
|
|
#include <dev/usb/ohcireg.h>
|
|
|
|
#include <dev/usb/ohcivar.h>
|
|
|
|
|
1999-10-12 15:21:24 +04:00
|
|
|
struct ohci_pci_softc {
|
|
|
|
ohci_softc_t sc;
|
2001-11-06 06:17:36 +03:00
|
|
|
#if NEHCI > 0
|
|
|
|
struct usb_pci sc_pci;
|
|
|
|
#endif
|
1999-10-12 15:21:24 +04:00
|
|
|
pci_chipset_tag_t sc_pc;
|
2007-12-09 23:27:42 +03:00
|
|
|
pcitag_t sc_tag;
|
1999-10-12 15:21:24 +04:00
|
|
|
void *sc_ih; /* interrupt vectoring */
|
|
|
|
};
|
1998-07-12 23:51:55 +04:00
|
|
|
|
2005-06-28 04:28:41 +04:00
|
|
|
static int
|
2009-04-17 23:44:13 +04:00
|
|
|
ohci_pci_match(device_t parent, cfdata_t match, void *aux)
|
1998-07-12 23:51:55 +04:00
|
|
|
{
|
|
|
|
struct pci_attach_args *pa = (struct pci_attach_args *) aux;
|
|
|
|
|
1998-07-26 03:23:01 +04:00
|
|
|
if (PCI_CLASS(pa->pa_class) == PCI_CLASS_SERIALBUS &&
|
|
|
|
PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_SERIALBUS_USB &&
|
|
|
|
PCI_INTERFACE(pa->pa_class) == PCI_INTERFACE_OHCI)
|
2009-04-17 23:44:13 +04:00
|
|
|
return 1;
|
2005-02-27 03:26:58 +03:00
|
|
|
|
2009-04-17 23:44:13 +04:00
|
|
|
return 0;
|
1998-07-12 23:51:55 +04:00
|
|
|
}
|
|
|
|
|
2005-06-28 04:28:41 +04:00
|
|
|
static void
|
2008-03-08 00:48:46 +03:00
|
|
|
ohci_pci_attach(device_t parent, device_t self, void *aux)
|
1998-07-12 23:51:55 +04:00
|
|
|
{
|
2008-03-08 00:48:46 +03:00
|
|
|
struct ohci_pci_softc *sc = device_private(self);
|
1998-07-12 23:51:55 +04:00
|
|
|
struct pci_attach_args *pa = (struct pci_attach_args *)aux;
|
|
|
|
pci_chipset_tag_t pc = pa->pa_pc;
|
2000-09-06 04:17:23 +04:00
|
|
|
pcitag_t tag = pa->pa_tag;
|
1998-07-12 23:51:55 +04:00
|
|
|
char const *intrstr;
|
|
|
|
pci_intr_handle_t ih;
|
|
|
|
pcireg_t csr;
|
|
|
|
char devinfo[256];
|
|
|
|
usbd_status r;
|
2004-08-02 22:43:38 +04:00
|
|
|
const char *vendor;
|
2008-03-28 20:14:45 +03:00
|
|
|
|
|
|
|
sc->sc.sc_dev = self;
|
2008-03-29 05:20:41 +03:00
|
|
|
sc->sc.sc_bus.hci_private = sc;
|
1998-07-12 23:51:55 +04:00
|
|
|
|
2004-04-24 01:13:05 +04:00
|
|
|
pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo, sizeof(devinfo));
|
2009-04-26 12:46:10 +04:00
|
|
|
aprint_normal(": %s (rev. 0x%02x)\n",
|
|
|
|
devinfo, PCI_REVISION(pa->pa_class));
|
2010-03-11 06:54:56 +03:00
|
|
|
aprint_naive(": USB Controller\n");
|
1998-07-12 23:51:55 +04:00
|
|
|
|
|
|
|
/* Map I/O registers */
|
|
|
|
if (pci_mapreg_map(pa, PCI_CBMEM, PCI_MAPREG_TYPE_MEM, 0,
|
2000-04-25 13:20:54 +04:00
|
|
|
&sc->sc.iot, &sc->sc.ioh, NULL, &sc->sc.sc_size)) {
|
2009-04-26 12:46:10 +04:00
|
|
|
sc->sc.sc_size = 0;
|
|
|
|
aprint_error_dev(self, "can't map mem space\n");
|
1998-07-12 23:51:55 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1999-10-12 15:21:24 +04:00
|
|
|
/* Disable interrupts, so we don't get any spurious ones. */
|
|
|
|
bus_space_write_4(sc->sc.iot, sc->sc.ioh, OHCI_INTERRUPT_DISABLE,
|
|
|
|
OHCI_ALL_INTRS);
|
1999-09-05 02:00:32 +04:00
|
|
|
|
1999-10-12 15:21:24 +04:00
|
|
|
sc->sc_pc = pc;
|
2007-12-09 23:27:42 +03:00
|
|
|
sc->sc_tag = tag;
|
1999-10-12 15:21:24 +04:00
|
|
|
sc->sc.sc_bus.dmatag = pa->pa_dmat;
|
1998-07-12 23:51:55 +04:00
|
|
|
|
|
|
|
/* Enable the device. */
|
2000-09-06 04:17:23 +04:00
|
|
|
csr = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);
|
|
|
|
pci_conf_write(pc, tag, PCI_COMMAND_STATUS_REG,
|
1998-07-12 23:51:55 +04:00
|
|
|
csr | PCI_COMMAND_MASTER_ENABLE);
|
|
|
|
|
|
|
|
/* Map and establish the interrupt. */
|
2000-12-29 01:59:06 +03:00
|
|
|
if (pci_intr_map(pa, &ih)) {
|
2009-04-26 12:46:10 +04:00
|
|
|
aprint_error_dev(self, "couldn't map interrupt\n");
|
|
|
|
goto fail;
|
1998-07-12 23:51:55 +04:00
|
|
|
}
|
2009-04-26 12:46:10 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate IRQ
|
|
|
|
*/
|
1998-07-12 23:51:55 +04:00
|
|
|
intrstr = pci_intr_string(pc, ih);
|
|
|
|
sc->sc_ih = pci_intr_establish(pc, ih, IPL_USB, ohci_intr, sc);
|
|
|
|
if (sc->sc_ih == NULL) {
|
2009-04-26 12:46:10 +04:00
|
|
|
aprint_error_dev(self, "couldn't establish interrupt");
|
1998-07-12 23:51:55 +04:00
|
|
|
if (intrstr != NULL)
|
2009-04-26 12:46:10 +04:00
|
|
|
aprint_error(" at %s", intrstr);
|
|
|
|
aprint_error("\n");
|
|
|
|
goto fail;
|
1998-07-12 23:51:55 +04:00
|
|
|
}
|
2009-04-26 12:46:10 +04:00
|
|
|
aprint_normal_dev(self, "interrupting at %s\n", intrstr);
|
1998-07-12 23:51:55 +04:00
|
|
|
|
|
|
|
/* Figure out vendor for root hub descriptor. */
|
2010-05-25 12:37:10 +04:00
|
|
|
vendor = pci_findvendor(pa->pa_id);
|
1999-10-12 15:21:24 +04:00
|
|
|
sc->sc.sc_id_vendor = PCI_VENDOR(pa->pa_id);
|
1998-07-12 23:51:55 +04:00
|
|
|
if (vendor)
|
2004-04-22 04:17:10 +04:00
|
|
|
strlcpy(sc->sc.sc_vendor, vendor, sizeof(sc->sc.sc_vendor));
|
1998-07-12 23:51:55 +04:00
|
|
|
else
|
2004-04-22 04:17:10 +04:00
|
|
|
snprintf(sc->sc.sc_vendor, sizeof(sc->sc.sc_vendor),
|
|
|
|
"vendor 0x%04x", PCI_VENDOR(pa->pa_id));
|
2005-02-27 03:26:58 +03:00
|
|
|
|
1999-10-12 15:21:24 +04:00
|
|
|
r = ohci_init(&sc->sc);
|
1998-07-12 23:51:55 +04:00
|
|
|
if (r != USBD_NORMAL_COMPLETION) {
|
2009-04-26 12:46:10 +04:00
|
|
|
aprint_error_dev(self, "init failed, error=%d\n", r);
|
|
|
|
goto fail;
|
1998-07-12 23:51:55 +04:00
|
|
|
}
|
|
|
|
|
2001-11-06 06:17:36 +03:00
|
|
|
#if NEHCI > 0
|
2008-03-28 20:14:45 +03:00
|
|
|
usb_pci_add(&sc->sc_pci, pa, self);
|
2001-11-06 06:17:36 +03:00
|
|
|
#endif
|
|
|
|
|
2008-03-08 00:36:51 +03:00
|
|
|
if (!pmf_device_register1(self, ohci_suspend, ohci_resume,
|
|
|
|
ohci_shutdown))
|
2007-12-09 23:27:42 +03:00
|
|
|
aprint_error_dev(self, "couldn't establish power handler\n");
|
|
|
|
|
1998-07-12 23:51:55 +04:00
|
|
|
/* Attach usb device. */
|
2008-03-08 00:48:46 +03:00
|
|
|
sc->sc.sc_child = config_found(self, &sc->sc.sc_bus, usbctlprint);
|
2009-04-26 12:46:10 +04:00
|
|
|
return;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
if (sc->sc_ih) {
|
|
|
|
pci_intr_disestablish(sc->sc_pc, sc->sc_ih);
|
|
|
|
sc->sc_ih = NULL;
|
|
|
|
}
|
|
|
|
if (sc->sc.sc_size) {
|
|
|
|
bus_space_unmap(sc->sc.iot, sc->sc.ioh, sc->sc.sc_size);
|
|
|
|
sc->sc.sc_size = 0;
|
|
|
|
}
|
|
|
|
return;
|
1999-10-12 15:21:24 +04:00
|
|
|
}
|
|
|
|
|
2005-06-28 04:28:41 +04:00
|
|
|
static int
|
2009-04-17 23:44:13 +04:00
|
|
|
ohci_pci_detach(device_t self, int flags)
|
1999-10-12 15:21:24 +04:00
|
|
|
{
|
2008-03-08 00:48:46 +03:00
|
|
|
struct ohci_pci_softc *sc = device_private(self);
|
1999-10-12 15:21:24 +04:00
|
|
|
int rv;
|
|
|
|
|
|
|
|
rv = ohci_detach(&sc->sc, flags);
|
|
|
|
if (rv)
|
2009-04-17 23:44:13 +04:00
|
|
|
return rv;
|
2009-04-17 21:31:01 +04:00
|
|
|
|
2011-04-05 02:48:15 +04:00
|
|
|
pmf_device_deregister(self);
|
|
|
|
|
|
|
|
ohci_shutdown(self, flags);
|
|
|
|
|
2009-04-26 12:46:10 +04:00
|
|
|
if (sc->sc.sc_size) {
|
|
|
|
/* Disable interrupts, so we don't get any spurious ones. */
|
|
|
|
bus_space_write_4(sc->sc.iot, sc->sc.ioh,
|
|
|
|
OHCI_INTERRUPT_DISABLE, OHCI_ALL_INTRS);
|
|
|
|
}
|
2009-04-17 21:31:01 +04:00
|
|
|
|
2000-04-25 13:20:54 +04:00
|
|
|
if (sc->sc_ih != NULL) {
|
1999-10-12 15:21:24 +04:00
|
|
|
pci_intr_disestablish(sc->sc_pc, sc->sc_ih);
|
2000-04-25 13:20:54 +04:00
|
|
|
sc->sc_ih = NULL;
|
1999-10-12 15:21:24 +04:00
|
|
|
}
|
2000-04-25 13:20:54 +04:00
|
|
|
if (sc->sc.sc_size) {
|
|
|
|
bus_space_unmap(sc->sc.iot, sc->sc.ioh, sc->sc.sc_size);
|
|
|
|
sc->sc.sc_size = 0;
|
1999-10-12 15:21:24 +04:00
|
|
|
}
|
2001-11-06 06:17:36 +03:00
|
|
|
#if NEHCI > 0
|
|
|
|
usb_pci_rem(&sc->sc_pci);
|
|
|
|
#endif
|
2009-04-17 23:44:13 +04:00
|
|
|
return 0;
|
1998-07-12 23:51:55 +04:00
|
|
|
}
|
2005-06-28 04:28:41 +04:00
|
|
|
|
2009-04-26 12:54:13 +04:00
|
|
|
CFATTACH_DECL3_NEW(ohci_pci, sizeof(struct ohci_pci_softc),
|
2008-02-23 01:22:27 +03:00
|
|
|
ohci_pci_match, ohci_pci_attach, ohci_pci_detach, ohci_activate, NULL,
|
2009-04-26 12:54:13 +04:00
|
|
|
ohci_childdet, DVF_DETACH_SHUTDOWN);
|