Home | History | Annotate | Line # | Download | only in dev
ohci_aubus.c revision 1.1
      1  1.1  hpeyerl /*	$NetBSD: ohci_aubus.c,v 1.1 2003/04/01 17:36:45 hpeyerl Exp $	*/
      2  1.1  hpeyerl 
      3  1.1  hpeyerl /*-
      4  1.1  hpeyerl  * Copyright (c) 1998, 1999, 2000, 2002, 2003 The NetBSD Foundation, Inc.
      5  1.1  hpeyerl  * All rights reserved.
      6  1.1  hpeyerl  *
      7  1.1  hpeyerl  * This code is derived from software contributed to The NetBSD Foundation
      8  1.1  hpeyerl  * by Herb Peyerl of Middle Digital Inc.
      9  1.1  hpeyerl  *
     10  1.1  hpeyerl  * Redistribution and use in source and binary forms, with or without
     11  1.1  hpeyerl  * modification, are permitted provided that the following conditions
     12  1.1  hpeyerl  * are met:
     13  1.1  hpeyerl  * 1. Redistributions of source code must retain the above copyright
     14  1.1  hpeyerl  *    notice, this list of conditions and the following disclaimer.
     15  1.1  hpeyerl  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1  hpeyerl  *    notice, this list of conditions and the following disclaimer in the
     17  1.1  hpeyerl  *    documentation and/or other materials provided with the distribution.
     18  1.1  hpeyerl  * 3. All advertising materials mentioning features or use of this software
     19  1.1  hpeyerl  *    must display the following acknowledgement:
     20  1.1  hpeyerl  *      This product includes software developed by the NetBSD
     21  1.1  hpeyerl  *      Foundation, Inc. and its contributors.
     22  1.1  hpeyerl  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.1  hpeyerl  *    contributors may be used to endorse or promote products derived
     24  1.1  hpeyerl  *    from this software without specific prior written permission.
     25  1.1  hpeyerl  *
     26  1.1  hpeyerl  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.1  hpeyerl  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.1  hpeyerl  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.1  hpeyerl  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.1  hpeyerl  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.1  hpeyerl  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.1  hpeyerl  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.1  hpeyerl  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.1  hpeyerl  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.1  hpeyerl  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.1  hpeyerl  * POSSIBILITY OF SUCH DAMAGE.
     37  1.1  hpeyerl  */
     38  1.1  hpeyerl 
     39  1.1  hpeyerl #include <sys/param.h>
     40  1.1  hpeyerl #include <sys/systm.h>
     41  1.1  hpeyerl #include <sys/device.h>
     42  1.1  hpeyerl 
     43  1.1  hpeyerl #include <machine/bus.h>
     44  1.1  hpeyerl 
     45  1.1  hpeyerl #include <mips/alchemy/include/aureg.h>
     46  1.1  hpeyerl #include <mips/alchemy/include/auvar.h>
     47  1.1  hpeyerl #include <mips/alchemy/include/aubusvar.h>
     48  1.1  hpeyerl 
     49  1.1  hpeyerl #include <evbmips/alchemy/pb1000reg.h>
     50  1.1  hpeyerl #include <evbmips/alchemy/pb1000_obiovar.h>
     51  1.1  hpeyerl 
     52  1.1  hpeyerl #include <dev/usb/usb.h>
     53  1.1  hpeyerl #include <dev/usb/usbdi.h>
     54  1.1  hpeyerl #include <dev/usb/usbdivar.h>
     55  1.1  hpeyerl #include <dev/usb/usb_mem.h>
     56  1.1  hpeyerl 
     57  1.1  hpeyerl #include <dev/usb/ohcireg.h>
     58  1.1  hpeyerl #include <dev/usb/ohcivar.h>
     59  1.1  hpeyerl 
     60  1.1  hpeyerl 
     61  1.1  hpeyerl static int	ohci_aubus_match(struct device *, struct cfdata *, void *);
     62  1.1  hpeyerl static void	ohci_aubus_attach(struct device *, struct device *, void *);
     63  1.1  hpeyerl 
     64  1.1  hpeyerl CFATTACH_DECL(ohci_aubus, sizeof (ohci_softc_t),
     65  1.1  hpeyerl     ohci_aubus_match, ohci_aubus_attach, NULL, NULL);
     66  1.1  hpeyerl 
     67  1.1  hpeyerl struct aubus_ohci_softc {
     68  1.1  hpeyerl 	ohci_softc_t sc;
     69  1.1  hpeyerl 	void *sc_ih;
     70  1.1  hpeyerl };
     71  1.1  hpeyerl 
     72  1.1  hpeyerl int
     73  1.1  hpeyerl ohci_aubus_match(struct device *parent, struct cfdata *match, void *aux)
     74  1.1  hpeyerl {
     75  1.1  hpeyerl 	struct aubus_attach_args *aa = aux;
     76  1.1  hpeyerl 
     77  1.1  hpeyerl 	if (strcmp(aa->aa_name, match->cf_name) == 0)
     78  1.1  hpeyerl 		return (1);
     79  1.1  hpeyerl 
     80  1.1  hpeyerl 	return (0);
     81  1.1  hpeyerl }
     82  1.1  hpeyerl 
     83  1.1  hpeyerl void
     84  1.1  hpeyerl ohci_aubus_attach(struct device *parent, struct device *self, void *aux)
     85  1.1  hpeyerl {
     86  1.1  hpeyerl 	struct aubus_ohci_softc *sc = (struct aubus_ohci_softc *)self;
     87  1.1  hpeyerl 	usbd_status r;
     88  1.1  hpeyerl 	uint32_t x, tmp;
     89  1.1  hpeyerl 	struct aubus_attach_args *aa = aux;
     90  1.1  hpeyerl 
     91  1.1  hpeyerl 	r = 0;
     92  1.1  hpeyerl 
     93  1.1  hpeyerl 	sc->sc.sc_size = USBH_SIZE;
     94  1.1  hpeyerl 	sc->sc.iot = aa->aa_st;
     95  1.1  hpeyerl 	sc->sc.sc_bus.dmatag = (bus_dma_tag_t)aa->aa_dt;
     96  1.1  hpeyerl 
     97  1.1  hpeyerl 	if (bus_space_map(sc->sc.iot, USBH_BASE, USBH_SIZE, 0, &sc->sc.ioh)) {
     98  1.1  hpeyerl 		printf("%s: Unable to map USBH registers\n",
     99  1.1  hpeyerl 			sc->sc.sc_bus.bdev.dv_xname);
    100  1.1  hpeyerl 		return;
    101  1.1  hpeyerl 	}
    102  1.1  hpeyerl 	/*
    103  1.1  hpeyerl 	 * Enable the USB Host controller here.
    104  1.1  hpeyerl 	 * As per 7.2 in the Au1500 manual:
    105  1.1  hpeyerl 	 *
    106  1.1  hpeyerl 	 *  (1) Set CE bit to enable clocks.
    107  1.1  hpeyerl 	 *  (2) Set E to enable OHCI
    108  1.1  hpeyerl 	 *  (3) Clear HCFS in OHCI_CONTROL.
    109  1.1  hpeyerl 	 *  (4) Wait for RD bit to be set.
    110  1.1  hpeyerl 	 */
    111  1.1  hpeyerl 	x = bus_space_read_4(sc->sc.iot, sc->sc.ioh, USBH_ENABLE);
    112  1.1  hpeyerl 	x |= UE_CE;
    113  1.1  hpeyerl 	bus_space_write_4(sc->sc.iot, sc->sc.ioh, USBH_ENABLE, x);
    114  1.1  hpeyerl 	delay(10);
    115  1.1  hpeyerl 	x |= (UE_E);
    116  1.1  hpeyerl 	bus_space_write_4(sc->sc.iot, sc->sc.ioh, USBH_ENABLE, x);
    117  1.1  hpeyerl 	delay(10);
    118  1.1  hpeyerl 	x = bus_space_read_4(sc->sc.iot, sc->sc.ioh, OHCI_CONTROL);
    119  1.1  hpeyerl 	x &= ~(OHCI_HCFS_MASK);
    120  1.1  hpeyerl 	bus_space_write_4(sc->sc.iot, sc->sc.ioh, OHCI_CONTROL, x);
    121  1.1  hpeyerl 	delay(10);
    122  1.1  hpeyerl 	for (x = 100; x; x--) {
    123  1.1  hpeyerl 		tmp = bus_space_read_4(sc->sc.iot, sc->sc.ioh, USBH_ENABLE);
    124  1.1  hpeyerl 		if (tmp&UE_RD)
    125  1.1  hpeyerl 			break;
    126  1.1  hpeyerl 		delay(1000);
    127  1.1  hpeyerl 	}
    128  1.1  hpeyerl 	printf(": Au1X00 OHCI\n");
    129  1.1  hpeyerl 
    130  1.1  hpeyerl 	/* Disable OHCI interrupts */
    131  1.1  hpeyerl 	bus_space_write_4(sc->sc.iot, sc->sc.ioh, OHCI_INTERRUPT_DISABLE,
    132  1.1  hpeyerl 				OHCI_ALL_INTRS);
    133  1.1  hpeyerl 	/* hook interrupt */
    134  1.1  hpeyerl 	sc->sc_ih = au_intr_establish(aa->aa_irq[0], 0, IPL_USB, IST_LEVEL_LOW,
    135  1.1  hpeyerl 			ohci_intr, sc);
    136  1.1  hpeyerl 	if (sc->sc_ih == NULL) {
    137  1.1  hpeyerl 		printf("%s: couldn't establish interrupt\n",
    138  1.1  hpeyerl 			sc->sc.sc_bus.bdev.dv_xname);
    139  1.1  hpeyerl 	}
    140  1.1  hpeyerl 
    141  1.1  hpeyerl 	if (x)
    142  1.1  hpeyerl 		r = ohci_init(&sc->sc);
    143  1.1  hpeyerl 	if (r != USBD_NORMAL_COMPLETION) {
    144  1.1  hpeyerl 		printf("%s: init failed, error=%d\n",
    145  1.1  hpeyerl 			sc->sc.sc_bus.bdev.dv_xname, r);
    146  1.1  hpeyerl 		return;
    147  1.1  hpeyerl 	}
    148  1.1  hpeyerl 
    149  1.1  hpeyerl 	/* Attach USB device */
    150  1.1  hpeyerl 	sc->sc.sc_child = config_found((void *)sc, &sc->sc.sc_bus,
    151  1.1  hpeyerl 					usbctlprint);
    152  1.1  hpeyerl 
    153  1.1  hpeyerl }
    154