2 * OHCI HCD (Host Controller Driver) for USB.
4 * (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
5 * (C) Copyright 2000-2005 David Brownell
6 * (C) Copyright 2002 Hewlett-Packard Company
7 * (C) Copyright 2008 Magnus Damm
9 * SM501 Bus Glue - based on ohci-omap.c
11 * This file is licenced under the GPL.
14 #include <linux/interrupt.h>
15 #include <linux/jiffies.h>
16 #include <linux/platform_device.h>
17 #include <linux/dma-mapping.h>
18 #include <linux/sm501.h>
19 #include <linux/sm501-regs.h>
21 static int ohci_sm501_init(struct usb_hcd
*hcd
)
23 return ohci_init(hcd_to_ohci(hcd
));
26 static int ohci_sm501_start(struct usb_hcd
*hcd
)
28 struct device
*dev
= hcd
->self
.controller
;
31 ret
= ohci_run(hcd_to_ohci(hcd
));
33 dev_err(dev
, "can't start %s", hcd
->self
.bus_name
);
40 /*-------------------------------------------------------------------------*/
42 static const struct hc_driver ohci_sm501_hc_driver
= {
43 .description
= hcd_name
,
44 .product_desc
= "SM501 OHCI",
45 .hcd_priv_size
= sizeof(struct ohci_hcd
),
48 * generic hardware linkage
51 .flags
= HCD_USB11
| HCD_MEMORY
| HCD_LOCAL_MEM
,
54 * basic lifecycle operations
56 .reset
= ohci_sm501_init
,
57 .start
= ohci_sm501_start
,
59 .shutdown
= ohci_shutdown
,
62 * managing i/o requests and associated device resources
64 .urb_enqueue
= ohci_urb_enqueue
,
65 .urb_dequeue
= ohci_urb_dequeue
,
66 .endpoint_disable
= ohci_endpoint_disable
,
71 .get_frame_number
= ohci_get_frame
,
76 .hub_status_data
= ohci_hub_status_data
,
77 .hub_control
= ohci_hub_control
,
79 .bus_suspend
= ohci_bus_suspend
,
80 .bus_resume
= ohci_bus_resume
,
82 .start_port_reset
= ohci_start_port_reset
,
85 /*-------------------------------------------------------------------------*/
87 static int ohci_hcd_sm501_drv_probe(struct platform_device
*pdev
)
89 const struct hc_driver
*driver
= &ohci_sm501_hc_driver
;
90 struct device
*dev
= &pdev
->dev
;
91 struct resource
*res
, *mem
;
93 struct usb_hcd
*hcd
= NULL
;
95 irq
= retval
= platform_get_irq(pdev
, 0);
99 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
101 dev_err(dev
, "no resource definition for memory\n");
106 if (!request_mem_region(mem
->start
, resource_size(mem
), pdev
->name
)) {
107 dev_err(dev
, "request_mem_region failed\n");
112 /* The sm501 chip is equipped with local memory that may be used
113 * by on-chip devices such as the video controller and the usb host.
114 * This driver uses dma_declare_coherent_memory() to make sure
115 * usb allocations with dma_alloc_coherent() allocate from
116 * this local memory. The dma_handle returned by dma_alloc_coherent()
117 * will be an offset starting from 0 for the first local memory byte.
119 * So as long as data is allocated using dma_alloc_coherent() all is
120 * fine. This is however not always the case - buffers may be allocated
121 * using kmalloc() - so the usb core needs to be told that it must copy
122 * data into our local memory if the buffers happen to be placed in
123 * regular memory. The HCD_LOCAL_MEM flag does just that.
126 if (!dma_declare_coherent_memory(dev
, mem
->start
,
127 mem
->start
- mem
->parent
->start
,
130 DMA_MEMORY_EXCLUSIVE
)) {
131 dev_err(dev
, "cannot declare coherent memory\n");
136 /* allocate, reserve and remap resources for registers */
137 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
139 dev_err(dev
, "no resource definition for registers\n");
144 hcd
= usb_create_hcd(driver
, &pdev
->dev
, dev_name(&pdev
->dev
));
150 hcd
->rsrc_start
= res
->start
;
151 hcd
->rsrc_len
= resource_size(res
);
153 if (!request_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
, pdev
->name
)) {
154 dev_err(dev
, "request_mem_region failed\n");
159 hcd
->regs
= ioremap(hcd
->rsrc_start
, hcd
->rsrc_len
);
160 if (hcd
->regs
== NULL
) {
161 dev_err(dev
, "cannot remap registers\n");
166 ohci_hcd_init(hcd_to_ohci(hcd
));
168 retval
= usb_add_hcd(hcd
, irq
, IRQF_SHARED
);
171 device_wakeup_enable(hcd
->self
.controller
);
173 /* enable power and unmask interrupts */
175 sm501_unit_power(dev
->parent
, SM501_GATE_USB_HOST
, 1);
176 sm501_modify_reg(dev
->parent
, SM501_IRQ_MASK
, 1 << 6, 0);
182 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
186 dma_release_declared_memory(dev
);
188 release_mem_region(mem
->start
, resource_size(mem
));
193 static int ohci_hcd_sm501_drv_remove(struct platform_device
*pdev
)
195 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
196 struct resource
*mem
;
199 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
201 dma_release_declared_memory(&pdev
->dev
);
202 mem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
204 release_mem_region(mem
->start
, resource_size(mem
));
206 /* mask interrupts and disable power */
208 sm501_modify_reg(pdev
->dev
.parent
, SM501_IRQ_MASK
, 0, 1 << 6);
209 sm501_unit_power(pdev
->dev
.parent
, SM501_GATE_USB_HOST
, 0);
214 /*-------------------------------------------------------------------------*/
217 static int ohci_sm501_suspend(struct platform_device
*pdev
, pm_message_t msg
)
219 struct device
*dev
= &pdev
->dev
;
220 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
221 struct ohci_hcd
*ohci
= hcd_to_ohci(hcd
);
222 bool do_wakeup
= device_may_wakeup(dev
);
225 if (time_before(jiffies
, ohci
->next_statechange
))
227 ohci
->next_statechange
= jiffies
;
229 ret
= ohci_suspend(hcd
, do_wakeup
);
233 sm501_unit_power(dev
->parent
, SM501_GATE_USB_HOST
, 0);
237 static int ohci_sm501_resume(struct platform_device
*pdev
)
239 struct device
*dev
= &pdev
->dev
;
240 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
241 struct ohci_hcd
*ohci
= hcd_to_ohci(hcd
);
243 if (time_before(jiffies
, ohci
->next_statechange
))
245 ohci
->next_statechange
= jiffies
;
247 sm501_unit_power(dev
->parent
, SM501_GATE_USB_HOST
, 1);
248 ohci_resume(hcd
, false);
252 #define ohci_sm501_suspend NULL
253 #define ohci_sm501_resume NULL
256 /*-------------------------------------------------------------------------*/
259 * Driver definition to register with the SM501 bus
261 static struct platform_driver ohci_hcd_sm501_driver
= {
262 .probe
= ohci_hcd_sm501_drv_probe
,
263 .remove
= ohci_hcd_sm501_drv_remove
,
264 .shutdown
= usb_hcd_platform_shutdown
,
265 .suspend
= ohci_sm501_suspend
,
266 .resume
= ohci_sm501_resume
,
268 .owner
= THIS_MODULE
,
272 MODULE_ALIAS("platform:sm501-usb");