Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/arm/omap First pass at an EHCI attachment. It does...



details:   https://anonhg.NetBSD.org/src/rev/16e00ed9e462
branches:  trunk
changeset: 780109:16e00ed9e462
user:      matt <matt%NetBSD.org@localhost>
date:      Thu Jul 12 03:38:50 2012 +0000

description:
First pass at an EHCI attachment.  It does compile.  Untested.

diffstat:

 sys/arch/arm/omap/omap3_ehci.c |  319 +++++++++++++++++++++++++++++++++++++++++
 1 files changed, 319 insertions(+), 0 deletions(-)

diffs (truncated from 323 to 300 lines):

diff -r 6be2f959a29f -r 16e00ed9e462 sys/arch/arm/omap/omap3_ehci.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/arm/omap/omap3_ehci.c    Thu Jul 12 03:38:50 2012 +0000
@@ -0,0 +1,319 @@
+/*     $Id: omap3_ehci.c,v 1.1 2012/07/12 03:38:50 matt Exp $  */
+
+/* adapted from: */
+/*     $NetBSD: omap3_ehci.c,v 1.1 2012/07/12 03:38:50 matt Exp $      */
+/*     $OpenBSD: pxa2x0_ehci.c,v 1.19 2005/04/08 02:32:54 dlg Exp $ */
+
+/*
+ * Copyright (c) 2005 David Gwynne <dlg%openbsd.org@localhost>
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#include "opt_omap.h"
+
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: omap3_ehci.c,v 1.1 2012/07/12 03:38:50 matt Exp $");
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/kernel.h>
+#include <sys/intr.h>
+#include <sys/bus.h>
+#include <sys/device.h>
+#include <sys/kernel.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/ehcireg.h>
+#include <dev/usb/ehcivar.h>
+
+#include <arm/omap/omap2_reg.h>
+#include <arm/omap/omap2_obiovar.h>
+#include <arm/omap/omap2_obioreg.h>
+
+#include "locators.h"
+
+struct obioehci_softc {
+       ehci_softc_t    sc;
+
+       void            *sc_ih;
+       bus_addr_t      sc_addr;
+       bus_size_t      sc_size;
+       void            *sc_powerhook;
+};
+
+static int     obioehci_match(struct device *, struct cfdata *, void *);
+static void    obioehci_attach(struct device *, struct device *, void *);
+static int     obioehci_detach(struct device *, int);
+void *         obioehci_fake_intr_establish(int (*)(void *), void *);
+void           obioehci_fake_intr(void);
+
+CFATTACH_DECL_NEW(obioehci, sizeof(struct obioehci_softc),
+    obioehci_match, obioehci_attach, obioehci_detach, ehci_activate);
+
+static void    obioehci_clkinit(struct obio_attach_args *);
+static void    obioehci_power(int, void *);
+static void    obioehci_enable(struct obioehci_softc *);
+static void    obioehci_disable(struct obioehci_softc *);
+
+#define        HREAD4(sc,r)    bus_space_read_4((sc)->sc.iot, (sc)->sc.ioh, (r))
+#define        HWRITE4(sc,r,v) bus_space_write_4((sc)->sc.iot, (sc)->sc.ioh, (r), (v))
+
+static int
+obioehci_match(device_t parent, cfdata_t cf, void *aux)
+{
+
+       struct obio_attach_args *obio = aux;
+
+       if (obio->obio_addr == OBIOCF_ADDR_DEFAULT
+           || obio->obio_size == OBIOCF_SIZE_DEFAULT
+           || obio->obio_intr == OBIOCF_INTR_DEFAULT)
+               panic("obioehci must have addr, size and intr"
+                       " specified in config.");
+
+#ifdef OMAP_3530
+#endif
+
+#ifdef OMAP_4430
+#endif
+
+       obioehci_clkinit(obio);
+
+       return 0;       /* XXX */
+}
+
+static void
+obioehci_attach(device_t parent, device_t self, void *aux)
+{
+       struct obioehci_softc *sc = device_private(self);
+       struct obio_attach_args *obio = aux;
+       usbd_status r;
+
+       sc->sc.sc_size = 0;
+       sc->sc_ih = NULL;
+       sc->sc.sc_bus.dmatag = 0;
+
+       /* Map I/O space */
+       if (bus_space_map(obio->obio_iot, obio->obio_addr, obio->obio_size, 0,
+           &sc->sc.ioh)) {
+               aprint_error(": couldn't map memory space\n");
+               return;
+       }
+       sc->sc.iot = obio->obio_iot;
+       sc->sc_addr = obio->obio_addr;
+       sc->sc.sc_dev = self;
+       sc->sc.sc_size = obio->obio_size;
+       sc->sc.sc_bus.dmatag = obio->obio_dmat;
+       sc->sc.sc_bus.usbrev = USBREV_2_0;
+       sc->sc.sc_bus.hci_private = sc;
+       sc->sc.sc_ncomp = 0;
+
+       /* XXX copied from ehci_pci.c. needed? */
+       bus_space_barrier(sc->sc.iot, sc->sc.ioh, 0, sc->sc.sc_size,
+           BUS_SPACE_BARRIER_READ|BUS_SPACE_BARRIER_WRITE);
+
+       /* start the usb clock */
+#ifdef NOTYET
+       pxa2x0_clkman_config(CKEN_USBHC, 1);
+#endif
+       obioehci_enable(sc);
+
+       /* offs is needed for EOWRITEx */
+       sc->sc.sc_offs = EREAD1(&sc->sc, EHCI_CAPLENGTH);
+
+       /* Disable interrupts, so we don't get any spurious ones. */
+       EOWRITE2(&sc->sc, EHCI_USBINTR, 0);
+
+#if 1
+       sc->sc_ih = intr_establish(obio->obio_intr, IPL_USB, IST_LEVEL,
+               ehci_intr, &sc->sc);
+       if (sc->sc_ih == NULL) {
+               aprint_error(": unable to establish interrupt\n");
+               goto free_map;
+       }
+#else
+       sc->sc_ih = obioehci_fake_intr_establish(ehci_intr, &sc->sc);
+#endif
+
+       r = ehci_init(&sc->sc);
+       if (r != USBD_NORMAL_COMPLETION) {
+               aprint_error_dev(self, "init failed, error=%d\n", r);
+               goto free_intr;
+       }
+
+       sc->sc_powerhook = powerhook_establish(device_xname(self),
+           obioehci_power, sc);
+       if (sc->sc_powerhook == NULL) {
+               aprint_error_dev(self, "cannot establish powerhook\n");
+       }
+
+       sc->sc.sc_child = config_found(self, &sc->sc.sc_bus, usbctlprint);
+       return;
+
+free_intr:
+#ifdef NOTYET
+       obio_gpio_intr_disestablish(sc->sc_ih);
+#endif
+       sc->sc_ih = NULL;
+free_map:
+       obioehci_disable(sc);
+#ifdef NOTYET
+       pxa2x0_clkman_config(CKEN_USBHC, 0);
+#endif
+       bus_space_unmap(sc->sc.iot, sc->sc.ioh, sc->sc.sc_size);
+       sc->sc.sc_size = 0;
+}
+
+static int
+obioehci_detach(device_t self, int flags)
+{
+       struct obioehci_softc *sc = device_private(self);
+       int error;
+
+       error = ehci_detach(&sc->sc, flags);
+       if (error)
+               return error;
+
+       if (sc->sc_powerhook) {
+               powerhook_disestablish(sc->sc_powerhook);
+               sc->sc_powerhook = NULL;
+       }
+
+       if (sc->sc_ih) {
+#ifdef NOTYET
+               obio_gpio_intr_disestablish(sc->sc_ih);
+#endif
+               sc->sc_ih = NULL;
+       }
+
+       obioehci_disable(sc);
+
+#ifdef NOTYET
+       /* stop clock */
+#ifdef DEBUG
+       pxa2x0_clkman_config(CKEN_USBHC, 0);
+#endif
+#endif
+
+       if (sc->sc.sc_size) {
+               bus_space_unmap(sc->sc.iot, sc->sc.ioh, sc->sc.sc_size);
+               sc->sc.sc_size = 0;
+       }
+
+       return 0;
+}
+
+static void
+obioehci_power(int why, void *arg)
+{
+       struct obioehci_softc *sc = (struct obioehci_softc *)arg;
+       int s;
+
+       s = splhardusb();
+       sc->sc.sc_bus.use_polling++;
+       switch (why) {
+       case PWR_STANDBY:
+       case PWR_SUSPEND:
+#if 0
+               ehci_power(why, &sc->sc);
+#endif
+#ifdef NOTYET
+               pxa2x0_clkman_config(CKEN_USBHC, 0);
+#endif
+               break;
+
+       case PWR_RESUME:
+#ifdef NOTYET
+               pxa2x0_clkman_config(CKEN_USBHC, 1);
+#endif
+               obioehci_enable(sc);
+#if 0
+               ehci_power(why, &sc->sc);
+#endif
+               break;
+       }
+       sc->sc.sc_bus.use_polling--;
+       splx(s);
+}
+
+static void
+obioehci_enable(struct obioehci_softc *sc)
+{
+       printf("%s: TBD\n", __func__);
+}
+
+static void
+obioehci_disable(struct obioehci_softc *sc)
+{
+#ifdef NOTYET
+       uint32_t hr;
+
+       /* Full host reset */
+       hr = HREAD4(sc, USBHC_HR);
+       HWRITE4(sc, USBHC_HR, (hr & USBHC_HR_MASK) | USBHC_HR_FHR);
+
+       DELAY(USBHC_RST_WAIT);
+
+       hr = HREAD4(sc, USBHC_HR);
+       HWRITE4(sc, USBHC_HR, (hr & USBHC_HR_MASK) & ~(USBHC_HR_FHR));
+#endif
+}
+
+static void
+obioehci_clkinit(struct obio_attach_args *obio)
+{
+       
+       bus_space_handle_t ioh;
+       uint32_t r;
+       int err;
+
+       err = bus_space_map(obio->obio_iot, OMAP2_CM_BASE,
+               OMAP2_CM_SIZE, 0, &ioh);
+       if (err != 0)
+               panic("%s: cannot map OMAP2_CM_BASE at %#x, error %d\n",
+                       __func__, OMAP2_CM_BASE, err);
+
+       r = bus_space_read_4(obio->obio_iot, ioh, OMAP2_CM_FCLKEN2_CORE);
+       r |= OMAP2_CM_FCLKEN2_CORE_EN_USB;
+       bus_space_write_4(obio->obio_iot, ioh, OMAP2_CM_FCLKEN2_CORE, r);
+
+       r = bus_space_read_4(obio->obio_iot, ioh, OMAP2_CM_ICLKEN2_CORE);
+       r |= OMAP2_CM_ICLKEN2_CORE_EN_USB;
+       r &= ~OMAP2_CM_ICLKEN2_CORE_EN_USBHS;   /* force FS for ehci */



Home | Main Index | Thread Index | Old Index