4 * Copyright (C) 2014 STMicroelectronics – All Rights Reserved
6 * Author: Peter Griffin <peter.griffin@linaro.org>
8 * Derived from ehci-platform.c
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <linux/clk.h>
16 #include <linux/dma-mapping.h>
17 #include <linux/err.h>
18 #include <linux/kernel.h>
19 #include <linux/hrtimer.h>
21 #include <linux/module.h>
23 #include <linux/phy/phy.h>
24 #include <linux/platform_device.h>
25 #include <linux/reset.h>
26 #include <linux/usb.h>
27 #include <linux/usb/hcd.h>
28 #include <linux/usb/ehci_pdriver.h>
32 #define USB_MAX_CLKS 3
34 struct st_ehci_platform_priv
{
35 struct clk
*clks
[USB_MAX_CLKS
];
37 struct reset_control
*rst
;
38 struct reset_control
*pwr
;
42 #define DRIVER_DESC "EHCI STMicroelectronics driver"
44 #define hcd_to_ehci_priv(h) \
45 ((struct st_ehci_platform_priv *)hcd_to_ehci(h)->priv)
47 static const char hcd_name
[] = "ehci-st";
49 #define EHCI_CAPS_SIZE 0x10
50 #define AHB2STBUS_INSREG01 (EHCI_CAPS_SIZE + 0x84)
52 static int st_ehci_platform_reset(struct usb_hcd
*hcd
)
54 struct platform_device
*pdev
= to_platform_device(hcd
->self
.controller
);
55 struct usb_ehci_pdata
*pdata
= dev_get_platdata(&pdev
->dev
);
56 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
59 /* Set EHCI packet buffer IN/OUT threshold to 128 bytes */
60 threshold
= 128 | (128 << 16);
61 writel(threshold
, hcd
->regs
+ AHB2STBUS_INSREG01
);
63 ehci
->caps
= hcd
->regs
+ pdata
->caps_offset
;
64 return ehci_setup(hcd
);
67 static int st_ehci_platform_power_on(struct platform_device
*dev
)
69 struct usb_hcd
*hcd
= platform_get_drvdata(dev
);
70 struct st_ehci_platform_priv
*priv
= hcd_to_ehci_priv(hcd
);
73 ret
= reset_control_deassert(priv
->pwr
);
77 ret
= reset_control_deassert(priv
->rst
);
79 goto err_assert_power
;
81 /* some SoCs don't have a dedicated 48Mhz clock, but those that do
82 need the rate to be explicitly set */
84 ret
= clk_set_rate(priv
->clk48
, 48000000);
86 goto err_assert_reset
;
89 for (clk
= 0; clk
< USB_MAX_CLKS
&& priv
->clks
[clk
]; clk
++) {
90 ret
= clk_prepare_enable(priv
->clks
[clk
]);
92 goto err_disable_clks
;
95 ret
= phy_init(priv
->phy
);
97 goto err_disable_clks
;
99 ret
= phy_power_on(priv
->phy
);
109 clk_disable_unprepare(priv
->clks
[clk
]);
111 reset_control_assert(priv
->rst
);
113 reset_control_assert(priv
->pwr
);
118 static void st_ehci_platform_power_off(struct platform_device
*dev
)
120 struct usb_hcd
*hcd
= platform_get_drvdata(dev
);
121 struct st_ehci_platform_priv
*priv
= hcd_to_ehci_priv(hcd
);
124 reset_control_assert(priv
->pwr
);
126 reset_control_assert(priv
->rst
);
128 phy_power_off(priv
->phy
);
132 for (clk
= USB_MAX_CLKS
- 1; clk
>= 0; clk
--)
134 clk_disable_unprepare(priv
->clks
[clk
]);
138 static struct hc_driver __read_mostly ehci_platform_hc_driver
;
140 static const struct ehci_driver_overrides platform_overrides __initconst
= {
141 .reset
= st_ehci_platform_reset
,
142 .extra_priv_size
= sizeof(struct st_ehci_platform_priv
),
145 static struct usb_ehci_pdata ehci_platform_defaults
= {
146 .power_on
= st_ehci_platform_power_on
,
147 .power_suspend
= st_ehci_platform_power_off
,
148 .power_off
= st_ehci_platform_power_off
,
151 static int st_ehci_platform_probe(struct platform_device
*dev
)
154 struct resource
*res_mem
;
155 struct usb_ehci_pdata
*pdata
= &ehci_platform_defaults
;
156 struct st_ehci_platform_priv
*priv
;
157 struct ehci_hcd
*ehci
;
158 int err
, irq
, clk
= 0;
163 irq
= platform_get_irq(dev
, 0);
165 dev_err(&dev
->dev
, "no irq provided");
168 res_mem
= platform_get_resource(dev
, IORESOURCE_MEM
, 0);
170 dev_err(&dev
->dev
, "no memory resource provided");
174 hcd
= usb_create_hcd(&ehci_platform_hc_driver
, &dev
->dev
,
175 dev_name(&dev
->dev
));
179 platform_set_drvdata(dev
, hcd
);
180 dev
->dev
.platform_data
= pdata
;
181 priv
= hcd_to_ehci_priv(hcd
);
182 ehci
= hcd_to_ehci(hcd
);
184 priv
->phy
= devm_phy_get(&dev
->dev
, "usb");
185 if (IS_ERR(priv
->phy
)) {
186 err
= PTR_ERR(priv
->phy
);
190 for (clk
= 0; clk
< USB_MAX_CLKS
; clk
++) {
191 priv
->clks
[clk
] = of_clk_get(dev
->dev
.of_node
, clk
);
192 if (IS_ERR(priv
->clks
[clk
])) {
193 err
= PTR_ERR(priv
->clks
[clk
]);
194 if (err
== -EPROBE_DEFER
)
196 priv
->clks
[clk
] = NULL
;
201 /* some SoCs don't have a dedicated 48Mhz clock, but those that
202 do need the rate to be explicitly set */
203 priv
->clk48
= devm_clk_get(&dev
->dev
, "clk48");
204 if (IS_ERR(priv
->clk48
)) {
205 dev_info(&dev
->dev
, "48MHz clk not found\n");
210 devm_reset_control_get_optional_shared(&dev
->dev
, "power");
211 if (IS_ERR(priv
->pwr
)) {
212 err
= PTR_ERR(priv
->pwr
);
213 if (err
== -EPROBE_DEFER
)
219 devm_reset_control_get_optional_shared(&dev
->dev
, "softreset");
220 if (IS_ERR(priv
->rst
)) {
221 err
= PTR_ERR(priv
->rst
);
222 if (err
== -EPROBE_DEFER
)
227 if (pdata
->power_on
) {
228 err
= pdata
->power_on(dev
);
233 hcd
->rsrc_start
= res_mem
->start
;
234 hcd
->rsrc_len
= resource_size(res_mem
);
236 hcd
->regs
= devm_ioremap_resource(&dev
->dev
, res_mem
);
237 if (IS_ERR(hcd
->regs
)) {
238 err
= PTR_ERR(hcd
->regs
);
242 err
= usb_add_hcd(hcd
, irq
, IRQF_SHARED
);
246 device_wakeup_enable(hcd
->self
.controller
);
247 platform_set_drvdata(dev
, hcd
);
253 clk_put(priv
->clks
[clk
]);
255 if (pdata
== &ehci_platform_defaults
)
256 dev
->dev
.platform_data
= NULL
;
263 static int st_ehci_platform_remove(struct platform_device
*dev
)
265 struct usb_hcd
*hcd
= platform_get_drvdata(dev
);
266 struct usb_ehci_pdata
*pdata
= dev_get_platdata(&dev
->dev
);
267 struct st_ehci_platform_priv
*priv
= hcd_to_ehci_priv(hcd
);
272 if (pdata
->power_off
)
273 pdata
->power_off(dev
);
275 for (clk
= 0; clk
< USB_MAX_CLKS
&& priv
->clks
[clk
]; clk
++)
276 clk_put(priv
->clks
[clk
]);
280 if (pdata
== &ehci_platform_defaults
)
281 dev
->dev
.platform_data
= NULL
;
286 #ifdef CONFIG_PM_SLEEP
288 static int st_ehci_suspend(struct device
*dev
)
290 struct usb_hcd
*hcd
= dev_get_drvdata(dev
);
291 struct usb_ehci_pdata
*pdata
= dev_get_platdata(dev
);
292 struct platform_device
*pdev
= to_platform_device(dev
);
293 bool do_wakeup
= device_may_wakeup(dev
);
296 ret
= ehci_suspend(hcd
, do_wakeup
);
300 if (pdata
->power_suspend
)
301 pdata
->power_suspend(pdev
);
303 pinctrl_pm_select_sleep_state(dev
);
308 static int st_ehci_resume(struct device
*dev
)
310 struct usb_hcd
*hcd
= dev_get_drvdata(dev
);
311 struct usb_ehci_pdata
*pdata
= dev_get_platdata(dev
);
312 struct platform_device
*pdev
= to_platform_device(dev
);
315 pinctrl_pm_select_default_state(dev
);
317 if (pdata
->power_on
) {
318 err
= pdata
->power_on(pdev
);
323 ehci_resume(hcd
, false);
327 static SIMPLE_DEV_PM_OPS(st_ehci_pm_ops
, st_ehci_suspend
, st_ehci_resume
);
329 #endif /* CONFIG_PM_SLEEP */
331 static const struct of_device_id st_ehci_ids
[] = {
332 { .compatible
= "st,st-ehci-300x", },
335 MODULE_DEVICE_TABLE(of
, st_ehci_ids
);
337 static struct platform_driver ehci_platform_driver
= {
338 .probe
= st_ehci_platform_probe
,
339 .remove
= st_ehci_platform_remove
,
340 .shutdown
= usb_hcd_platform_shutdown
,
343 #ifdef CONFIG_PM_SLEEP
344 .pm
= &st_ehci_pm_ops
,
346 .of_match_table
= st_ehci_ids
,
350 static int __init
ehci_platform_init(void)
355 pr_info("%s: " DRIVER_DESC
"\n", hcd_name
);
357 ehci_init_driver(&ehci_platform_hc_driver
, &platform_overrides
);
358 return platform_driver_register(&ehci_platform_driver
);
360 module_init(ehci_platform_init
);
362 static void __exit
ehci_platform_cleanup(void)
364 platform_driver_unregister(&ehci_platform_driver
);
366 module_exit(ehci_platform_cleanup
);
368 MODULE_DESCRIPTION(DRIVER_DESC
);
369 MODULE_AUTHOR("Peter Griffin <peter.griffin@linaro.org>");
370 MODULE_LICENSE("GPL");