]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
usb: ehci-mx6: add support for i.MXRT
authorGiulio Benetti <giulio.benetti@benettiengineering.com>
Thu, 20 May 2021 14:10:15 +0000 (16:10 +0200)
committerStefano Babic <sbabic@denx.de>
Wed, 9 Jun 2021 11:03:47 +0000 (13:03 +0200)
Add support for usb1 and usb2 present on i.IMXRT.

Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
arch/arm/include/asm/arch-imxrt/imx-regs.h
drivers/usb/host/Kconfig
drivers/usb/host/ehci-mx6.c

index 44c95dcd11430c636070fdaae776834834a9062c..d01e6ca2e02a804715e206c96b5fab9f9d9089a2 100644 (file)
@@ -23,4 +23,8 @@
 #include <asm/mach-imx/regs-lcdif.h>
 #endif
 
+#define USB_BASE_ADDR          0x402E0000
+#define USB_PHY0_BASE_ADDR     0x400D9000
+#define USB_PHY1_BASE_ADDR     0x400DA000
+
 #endif /* __ASM_ARCH_IMX_REGS_H__ */
index bf5d82f0350e1d629cbef7d62e66f463d8703d6b..f34cba2395c51aade5cf107ad63732d84e5d6abf 100644 (file)
@@ -149,7 +149,7 @@ config USB_EHCI_MX5
 
 config USB_EHCI_MX6
        bool "Support for i.MX6/i.MX7ULP on-chip EHCI USB controller"
-       depends on ARCH_MX6 || ARCH_MX7ULP
+       depends on ARCH_MX6 || ARCH_MX7ULP || ARCH_IMXRT
        default y
        ---help---
          Enables support for the on-chip EHCI controller on i.MX6 SoCs.
index 06be9deaaae929dc995fa3bef5457be92364cd14..238c93183b0505ce4fe5b763f0f2f3f44decf723 100644 (file)
@@ -177,7 +177,7 @@ static void __maybe_unused
 usb_power_config_mx7ulp(void *usbphy) { }
 #endif
 
-#if defined(CONFIG_MX6) || defined(CONFIG_MX7ULP)
+#if defined(CONFIG_MX6) || defined(CONFIG_MX7ULP) || defined(CONFIG_IMXRT)
 static const unsigned phy_bases[] = {
        USB_PHY0_BASE_ADDR,
 #if defined(USB_PHY1_BASE_ADDR)
@@ -340,7 +340,7 @@ int ehci_hcd_init(int index, enum usb_init_type init,
                struct ehci_hccr **hccr, struct ehci_hcor **hcor)
 {
        enum usb_init_type type;
-#if defined(CONFIG_MX6)
+#if defined(CONFIG_MX6) || defined(CONFIG_IMXRT)
        u32 controller_spacing = 0x200;
        struct anatop_regs __iomem *anatop =
                (struct anatop_regs __iomem *)ANATOP_BASE_ADDR;
@@ -382,7 +382,7 @@ int ehci_hcd_init(int index, enum usb_init_type init,
                return ret;
        }
 
-#if defined(CONFIG_MX6)
+#if defined(CONFIG_MX6) || defined(CONFIG_IMXRT)
        usb_power_config_mx6(anatop, index);
 #elif defined (CONFIG_MX7)
        usb_power_config_mx7(usbnc);
@@ -392,7 +392,7 @@ int ehci_hcd_init(int index, enum usb_init_type init,
 
        usb_oc_config(usbnc, index);
 
-#if defined(CONFIG_MX6) || defined(CONFIG_MX7ULP)
+#if defined(CONFIG_MX6) || defined(CONFIG_MX7ULP) || defined(CONFIG_IMXRT)
        if (index < ARRAY_SIZE(phy_bases)) {
                usb_internal_phy_clock_gate((void __iomem *)phy_bases[index], 1);
                usb_phy_enable(ehci, (void __iomem *)phy_bases[index]);
@@ -504,7 +504,7 @@ static int ehci_usb_phy_mode(struct udevice *dev)
         * About fsl,usbphy, Refer to
         * Documentation/devicetree/bindings/usb/ci-hdrc-usb2.txt.
         */
-       if (is_mx6() || is_mx7ulp()) {
+       if (is_mx6() || is_mx7ulp() || is_imxrt()) {
                phy_off = fdtdec_lookup_phandle(blob,
                                                offset,
                                                "fsl,usbphy");
@@ -671,7 +671,7 @@ static int ehci_usb_probe(struct udevice *dev)
 
        usb_oc_config(priv->misc_addr, priv->portnr);
 
-#if defined(CONFIG_MX6) || defined(CONFIG_MX7ULP)
+#if defined(CONFIG_MX6) || defined(CONFIG_MX7ULP) || defined(CONFIG_IMXRT)
        usb_internal_phy_clock_gate(priv->phy_addr, 1);
        usb_phy_enable(ehci, priv->phy_addr);
 #endif
@@ -757,6 +757,7 @@ int ehci_usb_remove(struct udevice *dev)
 static const struct udevice_id mx6_usb_ids[] = {
        { .compatible = "fsl,imx27-usb" },
        { .compatible = "fsl,imx7d-usb" },
+       { .compatible = "fsl,imxrt-usb" },
        { }
 };