Loading...
1/*
2* OHCI HCD (Host Controller Driver) for USB.
3*
4* Copyright (C) 2010 ST Microelectronics.
5* Deepak Sikri<deepak.sikri@st.com>
6*
7* Based on various ohci-*.c drivers
8*
9* This file is licensed under the terms of the GNU General Public
10* License version 2. This program is licensed "as is" without any
11* warranty of any kind, whether express or implied.
12*/
13
14#include <linux/signal.h>
15#include <linux/platform_device.h>
16#include <linux/clk.h>
17
18struct spear_ohci {
19 struct ohci_hcd ohci;
20 struct clk *clk;
21};
22
23#define to_spear_ohci(hcd) (struct spear_ohci *)hcd_to_ohci(hcd)
24
25static void spear_start_ohci(struct spear_ohci *ohci)
26{
27 clk_enable(ohci->clk);
28}
29
30static void spear_stop_ohci(struct spear_ohci *ohci)
31{
32 clk_disable(ohci->clk);
33}
34
35static int __devinit ohci_spear_start(struct usb_hcd *hcd)
36{
37 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
38 int ret;
39
40 ret = ohci_init(ohci);
41 if (ret < 0)
42 return ret;
43 ohci->regs = hcd->regs;
44
45 ret = ohci_run(ohci);
46 if (ret < 0) {
47 dev_err(hcd->self.controller, "can't start\n");
48 ohci_stop(hcd);
49 return ret;
50 }
51
52 create_debug_files(ohci);
53
54#ifdef DEBUG
55 ohci_dump(ohci, 1);
56#endif
57 return 0;
58}
59
60static const struct hc_driver ohci_spear_hc_driver = {
61 .description = hcd_name,
62 .product_desc = "SPEAr OHCI",
63 .hcd_priv_size = sizeof(struct spear_ohci),
64
65 /* generic hardware linkage */
66 .irq = ohci_irq,
67 .flags = HCD_USB11 | HCD_MEMORY,
68
69 /* basic lifecycle operations */
70 .start = ohci_spear_start,
71 .stop = ohci_stop,
72 .shutdown = ohci_shutdown,
73#ifdef CONFIG_PM
74 .bus_suspend = ohci_bus_suspend,
75 .bus_resume = ohci_bus_resume,
76#endif
77
78 /* managing i/o requests and associated device resources */
79 .urb_enqueue = ohci_urb_enqueue,
80 .urb_dequeue = ohci_urb_dequeue,
81 .endpoint_disable = ohci_endpoint_disable,
82
83 /* scheduling support */
84 .get_frame_number = ohci_get_frame,
85
86 /* root hub support */
87 .hub_status_data = ohci_hub_status_data,
88 .hub_control = ohci_hub_control,
89
90 .start_port_reset = ohci_start_port_reset,
91};
92
93static int spear_ohci_hcd_drv_probe(struct platform_device *pdev)
94{
95 const struct hc_driver *driver = &ohci_spear_hc_driver;
96 struct usb_hcd *hcd = NULL;
97 struct clk *usbh_clk;
98 struct spear_ohci *ohci_p;
99 struct resource *res;
100 int retval, irq;
101 int *pdata = pdev->dev.platform_data;
102 char clk_name[20] = "usbh_clk";
103
104 if (pdata == NULL)
105 return -EFAULT;
106
107 irq = platform_get_irq(pdev, 0);
108 if (irq < 0) {
109 retval = irq;
110 goto fail_irq_get;
111 }
112
113 if (*pdata >= 0)
114 sprintf(clk_name, "usbh.%01d_clk", *pdata);
115
116 usbh_clk = clk_get(NULL, clk_name);
117 if (IS_ERR(usbh_clk)) {
118 dev_err(&pdev->dev, "Error getting interface clock\n");
119 retval = PTR_ERR(usbh_clk);
120 goto fail_get_usbh_clk;
121 }
122
123 hcd = usb_create_hcd(driver, &pdev->dev, dev_name(&pdev->dev));
124 if (!hcd) {
125 retval = -ENOMEM;
126 goto fail_create_hcd;
127 }
128
129 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
130 if (!res) {
131 retval = -ENODEV;
132 goto fail_request_resource;
133 }
134
135 hcd->rsrc_start = pdev->resource[0].start;
136 hcd->rsrc_len = resource_size(res);
137 if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) {
138 dev_dbg(&pdev->dev, "request_mem_region failed\n");
139 retval = -EBUSY;
140 goto fail_request_resource;
141 }
142
143 hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len);
144 if (!hcd->regs) {
145 dev_dbg(&pdev->dev, "ioremap failed\n");
146 retval = -ENOMEM;
147 goto fail_ioremap;
148 }
149
150 ohci_p = (struct spear_ohci *)hcd_to_ohci(hcd);
151 ohci_p->clk = usbh_clk;
152 spear_start_ohci(ohci_p);
153 ohci_hcd_init(hcd_to_ohci(hcd));
154
155 retval = usb_add_hcd(hcd, platform_get_irq(pdev, 0), IRQF_DISABLED);
156 if (retval == 0)
157 return retval;
158
159 spear_stop_ohci(ohci_p);
160 iounmap(hcd->regs);
161fail_ioremap:
162 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
163fail_request_resource:
164 usb_put_hcd(hcd);
165fail_create_hcd:
166 clk_put(usbh_clk);
167fail_get_usbh_clk:
168fail_irq_get:
169 dev_err(&pdev->dev, "init fail, %d\n", retval);
170
171 return retval;
172}
173
174static int spear_ohci_hcd_drv_remove(struct platform_device *pdev)
175{
176 struct usb_hcd *hcd = platform_get_drvdata(pdev);
177 struct spear_ohci *ohci_p = to_spear_ohci(hcd);
178
179 usb_remove_hcd(hcd);
180 if (ohci_p->clk)
181 spear_stop_ohci(ohci_p);
182
183 iounmap(hcd->regs);
184 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
185 usb_put_hcd(hcd);
186
187 if (ohci_p->clk)
188 clk_put(ohci_p->clk);
189 platform_set_drvdata(pdev, NULL);
190 return 0;
191}
192
193#if defined(CONFIG_PM)
194static int spear_ohci_hcd_drv_suspend(struct platform_device *dev,
195 pm_message_t message)
196{
197 struct usb_hcd *hcd = platform_get_drvdata(dev);
198 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
199 struct spear_ohci *ohci_p = to_spear_ohci(hcd);
200
201 if (time_before(jiffies, ohci->next_statechange))
202 msleep(5);
203 ohci->next_statechange = jiffies;
204
205 spear_stop_ohci(ohci_p);
206 ohci_to_hcd(ohci)->state = HC_STATE_SUSPENDED;
207 return 0;
208}
209
210static int spear_ohci_hcd_drv_resume(struct platform_device *dev)
211{
212 struct usb_hcd *hcd = platform_get_drvdata(dev);
213 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
214 struct spear_ohci *ohci_p = to_spear_ohci(hcd);
215
216 if (time_before(jiffies, ohci->next_statechange))
217 msleep(5);
218 ohci->next_statechange = jiffies;
219
220 spear_start_ohci(ohci_p);
221 ohci_finish_controller_resume(hcd);
222 return 0;
223}
224#endif
225
226/* Driver definition to register with the platform bus */
227static struct platform_driver spear_ohci_hcd_driver = {
228 .probe = spear_ohci_hcd_drv_probe,
229 .remove = spear_ohci_hcd_drv_remove,
230#ifdef CONFIG_PM
231 .suspend = spear_ohci_hcd_drv_suspend,
232 .resume = spear_ohci_hcd_drv_resume,
233#endif
234 .driver = {
235 .owner = THIS_MODULE,
236 .name = "spear-ohci",
237 },
238};
239
240MODULE_ALIAS("platform:spear-ohci");
1// SPDX-License-Identifier: GPL-2.0
2/*
3* OHCI HCD (Host Controller Driver) for USB.
4*
5* Copyright (C) 2010 ST Microelectronics.
6* Deepak Sikri<deepak.sikri@st.com>
7*
8* Based on various ohci-*.c drivers
9*/
10
11#include <linux/clk.h>
12#include <linux/dma-mapping.h>
13#include <linux/io.h>
14#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/of.h>
17#include <linux/platform_device.h>
18#include <linux/signal.h>
19#include <linux/usb.h>
20#include <linux/usb/hcd.h>
21
22#include "ohci.h"
23
24#define DRIVER_DESC "OHCI SPEAr driver"
25
26struct spear_ohci {
27 struct clk *clk;
28};
29
30#define to_spear_ohci(hcd) (struct spear_ohci *)(hcd_to_ohci(hcd)->priv)
31
32static struct hc_driver __read_mostly ohci_spear_hc_driver;
33
34static int spear_ohci_hcd_drv_probe(struct platform_device *pdev)
35{
36 const struct hc_driver *driver = &ohci_spear_hc_driver;
37 struct usb_hcd *hcd = NULL;
38 struct clk *usbh_clk;
39 struct spear_ohci *sohci_p;
40 struct resource *res;
41 int retval, irq;
42
43 irq = platform_get_irq(pdev, 0);
44 if (irq < 0) {
45 retval = irq;
46 goto fail;
47 }
48
49 /*
50 * Right now device-tree probed devices don't get dma_mask set.
51 * Since shared usb code relies on it, set it here for now.
52 * Once we have dma capability bindings this can go away.
53 */
54 retval = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
55 if (retval)
56 goto fail;
57
58 usbh_clk = devm_clk_get(&pdev->dev, NULL);
59 if (IS_ERR(usbh_clk)) {
60 dev_err(&pdev->dev, "Error getting interface clock\n");
61 retval = PTR_ERR(usbh_clk);
62 goto fail;
63 }
64
65 hcd = usb_create_hcd(driver, &pdev->dev, dev_name(&pdev->dev));
66 if (!hcd) {
67 retval = -ENOMEM;
68 goto fail;
69 }
70
71 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
72 hcd->regs = devm_ioremap_resource(&pdev->dev, res);
73 if (IS_ERR(hcd->regs)) {
74 retval = PTR_ERR(hcd->regs);
75 goto err_put_hcd;
76 }
77
78 hcd->rsrc_start = res->start;
79 hcd->rsrc_len = resource_size(res);
80
81 sohci_p = to_spear_ohci(hcd);
82 sohci_p->clk = usbh_clk;
83
84 clk_prepare_enable(sohci_p->clk);
85
86 retval = usb_add_hcd(hcd, irq, 0);
87 if (retval == 0) {
88 device_wakeup_enable(hcd->self.controller);
89 return retval;
90 }
91
92 clk_disable_unprepare(sohci_p->clk);
93err_put_hcd:
94 usb_put_hcd(hcd);
95fail:
96 dev_err(&pdev->dev, "init fail, %d\n", retval);
97
98 return retval;
99}
100
101static int spear_ohci_hcd_drv_remove(struct platform_device *pdev)
102{
103 struct usb_hcd *hcd = platform_get_drvdata(pdev);
104 struct spear_ohci *sohci_p = to_spear_ohci(hcd);
105
106 usb_remove_hcd(hcd);
107 if (sohci_p->clk)
108 clk_disable_unprepare(sohci_p->clk);
109
110 usb_put_hcd(hcd);
111 return 0;
112}
113
114#if defined(CONFIG_PM)
115static int spear_ohci_hcd_drv_suspend(struct platform_device *pdev,
116 pm_message_t message)
117{
118 struct usb_hcd *hcd = platform_get_drvdata(pdev);
119 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
120 struct spear_ohci *sohci_p = to_spear_ohci(hcd);
121 bool do_wakeup = device_may_wakeup(&pdev->dev);
122 int ret;
123
124 if (time_before(jiffies, ohci->next_statechange))
125 msleep(5);
126 ohci->next_statechange = jiffies;
127
128 ret = ohci_suspend(hcd, do_wakeup);
129 if (ret)
130 return ret;
131
132 clk_disable_unprepare(sohci_p->clk);
133
134 return ret;
135}
136
137static int spear_ohci_hcd_drv_resume(struct platform_device *dev)
138{
139 struct usb_hcd *hcd = platform_get_drvdata(dev);
140 struct ohci_hcd *ohci = hcd_to_ohci(hcd);
141 struct spear_ohci *sohci_p = to_spear_ohci(hcd);
142
143 if (time_before(jiffies, ohci->next_statechange))
144 msleep(5);
145 ohci->next_statechange = jiffies;
146
147 clk_prepare_enable(sohci_p->clk);
148 ohci_resume(hcd, false);
149 return 0;
150}
151#endif
152
153static const struct of_device_id spear_ohci_id_table[] = {
154 { .compatible = "st,spear600-ohci", },
155 { },
156};
157MODULE_DEVICE_TABLE(of, spear_ohci_id_table);
158
159/* Driver definition to register with the platform bus */
160static struct platform_driver spear_ohci_hcd_driver = {
161 .probe = spear_ohci_hcd_drv_probe,
162 .remove = spear_ohci_hcd_drv_remove,
163#ifdef CONFIG_PM
164 .suspend = spear_ohci_hcd_drv_suspend,
165 .resume = spear_ohci_hcd_drv_resume,
166#endif
167 .driver = {
168 .name = "spear-ohci",
169 .of_match_table = spear_ohci_id_table,
170 },
171};
172
173static const struct ohci_driver_overrides spear_overrides __initconst = {
174 .extra_priv_size = sizeof(struct spear_ohci),
175};
176static int __init ohci_spear_init(void)
177{
178 if (usb_disabled())
179 return -ENODEV;
180
181 ohci_init_driver(&ohci_spear_hc_driver, &spear_overrides);
182 return platform_driver_register(&spear_ohci_hcd_driver);
183}
184module_init(ohci_spear_init);
185
186static void __exit ohci_spear_cleanup(void)
187{
188 platform_driver_unregister(&spear_ohci_hcd_driver);
189}
190module_exit(ohci_spear_cleanup);
191
192MODULE_DESCRIPTION(DRIVER_DESC);
193MODULE_AUTHOR("Deepak Sikri");
194MODULE_LICENSE("GPL v2");
195MODULE_ALIAS("platform:spear-ohci");