phy: keystone-usb: handle the transition of the USB power domain
authorJean-Jacques Hiblot <jjhiblot@ti.com>
Wed, 11 Sep 2019 09:33:56 +0000 (11:33 +0200)
committerMarek Vasut <marek.vasut+renesas@gmail.com>
Thu, 24 Oct 2019 09:28:17 +0000 (11:28 +0200)
There is no proper power domain support for the keystone platforms.
However we need to turn off the USB domains before jumping to linux or it
fail to boot (observed with k2e and k2l platforms).
This can be done in the PHY driver as it is dedicated only to the keystone
platforms and matches the required on/off sequence.

Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
drivers/phy/keystone-usb-phy.c

index e8146cabfa5a7e08be41d5330de8af46fb7d4677..14ac6bbbb20732bfa495aecc493bc636f4761b59 100644 (file)
@@ -9,6 +9,7 @@
 #include <dm/device.h>
 #include <generic-phy.h>
 #include <asm/io.h>
+#include <asm/arch/psc_defs.h>
 
 /* USB PHY control register offsets */
 #define USB_PHY_CTL_UTMI               0x0000
 #define PHY_REF_SSP_EN                 BIT(29)
 
 struct keystone_usb_phy {
+       u32 psc_domain;
        void __iomem *reg;
 };
 
 static int keystone_usb_init(struct phy *phy)
 {
        u32 val;
+       int rc;
        struct udevice *dev = phy->dev;
        struct keystone_usb_phy *keystone = dev_get_priv(dev);
 
+       /* Release USB from reset */
+       rc = psc_enable_module(keystone->psc_domain);
+       if (rc) {
+               debug("Cannot enable USB module");
+               return -rc;
+       }
+       mdelay(10);
+
        /*
         * VBUSVLDEXTSEL has a default value of 1 in BootCfg but shouldn't.
         * It should always be cleared because our USB PHY has an onchip VBUS
@@ -72,13 +83,24 @@ static int keystone_usb_power_off(struct phy *phy)
 
 static int keystone_usb_exit(struct phy *phy)
 {
+       struct udevice *dev = phy->dev;
+       struct keystone_usb_phy *keystone = dev_get_priv(dev);
+
+       if (psc_disable_module(keystone->psc_domain))
+               debug("failed to disable USB module!\n");
+
        return 0;
 }
 
 static int keystone_usb_phy_probe(struct udevice *dev)
 {
+       int rc;
        struct keystone_usb_phy *keystone = dev_get_priv(dev);
 
+       rc = dev_read_u32(dev, "psc-domain", &keystone->psc_domain);
+       if (rc)
+               return rc;
+
        keystone->reg = dev_remap_addr_index(dev, 0);
        if (!keystone->reg) {
                pr_err("unable to remap usb phy\n");