1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * omap-usb2.c - USB PHY, talking to USB controller on TI SoCs.
5 * Copyright (C) 2012-2020 Texas Instruments Incorporated - http://www.ti.com
10 #include <linux/delay.h>
11 #include <linux/err.h>
13 #include <linux/mfd/syscon.h>
14 #include <linux/module.h>
16 #include <linux/of_platform.h>
17 #include <linux/phy/omap_control_phy.h>
18 #include <linux/phy/omap_usb.h>
19 #include <linux/phy/phy.h>
20 #include <linux/platform_device.h>
21 #include <linux/pm_runtime.h>
22 #include <linux/regmap.h>
23 #include <linux/slab.h>
24 #include <linux/sys_soc.h>
25 #include <linux/usb/phy_companion.h>
27 #define USB2PHY_ANA_CONFIG1 0x4c
28 #define USB2PHY_DISCON_BYP_LATCH BIT(31)
30 #define USB2PHY_CHRG_DET 0x14
31 #define USB2PHY_CHRG_DET_USE_CHG_DET_REG BIT(29)
32 #define USB2PHY_CHRG_DET_DIS_CHG_DET BIT(28)
34 /* SoC Specific USB2_OTG register definitions */
35 #define AM654_USB2_OTG_PD BIT(8)
36 #define AM654_USB2_VBUS_DET_EN BIT(5)
37 #define AM654_USB2_VBUSVALID_DET_EN BIT(4)
39 #define OMAP_DEV_PHY_PD BIT(0)
40 #define OMAP_USB2_PHY_PD BIT(28)
42 #define AM437X_USB2_PHY_PD BIT(0)
43 #define AM437X_USB2_OTG_PD BIT(1)
44 #define AM437X_USB2_OTGVDET_EN BIT(19)
45 #define AM437X_USB2_OTGSESSEND_EN BIT(20)
48 #define OMAP_USB2_HAS_START_SRP BIT(0)
49 #define OMAP_USB2_HAS_SET_VBUS BIT(1)
50 #define OMAP_USB2_CALIBRATE_FALSE_DISCONNECT BIT(2)
51 #define OMAP_USB2_DISABLE_CHRG_DET BIT(3)
55 struct phy_companion *comparator;
56 void __iomem *pll_ctrl_base;
57 void __iomem *phy_base;
59 struct device *control_dev;
63 struct regmap *syscon_phy_power; /* ctrl. reg. acces */
64 unsigned int power_reg; /* power reg. index within syscon */
70 #define phy_to_omapusb(x) container_of((x), struct omap_usb, phy)
80 static inline u32 omap_usb_readl(void __iomem *addr, unsigned int offset)
82 return __raw_readl(addr + offset);
85 static inline void omap_usb_writel(void __iomem *addr, unsigned int offset,
88 __raw_writel(data, addr + offset);
92 * omap_usb2_set_comparator() - links the comparator present in the system with this phy
94 * @comparator: the companion phy(comparator) for this phy
96 * The phy companion driver should call this API passing the phy_companion
97 * filled with set_vbus and start_srp to be used by usb phy.
99 * For use by phy companion driver
101 int omap_usb2_set_comparator(struct phy_companion *comparator)
103 struct omap_usb *phy;
104 struct usb_phy *x = usb_get_phy(USB_PHY_TYPE_USB2);
109 phy = phy_to_omapusb(x);
110 phy->comparator = comparator;
113 EXPORT_SYMBOL_GPL(omap_usb2_set_comparator);
115 static int omap_usb_set_vbus(struct usb_otg *otg, bool enabled)
117 struct omap_usb *phy = phy_to_omapusb(otg->usb_phy);
119 if (!phy->comparator)
122 return phy->comparator->set_vbus(phy->comparator, enabled);
125 static int omap_usb_start_srp(struct usb_otg *otg)
127 struct omap_usb *phy = phy_to_omapusb(otg->usb_phy);
129 if (!phy->comparator)
132 return phy->comparator->start_srp(phy->comparator);
135 static int omap_usb_set_host(struct usb_otg *otg, struct usb_bus *host)
139 otg->state = OTG_STATE_UNDEFINED;
144 static int omap_usb_set_peripheral(struct usb_otg *otg,
145 struct usb_gadget *gadget)
147 otg->gadget = gadget;
149 otg->state = OTG_STATE_UNDEFINED;
154 static int omap_usb_phy_power(struct omap_usb *phy, int on)
159 if (!phy->syscon_phy_power) {
160 omap_control_phy_power(phy->control_dev, on);
167 val = phy->power_off;
169 ret = regmap_update_bits(phy->syscon_phy_power, phy->power_reg,
174 static int omap_usb_power_off(struct phy *x)
176 struct omap_usb *phy = phy_get_drvdata(x);
178 return omap_usb_phy_power(phy, false);
181 static int omap_usb_power_on(struct phy *x)
183 struct omap_usb *phy = phy_get_drvdata(x);
185 return omap_usb_phy_power(phy, true);
188 static int omap_usb2_disable_clocks(struct omap_usb *phy)
190 clk_disable_unprepare(phy->wkupclk);
191 if (!IS_ERR(phy->optclk))
192 clk_disable_unprepare(phy->optclk);
197 static int omap_usb2_enable_clocks(struct omap_usb *phy)
201 ret = clk_prepare_enable(phy->wkupclk);
203 dev_err(phy->dev, "Failed to enable wkupclk %d\n", ret);
207 if (!IS_ERR(phy->optclk)) {
208 ret = clk_prepare_enable(phy->optclk);
210 dev_err(phy->dev, "Failed to enable optclk %d\n", ret);
218 clk_disable_unprepare(phy->wkupclk);
224 static int omap_usb_init(struct phy *x)
226 struct omap_usb *phy = phy_get_drvdata(x);
229 omap_usb2_enable_clocks(phy);
231 if (phy->flags & OMAP_USB2_CALIBRATE_FALSE_DISCONNECT) {
234 * Reduce the sensitivity of internal PHY by enabling the
235 * DISCON_BYP_LATCH of the USB2PHY_ANA_CONFIG1 register. This
236 * resolves issues with certain devices which can otherwise
237 * be prone to false disconnects.
240 val = omap_usb_readl(phy->phy_base, USB2PHY_ANA_CONFIG1);
241 val |= USB2PHY_DISCON_BYP_LATCH;
242 omap_usb_writel(phy->phy_base, USB2PHY_ANA_CONFIG1, val);
245 if (phy->flags & OMAP_USB2_DISABLE_CHRG_DET) {
246 val = omap_usb_readl(phy->phy_base, USB2PHY_CHRG_DET);
247 val |= USB2PHY_CHRG_DET_USE_CHG_DET_REG |
248 USB2PHY_CHRG_DET_DIS_CHG_DET;
249 omap_usb_writel(phy->phy_base, USB2PHY_CHRG_DET, val);
255 static int omap_usb_exit(struct phy *x)
257 struct omap_usb *phy = phy_get_drvdata(x);
259 return omap_usb2_disable_clocks(phy);
262 static const struct phy_ops ops = {
263 .init = omap_usb_init,
264 .exit = omap_usb_exit,
265 .power_on = omap_usb_power_on,
266 .power_off = omap_usb_power_off,
267 .owner = THIS_MODULE,
270 static const struct usb_phy_data omap_usb2_data = {
271 .label = "omap_usb2",
272 .flags = OMAP_USB2_HAS_START_SRP | OMAP_USB2_HAS_SET_VBUS,
273 .mask = OMAP_DEV_PHY_PD,
274 .power_off = OMAP_DEV_PHY_PD,
277 static const struct usb_phy_data omap5_usb2_data = {
278 .label = "omap5_usb2",
280 .mask = OMAP_DEV_PHY_PD,
281 .power_off = OMAP_DEV_PHY_PD,
284 static const struct usb_phy_data dra7x_usb2_data = {
285 .label = "dra7x_usb2",
286 .flags = OMAP_USB2_CALIBRATE_FALSE_DISCONNECT,
287 .mask = OMAP_DEV_PHY_PD,
288 .power_off = OMAP_DEV_PHY_PD,
291 static const struct usb_phy_data dra7x_usb2_phy2_data = {
292 .label = "dra7x_usb2_phy2",
293 .flags = OMAP_USB2_CALIBRATE_FALSE_DISCONNECT,
294 .mask = OMAP_USB2_PHY_PD,
295 .power_off = OMAP_USB2_PHY_PD,
298 static const struct usb_phy_data am437x_usb2_data = {
299 .label = "am437x_usb2",
301 .mask = AM437X_USB2_PHY_PD | AM437X_USB2_OTG_PD |
302 AM437X_USB2_OTGVDET_EN | AM437X_USB2_OTGSESSEND_EN,
303 .power_on = AM437X_USB2_OTGVDET_EN | AM437X_USB2_OTGSESSEND_EN,
304 .power_off = AM437X_USB2_PHY_PD | AM437X_USB2_OTG_PD,
307 static const struct usb_phy_data am654_usb2_data = {
308 .label = "am654_usb2",
309 .flags = OMAP_USB2_CALIBRATE_FALSE_DISCONNECT,
310 .mask = AM654_USB2_OTG_PD | AM654_USB2_VBUS_DET_EN |
311 AM654_USB2_VBUSVALID_DET_EN,
312 .power_on = AM654_USB2_VBUS_DET_EN | AM654_USB2_VBUSVALID_DET_EN,
313 .power_off = AM654_USB2_OTG_PD,
316 static const struct of_device_id omap_usb2_id_table[] = {
318 .compatible = "ti,omap-usb2",
319 .data = &omap_usb2_data,
322 .compatible = "ti,omap5-usb2",
323 .data = &omap5_usb2_data,
326 .compatible = "ti,dra7x-usb2",
327 .data = &dra7x_usb2_data,
330 .compatible = "ti,dra7x-usb2-phy2",
331 .data = &dra7x_usb2_phy2_data,
334 .compatible = "ti,am437x-usb2",
335 .data = &am437x_usb2_data,
338 .compatible = "ti,am654-usb2",
339 .data = &am654_usb2_data,
343 MODULE_DEVICE_TABLE(of, omap_usb2_id_table);
345 static void omap_usb2_init_errata(struct omap_usb *phy)
347 static const struct soc_device_attribute am65x_sr10_soc_devices[] = {
348 { .family = "AM65X", .revision = "SR1.0" },
353 * Errata i2075: USB2PHY: USB2PHY Charger Detect is Enabled by
354 * Default Without VBUS Presence.
356 * AM654x SR1.0 has a silicon bug due to which D+ is pulled high after
357 * POR, which could cause enumeration failure with some USB hubs.
358 * Disabling the USB2_PHY Charger Detect function will put D+
359 * into the normal state.
361 if (soc_device_match(am65x_sr10_soc_devices))
362 phy->flags |= OMAP_USB2_DISABLE_CHRG_DET;
365 static int omap_usb2_probe(struct platform_device *pdev)
367 struct omap_usb *phy;
368 struct phy *generic_phy;
369 struct phy_provider *phy_provider;
371 struct device_node *node = pdev->dev.of_node;
372 struct device_node *control_node;
373 struct platform_device *control_pdev;
374 const struct of_device_id *of_id;
375 struct usb_phy_data *phy_data;
377 of_id = of_match_device(omap_usb2_id_table, &pdev->dev);
382 phy_data = (struct usb_phy_data *)of_id->data;
384 phy = devm_kzalloc(&pdev->dev, sizeof(*phy), GFP_KERNEL);
388 otg = devm_kzalloc(&pdev->dev, sizeof(*otg), GFP_KERNEL);
392 phy->dev = &pdev->dev;
394 phy->phy.dev = phy->dev;
395 phy->phy.label = phy_data->label;
397 phy->phy.type = USB_PHY_TYPE_USB2;
398 phy->mask = phy_data->mask;
399 phy->power_on = phy_data->power_on;
400 phy->power_off = phy_data->power_off;
401 phy->flags = phy_data->flags;
403 omap_usb2_init_errata(phy);
405 phy->phy_base = devm_platform_ioremap_resource(pdev, 0);
406 if (IS_ERR(phy->phy_base))
407 return PTR_ERR(phy->phy_base);
409 phy->syscon_phy_power = syscon_regmap_lookup_by_phandle(node,
411 if (IS_ERR(phy->syscon_phy_power)) {
413 "can't get syscon-phy-power, using control device\n");
414 phy->syscon_phy_power = NULL;
416 control_node = of_parse_phandle(node, "ctrl-module", 0);
419 "Failed to get control device phandle\n");
423 control_pdev = of_find_device_by_node(control_node);
425 dev_err(&pdev->dev, "Failed to get control device\n");
428 phy->control_dev = &control_pdev->dev;
430 if (of_property_read_u32_index(node,
431 "syscon-phy-power", 1,
434 "couldn't get power reg. offset\n");
439 phy->wkupclk = devm_clk_get(phy->dev, "wkupclk");
440 if (IS_ERR(phy->wkupclk)) {
441 if (PTR_ERR(phy->wkupclk) == -EPROBE_DEFER)
442 return -EPROBE_DEFER;
444 dev_warn(&pdev->dev, "unable to get wkupclk %ld, trying old name\n",
445 PTR_ERR(phy->wkupclk));
446 phy->wkupclk = devm_clk_get(phy->dev, "usb_phy_cm_clk32k");
448 if (IS_ERR(phy->wkupclk))
449 return dev_err_probe(&pdev->dev, PTR_ERR(phy->wkupclk),
450 "unable to get usb_phy_cm_clk32k\n");
453 "found usb_phy_cm_clk32k, please fix DTS\n");
456 phy->optclk = devm_clk_get(phy->dev, "refclk");
457 if (IS_ERR(phy->optclk)) {
458 if (PTR_ERR(phy->optclk) == -EPROBE_DEFER)
459 return -EPROBE_DEFER;
461 dev_dbg(&pdev->dev, "unable to get refclk, trying old name\n");
462 phy->optclk = devm_clk_get(phy->dev, "usb_otg_ss_refclk960m");
464 if (IS_ERR(phy->optclk)) {
465 if (PTR_ERR(phy->optclk) != -EPROBE_DEFER) {
467 "unable to get usb_otg_ss_refclk960m\n");
471 "found usb_otg_ss_refclk960m, please fix DTS\n");
475 otg->set_host = omap_usb_set_host;
476 otg->set_peripheral = omap_usb_set_peripheral;
477 if (phy_data->flags & OMAP_USB2_HAS_SET_VBUS)
478 otg->set_vbus = omap_usb_set_vbus;
479 if (phy_data->flags & OMAP_USB2_HAS_START_SRP)
480 otg->start_srp = omap_usb_start_srp;
481 otg->usb_phy = &phy->phy;
483 platform_set_drvdata(pdev, phy);
484 pm_runtime_enable(phy->dev);
486 generic_phy = devm_phy_create(phy->dev, NULL, &ops);
487 if (IS_ERR(generic_phy)) {
488 pm_runtime_disable(phy->dev);
489 return PTR_ERR(generic_phy);
492 phy_set_drvdata(generic_phy, phy);
493 omap_usb_power_off(generic_phy);
495 phy_provider = devm_of_phy_provider_register(phy->dev,
496 of_phy_simple_xlate);
497 if (IS_ERR(phy_provider)) {
498 pm_runtime_disable(phy->dev);
499 return PTR_ERR(phy_provider);
502 usb_add_phy_dev(&phy->phy);
507 static void omap_usb2_remove(struct platform_device *pdev)
509 struct omap_usb *phy = platform_get_drvdata(pdev);
511 usb_remove_phy(&phy->phy);
512 pm_runtime_disable(phy->dev);
515 static struct platform_driver omap_usb2_driver = {
516 .probe = omap_usb2_probe,
517 .remove_new = omap_usb2_remove,
520 .of_match_table = omap_usb2_id_table,
524 module_platform_driver(omap_usb2_driver);
526 MODULE_ALIAS("platform:omap_usb2");
527 MODULE_AUTHOR("Texas Instruments Inc.");
528 MODULE_DESCRIPTION("OMAP USB2 phy driver");
529 MODULE_LICENSE("GPL v2");