parent
3d963db4f2
commit
1b0216af5c
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ehci.c,v 1.2 2000/12/24 06:42:35 augustss Exp $ */
|
||||
/* $NetBSD: ehci.c,v 1.3 2001/11/10 17:06:11 augustss Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -37,12 +37,11 @@
|
|||
*/
|
||||
|
||||
/*
|
||||
* USB Enhanced Host Controller Driver.
|
||||
* USB Enhanced Host Controller Driver, a.k.a. USB 2.0 controller.
|
||||
*
|
||||
* EHCI 0.95 spec can be found at
|
||||
* http://developer.intel.com/technology/usb/download/ehci-r095.pdf
|
||||
* EHCI 0.96 spec can be found at
|
||||
* http://developer.intel.com/technology/usb/download/ehci-r096.pdf
|
||||
*
|
||||
* This is just a stub.
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
|
@ -69,7 +68,7 @@
|
|||
#ifdef EHCI_DEBUG
|
||||
#define DPRINTF(x) if (ehcidebug) printf x
|
||||
#define DPRINTFN(n,x) if (ehcidebug>(n)) printf x
|
||||
int ehcidebug = 0;
|
||||
int ehcidebug = 1;
|
||||
#define bitmask_snprintf(q,f,b,l) snprintf((b), (l), "%b", (q), (f))
|
||||
#else
|
||||
#define DPRINTF(x)
|
||||
|
@ -79,7 +78,71 @@ int ehcidebug = 0;
|
|||
usbd_status
|
||||
ehci_init(ehci_softc_t *sc)
|
||||
{
|
||||
printf("EHCI not supported yet.\n");
|
||||
u_int32_t version, sparams, cparams, hcr;
|
||||
u_int i;
|
||||
usbd_status err;
|
||||
|
||||
DPRINTF(("ehci_init: start\n"));
|
||||
|
||||
sc->sc_offs = EREAD1(sc, EHCI_CAPLENGTH);
|
||||
|
||||
version = EREAD2(sc, EHCI_HCIVERSION);
|
||||
printf("%s: EHCI version %x.%x\n", USBDEVNAME(sc->sc_bus.bdev),
|
||||
version >> 8, version & 0xff);
|
||||
|
||||
sparams = EREAD4(sc, EHCI_HCSPARAMS);
|
||||
DPRINTF(("ehci_init: sparams=0x%x\n", sparams));
|
||||
if (EHCI_HCS_N_CC(sparams) != sc->sc_ncomp) {
|
||||
printf("%s: wrong number of companions (%d != %d)\n",
|
||||
USBDEVNAME(sc->sc_bus.bdev),
|
||||
EHCI_HCS_N_CC(sparams), sc->sc_ncomp);
|
||||
return (USBD_IOERROR);
|
||||
}
|
||||
if (sc->sc_ncomp > 0) {
|
||||
printf("%s: companion controller%s, %d port%s each:",
|
||||
USBDEVNAME(sc->sc_bus.bdev), sc->sc_ncomp!=1 ? "s" : "",
|
||||
EHCI_HCS_N_PCC(sparams),
|
||||
EHCI_HCS_N_PCC(sparams)!=1 ? "s" : "");
|
||||
for (i = 0; i < sc->sc_ncomp; i++)
|
||||
printf(" %s", USBDEVNAME(sc->sc_comps[i]->bdev));
|
||||
printf("\n");
|
||||
}
|
||||
cparams = EREAD4(sc, EHCI_HCCPARAMS);
|
||||
DPRINTF(("ehci_init: cparams=0x%x\n", cparams));
|
||||
|
||||
sc->sc_bus.usbrev = USBREV_2_0;
|
||||
|
||||
/* Reset the controller */
|
||||
DPRINTF(("%s: resetting\n", USBDEVNAME(sc->sc_bus.bdev)));
|
||||
EOWRITE4(sc, EHCI_USBCMD, 0); /* Halt controller */
|
||||
usb_delay_ms(&sc->sc_bus, 1);
|
||||
EOWRITE4(sc, EHCI_USBCMD, EHCI_CMD_HCRESET);
|
||||
for (i = 0; i < 100; i++) {
|
||||
delay(10);
|
||||
hcr = EOREAD4(sc, EHCI_USBCMD) & EHCI_CMD_HCRESET;
|
||||
if (!hcr)
|
||||
break;
|
||||
}
|
||||
if (hcr) {
|
||||
printf("%s: reset timeout\n", USBDEVNAME(sc->sc_bus.bdev));
|
||||
return (USBD_IOERROR);
|
||||
}
|
||||
|
||||
/* frame list size at default, read back what we got and use that */
|
||||
switch (EHCI_CMD_FLS(EOREAD4(sc, EHCI_USBCMD))) {
|
||||
case 0: sc->sc_flsize = 1024*4; break;
|
||||
case 1: sc->sc_flsize = 512*4; break;
|
||||
case 2: sc->sc_flsize = 256*4; break;
|
||||
case 3: return (USBD_IOERROR);
|
||||
}
|
||||
err = usb_allocmem(&sc->sc_bus, sc->sc_flsize,
|
||||
EHCI_FLALIGN_ALIGN, &sc->sc_fldma);
|
||||
if (err)
|
||||
return (err);
|
||||
//sc->sc_fl = (struct ohci_hcca *)KERNADDR(&sc->sc_hccadma);
|
||||
DPRINTF(("%s: flsize=%d\n", USBDEVNAME(sc->sc_bus.bdev),sc->sc_flsize));
|
||||
|
||||
printf("%s: EHCI not supported yet.\n", USBDEVNAME(sc->sc_bus.bdev));
|
||||
return (USBD_IOERROR);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ehcireg.h,v 1.3 2001/08/20 07:16:35 gehenna Exp $ */
|
||||
/* $NetBSD: ehcireg.h,v 1.4 2001/11/10 17:06:11 augustss Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -46,28 +46,111 @@
|
|||
|
||||
/*** PCI config registers ***/
|
||||
|
||||
#define PCI_USBREV 0x60 /* USB protocol revision */
|
||||
#define PCI_CBMEM 0x10 /* configuration base MEM */
|
||||
|
||||
#define PCI_INTERFACE_EHCI 0x20
|
||||
|
||||
#define PCI_USBREV 0x60 /* RO USB protocol revision */
|
||||
#define PCI_USBREV_MASK 0xff
|
||||
#define PCI_USBREV_PRE_1_0 0x00
|
||||
#define PCI_USBREV_1_0 0x10
|
||||
#define PCI_USBREV_1_1 0x11
|
||||
#define PCI_USBREV_2_0 0x20
|
||||
|
||||
#define PCI_CBMEM 0x10 /* configuration base MEM */
|
||||
#define PCI_EHCI_FLADJ 0x61 /*RW Frame len adj, SOF=59488+6*fladj */
|
||||
|
||||
#define PCI_INTERFACE_EHCI 0x20
|
||||
#define PCI_EHCI_PORTWAKECAP 0x62 /* RW Port wake caps (opt) */
|
||||
|
||||
#define PCI_EHCI_FLADJ 0x61 /* Frame length adj, SOF counter = 59488+6*fladj */
|
||||
/* Regs ar EECP + offset */
|
||||
#define PCI_EHCI_USBLEGSUP 0x00
|
||||
#define PCI_EHCI_USBLEGCTLSTS 0x04
|
||||
|
||||
#define PCI_EHCI_PORTWAKECAP 0x62
|
||||
/*** EHCI capability registers ***/
|
||||
|
||||
/*** EHCI registers ***/
|
||||
#define EHCI_CAPLENGTH 0x00 /*RO Capability register length field */
|
||||
/* reserved 0x01 */
|
||||
#define EHCI_HCIVERSION 0x02 /* RO Interface version number */
|
||||
|
||||
#define EHCI_CAPLENGTH 0x00 /* 1 Capability register length field */
|
||||
#define EHCI_HCIVERSION 0x02 /* 2 Interface version number */
|
||||
#define EHCI_HCSPARAMS 0x04 /* 4 Structural parameters */
|
||||
#define EHCI_HCCPARAMS 0x08 /* 4 Capability parameters */
|
||||
#define EHCI_HCSP_PORTROUTE 0x0c /* 15 Companion port route description */
|
||||
#define EHCI_HCSPARAMS 0x04 /* RO Structural parameters */
|
||||
#define EHCI_HCS_DEBUGPORT(x) (((x) >> 20) & 0xf)
|
||||
#define EHCI_HCS_P_INCICATOR(x) ((x) & 0x10000)
|
||||
#define EHCI_HCS_N_CC(x) (((x) >> 12) & 0xf) /* # of companion ctlrs */
|
||||
#define EHCI_HCS_N_PCC(x) (((x) >> 8) & 0xf) /* # of ports per comp. */
|
||||
#define EHCI_HCS_PPC(x) ((x) & 0x10) /* port power control */
|
||||
#define EHCI_HCS_N_PORTS(x) ((x) & 0xf) /* # of ports */
|
||||
|
||||
#define EHCI_HCCPARAMS 0x08 /* RO Capability parameters */
|
||||
#define EHCI_HCC_EECP(x) (((x) >> 8) & 0xff) /* extended ports caps */
|
||||
#define EHCI_HCC_IST(x) (((x) >> 4) & 0xf) /* isoc sched threshold */
|
||||
#define EHCI_HCC_ASPC(x) ((x) & 0x4) /* async sched park cap */
|
||||
#define EHCI_HCC_PFLF(x) ((x) & 0x2) /* prog frame list flag */
|
||||
#define EHCI_HCC_64BIT(x) ((x) & 0x1) /* 64 bit address cap */
|
||||
|
||||
#define EHCI_HCSP_PORTROUTE 0x0c /*RO Companion port route description */
|
||||
|
||||
/* EHCI operational registers. Offset given by EHCI_CAPLENGTH register */
|
||||
#define EHCI_USBCMD 0x00 /* RO, RW, WO Command register */
|
||||
#define EHCI_CMD_ITC_M 0x00ff0000 /* RW interrupt threshold ctrl */
|
||||
#define EHCI_CMD_ASPME 0x00000800 /* RW/RO async park enable */
|
||||
#define EHCI_CMD_ASPMC 0x00000300 /* RW/RO async park count */
|
||||
#define EHCI_CMD_LHCR 0x00000080 /* RW light host ctrl reset */
|
||||
#define EHCI_CMD_IAAD 0x00000040 /* RW intr on async adv door bell */
|
||||
#define EHCI_CMD_ASE 0x00000020 /* RW async sched enable */
|
||||
#define EHCI_CMD_PSE 0x00000010 /* RW periodic sched enable */
|
||||
#define EHCI_CMD_FLS(x) (((x) >> 2) & 3) /* RW/RO frame list size */
|
||||
#define EHCI_CMD_HCRESET 0x00000002 /* RW reset */
|
||||
#define EHCI_CMD_RS 0x00000001 /* RW run/stop */
|
||||
|
||||
#define EHCI_USBSTS 0x04 /* RO, RW, RWC Status register */
|
||||
#define EHCI_STS_ASS 0x00008000 /* RO async sched status */
|
||||
#define EHCI_STS_PSS 0x00004000 /* RO periodic sched status */
|
||||
#define EHCI_STS_REC 0x00002000 /* RO reclamation */
|
||||
#define EHCI_STS_HCH 0x00001000 /* RO host controller halted */
|
||||
#define EHCI_STS_IAA 0x00000020 /* RWC interrupt on async adv */
|
||||
#define EHCI_STS_HSE 0x00000010 /* RWC host system error */
|
||||
#define EHCI_STS_FLR 0x00000008 /* RWC frame list rollover */
|
||||
#define EHCI_STS_PCD 0x00000004 /* RWC port change detect */
|
||||
#define EHCI_STS_ERRINT 0x00000002 /* RWC error interrupt */
|
||||
#define EHCI_STS_INT 0x00000001 /* RWC interrupt */
|
||||
|
||||
#define EHCI_USBINTR 0x08 /* RW Interrupt register */
|
||||
#define EHCI_INTR_IAAE 0x00000020 /* interrupt on async advance ena */
|
||||
#define EHCI_INTR_HSEE 0x00000010 /* host system error ena */
|
||||
#define EHCI_INTR_FLRE 0x00000008 /* frame list rollover ena */
|
||||
#define EHCI_INTR_PCIE 0x00000004 /* port change ena */
|
||||
#define EHCI_INTR_UEIE 0x00000002 /* USB error intr ena */
|
||||
#define EHCI_INTR_UIE 0x00000001 /* USB intr ena */
|
||||
|
||||
#define EHCI_FRINDEX 0x0c /* RW Frame Index register */
|
||||
|
||||
#define EHCI_CTRLDSSEGMENT 0x10 /* RW Control Data Structure Segment */
|
||||
|
||||
#define EHCI_PERIODICLISTBASE 0x14 /* RW Periodic List Base */
|
||||
#define EHCI_ASYNCLISTADDR 0x18 /* RW Async List Base */
|
||||
|
||||
#define EHCI_CONFIGFLAG 0x40 /* RW Configure Flag register */
|
||||
#define EHCI_CONF_CF 0x00000001 /* RW configure flag */
|
||||
|
||||
#define EHCI_PORTSC(n) (0x40+4*(n)) /* RO, RW, RWC Port Status reg */
|
||||
#define EHCI_PS_WKOC_E 0x00400000 /* RW wake on over current ena */
|
||||
#define EHCI_PS_WKDSCNNT_E 0x00200000 /* RW wake on disconnect ena */
|
||||
#define EHCI_PS_WKCNNT_E 0x00100000 /* RW wake on connect ena */
|
||||
#define EHCI_PS_PTC 0x000f0000 /* RW port test control */
|
||||
#define EHCI_PS_PIC 0x0000c000 /* RW port indicator control */
|
||||
#define EHCI_PS_PO 0x00002000 /* RW port owner */
|
||||
#define EHCI_PS_PP 0x00001000 /* RW,RO port power */
|
||||
#define EHCI_PS_LS 0x00000c00 /* RO line status */
|
||||
#define EHCI_PS_PR 0x00000100 /* RW port reset */
|
||||
#define EHCI_PS_SUSP 0x00000080 /* RW suspend */
|
||||
#define EHCI_PS_FPR 0x00000040 /* RW force port resume */
|
||||
#define EHCI_PS_OCC 0x00000020 /* RWC over current change */
|
||||
#define EHCI_PS_OCA 0x00000010 /* RO over current active */
|
||||
#define EHCI_PS_PEC 0x00000008 /* RWC port enable change */
|
||||
#define EHCI_PS_PE 0x00000004 /* RO port enable */
|
||||
#define EHCI_PS_CSC 0x00000002 /* RWC connect status change */
|
||||
#define EHCI_PS_CS 0x00000001 /* RO connect status */
|
||||
|
||||
|
||||
#define EHCI_FLALIGN_ALIGN 0x1000
|
||||
|
||||
#endif /* _DEV_PCI_EHCIREG_H_ */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ehcivar.h,v 1.2 2001/11/06 03:16:17 augustss Exp $ */
|
||||
/* $NetBSD: ehcivar.h,v 1.3 2001/11/10 17:06:11 augustss Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
||||
|
@ -36,6 +36,7 @@
|
|||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#define EHCI_COMPANION_MAX 8
|
||||
typedef struct ehci_softc {
|
||||
struct usbd_bus sc_bus; /* base device */
|
||||
bus_space_tag_t iot;
|
||||
|
@ -49,9 +50,21 @@ typedef struct ehci_softc {
|
|||
void *sc_powerhook; /* cookie from power hook */
|
||||
void *sc_shutdownhook; /* cookie from shutdown hook */
|
||||
|
||||
u_int sc_ncomp;
|
||||
struct usbd_bus *sc_comps[EHCI_COMPANION_MAX];
|
||||
|
||||
usb_dma_t sc_fldma;
|
||||
u_int sc_flsize;
|
||||
|
||||
device_ptr_t sc_child; /* /dev/usb# device */
|
||||
} ehci_softc_t;
|
||||
|
||||
#define EREAD1(sc, a) bus_space_read_1((sc)->iot, (sc)->ioh, (a))
|
||||
#define EREAD2(sc, a) bus_space_read_2((sc)->iot, (sc)->ioh, (a))
|
||||
#define EREAD4(sc, a) bus_space_read_4((sc)->iot, (sc)->ioh, (a))
|
||||
#define EWRITE1(sc, a, x) bus_space_write_1((sc)->iot, (sc)->ioh, (a), (x))
|
||||
#define EWRITE2(sc, a, x) bus_space_write_2((sc)->iot, (sc)->ioh, (a), (x))
|
||||
#define EWRITE4(sc, a, x) bus_space_write_4((sc)->iot, (sc)->ioh, (a), (x))
|
||||
#define EOREAD1(sc, a) bus_space_read_1((sc)->iot, (sc)->ioh, (sc)->sc_offs+(a))
|
||||
#define EOREAD2(sc, a) bus_space_read_2((sc)->iot, (sc)->ioh, (sc)->sc_offs+(a))
|
||||
#define EOREAD4(sc, a) bus_space_read_4((sc)->iot, (sc)->ioh, (sc)->sc_offs+(a))
|
||||
|
|
Loading…
Reference in New Issue