]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/usb/host/ohci-at91.c
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394...
[linux-2.6-omap-h63xx.git] / drivers / usb / host / ohci-at91.c
1 /*
2  * OHCI HCD (Host Controller Driver) for USB.
3  *
4  *  Copyright (C) 2004 SAN People (Pty) Ltd.
5  *  Copyright (C) 2005 Thibaut VARENE <varenet@parisc-linux.org>
6  *
7  * AT91 Bus Glue
8  *
9  * Based on fragments of 2.4 driver by Rick Bronson.
10  * Based on ohci-omap.c
11  *
12  * This file is licenced under the GPL.
13  */
14
15 #include <linux/clk.h>
16 #include <linux/platform_device.h>
17
18 #include <asm/mach-types.h>
19 #include <asm/hardware.h>
20 #include <asm/arch/board.h>
21
22 #ifndef CONFIG_ARCH_AT91
23 #error "CONFIG_ARCH_AT91 must be defined."
24 #endif
25
26 /* interface and function clocks */
27 static struct clk *iclk, *fclk;
28 static int clocked;
29
30 extern int usb_disabled(void);
31
32 /*-------------------------------------------------------------------------*/
33
34 static void at91_start_hc(struct platform_device *pdev)
35 {
36         struct usb_hcd *hcd = platform_get_drvdata(pdev);
37         struct ohci_regs __iomem *regs = hcd->regs;
38
39         dev_dbg(&pdev->dev, "start\n");
40
41         /*
42          * Start the USB clocks.
43          */
44         clk_enable(iclk);
45         clk_enable(fclk);
46         clocked = 1;
47
48         /*
49          * The USB host controller must remain in reset.
50          */
51         writel(0, &regs->control);
52 }
53
54 static void at91_stop_hc(struct platform_device *pdev)
55 {
56         struct usb_hcd *hcd = platform_get_drvdata(pdev);
57         struct ohci_regs __iomem *regs = hcd->regs;
58
59         dev_dbg(&pdev->dev, "stop\n");
60
61         /*
62          * Put the USB host controller into reset.
63          */
64         writel(0, &regs->control);
65
66         /*
67          * Stop the USB clocks.
68          */
69         clk_disable(fclk);
70         clk_disable(iclk);
71         clocked = 0;
72 }
73
74
75 /*-------------------------------------------------------------------------*/
76
77 static int usb_hcd_at91_remove (struct usb_hcd *, struct platform_device *);
78
79 /* configure so an HC device and id are always provided */
80 /* always called with process context; sleeping is OK */
81
82
83 /**
84  * usb_hcd_at91_probe - initialize AT91-based HCDs
85  * Context: !in_interrupt()
86  *
87  * Allocates basic resources for this USB host controller, and
88  * then invokes the start() method for the HCD associated with it
89  * through the hotplug entry's driver_data.
90  */
91 static int usb_hcd_at91_probe(const struct hc_driver *driver,
92                         struct platform_device *pdev)
93 {
94         int retval;
95         struct usb_hcd *hcd = NULL;
96
97         if (pdev->num_resources != 2) {
98                 pr_debug("hcd probe: invalid num_resources");
99                 return -ENODEV;
100         }
101
102         if ((pdev->resource[0].flags != IORESOURCE_MEM)
103                         || (pdev->resource[1].flags != IORESOURCE_IRQ)) {
104                 pr_debug("hcd probe: invalid resource type\n");
105                 return -ENODEV;
106         }
107
108         hcd = usb_create_hcd(driver, &pdev->dev, "at91");
109         if (!hcd)
110                 return -ENOMEM;
111         hcd->rsrc_start = pdev->resource[0].start;
112         hcd->rsrc_len = pdev->resource[0].end - pdev->resource[0].start + 1;
113
114         if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) {
115                 pr_debug("request_mem_region failed\n");
116                 retval = -EBUSY;
117                 goto err1;
118         }
119
120         hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len);
121         if (!hcd->regs) {
122                 pr_debug("ioremap failed\n");
123                 retval = -EIO;
124                 goto err2;
125         }
126
127         iclk = clk_get(&pdev->dev, "ohci_clk");
128         fclk = clk_get(&pdev->dev, "uhpck");
129
130         at91_start_hc(pdev);
131         ohci_hcd_init(hcd_to_ohci(hcd));
132
133         retval = usb_add_hcd(hcd, pdev->resource[1].start, IRQF_DISABLED);
134         if (retval == 0)
135                 return retval;
136
137         /* Error handling */
138         at91_stop_hc(pdev);
139
140         clk_put(fclk);
141         clk_put(iclk);
142
143         iounmap(hcd->regs);
144
145  err2:
146         release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
147
148  err1:
149         usb_put_hcd(hcd);
150         return retval;
151 }
152
153
154 /* may be called with controller, bus, and devices active */
155
156 /**
157  * usb_hcd_at91_remove - shutdown processing for AT91-based HCDs
158  * @dev: USB Host Controller being removed
159  * Context: !in_interrupt()
160  *
161  * Reverses the effect of usb_hcd_at91_probe(), first invoking
162  * the HCD's stop() method.  It is always called from a thread
163  * context, "rmmod" or something similar.
164  *
165  */
166 static int usb_hcd_at91_remove(struct usb_hcd *hcd,
167                                 struct platform_device *pdev)
168 {
169         usb_remove_hcd(hcd);
170         at91_stop_hc(pdev);
171         iounmap(hcd->regs);
172         release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
173
174         clk_put(fclk);
175         clk_put(iclk);
176         fclk = iclk = NULL;
177
178         dev_set_drvdata(&pdev->dev, NULL);
179         return 0;
180 }
181
182 /*-------------------------------------------------------------------------*/
183
184 static int __devinit
185 ohci_at91_start (struct usb_hcd *hcd)
186 {
187         struct at91_usbh_data   *board = hcd->self.controller->platform_data;
188         struct ohci_hcd         *ohci = hcd_to_ohci (hcd);
189         int                     ret;
190
191         if ((ret = ohci_init(ohci)) < 0)
192                 return ret;
193
194         ohci->num_ports = board->ports;
195
196         if ((ret = ohci_run(ohci)) < 0) {
197                 err("can't start %s", hcd->self.bus_name);
198                 ohci_stop(hcd);
199                 return ret;
200         }
201         return 0;
202 }
203
204 /*-------------------------------------------------------------------------*/
205
206 static const struct hc_driver ohci_at91_hc_driver = {
207         .description =          hcd_name,
208         .product_desc =         "AT91 OHCI",
209         .hcd_priv_size =        sizeof(struct ohci_hcd),
210
211         /*
212          * generic hardware linkage
213          */
214         .irq =                  ohci_irq,
215         .flags =                HCD_USB11 | HCD_MEMORY,
216
217         /*
218          * basic lifecycle operations
219          */
220         .start =                ohci_at91_start,
221         .stop =                 ohci_stop,
222         .shutdown =             ohci_shutdown,
223
224         /*
225          * managing i/o requests and associated device resources
226          */
227         .urb_enqueue =          ohci_urb_enqueue,
228         .urb_dequeue =          ohci_urb_dequeue,
229         .endpoint_disable =     ohci_endpoint_disable,
230
231         /*
232          * scheduling support
233          */
234         .get_frame_number =     ohci_get_frame,
235
236         /*
237          * root hub support
238          */
239         .hub_status_data =      ohci_hub_status_data,
240         .hub_control =          ohci_hub_control,
241         .hub_irq_enable =       ohci_rhsc_enable,
242 #ifdef CONFIG_PM
243         .bus_suspend =          ohci_bus_suspend,
244         .bus_resume =           ohci_bus_resume,
245 #endif
246         .start_port_reset =     ohci_start_port_reset,
247 };
248
249 /*-------------------------------------------------------------------------*/
250
251 static int ohci_hcd_at91_drv_probe(struct platform_device *pdev)
252 {
253         device_init_wakeup(&pdev->dev, 1);
254         return usb_hcd_at91_probe(&ohci_at91_hc_driver, pdev);
255 }
256
257 static int ohci_hcd_at91_drv_remove(struct platform_device *pdev)
258 {
259         device_init_wakeup(&pdev->dev, 0);
260         return usb_hcd_at91_remove(platform_get_drvdata(pdev), pdev);
261 }
262
263 #ifdef CONFIG_PM
264
265 static int
266 ohci_hcd_at91_drv_suspend(struct platform_device *pdev, pm_message_t mesg)
267 {
268         struct usb_hcd  *hcd = platform_get_drvdata(pdev);
269         struct ohci_hcd *ohci = hcd_to_ohci(hcd);
270
271         if (device_may_wakeup(&pdev->dev))
272                 enable_irq_wake(hcd->irq);
273
274         /*
275          * The integrated transceivers seem unable to notice disconnect,
276          * reconnect, or wakeup without the 48 MHz clock active.  so for
277          * correctness, always discard connection state (using reset).
278          *
279          * REVISIT: some boards will be able to turn VBUS off...
280          */
281         if (at91_suspend_entering_slow_clock()) {
282                 ohci_usb_reset (ohci);
283                 clk_disable(fclk);
284                 clk_disable(iclk);
285                 clocked = 0;
286         }
287
288         return 0;
289 }
290
291 static int ohci_hcd_at91_drv_resume(struct platform_device *pdev)
292 {
293         struct usb_hcd  *hcd = platform_get_drvdata(pdev);
294
295         if (device_may_wakeup(&pdev->dev))
296                 disable_irq_wake(hcd->irq);
297
298         if (!clocked) {
299                 clk_enable(iclk);
300                 clk_enable(fclk);
301                 clocked = 1;
302         }
303
304         return 0;
305 }
306 #else
307 #define ohci_hcd_at91_drv_suspend NULL
308 #define ohci_hcd_at91_drv_resume  NULL
309 #endif
310
311 MODULE_ALIAS("at91_ohci");
312
313 static struct platform_driver ohci_hcd_at91_driver = {
314         .probe          = ohci_hcd_at91_drv_probe,
315         .remove         = ohci_hcd_at91_drv_remove,
316         .shutdown       = usb_hcd_platform_shutdown,
317         .suspend        = ohci_hcd_at91_drv_suspend,
318         .resume         = ohci_hcd_at91_drv_resume,
319         .driver         = {
320                 .name   = "at91_ohci",
321                 .owner  = THIS_MODULE,
322         },
323 };
324