1 // SPDX-License-Identifier: GPL-2.0+
5 * Copyright (C) 2018 Texas Instruments Incorporated - http://www.ti.com
13 #include <generic-phy.h>
17 #define OMAP_USB2_CALIBRATE_FALSE_DISCONNECT BIT(0)
19 #define OMAP_DEV_PHY_PD BIT(0)
20 #define OMAP_USB2_PHY_PD BIT(28)
22 #define AM437X_USB2_PHY_PD BIT(0)
23 #define AM437X_USB2_OTG_PD BIT(1)
24 #define AM437X_USB2_OTGVDET_EN BIT(19)
25 #define AM437X_USB2_OTGSESSEND_EN BIT(20)
27 #define USB2PHY_DISCON_BYP_LATCH BIT(31)
28 #define USB2PHY_ANA_CONFIG1 (0x4c)
30 #define AM654_USB2_OTG_PD BIT(8)
31 #define AM654_USB2_VBUS_DET_EN BIT(5)
32 #define AM654_USB2_VBUSVALID_DET_EN BIT(4)
34 DECLARE_GLOBAL_DATA_PTR;
36 struct omap_usb2_phy {
37 struct regmap *pwr_regmap;
51 static const struct usb_phy_data omap5_usb2_data = {
52 .label = "omap5_usb2",
54 .mask = OMAP_DEV_PHY_PD,
55 .power_off = OMAP_DEV_PHY_PD,
58 static const struct usb_phy_data dra7x_usb2_data = {
59 .label = "dra7x_usb2",
60 .flags = OMAP_USB2_CALIBRATE_FALSE_DISCONNECT,
61 .mask = OMAP_DEV_PHY_PD,
62 .power_off = OMAP_DEV_PHY_PD,
65 static const struct usb_phy_data dra7x_usb2_phy2_data = {
66 .label = "dra7x_usb2_phy2",
67 .flags = OMAP_USB2_CALIBRATE_FALSE_DISCONNECT,
68 .mask = OMAP_USB2_PHY_PD,
69 .power_off = OMAP_USB2_PHY_PD,
72 static const struct usb_phy_data am437x_usb2_data = {
73 .label = "am437x_usb2",
75 .mask = AM437X_USB2_PHY_PD | AM437X_USB2_OTG_PD |
76 AM437X_USB2_OTGVDET_EN | AM437X_USB2_OTGSESSEND_EN,
77 .power_on = AM437X_USB2_OTGVDET_EN | AM437X_USB2_OTGSESSEND_EN,
78 .power_off = AM437X_USB2_PHY_PD | AM437X_USB2_OTG_PD,
81 static const struct usb_phy_data am654_usb2_data = {
82 .label = "am654_usb2",
83 .flags = OMAP_USB2_CALIBRATE_FALSE_DISCONNECT,
84 .mask = AM654_USB2_OTG_PD | AM654_USB2_VBUS_DET_EN |
85 AM654_USB2_VBUSVALID_DET_EN,
86 .power_on = AM654_USB2_VBUS_DET_EN | AM654_USB2_VBUSVALID_DET_EN,
87 .power_off = AM654_USB2_OTG_PD,
90 static const struct udevice_id omap_usb2_id_table[] = {
92 .compatible = "ti,omap5-usb2",
93 .data = (ulong)&omap5_usb2_data,
96 .compatible = "ti,dra7x-usb2",
97 .data = (ulong)&dra7x_usb2_data,
100 .compatible = "ti,dra7x-usb2-phy2",
101 .data = (ulong)&dra7x_usb2_phy2_data,
104 .compatible = "ti,am437x-usb2",
105 .data = (ulong)&am437x_usb2_data,
108 .compatible = "ti,am654-usb2",
109 .data = (ulong)&am654_usb2_data,
114 static int omap_usb_phy_power(struct phy *usb_phy, bool on)
116 struct udevice *dev = usb_phy->dev;
117 const struct usb_phy_data *data;
118 const struct omap_usb2_phy *phy = dev_get_priv(dev);
122 data = (const struct usb_phy_data *)dev_get_driver_data(dev);
126 rc = regmap_read(phy->pwr_regmap, phy->pwr_reg_offset, &val);
131 val |= data->power_on;
133 val |= data->power_off;
134 rc = regmap_write(phy->pwr_regmap, phy->pwr_reg_offset, val);
141 static int omap_usb2_phy_init(struct phy *usb_phy)
143 struct udevice *dev = usb_phy->dev;
144 struct omap_usb2_phy *priv = dev_get_priv(dev);
147 if (priv->flags & OMAP_USB2_CALIBRATE_FALSE_DISCONNECT) {
150 * Reduce the sensitivity of internal PHY by enabling the
151 * DISCON_BYP_LATCH of the USB2PHY_ANA_CONFIG1 register. This
152 * resolves issues with certain devices which can otherwise
153 * be prone to false disconnects.
156 val = readl(priv->phy_base + USB2PHY_ANA_CONFIG1);
157 val |= USB2PHY_DISCON_BYP_LATCH;
158 writel(val, priv->phy_base + USB2PHY_ANA_CONFIG1);
164 static int omap_usb2_phy_power_on(struct phy *usb_phy)
166 return omap_usb_phy_power(usb_phy, true);
169 static int omap_usb2_phy_power_off(struct phy *usb_phy)
171 return omap_usb_phy_power(usb_phy, false);
174 static int omap_usb2_phy_exit(struct phy *usb_phy)
176 return omap_usb_phy_power(usb_phy, false);
179 struct phy_ops omap_usb2_phy_ops = {
180 .init = omap_usb2_phy_init,
181 .power_on = omap_usb2_phy_power_on,
182 .power_off = omap_usb2_phy_power_off,
183 .exit = omap_usb2_phy_exit,
186 int omap_usb2_phy_probe(struct udevice *dev)
189 struct regmap *regmap;
190 struct omap_usb2_phy *priv = dev_get_priv(dev);
191 const struct usb_phy_data *data;
194 data = (const struct usb_phy_data *)dev_get_driver_data(dev);
198 if (data->flags & OMAP_USB2_CALIBRATE_FALSE_DISCONNECT) {
199 priv->phy_base = dev_read_addr_ptr(dev);
203 priv->flags |= OMAP_USB2_CALIBRATE_FALSE_DISCONNECT;
206 regmap = syscon_regmap_lookup_by_phandle(dev, "syscon-phy-power");
207 if (!IS_ERR(regmap)) {
208 priv->pwr_regmap = regmap;
209 rc = dev_read_u32_array(dev, "syscon-phy-power", tmp, 2);
211 printf("couldn't get power reg. offset (err %d)\n", rc);
214 priv->pwr_reg_offset = tmp[1];
217 regmap = syscon_regmap_lookup_by_phandle(dev, "ctrl-module");
218 if (!IS_ERR(regmap)) {
219 priv->pwr_regmap = regmap;
220 priv->pwr_reg_offset = 0;
224 printf("can't get regmap (err %ld)\n", PTR_ERR(regmap));
225 return PTR_ERR(regmap);
228 U_BOOT_DRIVER(omap_usb2_phy) = {
229 .name = "omap_usb2_phy",
231 .of_match = omap_usb2_id_table,
232 .probe = omap_usb2_phy_probe,
233 .ops = &omap_usb2_phy_ops,
234 .priv_auto_alloc_size = sizeof(struct omap_usb2_phy),