Home | History | Annotate | Line # | Download | only in imx
imxusb.c revision 1.5
      1  1.5   matt /*	$NetBSD: imxusb.c,v 1.5 2013/10/07 17:36:40 matt Exp $	*/
      2  1.1    bsh /*
      3  1.1    bsh  * Copyright (c) 2009, 2010  Genetec Corporation.  All rights reserved.
      4  1.1    bsh  * Written by Hashimoto Kenichi and Hiroyuki Bessho for Genetec Corporation.
      5  1.1    bsh  *
      6  1.1    bsh  * Redistribution and use in source and binary forms, with or without
      7  1.1    bsh  * modification, are permitted provided that the following conditions
      8  1.1    bsh  * are met:
      9  1.1    bsh  * 1. Redistributions of source code must retain the above copyright
     10  1.1    bsh  *    notice, this list of conditions and the following disclaimer.
     11  1.1    bsh  * 2. Redistributions in binary form must reproduce the above copyright
     12  1.1    bsh  *    notice, this list of conditions and the following disclaimer in the
     13  1.1    bsh  *    documentation and/or other materials provided with the distribution.
     14  1.1    bsh  *
     15  1.1    bsh  * THIS SOFTWARE IS PROVIDED BY GENETEC CORPORATION ``AS IS'' AND
     16  1.1    bsh  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     17  1.1    bsh  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     18  1.1    bsh  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL GENETEC CORPORATION
     19  1.1    bsh  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     20  1.1    bsh  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     21  1.1    bsh  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     22  1.1    bsh  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     23  1.1    bsh  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     24  1.1    bsh  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     25  1.1    bsh  * POSSIBILITY OF SUCH DAMAGE.
     26  1.1    bsh  */
     27  1.1    bsh #include <sys/cdefs.h>
     28  1.5   matt __KERNEL_RCSID(0, "$NetBSD: imxusb.c,v 1.5 2013/10/07 17:36:40 matt Exp $");
     29  1.1    bsh 
     30  1.1    bsh #include <sys/param.h>
     31  1.1    bsh #include <sys/systm.h>
     32  1.1    bsh #include <sys/conf.h>
     33  1.1    bsh #include <sys/kernel.h>
     34  1.1    bsh #include <sys/device.h>
     35  1.1    bsh #include <sys/intr.h>
     36  1.1    bsh #include <sys/bus.h>
     37  1.1    bsh 
     38  1.1    bsh #include <dev/usb/usb.h>
     39  1.1    bsh #include <dev/usb/usbdi.h>
     40  1.1    bsh #include <dev/usb/usbdivar.h>
     41  1.1    bsh #include <dev/usb/usb_mem.h>
     42  1.1    bsh 
     43  1.1    bsh #include <dev/usb/ehcireg.h>
     44  1.1    bsh #include <dev/usb/ehcivar.h>
     45  1.1    bsh 
     46  1.5   matt #include <arm/pic/picvar.h>	/* XXX: for intr_establish! */
     47  1.5   matt 
     48  1.1    bsh #include <arm/imx/imxusbreg.h>
     49  1.1    bsh #include <arm/imx/imxusbvar.h>
     50  1.1    bsh #include <arm/imx/imxgpiovar.h>
     51  1.1    bsh #include "locators.h"
     52  1.1    bsh 
     53  1.1    bsh #include <dev/usb/ulpireg.h>	/* for test */
     54  1.1    bsh 
     55  1.1    bsh static int	imxehci_match(device_t, cfdata_t, void *);
     56  1.1    bsh static void	imxehci_attach(device_t, device_t, void *);
     57  1.1    bsh 
     58  1.1    bsh uint8_t imxusb_ulpi_read(struct imxehci_softc *sc, int addr);
     59  1.1    bsh void imxusb_ulpi_write(struct imxehci_softc *sc, int addr, uint8_t data);
     60  1.1    bsh static void ulpi_reset(struct imxehci_softc *sc);
     61  1.1    bsh 
     62  1.1    bsh 
     63  1.1    bsh 
     64  1.1    bsh /* attach structures */
     65  1.1    bsh CFATTACH_DECL_NEW(imxehci, sizeof(struct imxehci_softc),
     66  1.1    bsh     imxehci_match, imxehci_attach, NULL, NULL);
     67  1.1    bsh 
     68  1.1    bsh static int
     69  1.1    bsh imxehci_match(device_t parent, cfdata_t cf, void *aux)
     70  1.1    bsh {
     71  1.1    bsh 	struct imxusbc_attach_args *aa = aux;
     72  1.1    bsh 
     73  1.1    bsh 	if (aa->aa_unit < 0 || 3 < aa->aa_unit) {
     74  1.1    bsh 		return 0;
     75  1.1    bsh 	}
     76  1.1    bsh 
     77  1.1    bsh 	return 1;
     78  1.1    bsh }
     79  1.1    bsh 
     80  1.1    bsh static void
     81  1.1    bsh imxehci_attach(device_t parent, device_t self, void *aux)
     82  1.1    bsh {
     83  1.1    bsh 	struct imxusbc_attach_args *aa = aux;
     84  1.1    bsh 	struct imxusbc_softc *usbc = device_private(parent);
     85  1.1    bsh 	struct imxehci_softc *sc = device_private(self);
     86  1.1    bsh 	ehci_softc_t *hsc = &sc->sc_hsc;
     87  1.1    bsh 	bus_space_tag_t iot;
     88  1.1    bsh 	uint16_t hcirev;
     89  1.1    bsh 	usbd_status r;
     90  1.1    bsh 	uint32_t id, hwhost, hwdevice;
     91  1.1    bsh 	const char *comma;
     92  1.1    bsh 
     93  1.1    bsh 	sc->sc_hsc.sc_dev = self;
     94  1.1    bsh 	iot = sc->sc_iot = sc->sc_hsc.iot = aa->aa_iot;
     95  1.1    bsh 	sc->sc_unit = aa->aa_unit;
     96  1.1    bsh 	sc->sc_usbc = usbc;
     97  1.1    bsh 	hsc->sc_bus.hci_private = sc;
     98  1.4   matt 	hsc->sc_flags |= EHCIF_ETTF;
     99  1.1    bsh 
    100  1.1    bsh 	aprint_normal("\n");
    101  1.1    bsh 
    102  1.1    bsh 	/* per unit registers */
    103  1.1    bsh 	if (bus_space_subregion(iot, aa->aa_ioh,
    104  1.1    bsh 		aa->aa_unit * IMXUSB_EHCI_SIZE, IMXUSB_EHCI_SIZE,
    105  1.1    bsh 		&sc->sc_ioh) ||
    106  1.1    bsh 	    bus_space_subregion(iot, aa->aa_ioh,
    107  1.1    bsh 		aa->aa_unit * IMXUSB_EHCI_SIZE + IMXUSB_EHCIREGS,
    108  1.1    bsh 		IMXUSB_EHCI_SIZE - IMXUSB_EHCIREGS,
    109  1.1    bsh 		&sc->sc_hsc.ioh)) {
    110  1.1    bsh 
    111  1.1    bsh 		aprint_error_dev(self, "can't subregion\n");
    112  1.1    bsh 		return;
    113  1.1    bsh 	}
    114  1.1    bsh 
    115  1.1    bsh 	id = bus_space_read_4(iot, sc->sc_ioh, IMXUSB_ID);
    116  1.1    bsh 	hcirev = bus_space_read_2(iot, sc->sc_hsc.ioh, EHCI_HCIVERSION);
    117  1.1    bsh 
    118  1.1    bsh 	aprint_normal_dev(self,
    119  1.1    bsh 	    "i.MX USB Controller id=%d revision=%d HCI revision=0x%x\n",
    120  1.1    bsh 	    id & (uint32_t)IMXUSB_ID_ID_MASK,
    121  1.1    bsh 	    (id & (uint32_t)IMXUSB_ID_REVISION_MASK) >>
    122  1.1    bsh 	    	IMXUSB_ID_REVISION_SHIFT,
    123  1.1    bsh 	    hcirev);
    124  1.1    bsh 
    125  1.1    bsh 	hwhost = bus_space_read_4(iot, sc->sc_ioh, IMXUSB_HWHOST);
    126  1.1    bsh 	hwdevice = bus_space_read_4(iot, sc->sc_ioh, IMXUSB_HWDEVICE);
    127  1.1    bsh 
    128  1.1    bsh 	aprint_normal_dev(self, "");
    129  1.1    bsh 
    130  1.1    bsh 	comma = "";
    131  1.1    bsh 	if (hwhost & HWHOST_HC) {
    132  1.1    bsh 		int n_ports = 1 + ((hwhost & HWHOST_NPORT_MASK) >>
    133  1.1    bsh 		    HWHOST_NPORT_SHIFT);
    134  1.1    bsh 		aprint_normal("%d host port%s",
    135  1.1    bsh 		    n_ports, n_ports > 1 ? "s" : "");
    136  1.1    bsh 		comma = ", ";
    137  1.1    bsh 	}
    138  1.1    bsh 
    139  1.1    bsh 	if (hwdevice & HWDEVICE_DC) {
    140  1.1    bsh 		int n_endpoints = (hwdevice & HWDEVICE_DEVEP_MASK) >>
    141  1.1    bsh 		    HWDEVICE_DEVEP_SHIFT;
    142  1.1    bsh 		aprint_normal("%sdevice capable, %d endpoint%s",
    143  1.1    bsh 		    comma,
    144  1.1    bsh 		    n_endpoints, n_endpoints > 1 ? "s" : "");
    145  1.1    bsh 	}
    146  1.1    bsh 	aprint_normal("\n");
    147  1.1    bsh 
    148  1.1    bsh 	sc->sc_hsc.sc_bus.dmatag = aa->aa_dmat;
    149  1.1    bsh 
    150  1.1    bsh 	sc->sc_hsc.sc_offs = bus_space_read_1(iot, sc->sc_hsc.ioh,
    151  1.1    bsh 	    EHCI_CAPLENGTH);
    152  1.1    bsh 
    153  1.1    bsh 	/* Platform dependent setup */
    154  1.1    bsh 	if (usbc->sc_init_md_hook)
    155  1.1    bsh 		usbc->sc_init_md_hook(sc);
    156  1.1    bsh 
    157  1.1    bsh 
    158  1.1    bsh 	imxehci_reset(sc);
    159  1.1    bsh 	imxehci_select_interface(sc, sc->sc_iftype);
    160  1.1    bsh 
    161  1.1    bsh 	if (sc->sc_iftype == IMXUSBC_IF_ULPI) {
    162  1.1    bsh 		bus_space_write_4(sc->sc_iot, sc->sc_ioh, IMXUSB_ULPIVIEW, 0);
    163  1.1    bsh 
    164  1.1    bsh 		aprint_normal_dev(hsc->sc_dev,
    165  1.1    bsh 		    "ULPI phy VID 0x%04x PID 0x%04x\n",
    166  1.1    bsh 		    (imxusb_ulpi_read(sc, ULPI_VENDOR_ID_LOW) |
    167  1.1    bsh 			imxusb_ulpi_read(sc, ULPI_VENDOR_ID_HIGH) << 8),
    168  1.1    bsh 		    (imxusb_ulpi_read(sc, ULPI_PRODUCT_ID_LOW) |
    169  1.1    bsh 			imxusb_ulpi_read(sc, ULPI_PRODUCT_ID_HIGH) << 8));
    170  1.1    bsh 
    171  1.1    bsh 		ulpi_reset(sc);
    172  1.1    bsh 
    173  1.1    bsh 	}
    174  1.1    bsh 
    175  1.1    bsh 	imxehci_host_mode(sc);
    176  1.1    bsh 
    177  1.1    bsh 	if (usbc->sc_setup_md_hook)
    178  1.1    bsh 		usbc->sc_setup_md_hook(sc, IMXUSB_HOST);
    179  1.1    bsh 	else if (sc->sc_iftype == IMXUSBC_IF_ULPI) {
    180  1.1    bsh 		imxusb_ulpi_write(sc, ULPI_FUNCTION_CONTROL + ULPI_REG_CLEAR,
    181  1.1    bsh 		    OTG_CONTROL_IDPULLUP);
    182  1.1    bsh 
    183  1.1    bsh 		imxusb_ulpi_write(sc, ULPI_OTG_CONTROL + ULPI_REG_SET,
    184  1.1    bsh 		    OTG_CONTROL_USEEXTVBUSIND |
    185  1.1    bsh 		    OTG_CONTROL_DRVVBUSEXT |
    186  1.1    bsh 		    OTG_CONTROL_DRVVBUS |
    187  1.1    bsh 		    OTG_CONTROL_CHRGVBUS
    188  1.1    bsh 		    );
    189  1.1    bsh 	}
    190  1.1    bsh 
    191  1.1    bsh 	/* Disable interrupts, so we don't get any spurious ones. */
    192  1.2   matt 	EOWRITE4(hsc, EHCI_USBINTR, 0);
    193  1.1    bsh 
    194  1.1    bsh 	intr_establish(aa->aa_irq, IPL_USB, IST_LEVEL, ehci_intr, hsc);
    195  1.1    bsh 
    196  1.1    bsh 	/* Figure out vendor for root hub descriptor. */
    197  1.1    bsh 	strlcpy(hsc->sc_vendor, "i.MX", sizeof(hsc->sc_vendor));
    198  1.1    bsh 
    199  1.1    bsh 	r = ehci_init(hsc);
    200  1.1    bsh 	if (r != USBD_NORMAL_COMPLETION) {
    201  1.1    bsh 		aprint_error_dev(self, "init failed, error=%d\n", r);
    202  1.1    bsh 		return;
    203  1.1    bsh 	}
    204  1.1    bsh 
    205  1.1    bsh 	/* Attach usb device. */
    206  1.1    bsh 	hsc->sc_child = config_found(self, &hsc->sc_bus, usbctlprint);
    207  1.1    bsh }
    208  1.1    bsh 
    209  1.1    bsh 
    210  1.1    bsh 
    211  1.1    bsh 
    212  1.1    bsh void
    213  1.1    bsh imxehci_select_interface(struct imxehci_softc *sc, enum imx_usb_if interface)
    214  1.1    bsh {
    215  1.1    bsh 	uint32_t reg;
    216  1.1    bsh 	struct ehci_softc *hsc = &sc->sc_hsc;
    217  1.1    bsh 
    218  1.1    bsh 	reg = EOREAD4(hsc, EHCI_PORTSC(1));
    219  1.1    bsh 	reg = (reg & ~PORTSC_PTS_MASK) | (interface << PORTSC_PTS_SHIFT);
    220  1.1    bsh 	EOWRITE4(hsc, EHCI_PORTSC(1), reg);
    221  1.1    bsh }
    222  1.1    bsh 
    223  1.1    bsh 
    224  1.1    bsh static uint32_t
    225  1.1    bsh ulpi_wakeup(struct imxehci_softc *sc, int tout)
    226  1.1    bsh {
    227  1.1    bsh 	uint32_t ulpi_view;
    228  1.1    bsh 	int i = 0;
    229  1.1    bsh 	ulpi_view = bus_space_read_4(sc->sc_iot, sc->sc_ioh, IMXUSB_ULPIVIEW);
    230  1.1    bsh 
    231  1.1    bsh 	if ( !(ulpi_view & ULPI_SS) ) {
    232  1.1    bsh 		bus_space_write_4(sc->sc_iot, sc->sc_ioh,
    233  1.1    bsh 		    IMXUSB_ULPIVIEW, ULPI_WU);
    234  1.1    bsh 		for (i = 0; (tout < 0) || (i < tout); i++) {
    235  1.1    bsh 			ulpi_view = bus_space_read_4(sc->sc_iot,
    236  1.1    bsh 			    sc->sc_ioh, IMXUSB_ULPIVIEW);
    237  1.1    bsh 			if ( !(ulpi_view & ULPI_WU) )
    238  1.1    bsh 				break;
    239  1.1    bsh 			delay(1);
    240  1.1    bsh 		};
    241  1.1    bsh 	}
    242  1.1    bsh 
    243  1.1    bsh 	if ((tout > 0) && (i >= tout)) {
    244  1.1    bsh 		aprint_error_dev(sc->sc_hsc.sc_dev, "%s: timeout\n", __func__);
    245  1.1    bsh 	}
    246  1.1    bsh 
    247  1.1    bsh 	return ulpi_view;
    248  1.1    bsh }
    249  1.1    bsh 
    250  1.1    bsh static uint32_t
    251  1.1    bsh ulpi_wait(struct imxehci_softc *sc, int tout)
    252  1.1    bsh {
    253  1.1    bsh 	uint32_t ulpi_view;
    254  1.1    bsh 	int i;
    255  1.1    bsh 	ulpi_view = bus_space_read_4(sc->sc_iot, sc->sc_ioh, IMXUSB_ULPIVIEW);
    256  1.1    bsh 
    257  1.1    bsh 	for (i = 0; (tout < 0) | (i < tout); i++) {
    258  1.1    bsh 		ulpi_view = bus_space_read_4(sc->sc_iot, sc->sc_ioh,
    259  1.1    bsh 		    IMXUSB_ULPIVIEW);
    260  1.1    bsh 		if (!(ulpi_view & ULPI_RUN))
    261  1.1    bsh 			break;
    262  1.1    bsh 		delay(1);
    263  1.1    bsh 	}
    264  1.1    bsh 
    265  1.1    bsh 	if ((tout > 0) && (i >= tout)) {
    266  1.1    bsh 		aprint_error_dev(sc->sc_hsc.sc_dev, "%s: timeout\n", __func__);
    267  1.1    bsh 	}
    268  1.1    bsh 
    269  1.1    bsh 	return ulpi_view;
    270  1.1    bsh }
    271  1.1    bsh 
    272  1.1    bsh #define	TIMEOUT	100000
    273  1.1    bsh 
    274  1.1    bsh uint8_t
    275  1.1    bsh imxusb_ulpi_read(struct imxehci_softc *sc, int addr)
    276  1.1    bsh {
    277  1.1    bsh 	uint32_t data;
    278  1.1    bsh 
    279  1.1    bsh 	ulpi_wakeup(sc, TIMEOUT);
    280  1.1    bsh 
    281  1.1    bsh 	data = ULPI_RUN | (addr << ULPI_ADDR_SHIFT);
    282  1.1    bsh 	bus_space_write_4(sc->sc_iot, sc->sc_ioh, IMXUSB_ULPIVIEW, data);
    283  1.1    bsh 
    284  1.1    bsh 	data = ulpi_wait(sc, TIMEOUT);
    285  1.1    bsh 
    286  1.1    bsh 	return (data & ULPI_DATRD_MASK) >> ULPI_DATRD_SHIFT;
    287  1.1    bsh }
    288  1.1    bsh 
    289  1.1    bsh void
    290  1.1    bsh imxusb_ulpi_write(struct imxehci_softc *sc, int addr, uint8_t data)
    291  1.1    bsh {
    292  1.1    bsh 	uint32_t reg;
    293  1.1    bsh 
    294  1.1    bsh 	ulpi_wakeup(sc, TIMEOUT);
    295  1.1    bsh 
    296  1.1    bsh 	reg = ULPI_RUN | ULPI_RW | ((addr) << ULPI_ADDR_SHIFT) | data;
    297  1.1    bsh 	bus_space_write_4(sc->sc_iot, sc->sc_ioh, IMXUSB_ULPIVIEW, reg);
    298  1.1    bsh 
    299  1.1    bsh 	ulpi_wait(sc, TIMEOUT);
    300  1.1    bsh 
    301  1.1    bsh 	return;
    302  1.1    bsh }
    303  1.1    bsh 
    304  1.1    bsh #if 0
    305  1.1    bsh static int
    306  1.1    bsh ulpi_scratch_test(struct imxehci_softc *sc)
    307  1.1    bsh {
    308  1.1    bsh 	uint32_t ulpi_view;
    309  1.1    bsh 
    310  1.1    bsh 	ulpi_view = ulpi_wakeup(sc, 1000);
    311  1.1    bsh 	if (ulpi_view & ULPI_WU) {
    312  1.1    bsh 		return -1;
    313  1.1    bsh 	}
    314  1.1    bsh 
    315  1.1    bsh 	bus_space_write_4(sc->sc_iot, sc->sc_ioh, IMXUSB_ULPIVIEW,
    316  1.1    bsh 		(ULPI_RUN | ULPI_RW |
    317  1.1    bsh 		 (ULPI_SCRATCH << ULPI_ADDR_SHIFT) | 0xAA));
    318  1.1    bsh 
    319  1.1    bsh 	ulpi_view = ulpi_wait(sc, 1000);
    320  1.1    bsh 
    321  1.1    bsh 	if (ulpi_view & ULPI_RUN) {
    322  1.1    bsh 		return -1;
    323  1.1    bsh 	}
    324  1.1    bsh 
    325  1.1    bsh 	return 0;
    326  1.1    bsh }
    327  1.1    bsh #endif
    328  1.1    bsh 
    329  1.1    bsh static void
    330  1.1    bsh ulpi_reset(struct imxehci_softc *sc)
    331  1.1    bsh {
    332  1.1    bsh 	uint8_t data;
    333  1.1    bsh 	int timo = 1000 * 1000;	/* XXXX: 1sec */
    334  1.1    bsh 
    335  1.1    bsh 	imxusb_ulpi_write(sc, ULPI_FUNCTION_CONTROL + ULPI_REG_SET,
    336  1.1    bsh 	    FUNCTION_CONTROL_RESET /*0x20*/);
    337  1.1    bsh 	do {
    338  1.1    bsh 		data = imxusb_ulpi_read(sc, ULPI_FUNCTION_CONTROL);
    339  1.1    bsh 		if (!(data & FUNCTION_CONTROL_RESET))
    340  1.1    bsh 			break;
    341  1.1    bsh 		delay(100);
    342  1.1    bsh 		timo -= 100;
    343  1.1    bsh 	} while (timo > 0);
    344  1.1    bsh 	if (timo <= 0) {
    345  1.1    bsh 		aprint_error_dev(sc->sc_hsc.sc_dev, "%s: reset failed!!\n",
    346  1.1    bsh 		    __func__);
    347  1.1    bsh 		return;
    348  1.1    bsh 	}
    349  1.1    bsh 
    350  1.1    bsh 	return;
    351  1.1    bsh }
    352  1.1    bsh 
    353  1.1    bsh void
    354  1.1    bsh imxehci_reset(struct imxehci_softc *sc)
    355  1.1    bsh {
    356  1.3  skrll 	uint32_t reg;
    357  1.1    bsh 	int i;
    358  1.1    bsh 	struct ehci_softc *hsc = &sc->sc_hsc;
    359  1.1    bsh #define	RESET_TIMEOUT 100
    360  1.1    bsh 
    361  1.1    bsh 	reg = EOREAD4(hsc, EHCI_USBCMD);
    362  1.1    bsh 	reg &= ~EHCI_CMD_RS;
    363  1.1    bsh 	EOWRITE4(hsc, EHCI_USBCMD, reg);
    364  1.1    bsh 
    365  1.1    bsh 	for (i=0; i < RESET_TIMEOUT; ++i) {
    366  1.1    bsh 		reg = EOREAD4(hsc, EHCI_USBCMD);
    367  1.1    bsh 		if ((reg & EHCI_CMD_RS) == 0)
    368  1.1    bsh 			break;
    369  1.1    bsh 		usb_delay_ms(&hsc->sc_bus, 1);
    370  1.1    bsh 	}
    371  1.1    bsh 
    372  1.1    bsh 	EOWRITE4(hsc, EHCI_USBCMD, reg | EHCI_CMD_HCRESET);
    373  1.1    bsh 	for (i = 0; i < RESET_TIMEOUT; i++) {
    374  1.1    bsh 		reg = EOREAD4(hsc, EHCI_USBCMD);
    375  1.1    bsh 		if ((reg &  EHCI_CMD_HCRESET) == 0)
    376  1.1    bsh 			break;
    377  1.1    bsh 		usb_delay_ms(&hsc->sc_bus, 1);
    378  1.1    bsh 	}
    379  1.1    bsh 	if (i >= RESET_TIMEOUT) {
    380  1.1    bsh 		aprint_error_dev(hsc->sc_dev, "reset timeout (%x)\n", reg);
    381  1.1    bsh 	}
    382  1.1    bsh 
    383  1.1    bsh 	usb_delay_ms(&hsc->sc_bus, 100);
    384  1.1    bsh }
    385  1.1    bsh 
    386  1.1    bsh void
    387  1.1    bsh imxehci_host_mode(struct imxehci_softc *sc)
    388  1.1    bsh {
    389  1.1    bsh 	struct ehci_softc *hsc = &sc->sc_hsc;
    390  1.1    bsh 	uint32_t reg;
    391  1.1    bsh 
    392  1.1    bsh 	reg = EOREAD4(hsc, EHCI_PORTSC(1));
    393  1.1    bsh 	reg &= ~(EHCI_PS_CSC | EHCI_PS_PEC | EHCI_PS_OCC);
    394  1.1    bsh 	reg |= EHCI_PS_PP | EHCI_PS_PE;
    395  1.1    bsh 	EOWRITE4(hsc, EHCI_PORTSC(1), reg);
    396  1.1    bsh 
    397  1.1    bsh 	reg = bus_space_read_4(sc->sc_iot, sc->sc_ioh, IMXUSB_OTGSC);
    398  1.1    bsh 	reg |= OTGSC_IDPU;
    399  1.5   matt 	/* disable IDIE not to conflict with SSP1_DETECT. */
    400  1.5   matt 	//reg |= OTGSC_DPIE | OTGSC_IDIE;
    401  1.5   matt 	reg |= OTGSC_DPIE;
    402  1.1    bsh 	bus_space_write_4(sc->sc_iot, sc->sc_ioh, IMXUSB_OTGSC, reg);
    403  1.1    bsh 
    404  1.1    bsh 	reg = bus_space_read_4(sc->sc_iot, sc->sc_ioh, IMXUSB_OTGMODE);
    405  1.1    bsh 	reg |= USBMODE_HOST;
    406  1.1    bsh 	bus_space_write_4(sc->sc_iot, sc->sc_ioh, IMXUSB_OTGMODE, reg);
    407  1.1    bsh }
    408