xref: /openbmc/linux/drivers/usb/host/ehci-st.c (revision 65ab0dba)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * ST EHCI driver
4  *
5  * Copyright (C) 2014 STMicroelectronics – All Rights Reserved
6  *
7  * Author: Peter Griffin <peter.griffin@linaro.org>
8  *
9  * Derived from ehci-platform.c
10  */
11 
12 #include <linux/clk.h>
13 #include <linux/dma-mapping.h>
14 #include <linux/err.h>
15 #include <linux/kernel.h>
16 #include <linux/hrtimer.h>
17 #include <linux/io.h>
18 #include <linux/module.h>
19 #include <linux/of.h>
20 #include <linux/phy/phy.h>
21 #include <linux/platform_device.h>
22 #include <linux/reset.h>
23 #include <linux/usb.h>
24 #include <linux/usb/hcd.h>
25 #include <linux/usb/ehci_pdriver.h>
26 #include <linux/pinctrl/consumer.h>
27 
28 #include "ehci.h"
29 
30 #define USB_MAX_CLKS 3
31 
32 struct st_ehci_platform_priv {
33 	struct clk *clks[USB_MAX_CLKS];
34 	struct clk *clk48;
35 	struct reset_control *rst;
36 	struct reset_control *pwr;
37 	struct phy *phy;
38 };
39 
40 #define DRIVER_DESC "EHCI STMicroelectronics driver"
41 
42 #define hcd_to_ehci_priv(h) \
43 	((struct st_ehci_platform_priv *)hcd_to_ehci(h)->priv)
44 
45 static const char hcd_name[] = "ehci-st";
46 
47 #define EHCI_CAPS_SIZE 0x10
48 #define AHB2STBUS_INSREG01 (EHCI_CAPS_SIZE + 0x84)
49 
50 static int st_ehci_platform_reset(struct usb_hcd *hcd)
51 {
52 	struct platform_device *pdev = to_platform_device(hcd->self.controller);
53 	struct usb_ehci_pdata *pdata = dev_get_platdata(&pdev->dev);
54 	struct ehci_hcd *ehci = hcd_to_ehci(hcd);
55 	u32 threshold;
56 
57 	/* Set EHCI packet buffer IN/OUT threshold to 128 bytes */
58 	threshold = 128 | (128 << 16);
59 	writel(threshold, hcd->regs + AHB2STBUS_INSREG01);
60 
61 	ehci->caps = hcd->regs + pdata->caps_offset;
62 	return ehci_setup(hcd);
63 }
64 
65 static int st_ehci_platform_power_on(struct platform_device *dev)
66 {
67 	struct usb_hcd *hcd = platform_get_drvdata(dev);
68 	struct st_ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
69 	int clk, ret;
70 
71 	ret = reset_control_deassert(priv->pwr);
72 	if (ret)
73 		return ret;
74 
75 	ret = reset_control_deassert(priv->rst);
76 	if (ret)
77 		goto err_assert_power;
78 
79 	/* some SoCs don't have a dedicated 48Mhz clock, but those that do
80 	   need the rate to be explicitly set */
81 	if (priv->clk48) {
82 		ret = clk_set_rate(priv->clk48, 48000000);
83 		if (ret)
84 			goto err_assert_reset;
85 	}
86 
87 	for (clk = 0; clk < USB_MAX_CLKS && priv->clks[clk]; clk++) {
88 		ret = clk_prepare_enable(priv->clks[clk]);
89 		if (ret)
90 			goto err_disable_clks;
91 	}
92 
93 	ret = phy_init(priv->phy);
94 	if (ret)
95 		goto err_disable_clks;
96 
97 	ret = phy_power_on(priv->phy);
98 	if (ret)
99 		goto err_exit_phy;
100 
101 	return 0;
102 
103 err_exit_phy:
104 	phy_exit(priv->phy);
105 err_disable_clks:
106 	while (--clk >= 0)
107 		clk_disable_unprepare(priv->clks[clk]);
108 err_assert_reset:
109 	reset_control_assert(priv->rst);
110 err_assert_power:
111 	reset_control_assert(priv->pwr);
112 
113 	return ret;
114 }
115 
116 static void st_ehci_platform_power_off(struct platform_device *dev)
117 {
118 	struct usb_hcd *hcd = platform_get_drvdata(dev);
119 	struct st_ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
120 	int clk;
121 
122 	reset_control_assert(priv->pwr);
123 
124 	reset_control_assert(priv->rst);
125 
126 	phy_power_off(priv->phy);
127 
128 	phy_exit(priv->phy);
129 
130 	for (clk = USB_MAX_CLKS - 1; clk >= 0; clk--)
131 		if (priv->clks[clk])
132 			clk_disable_unprepare(priv->clks[clk]);
133 
134 }
135 
136 static struct hc_driver __read_mostly ehci_platform_hc_driver;
137 
138 static const struct ehci_driver_overrides platform_overrides __initconst = {
139 	.reset =		st_ehci_platform_reset,
140 	.extra_priv_size =	sizeof(struct st_ehci_platform_priv),
141 };
142 
143 static struct usb_ehci_pdata ehci_platform_defaults = {
144 	.power_on =		st_ehci_platform_power_on,
145 	.power_suspend =	st_ehci_platform_power_off,
146 	.power_off =		st_ehci_platform_power_off,
147 };
148 
149 static int st_ehci_platform_probe(struct platform_device *dev)
150 {
151 	struct usb_hcd *hcd;
152 	struct resource *res_mem;
153 	struct usb_ehci_pdata *pdata = &ehci_platform_defaults;
154 	struct st_ehci_platform_priv *priv;
155 	int err, irq, clk = 0;
156 
157 	if (usb_disabled())
158 		return -ENODEV;
159 
160 	irq = platform_get_irq(dev, 0);
161 	if (irq < 0) {
162 		dev_err(&dev->dev, "no irq provided");
163 		return irq;
164 	}
165 	res_mem = platform_get_resource(dev, IORESOURCE_MEM, 0);
166 	if (!res_mem) {
167 		dev_err(&dev->dev, "no memory resource provided");
168 		return -ENXIO;
169 	}
170 
171 	hcd = usb_create_hcd(&ehci_platform_hc_driver, &dev->dev,
172 			     dev_name(&dev->dev));
173 	if (!hcd)
174 		return -ENOMEM;
175 
176 	platform_set_drvdata(dev, hcd);
177 	dev->dev.platform_data = pdata;
178 	priv = hcd_to_ehci_priv(hcd);
179 
180 	priv->phy = devm_phy_get(&dev->dev, "usb");
181 	if (IS_ERR(priv->phy)) {
182 		err = PTR_ERR(priv->phy);
183 		goto err_put_hcd;
184 	}
185 
186 	for (clk = 0; clk < USB_MAX_CLKS; clk++) {
187 		priv->clks[clk] = of_clk_get(dev->dev.of_node, clk);
188 		if (IS_ERR(priv->clks[clk])) {
189 			err = PTR_ERR(priv->clks[clk]);
190 			if (err == -EPROBE_DEFER)
191 				goto err_put_clks;
192 			priv->clks[clk] = NULL;
193 			break;
194 		}
195 	}
196 
197 	/* some SoCs don't have a dedicated 48Mhz clock, but those that
198 	   do need the rate to be explicitly set */
199 	priv->clk48 = devm_clk_get(&dev->dev, "clk48");
200 	if (IS_ERR(priv->clk48)) {
201 		dev_info(&dev->dev, "48MHz clk not found\n");
202 		priv->clk48 = NULL;
203 	}
204 
205 	priv->pwr =
206 		devm_reset_control_get_optional_shared(&dev->dev, "power");
207 	if (IS_ERR(priv->pwr)) {
208 		err = PTR_ERR(priv->pwr);
209 		if (err == -EPROBE_DEFER)
210 			goto err_put_clks;
211 		priv->pwr = NULL;
212 	}
213 
214 	priv->rst =
215 		devm_reset_control_get_optional_shared(&dev->dev, "softreset");
216 	if (IS_ERR(priv->rst)) {
217 		err = PTR_ERR(priv->rst);
218 		if (err == -EPROBE_DEFER)
219 			goto err_put_clks;
220 		priv->rst = NULL;
221 	}
222 
223 	if (pdata->power_on) {
224 		err = pdata->power_on(dev);
225 		if (err < 0)
226 			goto err_put_clks;
227 	}
228 
229 	hcd->rsrc_start = res_mem->start;
230 	hcd->rsrc_len = resource_size(res_mem);
231 
232 	hcd->regs = devm_ioremap_resource(&dev->dev, res_mem);
233 	if (IS_ERR(hcd->regs)) {
234 		err = PTR_ERR(hcd->regs);
235 		goto err_put_clks;
236 	}
237 
238 	err = usb_add_hcd(hcd, irq, IRQF_SHARED);
239 	if (err)
240 		goto err_put_clks;
241 
242 	device_wakeup_enable(hcd->self.controller);
243 	platform_set_drvdata(dev, hcd);
244 
245 	return err;
246 
247 err_put_clks:
248 	while (--clk >= 0)
249 		clk_put(priv->clks[clk]);
250 err_put_hcd:
251 	if (pdata == &ehci_platform_defaults)
252 		dev->dev.platform_data = NULL;
253 
254 	usb_put_hcd(hcd);
255 
256 	return err;
257 }
258 
259 static int st_ehci_platform_remove(struct platform_device *dev)
260 {
261 	struct usb_hcd *hcd = platform_get_drvdata(dev);
262 	struct usb_ehci_pdata *pdata = dev_get_platdata(&dev->dev);
263 	struct st_ehci_platform_priv *priv = hcd_to_ehci_priv(hcd);
264 	int clk;
265 
266 	usb_remove_hcd(hcd);
267 
268 	if (pdata->power_off)
269 		pdata->power_off(dev);
270 
271 	for (clk = 0; clk < USB_MAX_CLKS && priv->clks[clk]; clk++)
272 		clk_put(priv->clks[clk]);
273 
274 	usb_put_hcd(hcd);
275 
276 	if (pdata == &ehci_platform_defaults)
277 		dev->dev.platform_data = NULL;
278 
279 	return 0;
280 }
281 
282 #ifdef CONFIG_PM_SLEEP
283 
284 static int st_ehci_suspend(struct device *dev)
285 {
286 	struct usb_hcd *hcd = dev_get_drvdata(dev);
287 	struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
288 	struct platform_device *pdev = to_platform_device(dev);
289 	bool do_wakeup = device_may_wakeup(dev);
290 	int ret;
291 
292 	ret = ehci_suspend(hcd, do_wakeup);
293 	if (ret)
294 		return ret;
295 
296 	if (pdata->power_suspend)
297 		pdata->power_suspend(pdev);
298 
299 	pinctrl_pm_select_sleep_state(dev);
300 
301 	return ret;
302 }
303 
304 static int st_ehci_resume(struct device *dev)
305 {
306 	struct usb_hcd *hcd = dev_get_drvdata(dev);
307 	struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
308 	struct platform_device *pdev = to_platform_device(dev);
309 	int err;
310 
311 	pinctrl_pm_select_default_state(dev);
312 
313 	if (pdata->power_on) {
314 		err = pdata->power_on(pdev);
315 		if (err < 0)
316 			return err;
317 	}
318 
319 	ehci_resume(hcd, false);
320 	return 0;
321 }
322 
323 static SIMPLE_DEV_PM_OPS(st_ehci_pm_ops, st_ehci_suspend, st_ehci_resume);
324 
325 #endif /* CONFIG_PM_SLEEP */
326 
327 static const struct of_device_id st_ehci_ids[] = {
328 	{ .compatible = "st,st-ehci-300x", },
329 	{ /* sentinel */ }
330 };
331 MODULE_DEVICE_TABLE(of, st_ehci_ids);
332 
333 static struct platform_driver ehci_platform_driver = {
334 	.probe		= st_ehci_platform_probe,
335 	.remove		= st_ehci_platform_remove,
336 	.shutdown	= usb_hcd_platform_shutdown,
337 	.driver		= {
338 		.name	= "st-ehci",
339 #ifdef CONFIG_PM_SLEEP
340 		.pm	= &st_ehci_pm_ops,
341 #endif
342 		.of_match_table = st_ehci_ids,
343 	}
344 };
345 
346 static int __init ehci_platform_init(void)
347 {
348 	if (usb_disabled())
349 		return -ENODEV;
350 
351 	pr_info("%s: " DRIVER_DESC "\n", hcd_name);
352 
353 	ehci_init_driver(&ehci_platform_hc_driver, &platform_overrides);
354 	return platform_driver_register(&ehci_platform_driver);
355 }
356 module_init(ehci_platform_init);
357 
358 static void __exit ehci_platform_cleanup(void)
359 {
360 	platform_driver_unregister(&ehci_platform_driver);
361 }
362 module_exit(ehci_platform_cleanup);
363 
364 MODULE_DESCRIPTION(DRIVER_DESC);
365 MODULE_AUTHOR("Peter Griffin <peter.griffin@linaro.org>");
366 MODULE_LICENSE("GPL");
367