66a87d50512b020d6cc48c774d801f3499d2e047
[firefly-linux-kernel-4.4.55.git] / drivers / phy / phy-sun4i-usb.c
1 /*
2  * Allwinner sun4i USB phy driver
3  *
4  * Copyright (C) 2014 Hans de Goede <hdegoede@redhat.com>
5  *
6  * Based on code from
7  * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
8  *
9  * Modelled after: Samsung S5P/EXYNOS SoC series MIPI CSIS/DSIM DPHY driver
10  * Copyright (C) 2013 Samsung Electronics Co., Ltd.
11  * Author: Sylwester Nawrocki <s.nawrocki@samsung.com>
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  */
23
24 #include <linux/clk.h>
25 #include <linux/io.h>
26 #include <linux/kernel.h>
27 #include <linux/module.h>
28 #include <linux/mutex.h>
29 #include <linux/of.h>
30 #include <linux/of_address.h>
31 #include <linux/phy/phy.h>
32 #include <linux/platform_device.h>
33 #include <linux/regulator/consumer.h>
34 #include <linux/reset.h>
35
36 #define REG_ISCR                        0x00
37 #define REG_PHYCTL                      0x04
38 #define REG_PHYBIST                     0x08
39 #define REG_PHYTUNE                     0x0c
40
41 #define PHYCTL_DATA                     BIT(7)
42
43 #define SUNXI_AHB_ICHR8_EN              BIT(10)
44 #define SUNXI_AHB_INCR4_BURST_EN        BIT(9)
45 #define SUNXI_AHB_INCRX_ALIGN_EN        BIT(8)
46 #define SUNXI_ULPI_BYPASS_EN            BIT(0)
47
48 /* Common Control Bits for Both PHYs */
49 #define PHY_PLL_BW                      0x03
50 #define PHY_RES45_CAL_EN                0x0c
51
52 /* Private Control Bits for Each PHY */
53 #define PHY_TX_AMPLITUDE_TUNE           0x20
54 #define PHY_TX_SLEWRATE_TUNE            0x22
55 #define PHY_VBUSVALID_TH_SEL            0x25
56 #define PHY_PULLUP_RES_SEL              0x27
57 #define PHY_OTG_FUNC_EN                 0x28
58 #define PHY_VBUS_DET_EN                 0x29
59 #define PHY_DISCON_TH_SEL               0x2a
60
61 #define MAX_PHYS                        3
62
63 struct sun4i_usb_phy_data {
64         struct clk *clk;
65         void __iomem *base;
66         struct mutex mutex;
67         int num_phys;
68         u32 disc_thresh;
69         struct sun4i_usb_phy {
70                 struct phy *phy;
71                 void __iomem *pmu;
72                 struct regulator *vbus;
73                 struct reset_control *reset;
74                 int index;
75         } phys[MAX_PHYS];
76 };
77
78 #define to_sun4i_usb_phy_data(phy) \
79         container_of((phy), struct sun4i_usb_phy_data, phys[(phy)->index])
80
81 static void sun4i_usb_phy_write(struct sun4i_usb_phy *phy, u32 addr, u32 data,
82                                 int len)
83 {
84         struct sun4i_usb_phy_data *phy_data = to_sun4i_usb_phy_data(phy);
85         u32 temp, usbc_bit = BIT(phy->index * 2);
86         int i;
87
88         mutex_lock(&phy_data->mutex);
89
90         for (i = 0; i < len; i++) {
91                 temp = readl(phy_data->base + REG_PHYCTL);
92
93                 /* clear the address portion */
94                 temp &= ~(0xff << 8);
95
96                 /* set the address */
97                 temp |= ((addr + i) << 8);
98                 writel(temp, phy_data->base + REG_PHYCTL);
99
100                 /* set the data bit and clear usbc bit*/
101                 temp = readb(phy_data->base + REG_PHYCTL);
102                 if (data & 0x1)
103                         temp |= PHYCTL_DATA;
104                 else
105                         temp &= ~PHYCTL_DATA;
106                 temp &= ~usbc_bit;
107                 writeb(temp, phy_data->base + REG_PHYCTL);
108
109                 /* pulse usbc_bit */
110                 temp = readb(phy_data->base + REG_PHYCTL);
111                 temp |= usbc_bit;
112                 writeb(temp, phy_data->base + REG_PHYCTL);
113
114                 temp = readb(phy_data->base + REG_PHYCTL);
115                 temp &= ~usbc_bit;
116                 writeb(temp, phy_data->base + REG_PHYCTL);
117
118                 data >>= 1;
119         }
120         mutex_unlock(&phy_data->mutex);
121 }
122
123 static void sun4i_usb_phy_passby(struct sun4i_usb_phy *phy, int enable)
124 {
125         u32 bits, reg_value;
126
127         if (!phy->pmu)
128                 return;
129
130         bits = SUNXI_AHB_ICHR8_EN | SUNXI_AHB_INCR4_BURST_EN |
131                 SUNXI_AHB_INCRX_ALIGN_EN | SUNXI_ULPI_BYPASS_EN;
132
133         reg_value = readl(phy->pmu);
134
135         if (enable)
136                 reg_value |= bits;
137         else
138                 reg_value &= ~bits;
139
140         writel(reg_value, phy->pmu);
141 }
142
143 static int sun4i_usb_phy_init(struct phy *_phy)
144 {
145         struct sun4i_usb_phy *phy = phy_get_drvdata(_phy);
146         struct sun4i_usb_phy_data *data = to_sun4i_usb_phy_data(phy);
147         int ret;
148
149         ret = clk_prepare_enable(data->clk);
150         if (ret)
151                 return ret;
152
153         ret = reset_control_deassert(phy->reset);
154         if (ret) {
155                 clk_disable_unprepare(data->clk);
156                 return ret;
157         }
158
159         /* Adjust PHY's magnitude and rate */
160         sun4i_usb_phy_write(phy, PHY_TX_AMPLITUDE_TUNE, 0x14, 5);
161
162         /* Disconnect threshold adjustment */
163         sun4i_usb_phy_write(phy, PHY_DISCON_TH_SEL, data->disc_thresh, 2);
164
165         sun4i_usb_phy_passby(phy, 1);
166
167         return 0;
168 }
169
170 static int sun4i_usb_phy_exit(struct phy *_phy)
171 {
172         struct sun4i_usb_phy *phy = phy_get_drvdata(_phy);
173         struct sun4i_usb_phy_data *data = to_sun4i_usb_phy_data(phy);
174
175         sun4i_usb_phy_passby(phy, 0);
176         reset_control_assert(phy->reset);
177         clk_disable_unprepare(data->clk);
178
179         return 0;
180 }
181
182 static int sun4i_usb_phy_power_on(struct phy *_phy)
183 {
184         struct sun4i_usb_phy *phy = phy_get_drvdata(_phy);
185         int ret = 0;
186
187         if (phy->vbus)
188                 ret = regulator_enable(phy->vbus);
189
190         return ret;
191 }
192
193 static int sun4i_usb_phy_power_off(struct phy *_phy)
194 {
195         struct sun4i_usb_phy *phy = phy_get_drvdata(_phy);
196
197         if (phy->vbus)
198                 regulator_disable(phy->vbus);
199
200         return 0;
201 }
202
203 static struct phy_ops sun4i_usb_phy_ops = {
204         .init           = sun4i_usb_phy_init,
205         .exit           = sun4i_usb_phy_exit,
206         .power_on       = sun4i_usb_phy_power_on,
207         .power_off      = sun4i_usb_phy_power_off,
208         .owner          = THIS_MODULE,
209 };
210
211 static struct phy *sun4i_usb_phy_xlate(struct device *dev,
212                                         struct of_phandle_args *args)
213 {
214         struct sun4i_usb_phy_data *data = dev_get_drvdata(dev);
215
216         if (WARN_ON(args->args[0] == 0 || args->args[0] >= data->num_phys))
217                 return ERR_PTR(-ENODEV);
218
219         return data->phys[args->args[0]].phy;
220 }
221
222 static int sun4i_usb_phy_probe(struct platform_device *pdev)
223 {
224         struct sun4i_usb_phy_data *data;
225         struct device *dev = &pdev->dev;
226         struct device_node *np = dev->of_node;
227         struct phy_provider *phy_provider;
228         struct resource *res;
229         int i;
230
231         data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
232         if (!data)
233                 return -ENOMEM;
234
235         mutex_init(&data->mutex);
236
237         if (of_device_is_compatible(np, "allwinner,sun5i-a13-usb-phy"))
238                 data->num_phys = 2;
239         else
240                 data->num_phys = 3;
241
242         if (of_device_is_compatible(np, "allwinner,sun4i-a10-usb-phy"))
243                 data->disc_thresh = 3;
244         else
245                 data->disc_thresh = 2;
246
247         res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "phy_ctrl");
248         data->base = devm_ioremap_resource(dev, res);
249         if (IS_ERR(data->base))
250                 return PTR_ERR(data->base);
251
252         data->clk = devm_clk_get(dev, "usb_phy");
253         if (IS_ERR(data->clk)) {
254                 dev_err(dev, "could not get usb_phy clock\n");
255                 return PTR_ERR(data->clk);
256         }
257
258         /* Skip 0, 0 is the phy for otg which is not yet supported. */
259         for (i = 1; i < data->num_phys; i++) {
260                 struct sun4i_usb_phy *phy = data->phys + i;
261                 char name[16];
262
263                 snprintf(name, sizeof(name), "usb%d_vbus", i);
264                 phy->vbus = devm_regulator_get_optional(dev, name);
265                 if (IS_ERR(phy->vbus)) {
266                         if (PTR_ERR(phy->vbus) == -EPROBE_DEFER)
267                                 return -EPROBE_DEFER;
268                         phy->vbus = NULL;
269                 }
270
271                 snprintf(name, sizeof(name), "usb%d_reset", i);
272                 phy->reset = devm_reset_control_get(dev, name);
273                 if (IS_ERR(phy->reset)) {
274                         dev_err(dev, "failed to get reset %s\n", name);
275                         return PTR_ERR(phy->reset);
276                 }
277
278                 if (i) { /* No pmu for usbc0 */
279                         snprintf(name, sizeof(name), "pmu%d", i);
280                         res = platform_get_resource_byname(pdev,
281                                                         IORESOURCE_MEM, name);
282                         phy->pmu = devm_ioremap_resource(dev, res);
283                         if (IS_ERR(phy->pmu))
284                                 return PTR_ERR(phy->pmu);
285                 }
286
287                 phy->phy = devm_phy_create(dev, &sun4i_usb_phy_ops, NULL);
288                 if (IS_ERR(phy->phy)) {
289                         dev_err(dev, "failed to create PHY %d\n", i);
290                         return PTR_ERR(phy->phy);
291                 }
292
293                 phy->index = i;
294                 phy_set_drvdata(phy->phy, &data->phys[i]);
295         }
296
297         dev_set_drvdata(dev, data);
298         phy_provider = devm_of_phy_provider_register(dev, sun4i_usb_phy_xlate);
299         if (IS_ERR(phy_provider))
300                 return PTR_ERR(phy_provider);
301
302         return 0;
303 }
304
305 static const struct of_device_id sun4i_usb_phy_of_match[] = {
306         { .compatible = "allwinner,sun4i-a10-usb-phy" },
307         { .compatible = "allwinner,sun5i-a13-usb-phy" },
308         { .compatible = "allwinner,sun7i-a20-usb-phy" },
309         { },
310 };
311 MODULE_DEVICE_TABLE(of, sun4i_usb_phy_of_match);
312
313 static struct platform_driver sun4i_usb_phy_driver = {
314         .probe  = sun4i_usb_phy_probe,
315         .driver = {
316                 .of_match_table = sun4i_usb_phy_of_match,
317                 .name  = "sun4i-usb-phy",
318                 .owner = THIS_MODULE,
319         }
320 };
321 module_platform_driver(sun4i_usb_phy_driver);
322
323 MODULE_DESCRIPTION("Allwinner sun4i USB phy driver");
324 MODULE_AUTHOR("Hans de Goede <hdegoede@redhat.com>");
325 MODULE_LICENSE("GPL v2");