blob: 7624f10a04740bc91b7d1d2557389f2c38d19fa6 [file] [log] [blame]
Jean-Jacques Hiblot4b127832018-12-04 11:12:59 +01001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com/
4 * Written by Jean-Jacques Hiblot <jjhiblot@ti.com>
5 */
6
7#include <common.h>
8#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06009#include <log.h>
Jean-Jacques Hiblot4b127832018-12-04 11:12:59 +010010#include <dm/device.h>
11#include <generic-phy.h>
12#include <asm/io.h>
Jean-Jacques Hiblot2bbc1bb2019-09-11 11:33:56 +020013#include <asm/arch/psc_defs.h>
Simon Glassc05ed002020-05-10 11:40:11 -060014#include <linux/delay.h>
Jean-Jacques Hiblot4b127832018-12-04 11:12:59 +010015
16/* USB PHY control register offsets */
17#define USB_PHY_CTL_UTMI 0x0000
18#define USB_PHY_CTL_PIPE 0x0004
19#define USB_PHY_CTL_PARAM_1 0x0008
20#define USB_PHY_CTL_PARAM_2 0x000c
21#define USB_PHY_CTL_CLOCK 0x0010
22#define USB_PHY_CTL_PLL 0x0014
23
24#define PHY_OTG_VBUSVLDECTSEL BIT(16)
25#define PHY_REF_SSP_EN BIT(29)
26
27struct keystone_usb_phy {
Jean-Jacques Hiblot2bbc1bb2019-09-11 11:33:56 +020028 u32 psc_domain;
Jean-Jacques Hiblot4b127832018-12-04 11:12:59 +010029 void __iomem *reg;
30};
31
32static int keystone_usb_init(struct phy *phy)
33{
34 u32 val;
Jean-Jacques Hiblot2bbc1bb2019-09-11 11:33:56 +020035 int rc;
Jean-Jacques Hiblot4b127832018-12-04 11:12:59 +010036 struct udevice *dev = phy->dev;
37 struct keystone_usb_phy *keystone = dev_get_priv(dev);
38
Jean-Jacques Hiblot2bbc1bb2019-09-11 11:33:56 +020039 /* Release USB from reset */
40 rc = psc_enable_module(keystone->psc_domain);
41 if (rc) {
42 debug("Cannot enable USB module");
43 return -rc;
44 }
45 mdelay(10);
46
Jean-Jacques Hiblot4b127832018-12-04 11:12:59 +010047 /*
48 * VBUSVLDEXTSEL has a default value of 1 in BootCfg but shouldn't.
49 * It should always be cleared because our USB PHY has an onchip VBUS
50 * analog comparator.
51 */
52 val = readl(keystone->reg + USB_PHY_CTL_CLOCK);
53 /* quit selecting the vbusvldextsel by default! */
54 val &= ~PHY_OTG_VBUSVLDECTSEL;
55 writel(val, keystone->reg + USB_PHY_CTL_CLOCK);
56
57 return 0;
58}
59
60static int keystone_usb_power_on(struct phy *phy)
61{
62 u32 val;
63 struct udevice *dev = phy->dev;
64 struct keystone_usb_phy *keystone = dev_get_priv(dev);
65
66 val = readl(keystone->reg + USB_PHY_CTL_CLOCK);
67 val |= PHY_REF_SSP_EN;
68 writel(val, keystone->reg + USB_PHY_CTL_CLOCK);
69
70 return 0;
71}
72
73static int keystone_usb_power_off(struct phy *phy)
74{
75 u32 val;
76 struct udevice *dev = phy->dev;
77 struct keystone_usb_phy *keystone = dev_get_priv(dev);
78
79 val = readl(keystone->reg + USB_PHY_CTL_CLOCK);
80 val &= ~PHY_REF_SSP_EN;
81 writel(val, keystone->reg + USB_PHY_CTL_CLOCK);
82
83 return 0;
84}
85
86static int keystone_usb_exit(struct phy *phy)
87{
Jean-Jacques Hiblot2bbc1bb2019-09-11 11:33:56 +020088 struct udevice *dev = phy->dev;
89 struct keystone_usb_phy *keystone = dev_get_priv(dev);
90
91 if (psc_disable_module(keystone->psc_domain))
92 debug("failed to disable USB module!\n");
93
Jean-Jacques Hiblot4b127832018-12-04 11:12:59 +010094 return 0;
95}
96
97static int keystone_usb_phy_probe(struct udevice *dev)
98{
Jean-Jacques Hiblot2bbc1bb2019-09-11 11:33:56 +020099 int rc;
Jean-Jacques Hiblot4b127832018-12-04 11:12:59 +0100100 struct keystone_usb_phy *keystone = dev_get_priv(dev);
101
Jean-Jacques Hiblot2bbc1bb2019-09-11 11:33:56 +0200102 rc = dev_read_u32(dev, "psc-domain", &keystone->psc_domain);
103 if (rc)
104 return rc;
105
Jean-Jacques Hiblot4b127832018-12-04 11:12:59 +0100106 keystone->reg = dev_remap_addr_index(dev, 0);
107 if (!keystone->reg) {
108 pr_err("unable to remap usb phy\n");
109 return -EINVAL;
110 }
111 return 0;
112}
113
114static const struct udevice_id keystone_usb_phy_ids[] = {
115 { .compatible = "ti,keystone-usbphy" },
116 { }
117};
118
119static struct phy_ops keystone_usb_phy_ops = {
120 .init = keystone_usb_init,
121 .power_on = keystone_usb_power_on,
122 .power_off = keystone_usb_power_off,
123 .exit = keystone_usb_exit,
124};
125
126U_BOOT_DRIVER(keystone_usb_phy) = {
127 .name = "keystone_usb_phy",
128 .id = UCLASS_PHY,
129 .of_match = keystone_usb_phy_ids,
130 .ops = &keystone_usb_phy_ops,
131 .probe = keystone_usb_phy_probe,
132 .priv_auto_alloc_size = sizeof(struct keystone_usb_phy),
133};