tty: Keep the default buffering to sub-page units
[linux-2.6/mini2440.git] / drivers / usb / host / ohci-s3c2410.c
bloba68af2dd55ca2aa93d6a5f6ddbb904911e0263b8
1 /*
2 * OHCI HCD (Host Controller Driver) for USB.
4 * (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
5 * (C) Copyright 2000-2002 David Brownell <dbrownell@users.sourceforge.net>
6 * (C) Copyright 2002 Hewlett-Packard Company
8 * USB Bus Glue for Samsung S3C2410
10 * Written by Christopher Hoover <ch@hpl.hp.com>
11 * Based on fragments of previous driver by Russell King et al.
13 * Modified for S3C2410 from ohci-sa1111.c, ohci-omap.c and ohci-lh7a40.c
14 * by Ben Dooks, <ben@simtec.co.uk>
15 * Copyright (C) 2004 Simtec Electronics
17 * Thanks to basprog@mail.ru for updates to newer kernels
19 * This file is licenced under the GPL.
22 #include <linux/platform_device.h>
23 #include <linux/clk.h>
24 #include <plat/usb-control.h>
26 #define valid_port(idx) ((idx) == 1 || (idx) == 2)
28 /* clock device associated with the hcd */
30 static struct clk *clk;
31 static struct clk *usb_clk;
33 /* forward definitions */
35 static void s3c2410_hcd_oc(struct s3c2410_hcd_info *info, int port_oc);
37 /* conversion functions */
39 static struct s3c2410_hcd_info *to_s3c2410_info(struct usb_hcd *hcd)
41 return hcd->self.controller->platform_data;
44 static void s3c2410_start_hc(struct platform_device *dev, struct usb_hcd *hcd)
46 struct s3c2410_hcd_info *info = dev->dev.platform_data;
48 dev_dbg(&dev->dev, "s3c2410_start_hc:\n");
50 clk_enable(usb_clk);
51 mdelay(2); /* let the bus clock stabilise */
53 clk_enable(clk);
55 if (info != NULL) {
56 info->hcd = hcd;
57 info->report_oc = s3c2410_hcd_oc;
59 if (info->enable_oc != NULL) {
60 (info->enable_oc)(info, 1);
65 static void s3c2410_stop_hc(struct platform_device *dev)
67 struct s3c2410_hcd_info *info = dev->dev.platform_data;
69 dev_dbg(&dev->dev, "s3c2410_stop_hc:\n");
71 if (info != NULL) {
72 info->report_oc = NULL;
73 info->hcd = NULL;
75 if (info->enable_oc != NULL) {
76 (info->enable_oc)(info, 0);
80 clk_disable(clk);
81 clk_disable(usb_clk);
84 /* ohci_s3c2410_hub_status_data
86 * update the status data from the hub with anything that
87 * has been detected by our system
90 static int
91 ohci_s3c2410_hub_status_data (struct usb_hcd *hcd, char *buf)
93 struct s3c2410_hcd_info *info = to_s3c2410_info(hcd);
94 struct s3c2410_hcd_port *port;
95 int orig;
96 int portno;
98 orig = ohci_hub_status_data (hcd, buf);
100 if (info == NULL)
101 return orig;
103 port = &info->port[0];
105 /* mark any changed port as changed */
107 for (portno = 0; portno < 2; port++, portno++) {
108 if (port->oc_changed == 1 &&
109 port->flags & S3C_HCDFLG_USED) {
110 dev_dbg(hcd->self.controller,
111 "oc change on port %d\n", portno);
113 if (orig < 1)
114 orig = 1;
116 buf[0] |= 1<<(portno+1);
120 return orig;
123 /* s3c2410_usb_set_power
125 * configure the power on a port, by calling the platform device
126 * routine registered with the platform device
129 static void s3c2410_usb_set_power(struct s3c2410_hcd_info *info,
130 int port, int to)
132 if (info == NULL)
133 return;
135 if (info->power_control != NULL) {
136 info->port[port-1].power = to;
137 (info->power_control)(port-1, to);
141 /* ohci_s3c2410_hub_control
143 * look at control requests to the hub, and see if we need
144 * to take any action or over-ride the results from the
145 * request.
148 static int ohci_s3c2410_hub_control (
149 struct usb_hcd *hcd,
150 u16 typeReq,
151 u16 wValue,
152 u16 wIndex,
153 char *buf,
154 u16 wLength)
156 struct s3c2410_hcd_info *info = to_s3c2410_info(hcd);
157 struct usb_hub_descriptor *desc;
158 int ret = -EINVAL;
159 u32 *data = (u32 *)buf;
161 dev_dbg(hcd->self.controller,
162 "s3c2410_hub_control(%p,0x%04x,0x%04x,0x%04x,%p,%04x)\n",
163 hcd, typeReq, wValue, wIndex, buf, wLength);
165 /* if we are only an humble host without any special capabilities
166 * process the request straight away and exit */
168 if (info == NULL) {
169 ret = ohci_hub_control(hcd, typeReq, wValue,
170 wIndex, buf, wLength);
171 goto out;
174 /* check the request to see if it needs handling */
176 switch (typeReq) {
177 case SetPortFeature:
178 if (wValue == USB_PORT_FEAT_POWER) {
179 dev_dbg(hcd->self.controller, "SetPortFeat: POWER\n");
180 s3c2410_usb_set_power(info, wIndex, 1);
181 goto out;
183 break;
185 case ClearPortFeature:
186 switch (wValue) {
187 case USB_PORT_FEAT_C_OVER_CURRENT:
188 dev_dbg(hcd->self.controller,
189 "ClearPortFeature: C_OVER_CURRENT\n");
191 if (valid_port(wIndex)) {
192 info->port[wIndex-1].oc_changed = 0;
193 info->port[wIndex-1].oc_status = 0;
196 goto out;
198 case USB_PORT_FEAT_OVER_CURRENT:
199 dev_dbg(hcd->self.controller,
200 "ClearPortFeature: OVER_CURRENT\n");
202 if (valid_port(wIndex)) {
203 info->port[wIndex-1].oc_status = 0;
206 goto out;
208 case USB_PORT_FEAT_POWER:
209 dev_dbg(hcd->self.controller,
210 "ClearPortFeature: POWER\n");
212 if (valid_port(wIndex)) {
213 s3c2410_usb_set_power(info, wIndex, 0);
214 return 0;
217 break;
220 ret = ohci_hub_control(hcd, typeReq, wValue, wIndex, buf, wLength);
221 if (ret)
222 goto out;
224 switch (typeReq) {
225 case GetHubDescriptor:
227 /* update the hub's descriptor */
229 desc = (struct usb_hub_descriptor *)buf;
231 if (info->power_control == NULL)
232 return ret;
234 dev_dbg(hcd->self.controller, "wHubCharacteristics 0x%04x\n",
235 desc->wHubCharacteristics);
237 /* remove the old configurations for power-switching, and
238 * over-current protection, and insert our new configuration
241 desc->wHubCharacteristics &= ~cpu_to_le16(HUB_CHAR_LPSM);
242 desc->wHubCharacteristics |= cpu_to_le16(0x0001);
244 if (info->enable_oc) {
245 desc->wHubCharacteristics &= ~cpu_to_le16(HUB_CHAR_OCPM);
246 desc->wHubCharacteristics |= cpu_to_le16(0x0008|0x0001);
249 dev_dbg(hcd->self.controller, "wHubCharacteristics after 0x%04x\n",
250 desc->wHubCharacteristics);
252 return ret;
254 case GetPortStatus:
255 /* check port status */
257 dev_dbg(hcd->self.controller, "GetPortStatus(%d)\n", wIndex);
259 if (valid_port(wIndex)) {
260 if (info->port[wIndex-1].oc_changed) {
261 *data |= cpu_to_le32(RH_PS_OCIC);
264 if (info->port[wIndex-1].oc_status) {
265 *data |= cpu_to_le32(RH_PS_POCI);
270 out:
271 return ret;
274 /* s3c2410_hcd_oc
276 * handle an over-current report
279 static void s3c2410_hcd_oc(struct s3c2410_hcd_info *info, int port_oc)
281 struct s3c2410_hcd_port *port;
282 struct usb_hcd *hcd;
283 unsigned long flags;
284 int portno;
286 if (info == NULL)
287 return;
289 port = &info->port[0];
290 hcd = info->hcd;
292 local_irq_save(flags);
294 for (portno = 0; portno < 2; port++, portno++) {
295 if (port_oc & (1<<portno) &&
296 port->flags & S3C_HCDFLG_USED) {
297 port->oc_status = 1;
298 port->oc_changed = 1;
300 /* ok, once over-current is detected,
301 the port needs to be powered down */
302 s3c2410_usb_set_power(info, portno+1, 0);
306 local_irq_restore(flags);
309 /* may be called without controller electrically present */
310 /* may be called with controller, bus, and devices active */
313 * usb_hcd_s3c2410_remove - shutdown processing for HCD
314 * @dev: USB Host Controller being removed
315 * Context: !in_interrupt()
317 * Reverses the effect of usb_hcd_3c2410_probe(), first invoking
318 * the HCD's stop() method. It is always called from a thread
319 * context, normally "rmmod", "apmd", or something similar.
323 static void
324 usb_hcd_s3c2410_remove (struct usb_hcd *hcd, struct platform_device *dev)
326 usb_remove_hcd(hcd);
327 s3c2410_stop_hc(dev);
328 iounmap(hcd->regs);
329 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
330 usb_put_hcd(hcd);
334 * usb_hcd_s3c2410_probe - initialize S3C2410-based HCDs
335 * Context: !in_interrupt()
337 * Allocates basic resources for this USB host controller, and
338 * then invokes the start() method for the HCD associated with it
339 * through the hotplug entry's driver_data.
342 static int usb_hcd_s3c2410_probe (const struct hc_driver *driver,
343 struct platform_device *dev)
345 struct usb_hcd *hcd = NULL;
346 int retval;
348 s3c2410_usb_set_power(dev->dev.platform_data, 1, 1);
349 s3c2410_usb_set_power(dev->dev.platform_data, 2, 1);
351 hcd = usb_create_hcd(driver, &dev->dev, "s3c24xx");
352 if (hcd == NULL)
353 return -ENOMEM;
355 hcd->rsrc_start = dev->resource[0].start;
356 hcd->rsrc_len = dev->resource[0].end - dev->resource[0].start + 1;
358 if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) {
359 dev_err(&dev->dev, "request_mem_region failed\n");
360 retval = -EBUSY;
361 goto err_put;
364 clk = clk_get(&dev->dev, "usb-host");
365 if (IS_ERR(clk)) {
366 dev_err(&dev->dev, "cannot get usb-host clock\n");
367 retval = -ENOENT;
368 goto err_mem;
371 usb_clk = clk_get(&dev->dev, "usb-bus-host");
372 if (IS_ERR(usb_clk)) {
373 dev_err(&dev->dev, "cannot get usb-bus-host clock\n");
374 retval = -ENOENT;
375 goto err_clk;
378 s3c2410_start_hc(dev, hcd);
380 hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len);
381 if (!hcd->regs) {
382 dev_err(&dev->dev, "ioremap failed\n");
383 retval = -ENOMEM;
384 goto err_ioremap;
387 ohci_hcd_init(hcd_to_ohci(hcd));
389 retval = usb_add_hcd(hcd, dev->resource[1].start, IRQF_DISABLED);
390 if (retval != 0)
391 goto err_ioremap;
393 return 0;
395 err_ioremap:
396 s3c2410_stop_hc(dev);
397 iounmap(hcd->regs);
398 clk_put(usb_clk);
400 err_clk:
401 clk_put(clk);
403 err_mem:
404 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
406 err_put:
407 usb_put_hcd(hcd);
408 return retval;
411 /*-------------------------------------------------------------------------*/
413 static int
414 ohci_s3c2410_start (struct usb_hcd *hcd)
416 struct ohci_hcd *ohci = hcd_to_ohci (hcd);
417 int ret;
419 if ((ret = ohci_init(ohci)) < 0)
420 return ret;
422 if ((ret = ohci_run (ohci)) < 0) {
423 err ("can't start %s", hcd->self.bus_name);
424 ohci_stop (hcd);
425 return ret;
428 return 0;
432 static const struct hc_driver ohci_s3c2410_hc_driver = {
433 .description = hcd_name,
434 .product_desc = "S3C24XX OHCI",
435 .hcd_priv_size = sizeof(struct ohci_hcd),
438 * generic hardware linkage
440 .irq = ohci_irq,
441 .flags = HCD_USB11 | HCD_MEMORY,
444 * basic lifecycle operations
446 .start = ohci_s3c2410_start,
447 .stop = ohci_stop,
448 .shutdown = ohci_shutdown,
451 * managing i/o requests and associated device resources
453 .urb_enqueue = ohci_urb_enqueue,
454 .urb_dequeue = ohci_urb_dequeue,
455 .endpoint_disable = ohci_endpoint_disable,
458 * scheduling support
460 .get_frame_number = ohci_get_frame,
463 * root hub support
465 .hub_status_data = ohci_s3c2410_hub_status_data,
466 .hub_control = ohci_s3c2410_hub_control,
467 #ifdef CONFIG_PM
468 .bus_suspend = ohci_bus_suspend,
469 .bus_resume = ohci_bus_resume,
470 #endif
471 .start_port_reset = ohci_start_port_reset,
474 /* device driver */
476 static int ohci_hcd_s3c2410_drv_probe(struct platform_device *pdev)
478 return usb_hcd_s3c2410_probe(&ohci_s3c2410_hc_driver, pdev);
481 static int ohci_hcd_s3c2410_drv_remove(struct platform_device *pdev)
483 struct usb_hcd *hcd = platform_get_drvdata(pdev);
485 usb_hcd_s3c2410_remove(hcd, pdev);
486 return 0;
489 static struct platform_driver ohci_hcd_s3c2410_driver = {
490 .probe = ohci_hcd_s3c2410_drv_probe,
491 .remove = ohci_hcd_s3c2410_drv_remove,
492 .shutdown = usb_hcd_platform_shutdown,
493 /*.suspend = ohci_hcd_s3c2410_drv_suspend, */
494 /*.resume = ohci_hcd_s3c2410_drv_resume, */
495 .driver = {
496 .owner = THIS_MODULE,
497 .name = "s3c2410-ohci",
501 MODULE_ALIAS("platform:s3c2410-ohci");