2 * PMC MSP EHCI (Host Controller Driver) for USB.
4 * (C) Copyright 2006-2010 PMC-Sierra Inc
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
13 #include <linux/platform_device.h>
14 #include <linux/gpio.h>
15 #include <linux/usb.h>
19 #define USB_CTRL_MODE_STREAM_DISABLE 0x10
22 #define USB_CTRL_FIFO_THRESH 0x00300000
24 /* register offset for usb_mode */
25 #define USB_EHCI_REG_USB_MODE 0x68
27 /* register offset for usb fifo */
28 #define USB_EHCI_REG_USB_FIFO 0x24
30 /* register offset for usb status */
31 #define USB_EHCI_REG_USB_STATUS 0x44
33 /* serial/parallel transceiver */
34 #define USB_EHCI_REG_BIT_STAT_STS (1<<29)
36 /* TWI USB0 host device pin */
37 #define MSP_PIN_USB0_HOST_DEV 49
39 /* TWI USB1 host device pin */
40 #define MSP_PIN_USB1_HOST_DEV 50
43 static void usb_hcd_tdi_set_mode(struct ehci_hcd
*ehci
)
49 struct ehci_regs
*reg_base
= ehci
->regs
;
51 /* get register base */
52 base
= (u8
*)reg_base
+ USB_EHCI_REG_USB_MODE
;
53 statreg
= (u8
*)reg_base
+ USB_EHCI_REG_USB_STATUS
;
54 fiforeg
= (u8
*)reg_base
+ USB_EHCI_REG_USB_FIFO
;
56 /* Disable controller mode stream */
57 val
= ehci_readl(ehci
, (u32
*)base
);
58 ehci_writel(ehci
, (val
| USB_CTRL_MODE_STREAM_DISABLE
),
61 /* clear STS to select parallel transceiver interface */
62 val
= ehci_readl(ehci
, (u32
*)statreg
);
63 val
= val
& ~USB_EHCI_REG_BIT_STAT_STS
;
64 ehci_writel(ehci
, val
, (u32
*)statreg
);
66 /* write to set the proper fifo threshold */
67 ehci_writel(ehci
, USB_CTRL_FIFO_THRESH
, (u32
*)fiforeg
);
69 /* set TWI GPIO USB_HOST_DEV pin high */
70 gpio_direction_output(MSP_PIN_USB0_HOST_DEV
, 1);
71 #ifdef CONFIG_MSP_HAS_DUAL_USB
72 gpio_direction_output(MSP_PIN_USB1_HOST_DEV
, 1);
76 /* called during probe() after chip reset completes */
77 static int ehci_msp_setup(struct usb_hcd
*hcd
)
79 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
82 ehci
->big_endian_mmio
= 1;
83 ehci
->big_endian_desc
= 1;
85 ehci
->caps
= hcd
->regs
;
88 retval
= ehci_setup(hcd
);
92 usb_hcd_tdi_set_mode(ehci
);
98 /* configure so an HC device and id are always provided
99 * always called with process context; sleeping is OK
102 static int usb_hcd_msp_map_regs(struct mspusb_device
*dev
)
104 struct resource
*res
;
105 struct platform_device
*pdev
= &dev
->dev
;
109 /* MAB register space */
110 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
113 res_len
= resource_size(res
);
114 if (!request_mem_region(res
->start
, res_len
, "mab regs"))
117 dev
->mab_regs
= ioremap_nocache(res
->start
, res_len
);
118 if (dev
->mab_regs
== NULL
) {
123 /* MSP USB register space */
124 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 2);
129 res_len
= resource_size(res
);
130 if (!request_mem_region(res
->start
, res_len
, "usbid regs")) {
134 dev
->usbid_regs
= ioremap_nocache(res
->start
, res_len
);
135 if (dev
->usbid_regs
== NULL
) {
142 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 2);
143 res_len
= resource_size(res
);
144 release_mem_region(res
->start
, res_len
);
146 iounmap(dev
->mab_regs
);
148 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
149 res_len
= resource_size(res
);
150 release_mem_region(res
->start
, res_len
);
151 dev_err(&pdev
->dev
, "Failed to map non-EHCI regs.\n");
156 * usb_hcd_msp_probe - initialize PMC MSP-based HCDs
157 * Context: !in_interrupt()
159 * Allocates basic resources for this USB host controller, and
160 * then invokes the start() method for the HCD associated with it
161 * through the hotplug entry's driver_data.
164 int usb_hcd_msp_probe(const struct hc_driver
*driver
,
165 struct platform_device
*dev
)
169 struct resource
*res
;
170 struct ehci_hcd
*ehci
;
172 hcd
= usb_create_hcd(driver
, &dev
->dev
, "pmcmsp");
176 res
= platform_get_resource(dev
, IORESOURCE_MEM
, 0);
178 pr_debug("No IOMEM resource info for %s.\n", dev
->name
);
182 hcd
->rsrc_start
= res
->start
;
183 hcd
->rsrc_len
= resource_size(res
);
184 if (!request_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
, dev
->name
)) {
188 hcd
->regs
= ioremap_nocache(hcd
->rsrc_start
, hcd
->rsrc_len
);
190 pr_debug("ioremap failed");
195 res
= platform_get_resource(dev
, IORESOURCE_IRQ
, 0);
197 dev_err(&dev
->dev
, "No IRQ resource info for %s.\n", dev
->name
);
202 /* Map non-EHCI register spaces */
203 retval
= usb_hcd_msp_map_regs(to_mspusb_device(dev
));
207 ehci
= hcd_to_ehci(hcd
);
208 ehci
->big_endian_mmio
= 1;
209 ehci
->big_endian_desc
= 1;
212 retval
= usb_add_hcd(hcd
, res
->start
, IRQF_SHARED
);
220 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
230 * usb_hcd_msp_remove - shutdown processing for PMC MSP-based HCDs
231 * @dev: USB Host Controller being removed
232 * Context: !in_interrupt()
234 * Reverses the effect of usb_hcd_msp_probe(), first invoking
235 * the HCD's stop() method. It is always called from a thread
236 * context, normally "rmmod", "apmd", or something similar.
238 * may be called without controller electrically present
239 * may be called with controller, bus, and devices active
241 void usb_hcd_msp_remove(struct usb_hcd
*hcd
, struct platform_device
*dev
)
245 release_mem_region(hcd
->rsrc_start
, hcd
->rsrc_len
);
249 #ifdef CONFIG_MSP_HAS_DUAL_USB
251 * Wrapper around the main ehci_irq. Since both USB host controllers are
252 * sharing the same IRQ, need to first determine whether we're the intended
253 * recipient of this interrupt.
255 static irqreturn_t
ehci_msp_irq(struct usb_hcd
*hcd
)
258 struct device
*dev
= hcd
->self
.controller
;
259 struct platform_device
*pdev
;
260 struct mspusb_device
*mdev
;
261 struct ehci_hcd
*ehci
= hcd_to_ehci(hcd
);
262 /* need to reverse-map a couple of containers to get our device */
263 pdev
= to_platform_device(dev
);
264 mdev
= to_mspusb_device(pdev
);
266 /* Check to see if this interrupt is for this host controller */
267 int_src
= ehci_readl(ehci
, &mdev
->mab_regs
->int_stat
);
268 if (int_src
& (1 << pdev
->id
))
269 return ehci_irq(hcd
);
271 /* Not for this device */
274 #endif /* DUAL_USB */
276 static const struct hc_driver ehci_msp_hc_driver
= {
277 .description
= hcd_name
,
278 .product_desc
= "PMC MSP EHCI",
279 .hcd_priv_size
= sizeof(struct ehci_hcd
),
282 * generic hardware linkage
284 #ifdef CONFIG_MSP_HAS_DUAL_USB
289 .flags
= HCD_MEMORY
| HCD_USB2
,
292 * basic lifecycle operations
294 .reset
= ehci_msp_setup
,
295 .shutdown
= ehci_shutdown
,
300 * managing i/o requests and associated device resources
302 .urb_enqueue
= ehci_urb_enqueue
,
303 .urb_dequeue
= ehci_urb_dequeue
,
304 .endpoint_disable
= ehci_endpoint_disable
,
305 .endpoint_reset
= ehci_endpoint_reset
,
310 .get_frame_number
= ehci_get_frame
,
315 .hub_status_data
= ehci_hub_status_data
,
316 .hub_control
= ehci_hub_control
,
317 .bus_suspend
= ehci_bus_suspend
,
318 .bus_resume
= ehci_bus_resume
,
319 .relinquish_port
= ehci_relinquish_port
,
320 .port_handed_over
= ehci_port_handed_over
,
322 .clear_tt_buffer_complete
= ehci_clear_tt_buffer_complete
,
325 static int ehci_hcd_msp_drv_probe(struct platform_device
*pdev
)
329 pr_debug("In ehci_hcd_msp_drv_probe");
334 gpio_request(MSP_PIN_USB0_HOST_DEV
, "USB0_HOST_DEV_GPIO");
335 #ifdef CONFIG_MSP_HAS_DUAL_USB
336 gpio_request(MSP_PIN_USB1_HOST_DEV
, "USB1_HOST_DEV_GPIO");
339 ret
= usb_hcd_msp_probe(&ehci_msp_hc_driver
, pdev
);
344 static int ehci_hcd_msp_drv_remove(struct platform_device
*pdev
)
346 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
348 usb_hcd_msp_remove(hcd
, pdev
);
350 /* free TWI GPIO USB_HOST_DEV pin */
351 gpio_free(MSP_PIN_USB0_HOST_DEV
);
352 #ifdef CONFIG_MSP_HAS_DUAL_USB
353 gpio_free(MSP_PIN_USB1_HOST_DEV
);
359 MODULE_ALIAS("pmcmsp-ehci");
361 static struct platform_driver ehci_hcd_msp_driver
= {
362 .probe
= ehci_hcd_msp_drv_probe
,
363 .remove
= ehci_hcd_msp_drv_remove
,
365 .name
= "pmcmsp-ehci",
366 .owner
= THIS_MODULE
,