summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorian <ian@FreeBSD.org>2014-10-26 04:17:20 +0000
committerian <ian@FreeBSD.org>2014-10-26 04:17:20 +0000
commit34e0375805069b36a5530030be385b18c1700d2f (patch)
tree3da10202308e9f021e4402f8287e7b5ccac89a2a
parentaec69e1f985e3f6ef6a4c80255ee4c2787963ca2 (diff)
downloadFreeBSD-src-34e0375805069b36a5530030be385b18c1700d2f.zip
FreeBSD-src-34e0375805069b36a5530030be385b18c1700d2f.tar.gz
MFC r273353, r273514:
Attach the imx6 CCM driver during BUS_PASS_CPU. Unconditionally enable the clocks for all imx6 devices that we have drivers for, or that are required to run the chip (such as busses).
-rw-r--r--sys/arm/freescale/imx/imx6_ccm.c27
1 files changed, 26 insertions, 1 deletions
diff --git a/sys/arm/freescale/imx/imx6_ccm.c b/sys/arm/freescale/imx/imx6_ccm.c
index d722291..769a841 100644
--- a/sys/arm/freescale/imx/imx6_ccm.c
+++ b/sys/arm/freescale/imx/imx6_ccm.c
@@ -76,6 +76,28 @@ WR4(struct ccm_softc *sc, bus_size_t off, uint32_t val)
bus_write_4(sc->mem_res, off, val);
}
+/*
+ * Until we have a fully functional ccm driver which implements the fdt_clock
+ * interface, use the age-old workaround of unconditionally enabling the clocks
+ * for devices we might need to use. The SoC defaults to most clocks enabled,
+ * but the rom boot code and u-boot disable a few of them. We turn on only
+ * what's needed to run the chip plus devices we have drivers for, and turn off
+ * devices we don't yet have drivers for. (Note that USB is not turned on here
+ * because that is one we do when the driver asks for it.)
+ */
+static void
+ccm_init_gates(struct ccm_softc *sc)
+{
+ /* Turns on... */
+ WR4(sc, CCM_CCGR0, 0x0000003f); /* ahpbdma, aipstz 1 & 2 busses */
+ WR4(sc, CCM_CCGR1, 0x00300c00); /* gpt, enet */
+ WR4(sc, CCM_CCGR2, 0x0fffffc0); /* ipmux & ipsync (bridges), iomux, i2c */
+ WR4(sc, CCM_CCGR3, 0x3ff00000); /* DDR memory controller */
+ WR4(sc, CCM_CCGR4, 0x0000f300); /* pl301 bus crossbar */
+ WR4(sc, CCM_CCGR5, 0x0f000000); /* uarts */
+ WR4(sc, CCM_CCGR6, 0x000000cc); /* usdhc 1 & 3 */
+}
+
static int
ccm_detach(device_t dev)
{
@@ -130,6 +152,8 @@ ccm_attach(device_t dev)
reg = (reg & ~CCM_CLPCR_LPM_MASK) | CCM_CLPCR_LPM_RUN;
WR4(sc, CCM_CLPCR, reg);
+ ccm_init_gates(sc);
+
err = 0;
out:
@@ -261,5 +285,6 @@ static driver_t ccm_driver = {
static devclass_t ccm_devclass;
-DRIVER_MODULE(ccm, simplebus, ccm_driver, ccm_devclass, 0, 0);
+EARLY_DRIVER_MODULE(ccm, simplebus, ccm_driver, ccm_devclass, 0, 0,
+ BUS_PASS_CPU + BUS_PASS_ORDER_EARLY);
OpenPOWER on IntegriCloud