summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2017-04-29 20:49:10 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2017-04-29 20:49:10 +0000
commite4eab66036ca1438710b5b2d1d2d4b778854e31d (patch)
treea9fda30c76d314e898107691a348104be1a2dd7f
parentc29feadca3039aa02285d29dbb4c8ef787875d68 (diff)
Replace sxiehci.c with more generic glue in ehci_fdt.c that is similiar in
spirit to the xhci_fdt.c glue. The new code sets up any attached USB PHYs based on their "compatible" property. All the hardware supported by sxiehci.c should be supported by this new code. In addition to that this adds support for the EHCI controllers found on various Rockchip hardware such as the RK3288 and RK3399 SoCs. ok patrick@
-rw-r--r--sys/dev/fdt/ehci_fdt.c322
-rw-r--r--sys/dev/fdt/files.fdt8
-rw-r--r--sys/dev/fdt/sxiehci.c320
3 files changed, 326 insertions, 324 deletions
diff --git a/sys/dev/fdt/ehci_fdt.c b/sys/dev/fdt/ehci_fdt.c
new file mode 100644
index 00000000000..55fe75f1a9c
--- /dev/null
+++ b/sys/dev/fdt/ehci_fdt.c
@@ -0,0 +1,322 @@
+/* $OpenBSD: ehci_fdt.c,v 1.1 2017/04/29 20:49:09 kettenis Exp $ */
+
+/*
+ * Copyright (c) 2005 David Gwynne <dlg@openbsd.org>
+ * Copyright (c) 2017 Mark Kettenis <kettenis@openbsd.org>
+ *
+ * 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 <sys/types.h>
+#include <sys/systm.h>
+#include <sys/device.h>
+#include <sys/malloc.h>
+
+#include <machine/intr.h>
+#include <machine/bus.h>
+#include <machine/fdt.h>
+
+#include <dev/ofw/openfirm.h>
+#include <dev/ofw/ofw_clock.h>
+#include <dev/ofw/ofw_pinctrl.h>
+#include <dev/ofw/ofw_regulator.h>
+#include <dev/ofw/fdt.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>
+
+struct ehci_fdt_softc {
+ struct ehci_softc sc;
+ int sc_node;
+ void *sc_ih;
+};
+
+int ehci_fdt_match(struct device *, void *, void *);
+void ehci_fdt_attach(struct device *, struct device *, void *);
+int ehci_fdt_detach(struct device *, int);
+
+struct cfattach ehci_fdt_ca = {
+ sizeof(struct ehci_fdt_softc), ehci_fdt_match, ehci_fdt_attach,
+ ehci_fdt_detach, ehci_activate
+};
+
+void ehci_init_phys(struct ehci_fdt_softc *);
+
+int
+ehci_fdt_match(struct device *parent, void *match, void *aux)
+{
+ struct fdt_attach_args *faa = aux;
+
+ return OF_is_compatible(faa->fa_node, "generic-ehci");
+}
+
+void
+ehci_fdt_attach(struct device *parent, struct device *self, void *aux)
+{
+ struct ehci_fdt_softc *sc = (struct ehci_fdt_softc *)self;
+ struct fdt_attach_args *faa = aux;
+ char *devname = sc->sc.sc_bus.bdev.dv_xname;
+ usbd_status r;
+
+ if (faa->fa_nreg < 1) {
+ printf(": no registers\n");
+ return;
+ }
+
+ sc->sc_node = faa->fa_node;
+ sc->sc.iot = faa->fa_iot;
+ sc->sc.sc_bus.dmatag = faa->fa_dmat;
+ sc->sc.sc_size = faa->fa_reg[0].size;
+
+ if (bus_space_map(sc->sc.iot, faa->fa_reg[0].addr,
+ faa->fa_reg[0].size, 0, &sc->sc.ioh)) {
+ printf(": can't map registers\n");
+ goto out;
+ }
+
+ pinctrl_byname(sc->sc_node, "default");
+
+ clock_enable_all(sc->sc_node);
+ reset_deassert_all(sc->sc_node);
+
+ /* Disable interrupts, so we don't get any spurious ones. */
+ sc->sc.sc_offs = EREAD1(&sc->sc, EHCI_CAPLENGTH);
+ EOWRITE2(&sc->sc, EHCI_USBINTR, 0);
+
+ sc->sc_ih = arm_intr_establish_fdt(faa->fa_node, IPL_USB,
+ ehci_intr, &sc->sc, devname);
+ if (sc->sc_ih == NULL) {
+ printf(": can't establish interrupt\n");
+ clock_disable_all(sc->sc_node);
+ goto unmap;
+ }
+
+ printf("\n");
+
+ ehci_init_phys(sc);
+
+ strlcpy(sc->sc.sc_vendor, "Generic", sizeof(sc->sc.sc_vendor));
+ r = ehci_init(&sc->sc);
+ if (r != USBD_NORMAL_COMPLETION) {
+ printf("%s: init failed, error=%d\n", devname, r);
+ clock_disable_all(sc->sc_node);
+ goto disestablish_intr;
+ }
+
+ /* Attach usb device. */
+ config_found(self, &sc->sc.sc_bus, usbctlprint);
+ return;
+
+disestablish_intr:
+ arm_intr_disestablish_fdt(sc->sc_ih);
+ sc->sc_ih = NULL;
+unmap:
+ bus_space_unmap(sc->sc.iot, sc->sc.ioh, sc->sc.sc_size);
+ sc->sc.sc_size = 0;
+out:
+ return;
+}
+
+int
+ehci_fdt_detach(struct device *self, int flags)
+{
+ struct ehci_fdt_softc *sc = (struct ehci_fdt_softc *)self;
+ int rv;
+
+ rv = ehci_detach(self, flags);
+ if (rv)
+ return rv;
+
+ if (sc->sc_ih != NULL) {
+ arm_intr_disestablish_fdt(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;
+ }
+
+ clock_disable_all(sc->sc_node);
+ return 0;
+}
+
+struct ehci_phy {
+ const char *compat;
+ void (*init)(struct ehci_fdt_softc *, uint32_t *);
+};
+
+void sun4i_phy_init(struct ehci_fdt_softc *, uint32_t *);
+void sun9i_phy_init(struct ehci_fdt_softc *, uint32_t *);
+
+struct ehci_phy ehci_phys[] = {
+ { "allwinner,sun4i-a10-usb-phy", sun4i_phy_init },
+ { "allwinner,sun5i-a13-usb-phy", sun4i_phy_init },
+ { "allwinner,sun6i-a31-usb-phy", sun4i_phy_init },
+ { "allwinner,sun7i-a20-usb-phy", sun4i_phy_init },
+ { "allwinner,sun8i-a23-usb-phy", sun4i_phy_init },
+ { "allwinner,sun8i-a33-usb-phy", sun4i_phy_init },
+ { "allwinner,sun8i-h3-usb-phy", sun4i_phy_init },
+ { "allwinner,sun8i-v3s-usb-phy", sun4i_phy_init },
+ { "allwinner,sun50i-a64-usb-phy", sun4i_phy_init },
+ { "allwinner,sun9i-a80-usb-phy", sun9i_phy_init },
+};
+
+uint32_t *
+ehci_next_phy(uint32_t *cells)
+{
+ uint32_t phandle = cells[0];
+ int node, ncells;
+
+ node = OF_getnodebyphandle(phandle);
+ if (node == 0)
+ return NULL;
+
+ ncells = OF_getpropint(node, "#phy-cells", 0);
+ return cells + ncells + 1;
+}
+
+void
+ehci_init_phy(struct ehci_fdt_softc *sc, uint32_t *cells)
+{
+ int node;
+ int i;
+
+ node = OF_getnodebyphandle(cells[0]);
+ if (node == 0)
+ return;
+
+ for (i = 0; i < nitems(ehci_phys); i++) {
+ if (OF_is_compatible(node, ehci_phys[i].compat)) {
+ ehci_phys[i].init(sc, cells);
+ return;
+ }
+ }
+}
+
+void
+ehci_init_phys(struct ehci_fdt_softc *sc)
+{
+ uint32_t *phys;
+ uint32_t *phy;
+ int len, idx;
+
+ idx = OF_getindex(sc->sc_node, "usb", "phy-names");
+ if (idx < 0)
+ return;
+
+ len = OF_getproplen(sc->sc_node, "phys");
+ if (len <= 0)
+ return;
+
+ phys = malloc(len, M_TEMP, M_WAITOK);
+ OF_getpropintarray(sc->sc_node, "phys", phys, len);
+
+ phy = phys;
+ while (phy && phy < phys + (len / sizeof(uint32_t))) {
+ if (idx == 0) {
+ ehci_init_phy(sc, phy);
+ free(phys, M_TEMP, len);
+ return;
+ }
+
+ phy = ehci_next_phy(phy);
+ idx--;
+ }
+ free(phys, M_TEMP, len);
+}
+
+/*
+ * Allwinner PHYs.
+ */
+
+/* Registers */
+#define SUNXI_HCI_ICR 0x800
+#define SUNXI_ULPI_BYPASS (1 << 0)
+#define SUNXI_AHB_INCRX_ALIGN (1 << 8)
+#define SUNXI_AHB_INCR4 (1 << 9)
+#define SUNXI_AHB_INCR8 (1 << 10)
+#define SUNXI_AHB_INCR16 (1 << 11)
+
+void
+sun4i_phy_init(struct ehci_fdt_softc *sc, uint32_t *cells)
+{
+ uint32_t vbus_supply;
+ char name[32];
+ uint32_t val;
+ int node;
+
+ val = bus_space_read_4(sc->sc.iot, sc->sc.ioh, SUNXI_HCI_ICR);
+ val |= SUNXI_AHB_INCR8 | SUNXI_AHB_INCR4;
+ val |= SUNXI_AHB_INCRX_ALIGN;
+ val |= SUNXI_ULPI_BYPASS;
+ bus_space_write_4(sc->sc.iot, sc->sc.ioh, SUNXI_HCI_ICR, val);
+
+ node = OF_getnodebyphandle(cells[0]);
+ if (node == -1)
+ return;
+
+ pinctrl_byname(node, "default");
+
+ /*
+ * On sun4i, sun5i and sun7i, there is a single clock. The
+ * more recent SoCs have a separate clock for each PHY.
+ */
+ if (OF_is_compatible(node, "allwinner,sun4i-a10-usb-phy") ||
+ OF_is_compatible(node, "allwinner,sun5i-a13-usb-phy") ||
+ OF_is_compatible(node, "allwinner,sun7i-a20-usb-phy")) {
+ clock_enable(node, "usb_phy");
+ } else {
+ snprintf(name, sizeof(name), "usb%d_phy", cells[1]);
+ clock_enable(node, name);
+ }
+
+ snprintf(name, sizeof(name), "usb%d_reset", cells[1]);
+ reset_deassert(node, name);
+
+ snprintf(name, sizeof(name), "usb%d_vbus-supply", cells[1]);
+ vbus_supply = OF_getpropint(node, name, 0);
+ if (vbus_supply)
+ regulator_enable(vbus_supply);
+}
+
+void
+sun9i_phy_init(struct ehci_fdt_softc *sc, uint32_t *cells)
+{
+ uint32_t phy_supply;
+ uint32_t val;
+ int node;
+
+ node = OF_getnodebyphandle(cells[0]);
+ if (node == -1)
+ return;
+
+ pinctrl_byname(node, "default");
+ clock_enable(node, "phy");
+ reset_deassert(node, "phy");
+
+ val = bus_space_read_4(sc->sc.iot, sc->sc.ioh, SUNXI_HCI_ICR);
+ val |= SUNXI_AHB_INCR16 | SUNXI_AHB_INCR8 | SUNXI_AHB_INCR4;
+ val |= SUNXI_AHB_INCRX_ALIGN;
+ val |= SUNXI_ULPI_BYPASS;
+ bus_space_write_4(sc->sc.iot, sc->sc.ioh, SUNXI_HCI_ICR, val);
+
+ phy_supply = OF_getpropint(node, "phy-supply", 0);
+ if (phy_supply)
+ regulator_enable(phy_supply);
+}
diff --git a/sys/dev/fdt/files.fdt b/sys/dev/fdt/files.fdt
index 6e242f9a60c..c5ffce01553 100644
--- a/sys/dev/fdt/files.fdt
+++ b/sys/dev/fdt/files.fdt
@@ -1,4 +1,4 @@
-# $OpenBSD: files.fdt,v 1.9 2017/03/11 00:11:47 kettenis Exp $
+# $OpenBSD: files.fdt,v 1.10 2017/04/29 20:49:09 kettenis Exp $
#
# Config file and device description for machine-independent FDT code.
# Included by ports that need it.
@@ -23,9 +23,6 @@ device sximmc: sdmmcbus
attach sximmc at fdt
file dev/fdt/sximmc.c sximmc
-attach ehci at fdt with sxiehci
-file dev/fdt/sxiehci.c sxiehci
-
device bcmdog
attach bcmdog at fdt
file dev/fdt/bcm2835_dog.c bcmdog
@@ -51,6 +48,9 @@ file dev/fdt/virtio_mmio.c virtio_mmio
attach ahci at fdt with ahci_fdt
file dev/fdt/ahci_fdt.c ahci_fdt
+attach ehci at fdt with ehci_fdt
+file dev/fdt/ehci_fdt.c ehci_fdt
+
attach xhci at fdt with xhci_fdt
file dev/fdt/xhci_fdt.c xhci_fdt
diff --git a/sys/dev/fdt/sxiehci.c b/sys/dev/fdt/sxiehci.c
deleted file mode 100644
index 00efbf7f99a..00000000000
--- a/sys/dev/fdt/sxiehci.c
+++ /dev/null
@@ -1,320 +0,0 @@
-/* $OpenBSD: sxiehci.c,v 1.2 2017/02/24 17:12:31 patrick Exp $ */
-
-/*
- * Copyright (c) 2005 David Gwynne <dlg@openbsd.org>
- * Copyright (c) 2016 Mark Kettenis <kettenis@openbsd.org>
- *
- * 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.
- */
-
-/*-
- * Copyright (c) 2011
- * Ben Gray <ben.r.gray@gmail.com>.
- * All rights reserved.
- *
- * 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 AUTHOR 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 AUTHOR 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.
- */
-
-#include <sys/param.h>
-#include <sys/systm.h>
-#include <sys/device.h>
-#include <sys/kernel.h>
-#include <sys/rwlock.h>
-#include <sys/timeout.h>
-
-#include <machine/intr.h>
-#include <machine/bus.h>
-#include <machine/fdt.h>
-
-#include <dev/usb/usb.h>
-#include <dev/usb/usbdi.h>
-#include <dev/usb/usbdivar.h>
-#include <dev/usb/usb_mem.h>
-
-#include <dev/ofw/openfirm.h>
-#include <dev/ofw/ofw_clock.h>
-#include <dev/ofw/ofw_pinctrl.h>
-#include <dev/ofw/ofw_regulator.h>
-#include <dev/ofw/fdt.h>
-
-#include <dev/usb/ehcireg.h>
-#include <dev/usb/ehcivar.h>
-
-#define USB_PMU_IRQ_ENABLE 0x800
-#define ULPI_BYPASS (1 << 0)
-#define AHB_INCRX_ALIGN (1 << 8)
-#define AHB_INCR4 (1 << 9)
-#define AHB_INCR8 (1 << 10)
-#define AHB_INCR16 (1 << 11)
-
-struct sxiehci_softc {
- struct ehci_softc sc;
- int sc_node;
- void *sc_ih;
-};
-
-int sxiehci_match(struct device *, void *, void *);
-void sxiehci_attach(struct device *, struct device *, void *);
-int sxiehci_detach(struct device *, int);
-int sxiehci_activate(struct device *, int);
-
-struct cfattach sxiehci_ca = {
- sizeof(struct sxiehci_softc), sxiehci_match, sxiehci_attach,
- sxiehci_detach, sxiehci_activate
-};
-
-void sxiehci_attach_sun4i_phy(struct sxiehci_softc *);
-void sxiehci_attach_sun9i_phy(struct sxiehci_softc *);
-
-int
-sxiehci_match(struct device *parent, void *match, void *aux)
-{
- struct fdt_attach_args *faa = aux;
-
- if (OF_is_compatible(faa->fa_node, "allwinner,sun4i-a10-ehci"))
- return 1;
- if (OF_is_compatible(faa->fa_node, "allwinner,sun5i-a13-ehci"))
- return 1;
- if (OF_is_compatible(faa->fa_node, "allwinner,sun50i-a64-ehci"))
- return 1;
- if (OF_is_compatible(faa->fa_node, "allwinner,sun7i-a20-ehci"))
- return 1;
- if (OF_is_compatible(faa->fa_node, "allwinner,sun8i-h3-ehci"))
- return 1;
- if (OF_is_compatible(faa->fa_node, "allwinner,sun9i-a80-ehci"))
- return 1;
-
- return 0;
-}
-
-void
-sxiehci_attach(struct device *parent, struct device *self, void *aux)
-{
- struct sxiehci_softc *sc = (struct sxiehci_softc *)self;
- struct fdt_attach_args *faa = aux;
- usbd_status r;
- char *devname = sc->sc.sc_bus.bdev.dv_xname;
-
- if (faa->fa_nreg < 1)
- return;
-
- sc->sc_node = faa->fa_node;
- sc->sc.iot = faa->fa_iot;
- sc->sc.sc_bus.dmatag = faa->fa_dmat;
- sc->sc.sc_size = faa->fa_reg[0].size;
-
- if (bus_space_map(sc->sc.iot, faa->fa_reg[0].addr,
- faa->fa_reg[0].size, 0, &sc->sc.ioh)) {
- printf(": cannot map mem space\n");
- goto out;
- }
-
- printf("\n");
-
- clock_enable_all(sc->sc_node);
- reset_deassert_all(sc->sc_node);
-
- if (OF_is_compatible(sc->sc_node, "allwinner,sun9i-a80-ehci"))
- sxiehci_attach_sun9i_phy(sc);
- else
- sxiehci_attach_sun4i_phy(sc);
-
- /* Disable interrupts, so we don't get any spurious ones. */
- sc->sc.sc_offs = EREAD1(&sc->sc, EHCI_CAPLENGTH);
- EOWRITE2(&sc->sc, EHCI_USBINTR, 0);
-
- sc->sc_ih = arm_intr_establish_fdt(faa->fa_node, IPL_USB,
- ehci_intr, &sc->sc, devname);
- if (sc->sc_ih == NULL) {
- printf(": unable to establish interrupt\n");
- printf("XXX - disable ehci");
-#if 0
- clock_disable_all(sc->sc_node);
-#endif
- goto mem0;
- }
-
- strlcpy(sc->sc.sc_vendor, "Allwinner", sizeof(sc->sc.sc_vendor));
- r = ehci_init(&sc->sc);
- if (r != USBD_NORMAL_COMPLETION) {
- printf("%s: init failed, error=%d\n", devname, r);
- printf("XXX - disable ehci");
-#if 0
- clock_disable_all(sc->sc_node);
-#endif
- goto intr;
- }
-
- config_found(self, &sc->sc.sc_bus, usbctlprint);
-
- goto out;
-
-intr:
- arm_intr_disestablish_fdt(sc->sc_ih);
- sc->sc_ih = NULL;
-mem0:
- bus_space_unmap(sc->sc.iot, sc->sc.ioh, sc->sc.sc_size);
- sc->sc.sc_size = 0;
-out:
- return;
-}
-
-void
-sxiehci_attach_sun4i_phy(struct sxiehci_softc *sc)
-{
- uint32_t vbus_supply;
- uint32_t phys[2];
- char name[32];
- uint32_t val;
- int node;
-
- val = bus_space_read_4(sc->sc.iot, sc->sc.ioh, USB_PMU_IRQ_ENABLE);
- val |= AHB_INCR8; /* AHB INCR8 enable */
- val |= AHB_INCR4; /* AHB burst type INCR4 enable */
- val |= AHB_INCRX_ALIGN; /* AHB INCRX align enable */
- val |= ULPI_BYPASS; /* ULPI bypass enable */
- bus_space_write_4(sc->sc.iot, sc->sc.ioh, USB_PMU_IRQ_ENABLE, val);
-
- if (OF_getpropintarray(sc->sc_node, "phys", phys,
- sizeof(phys)) != sizeof(phys))
- return;
-
- node = OF_getnodebyphandle(phys[0]);
- if (node == -1)
- return;
-
- pinctrl_byname(node, "default");
-
- /*
- * On sun4i, sun5i and sun7i, there is a single clock. The
- * more recent SoCs have a separate clock for each PHY.
- */
- if (OF_is_compatible(node, "allwinner,sun4i-a10-usb-phy") ||
- OF_is_compatible(node, "allwinner,sun5i-a13-usb-phy") ||
- OF_is_compatible(node, "allwinner,sun7i-a20-usb-phy")) {
- clock_enable(node, "usb_phy");
- } else {
- snprintf(name, sizeof(name), "usb%d_phy", phys[1]);
- clock_enable(node, name);
- }
-
- snprintf(name, sizeof(name), "usb%d_reset", phys[1]);
- reset_deassert(node, name);
-
- snprintf(name, sizeof(name), "usb%d_vbus-supply", phys[1]);
- vbus_supply = OF_getpropint(node, name, 0);
- if (vbus_supply)
- regulator_enable(vbus_supply);
-}
-
-void
-sxiehci_attach_sun9i_phy(struct sxiehci_softc *sc)
-{
- uint32_t phy_supply;
- uint32_t phys[1];
- uint32_t val;
- int node;
-
- if (OF_getpropintarray(sc->sc_node, "phys", phys,
- sizeof(phys)) != sizeof(phys))
- return;
-
- node = OF_getnodebyphandle(phys[0]);
- if (node == -1)
- return;
-
- pinctrl_byname(node, "default");
- clock_enable(node, "phy");
- reset_deassert(node, "phy");
-
- val = bus_space_read_4(sc->sc.iot, sc->sc.ioh, USB_PMU_IRQ_ENABLE);
- val |= AHB_INCR16;
- val |= AHB_INCR8; /* AHB INCR8 enable */
- val |= AHB_INCR4; /* AHB burst type INCR4 enable */
- val |= AHB_INCRX_ALIGN; /* AHB INCRX align enable */
- val |= ULPI_BYPASS; /* ULPI bypass enable */
- bus_space_write_4(sc->sc.iot, sc->sc.ioh, USB_PMU_IRQ_ENABLE, val);
-
- phy_supply = OF_getpropint(node, "phy-supply", 0);
- if (phy_supply)
- regulator_enable(phy_supply);
-}
-
-int
-sxiehci_detach(struct device *self, int flags)
-{
- struct sxiehci_softc *sc = (struct sxiehci_softc *)self;
- int rv;
-
- rv = ehci_detach(self, flags);
- if (rv)
- return (rv);
-
- if (sc->sc_ih != NULL) {
- arm_intr_disestablish_fdt(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;
- }
- /* XXX */
-#if 0
- sxiehci_detach_phy(sc);
- clock_disable_all(sc->sc_node);
-#endif
- return (0);
-}
-
-int
-sxiehci_activate(struct device *self, int act)
-{
- struct sxiehci_softc *sc = (struct sxiehci_softc *)self;
-
- switch (act) {
- case DVACT_SUSPEND:
- sc->sc.sc_bus.use_polling++;
- /* FIXME */
- sc->sc.sc_bus.use_polling--;
- break;
- case DVACT_RESUME:
- sc->sc.sc_bus.use_polling++;
- /* FIXME */
- sc->sc.sc_bus.use_polling--;
- break;
- case DVACT_POWERDOWN:
- ehci_reset(&sc->sc);
- break;
- }
- return 0;
-}