1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com/
4 * Written by Jean-Jacques Hiblot <jjhiblot@ti.com>
10 #include <dm/device.h>
11 #include <generic-phy.h>
13 #include <asm/arch/psc_defs.h>
14 #include <linux/bitops.h>
15 #include <linux/delay.h>
17 /* USB PHY control register offsets */
18 #define USB_PHY_CTL_UTMI 0x0000
19 #define USB_PHY_CTL_PIPE 0x0004
20 #define USB_PHY_CTL_PARAM_1 0x0008
21 #define USB_PHY_CTL_PARAM_2 0x000c
22 #define USB_PHY_CTL_CLOCK 0x0010
23 #define USB_PHY_CTL_PLL 0x0014
25 #define PHY_OTG_VBUSVLDECTSEL BIT(16)
26 #define PHY_REF_SSP_EN BIT(29)
28 struct keystone_usb_phy {
33 static int keystone_usb_init(struct phy *phy)
37 struct udevice *dev = phy->dev;
38 struct keystone_usb_phy *keystone = dev_get_priv(dev);
40 /* Release USB from reset */
41 rc = psc_enable_module(keystone->psc_domain);
43 debug("Cannot enable USB module");
49 * VBUSVLDEXTSEL has a default value of 1 in BootCfg but shouldn't.
50 * It should always be cleared because our USB PHY has an onchip VBUS
53 val = readl(keystone->reg + USB_PHY_CTL_CLOCK);
54 /* quit selecting the vbusvldextsel by default! */
55 val &= ~PHY_OTG_VBUSVLDECTSEL;
56 writel(val, keystone->reg + USB_PHY_CTL_CLOCK);
61 static int keystone_usb_power_on(struct phy *phy)
64 struct udevice *dev = phy->dev;
65 struct keystone_usb_phy *keystone = dev_get_priv(dev);
67 val = readl(keystone->reg + USB_PHY_CTL_CLOCK);
68 val |= PHY_REF_SSP_EN;
69 writel(val, keystone->reg + USB_PHY_CTL_CLOCK);
74 static int keystone_usb_power_off(struct phy *phy)
77 struct udevice *dev = phy->dev;
78 struct keystone_usb_phy *keystone = dev_get_priv(dev);
80 val = readl(keystone->reg + USB_PHY_CTL_CLOCK);
81 val &= ~PHY_REF_SSP_EN;
82 writel(val, keystone->reg + USB_PHY_CTL_CLOCK);
87 static int keystone_usb_exit(struct phy *phy)
89 struct udevice *dev = phy->dev;
90 struct keystone_usb_phy *keystone = dev_get_priv(dev);
92 if (psc_disable_module(keystone->psc_domain))
93 debug("failed to disable USB module!\n");
98 static int keystone_usb_phy_probe(struct udevice *dev)
101 struct keystone_usb_phy *keystone = dev_get_priv(dev);
103 rc = dev_read_u32(dev, "psc-domain", &keystone->psc_domain);
107 keystone->reg = dev_remap_addr_index(dev, 0);
108 if (!keystone->reg) {
109 pr_err("unable to remap usb phy\n");
115 static const struct udevice_id keystone_usb_phy_ids[] = {
116 { .compatible = "ti,keystone-usbphy" },
120 static struct phy_ops keystone_usb_phy_ops = {
121 .init = keystone_usb_init,
122 .power_on = keystone_usb_power_on,
123 .power_off = keystone_usb_power_off,
124 .exit = keystone_usb_exit,
127 U_BOOT_DRIVER(keystone_usb_phy) = {
128 .name = "keystone_usb_phy",
130 .of_match = keystone_usb_phy_ids,
131 .ops = &keystone_usb_phy_ops,
132 .probe = keystone_usb_phy_probe,
133 .priv_auto = sizeof(struct keystone_usb_phy),