diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-03 11:48:58 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-03-03 11:48:58 -0500 |
commit | 7f5b09c15ab989ed5ce4adda0be42c1302df70b7 (patch) | |
tree | 9695b00983d1bd077ff91c463abcb136330cf344 /drivers/usb/host | |
parent | 94468080220162f74dc6ce5c3e95e5fec8022902 (diff) | |
parent | cedf8a78421943441b9011ce7bcdab55f07d2ea6 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6: (220 commits)
USB: backlight, appledisplay: fix incomplete registration failure handling
USB: pl2303: remove unnecessary reset of usb_device in urbs
USB: ftdi_sio: remove obsolete check in unthrottle
USB: ftdi_sio: remove unused tx_bytes counter
USB: qcaux: driver for auxiliary serial ports on Qualcomm devices
USB: pl2303: initial TIOCGSERIAL support
USB: option: add Longcheer/Longsung vendor ID
USB: fix I2C API usage in ohci-pnx4008.
USB: usbmon: mask seconds properly in text API
USB: sisusbvga: no unnecessary GFP_ATOMIC
USB: storage: onetouch: unnecessary GFP_ATOMIC
USB: serial: ftdi: add CONTEC vendor and product id
USB: remove references to port->port.count from the serial drivers
USB: tty: Prune uses of tty_request_room in the USB layer
USB: tty: Add a function to insert a string of characters with the same flag
USB: don't read past config->interface[] if usb_control_msg() fails in usb_reset_configuration()
USB: tty: kill request_room for USB ACM class
USB: tty: sort out the request_room handling for whiteheat
USB: storage: fix misplaced parenthesis
USB: vstusb.c: removal of driver for Vernier Software & Technology, Inc., devices and spectrometers
...
Diffstat (limited to 'drivers/usb/host')
36 files changed, 3723 insertions, 145 deletions
diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig index 2678a1624fcc..8d3df0397de3 100644 --- a/drivers/usb/host/Kconfig +++ b/drivers/usb/host/Kconfig | |||
@@ -399,3 +399,14 @@ config USB_HWA_HCD | |||
399 | 399 | ||
400 | To compile this driver a module, choose M here: the module | 400 | To compile this driver a module, choose M here: the module |
401 | will be called "hwa-hc". | 401 | will be called "hwa-hc". |
402 | |||
403 | config USB_IMX21_HCD | ||
404 | tristate "iMX21 HCD support" | ||
405 | depends on USB && ARM && MACH_MX21 | ||
406 | help | ||
407 | This driver enables support for the on-chip USB host in the | ||
408 | iMX21 processor. | ||
409 | |||
410 | To compile this driver as a module, choose M here: the | ||
411 | module will be called "imx21-hcd". | ||
412 | |||
diff --git a/drivers/usb/host/Makefile b/drivers/usb/host/Makefile index f58b2494c44a..4e0c67f1f51b 100644 --- a/drivers/usb/host/Makefile +++ b/drivers/usb/host/Makefile | |||
@@ -32,3 +32,5 @@ obj-$(CONFIG_USB_U132_HCD) += u132-hcd.o | |||
32 | obj-$(CONFIG_USB_R8A66597_HCD) += r8a66597-hcd.o | 32 | obj-$(CONFIG_USB_R8A66597_HCD) += r8a66597-hcd.o |
33 | obj-$(CONFIG_USB_ISP1760_HCD) += isp1760.o | 33 | obj-$(CONFIG_USB_ISP1760_HCD) += isp1760.o |
34 | obj-$(CONFIG_USB_HWA_HCD) += hwa-hc.o | 34 | obj-$(CONFIG_USB_HWA_HCD) += hwa-hc.o |
35 | obj-$(CONFIG_USB_IMX21_HCD) += imx21-hcd.o | ||
36 | |||
diff --git a/drivers/usb/host/ehci-atmel.c b/drivers/usb/host/ehci-atmel.c index 87c1b7c34c0e..51bd0edf544f 100644 --- a/drivers/usb/host/ehci-atmel.c +++ b/drivers/usb/host/ehci-atmel.c | |||
@@ -149,7 +149,7 @@ static int __init ehci_atmel_drv_probe(struct platform_device *pdev) | |||
149 | goto fail_request_resource; | 149 | goto fail_request_resource; |
150 | } | 150 | } |
151 | hcd->rsrc_start = res->start; | 151 | hcd->rsrc_start = res->start; |
152 | hcd->rsrc_len = res->end - res->start + 1; | 152 | hcd->rsrc_len = resource_size(res); |
153 | 153 | ||
154 | if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, | 154 | if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, |
155 | driver->description)) { | 155 | driver->description)) { |
diff --git a/drivers/usb/host/ehci-au1xxx.c b/drivers/usb/host/ehci-au1xxx.c index dbfb482a94e3..e3a74e75e822 100644 --- a/drivers/usb/host/ehci-au1xxx.c +++ b/drivers/usb/host/ehci-au1xxx.c | |||
@@ -121,6 +121,7 @@ static int ehci_hcd_au1xxx_drv_probe(struct platform_device *pdev) | |||
121 | { | 121 | { |
122 | struct usb_hcd *hcd; | 122 | struct usb_hcd *hcd; |
123 | struct ehci_hcd *ehci; | 123 | struct ehci_hcd *ehci; |
124 | struct resource *res; | ||
124 | int ret; | 125 | int ret; |
125 | 126 | ||
126 | if (usb_disabled()) | 127 | if (usb_disabled()) |
@@ -144,8 +145,9 @@ static int ehci_hcd_au1xxx_drv_probe(struct platform_device *pdev) | |||
144 | if (!hcd) | 145 | if (!hcd) |
145 | return -ENOMEM; | 146 | return -ENOMEM; |
146 | 147 | ||
147 | hcd->rsrc_start = pdev->resource[0].start; | 148 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
148 | hcd->rsrc_len = pdev->resource[0].end - pdev->resource[0].start + 1; | 149 | hcd->rsrc_start = res->start; |
150 | hcd->rsrc_len = resource_size(res); | ||
149 | 151 | ||
150 | if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) { | 152 | if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) { |
151 | pr_debug("request_mem_region failed"); | 153 | pr_debug("request_mem_region failed"); |
diff --git a/drivers/usb/host/ehci-fsl.c b/drivers/usb/host/ehci-fsl.c index 991174937db3..0e26aa13f158 100644 --- a/drivers/usb/host/ehci-fsl.c +++ b/drivers/usb/host/ehci-fsl.c | |||
@@ -1,5 +1,6 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (c) 2005 MontaVista Software | 2 | * Copyright 2005-2009 MontaVista Software, Inc. |
3 | * Copyright 2008 Freescale Semiconductor, Inc. | ||
3 | * | 4 | * |
4 | * This program is free software; you can redistribute it and/or modify it | 5 | * This program is free software; you can redistribute it and/or modify it |
5 | * under the terms of the GNU General Public License as published by the | 6 | * under the terms of the GNU General Public License as published by the |
@@ -17,17 +18,20 @@ | |||
17 | * | 18 | * |
18 | * Ported to 834x by Randy Vinson <rvinson@mvista.com> using code provided | 19 | * Ported to 834x by Randy Vinson <rvinson@mvista.com> using code provided |
19 | * by Hunter Wu. | 20 | * by Hunter Wu. |
21 | * Power Management support by Dave Liu <daveliu@freescale.com>, | ||
22 | * Jerry Huang <Chang-Ming.Huang@freescale.com> and | ||
23 | * Anton Vorontsov <avorontsov@ru.mvista.com>. | ||
20 | */ | 24 | */ |
21 | 25 | ||
26 | #include <linux/kernel.h> | ||
27 | #include <linux/types.h> | ||
28 | #include <linux/delay.h> | ||
29 | #include <linux/pm.h> | ||
22 | #include <linux/platform_device.h> | 30 | #include <linux/platform_device.h> |
23 | #include <linux/fsl_devices.h> | 31 | #include <linux/fsl_devices.h> |
24 | 32 | ||
25 | #include "ehci-fsl.h" | 33 | #include "ehci-fsl.h" |
26 | 34 | ||
27 | /* FIXME: Power Management is un-ported so temporarily disable it */ | ||
28 | #undef CONFIG_PM | ||
29 | |||
30 | |||
31 | /* configure so an HC device and id are always provided */ | 35 | /* configure so an HC device and id are always provided */ |
32 | /* always called with process context; sleeping is OK */ | 36 | /* always called with process context; sleeping is OK */ |
33 | 37 | ||
@@ -40,8 +44,8 @@ | |||
40 | * Allocates basic resources for this USB host controller. | 44 | * Allocates basic resources for this USB host controller. |
41 | * | 45 | * |
42 | */ | 46 | */ |
43 | int usb_hcd_fsl_probe(const struct hc_driver *driver, | 47 | static int usb_hcd_fsl_probe(const struct hc_driver *driver, |
44 | struct platform_device *pdev) | 48 | struct platform_device *pdev) |
45 | { | 49 | { |
46 | struct fsl_usb2_platform_data *pdata; | 50 | struct fsl_usb2_platform_data *pdata; |
47 | struct usb_hcd *hcd; | 51 | struct usb_hcd *hcd; |
@@ -147,7 +151,8 @@ int usb_hcd_fsl_probe(const struct hc_driver *driver, | |||
147 | * Reverses the effect of usb_hcd_fsl_probe(). | 151 | * Reverses the effect of usb_hcd_fsl_probe(). |
148 | * | 152 | * |
149 | */ | 153 | */ |
150 | void usb_hcd_fsl_remove(struct usb_hcd *hcd, struct platform_device *pdev) | 154 | static void usb_hcd_fsl_remove(struct usb_hcd *hcd, |
155 | struct platform_device *pdev) | ||
151 | { | 156 | { |
152 | usb_remove_hcd(hcd); | 157 | usb_remove_hcd(hcd); |
153 | iounmap(hcd->regs); | 158 | iounmap(hcd->regs); |
@@ -284,10 +289,81 @@ static int ehci_fsl_setup(struct usb_hcd *hcd) | |||
284 | return retval; | 289 | return retval; |
285 | } | 290 | } |
286 | 291 | ||
292 | struct ehci_fsl { | ||
293 | struct ehci_hcd ehci; | ||
294 | |||
295 | #ifdef CONFIG_PM | ||
296 | /* Saved USB PHY settings, need to restore after deep sleep. */ | ||
297 | u32 usb_ctrl; | ||
298 | #endif | ||
299 | }; | ||
300 | |||
301 | #ifdef CONFIG_PM | ||
302 | |||
303 | static struct ehci_fsl *hcd_to_ehci_fsl(struct usb_hcd *hcd) | ||
304 | { | ||
305 | struct ehci_hcd *ehci = hcd_to_ehci(hcd); | ||
306 | |||
307 | return container_of(ehci, struct ehci_fsl, ehci); | ||
308 | } | ||
309 | |||
310 | static int ehci_fsl_drv_suspend(struct device *dev) | ||
311 | { | ||
312 | struct usb_hcd *hcd = dev_get_drvdata(dev); | ||
313 | struct ehci_fsl *ehci_fsl = hcd_to_ehci_fsl(hcd); | ||
314 | void __iomem *non_ehci = hcd->regs; | ||
315 | |||
316 | if (!fsl_deep_sleep()) | ||
317 | return 0; | ||
318 | |||
319 | ehci_fsl->usb_ctrl = in_be32(non_ehci + FSL_SOC_USB_CTRL); | ||
320 | return 0; | ||
321 | } | ||
322 | |||
323 | static int ehci_fsl_drv_resume(struct device *dev) | ||
324 | { | ||
325 | struct usb_hcd *hcd = dev_get_drvdata(dev); | ||
326 | struct ehci_fsl *ehci_fsl = hcd_to_ehci_fsl(hcd); | ||
327 | struct ehci_hcd *ehci = hcd_to_ehci(hcd); | ||
328 | void __iomem *non_ehci = hcd->regs; | ||
329 | |||
330 | if (!fsl_deep_sleep()) | ||
331 | return 0; | ||
332 | |||
333 | usb_root_hub_lost_power(hcd->self.root_hub); | ||
334 | |||
335 | /* Restore USB PHY settings and enable the controller. */ | ||
336 | out_be32(non_ehci + FSL_SOC_USB_CTRL, ehci_fsl->usb_ctrl); | ||
337 | |||
338 | ehci_reset(ehci); | ||
339 | ehci_fsl_reinit(ehci); | ||
340 | |||
341 | return 0; | ||
342 | } | ||
343 | |||
344 | static int ehci_fsl_drv_restore(struct device *dev) | ||
345 | { | ||
346 | struct usb_hcd *hcd = dev_get_drvdata(dev); | ||
347 | |||
348 | usb_root_hub_lost_power(hcd->self.root_hub); | ||
349 | return 0; | ||
350 | } | ||
351 | |||
352 | static struct dev_pm_ops ehci_fsl_pm_ops = { | ||
353 | .suspend = ehci_fsl_drv_suspend, | ||
354 | .resume = ehci_fsl_drv_resume, | ||
355 | .restore = ehci_fsl_drv_restore, | ||
356 | }; | ||
357 | |||
358 | #define EHCI_FSL_PM_OPS (&ehci_fsl_pm_ops) | ||
359 | #else | ||
360 | #define EHCI_FSL_PM_OPS NULL | ||
361 | #endif /* CONFIG_PM */ | ||
362 | |||
287 | static const struct hc_driver ehci_fsl_hc_driver = { | 363 | static const struct hc_driver ehci_fsl_hc_driver = { |
288 | .description = hcd_name, | 364 | .description = hcd_name, |
289 | .product_desc = "Freescale On-Chip EHCI Host Controller", | 365 | .product_desc = "Freescale On-Chip EHCI Host Controller", |
290 | .hcd_priv_size = sizeof(struct ehci_hcd), | 366 | .hcd_priv_size = sizeof(struct ehci_fsl), |
291 | 367 | ||
292 | /* | 368 | /* |
293 | * generic hardware linkage | 369 | * generic hardware linkage |
@@ -354,6 +430,7 @@ static struct platform_driver ehci_fsl_driver = { | |||
354 | .remove = ehci_fsl_drv_remove, | 430 | .remove = ehci_fsl_drv_remove, |
355 | .shutdown = usb_hcd_platform_shutdown, | 431 | .shutdown = usb_hcd_platform_shutdown, |
356 | .driver = { | 432 | .driver = { |
357 | .name = "fsl-ehci", | 433 | .name = "fsl-ehci", |
434 | .pm = EHCI_FSL_PM_OPS, | ||
358 | }, | 435 | }, |
359 | }; | 436 | }; |
diff --git a/drivers/usb/host/ehci-mxc.c b/drivers/usb/host/ehci-mxc.c index 35c56f40bdbb..23cd917088b4 100644 --- a/drivers/usb/host/ehci-mxc.c +++ b/drivers/usb/host/ehci-mxc.c | |||
@@ -162,6 +162,17 @@ static int ehci_mxc_drv_probe(struct platform_device *pdev) | |||
162 | goto err_ioremap; | 162 | goto err_ioremap; |
163 | } | 163 | } |
164 | 164 | ||
165 | /* call platform specific init function */ | ||
166 | if (pdata->init) { | ||
167 | ret = pdata->init(pdev); | ||
168 | if (ret) { | ||
169 | dev_err(dev, "platform init failed\n"); | ||
170 | goto err_init; | ||
171 | } | ||
172 | /* platforms need some time to settle changed IO settings */ | ||
173 | mdelay(10); | ||
174 | } | ||
175 | |||
165 | /* enable clocks */ | 176 | /* enable clocks */ |
166 | priv->usbclk = clk_get(dev, "usb"); | 177 | priv->usbclk = clk_get(dev, "usb"); |
167 | if (IS_ERR(priv->usbclk)) { | 178 | if (IS_ERR(priv->usbclk)) { |
@@ -192,18 +203,6 @@ static int ehci_mxc_drv_probe(struct platform_device *pdev) | |||
192 | if (ret < 0) | 203 | if (ret < 0) |
193 | goto err_init; | 204 | goto err_init; |
194 | 205 | ||
195 | /* call platform specific init function */ | ||
196 | if (pdata->init) { | ||
197 | ret = pdata->init(pdev); | ||
198 | if (ret) { | ||
199 | dev_err(dev, "platform init failed\n"); | ||
200 | goto err_init; | ||
201 | } | ||
202 | } | ||
203 | |||
204 | /* most platforms need some time to settle changed IO settings */ | ||
205 | mdelay(10); | ||
206 | |||
207 | /* Initialize the transceiver */ | 206 | /* Initialize the transceiver */ |
208 | if (pdata->otg) { | 207 | if (pdata->otg) { |
209 | pdata->otg->io_priv = hcd->regs + ULPI_VIEWPORT_OFFSET; | 208 | pdata->otg->io_priv = hcd->regs + ULPI_VIEWPORT_OFFSET; |
diff --git a/drivers/usb/host/ehci-omap.c b/drivers/usb/host/ehci-omap.c index 74d07f4e8b7d..f0282d6bb7aa 100644 --- a/drivers/usb/host/ehci-omap.c +++ b/drivers/usb/host/ehci-omap.c | |||
@@ -26,10 +26,9 @@ | |||
26 | * along with this program; if not, write to the Free Software | 26 | * along with this program; if not, write to the Free Software |
27 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 27 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
28 | * | 28 | * |
29 | * TODO (last updated Feb 23rd, 2009): | 29 | * TODO (last updated Feb 12, 2010): |
30 | * - add kernel-doc | 30 | * - add kernel-doc |
31 | * - enable AUTOIDLE | 31 | * - enable AUTOIDLE |
32 | * - move DPLL5 programming to clock fw | ||
33 | * - add suspend/resume | 32 | * - add suspend/resume |
34 | * - move workarounds to board-files | 33 | * - move workarounds to board-files |
35 | */ | 34 | */ |
@@ -37,6 +36,7 @@ | |||
37 | #include <linux/platform_device.h> | 36 | #include <linux/platform_device.h> |
38 | #include <linux/clk.h> | 37 | #include <linux/clk.h> |
39 | #include <linux/gpio.h> | 38 | #include <linux/gpio.h> |
39 | #include <linux/regulator/consumer.h> | ||
40 | #include <plat/usb.h> | 40 | #include <plat/usb.h> |
41 | 41 | ||
42 | /* | 42 | /* |
@@ -178,6 +178,11 @@ struct ehci_hcd_omap { | |||
178 | void __iomem *uhh_base; | 178 | void __iomem *uhh_base; |
179 | void __iomem *tll_base; | 179 | void __iomem *tll_base; |
180 | void __iomem *ehci_base; | 180 | void __iomem *ehci_base; |
181 | |||
182 | /* Regulators for USB PHYs. | ||
183 | * Each PHY can have a seperate regulator. | ||
184 | */ | ||
185 | struct regulator *regulator[OMAP3_HS_USB_PORTS]; | ||
181 | }; | 186 | }; |
182 | 187 | ||
183 | /*-------------------------------------------------------------------------*/ | 188 | /*-------------------------------------------------------------------------*/ |
@@ -546,6 +551,8 @@ static int ehci_hcd_omap_probe(struct platform_device *pdev) | |||
546 | 551 | ||
547 | int irq = platform_get_irq(pdev, 0); | 552 | int irq = platform_get_irq(pdev, 0); |
548 | int ret = -ENODEV; | 553 | int ret = -ENODEV; |
554 | int i; | ||
555 | char supply[7]; | ||
549 | 556 | ||
550 | if (!pdata) { | 557 | if (!pdata) { |
551 | dev_dbg(&pdev->dev, "missing platform_data\n"); | 558 | dev_dbg(&pdev->dev, "missing platform_data\n"); |
@@ -613,6 +620,21 @@ static int ehci_hcd_omap_probe(struct platform_device *pdev) | |||
613 | goto err_tll_ioremap; | 620 | goto err_tll_ioremap; |
614 | } | 621 | } |
615 | 622 | ||
623 | /* get ehci regulator and enable */ | ||
624 | for (i = 0 ; i < OMAP3_HS_USB_PORTS ; i++) { | ||
625 | if (omap->port_mode[i] != EHCI_HCD_OMAP_MODE_PHY) { | ||
626 | omap->regulator[i] = NULL; | ||
627 | continue; | ||
628 | } | ||
629 | snprintf(supply, sizeof(supply), "hsusb%d", i); | ||
630 | omap->regulator[i] = regulator_get(omap->dev, supply); | ||
631 | if (IS_ERR(omap->regulator[i])) | ||
632 | dev_dbg(&pdev->dev, | ||
633 | "failed to get ehci port%d regulator\n", i); | ||
634 | else | ||
635 | regulator_enable(omap->regulator[i]); | ||
636 | } | ||
637 | |||
616 | ret = omap_start_ehc(omap, hcd); | 638 | ret = omap_start_ehc(omap, hcd); |
617 | if (ret) { | 639 | if (ret) { |
618 | dev_dbg(&pdev->dev, "failed to start ehci\n"); | 640 | dev_dbg(&pdev->dev, "failed to start ehci\n"); |
@@ -622,13 +644,12 @@ static int ehci_hcd_omap_probe(struct platform_device *pdev) | |||
622 | omap->ehci->regs = hcd->regs | 644 | omap->ehci->regs = hcd->regs |
623 | + HC_LENGTH(readl(&omap->ehci->caps->hc_capbase)); | 645 | + HC_LENGTH(readl(&omap->ehci->caps->hc_capbase)); |
624 | 646 | ||
647 | dbg_hcs_params(omap->ehci, "reset"); | ||
648 | dbg_hcc_params(omap->ehci, "reset"); | ||
649 | |||
625 | /* cache this readonly data; minimize chip reads */ | 650 | /* cache this readonly data; minimize chip reads */ |
626 | omap->ehci->hcs_params = readl(&omap->ehci->caps->hcs_params); | 651 | omap->ehci->hcs_params = readl(&omap->ehci->caps->hcs_params); |
627 | 652 | ||
628 | /* SET 1 micro-frame Interrupt interval */ | ||
629 | writel(readl(&omap->ehci->regs->command) | (1 << 16), | ||
630 | &omap->ehci->regs->command); | ||
631 | |||
632 | ret = usb_add_hcd(hcd, irq, IRQF_DISABLED | IRQF_SHARED); | 653 | ret = usb_add_hcd(hcd, irq, IRQF_DISABLED | IRQF_SHARED); |
633 | if (ret) { | 654 | if (ret) { |
634 | dev_dbg(&pdev->dev, "failed to add hcd with err %d\n", ret); | 655 | dev_dbg(&pdev->dev, "failed to add hcd with err %d\n", ret); |
@@ -641,6 +662,12 @@ err_add_hcd: | |||
641 | omap_stop_ehc(omap, hcd); | 662 | omap_stop_ehc(omap, hcd); |
642 | 663 | ||
643 | err_start: | 664 | err_start: |
665 | for (i = 0 ; i < OMAP3_HS_USB_PORTS ; i++) { | ||
666 | if (omap->regulator[i]) { | ||
667 | regulator_disable(omap->regulator[i]); | ||
668 | regulator_put(omap->regulator[i]); | ||
669 | } | ||
670 | } | ||
644 | iounmap(omap->tll_base); | 671 | iounmap(omap->tll_base); |
645 | 672 | ||
646 | err_tll_ioremap: | 673 | err_tll_ioremap: |
@@ -674,13 +701,21 @@ static int ehci_hcd_omap_remove(struct platform_device *pdev) | |||
674 | { | 701 | { |
675 | struct ehci_hcd_omap *omap = platform_get_drvdata(pdev); | 702 | struct ehci_hcd_omap *omap = platform_get_drvdata(pdev); |
676 | struct usb_hcd *hcd = ehci_to_hcd(omap->ehci); | 703 | struct usb_hcd *hcd = ehci_to_hcd(omap->ehci); |
704 | int i; | ||
677 | 705 | ||
678 | usb_remove_hcd(hcd); | 706 | usb_remove_hcd(hcd); |
679 | omap_stop_ehc(omap, hcd); | 707 | omap_stop_ehc(omap, hcd); |
680 | iounmap(hcd->regs); | 708 | iounmap(hcd->regs); |
709 | for (i = 0 ; i < OMAP3_HS_USB_PORTS ; i++) { | ||
710 | if (omap->regulator[i]) { | ||
711 | regulator_disable(omap->regulator[i]); | ||
712 | regulator_put(omap->regulator[i]); | ||
713 | } | ||
714 | } | ||
681 | iounmap(omap->tll_base); | 715 | iounmap(omap->tll_base); |
682 | iounmap(omap->uhh_base); | 716 | iounmap(omap->uhh_base); |
683 | usb_put_hcd(hcd); | 717 | usb_put_hcd(hcd); |
718 | kfree(omap); | ||
684 | 719 | ||
685 | return 0; | 720 | return 0; |
686 | } | 721 | } |
diff --git a/drivers/usb/host/ehci-orion.c b/drivers/usb/host/ehci-orion.c index 1d283e1b2b8d..0f87dc72820a 100644 --- a/drivers/usb/host/ehci-orion.c +++ b/drivers/usb/host/ehci-orion.c | |||
@@ -222,14 +222,14 @@ static int __devinit ehci_orion_drv_probe(struct platform_device *pdev) | |||
222 | goto err1; | 222 | goto err1; |
223 | } | 223 | } |
224 | 224 | ||
225 | if (!request_mem_region(res->start, res->end - res->start + 1, | 225 | if (!request_mem_region(res->start, resource_size(res), |
226 | ehci_orion_hc_driver.description)) { | 226 | ehci_orion_hc_driver.description)) { |
227 | dev_dbg(&pdev->dev, "controller already in use\n"); | 227 | dev_dbg(&pdev->dev, "controller already in use\n"); |
228 | err = -EBUSY; | 228 | err = -EBUSY; |
229 | goto err1; | 229 | goto err1; |
230 | } | 230 | } |
231 | 231 | ||
232 | regs = ioremap(res->start, res->end - res->start + 1); | 232 | regs = ioremap(res->start, resource_size(res)); |
233 | if (regs == NULL) { | 233 | if (regs == NULL) { |
234 | dev_dbg(&pdev->dev, "error mapping memory\n"); | 234 | dev_dbg(&pdev->dev, "error mapping memory\n"); |
235 | err = -EFAULT; | 235 | err = -EFAULT; |
@@ -244,7 +244,7 @@ static int __devinit ehci_orion_drv_probe(struct platform_device *pdev) | |||
244 | } | 244 | } |
245 | 245 | ||
246 | hcd->rsrc_start = res->start; | 246 | hcd->rsrc_start = res->start; |
247 | hcd->rsrc_len = res->end - res->start + 1; | 247 | hcd->rsrc_len = resource_size(res); |
248 | hcd->regs = regs; | 248 | hcd->regs = regs; |
249 | 249 | ||
250 | ehci = hcd_to_ehci(hcd); | 250 | ehci = hcd_to_ehci(hcd); |
@@ -287,7 +287,7 @@ err4: | |||
287 | err3: | 287 | err3: |
288 | iounmap(regs); | 288 | iounmap(regs); |
289 | err2: | 289 | err2: |
290 | release_mem_region(res->start, res->end - res->start + 1); | 290 | release_mem_region(res->start, resource_size(res)); |
291 | err1: | 291 | err1: |
292 | dev_err(&pdev->dev, "init %s fail, %d\n", | 292 | dev_err(&pdev->dev, "init %s fail, %d\n", |
293 | dev_name(&pdev->dev), err); | 293 | dev_name(&pdev->dev), err); |
diff --git a/drivers/usb/host/ehci-ppc-of.c b/drivers/usb/host/ehci-ppc-of.c index 36f96da129f5..8df33b8a634c 100644 --- a/drivers/usb/host/ehci-ppc-of.c +++ b/drivers/usb/host/ehci-ppc-of.c | |||
@@ -134,21 +134,21 @@ ehci_hcd_ppc_of_probe(struct of_device *op, const struct of_device_id *match) | |||
134 | hcd->rsrc_len = res.end - res.start + 1; | 134 | hcd->rsrc_len = res.end - res.start + 1; |
135 | 135 | ||
136 | if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) { | 136 | if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) { |
137 | printk(KERN_ERR __FILE__ ": request_mem_region failed\n"); | 137 | printk(KERN_ERR "%s: request_mem_region failed\n", __FILE__); |
138 | rv = -EBUSY; | 138 | rv = -EBUSY; |
139 | goto err_rmr; | 139 | goto err_rmr; |
140 | } | 140 | } |
141 | 141 | ||
142 | irq = irq_of_parse_and_map(dn, 0); | 142 | irq = irq_of_parse_and_map(dn, 0); |
143 | if (irq == NO_IRQ) { | 143 | if (irq == NO_IRQ) { |
144 | printk(KERN_ERR __FILE__ ": irq_of_parse_and_map failed\n"); | 144 | printk(KERN_ERR "%s: irq_of_parse_and_map failed\n", __FILE__); |
145 | rv = -EBUSY; | 145 | rv = -EBUSY; |
146 | goto err_irq; | 146 | goto err_irq; |
147 | } | 147 | } |
148 | 148 | ||
149 | hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len); | 149 | hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len); |
150 | if (!hcd->regs) { | 150 | if (!hcd->regs) { |
151 | printk(KERN_ERR __FILE__ ": ioremap failed\n"); | 151 | printk(KERN_ERR "%s: ioremap failed\n", __FILE__); |
152 | rv = -ENOMEM; | 152 | rv = -ENOMEM; |
153 | goto err_ioremap; | 153 | goto err_ioremap; |
154 | } | 154 | } |
@@ -161,9 +161,9 @@ ehci_hcd_ppc_of_probe(struct of_device *op, const struct of_device_id *match) | |||
161 | ehci->ohci_hcctrl_reg = ioremap(res.start + | 161 | ehci->ohci_hcctrl_reg = ioremap(res.start + |
162 | OHCI_HCCTRL_OFFSET, OHCI_HCCTRL_LEN); | 162 | OHCI_HCCTRL_OFFSET, OHCI_HCCTRL_LEN); |
163 | else | 163 | else |
164 | pr_debug(__FILE__ ": no ohci offset in fdt\n"); | 164 | pr_debug("%s: no ohci offset in fdt\n", __FILE__); |
165 | if (!ehci->ohci_hcctrl_reg) { | 165 | if (!ehci->ohci_hcctrl_reg) { |
166 | pr_debug(__FILE__ ": ioremap for ohci hcctrl failed\n"); | 166 | pr_debug("%s: ioremap for ohci hcctrl failed\n", __FILE__); |
167 | } else { | 167 | } else { |
168 | ehci->has_amcc_usb23 = 1; | 168 | ehci->has_amcc_usb23 = 1; |
169 | } | 169 | } |
@@ -241,7 +241,7 @@ static int ehci_hcd_ppc_of_remove(struct of_device *op) | |||
241 | else | 241 | else |
242 | release_mem_region(res.start, 0x4); | 242 | release_mem_region(res.start, 0x4); |
243 | else | 243 | else |
244 | pr_debug(__FILE__ ": no ohci offset in fdt\n"); | 244 | pr_debug("%s: no ohci offset in fdt\n", __FILE__); |
245 | of_node_put(np); | 245 | of_node_put(np); |
246 | } | 246 | } |
247 | 247 | ||
@@ -264,7 +264,7 @@ static int ehci_hcd_ppc_of_shutdown(struct of_device *op) | |||
264 | } | 264 | } |
265 | 265 | ||
266 | 266 | ||
267 | static struct of_device_id ehci_hcd_ppc_of_match[] = { | 267 | static const struct of_device_id ehci_hcd_ppc_of_match[] = { |
268 | { | 268 | { |
269 | .compatible = "usb-ehci", | 269 | .compatible = "usb-ehci", |
270 | }, | 270 | }, |
diff --git a/drivers/usb/host/ehci-sched.c b/drivers/usb/host/ehci-sched.c index 1e391e624c8a..39340ae00ac4 100644 --- a/drivers/usb/host/ehci-sched.c +++ b/drivers/usb/host/ehci-sched.c | |||
@@ -510,6 +510,8 @@ static int disable_periodic (struct ehci_hcd *ehci) | |||
510 | ehci_writel(ehci, cmd, &ehci->regs->command); | 510 | ehci_writel(ehci, cmd, &ehci->regs->command); |
511 | /* posted write ... */ | 511 | /* posted write ... */ |
512 | 512 | ||
513 | free_cached_itd_list(ehci); | ||
514 | |||
513 | ehci->next_uframe = -1; | 515 | ehci->next_uframe = -1; |
514 | return 0; | 516 | return 0; |
515 | } | 517 | } |
@@ -2322,9 +2324,13 @@ restart: | |||
2322 | * No need to check for activity unless the | 2324 | * No need to check for activity unless the |
2323 | * frame is current. | 2325 | * frame is current. |
2324 | */ | 2326 | */ |
2325 | if (frame == clock_frame && live && | 2327 | if (((frame == clock_frame) || |
2326 | (q.sitd->hw_results & | 2328 | (((frame + 1) % ehci->periodic_size) |
2327 | SITD_ACTIVE(ehci))) { | 2329 | == clock_frame)) |
2330 | && live | ||
2331 | && (q.sitd->hw_results & | ||
2332 | SITD_ACTIVE(ehci))) { | ||
2333 | |||
2328 | incomplete = true; | 2334 | incomplete = true; |
2329 | q_p = &q.sitd->sitd_next; | 2335 | q_p = &q.sitd->sitd_next; |
2330 | hw_p = &q.sitd->hw_next; | 2336 | hw_p = &q.sitd->hw_next; |
diff --git a/drivers/usb/host/ehci-xilinx-of.c b/drivers/usb/host/ehci-xilinx-of.c index a5861531ad3e..f603bb2c0a8e 100644 --- a/drivers/usb/host/ehci-xilinx-of.c +++ b/drivers/usb/host/ehci-xilinx-of.c | |||
@@ -177,21 +177,21 @@ ehci_hcd_xilinx_of_probe(struct of_device *op, const struct of_device_id *match) | |||
177 | hcd->rsrc_len = res.end - res.start + 1; | 177 | hcd->rsrc_len = res.end - res.start + 1; |
178 | 178 | ||
179 | if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) { | 179 | if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) { |
180 | printk(KERN_ERR __FILE__ ": request_mem_region failed\n"); | 180 | printk(KERN_ERR "%s: request_mem_region failed\n", __FILE__); |
181 | rv = -EBUSY; | 181 | rv = -EBUSY; |
182 | goto err_rmr; | 182 | goto err_rmr; |
183 | } | 183 | } |
184 | 184 | ||
185 | irq = irq_of_parse_and_map(dn, 0); | 185 | irq = irq_of_parse_and_map(dn, 0); |
186 | if (irq == NO_IRQ) { | 186 | if (irq == NO_IRQ) { |
187 | printk(KERN_ERR __FILE__ ": irq_of_parse_and_map failed\n"); | 187 | printk(KERN_ERR "%s: irq_of_parse_and_map failed\n", __FILE__); |
188 | rv = -EBUSY; | 188 | rv = -EBUSY; |
189 | goto err_irq; | 189 | goto err_irq; |
190 | } | 190 | } |
191 | 191 | ||
192 | hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len); | 192 | hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len); |
193 | if (!hcd->regs) { | 193 | if (!hcd->regs) { |
194 | printk(KERN_ERR __FILE__ ": ioremap failed\n"); | 194 | printk(KERN_ERR "%s: ioremap failed\n", __FILE__); |
195 | rv = -ENOMEM; | 195 | rv = -ENOMEM; |
196 | goto err_ioremap; | 196 | goto err_ioremap; |
197 | } | 197 | } |
@@ -281,7 +281,7 @@ static int ehci_hcd_xilinx_of_shutdown(struct of_device *op) | |||
281 | } | 281 | } |
282 | 282 | ||
283 | 283 | ||
284 | static struct of_device_id ehci_hcd_xilinx_of_match[] = { | 284 | static const struct of_device_id ehci_hcd_xilinx_of_match[] = { |
285 | {.compatible = "xlnx,xps-usb-host-1.00.a",}, | 285 | {.compatible = "xlnx,xps-usb-host-1.00.a",}, |
286 | {}, | 286 | {}, |
287 | }; | 287 | }; |
diff --git a/drivers/usb/host/fhci-hcd.c b/drivers/usb/host/fhci-hcd.c index 78e7c3cfcb72..5dcfb3de9945 100644 --- a/drivers/usb/host/fhci-hcd.c +++ b/drivers/usb/host/fhci-hcd.c | |||
@@ -433,7 +433,7 @@ static int fhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, | |||
433 | return -ENOMEM; | 433 | return -ENOMEM; |
434 | 434 | ||
435 | /* allocate the private part of the URB */ | 435 | /* allocate the private part of the URB */ |
436 | urb_priv->tds = kzalloc(size * sizeof(struct td), mem_flags); | 436 | urb_priv->tds = kcalloc(size, sizeof(*urb_priv->tds), mem_flags); |
437 | if (!urb_priv->tds) { | 437 | if (!urb_priv->tds) { |
438 | kfree(urb_priv); | 438 | kfree(urb_priv); |
439 | return -ENOMEM; | 439 | return -ENOMEM; |
@@ -805,7 +805,7 @@ static int __devexit of_fhci_remove(struct of_device *ofdev) | |||
805 | return fhci_remove(&ofdev->dev); | 805 | return fhci_remove(&ofdev->dev); |
806 | } | 806 | } |
807 | 807 | ||
808 | static struct of_device_id of_fhci_match[] = { | 808 | static const struct of_device_id of_fhci_match[] = { |
809 | { .compatible = "fsl,mpc8323-qe-usb", }, | 809 | { .compatible = "fsl,mpc8323-qe-usb", }, |
810 | {}, | 810 | {}, |
811 | }; | 811 | }; |
diff --git a/drivers/usb/host/imx21-dbg.c b/drivers/usb/host/imx21-dbg.c new file mode 100644 index 000000000000..512f647448ca --- /dev/null +++ b/drivers/usb/host/imx21-dbg.c | |||
@@ -0,0 +1,527 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2009 by Martin Fuzzey | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify it | ||
5 | * under the terms of the GNU General Public License as published by the | ||
6 | * Free Software Foundation; either version 2 of the License, or (at your | ||
7 | * option) any later version. | ||
8 | * | ||
9 | * This program is distributed in the hope that it will be useful, but | ||
10 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | ||
11 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
12 | * for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program; if not, write to the Free Software Foundation, | ||
16 | * Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
17 | */ | ||
18 | |||
19 | /* this file is part of imx21-hcd.c */ | ||
20 | |||
21 | #ifndef DEBUG | ||
22 | |||
23 | static inline void create_debug_files(struct imx21 *imx21) { } | ||
24 | static inline void remove_debug_files(struct imx21 *imx21) { } | ||
25 | static inline void debug_urb_submitted(struct imx21 *imx21, struct urb *urb) {} | ||
26 | static inline void debug_urb_completed(struct imx21 *imx21, struct urb *urb, | ||
27 | int status) {} | ||
28 | static inline void debug_urb_unlinked(struct imx21 *imx21, struct urb *urb) {} | ||
29 | static inline void debug_urb_queued_for_etd(struct imx21 *imx21, | ||
30 | struct urb *urb) {} | ||
31 | static inline void debug_urb_queued_for_dmem(struct imx21 *imx21, | ||
32 | struct urb *urb) {} | ||
33 | static inline void debug_etd_allocated(struct imx21 *imx21) {} | ||
34 | static inline void debug_etd_freed(struct imx21 *imx21) {} | ||
35 | static inline void debug_dmem_allocated(struct imx21 *imx21, int size) {} | ||
36 | static inline void debug_dmem_freed(struct imx21 *imx21, int size) {} | ||
37 | static inline void debug_isoc_submitted(struct imx21 *imx21, | ||
38 | int frame, struct td *td) {} | ||
39 | static inline void debug_isoc_completed(struct imx21 *imx21, | ||
40 | int frame, struct td *td, int cc, int len) {} | ||
41 | |||
42 | #else | ||
43 | |||
44 | #include <linux/debugfs.h> | ||
45 | #include <linux/seq_file.h> | ||
46 | |||
47 | static const char *dir_labels[] = { | ||
48 | "TD 0", | ||
49 | "OUT", | ||
50 | "IN", | ||
51 | "TD 1" | ||
52 | }; | ||
53 | |||
54 | static const char *speed_labels[] = { | ||
55 | "Full", | ||
56 | "Low" | ||
57 | }; | ||
58 | |||
59 | static const char *format_labels[] = { | ||
60 | "Control", | ||
61 | "ISO", | ||
62 | "Bulk", | ||
63 | "Interrupt" | ||
64 | }; | ||
65 | |||
66 | static inline struct debug_stats *stats_for_urb(struct imx21 *imx21, | ||
67 | struct urb *urb) | ||
68 | { | ||
69 | return usb_pipeisoc(urb->pipe) ? | ||
70 | &imx21->isoc_stats : &imx21->nonisoc_stats; | ||
71 | } | ||
72 | |||
73 | static void debug_urb_submitted(struct imx21 *imx21, struct urb *urb) | ||
74 | { | ||
75 | stats_for_urb(imx21, urb)->submitted++; | ||
76 | } | ||
77 | |||
78 | static void debug_urb_completed(struct imx21 *imx21, struct urb *urb, int st) | ||
79 | { | ||
80 | if (st) | ||
81 | stats_for_urb(imx21, urb)->completed_failed++; | ||
82 | else | ||
83 | stats_for_urb(imx21, urb)->completed_ok++; | ||
84 | } | ||
85 | |||
86 | static void debug_urb_unlinked(struct imx21 *imx21, struct urb *urb) | ||
87 | { | ||
88 | stats_for_urb(imx21, urb)->unlinked++; | ||
89 | } | ||
90 | |||
91 | static void debug_urb_queued_for_etd(struct imx21 *imx21, struct urb *urb) | ||
92 | { | ||
93 | stats_for_urb(imx21, urb)->queue_etd++; | ||
94 | } | ||
95 | |||
96 | static void debug_urb_queued_for_dmem(struct imx21 *imx21, struct urb *urb) | ||
97 | { | ||
98 | stats_for_urb(imx21, urb)->queue_dmem++; | ||
99 | } | ||
100 | |||
101 | static inline void debug_etd_allocated(struct imx21 *imx21) | ||
102 | { | ||
103 | imx21->etd_usage.maximum = max( | ||
104 | ++(imx21->etd_usage.value), | ||
105 | imx21->etd_usage.maximum); | ||
106 | } | ||
107 | |||
108 | static inline void debug_etd_freed(struct imx21 *imx21) | ||
109 | { | ||
110 | imx21->etd_usage.value--; | ||
111 | } | ||
112 | |||
113 | static inline void debug_dmem_allocated(struct imx21 *imx21, int size) | ||
114 | { | ||
115 | imx21->dmem_usage.value += size; | ||
116 | imx21->dmem_usage.maximum = max( | ||
117 | imx21->dmem_usage.value, | ||
118 | imx21->dmem_usage.maximum); | ||
119 | } | ||
120 | |||
121 | static inline void debug_dmem_freed(struct imx21 *imx21, int size) | ||
122 | { | ||
123 | imx21->dmem_usage.value -= size; | ||
124 | } | ||
125 | |||
126 | |||
127 | static void debug_isoc_submitted(struct imx21 *imx21, | ||
128 | int frame, struct td *td) | ||
129 | { | ||
130 | struct debug_isoc_trace *trace = &imx21->isoc_trace[ | ||
131 | imx21->isoc_trace_index++]; | ||
132 | |||
133 | imx21->isoc_trace_index %= ARRAY_SIZE(imx21->isoc_trace); | ||
134 | trace->schedule_frame = td->frame; | ||
135 | trace->submit_frame = frame; | ||
136 | trace->request_len = td->len; | ||
137 | trace->td = td; | ||
138 | } | ||
139 | |||
140 | static inline void debug_isoc_completed(struct imx21 *imx21, | ||
141 | int frame, struct td *td, int cc, int len) | ||
142 | { | ||
143 | struct debug_isoc_trace *trace, *trace_failed; | ||
144 | int i; | ||
145 | int found = 0; | ||
146 | |||
147 | trace = imx21->isoc_trace; | ||
148 | for (i = 0; i < ARRAY_SIZE(imx21->isoc_trace); i++, trace++) { | ||
149 | if (trace->td == td) { | ||
150 | trace->done_frame = frame; | ||
151 | trace->done_len = len; | ||
152 | trace->cc = cc; | ||
153 | trace->td = NULL; | ||
154 | found = 1; | ||
155 | break; | ||
156 | } | ||
157 | } | ||
158 | |||
159 | if (found && cc) { | ||
160 | trace_failed = &imx21->isoc_trace_failed[ | ||
161 | imx21->isoc_trace_index_failed++]; | ||
162 | |||
163 | imx21->isoc_trace_index_failed %= ARRAY_SIZE( | ||
164 | imx21->isoc_trace_failed); | ||
165 | *trace_failed = *trace; | ||
166 | } | ||
167 | } | ||
168 | |||
169 | |||
170 | static char *format_ep(struct usb_host_endpoint *ep, char *buf, int bufsize) | ||
171 | { | ||
172 | if (ep) | ||
173 | snprintf(buf, bufsize, "ep_%02x (type:%02X kaddr:%p)", | ||
174 | ep->desc.bEndpointAddress, | ||
175 | usb_endpoint_type(&ep->desc), | ||
176 | ep); | ||
177 | else | ||
178 | snprintf(buf, bufsize, "none"); | ||
179 | return buf; | ||
180 | } | ||
181 | |||
182 | static char *format_etd_dword0(u32 value, char *buf, int bufsize) | ||
183 | { | ||
184 | snprintf(buf, bufsize, | ||
185 | "addr=%d ep=%d dir=%s speed=%s format=%s halted=%d", | ||
186 | value & 0x7F, | ||
187 | (value >> DW0_ENDPNT) & 0x0F, | ||
188 | dir_labels[(value >> DW0_DIRECT) & 0x03], | ||
189 | speed_labels[(value >> DW0_SPEED) & 0x01], | ||
190 | format_labels[(value >> DW0_FORMAT) & 0x03], | ||
191 | (value >> DW0_HALTED) & 0x01); | ||
192 | return buf; | ||
193 | } | ||
194 | |||
195 | static int debug_status_show(struct seq_file *s, void *v) | ||
196 | { | ||
197 | struct imx21 *imx21 = s->private; | ||
198 | int etds_allocated = 0; | ||
199 | int etds_sw_busy = 0; | ||
200 | int etds_hw_busy = 0; | ||
201 | int dmem_blocks = 0; | ||
202 | int queued_for_etd = 0; | ||
203 | int queued_for_dmem = 0; | ||
204 | unsigned int dmem_bytes = 0; | ||
205 | int i; | ||
206 | struct etd_priv *etd; | ||
207 | u32 etd_enable_mask; | ||
208 | unsigned long flags; | ||
209 | struct imx21_dmem_area *dmem; | ||
210 | struct ep_priv *ep_priv; | ||
211 | |||
212 | spin_lock_irqsave(&imx21->lock, flags); | ||
213 | |||
214 | etd_enable_mask = readl(imx21->regs + USBH_ETDENSET); | ||
215 | for (i = 0, etd = imx21->etd; i < USB_NUM_ETD; i++, etd++) { | ||
216 | if (etd->alloc) | ||
217 | etds_allocated++; | ||
218 | if (etd->urb) | ||
219 | etds_sw_busy++; | ||
220 | if (etd_enable_mask & (1<<i)) | ||
221 | etds_hw_busy++; | ||
222 | } | ||
223 | |||
224 | list_for_each_entry(dmem, &imx21->dmem_list, list) { | ||
225 | dmem_bytes += dmem->size; | ||
226 | dmem_blocks++; | ||
227 | } | ||
228 | |||
229 | list_for_each_entry(ep_priv, &imx21->queue_for_etd, queue) | ||
230 | queued_for_etd++; | ||
231 | |||
232 | list_for_each_entry(etd, &imx21->queue_for_dmem, queue) | ||
233 | queued_for_dmem++; | ||
234 | |||
235 | spin_unlock_irqrestore(&imx21->lock, flags); | ||
236 | |||
237 | seq_printf(s, | ||
238 | "Frame: %d\n" | ||
239 | "ETDs allocated: %d/%d (max=%d)\n" | ||
240 | "ETDs in use sw: %d\n" | ||
241 | "ETDs in use hw: %d\n" | ||
242 | "DMEM alocated: %d/%d (max=%d)\n" | ||
243 | "DMEM blocks: %d\n" | ||
244 | "Queued waiting for ETD: %d\n" | ||
245 | "Queued waiting for DMEM: %d\n", | ||
246 | readl(imx21->regs + USBH_FRMNUB) & 0xFFFF, | ||
247 | etds_allocated, USB_NUM_ETD, imx21->etd_usage.maximum, | ||
248 | etds_sw_busy, | ||
249 | etds_hw_busy, | ||
250 | dmem_bytes, DMEM_SIZE, imx21->dmem_usage.maximum, | ||
251 | dmem_blocks, | ||
252 | queued_for_etd, | ||
253 | queued_for_dmem); | ||
254 | |||
255 | return 0; | ||
256 | } | ||
257 | |||
258 | static int debug_dmem_show(struct seq_file *s, void *v) | ||
259 | { | ||
260 | struct imx21 *imx21 = s->private; | ||
261 | struct imx21_dmem_area *dmem; | ||
262 | unsigned long flags; | ||
263 | char ep_text[40]; | ||
264 | |||
265 | spin_lock_irqsave(&imx21->lock, flags); | ||
266 | |||
267 | list_for_each_entry(dmem, &imx21->dmem_list, list) | ||
268 | seq_printf(s, | ||
269 | "%04X: size=0x%X " | ||
270 | "ep=%s\n", | ||
271 | dmem->offset, dmem->size, | ||
272 | format_ep(dmem->ep, ep_text, sizeof(ep_text))); | ||
273 | |||
274 | spin_unlock_irqrestore(&imx21->lock, flags); | ||
275 | |||
276 | return 0; | ||
277 | } | ||
278 | |||
279 | static int debug_etd_show(struct seq_file *s, void *v) | ||
280 | { | ||
281 | struct imx21 *imx21 = s->private; | ||
282 | struct etd_priv *etd; | ||
283 | char buf[60]; | ||
284 | u32 dword; | ||
285 | int i, j; | ||
286 | unsigned long flags; | ||
287 | |||
288 | spin_lock_irqsave(&imx21->lock, flags); | ||
289 | |||
290 | for (i = 0, etd = imx21->etd; i < USB_NUM_ETD; i++, etd++) { | ||
291 | int state = -1; | ||
292 | struct urb_priv *urb_priv; | ||
293 | if (etd->urb) { | ||
294 | urb_priv = etd->urb->hcpriv; | ||
295 | if (urb_priv) | ||
296 | state = urb_priv->state; | ||
297 | } | ||
298 | |||
299 | seq_printf(s, | ||
300 | "etd_num: %d\n" | ||
301 | "ep: %s\n" | ||
302 | "alloc: %d\n" | ||
303 | "len: %d\n" | ||
304 | "busy sw: %d\n" | ||
305 | "busy hw: %d\n" | ||
306 | "urb state: %d\n" | ||
307 | "current urb: %p\n", | ||
308 | |||
309 | i, | ||
310 | format_ep(etd->ep, buf, sizeof(buf)), | ||
311 | etd->alloc, | ||
312 | etd->len, | ||
313 | etd->urb != NULL, | ||
314 | (readl(imx21->regs + USBH_ETDENSET) & (1 << i)) > 0, | ||
315 | state, | ||
316 | etd->urb); | ||
317 | |||
318 | for (j = 0; j < 4; j++) { | ||
319 | dword = etd_readl(imx21, i, j); | ||
320 | switch (j) { | ||
321 | case 0: | ||
322 | format_etd_dword0(dword, buf, sizeof(buf)); | ||
323 | break; | ||
324 | case 2: | ||
325 | snprintf(buf, sizeof(buf), | ||
326 | "cc=0X%02X", dword >> DW2_COMPCODE); | ||
327 | break; | ||
328 | default: | ||
329 | *buf = 0; | ||
330 | break; | ||
331 | } | ||
332 | seq_printf(s, | ||
333 | "dword %d: submitted=%08X cur=%08X [%s]\n", | ||
334 | j, | ||
335 | etd->submitted_dwords[j], | ||
336 | dword, | ||
337 | buf); | ||
338 | } | ||
339 | seq_printf(s, "\n"); | ||
340 | } | ||
341 | |||
342 | spin_unlock_irqrestore(&imx21->lock, flags); | ||
343 | |||
344 | return 0; | ||
345 | } | ||
346 | |||
347 | static void debug_statistics_show_one(struct seq_file *s, | ||
348 | const char *name, struct debug_stats *stats) | ||
349 | { | ||
350 | seq_printf(s, "%s:\n" | ||
351 | "submitted URBs: %lu\n" | ||
352 | "completed OK: %lu\n" | ||
353 | "completed failed: %lu\n" | ||
354 | "unlinked: %lu\n" | ||
355 | "queued for ETD: %lu\n" | ||
356 | "queued for DMEM: %lu\n\n", | ||
357 | name, | ||
358 | stats->submitted, | ||
359 | stats->completed_ok, | ||
360 | stats->completed_failed, | ||
361 | stats->unlinked, | ||
362 | stats->queue_etd, | ||
363 | stats->queue_dmem); | ||
364 | } | ||
365 | |||
366 | static int debug_statistics_show(struct seq_file *s, void *v) | ||
367 | { | ||
368 | struct imx21 *imx21 = s->private; | ||
369 | unsigned long flags; | ||
370 | |||
371 | spin_lock_irqsave(&imx21->lock, flags); | ||
372 | |||
373 | debug_statistics_show_one(s, "nonisoc", &imx21->nonisoc_stats); | ||
374 | debug_statistics_show_one(s, "isoc", &imx21->isoc_stats); | ||
375 | seq_printf(s, "unblock kludge triggers: %lu\n", imx21->debug_unblocks); | ||
376 | spin_unlock_irqrestore(&imx21->lock, flags); | ||
377 | |||
378 | return 0; | ||
379 | } | ||
380 | |||
381 | static void debug_isoc_show_one(struct seq_file *s, | ||
382 | const char *name, int index, struct debug_isoc_trace *trace) | ||
383 | { | ||
384 | seq_printf(s, "%s %d:\n" | ||
385 | "cc=0X%02X\n" | ||
386 | "scheduled frame %d (%d)\n" | ||
387 | "submittted frame %d (%d)\n" | ||
388 | "completed frame %d (%d)\n" | ||
389 | "requested length=%d\n" | ||
390 | "completed length=%d\n\n", | ||
391 | name, index, | ||
392 | trace->cc, | ||
393 | trace->schedule_frame, trace->schedule_frame & 0xFFFF, | ||
394 | trace->submit_frame, trace->submit_frame & 0xFFFF, | ||
395 | trace->done_frame, trace->done_frame & 0xFFFF, | ||
396 | trace->request_len, | ||
397 | trace->done_len); | ||
398 | } | ||
399 | |||
400 | static int debug_isoc_show(struct seq_file *s, void *v) | ||
401 | { | ||
402 | struct imx21 *imx21 = s->private; | ||
403 | struct debug_isoc_trace *trace; | ||
404 | unsigned long flags; | ||
405 | int i; | ||
406 | |||
407 | spin_lock_irqsave(&imx21->lock, flags); | ||
408 | |||
409 | trace = imx21->isoc_trace_failed; | ||
410 | for (i = 0; i < ARRAY_SIZE(imx21->isoc_trace_failed); i++, trace++) | ||
411 | debug_isoc_show_one(s, "isoc failed", i, trace); | ||
412 | |||
413 | trace = imx21->isoc_trace; | ||
414 | for (i = 0; i < ARRAY_SIZE(imx21->isoc_trace); i++, trace++) | ||
415 | debug_isoc_show_one(s, "isoc", i, trace); | ||
416 | |||
417 | spin_unlock_irqrestore(&imx21->lock, flags); | ||
418 | |||
419 | return 0; | ||
420 | } | ||
421 | |||
422 | static int debug_status_open(struct inode *inode, struct file *file) | ||
423 | { | ||
424 | return single_open(file, debug_status_show, inode->i_private); | ||
425 | } | ||
426 | |||
427 | static int debug_dmem_open(struct inode *inode, struct file *file) | ||
428 | { | ||
429 | return single_open(file, debug_dmem_show, inode->i_private); | ||
430 | } | ||
431 | |||
432 | static int debug_etd_open(struct inode *inode, struct file *file) | ||
433 | { | ||
434 | return single_open(file, debug_etd_show, inode->i_private); | ||
435 | } | ||
436 | |||
437 | static int debug_statistics_open(struct inode *inode, struct file *file) | ||
438 | { | ||
439 | return single_open(file, debug_statistics_show, inode->i_private); | ||
440 | } | ||
441 | |||
442 | static int debug_isoc_open(struct inode *inode, struct file *file) | ||
443 | { | ||
444 | return single_open(file, debug_isoc_show, inode->i_private); | ||
445 | } | ||
446 | |||
447 | static const struct file_operations debug_status_fops = { | ||
448 | .open = debug_status_open, | ||
449 | .read = seq_read, | ||
450 | .llseek = seq_lseek, | ||
451 | .release = single_release, | ||
452 | }; | ||
453 | |||
454 | static const struct file_operations debug_dmem_fops = { | ||
455 | .open = debug_dmem_open, | ||
456 | .read = seq_read, | ||
457 | .llseek = seq_lseek, | ||
458 | .release = single_release, | ||
459 | }; | ||
460 | |||
461 | static const struct file_operations debug_etd_fops = { | ||
462 | .open = debug_etd_open, | ||
463 | .read = seq_read, | ||
464 | .llseek = seq_lseek, | ||
465 | .release = single_release, | ||
466 | }; | ||
467 | |||
468 | static const struct file_operations debug_statistics_fops = { | ||
469 | .open = debug_statistics_open, | ||
470 | .read = seq_read, | ||
471 | .llseek = seq_lseek, | ||
472 | .release = single_release, | ||
473 | }; | ||
474 | |||
475 | static const struct file_operations debug_isoc_fops = { | ||
476 | .open = debug_isoc_open, | ||
477 | .read = seq_read, | ||
478 | .llseek = seq_lseek, | ||
479 | .release = single_release, | ||
480 | }; | ||
481 | |||
482 | static void create_debug_files(struct imx21 *imx21) | ||
483 | { | ||
484 | imx21->debug_root = debugfs_create_dir(dev_name(imx21->dev), NULL); | ||
485 | if (!imx21->debug_root) | ||
486 | goto failed_create_rootdir; | ||
487 | |||
488 | if (!debugfs_create_file("status", S_IRUGO, | ||
489 | imx21->debug_root, imx21, &debug_status_fops)) | ||
490 | goto failed_create; | ||
491 | |||
492 | if (!debugfs_create_file("dmem", S_IRUGO, | ||
493 | imx21->debug_root, imx21, &debug_dmem_fops)) | ||
494 | goto failed_create; | ||
495 | |||
496 | if (!debugfs_create_file("etd", S_IRUGO, | ||
497 | imx21->debug_root, imx21, &debug_etd_fops)) | ||
498 | goto failed_create; | ||
499 | |||
500 | if (!debugfs_create_file("statistics", S_IRUGO, | ||
501 | imx21->debug_root, imx21, &debug_statistics_fops)) | ||
502 | goto failed_create; | ||
503 | |||
504 | if (!debugfs_create_file("isoc", S_IRUGO, | ||
505 | imx21->debug_root, imx21, &debug_isoc_fops)) | ||
506 | goto failed_create; | ||
507 | |||
508 | return; | ||
509 | |||
510 | failed_create: | ||
511 | debugfs_remove_recursive(imx21->debug_root); | ||
512 | |||
513 | failed_create_rootdir: | ||
514 | imx21->debug_root = NULL; | ||
515 | } | ||
516 | |||
517 | |||
518 | static void remove_debug_files(struct imx21 *imx21) | ||
519 | { | ||
520 | if (imx21->debug_root) { | ||
521 | debugfs_remove_recursive(imx21->debug_root); | ||
522 | imx21->debug_root = NULL; | ||
523 | } | ||
524 | } | ||
525 | |||
526 | #endif | ||
527 | |||
diff --git a/drivers/usb/host/imx21-hcd.c b/drivers/usb/host/imx21-hcd.c new file mode 100644 index 000000000000..213e270e1c29 --- /dev/null +++ b/drivers/usb/host/imx21-hcd.c | |||
@@ -0,0 +1,1789 @@ | |||
1 | /* | ||
2 | * USB Host Controller Driver for IMX21 | ||
3 | * | ||
4 | * Copyright (C) 2006 Loping Dog Embedded Systems | ||
5 | * Copyright (C) 2009 Martin Fuzzey | ||
6 | * Originally written by Jay Monkman <jtm@lopingdog.com> | ||
7 | * Ported to 2.6.30, debugged and enhanced by Martin Fuzzey | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify it | ||
10 | * under the terms of the GNU General Public License as published by the | ||
11 | * Free Software Foundation; either version 2 of the License, or (at your | ||
12 | * option) any later version. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, but | ||
15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | ||
16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
17 | * for more details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU General Public License | ||
20 | * along with this program; if not, write to the Free Software Foundation, | ||
21 | * Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
22 | */ | ||
23 | |||
24 | |||
25 | /* | ||
26 | * The i.MX21 USB hardware contains | ||
27 | * * 32 transfer descriptors (called ETDs) | ||
28 | * * 4Kb of Data memory | ||
29 | * | ||
30 | * The data memory is shared between the host and fuction controlers | ||
31 | * (but this driver only supports the host controler) | ||
32 | * | ||
33 | * So setting up a transfer involves: | ||
34 | * * Allocating a ETD | ||
35 | * * Fill in ETD with appropriate information | ||
36 | * * Allocating data memory (and putting the offset in the ETD) | ||
37 | * * Activate the ETD | ||
38 | * * Get interrupt when done. | ||
39 | * | ||
40 | * An ETD is assigned to each active endpoint. | ||
41 | * | ||
42 | * Low resource (ETD and Data memory) situations are handled differently for | ||
43 | * isochronous and non insosynchronous transactions : | ||
44 | * | ||
45 | * Non ISOC transfers are queued if either ETDs or Data memory are unavailable | ||
46 | * | ||
47 | * ISOC transfers use 2 ETDs per endpoint to achieve double buffering. | ||
48 | * They allocate both ETDs and Data memory during URB submission | ||
49 | * (and fail if unavailable). | ||
50 | */ | ||
51 | |||
52 | #include <linux/clk.h> | ||
53 | #include <linux/io.h> | ||
54 | #include <linux/kernel.h> | ||
55 | #include <linux/list.h> | ||
56 | #include <linux/platform_device.h> | ||
57 | #include <linux/usb.h> | ||
58 | |||
59 | #include "../core/hcd.h" | ||
60 | #include "imx21-hcd.h" | ||
61 | |||
62 | #ifdef DEBUG | ||
63 | #define DEBUG_LOG_FRAME(imx21, etd, event) \ | ||
64 | (etd)->event##_frame = readl((imx21)->regs + USBH_FRMNUB) | ||
65 | #else | ||
66 | #define DEBUG_LOG_FRAME(imx21, etd, event) do { } while (0) | ||
67 | #endif | ||
68 | |||
69 | static const char hcd_name[] = "imx21-hcd"; | ||
70 | |||
71 | static inline struct imx21 *hcd_to_imx21(struct usb_hcd *hcd) | ||
72 | { | ||
73 | return (struct imx21 *)hcd->hcd_priv; | ||
74 | } | ||
75 | |||
76 | |||
77 | /* =========================================== */ | ||
78 | /* Hardware access helpers */ | ||
79 | /* =========================================== */ | ||
80 | |||
81 | static inline void set_register_bits(struct imx21 *imx21, u32 offset, u32 mask) | ||
82 | { | ||
83 | void __iomem *reg = imx21->regs + offset; | ||
84 | writel(readl(reg) | mask, reg); | ||
85 | } | ||
86 | |||
87 | static inline void clear_register_bits(struct imx21 *imx21, | ||
88 | u32 offset, u32 mask) | ||
89 | { | ||
90 | void __iomem *reg = imx21->regs + offset; | ||
91 | writel(readl(reg) & ~mask, reg); | ||
92 | } | ||
93 | |||
94 | static inline void clear_toggle_bit(struct imx21 *imx21, u32 offset, u32 mask) | ||
95 | { | ||
96 | void __iomem *reg = imx21->regs + offset; | ||
97 | |||
98 | if (readl(reg) & mask) | ||
99 | writel(mask, reg); | ||
100 | } | ||
101 | |||
102 | static inline void set_toggle_bit(struct imx21 *imx21, u32 offset, u32 mask) | ||
103 | { | ||
104 | void __iomem *reg = imx21->regs + offset; | ||
105 | |||
106 | if (!(readl(reg) & mask)) | ||
107 | writel(mask, reg); | ||
108 | } | ||
109 | |||
110 | static void etd_writel(struct imx21 *imx21, int etd_num, int dword, u32 value) | ||
111 | { | ||
112 | writel(value, imx21->regs + USB_ETD_DWORD(etd_num, dword)); | ||
113 | } | ||
114 | |||
115 | static u32 etd_readl(struct imx21 *imx21, int etd_num, int dword) | ||
116 | { | ||
117 | return readl(imx21->regs + USB_ETD_DWORD(etd_num, dword)); | ||
118 | } | ||
119 | |||
120 | static inline int wrap_frame(int counter) | ||
121 | { | ||
122 | return counter & 0xFFFF; | ||
123 | } | ||
124 | |||
125 | static inline int frame_after(int frame, int after) | ||
126 | { | ||
127 | /* handle wrapping like jiffies time_afer */ | ||
128 | return (s16)((s16)after - (s16)frame) < 0; | ||
129 | } | ||
130 | |||
131 | static int imx21_hc_get_frame(struct usb_hcd *hcd) | ||
132 | { | ||
133 | struct imx21 *imx21 = hcd_to_imx21(hcd); | ||
134 | |||
135 | return wrap_frame(readl(imx21->regs + USBH_FRMNUB)); | ||
136 | } | ||
137 | |||
138 | |||
139 | #include "imx21-dbg.c" | ||
140 | |||
141 | /* =========================================== */ | ||
142 | /* ETD management */ | ||
143 | /* =========================================== */ | ||
144 | |||
145 | static int alloc_etd(struct imx21 *imx21) | ||
146 | { | ||
147 | int i; | ||
148 | struct etd_priv *etd = imx21->etd; | ||
149 | |||
150 | for (i = 0; i < USB_NUM_ETD; i++, etd++) { | ||
151 | if (etd->alloc == 0) { | ||
152 | memset(etd, 0, sizeof(imx21->etd[0])); | ||
153 | etd->alloc = 1; | ||
154 | debug_etd_allocated(imx21); | ||
155 | return i; | ||
156 | } | ||
157 | } | ||
158 | return -1; | ||
159 | } | ||
160 | |||
161 | static void disactivate_etd(struct imx21 *imx21, int num) | ||
162 | { | ||
163 | int etd_mask = (1 << num); | ||
164 | struct etd_priv *etd = &imx21->etd[num]; | ||
165 | |||
166 | writel(etd_mask, imx21->regs + USBH_ETDENCLR); | ||
167 | clear_register_bits(imx21, USBH_ETDDONEEN, etd_mask); | ||
168 | writel(etd_mask, imx21->regs + USB_ETDDMACHANLCLR); | ||
169 | clear_toggle_bit(imx21, USBH_ETDDONESTAT, etd_mask); | ||
170 | |||
171 | etd->active_count = 0; | ||
172 | |||
173 | DEBUG_LOG_FRAME(imx21, etd, disactivated); | ||
174 | } | ||
175 | |||
176 | static void reset_etd(struct imx21 *imx21, int num) | ||
177 | { | ||
178 | struct etd_priv *etd = imx21->etd + num; | ||
179 | int i; | ||
180 | |||
181 | disactivate_etd(imx21, num); | ||
182 | |||
183 | for (i = 0; i < 4; i++) | ||
184 | etd_writel(imx21, num, i, 0); | ||
185 | etd->urb = NULL; | ||
186 | etd->ep = NULL; | ||
187 | etd->td = NULL;; | ||
188 | } | ||
189 | |||
190 | static void free_etd(struct imx21 *imx21, int num) | ||
191 | { | ||
192 | if (num < 0) | ||
193 | return; | ||
194 | |||
195 | if (num >= USB_NUM_ETD) { | ||
196 | dev_err(imx21->dev, "BAD etd=%d!\n", num); | ||
197 | return; | ||
198 | } | ||
199 | if (imx21->etd[num].alloc == 0) { | ||
200 | dev_err(imx21->dev, "ETD %d already free!\n", num); | ||
201 | return; | ||
202 | } | ||
203 | |||
204 | debug_etd_freed(imx21); | ||
205 | reset_etd(imx21, num); | ||
206 | memset(&imx21->etd[num], 0, sizeof(imx21->etd[0])); | ||
207 | } | ||
208 | |||
209 | |||
210 | static void setup_etd_dword0(struct imx21 *imx21, | ||
211 | int etd_num, struct urb *urb, u8 dir, u16 maxpacket) | ||
212 | { | ||
213 | etd_writel(imx21, etd_num, 0, | ||
214 | ((u32) usb_pipedevice(urb->pipe)) << DW0_ADDRESS | | ||
215 | ((u32) usb_pipeendpoint(urb->pipe) << DW0_ENDPNT) | | ||
216 | ((u32) dir << DW0_DIRECT) | | ||
217 | ((u32) ((urb->dev->speed == USB_SPEED_LOW) ? | ||
218 | 1 : 0) << DW0_SPEED) | | ||
219 | ((u32) fmt_urb_to_etd[usb_pipetype(urb->pipe)] << DW0_FORMAT) | | ||
220 | ((u32) maxpacket << DW0_MAXPKTSIZ)); | ||
221 | } | ||
222 | |||
223 | static void activate_etd(struct imx21 *imx21, | ||
224 | int etd_num, dma_addr_t dma, u8 dir) | ||
225 | { | ||
226 | u32 etd_mask = 1 << etd_num; | ||
227 | struct etd_priv *etd = &imx21->etd[etd_num]; | ||
228 | |||
229 | clear_toggle_bit(imx21, USBH_ETDDONESTAT, etd_mask); | ||
230 | set_register_bits(imx21, USBH_ETDDONEEN, etd_mask); | ||
231 | clear_toggle_bit(imx21, USBH_XFILLSTAT, etd_mask); | ||
232 | clear_toggle_bit(imx21, USBH_YFILLSTAT, etd_mask); | ||
233 | |||
234 | if (dma) { | ||
235 | set_register_bits(imx21, USB_ETDDMACHANLCLR, etd_mask); | ||
236 | clear_toggle_bit(imx21, USBH_XBUFSTAT, etd_mask); | ||
237 | clear_toggle_bit(imx21, USBH_YBUFSTAT, etd_mask); | ||
238 | writel(dma, imx21->regs + USB_ETDSMSA(etd_num)); | ||
239 | set_register_bits(imx21, USB_ETDDMAEN, etd_mask); | ||
240 | } else { | ||
241 | if (dir != TD_DIR_IN) { | ||
242 | /* need to set for ZLP */ | ||
243 | set_toggle_bit(imx21, USBH_XFILLSTAT, etd_mask); | ||
244 | set_toggle_bit(imx21, USBH_YFILLSTAT, etd_mask); | ||
245 | } | ||
246 | } | ||
247 | |||
248 | DEBUG_LOG_FRAME(imx21, etd, activated); | ||
249 | |||
250 | #ifdef DEBUG | ||
251 | if (!etd->active_count) { | ||
252 | int i; | ||
253 | etd->activated_frame = readl(imx21->regs + USBH_FRMNUB); | ||
254 | etd->disactivated_frame = -1; | ||
255 | etd->last_int_frame = -1; | ||
256 | etd->last_req_frame = -1; | ||
257 | |||
258 | for (i = 0; i < 4; i++) | ||
259 | etd->submitted_dwords[i] = etd_readl(imx21, etd_num, i); | ||
260 | } | ||
261 | #endif | ||
262 | |||
263 | etd->active_count = 1; | ||
264 | writel(etd_mask, imx21->regs + USBH_ETDENSET); | ||
265 | } | ||
266 | |||
267 | /* =========================================== */ | ||
268 | /* Data memory management */ | ||
269 | /* =========================================== */ | ||
270 | |||
271 | static int alloc_dmem(struct imx21 *imx21, unsigned int size, | ||
272 | struct usb_host_endpoint *ep) | ||
273 | { | ||
274 | unsigned int offset = 0; | ||
275 | struct imx21_dmem_area *area; | ||
276 | struct imx21_dmem_area *tmp; | ||
277 | |||
278 | size += (~size + 1) & 0x3; /* Round to 4 byte multiple */ | ||
279 | |||
280 | if (size > DMEM_SIZE) { | ||
281 | dev_err(imx21->dev, "size=%d > DMEM_SIZE(%d)\n", | ||
282 | size, DMEM_SIZE); | ||
283 | return -EINVAL; | ||
284 | } | ||
285 | |||
286 | list_for_each_entry(tmp, &imx21->dmem_list, list) { | ||
287 | if ((size + offset) < offset) | ||
288 | goto fail; | ||
289 | if ((size + offset) <= tmp->offset) | ||
290 | break; | ||
291 | offset = tmp->size + tmp->offset; | ||
292 | if ((offset + size) > DMEM_SIZE) | ||
293 | goto fail; | ||
294 | } | ||
295 | |||
296 | area = kmalloc(sizeof(struct imx21_dmem_area), GFP_ATOMIC); | ||
297 | if (area == NULL) | ||
298 | return -ENOMEM; | ||
299 | |||
300 | area->ep = ep; | ||
301 | area->offset = offset; | ||
302 | area->size = size; | ||
303 | list_add_tail(&area->list, &tmp->list); | ||
304 | debug_dmem_allocated(imx21, size); | ||
305 | return offset; | ||
306 | |||
307 | fail: | ||
308 | return -ENOMEM; | ||
309 | } | ||
310 | |||
311 | /* Memory now available for a queued ETD - activate it */ | ||
312 | static void activate_queued_etd(struct imx21 *imx21, | ||
313 | struct etd_priv *etd, u32 dmem_offset) | ||
314 | { | ||
315 | struct urb_priv *urb_priv = etd->urb->hcpriv; | ||
316 | int etd_num = etd - &imx21->etd[0]; | ||
317 | u32 maxpacket = etd_readl(imx21, etd_num, 1) >> DW1_YBUFSRTAD; | ||
318 | u8 dir = (etd_readl(imx21, etd_num, 2) >> DW2_DIRPID) & 0x03; | ||
319 | |||
320 | dev_dbg(imx21->dev, "activating queued ETD %d now DMEM available\n", | ||
321 | etd_num); | ||
322 | etd_writel(imx21, etd_num, 1, | ||
323 | ((dmem_offset + maxpacket) << DW1_YBUFSRTAD) | dmem_offset); | ||
324 | |||
325 | urb_priv->active = 1; | ||
326 | activate_etd(imx21, etd_num, etd->dma_handle, dir); | ||
327 | } | ||
328 | |||
329 | static void free_dmem(struct imx21 *imx21, int offset) | ||
330 | { | ||
331 | struct imx21_dmem_area *area; | ||
332 | struct etd_priv *etd, *tmp; | ||
333 | int found = 0; | ||
334 | |||
335 | list_for_each_entry(area, &imx21->dmem_list, list) { | ||
336 | if (area->offset == offset) { | ||
337 | debug_dmem_freed(imx21, area->size); | ||
338 | list_del(&area->list); | ||
339 | kfree(area); | ||
340 | found = 1; | ||
341 | break; | ||
342 | } | ||
343 | } | ||
344 | |||
345 | if (!found) { | ||
346 | dev_err(imx21->dev, | ||
347 | "Trying to free unallocated DMEM %d\n", offset); | ||
348 | return; | ||
349 | } | ||
350 | |||
351 | /* Try again to allocate memory for anything we've queued */ | ||
352 | list_for_each_entry_safe(etd, tmp, &imx21->queue_for_dmem, queue) { | ||
353 | offset = alloc_dmem(imx21, etd->dmem_size, etd->ep); | ||
354 | if (offset >= 0) { | ||
355 | list_del(&etd->queue); | ||
356 | activate_queued_etd(imx21, etd, (u32)offset); | ||
357 | } | ||
358 | } | ||
359 | } | ||
360 | |||
361 | static void free_epdmem(struct imx21 *imx21, struct usb_host_endpoint *ep) | ||
362 | { | ||
363 | struct imx21_dmem_area *area, *tmp; | ||
364 | |||
365 | list_for_each_entry_safe(area, tmp, &imx21->dmem_list, list) { | ||
366 | if (area->ep == ep) { | ||
367 | dev_err(imx21->dev, | ||
368 | "Active DMEM %d for disabled ep=%p\n", | ||
369 | area->offset, ep); | ||
370 | list_del(&area->list); | ||
371 | kfree(area); | ||
372 | } | ||
373 | } | ||
374 | } | ||
375 | |||
376 | |||
377 | /* =========================================== */ | ||
378 | /* End handling */ | ||
379 | /* =========================================== */ | ||
380 | static void schedule_nonisoc_etd(struct imx21 *imx21, struct urb *urb); | ||
381 | |||
382 | /* Endpoint now idle - release it's ETD(s) or asssign to queued request */ | ||
383 | static void ep_idle(struct imx21 *imx21, struct ep_priv *ep_priv) | ||
384 | { | ||
385 | int etd_num; | ||
386 | int i; | ||
387 | |||
388 | for (i = 0; i < NUM_ISO_ETDS; i++) { | ||
389 | etd_num = ep_priv->etd[i]; | ||
390 | if (etd_num < 0) | ||
391 | continue; | ||
392 | |||
393 | ep_priv->etd[i] = -1; | ||
394 | if (list_empty(&imx21->queue_for_etd)) { | ||
395 | free_etd(imx21, etd_num); | ||
396 | continue; | ||
397 | } | ||
398 | |||
399 | dev_dbg(imx21->dev, | ||
400 | "assigning idle etd %d for queued request\n", etd_num); | ||
401 | ep_priv = list_first_entry(&imx21->queue_for_etd, | ||
402 | struct ep_priv, queue); | ||
403 | list_del(&ep_priv->queue); | ||
404 | reset_etd(imx21, etd_num); | ||
405 | ep_priv->waiting_etd = 0; | ||
406 | ep_priv->etd[i] = etd_num; | ||
407 | |||
408 | if (list_empty(&ep_priv->ep->urb_list)) { | ||
409 | dev_err(imx21->dev, "No urb for queued ep!\n"); | ||
410 | continue; | ||
411 | } | ||
412 | schedule_nonisoc_etd(imx21, list_first_entry( | ||
413 | &ep_priv->ep->urb_list, struct urb, urb_list)); | ||
414 | } | ||
415 | } | ||
416 | |||
417 | static void urb_done(struct usb_hcd *hcd, struct urb *urb, int status) | ||
418 | __releases(imx21->lock) | ||
419 | __acquires(imx21->lock) | ||
420 | { | ||
421 | struct imx21 *imx21 = hcd_to_imx21(hcd); | ||
422 | struct ep_priv *ep_priv = urb->ep->hcpriv; | ||
423 | struct urb_priv *urb_priv = urb->hcpriv; | ||
424 | |||
425 | debug_urb_completed(imx21, urb, status); | ||
426 | dev_vdbg(imx21->dev, "urb %p done %d\n", urb, status); | ||
427 | |||
428 | kfree(urb_priv->isoc_td); | ||
429 | kfree(urb->hcpriv); | ||
430 | urb->hcpriv = NULL; | ||
431 | usb_hcd_unlink_urb_from_ep(hcd, urb); | ||
432 | spin_unlock(&imx21->lock); | ||
433 | usb_hcd_giveback_urb(hcd, urb, status); | ||
434 | spin_lock(&imx21->lock); | ||
435 | if (list_empty(&ep_priv->ep->urb_list)) | ||
436 | ep_idle(imx21, ep_priv); | ||
437 | } | ||
438 | |||
439 | /* =========================================== */ | ||
440 | /* ISOC Handling ... */ | ||
441 | /* =========================================== */ | ||
442 | |||
443 | static void schedule_isoc_etds(struct usb_hcd *hcd, | ||
444 | struct usb_host_endpoint *ep) | ||
445 | { | ||
446 | struct imx21 *imx21 = hcd_to_imx21(hcd); | ||
447 | struct ep_priv *ep_priv = ep->hcpriv; | ||
448 | struct etd_priv *etd; | ||
449 | struct urb_priv *urb_priv; | ||
450 | struct td *td; | ||
451 | int etd_num; | ||
452 | int i; | ||
453 | int cur_frame; | ||
454 | u8 dir; | ||
455 | |||
456 | for (i = 0; i < NUM_ISO_ETDS; i++) { | ||
457 | too_late: | ||
458 | if (list_empty(&ep_priv->td_list)) | ||
459 | break; | ||
460 | |||
461 | etd_num = ep_priv->etd[i]; | ||
462 | if (etd_num < 0) | ||
463 | break; | ||
464 | |||
465 | etd = &imx21->etd[etd_num]; | ||
466 | if (etd->urb) | ||
467 | continue; | ||
468 | |||
469 | td = list_entry(ep_priv->td_list.next, struct td, list); | ||
470 | list_del(&td->list); | ||
471 | urb_priv = td->urb->hcpriv; | ||
472 | |||
473 | cur_frame = imx21_hc_get_frame(hcd); | ||
474 | if (frame_after(cur_frame, td->frame)) { | ||
475 | dev_dbg(imx21->dev, "isoc too late frame %d > %d\n", | ||
476 | cur_frame, td->frame); | ||
477 | urb_priv->isoc_status = -EXDEV; | ||
478 | td->urb->iso_frame_desc[ | ||
479 | td->isoc_index].actual_length = 0; | ||
480 | td->urb->iso_frame_desc[td->isoc_index].status = -EXDEV; | ||
481 | if (--urb_priv->isoc_remaining == 0) | ||
482 | urb_done(hcd, td->urb, urb_priv->isoc_status); | ||
483 | goto too_late; | ||
484 | } | ||
485 | |||
486 | urb_priv->active = 1; | ||
487 | etd->td = td; | ||
488 | etd->ep = td->ep; | ||
489 | etd->urb = td->urb; | ||
490 | etd->len = td->len; | ||
491 | |||
492 | debug_isoc_submitted(imx21, cur_frame, td); | ||
493 | |||
494 | dir = usb_pipeout(td->urb->pipe) ? TD_DIR_OUT : TD_DIR_IN; | ||
495 | setup_etd_dword0(imx21, etd_num, td->urb, dir, etd->dmem_size); | ||
496 | etd_writel(imx21, etd_num, 1, etd->dmem_offset); | ||
497 | etd_writel(imx21, etd_num, 2, | ||
498 | (TD_NOTACCESSED << DW2_COMPCODE) | | ||
499 | ((td->frame & 0xFFFF) << DW2_STARTFRM)); | ||
500 | etd_writel(imx21, etd_num, 3, | ||
501 | (TD_NOTACCESSED << DW3_COMPCODE0) | | ||
502 | (td->len << DW3_PKTLEN0)); | ||
503 | |||
504 | activate_etd(imx21, etd_num, td->data, dir); | ||
505 | } | ||
506 | } | ||
507 | |||
508 | static void isoc_etd_done(struct usb_hcd *hcd, struct urb *urb, int etd_num) | ||
509 | { | ||
510 | struct imx21 *imx21 = hcd_to_imx21(hcd); | ||
511 | int etd_mask = 1 << etd_num; | ||
512 | struct urb_priv *urb_priv = urb->hcpriv; | ||
513 | struct etd_priv *etd = imx21->etd + etd_num; | ||
514 | struct td *td = etd->td; | ||
515 | struct usb_host_endpoint *ep = etd->ep; | ||
516 | int isoc_index = td->isoc_index; | ||
517 | unsigned int pipe = urb->pipe; | ||
518 | int dir_in = usb_pipein(pipe); | ||
519 | int cc; | ||
520 | int bytes_xfrd; | ||
521 | |||
522 | disactivate_etd(imx21, etd_num); | ||
523 | |||
524 | cc = (etd_readl(imx21, etd_num, 3) >> DW3_COMPCODE0) & 0xf; | ||
525 | bytes_xfrd = etd_readl(imx21, etd_num, 3) & 0x3ff; | ||
526 | |||
527 | /* Input doesn't always fill the buffer, don't generate an error | ||
528 | * when this happens. | ||
529 | */ | ||
530 | if (dir_in && (cc == TD_DATAUNDERRUN)) | ||
531 | cc = TD_CC_NOERROR; | ||
532 | |||
533 | if (cc == TD_NOTACCESSED) | ||
534 | bytes_xfrd = 0; | ||
535 | |||
536 | debug_isoc_completed(imx21, | ||
537 | imx21_hc_get_frame(hcd), td, cc, bytes_xfrd); | ||
538 | if (cc) { | ||
539 | urb_priv->isoc_status = -EXDEV; | ||
540 | dev_dbg(imx21->dev, | ||
541 | "bad iso cc=0x%X frame=%d sched frame=%d " | ||
542 | "cnt=%d len=%d urb=%p etd=%d index=%d\n", | ||
543 | cc, imx21_hc_get_frame(hcd), td->frame, | ||
544 | bytes_xfrd, td->len, urb, etd_num, isoc_index); | ||
545 | } | ||
546 | |||
547 | if (dir_in) | ||
548 | clear_toggle_bit(imx21, USBH_XFILLSTAT, etd_mask); | ||
549 | |||
550 | urb->actual_length += bytes_xfrd; | ||
551 | urb->iso_frame_desc[isoc_index].actual_length = bytes_xfrd; | ||
552 | urb->iso_frame_desc[isoc_index].status = cc_to_error[cc]; | ||
553 | |||
554 | etd->td = NULL; | ||
555 | etd->urb = NULL; | ||
556 | etd->ep = NULL; | ||
557 | |||
558 | if (--urb_priv->isoc_remaining == 0) | ||
559 | urb_done(hcd, urb, urb_priv->isoc_status); | ||
560 | |||
561 | schedule_isoc_etds(hcd, ep); | ||
562 | } | ||
563 | |||
564 | static struct ep_priv *alloc_isoc_ep( | ||
565 | struct imx21 *imx21, struct usb_host_endpoint *ep) | ||
566 | { | ||
567 | struct ep_priv *ep_priv; | ||
568 | int i; | ||
569 | |||
570 | ep_priv = kzalloc(sizeof(struct ep_priv), GFP_ATOMIC); | ||
571 | if (ep_priv == NULL) | ||
572 | return NULL; | ||
573 | |||
574 | /* Allocate the ETDs */ | ||
575 | for (i = 0; i < NUM_ISO_ETDS; i++) { | ||
576 | ep_priv->etd[i] = alloc_etd(imx21); | ||
577 | if (ep_priv->etd[i] < 0) { | ||
578 | int j; | ||
579 | dev_err(imx21->dev, "isoc: Couldn't allocate etd\n"); | ||
580 | for (j = 0; j < i; j++) | ||
581 | free_etd(imx21, ep_priv->etd[j]); | ||
582 | goto alloc_etd_failed; | ||
583 | } | ||
584 | imx21->etd[ep_priv->etd[i]].ep = ep; | ||
585 | } | ||
586 | |||
587 | INIT_LIST_HEAD(&ep_priv->td_list); | ||
588 | ep_priv->ep = ep; | ||
589 | ep->hcpriv = ep_priv; | ||
590 | return ep_priv; | ||
591 | |||
592 | alloc_etd_failed: | ||
593 | kfree(ep_priv); | ||
594 | return NULL; | ||
595 | } | ||
596 | |||
597 | static int imx21_hc_urb_enqueue_isoc(struct usb_hcd *hcd, | ||
598 | struct usb_host_endpoint *ep, | ||
599 | struct urb *urb, gfp_t mem_flags) | ||
600 | { | ||
601 | struct imx21 *imx21 = hcd_to_imx21(hcd); | ||
602 | struct urb_priv *urb_priv; | ||
603 | unsigned long flags; | ||
604 | struct ep_priv *ep_priv; | ||
605 | struct td *td = NULL; | ||
606 | int i; | ||
607 | int ret; | ||
608 | int cur_frame; | ||
609 | u16 maxpacket; | ||
610 | |||
611 | urb_priv = kzalloc(sizeof(struct urb_priv), mem_flags); | ||
612 | if (urb_priv == NULL) | ||
613 | return -ENOMEM; | ||
614 | |||
615 | urb_priv->isoc_td = kzalloc( | ||
616 | sizeof(struct td) * urb->number_of_packets, mem_flags); | ||
617 | if (urb_priv->isoc_td == NULL) { | ||
618 | ret = -ENOMEM; | ||
619 | goto alloc_td_failed; | ||
620 | } | ||
621 | |||
622 | spin_lock_irqsave(&imx21->lock, flags); | ||
623 | |||
624 | if (ep->hcpriv == NULL) { | ||
625 | ep_priv = alloc_isoc_ep(imx21, ep); | ||
626 | if (ep_priv == NULL) { | ||
627 | ret = -ENOMEM; | ||
628 | goto alloc_ep_failed; | ||
629 | } | ||
630 | } else { | ||
631 | ep_priv = ep->hcpriv; | ||
632 | } | ||
633 | |||
634 | ret = usb_hcd_link_urb_to_ep(hcd, urb); | ||
635 | if (ret) | ||
636 | goto link_failed; | ||
637 | |||
638 | urb->status = -EINPROGRESS; | ||
639 | urb->actual_length = 0; | ||
640 | urb->error_count = 0; | ||
641 | urb->hcpriv = urb_priv; | ||
642 | urb_priv->ep = ep; | ||
643 | |||
644 | /* allocate data memory for largest packets if not already done */ | ||
645 | maxpacket = usb_maxpacket(urb->dev, urb->pipe, usb_pipeout(urb->pipe)); | ||
646 | for (i = 0; i < NUM_ISO_ETDS; i++) { | ||
647 | struct etd_priv *etd = &imx21->etd[ep_priv->etd[i]]; | ||
648 | |||
649 | if (etd->dmem_size > 0 && etd->dmem_size < maxpacket) { | ||
650 | /* not sure if this can really occur.... */ | ||
651 | dev_err(imx21->dev, "increasing isoc buffer %d->%d\n", | ||
652 | etd->dmem_size, maxpacket); | ||
653 | ret = -EMSGSIZE; | ||
654 | goto alloc_dmem_failed; | ||
655 | } | ||
656 | |||
657 | if (etd->dmem_size == 0) { | ||
658 | etd->dmem_offset = alloc_dmem(imx21, maxpacket, ep); | ||
659 | if (etd->dmem_offset < 0) { | ||
660 | dev_dbg(imx21->dev, "failed alloc isoc dmem\n"); | ||
661 | ret = -EAGAIN; | ||
662 | goto alloc_dmem_failed; | ||
663 | } | ||
664 | etd->dmem_size = maxpacket; | ||
665 | } | ||
666 | } | ||
667 | |||
668 | /* calculate frame */ | ||
669 | cur_frame = imx21_hc_get_frame(hcd); | ||
670 | if (urb->transfer_flags & URB_ISO_ASAP) { | ||
671 | if (list_empty(&ep_priv->td_list)) | ||
672 | urb->start_frame = cur_frame + 5; | ||
673 | else | ||
674 | urb->start_frame = list_entry( | ||
675 | ep_priv->td_list.prev, | ||
676 | struct td, list)->frame + urb->interval; | ||
677 | } | ||
678 | urb->start_frame = wrap_frame(urb->start_frame); | ||
679 | if (frame_after(cur_frame, urb->start_frame)) { | ||
680 | dev_dbg(imx21->dev, | ||
681 | "enqueue: adjusting iso start %d (cur=%d) asap=%d\n", | ||
682 | urb->start_frame, cur_frame, | ||
683 | (urb->transfer_flags & URB_ISO_ASAP) != 0); | ||
684 | urb->start_frame = wrap_frame(cur_frame + 1); | ||
685 | } | ||
686 | |||
687 | /* set up transfers */ | ||
688 | td = urb_priv->isoc_td; | ||
689 | for (i = 0; i < urb->number_of_packets; i++, td++) { | ||
690 | td->ep = ep; | ||
691 | td->urb = urb; | ||
692 | td->len = urb->iso_frame_desc[i].length; | ||
693 | td->isoc_index = i; | ||
694 | td->frame = wrap_frame(urb->start_frame + urb->interval * i); | ||
695 | td->data = urb->transfer_dma + urb->iso_frame_desc[i].offset; | ||
696 | list_add_tail(&td->list, &ep_priv->td_list); | ||
697 | } | ||
698 | |||
699 | urb_priv->isoc_remaining = urb->number_of_packets; | ||
700 | dev_vdbg(imx21->dev, "setup %d packets for iso frame %d->%d\n", | ||
701 | urb->number_of_packets, urb->start_frame, td->frame); | ||
702 | |||
703 | debug_urb_submitted(imx21, urb); | ||
704 | schedule_isoc_etds(hcd, ep); | ||
705 | |||
706 | spin_unlock_irqrestore(&imx21->lock, flags); | ||
707 | return 0; | ||
708 | |||
709 | alloc_dmem_failed: | ||
710 | usb_hcd_unlink_urb_from_ep(hcd, urb); | ||
711 | |||
712 | link_failed: | ||
713 | alloc_ep_failed: | ||
714 | spin_unlock_irqrestore(&imx21->lock, flags); | ||
715 | kfree(urb_priv->isoc_td); | ||
716 | |||
717 | alloc_td_failed: | ||
718 | kfree(urb_priv); | ||
719 | return ret; | ||
720 | } | ||
721 | |||
722 | static void dequeue_isoc_urb(struct imx21 *imx21, | ||
723 | struct urb *urb, struct ep_priv *ep_priv) | ||
724 | { | ||
725 | struct urb_priv *urb_priv = urb->hcpriv; | ||
726 | struct td *td, *tmp; | ||
727 | int i; | ||
728 | |||
729 | if (urb_priv->active) { | ||
730 | for (i = 0; i < NUM_ISO_ETDS; i++) { | ||
731 | int etd_num = ep_priv->etd[i]; | ||
732 | if (etd_num != -1 && imx21->etd[etd_num].urb == urb) { | ||
733 | struct etd_priv *etd = imx21->etd + etd_num; | ||
734 | |||
735 | reset_etd(imx21, etd_num); | ||
736 | if (etd->dmem_size) | ||
737 | free_dmem(imx21, etd->dmem_offset); | ||
738 | etd->dmem_size = 0; | ||
739 | } | ||
740 | } | ||
741 | } | ||
742 | |||
743 | list_for_each_entry_safe(td, tmp, &ep_priv->td_list, list) { | ||
744 | if (td->urb == urb) { | ||
745 | dev_vdbg(imx21->dev, "removing td %p\n", td); | ||
746 | list_del(&td->list); | ||
747 | } | ||
748 | } | ||
749 | } | ||
750 | |||
751 | /* =========================================== */ | ||
752 | /* NON ISOC Handling ... */ | ||
753 | /* =========================================== */ | ||
754 | |||
755 | static void schedule_nonisoc_etd(struct imx21 *imx21, struct urb *urb) | ||
756 | { | ||
757 | unsigned int pipe = urb->pipe; | ||
758 | struct urb_priv *urb_priv = urb->hcpriv; | ||
759 | struct ep_priv *ep_priv = urb_priv->ep->hcpriv; | ||
760 | int state = urb_priv->state; | ||
761 | int etd_num = ep_priv->etd[0]; | ||
762 | struct etd_priv *etd; | ||
763 | int dmem_offset; | ||
764 | u32 count; | ||
765 | u16 etd_buf_size; | ||
766 | u16 maxpacket; | ||
767 | u8 dir; | ||
768 | u8 bufround; | ||
769 | u8 datatoggle; | ||
770 | u8 interval = 0; | ||
771 | u8 relpolpos = 0; | ||
772 | |||
773 | if (etd_num < 0) { | ||
774 | dev_err(imx21->dev, "No valid ETD\n"); | ||
775 | return; | ||
776 | } | ||
777 | if (readl(imx21->regs + USBH_ETDENSET) & (1 << etd_num)) | ||
778 | dev_err(imx21->dev, "submitting to active ETD %d\n", etd_num); | ||
779 | |||
780 | etd = &imx21->etd[etd_num]; | ||
781 | maxpacket = usb_maxpacket(urb->dev, pipe, usb_pipeout(pipe)); | ||
782 | if (!maxpacket) | ||
783 | maxpacket = 8; | ||
784 | |||
785 | if (usb_pipecontrol(pipe) && (state != US_CTRL_DATA)) { | ||
786 | if (state == US_CTRL_SETUP) { | ||
787 | dir = TD_DIR_SETUP; | ||
788 | etd->dma_handle = urb->setup_dma; | ||
789 | bufround = 0; | ||
790 | count = 8; | ||
791 | datatoggle = TD_TOGGLE_DATA0; | ||
792 | } else { /* US_CTRL_ACK */ | ||
793 | dir = usb_pipeout(pipe) ? TD_DIR_IN : TD_DIR_OUT; | ||
794 | etd->dma_handle = urb->transfer_dma; | ||
795 | bufround = 0; | ||
796 | count = 0; | ||
797 | datatoggle = TD_TOGGLE_DATA1; | ||
798 | } | ||
799 | } else { | ||
800 | dir = usb_pipeout(pipe) ? TD_DIR_OUT : TD_DIR_IN; | ||
801 | bufround = (dir == TD_DIR_IN) ? 1 : 0; | ||
802 | etd->dma_handle = urb->transfer_dma; | ||
803 | if (usb_pipebulk(pipe) && (state == US_BULK0)) | ||
804 | count = 0; | ||
805 | else | ||
806 | count = urb->transfer_buffer_length; | ||
807 | |||
808 | if (usb_pipecontrol(pipe)) { | ||
809 | datatoggle = TD_TOGGLE_DATA1; | ||
810 | } else { | ||
811 | if (usb_gettoggle( | ||
812 | urb->dev, | ||
813 | usb_pipeendpoint(urb->pipe), | ||
814 | usb_pipeout(urb->pipe))) | ||
815 | datatoggle = TD_TOGGLE_DATA1; | ||
816 | else | ||
817 | datatoggle = TD_TOGGLE_DATA0; | ||
818 | } | ||
819 | } | ||
820 | |||
821 | etd->urb = urb; | ||
822 | etd->ep = urb_priv->ep; | ||
823 | etd->len = count; | ||
824 | |||
825 | if (usb_pipeint(pipe)) { | ||
826 | interval = urb->interval; | ||
827 | relpolpos = (readl(imx21->regs + USBH_FRMNUB) + 1) & 0xff; | ||
828 | } | ||
829 | |||
830 | /* Write ETD to device memory */ | ||
831 | setup_etd_dword0(imx21, etd_num, urb, dir, maxpacket); | ||
832 | |||
833 | etd_writel(imx21, etd_num, 2, | ||
834 | (u32) interval << DW2_POLINTERV | | ||
835 | ((u32) relpolpos << DW2_RELPOLPOS) | | ||
836 | ((u32) dir << DW2_DIRPID) | | ||
837 | ((u32) bufround << DW2_BUFROUND) | | ||
838 | ((u32) datatoggle << DW2_DATATOG) | | ||
839 | ((u32) TD_NOTACCESSED << DW2_COMPCODE)); | ||
840 | |||
841 | /* DMA will always transfer buffer size even if TOBYCNT in DWORD3 | ||
842 | is smaller. Make sure we don't overrun the buffer! | ||
843 | */ | ||
844 | if (count && count < maxpacket) | ||
845 | etd_buf_size = count; | ||
846 | else | ||
847 | etd_buf_size = maxpacket; | ||
848 | |||
849 | etd_writel(imx21, etd_num, 3, | ||
850 | ((u32) (etd_buf_size - 1) << DW3_BUFSIZE) | (u32) count); | ||
851 | |||
852 | if (!count) | ||
853 | etd->dma_handle = 0; | ||
854 | |||
855 | /* allocate x and y buffer space at once */ | ||
856 | etd->dmem_size = (count > maxpacket) ? maxpacket * 2 : maxpacket; | ||
857 | dmem_offset = alloc_dmem(imx21, etd->dmem_size, urb_priv->ep); | ||
858 | if (dmem_offset < 0) { | ||
859 | /* Setup everything we can in HW and update when we get DMEM */ | ||
860 | etd_writel(imx21, etd_num, 1, (u32)maxpacket << 16); | ||
861 | |||
862 | dev_dbg(imx21->dev, "Queuing etd %d for DMEM\n", etd_num); | ||
863 | debug_urb_queued_for_dmem(imx21, urb); | ||
864 | list_add_tail(&etd->queue, &imx21->queue_for_dmem); | ||
865 | return; | ||
866 | } | ||
867 | |||
868 | etd_writel(imx21, etd_num, 1, | ||
869 | (((u32) dmem_offset + (u32) maxpacket) << DW1_YBUFSRTAD) | | ||
870 | (u32) dmem_offset); | ||
871 | |||
872 | urb_priv->active = 1; | ||
873 | |||
874 | /* enable the ETD to kick off transfer */ | ||
875 | dev_vdbg(imx21->dev, "Activating etd %d for %d bytes %s\n", | ||
876 | etd_num, count, dir != TD_DIR_IN ? "out" : "in"); | ||
877 | activate_etd(imx21, etd_num, etd->dma_handle, dir); | ||
878 | |||
879 | } | ||
880 | |||
881 | static void nonisoc_etd_done(struct usb_hcd *hcd, struct urb *urb, int etd_num) | ||
882 | { | ||
883 | struct imx21 *imx21 = hcd_to_imx21(hcd); | ||
884 | struct etd_priv *etd = &imx21->etd[etd_num]; | ||
885 | u32 etd_mask = 1 << etd_num; | ||
886 | struct urb_priv *urb_priv = urb->hcpriv; | ||
887 | int dir; | ||
888 | u16 xbufaddr; | ||
889 | int cc; | ||
890 | u32 bytes_xfrd; | ||
891 | int etd_done; | ||
892 | |||
893 | disactivate_etd(imx21, etd_num); | ||
894 | |||
895 | dir = (etd_readl(imx21, etd_num, 0) >> DW0_DIRECT) & 0x3; | ||
896 | xbufaddr = etd_readl(imx21, etd_num, 1) & 0xffff; | ||
897 | cc = (etd_readl(imx21, etd_num, 2) >> DW2_COMPCODE) & 0xf; | ||
898 | bytes_xfrd = etd->len - (etd_readl(imx21, etd_num, 3) & 0x1fffff); | ||
899 | |||
900 | /* save toggle carry */ | ||
901 | usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe), | ||
902 | usb_pipeout(urb->pipe), | ||
903 | (etd_readl(imx21, etd_num, 0) >> DW0_TOGCRY) & 0x1); | ||
904 | |||
905 | if (dir == TD_DIR_IN) { | ||
906 | clear_toggle_bit(imx21, USBH_XFILLSTAT, etd_mask); | ||
907 | clear_toggle_bit(imx21, USBH_YFILLSTAT, etd_mask); | ||
908 | } | ||
909 | free_dmem(imx21, xbufaddr); | ||
910 | |||
911 | urb->error_count = 0; | ||
912 | if (!(urb->transfer_flags & URB_SHORT_NOT_OK) | ||
913 | && (cc == TD_DATAUNDERRUN)) | ||
914 | cc = TD_CC_NOERROR; | ||
915 | |||
916 | if (cc != 0) | ||
917 | dev_vdbg(imx21->dev, "cc is 0x%x\n", cc); | ||
918 | |||
919 | etd_done = (cc_to_error[cc] != 0); /* stop if error */ | ||
920 | |||
921 | switch (usb_pipetype(urb->pipe)) { | ||
922 | case PIPE_CONTROL: | ||
923 | switch (urb_priv->state) { | ||
924 | case US_CTRL_SETUP: | ||
925 | if (urb->transfer_buffer_length > 0) | ||
926 | urb_priv->state = US_CTRL_DATA; | ||
927 | else | ||
928 | urb_priv->state = US_CTRL_ACK; | ||
929 | break; | ||
930 | case US_CTRL_DATA: | ||
931 | urb->actual_length += bytes_xfrd; | ||
932 | urb_priv->state = US_CTRL_ACK; | ||
933 | break; | ||
934 | case US_CTRL_ACK: | ||
935 | etd_done = 1; | ||
936 | break; | ||
937 | default: | ||
938 | dev_err(imx21->dev, | ||
939 | "Invalid pipe state %d\n", urb_priv->state); | ||
940 | etd_done = 1; | ||
941 | break; | ||
942 | } | ||
943 | break; | ||
944 | |||
945 | case PIPE_BULK: | ||
946 | urb->actual_length += bytes_xfrd; | ||
947 | if ((urb_priv->state == US_BULK) | ||
948 | && (urb->transfer_flags & URB_ZERO_PACKET) | ||
949 | && urb->transfer_buffer_length > 0 | ||
950 | && ((urb->transfer_buffer_length % | ||
951 | usb_maxpacket(urb->dev, urb->pipe, | ||
952 | usb_pipeout(urb->pipe))) == 0)) { | ||
953 | /* need a 0-packet */ | ||
954 | urb_priv->state = US_BULK0; | ||
955 | } else { | ||
956 | etd_done = 1; | ||
957 | } | ||
958 | break; | ||
959 | |||
960 | case PIPE_INTERRUPT: | ||
961 | urb->actual_length += bytes_xfrd; | ||
962 | etd_done = 1; | ||
963 | break; | ||
964 | } | ||
965 | |||
966 | if (!etd_done) { | ||
967 | dev_vdbg(imx21->dev, "next state=%d\n", urb_priv->state); | ||
968 | schedule_nonisoc_etd(imx21, urb); | ||
969 | } else { | ||
970 | struct usb_host_endpoint *ep = urb->ep; | ||
971 | |||
972 | urb_done(hcd, urb, cc_to_error[cc]); | ||
973 | etd->urb = NULL; | ||
974 | |||
975 | if (!list_empty(&ep->urb_list)) { | ||
976 | urb = list_first_entry(&ep->urb_list, | ||
977 | struct urb, urb_list); | ||
978 | dev_vdbg(imx21->dev, "next URB %p\n", urb); | ||
979 | schedule_nonisoc_etd(imx21, urb); | ||
980 | } | ||
981 | } | ||
982 | } | ||
983 | |||
984 | static struct ep_priv *alloc_ep(void) | ||
985 | { | ||
986 | int i; | ||
987 | struct ep_priv *ep_priv; | ||
988 | |||
989 | ep_priv = kzalloc(sizeof(struct ep_priv), GFP_ATOMIC); | ||
990 | if (!ep_priv) | ||
991 | return NULL; | ||
992 | |||
993 | for (i = 0; i < NUM_ISO_ETDS; ++i) | ||
994 | ep_priv->etd[i] = -1; | ||
995 | |||
996 | return ep_priv; | ||
997 | } | ||
998 | |||
999 | static int imx21_hc_urb_enqueue(struct usb_hcd *hcd, | ||
1000 | struct urb *urb, gfp_t mem_flags) | ||
1001 | { | ||
1002 | struct imx21 *imx21 = hcd_to_imx21(hcd); | ||
1003 | struct usb_host_endpoint *ep = urb->ep; | ||
1004 | struct urb_priv *urb_priv; | ||
1005 | struct ep_priv *ep_priv; | ||
1006 | struct etd_priv *etd; | ||
1007 | int ret; | ||
1008 | unsigned long flags; | ||
1009 | int new_ep = 0; | ||
1010 | |||
1011 | dev_vdbg(imx21->dev, | ||
1012 | "enqueue urb=%p ep=%p len=%d " | ||
1013 | "buffer=%p dma=%08X setupBuf=%p setupDma=%08X\n", | ||
1014 | urb, ep, | ||
1015 | urb->transfer_buffer_length, | ||
1016 | urb->transfer_buffer, urb->transfer_dma, | ||
1017 | urb->setup_packet, urb->setup_dma); | ||
1018 | |||
1019 | if (usb_pipeisoc(urb->pipe)) | ||
1020 | return imx21_hc_urb_enqueue_isoc(hcd, ep, urb, mem_flags); | ||
1021 | |||
1022 | urb_priv = kzalloc(sizeof(struct urb_priv), mem_flags); | ||
1023 | if (!urb_priv) | ||
1024 | return -ENOMEM; | ||
1025 | |||
1026 | spin_lock_irqsave(&imx21->lock, flags); | ||
1027 | |||
1028 | ep_priv = ep->hcpriv; | ||
1029 | if (ep_priv == NULL) { | ||
1030 | ep_priv = alloc_ep(); | ||
1031 | if (!ep_priv) { | ||
1032 | ret = -ENOMEM; | ||
1033 | goto failed_alloc_ep; | ||
1034 | } | ||
1035 | ep->hcpriv = ep_priv; | ||
1036 | ep_priv->ep = ep; | ||
1037 | new_ep = 1; | ||
1038 | } | ||
1039 | |||
1040 | ret = usb_hcd_link_urb_to_ep(hcd, urb); | ||
1041 | if (ret) | ||
1042 | goto failed_link; | ||
1043 | |||
1044 | urb->status = -EINPROGRESS; | ||
1045 | urb->actual_length = 0; | ||
1046 | urb->error_count = 0; | ||
1047 | urb->hcpriv = urb_priv; | ||
1048 | urb_priv->ep = ep; | ||
1049 | |||
1050 | switch (usb_pipetype(urb->pipe)) { | ||
1051 | case PIPE_CONTROL: | ||
1052 | urb_priv->state = US_CTRL_SETUP; | ||
1053 | break; | ||
1054 | case PIPE_BULK: | ||
1055 | urb_priv->state = US_BULK; | ||
1056 | break; | ||
1057 | } | ||
1058 | |||
1059 | debug_urb_submitted(imx21, urb); | ||
1060 | if (ep_priv->etd[0] < 0) { | ||
1061 | if (ep_priv->waiting_etd) { | ||
1062 | dev_dbg(imx21->dev, | ||
1063 | "no ETD available already queued %p\n", | ||
1064 | ep_priv); | ||
1065 | debug_urb_queued_for_etd(imx21, urb); | ||
1066 | goto out; | ||
1067 | } | ||
1068 | ep_priv->etd[0] = alloc_etd(imx21); | ||
1069 | if (ep_priv->etd[0] < 0) { | ||
1070 | dev_dbg(imx21->dev, | ||
1071 | "no ETD available queueing %p\n", ep_priv); | ||
1072 | debug_urb_queued_for_etd(imx21, urb); | ||
1073 | list_add_tail(&ep_priv->queue, &imx21->queue_for_etd); | ||
1074 | ep_priv->waiting_etd = 1; | ||
1075 | goto out; | ||
1076 | } | ||
1077 | } | ||
1078 | |||
1079 | /* Schedule if no URB already active for this endpoint */ | ||
1080 | etd = &imx21->etd[ep_priv->etd[0]]; | ||
1081 | if (etd->urb == NULL) { | ||
1082 | DEBUG_LOG_FRAME(imx21, etd, last_req); | ||
1083 | schedule_nonisoc_etd(imx21, urb); | ||
1084 | } | ||
1085 | |||
1086 | out: | ||
1087 | spin_unlock_irqrestore(&imx21->lock, flags); | ||
1088 | return 0; | ||
1089 | |||
1090 | failed_link: | ||
1091 | failed_alloc_ep: | ||
1092 | spin_unlock_irqrestore(&imx21->lock, flags); | ||
1093 | kfree(urb_priv); | ||
1094 | return ret; | ||
1095 | } | ||
1096 | |||
1097 | static int imx21_hc_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, | ||
1098 | int status) | ||
1099 | { | ||
1100 | struct imx21 *imx21 = hcd_to_imx21(hcd); | ||
1101 | unsigned long flags; | ||
1102 | struct usb_host_endpoint *ep; | ||
1103 | struct ep_priv *ep_priv; | ||
1104 | struct urb_priv *urb_priv = urb->hcpriv; | ||
1105 | int ret = -EINVAL; | ||
1106 | |||
1107 | dev_vdbg(imx21->dev, "dequeue urb=%p iso=%d status=%d\n", | ||
1108 | urb, usb_pipeisoc(urb->pipe), status); | ||
1109 | |||
1110 | spin_lock_irqsave(&imx21->lock, flags); | ||
1111 | |||
1112 | ret = usb_hcd_check_unlink_urb(hcd, urb, status); | ||
1113 | if (ret) | ||
1114 | goto fail; | ||
1115 | ep = urb_priv->ep; | ||
1116 | ep_priv = ep->hcpriv; | ||
1117 | |||
1118 | debug_urb_unlinked(imx21, urb); | ||
1119 | |||
1120 | if (usb_pipeisoc(urb->pipe)) { | ||
1121 | dequeue_isoc_urb(imx21, urb, ep_priv); | ||
1122 | schedule_isoc_etds(hcd, ep); | ||
1123 | } else if (urb_priv->active) { | ||
1124 | int etd_num = ep_priv->etd[0]; | ||
1125 | if (etd_num != -1) { | ||
1126 | disactivate_etd(imx21, etd_num); | ||
1127 | free_dmem(imx21, etd_readl(imx21, etd_num, 1) & 0xffff); | ||
1128 | imx21->etd[etd_num].urb = NULL; | ||
1129 | } | ||
1130 | } | ||
1131 | |||
1132 | urb_done(hcd, urb, status); | ||
1133 | |||
1134 | spin_unlock_irqrestore(&imx21->lock, flags); | ||
1135 | return 0; | ||
1136 | |||
1137 | fail: | ||
1138 | spin_unlock_irqrestore(&imx21->lock, flags); | ||
1139 | return ret; | ||
1140 | } | ||
1141 | |||
1142 | /* =========================================== */ | ||
1143 | /* Interrupt dispatch */ | ||
1144 | /* =========================================== */ | ||
1145 | |||
1146 | static void process_etds(struct usb_hcd *hcd, struct imx21 *imx21, int sof) | ||
1147 | { | ||
1148 | int etd_num; | ||
1149 | int enable_sof_int = 0; | ||
1150 | unsigned long flags; | ||
1151 | |||
1152 | spin_lock_irqsave(&imx21->lock, flags); | ||
1153 | |||
1154 | for (etd_num = 0; etd_num < USB_NUM_ETD; etd_num++) { | ||
1155 | u32 etd_mask = 1 << etd_num; | ||
1156 | u32 enabled = readl(imx21->regs + USBH_ETDENSET) & etd_mask; | ||
1157 | u32 done = readl(imx21->regs + USBH_ETDDONESTAT) & etd_mask; | ||
1158 | struct etd_priv *etd = &imx21->etd[etd_num]; | ||
1159 | |||
1160 | |||
1161 | if (done) { | ||
1162 | DEBUG_LOG_FRAME(imx21, etd, last_int); | ||
1163 | } else { | ||
1164 | /* | ||
1165 | * Kludge warning! | ||
1166 | * | ||
1167 | * When multiple transfers are using the bus we sometimes get into a state | ||
1168 | * where the transfer has completed (the CC field of the ETD is != 0x0F), | ||
1169 | * the ETD has self disabled but the ETDDONESTAT flag is not set | ||
1170 | * (and hence no interrupt occurs). | ||
1171 | * This causes the transfer in question to hang. | ||
1172 | * The kludge below checks for this condition at each SOF and processes any | ||
1173 | * blocked ETDs (after an arbitary 10 frame wait) | ||
1174 | * | ||
1175 | * With a single active transfer the usbtest test suite will run for days | ||
1176 | * without the kludge. | ||
1177 | * With other bus activity (eg mass storage) even just test1 will hang without | ||
1178 | * the kludge. | ||
1179 | */ | ||
1180 | u32 dword0; | ||
1181 | int cc; | ||
1182 | |||
1183 | if (etd->active_count && !enabled) /* suspicious... */ | ||
1184 | enable_sof_int = 1; | ||
1185 | |||
1186 | if (!sof || enabled || !etd->active_count) | ||
1187 | continue; | ||
1188 | |||
1189 | cc = etd_readl(imx21, etd_num, 2) >> DW2_COMPCODE; | ||
1190 | if (cc == TD_NOTACCESSED) | ||
1191 | continue; | ||
1192 | |||
1193 | if (++etd->active_count < 10) | ||
1194 | continue; | ||
1195 | |||
1196 | dword0 = etd_readl(imx21, etd_num, 0); | ||
1197 | dev_dbg(imx21->dev, | ||
1198 | "unblock ETD %d dev=0x%X ep=0x%X cc=0x%02X!\n", | ||
1199 | etd_num, dword0 & 0x7F, | ||
1200 | (dword0 >> DW0_ENDPNT) & 0x0F, | ||
1201 | cc); | ||
1202 | |||
1203 | #ifdef DEBUG | ||
1204 | dev_dbg(imx21->dev, | ||
1205 | "frame: act=%d disact=%d" | ||
1206 | " int=%d req=%d cur=%d\n", | ||
1207 | etd->activated_frame, | ||
1208 | etd->disactivated_frame, | ||
1209 | etd->last_int_frame, | ||
1210 | etd->last_req_frame, | ||
1211 | readl(imx21->regs + USBH_FRMNUB)); | ||
1212 | imx21->debug_unblocks++; | ||
1213 | #endif | ||
1214 | etd->active_count = 0; | ||
1215 | /* End of kludge */ | ||
1216 | } | ||
1217 | |||
1218 | if (etd->ep == NULL || etd->urb == NULL) { | ||
1219 | dev_dbg(imx21->dev, | ||
1220 | "Interrupt for unexpected etd %d" | ||
1221 | " ep=%p urb=%p\n", | ||
1222 | etd_num, etd->ep, etd->urb); | ||
1223 | disactivate_etd(imx21, etd_num); | ||
1224 | continue; | ||
1225 | } | ||
1226 | |||
1227 | if (usb_pipeisoc(etd->urb->pipe)) | ||
1228 | isoc_etd_done(hcd, etd->urb, etd_num); | ||
1229 | else | ||
1230 | nonisoc_etd_done(hcd, etd->urb, etd_num); | ||
1231 | } | ||
1232 | |||
1233 | /* only enable SOF interrupt if it may be needed for the kludge */ | ||
1234 | if (enable_sof_int) | ||
1235 | set_register_bits(imx21, USBH_SYSIEN, USBH_SYSIEN_SOFINT); | ||
1236 | else | ||
1237 | clear_register_bits(imx21, USBH_SYSIEN, USBH_SYSIEN_SOFINT); | ||
1238 | |||
1239 | |||
1240 | spin_unlock_irqrestore(&imx21->lock, flags); | ||
1241 | } | ||
1242 | |||
1243 | static irqreturn_t imx21_irq(struct usb_hcd *hcd) | ||
1244 | { | ||
1245 | struct imx21 *imx21 = hcd_to_imx21(hcd); | ||
1246 | u32 ints = readl(imx21->regs + USBH_SYSISR); | ||
1247 | |||
1248 | if (ints & USBH_SYSIEN_HERRINT) | ||
1249 | dev_dbg(imx21->dev, "Scheduling error\n"); | ||
1250 | |||
1251 | if (ints & USBH_SYSIEN_SORINT) | ||
1252 | dev_dbg(imx21->dev, "Scheduling overrun\n"); | ||
1253 | |||
1254 | if (ints & (USBH_SYSISR_DONEINT | USBH_SYSISR_SOFINT)) | ||
1255 | process_etds(hcd, imx21, ints & USBH_SYSISR_SOFINT); | ||
1256 | |||
1257 | writel(ints, imx21->regs + USBH_SYSISR); | ||
1258 | return IRQ_HANDLED; | ||
1259 | } | ||
1260 | |||
1261 | static void imx21_hc_endpoint_disable(struct usb_hcd *hcd, | ||
1262 | struct usb_host_endpoint *ep) | ||
1263 | { | ||
1264 | struct imx21 *imx21 = hcd_to_imx21(hcd); | ||
1265 | unsigned long flags; | ||
1266 | struct ep_priv *ep_priv; | ||
1267 | int i; | ||
1268 | |||
1269 | if (ep == NULL) | ||
1270 | return; | ||
1271 | |||
1272 | spin_lock_irqsave(&imx21->lock, flags); | ||
1273 | ep_priv = ep->hcpriv; | ||
1274 | dev_vdbg(imx21->dev, "disable ep=%p, ep->hcpriv=%p\n", ep, ep_priv); | ||
1275 | |||
1276 | if (!list_empty(&ep->urb_list)) | ||
1277 | dev_dbg(imx21->dev, "ep's URB list is not empty\n"); | ||
1278 | |||
1279 | if (ep_priv != NULL) { | ||
1280 | for (i = 0; i < NUM_ISO_ETDS; i++) { | ||
1281 | if (ep_priv->etd[i] > -1) | ||
1282 | dev_dbg(imx21->dev, "free etd %d for disable\n", | ||
1283 | ep_priv->etd[i]); | ||
1284 | |||
1285 | free_etd(imx21, ep_priv->etd[i]); | ||
1286 | } | ||
1287 | kfree(ep_priv); | ||
1288 | ep->hcpriv = NULL; | ||
1289 | } | ||
1290 | |||
1291 | for (i = 0; i < USB_NUM_ETD; i++) { | ||
1292 | if (imx21->etd[i].alloc && imx21->etd[i].ep == ep) { | ||
1293 | dev_err(imx21->dev, | ||
1294 | "Active etd %d for disabled ep=%p!\n", i, ep); | ||
1295 | free_etd(imx21, i); | ||
1296 | } | ||
1297 | } | ||
1298 | free_epdmem(imx21, ep); | ||
1299 | spin_unlock_irqrestore(&imx21->lock, flags); | ||
1300 | } | ||
1301 | |||
1302 | /* =========================================== */ | ||
1303 | /* Hub handling */ | ||
1304 | /* =========================================== */ | ||
1305 | |||
1306 | static int get_hub_descriptor(struct usb_hcd *hcd, | ||
1307 | struct usb_hub_descriptor *desc) | ||
1308 | { | ||
1309 | struct imx21 *imx21 = hcd_to_imx21(hcd); | ||
1310 | desc->bDescriptorType = 0x29; /* HUB descriptor */ | ||
1311 | desc->bHubContrCurrent = 0; | ||
1312 | |||
1313 | desc->bNbrPorts = readl(imx21->regs + USBH_ROOTHUBA) | ||
1314 | & USBH_ROOTHUBA_NDNSTMPRT_MASK; | ||
1315 | desc->bDescLength = 9; | ||
1316 | desc->bPwrOn2PwrGood = 0; | ||
1317 | desc->wHubCharacteristics = (__force __u16) cpu_to_le16( | ||
1318 | 0x0002 | /* No power switching */ | ||
1319 | 0x0010 | /* No over current protection */ | ||
1320 | 0); | ||
1321 | |||
1322 | desc->bitmap[0] = 1 << 1; | ||
1323 | desc->bitmap[1] = ~0; | ||
1324 | return 0; | ||
1325 | } | ||
1326 | |||
1327 | static int imx21_hc_hub_status_data(struct usb_hcd *hcd, char *buf) | ||
1328 | { | ||
1329 | struct imx21 *imx21 = hcd_to_imx21(hcd); | ||
1330 | int ports; | ||
1331 | int changed = 0; | ||
1332 | int i; | ||
1333 | unsigned long flags; | ||
1334 | |||
1335 | spin_lock_irqsave(&imx21->lock, flags); | ||
1336 | ports = readl(imx21->regs + USBH_ROOTHUBA) | ||
1337 | & USBH_ROOTHUBA_NDNSTMPRT_MASK; | ||
1338 | if (ports > 7) { | ||
1339 | ports = 7; | ||
1340 | dev_err(imx21->dev, "ports %d > 7\n", ports); | ||
1341 | } | ||
1342 | for (i = 0; i < ports; i++) { | ||
1343 | if (readl(imx21->regs + USBH_PORTSTAT(i)) & | ||
1344 | (USBH_PORTSTAT_CONNECTSC | | ||
1345 | USBH_PORTSTAT_PRTENBLSC | | ||
1346 | USBH_PORTSTAT_PRTSTATSC | | ||
1347 | USBH_PORTSTAT_OVRCURIC | | ||
1348 | USBH_PORTSTAT_PRTRSTSC)) { | ||
1349 | |||
1350 | changed = 1; | ||
1351 | buf[0] |= 1 << (i + 1); | ||
1352 | } | ||
1353 | } | ||
1354 | spin_unlock_irqrestore(&imx21->lock, flags); | ||
1355 | |||
1356 | if (changed) | ||
1357 | dev_info(imx21->dev, "Hub status changed\n"); | ||
1358 | return changed; | ||
1359 | } | ||
1360 | |||
1361 | static int imx21_hc_hub_control(struct usb_hcd *hcd, | ||
1362 | u16 typeReq, | ||
1363 | u16 wValue, u16 wIndex, char *buf, u16 wLength) | ||
1364 | { | ||
1365 | struct imx21 *imx21 = hcd_to_imx21(hcd); | ||
1366 | int rc = 0; | ||
1367 | u32 status_write = 0; | ||
1368 | |||
1369 | switch (typeReq) { | ||
1370 | case ClearHubFeature: | ||
1371 | dev_dbg(imx21->dev, "ClearHubFeature\n"); | ||
1372 | switch (wValue) { | ||
1373 | case C_HUB_OVER_CURRENT: | ||
1374 | dev_dbg(imx21->dev, " OVER_CURRENT\n"); | ||
1375 | break; | ||
1376 | case C_HUB_LOCAL_POWER: | ||
1377 | dev_dbg(imx21->dev, " LOCAL_POWER\n"); | ||
1378 | break; | ||
1379 | default: | ||
1380 | dev_dbg(imx21->dev, " unknown\n"); | ||
1381 | rc = -EINVAL; | ||
1382 | break; | ||
1383 | } | ||
1384 | break; | ||
1385 | |||
1386 | case ClearPortFeature: | ||
1387 | dev_dbg(imx21->dev, "ClearPortFeature\n"); | ||
1388 | switch (wValue) { | ||
1389 | case USB_PORT_FEAT_ENABLE: | ||
1390 | dev_dbg(imx21->dev, " ENABLE\n"); | ||
1391 | status_write = USBH_PORTSTAT_CURCONST; | ||
1392 | break; | ||
1393 | case USB_PORT_FEAT_SUSPEND: | ||
1394 | dev_dbg(imx21->dev, " SUSPEND\n"); | ||
1395 | status_write = USBH_PORTSTAT_PRTOVRCURI; | ||
1396 | break; | ||
1397 | case USB_PORT_FEAT_POWER: | ||
1398 | dev_dbg(imx21->dev, " POWER\n"); | ||
1399 | status_write = USBH_PORTSTAT_LSDEVCON; | ||
1400 | break; | ||
1401 | case USB_PORT_FEAT_C_ENABLE: | ||
1402 | dev_dbg(imx21->dev, " C_ENABLE\n"); | ||
1403 | status_write = USBH_PORTSTAT_PRTENBLSC; | ||
1404 | break; | ||
1405 | case USB_PORT_FEAT_C_SUSPEND: | ||
1406 | dev_dbg(imx21->dev, " C_SUSPEND\n"); | ||
1407 | status_write = USBH_PORTSTAT_PRTSTATSC; | ||
1408 | break; | ||
1409 | case USB_PORT_FEAT_C_CONNECTION: | ||
1410 | dev_dbg(imx21->dev, " C_CONNECTION\n"); | ||
1411 | status_write = USBH_PORTSTAT_CONNECTSC; | ||
1412 | break; | ||
1413 | case USB_PORT_FEAT_C_OVER_CURRENT: | ||
1414 | dev_dbg(imx21->dev, " C_OVER_CURRENT\n"); | ||
1415 | status_write = USBH_PORTSTAT_OVRCURIC; | ||
1416 | break; | ||
1417 | case USB_PORT_FEAT_C_RESET: | ||
1418 | dev_dbg(imx21->dev, " C_RESET\n"); | ||
1419 | status_write = USBH_PORTSTAT_PRTRSTSC; | ||
1420 | break; | ||
1421 | default: | ||
1422 | dev_dbg(imx21->dev, " unknown\n"); | ||
1423 | rc = -EINVAL; | ||
1424 | break; | ||
1425 | } | ||
1426 | |||
1427 | break; | ||
1428 | |||
1429 | case GetHubDescriptor: | ||
1430 | dev_dbg(imx21->dev, "GetHubDescriptor\n"); | ||
1431 | rc = get_hub_descriptor(hcd, (void *)buf); | ||
1432 | break; | ||
1433 | |||
1434 | case GetHubStatus: | ||
1435 | dev_dbg(imx21->dev, " GetHubStatus\n"); | ||
1436 | *(__le32 *) buf = 0; | ||
1437 | break; | ||
1438 | |||
1439 | case GetPortStatus: | ||
1440 | dev_dbg(imx21->dev, "GetPortStatus: port: %d, 0x%x\n", | ||
1441 | wIndex, USBH_PORTSTAT(wIndex - 1)); | ||
1442 | *(__le32 *) buf = readl(imx21->regs + | ||
1443 | USBH_PORTSTAT(wIndex - 1)); | ||
1444 | break; | ||
1445 | |||
1446 | case SetHubFeature: | ||
1447 | dev_dbg(imx21->dev, "SetHubFeature\n"); | ||
1448 | switch (wValue) { | ||
1449 | case C_HUB_OVER_CURRENT: | ||
1450 | dev_dbg(imx21->dev, " OVER_CURRENT\n"); | ||
1451 | break; | ||
1452 | |||
1453 | case C_HUB_LOCAL_POWER: | ||
1454 | dev_dbg(imx21->dev, " LOCAL_POWER\n"); | ||
1455 | break; | ||
1456 | default: | ||
1457 | dev_dbg(imx21->dev, " unknown\n"); | ||
1458 | rc = -EINVAL; | ||
1459 | break; | ||
1460 | } | ||
1461 | |||
1462 | break; | ||
1463 | |||
1464 | case SetPortFeature: | ||
1465 | dev_dbg(imx21->dev, "SetPortFeature\n"); | ||
1466 | switch (wValue) { | ||
1467 | case USB_PORT_FEAT_SUSPEND: | ||
1468 | dev_dbg(imx21->dev, " SUSPEND\n"); | ||
1469 | status_write = USBH_PORTSTAT_PRTSUSPST; | ||
1470 | break; | ||
1471 | case USB_PORT_FEAT_POWER: | ||
1472 | dev_dbg(imx21->dev, " POWER\n"); | ||
1473 | status_write = USBH_PORTSTAT_PRTPWRST; | ||
1474 | break; | ||
1475 | case USB_PORT_FEAT_RESET: | ||
1476 | dev_dbg(imx21->dev, " RESET\n"); | ||
1477 | status_write = USBH_PORTSTAT_PRTRSTST; | ||
1478 | break; | ||
1479 | default: | ||
1480 | dev_dbg(imx21->dev, " unknown\n"); | ||
1481 | rc = -EINVAL; | ||
1482 | break; | ||
1483 | } | ||
1484 | break; | ||
1485 | |||
1486 | default: | ||
1487 | dev_dbg(imx21->dev, " unknown\n"); | ||
1488 | rc = -EINVAL; | ||
1489 | break; | ||
1490 | } | ||
1491 | |||
1492 | if (status_write) | ||
1493 | writel(status_write, imx21->regs + USBH_PORTSTAT(wIndex - 1)); | ||
1494 | return rc; | ||
1495 | } | ||
1496 | |||
1497 | /* =========================================== */ | ||
1498 | /* Host controller management */ | ||
1499 | /* =========================================== */ | ||
1500 | |||
1501 | static int imx21_hc_reset(struct usb_hcd *hcd) | ||
1502 | { | ||
1503 | struct imx21 *imx21 = hcd_to_imx21(hcd); | ||
1504 | unsigned long timeout; | ||
1505 | unsigned long flags; | ||
1506 | |||
1507 | spin_lock_irqsave(&imx21->lock, flags); | ||
1508 | |||
1509 | /* Reset the Host controler modules */ | ||
1510 | writel(USBOTG_RST_RSTCTRL | USBOTG_RST_RSTRH | | ||
1511 | USBOTG_RST_RSTHSIE | USBOTG_RST_RSTHC, | ||
1512 | imx21->regs + USBOTG_RST_CTRL); | ||
1513 | |||
1514 | /* Wait for reset to finish */ | ||
1515 | timeout = jiffies + HZ; | ||
1516 | while (readl(imx21->regs + USBOTG_RST_CTRL) != 0) { | ||
1517 | if (time_after(jiffies, timeout)) { | ||
1518 | spin_unlock_irqrestore(&imx21->lock, flags); | ||
1519 | dev_err(imx21->dev, "timeout waiting for reset\n"); | ||
1520 | return -ETIMEDOUT; | ||
1521 | } | ||
1522 | spin_unlock_irq(&imx21->lock); | ||
1523 | schedule_timeout(1); | ||
1524 | spin_lock_irq(&imx21->lock); | ||
1525 | } | ||
1526 | spin_unlock_irqrestore(&imx21->lock, flags); | ||
1527 | return 0; | ||
1528 | } | ||
1529 | |||
1530 | static int __devinit imx21_hc_start(struct usb_hcd *hcd) | ||
1531 | { | ||
1532 | struct imx21 *imx21 = hcd_to_imx21(hcd); | ||
1533 | unsigned long flags; | ||
1534 | int i, j; | ||
1535 | u32 hw_mode = USBOTG_HWMODE_CRECFG_HOST; | ||
1536 | u32 usb_control = 0; | ||
1537 | |||
1538 | hw_mode |= ((imx21->pdata->host_xcvr << USBOTG_HWMODE_HOSTXCVR_SHIFT) & | ||
1539 | USBOTG_HWMODE_HOSTXCVR_MASK); | ||
1540 | hw_mode |= ((imx21->pdata->otg_xcvr << USBOTG_HWMODE_OTGXCVR_SHIFT) & | ||
1541 | USBOTG_HWMODE_OTGXCVR_MASK); | ||
1542 | |||
1543 | if (imx21->pdata->host1_txenoe) | ||
1544 | usb_control |= USBCTRL_HOST1_TXEN_OE; | ||
1545 | |||
1546 | if (!imx21->pdata->host1_xcverless) | ||
1547 | usb_control |= USBCTRL_HOST1_BYP_TLL; | ||
1548 | |||
1549 | if (imx21->pdata->otg_ext_xcvr) | ||
1550 | usb_control |= USBCTRL_OTC_RCV_RXDP; | ||
1551 | |||
1552 | |||
1553 | spin_lock_irqsave(&imx21->lock, flags); | ||
1554 | |||
1555 | writel((USBOTG_CLK_CTRL_HST | USBOTG_CLK_CTRL_MAIN), | ||
1556 | imx21->regs + USBOTG_CLK_CTRL); | ||
1557 | writel(hw_mode, imx21->regs + USBOTG_HWMODE); | ||
1558 | writel(usb_control, imx21->regs + USBCTRL); | ||
1559 | writel(USB_MISCCONTROL_SKPRTRY | USB_MISCCONTROL_ARBMODE, | ||
1560 | imx21->regs + USB_MISCCONTROL); | ||
1561 | |||
1562 | /* Clear the ETDs */ | ||
1563 | for (i = 0; i < USB_NUM_ETD; i++) | ||
1564 | for (j = 0; j < 4; j++) | ||
1565 | etd_writel(imx21, i, j, 0); | ||
1566 | |||
1567 | /* Take the HC out of reset */ | ||
1568 | writel(USBH_HOST_CTRL_HCUSBSTE_OPERATIONAL | USBH_HOST_CTRL_CTLBLKSR_1, | ||
1569 | imx21->regs + USBH_HOST_CTRL); | ||
1570 | |||
1571 | /* Enable ports */ | ||
1572 | if (imx21->pdata->enable_otg_host) | ||
1573 | writel(USBH_PORTSTAT_PRTPWRST | USBH_PORTSTAT_PRTENABST, | ||
1574 | imx21->regs + USBH_PORTSTAT(0)); | ||
1575 | |||
1576 | if (imx21->pdata->enable_host1) | ||
1577 | writel(USBH_PORTSTAT_PRTPWRST | USBH_PORTSTAT_PRTENABST, | ||
1578 | imx21->regs + USBH_PORTSTAT(1)); | ||
1579 | |||
1580 | if (imx21->pdata->enable_host2) | ||
1581 | writel(USBH_PORTSTAT_PRTPWRST | USBH_PORTSTAT_PRTENABST, | ||
1582 | imx21->regs + USBH_PORTSTAT(2)); | ||
1583 | |||
1584 | |||
1585 | hcd->state = HC_STATE_RUNNING; | ||
1586 | |||
1587 | /* Enable host controller interrupts */ | ||
1588 | set_register_bits(imx21, USBH_SYSIEN, | ||
1589 | USBH_SYSIEN_HERRINT | | ||
1590 | USBH_SYSIEN_DONEINT | USBH_SYSIEN_SORINT); | ||
1591 | set_register_bits(imx21, USBOTG_CINT_STEN, USBOTG_HCINT); | ||
1592 | |||
1593 | spin_unlock_irqrestore(&imx21->lock, flags); | ||
1594 | |||
1595 | return 0; | ||
1596 | } | ||
1597 | |||
1598 | static void imx21_hc_stop(struct usb_hcd *hcd) | ||
1599 | { | ||
1600 | struct imx21 *imx21 = hcd_to_imx21(hcd); | ||
1601 | unsigned long flags; | ||
1602 | |||
1603 | spin_lock_irqsave(&imx21->lock, flags); | ||
1604 | |||
1605 | writel(0, imx21->regs + USBH_SYSIEN); | ||
1606 | clear_register_bits(imx21, USBOTG_CINT_STEN, USBOTG_HCINT); | ||
1607 | clear_register_bits(imx21, USBOTG_CLK_CTRL_HST | USBOTG_CLK_CTRL_MAIN, | ||
1608 | USBOTG_CLK_CTRL); | ||
1609 | spin_unlock_irqrestore(&imx21->lock, flags); | ||
1610 | } | ||
1611 | |||
1612 | /* =========================================== */ | ||
1613 | /* Driver glue */ | ||
1614 | /* =========================================== */ | ||
1615 | |||
1616 | static struct hc_driver imx21_hc_driver = { | ||
1617 | .description = hcd_name, | ||
1618 | .product_desc = "IMX21 USB Host Controller", | ||
1619 | .hcd_priv_size = sizeof(struct imx21), | ||
1620 | |||
1621 | .flags = HCD_USB11, | ||
1622 | .irq = imx21_irq, | ||
1623 | |||
1624 | .reset = imx21_hc_reset, | ||
1625 | .start = imx21_hc_start, | ||
1626 | .stop = imx21_hc_stop, | ||
1627 | |||
1628 | /* I/O requests */ | ||
1629 | .urb_enqueue = imx21_hc_urb_enqueue, | ||
1630 | .urb_dequeue = imx21_hc_urb_dequeue, | ||
1631 | .endpoint_disable = imx21_hc_endpoint_disable, | ||
1632 | |||
1633 | /* scheduling support */ | ||
1634 | .get_frame_number = imx21_hc_get_frame, | ||
1635 | |||
1636 | /* Root hub support */ | ||
1637 | .hub_status_data = imx21_hc_hub_status_data, | ||
1638 | .hub_control = imx21_hc_hub_control, | ||
1639 | |||
1640 | }; | ||
1641 | |||
1642 | static struct mx21_usbh_platform_data default_pdata = { | ||
1643 | .host_xcvr = MX21_USBXCVR_TXDIF_RXDIF, | ||
1644 | .otg_xcvr = MX21_USBXCVR_TXDIF_RXDIF, | ||
1645 | .enable_host1 = 1, | ||
1646 | .enable_host2 = 1, | ||
1647 | .enable_otg_host = 1, | ||
1648 | |||
1649 | }; | ||
1650 | |||
1651 | static int imx21_remove(struct platform_device *pdev) | ||
1652 | { | ||
1653 | struct usb_hcd *hcd = platform_get_drvdata(pdev); | ||
1654 | struct imx21 *imx21 = hcd_to_imx21(hcd); | ||
1655 | struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
1656 | |||
1657 | remove_debug_files(imx21); | ||
1658 | usb_remove_hcd(hcd); | ||
1659 | |||
1660 | if (res != NULL) { | ||
1661 | clk_disable(imx21->clk); | ||
1662 | clk_put(imx21->clk); | ||
1663 | iounmap(imx21->regs); | ||
1664 | release_mem_region(res->start, resource_size(res)); | ||
1665 | } | ||
1666 | |||
1667 | kfree(hcd); | ||
1668 | return 0; | ||
1669 | } | ||
1670 | |||
1671 | |||
1672 | static int imx21_probe(struct platform_device *pdev) | ||
1673 | { | ||
1674 | struct usb_hcd *hcd; | ||
1675 | struct imx21 *imx21; | ||
1676 | struct resource *res; | ||
1677 | int ret; | ||
1678 | int irq; | ||
1679 | |||
1680 | printk(KERN_INFO "%s\n", imx21_hc_driver.product_desc); | ||
1681 | |||
1682 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
1683 | if (!res) | ||
1684 | return -ENODEV; | ||
1685 | irq = platform_get_irq(pdev, 0); | ||
1686 | if (irq < 0) | ||
1687 | return -ENXIO; | ||
1688 | |||
1689 | hcd = usb_create_hcd(&imx21_hc_driver, | ||
1690 | &pdev->dev, dev_name(&pdev->dev)); | ||
1691 | if (hcd == NULL) { | ||
1692 | dev_err(&pdev->dev, "Cannot create hcd (%s)\n", | ||
1693 | dev_name(&pdev->dev)); | ||
1694 | return -ENOMEM; | ||
1695 | } | ||
1696 | |||
1697 | imx21 = hcd_to_imx21(hcd); | ||
1698 | imx21->dev = &pdev->dev; | ||
1699 | imx21->pdata = pdev->dev.platform_data; | ||
1700 | if (!imx21->pdata) | ||
1701 | imx21->pdata = &default_pdata; | ||
1702 | |||
1703 | spin_lock_init(&imx21->lock); | ||
1704 | INIT_LIST_HEAD(&imx21->dmem_list); | ||
1705 | INIT_LIST_HEAD(&imx21->queue_for_etd); | ||
1706 | INIT_LIST_HEAD(&imx21->queue_for_dmem); | ||
1707 | create_debug_files(imx21); | ||
1708 | |||
1709 | res = request_mem_region(res->start, resource_size(res), hcd_name); | ||
1710 | if (!res) { | ||
1711 | ret = -EBUSY; | ||
1712 | goto failed_request_mem; | ||
1713 | } | ||
1714 | |||
1715 | imx21->regs = ioremap(res->start, resource_size(res)); | ||
1716 | if (imx21->regs == NULL) { | ||
1717 | dev_err(imx21->dev, "Cannot map registers\n"); | ||
1718 | ret = -ENOMEM; | ||
1719 | goto failed_ioremap; | ||
1720 | } | ||
1721 | |||
1722 | /* Enable clocks source */ | ||
1723 | imx21->clk = clk_get(imx21->dev, NULL); | ||
1724 | if (IS_ERR(imx21->clk)) { | ||
1725 | dev_err(imx21->dev, "no clock found\n"); | ||
1726 | ret = PTR_ERR(imx21->clk); | ||
1727 | goto failed_clock_get; | ||
1728 | } | ||
1729 | |||
1730 | ret = clk_set_rate(imx21->clk, clk_round_rate(imx21->clk, 48000000)); | ||
1731 | if (ret) | ||
1732 | goto failed_clock_set; | ||
1733 | ret = clk_enable(imx21->clk); | ||
1734 | if (ret) | ||
1735 | goto failed_clock_enable; | ||
1736 | |||
1737 | dev_info(imx21->dev, "Hardware HC revision: 0x%02X\n", | ||
1738 | (readl(imx21->regs + USBOTG_HWMODE) >> 16) & 0xFF); | ||
1739 | |||
1740 | ret = usb_add_hcd(hcd, irq, IRQF_DISABLED); | ||
1741 | if (ret != 0) { | ||
1742 | dev_err(imx21->dev, "usb_add_hcd() returned %d\n", ret); | ||
1743 | goto failed_add_hcd; | ||
1744 | } | ||
1745 | |||
1746 | return 0; | ||
1747 | |||
1748 | failed_add_hcd: | ||
1749 | clk_disable(imx21->clk); | ||
1750 | failed_clock_enable: | ||
1751 | failed_clock_set: | ||
1752 | clk_put(imx21->clk); | ||
1753 | failed_clock_get: | ||
1754 | iounmap(imx21->regs); | ||
1755 | failed_ioremap: | ||
1756 | release_mem_region(res->start, res->end - res->start); | ||
1757 | failed_request_mem: | ||
1758 | remove_debug_files(imx21); | ||
1759 | usb_put_hcd(hcd); | ||
1760 | return ret; | ||
1761 | } | ||
1762 | |||
1763 | static struct platform_driver imx21_hcd_driver = { | ||
1764 | .driver = { | ||
1765 | .name = (char *)hcd_name, | ||
1766 | }, | ||
1767 | .probe = imx21_probe, | ||
1768 | .remove = imx21_remove, | ||
1769 | .suspend = NULL, | ||
1770 | .resume = NULL, | ||
1771 | }; | ||
1772 | |||
1773 | static int __init imx21_hcd_init(void) | ||
1774 | { | ||
1775 | return platform_driver_register(&imx21_hcd_driver); | ||
1776 | } | ||
1777 | |||
1778 | static void __exit imx21_hcd_cleanup(void) | ||
1779 | { | ||
1780 | platform_driver_unregister(&imx21_hcd_driver); | ||
1781 | } | ||
1782 | |||
1783 | module_init(imx21_hcd_init); | ||
1784 | module_exit(imx21_hcd_cleanup); | ||
1785 | |||
1786 | MODULE_DESCRIPTION("i.MX21 USB Host controller"); | ||
1787 | MODULE_AUTHOR("Martin Fuzzey"); | ||
1788 | MODULE_LICENSE("GPL"); | ||
1789 | MODULE_ALIAS("platform:imx21-hcd"); | ||
diff --git a/drivers/usb/host/imx21-hcd.h b/drivers/usb/host/imx21-hcd.h new file mode 100644 index 000000000000..1b0d913780a5 --- /dev/null +++ b/drivers/usb/host/imx21-hcd.h | |||
@@ -0,0 +1,436 @@ | |||
1 | /* | ||
2 | * Macros and prototypes for i.MX21 | ||
3 | * | ||
4 | * Copyright (C) 2006 Loping Dog Embedded Systems | ||
5 | * Copyright (C) 2009 Martin Fuzzey | ||
6 | * Originally written by Jay Monkman <jtm@lopingdog.com> | ||
7 | * Ported to 2.6.30, debugged and enhanced by Martin Fuzzey | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify it | ||
10 | * under the terms of the GNU General Public License as published by the | ||
11 | * Free Software Foundation; either version 2 of the License, or (at your | ||
12 | * option) any later version. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, but | ||
15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | ||
16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
17 | * for more details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU General Public License | ||
20 | * along with this program; if not, write to the Free Software Foundation, | ||
21 | * Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
22 | */ | ||
23 | |||
24 | #ifndef __LINUX_IMX21_HCD_H__ | ||
25 | #define __LINUX_IMX21_HCD_H__ | ||
26 | |||
27 | #include <mach/mx21-usbhost.h> | ||
28 | |||
29 | #define NUM_ISO_ETDS 2 | ||
30 | #define USB_NUM_ETD 32 | ||
31 | #define DMEM_SIZE 4096 | ||
32 | |||
33 | /* Register definitions */ | ||
34 | #define USBOTG_HWMODE 0x00 | ||
35 | #define USBOTG_HWMODE_ANASDBEN (1 << 14) | ||
36 | #define USBOTG_HWMODE_OTGXCVR_SHIFT 6 | ||
37 | #define USBOTG_HWMODE_OTGXCVR_MASK (3 << 6) | ||
38 | #define USBOTG_HWMODE_OTGXCVR_TD_RD (0 << 6) | ||
39 | #define USBOTG_HWMODE_OTGXCVR_TS_RD (2 << 6) | ||
40 | #define USBOTG_HWMODE_OTGXCVR_TD_RS (1 << 6) | ||
41 | #define USBOTG_HWMODE_OTGXCVR_TS_RS (3 << 6) | ||
42 | #define USBOTG_HWMODE_HOSTXCVR_SHIFT 4 | ||
43 | #define USBOTG_HWMODE_HOSTXCVR_MASK (3 << 4) | ||
44 | #define USBOTG_HWMODE_HOSTXCVR_TD_RD (0 << 4) | ||
45 | #define USBOTG_HWMODE_HOSTXCVR_TS_RD (2 << 4) | ||
46 | #define USBOTG_HWMODE_HOSTXCVR_TD_RS (1 << 4) | ||
47 | #define USBOTG_HWMODE_HOSTXCVR_TS_RS (3 << 4) | ||
48 | #define USBOTG_HWMODE_CRECFG_MASK (3 << 0) | ||
49 | #define USBOTG_HWMODE_CRECFG_HOST (1 << 0) | ||
50 | #define USBOTG_HWMODE_CRECFG_FUNC (2 << 0) | ||
51 | #define USBOTG_HWMODE_CRECFG_HNP (3 << 0) | ||
52 | |||
53 | #define USBOTG_CINT_STAT 0x04 | ||
54 | #define USBOTG_CINT_STEN 0x08 | ||
55 | #define USBOTG_ASHNPINT (1 << 5) | ||
56 | #define USBOTG_ASFCINT (1 << 4) | ||
57 | #define USBOTG_ASHCINT (1 << 3) | ||
58 | #define USBOTG_SHNPINT (1 << 2) | ||
59 | #define USBOTG_FCINT (1 << 1) | ||
60 | #define USBOTG_HCINT (1 << 0) | ||
61 | |||
62 | #define USBOTG_CLK_CTRL 0x0c | ||
63 | #define USBOTG_CLK_CTRL_FUNC (1 << 2) | ||
64 | #define USBOTG_CLK_CTRL_HST (1 << 1) | ||
65 | #define USBOTG_CLK_CTRL_MAIN (1 << 0) | ||
66 | |||
67 | #define USBOTG_RST_CTRL 0x10 | ||
68 | #define USBOTG_RST_RSTI2C (1 << 15) | ||
69 | #define USBOTG_RST_RSTCTRL (1 << 5) | ||
70 | #define USBOTG_RST_RSTFC (1 << 4) | ||
71 | #define USBOTG_RST_RSTFSKE (1 << 3) | ||
72 | #define USBOTG_RST_RSTRH (1 << 2) | ||
73 | #define USBOTG_RST_RSTHSIE (1 << 1) | ||
74 | #define USBOTG_RST_RSTHC (1 << 0) | ||
75 | |||
76 | #define USBOTG_FRM_INTVL 0x14 | ||
77 | #define USBOTG_FRM_REMAIN 0x18 | ||
78 | #define USBOTG_HNP_CSR 0x1c | ||
79 | #define USBOTG_HNP_ISR 0x2c | ||
80 | #define USBOTG_HNP_IEN 0x30 | ||
81 | |||
82 | #define USBOTG_I2C_TXCVR_REG(x) (0x100 + (x)) | ||
83 | #define USBOTG_I2C_XCVR_DEVAD 0x118 | ||
84 | #define USBOTG_I2C_SEQ_OP_REG 0x119 | ||
85 | #define USBOTG_I2C_SEQ_RD_STARTAD 0x11a | ||
86 | #define USBOTG_I2C_OP_CTRL_REG 0x11b | ||
87 | #define USBOTG_I2C_SCLK_TO_SCK_HPER 0x11e | ||
88 | #define USBOTG_I2C_MASTER_INT_REG 0x11f | ||
89 | |||
90 | #define USBH_HOST_CTRL 0x80 | ||
91 | #define USBH_HOST_CTRL_HCRESET (1 << 31) | ||
92 | #define USBH_HOST_CTRL_SCHDOVR(x) ((x) << 16) | ||
93 | #define USBH_HOST_CTRL_RMTWUEN (1 << 4) | ||
94 | #define USBH_HOST_CTRL_HCUSBSTE_RESET (0 << 2) | ||
95 | #define USBH_HOST_CTRL_HCUSBSTE_RESUME (1 << 2) | ||
96 | #define USBH_HOST_CTRL_HCUSBSTE_OPERATIONAL (2 << 2) | ||
97 | #define USBH_HOST_CTRL_HCUSBSTE_SUSPEND (3 << 2) | ||
98 | #define USBH_HOST_CTRL_CTLBLKSR_1 (0 << 0) | ||
99 | #define USBH_HOST_CTRL_CTLBLKSR_2 (1 << 0) | ||
100 | #define USBH_HOST_CTRL_CTLBLKSR_3 (2 << 0) | ||
101 | #define USBH_HOST_CTRL_CTLBLKSR_4 (3 << 0) | ||
102 | |||
103 | #define USBH_SYSISR 0x88 | ||
104 | #define USBH_SYSISR_PSCINT (1 << 6) | ||
105 | #define USBH_SYSISR_FMOFINT (1 << 5) | ||
106 | #define USBH_SYSISR_HERRINT (1 << 4) | ||
107 | #define USBH_SYSISR_RESDETINT (1 << 3) | ||
108 | #define USBH_SYSISR_SOFINT (1 << 2) | ||
109 | #define USBH_SYSISR_DONEINT (1 << 1) | ||
110 | #define USBH_SYSISR_SORINT (1 << 0) | ||
111 | |||
112 | #define USBH_SYSIEN 0x8c | ||
113 | #define USBH_SYSIEN_PSCINT (1 << 6) | ||
114 | #define USBH_SYSIEN_FMOFINT (1 << 5) | ||
115 | #define USBH_SYSIEN_HERRINT (1 << 4) | ||
116 | #define USBH_SYSIEN_RESDETINT (1 << 3) | ||
117 | #define USBH_SYSIEN_SOFINT (1 << 2) | ||
118 | #define USBH_SYSIEN_DONEINT (1 << 1) | ||
119 | #define USBH_SYSIEN_SORINT (1 << 0) | ||
120 | |||
121 | #define USBH_XBUFSTAT 0x98 | ||
122 | #define USBH_YBUFSTAT 0x9c | ||
123 | #define USBH_XYINTEN 0xa0 | ||
124 | #define USBH_XFILLSTAT 0xa8 | ||
125 | #define USBH_YFILLSTAT 0xac | ||
126 | #define USBH_ETDENSET 0xc0 | ||
127 | #define USBH_ETDENCLR 0xc4 | ||
128 | #define USBH_IMMEDINT 0xcc | ||
129 | #define USBH_ETDDONESTAT 0xd0 | ||
130 | #define USBH_ETDDONEEN 0xd4 | ||
131 | #define USBH_FRMNUB 0xe0 | ||
132 | #define USBH_LSTHRESH 0xe4 | ||
133 | |||
134 | #define USBH_ROOTHUBA 0xe8 | ||
135 | #define USBH_ROOTHUBA_PWRTOGOOD_MASK (0xff) | ||
136 | #define USBH_ROOTHUBA_PWRTOGOOD_SHIFT (24) | ||
137 | #define USBH_ROOTHUBA_NOOVRCURP (1 << 12) | ||
138 | #define USBH_ROOTHUBA_OVRCURPM (1 << 11) | ||
139 | #define USBH_ROOTHUBA_DEVTYPE (1 << 10) | ||
140 | #define USBH_ROOTHUBA_PWRSWTMD (1 << 9) | ||
141 | #define USBH_ROOTHUBA_NOPWRSWT (1 << 8) | ||
142 | #define USBH_ROOTHUBA_NDNSTMPRT_MASK (0xff) | ||
143 | |||
144 | #define USBH_ROOTHUBB 0xec | ||
145 | #define USBH_ROOTHUBB_PRTPWRCM(x) (1 << ((x) + 16)) | ||
146 | #define USBH_ROOTHUBB_DEVREMOVE(x) (1 << (x)) | ||
147 | |||
148 | #define USBH_ROOTSTAT 0xf0 | ||
149 | #define USBH_ROOTSTAT_CLRRMTWUE (1 << 31) | ||
150 | #define USBH_ROOTSTAT_OVRCURCHG (1 << 17) | ||
151 | #define USBH_ROOTSTAT_DEVCONWUE (1 << 15) | ||
152 | #define USBH_ROOTSTAT_OVRCURI (1 << 1) | ||
153 | #define USBH_ROOTSTAT_LOCPWRS (1 << 0) | ||
154 | |||
155 | #define USBH_PORTSTAT(x) (0xf4 + ((x) * 4)) | ||
156 | #define USBH_PORTSTAT_PRTRSTSC (1 << 20) | ||
157 | #define USBH_PORTSTAT_OVRCURIC (1 << 19) | ||
158 | #define USBH_PORTSTAT_PRTSTATSC (1 << 18) | ||
159 | #define USBH_PORTSTAT_PRTENBLSC (1 << 17) | ||
160 | #define USBH_PORTSTAT_CONNECTSC (1 << 16) | ||
161 | #define USBH_PORTSTAT_LSDEVCON (1 << 9) | ||
162 | #define USBH_PORTSTAT_PRTPWRST (1 << 8) | ||
163 | #define USBH_PORTSTAT_PRTRSTST (1 << 4) | ||
164 | #define USBH_PORTSTAT_PRTOVRCURI (1 << 3) | ||
165 | #define USBH_PORTSTAT_PRTSUSPST (1 << 2) | ||
166 | #define USBH_PORTSTAT_PRTENABST (1 << 1) | ||
167 | #define USBH_PORTSTAT_CURCONST (1 << 0) | ||
168 | |||
169 | #define USB_DMAREV 0x800 | ||
170 | #define USB_DMAINTSTAT 0x804 | ||
171 | #define USB_DMAINTSTAT_EPERR (1 << 1) | ||
172 | #define USB_DMAINTSTAT_ETDERR (1 << 0) | ||
173 | |||
174 | #define USB_DMAINTEN 0x808 | ||
175 | #define USB_DMAINTEN_EPERRINTEN (1 << 1) | ||
176 | #define USB_DMAINTEN_ETDERRINTEN (1 << 0) | ||
177 | |||
178 | #define USB_ETDDMAERSTAT 0x80c | ||
179 | #define USB_EPDMAERSTAT 0x810 | ||
180 | #define USB_ETDDMAEN 0x820 | ||
181 | #define USB_EPDMAEN 0x824 | ||
182 | #define USB_ETDDMAXTEN 0x828 | ||
183 | #define USB_EPDMAXTEN 0x82c | ||
184 | #define USB_ETDDMAENXYT 0x830 | ||
185 | #define USB_EPDMAENXYT 0x834 | ||
186 | #define USB_ETDDMABST4EN 0x838 | ||
187 | #define USB_EPDMABST4EN 0x83c | ||
188 | |||
189 | #define USB_MISCCONTROL 0x840 | ||
190 | #define USB_MISCCONTROL_ISOPREVFRM (1 << 3) | ||
191 | #define USB_MISCCONTROL_SKPRTRY (1 << 2) | ||
192 | #define USB_MISCCONTROL_ARBMODE (1 << 1) | ||
193 | #define USB_MISCCONTROL_FILTCC (1 << 0) | ||
194 | |||
195 | #define USB_ETDDMACHANLCLR 0x848 | ||
196 | #define USB_EPDMACHANLCLR 0x84c | ||
197 | #define USB_ETDSMSA(x) (0x900 + ((x) * 4)) | ||
198 | #define USB_EPSMSA(x) (0x980 + ((x) * 4)) | ||
199 | #define USB_ETDDMABUFPTR(x) (0xa00 + ((x) * 4)) | ||
200 | #define USB_EPDMABUFPTR(x) (0xa80 + ((x) * 4)) | ||
201 | |||
202 | #define USB_ETD_DWORD(x, w) (0x200 + ((x) * 16) + ((w) * 4)) | ||
203 | #define DW0_ADDRESS 0 | ||
204 | #define DW0_ENDPNT 7 | ||
205 | #define DW0_DIRECT 11 | ||
206 | #define DW0_SPEED 13 | ||
207 | #define DW0_FORMAT 14 | ||
208 | #define DW0_MAXPKTSIZ 16 | ||
209 | #define DW0_HALTED 27 | ||
210 | #define DW0_TOGCRY 28 | ||
211 | #define DW0_SNDNAK 30 | ||
212 | |||
213 | #define DW1_XBUFSRTAD 0 | ||
214 | #define DW1_YBUFSRTAD 16 | ||
215 | |||
216 | #define DW2_RTRYDELAY 0 | ||
217 | #define DW2_POLINTERV 0 | ||
218 | #define DW2_STARTFRM 0 | ||
219 | #define DW2_RELPOLPOS 8 | ||
220 | #define DW2_DIRPID 16 | ||
221 | #define DW2_BUFROUND 18 | ||
222 | #define DW2_DELAYINT 19 | ||
223 | #define DW2_DATATOG 22 | ||
224 | #define DW2_ERRORCNT 24 | ||
225 | #define DW2_COMPCODE 28 | ||
226 | |||
227 | #define DW3_TOTBYECNT 0 | ||
228 | #define DW3_PKTLEN0 0 | ||
229 | #define DW3_COMPCODE0 12 | ||
230 | #define DW3_PKTLEN1 16 | ||
231 | #define DW3_BUFSIZE 21 | ||
232 | #define DW3_COMPCODE1 28 | ||
233 | |||
234 | #define USBCTRL 0x600 | ||
235 | #define USBCTRL_I2C_WU_INT_STAT (1 << 27) | ||
236 | #define USBCTRL_OTG_WU_INT_STAT (1 << 26) | ||
237 | #define USBCTRL_HOST_WU_INT_STAT (1 << 25) | ||
238 | #define USBCTRL_FNT_WU_INT_STAT (1 << 24) | ||
239 | #define USBCTRL_I2C_WU_INT_EN (1 << 19) | ||
240 | #define USBCTRL_OTG_WU_INT_EN (1 << 18) | ||
241 | #define USBCTRL_HOST_WU_INT_EN (1 << 17) | ||
242 | #define USBCTRL_FNT_WU_INT_EN (1 << 16) | ||
243 | #define USBCTRL_OTC_RCV_RXDP (1 << 13) | ||
244 | #define USBCTRL_HOST1_BYP_TLL (1 << 12) | ||
245 | #define USBCTRL_OTG_BYP_VAL(x) ((x) << 10) | ||
246 | #define USBCTRL_HOST1_BYP_VAL(x) ((x) << 8) | ||
247 | #define USBCTRL_OTG_PWR_MASK (1 << 6) | ||
248 | #define USBCTRL_HOST1_PWR_MASK (1 << 5) | ||
249 | #define USBCTRL_HOST2_PWR_MASK (1 << 4) | ||
250 | #define USBCTRL_USB_BYP (1 << 2) | ||
251 | #define USBCTRL_HOST1_TXEN_OE (1 << 1) | ||
252 | |||
253 | |||
254 | /* Values in TD blocks */ | ||
255 | #define TD_DIR_SETUP 0 | ||
256 | #define TD_DIR_OUT 1 | ||
257 | #define TD_DIR_IN 2 | ||
258 | #define TD_FORMAT_CONTROL 0 | ||
259 | #define TD_FORMAT_ISO 1 | ||
260 | #define TD_FORMAT_BULK 2 | ||
261 | #define TD_FORMAT_INT 3 | ||
262 | #define TD_TOGGLE_CARRY 0 | ||
263 | #define TD_TOGGLE_DATA0 2 | ||
264 | #define TD_TOGGLE_DATA1 3 | ||
265 | |||
266 | /* control transfer states */ | ||
267 | #define US_CTRL_SETUP 2 | ||
268 | #define US_CTRL_DATA 1 | ||
269 | #define US_CTRL_ACK 0 | ||
270 | |||
271 | /* bulk transfer main state and 0-length packet */ | ||
272 | #define US_BULK 1 | ||
273 | #define US_BULK0 0 | ||
274 | |||
275 | /*ETD format description*/ | ||
276 | #define IMX_FMT_CTRL 0x0 | ||
277 | #define IMX_FMT_ISO 0x1 | ||
278 | #define IMX_FMT_BULK 0x2 | ||
279 | #define IMX_FMT_INT 0x3 | ||
280 | |||
281 | static char fmt_urb_to_etd[4] = { | ||
282 | /*PIPE_ISOCHRONOUS*/ IMX_FMT_ISO, | ||
283 | /*PIPE_INTERRUPT*/ IMX_FMT_INT, | ||
284 | /*PIPE_CONTROL*/ IMX_FMT_CTRL, | ||
285 | /*PIPE_BULK*/ IMX_FMT_BULK | ||
286 | }; | ||
287 | |||
288 | /* condition (error) CC codes and mapping (OHCI like) */ | ||
289 | |||
290 | #define TD_CC_NOERROR 0x00 | ||
291 | #define TD_CC_CRC 0x01 | ||
292 | #define TD_CC_BITSTUFFING 0x02 | ||
293 | #define TD_CC_DATATOGGLEM 0x03 | ||
294 | #define TD_CC_STALL 0x04 | ||
295 | #define TD_DEVNOTRESP 0x05 | ||
296 | #define TD_PIDCHECKFAIL 0x06 | ||
297 | /*#define TD_UNEXPECTEDPID 0x07 - reserved, not active on MX2*/ | ||
298 | #define TD_DATAOVERRUN 0x08 | ||
299 | #define TD_DATAUNDERRUN 0x09 | ||
300 | #define TD_BUFFEROVERRUN 0x0C | ||
301 | #define TD_BUFFERUNDERRUN 0x0D | ||
302 | #define TD_SCHEDULEOVERRUN 0x0E | ||
303 | #define TD_NOTACCESSED 0x0F | ||
304 | |||
305 | static const int cc_to_error[16] = { | ||
306 | /* No Error */ 0, | ||
307 | /* CRC Error */ -EILSEQ, | ||
308 | /* Bit Stuff */ -EPROTO, | ||
309 | /* Data Togg */ -EILSEQ, | ||
310 | /* Stall */ -EPIPE, | ||
311 | /* DevNotResp */ -ETIMEDOUT, | ||
312 | /* PIDCheck */ -EPROTO, | ||
313 | /* UnExpPID */ -EPROTO, | ||
314 | /* DataOver */ -EOVERFLOW, | ||
315 | /* DataUnder */ -EREMOTEIO, | ||
316 | /* (for hw) */ -EIO, | ||
317 | /* (for hw) */ -EIO, | ||
318 | /* BufferOver */ -ECOMM, | ||
319 | /* BuffUnder */ -ENOSR, | ||
320 | /* (for HCD) */ -ENOSPC, | ||
321 | /* (for HCD) */ -EALREADY | ||
322 | }; | ||
323 | |||
324 | /* HCD data associated with a usb core URB */ | ||
325 | struct urb_priv { | ||
326 | struct urb *urb; | ||
327 | struct usb_host_endpoint *ep; | ||
328 | int active; | ||
329 | int state; | ||
330 | struct td *isoc_td; | ||
331 | int isoc_remaining; | ||
332 | int isoc_status; | ||
333 | }; | ||
334 | |||
335 | /* HCD data associated with a usb core endpoint */ | ||
336 | struct ep_priv { | ||
337 | struct usb_host_endpoint *ep; | ||
338 | struct list_head td_list; | ||
339 | struct list_head queue; | ||
340 | int etd[NUM_ISO_ETDS]; | ||
341 | int waiting_etd; | ||
342 | }; | ||
343 | |||
344 | /* isoc packet */ | ||
345 | struct td { | ||
346 | struct list_head list; | ||
347 | struct urb *urb; | ||
348 | struct usb_host_endpoint *ep; | ||
349 | dma_addr_t data; | ||
350 | unsigned long buf_addr; | ||
351 | int len; | ||
352 | int frame; | ||
353 | int isoc_index; | ||
354 | }; | ||
355 | |||
356 | /* HCD data associated with a hardware ETD */ | ||
357 | struct etd_priv { | ||
358 | struct usb_host_endpoint *ep; | ||
359 | struct urb *urb; | ||
360 | struct td *td; | ||
361 | struct list_head queue; | ||
362 | dma_addr_t dma_handle; | ||
363 | int alloc; | ||
364 | int len; | ||
365 | int dmem_size; | ||
366 | int dmem_offset; | ||
367 | int active_count; | ||
368 | #ifdef DEBUG | ||
369 | int activated_frame; | ||
370 | int disactivated_frame; | ||
371 | int last_int_frame; | ||
372 | int last_req_frame; | ||
373 | u32 submitted_dwords[4]; | ||
374 | #endif | ||
375 | }; | ||
376 | |||
377 | /* Hardware data memory info */ | ||
378 | struct imx21_dmem_area { | ||
379 | struct usb_host_endpoint *ep; | ||
380 | unsigned int offset; | ||
381 | unsigned int size; | ||
382 | struct list_head list; | ||
383 | }; | ||
384 | |||
385 | #ifdef DEBUG | ||
386 | struct debug_usage_stats { | ||
387 | unsigned int value; | ||
388 | unsigned int maximum; | ||
389 | }; | ||
390 | |||
391 | struct debug_stats { | ||
392 | unsigned long submitted; | ||
393 | unsigned long completed_ok; | ||
394 | unsigned long completed_failed; | ||
395 | unsigned long unlinked; | ||
396 | unsigned long queue_etd; | ||
397 | unsigned long queue_dmem; | ||
398 | }; | ||
399 | |||
400 | struct debug_isoc_trace { | ||
401 | int schedule_frame; | ||
402 | int submit_frame; | ||
403 | int request_len; | ||
404 | int done_frame; | ||
405 | int done_len; | ||
406 | int cc; | ||
407 | struct td *td; | ||
408 | }; | ||
409 | #endif | ||
410 | |||
411 | /* HCD data structure */ | ||
412 | struct imx21 { | ||
413 | spinlock_t lock; | ||
414 | struct device *dev; | ||
415 | struct mx21_usbh_platform_data *pdata; | ||
416 | struct list_head dmem_list; | ||
417 | struct list_head queue_for_etd; /* eps queued due to etd shortage */ | ||
418 | struct list_head queue_for_dmem; /* etds queued due to dmem shortage */ | ||
419 | struct etd_priv etd[USB_NUM_ETD]; | ||
420 | struct clk *clk; | ||
421 | void __iomem *regs; | ||
422 | #ifdef DEBUG | ||
423 | struct dentry *debug_root; | ||
424 | struct debug_stats nonisoc_stats; | ||
425 | struct debug_stats isoc_stats; | ||
426 | struct debug_usage_stats etd_usage; | ||
427 | struct debug_usage_stats dmem_usage; | ||
428 | struct debug_isoc_trace isoc_trace[20]; | ||
429 | struct debug_isoc_trace isoc_trace_failed[20]; | ||
430 | unsigned long debug_unblocks; | ||
431 | int isoc_trace_index; | ||
432 | int isoc_trace_index_failed; | ||
433 | #endif | ||
434 | }; | ||
435 | |||
436 | #endif | ||
diff --git a/drivers/usb/host/isp1362-hcd.c b/drivers/usb/host/isp1362-hcd.c index 42971657fde2..217fb5170200 100644 --- a/drivers/usb/host/isp1362-hcd.c +++ b/drivers/usb/host/isp1362-hcd.c | |||
@@ -1257,7 +1257,7 @@ static int isp1362_urb_enqueue(struct usb_hcd *hcd, | |||
1257 | 1257 | ||
1258 | /* avoid all allocations within spinlocks: request or endpoint */ | 1258 | /* avoid all allocations within spinlocks: request or endpoint */ |
1259 | if (!hep->hcpriv) { | 1259 | if (!hep->hcpriv) { |
1260 | ep = kcalloc(1, sizeof *ep, mem_flags); | 1260 | ep = kzalloc(sizeof *ep, mem_flags); |
1261 | if (!ep) | 1261 | if (!ep) |
1262 | return -ENOMEM; | 1262 | return -ENOMEM; |
1263 | } | 1263 | } |
@@ -2719,24 +2719,11 @@ static int __init isp1362_probe(struct platform_device *pdev) | |||
2719 | } | 2719 | } |
2720 | irq = irq_res->start; | 2720 | irq = irq_res->start; |
2721 | 2721 | ||
2722 | #ifdef CONFIG_USB_HCD_DMA | ||
2723 | if (pdev->dev.dma_mask) { | ||
2724 | struct resource *dma_res = platform_get_resource(pdev, IORESOURCE_MEM, 2); | ||
2725 | |||
2726 | if (!dma_res) { | ||
2727 | retval = -ENODEV; | ||
2728 | goto err1; | ||
2729 | } | ||
2730 | isp1362_hcd->data_dma = dma_res->start; | ||
2731 | isp1362_hcd->max_dma_size = resource_len(dma_res); | ||
2732 | } | ||
2733 | #else | ||
2734 | if (pdev->dev.dma_mask) { | 2722 | if (pdev->dev.dma_mask) { |
2735 | DBG(1, "won't do DMA"); | 2723 | DBG(1, "won't do DMA"); |
2736 | retval = -ENODEV; | 2724 | retval = -ENODEV; |
2737 | goto err1; | 2725 | goto err1; |
2738 | } | 2726 | } |
2739 | #endif | ||
2740 | 2727 | ||
2741 | if (!request_mem_region(addr->start, resource_len(addr), hcd_name)) { | 2728 | if (!request_mem_region(addr->start, resource_len(addr), hcd_name)) { |
2742 | retval = -EBUSY; | 2729 | retval = -EBUSY; |
diff --git a/drivers/usb/host/isp1760-hcd.c b/drivers/usb/host/isp1760-hcd.c index 27b8f7cb4471..9f01293600b0 100644 --- a/drivers/usb/host/isp1760-hcd.c +++ b/drivers/usb/host/isp1760-hcd.c | |||
@@ -17,7 +17,9 @@ | |||
17 | #include <linux/debugfs.h> | 17 | #include <linux/debugfs.h> |
18 | #include <linux/uaccess.h> | 18 | #include <linux/uaccess.h> |
19 | #include <linux/io.h> | 19 | #include <linux/io.h> |
20 | #include <linux/mm.h> | ||
20 | #include <asm/unaligned.h> | 21 | #include <asm/unaligned.h> |
22 | #include <asm/cacheflush.h> | ||
21 | 23 | ||
22 | #include "../core/hcd.h" | 24 | #include "../core/hcd.h" |
23 | #include "isp1760-hcd.h" | 25 | #include "isp1760-hcd.h" |
@@ -904,6 +906,14 @@ __acquires(priv->lock) | |||
904 | status = 0; | 906 | status = 0; |
905 | } | 907 | } |
906 | 908 | ||
909 | if (usb_pipein(urb->pipe) && usb_pipetype(urb->pipe) != PIPE_CONTROL) { | ||
910 | void *ptr; | ||
911 | for (ptr = urb->transfer_buffer; | ||
912 | ptr < urb->transfer_buffer + urb->transfer_buffer_length; | ||
913 | ptr += PAGE_SIZE) | ||
914 | flush_dcache_page(virt_to_page(ptr)); | ||
915 | } | ||
916 | |||
907 | /* complete() can reenter this HCD */ | 917 | /* complete() can reenter this HCD */ |
908 | usb_hcd_unlink_urb_from_ep(priv_to_hcd(priv), urb); | 918 | usb_hcd_unlink_urb_from_ep(priv_to_hcd(priv), urb); |
909 | spin_unlock(&priv->lock); | 919 | spin_unlock(&priv->lock); |
diff --git a/drivers/usb/host/isp1760-if.c b/drivers/usb/host/isp1760-if.c index 1c9f977a5c9c..4293cfd28d61 100644 --- a/drivers/usb/host/isp1760-if.c +++ b/drivers/usb/host/isp1760-if.c | |||
@@ -109,7 +109,7 @@ static int of_isp1760_remove(struct of_device *dev) | |||
109 | return 0; | 109 | return 0; |
110 | } | 110 | } |
111 | 111 | ||
112 | static struct of_device_id of_isp1760_match[] = { | 112 | static const struct of_device_id of_isp1760_match[] = { |
113 | { | 113 | { |
114 | .compatible = "nxp,usb-isp1760", | 114 | .compatible = "nxp,usb-isp1760", |
115 | }, | 115 | }, |
diff --git a/drivers/usb/host/ohci-da8xx.c b/drivers/usb/host/ohci-da8xx.c new file mode 100644 index 000000000000..4aa08d36d077 --- /dev/null +++ b/drivers/usb/host/ohci-da8xx.c | |||
@@ -0,0 +1,456 @@ | |||
1 | /* | ||
2 | * OHCI HCD (Host Controller Driver) for USB. | ||
3 | * | ||
4 | * TI DA8xx (OMAP-L1x) Bus Glue | ||
5 | * | ||
6 | * Derived from: ohci-omap.c and ohci-s3c2410.c | ||
7 | * Copyright (C) 2008-2009 MontaVista Software, Inc. <source@mvista.com> | ||
8 | * | ||
9 | * This file is licensed under the terms of the GNU General Public License | ||
10 | * version 2. This program is licensed "as is" without any warranty of any | ||
11 | * kind, whether express or implied. | ||
12 | */ | ||
13 | |||
14 | #include <linux/interrupt.h> | ||
15 | #include <linux/jiffies.h> | ||
16 | #include <linux/platform_device.h> | ||
17 | #include <linux/clk.h> | ||
18 | |||
19 | #include <mach/da8xx.h> | ||
20 | #include <mach/usb.h> | ||
21 | |||
22 | #ifndef CONFIG_ARCH_DAVINCI_DA8XX | ||
23 | #error "This file is DA8xx bus glue. Define CONFIG_ARCH_DAVINCI_DA8XX." | ||
24 | #endif | ||
25 | |||
26 | #define CFGCHIP2 DA8XX_SYSCFG_VIRT(DA8XX_CFGCHIP2_REG) | ||
27 | |||
28 | static struct clk *usb11_clk; | ||
29 | static struct clk *usb20_clk; | ||
30 | |||
31 | /* Over-current indicator change bitmask */ | ||
32 | static volatile u16 ocic_mask; | ||
33 | |||
34 | static void ohci_da8xx_clock(int on) | ||
35 | { | ||
36 | u32 cfgchip2; | ||
37 | |||
38 | cfgchip2 = __raw_readl(CFGCHIP2); | ||
39 | if (on) { | ||
40 | clk_enable(usb11_clk); | ||
41 | |||
42 | /* | ||
43 | * If USB 1.1 reference clock is sourced from USB 2.0 PHY, we | ||
44 | * need to enable the USB 2.0 module clocking, start its PHY, | ||
45 | * and not allow it to stop the clock during USB 2.0 suspend. | ||
46 | */ | ||
47 | if (!(cfgchip2 & CFGCHIP2_USB1PHYCLKMUX)) { | ||
48 | clk_enable(usb20_clk); | ||
49 | |||
50 | cfgchip2 &= ~(CFGCHIP2_RESET | CFGCHIP2_PHYPWRDN); | ||
51 | cfgchip2 |= CFGCHIP2_PHY_PLLON; | ||
52 | __raw_writel(cfgchip2, CFGCHIP2); | ||
53 | |||
54 | pr_info("Waiting for USB PHY clock good...\n"); | ||
55 | while (!(__raw_readl(CFGCHIP2) & CFGCHIP2_PHYCLKGD)) | ||
56 | cpu_relax(); | ||
57 | } | ||
58 | |||
59 | /* Enable USB 1.1 PHY */ | ||
60 | cfgchip2 |= CFGCHIP2_USB1SUSPENDM; | ||
61 | } else { | ||
62 | clk_disable(usb11_clk); | ||
63 | if (!(cfgchip2 & CFGCHIP2_USB1PHYCLKMUX)) | ||
64 | clk_disable(usb20_clk); | ||
65 | |||
66 | /* Disable USB 1.1 PHY */ | ||
67 | cfgchip2 &= ~CFGCHIP2_USB1SUSPENDM; | ||
68 | } | ||
69 | __raw_writel(cfgchip2, CFGCHIP2); | ||
70 | } | ||
71 | |||
72 | /* | ||
73 | * Handle the port over-current indicator change. | ||
74 | */ | ||
75 | static void ohci_da8xx_ocic_handler(struct da8xx_ohci_root_hub *hub, | ||
76 | unsigned port) | ||
77 | { | ||
78 | ocic_mask |= 1 << port; | ||
79 | |||
80 | /* Once over-current is detected, the port needs to be powered down */ | ||
81 | if (hub->get_oci(port) > 0) | ||
82 | hub->set_power(port, 0); | ||
83 | } | ||
84 | |||
85 | static int ohci_da8xx_init(struct usb_hcd *hcd) | ||
86 | { | ||
87 | struct device *dev = hcd->self.controller; | ||
88 | struct da8xx_ohci_root_hub *hub = dev->platform_data; | ||
89 | struct ohci_hcd *ohci = hcd_to_ohci(hcd); | ||
90 | int result; | ||
91 | u32 rh_a; | ||
92 | |||
93 | dev_dbg(dev, "starting USB controller\n"); | ||
94 | |||
95 | ohci_da8xx_clock(1); | ||
96 | |||
97 | /* | ||
98 | * DA8xx only have 1 port connected to the pins but the HC root hub | ||
99 | * register A reports 2 ports, thus we'll have to override it... | ||
100 | */ | ||
101 | ohci->num_ports = 1; | ||
102 | |||
103 | result = ohci_init(ohci); | ||
104 | if (result < 0) | ||
105 | return result; | ||
106 | |||
107 | /* | ||
108 | * Since we're providing a board-specific root hub port power control | ||
109 | * and over-current reporting, we have to override the HC root hub A | ||
110 | * register's default value, so that ohci_hub_control() could return | ||
111 | * the correct hub descriptor... | ||
112 | */ | ||
113 | rh_a = ohci_readl(ohci, &ohci->regs->roothub.a); | ||
114 | if (hub->set_power) { | ||
115 | rh_a &= ~RH_A_NPS; | ||
116 | rh_a |= RH_A_PSM; | ||
117 | } | ||
118 | if (hub->get_oci) { | ||
119 | rh_a &= ~RH_A_NOCP; | ||
120 | rh_a |= RH_A_OCPM; | ||
121 | } | ||
122 | rh_a &= ~RH_A_POTPGT; | ||
123 | rh_a |= hub->potpgt << 24; | ||
124 | ohci_writel(ohci, rh_a, &ohci->regs->roothub.a); | ||
125 | |||
126 | return result; | ||
127 | } | ||
128 | |||
129 | static void ohci_da8xx_stop(struct usb_hcd *hcd) | ||
130 | { | ||
131 | ohci_stop(hcd); | ||
132 | ohci_da8xx_clock(0); | ||
133 | } | ||
134 | |||
135 | static int ohci_da8xx_start(struct usb_hcd *hcd) | ||
136 | { | ||
137 | struct ohci_hcd *ohci = hcd_to_ohci(hcd); | ||
138 | int result; | ||
139 | |||
140 | result = ohci_run(ohci); | ||
141 | if (result < 0) | ||
142 | ohci_da8xx_stop(hcd); | ||
143 | |||
144 | return result; | ||
145 | } | ||
146 | |||
147 | /* | ||
148 | * Update the status data from the hub with the over-current indicator change. | ||
149 | */ | ||
150 | static int ohci_da8xx_hub_status_data(struct usb_hcd *hcd, char *buf) | ||
151 | { | ||
152 | int length = ohci_hub_status_data(hcd, buf); | ||
153 | |||
154 | /* See if we have OCIC bit set on port 1 */ | ||
155 | if (ocic_mask & (1 << 1)) { | ||
156 | dev_dbg(hcd->self.controller, "over-current indicator change " | ||
157 | "on port 1\n"); | ||
158 | |||
159 | if (!length) | ||
160 | length = 1; | ||
161 | |||
162 | buf[0] |= 1 << 1; | ||
163 | } | ||
164 | return length; | ||
165 | } | ||
166 | |||
167 | /* | ||
168 | * Look at the control requests to the root hub and see if we need to override. | ||
169 | */ | ||
170 | static int ohci_da8xx_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue, | ||
171 | u16 wIndex, char *buf, u16 wLength) | ||
172 | { | ||
173 | struct device *dev = hcd->self.controller; | ||
174 | struct da8xx_ohci_root_hub *hub = dev->platform_data; | ||
175 | int temp; | ||
176 | |||
177 | switch (typeReq) { | ||
178 | case GetPortStatus: | ||
179 | /* Check the port number */ | ||
180 | if (wIndex != 1) | ||
181 | break; | ||
182 | |||
183 | dev_dbg(dev, "GetPortStatus(%u)\n", wIndex); | ||
184 | |||
185 | temp = roothub_portstatus(hcd_to_ohci(hcd), wIndex - 1); | ||
186 | |||
187 | /* The port power status (PPS) bit defaults to 1 */ | ||
188 | if (hub->get_power && hub->get_power(wIndex) == 0) | ||
189 | temp &= ~RH_PS_PPS; | ||
190 | |||
191 | /* The port over-current indicator (POCI) bit is always 0 */ | ||
192 | if (hub->get_oci && hub->get_oci(wIndex) > 0) | ||
193 | temp |= RH_PS_POCI; | ||
194 | |||
195 | /* The over-current indicator change (OCIC) bit is 0 too */ | ||
196 | if (ocic_mask & (1 << wIndex)) | ||
197 | temp |= RH_PS_OCIC; | ||
198 | |||
199 | put_unaligned(cpu_to_le32(temp), (__le32 *)buf); | ||
200 | return 0; | ||
201 | case SetPortFeature: | ||
202 | temp = 1; | ||
203 | goto check_port; | ||
204 | case ClearPortFeature: | ||
205 | temp = 0; | ||
206 | |||
207 | check_port: | ||
208 | /* Check the port number */ | ||
209 | if (wIndex != 1) | ||
210 | break; | ||
211 | |||
212 | switch (wValue) { | ||
213 | case USB_PORT_FEAT_POWER: | ||
214 | dev_dbg(dev, "%sPortFeature(%u): %s\n", | ||
215 | temp ? "Set" : "Clear", wIndex, "POWER"); | ||
216 | |||
217 | if (!hub->set_power) | ||
218 | return -EPIPE; | ||
219 | |||
220 | return hub->set_power(wIndex, temp) ? -EPIPE : 0; | ||
221 | case USB_PORT_FEAT_C_OVER_CURRENT: | ||
222 | dev_dbg(dev, "%sPortFeature(%u): %s\n", | ||
223 | temp ? "Set" : "Clear", wIndex, | ||
224 | "C_OVER_CURRENT"); | ||
225 | |||
226 | if (temp) | ||
227 | ocic_mask |= 1 << wIndex; | ||
228 | else | ||
229 | ocic_mask &= ~(1 << wIndex); | ||
230 | return 0; | ||
231 | } | ||
232 | } | ||
233 | |||
234 | return ohci_hub_control(hcd, typeReq, wValue, wIndex, buf, wLength); | ||
235 | } | ||
236 | |||
237 | static const struct hc_driver ohci_da8xx_hc_driver = { | ||
238 | .description = hcd_name, | ||
239 | .product_desc = "DA8xx OHCI", | ||
240 | .hcd_priv_size = sizeof(struct ohci_hcd), | ||
241 | |||
242 | /* | ||
243 | * generic hardware linkage | ||
244 | */ | ||
245 | .irq = ohci_irq, | ||
246 | .flags = HCD_USB11 | HCD_MEMORY, | ||
247 | |||
248 | /* | ||
249 | * basic lifecycle operations | ||
250 | */ | ||
251 | .reset = ohci_da8xx_init, | ||
252 | .start = ohci_da8xx_start, | ||
253 | .stop = ohci_da8xx_stop, | ||
254 | .shutdown = ohci_shutdown, | ||
255 | |||
256 | /* | ||
257 | * managing i/o requests and associated device resources | ||
258 | */ | ||
259 | .urb_enqueue = ohci_urb_enqueue, | ||
260 | .urb_dequeue = ohci_urb_dequeue, | ||
261 | .endpoint_disable = ohci_endpoint_disable, | ||
262 | |||
263 | /* | ||
264 | * scheduling support | ||
265 | */ | ||
266 | .get_frame_number = ohci_get_frame, | ||
267 | |||
268 | /* | ||
269 | * root hub support | ||
270 | */ | ||
271 | .hub_status_data = ohci_da8xx_hub_status_data, | ||
272 | .hub_control = ohci_da8xx_hub_control, | ||
273 | |||
274 | #ifdef CONFIG_PM | ||
275 | .bus_suspend = ohci_bus_suspend, | ||
276 | .bus_resume = ohci_bus_resume, | ||
277 | #endif | ||
278 | .start_port_reset = ohci_start_port_reset, | ||
279 | }; | ||
280 | |||
281 | /*-------------------------------------------------------------------------*/ | ||
282 | |||
283 | |||
284 | /** | ||
285 | * usb_hcd_da8xx_probe - initialize DA8xx-based HCDs | ||
286 | * Context: !in_interrupt() | ||
287 | * | ||
288 | * Allocates basic resources for this USB host controller, and | ||
289 | * then invokes the start() method for the HCD associated with it | ||
290 | * through the hotplug entry's driver_data. | ||
291 | */ | ||
292 | static int usb_hcd_da8xx_probe(const struct hc_driver *driver, | ||
293 | struct platform_device *pdev) | ||
294 | { | ||
295 | struct da8xx_ohci_root_hub *hub = pdev->dev.platform_data; | ||
296 | struct usb_hcd *hcd; | ||
297 | struct resource *mem; | ||
298 | int error, irq; | ||
299 | |||
300 | if (hub == NULL) | ||
301 | return -ENODEV; | ||
302 | |||
303 | usb11_clk = clk_get(&pdev->dev, "usb11"); | ||
304 | if (IS_ERR(usb11_clk)) | ||
305 | return PTR_ERR(usb11_clk); | ||
306 | |||
307 | usb20_clk = clk_get(&pdev->dev, "usb20"); | ||
308 | if (IS_ERR(usb20_clk)) { | ||
309 | error = PTR_ERR(usb20_clk); | ||
310 | goto err0; | ||
311 | } | ||
312 | |||
313 | hcd = usb_create_hcd(driver, &pdev->dev, dev_name(&pdev->dev)); | ||
314 | if (!hcd) { | ||
315 | error = -ENOMEM; | ||
316 | goto err1; | ||
317 | } | ||
318 | |||
319 | mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
320 | if (!mem) { | ||
321 | error = -ENODEV; | ||
322 | goto err2; | ||
323 | } | ||
324 | hcd->rsrc_start = mem->start; | ||
325 | hcd->rsrc_len = mem->end - mem->start + 1; | ||
326 | |||
327 | if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) { | ||
328 | dev_dbg(&pdev->dev, "request_mem_region failed\n"); | ||
329 | error = -EBUSY; | ||
330 | goto err2; | ||
331 | } | ||
332 | |||
333 | hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len); | ||
334 | if (!hcd->regs) { | ||
335 | dev_err(&pdev->dev, "ioremap failed\n"); | ||
336 | error = -ENOMEM; | ||
337 | goto err3; | ||
338 | } | ||
339 | |||
340 | ohci_hcd_init(hcd_to_ohci(hcd)); | ||
341 | |||
342 | irq = platform_get_irq(pdev, 0); | ||
343 | if (irq < 0) { | ||
344 | error = -ENODEV; | ||
345 | goto err4; | ||
346 | } | ||
347 | error = usb_add_hcd(hcd, irq, IRQF_DISABLED); | ||
348 | if (error) | ||
349 | goto err4; | ||
350 | |||
351 | if (hub->ocic_notify) { | ||
352 | error = hub->ocic_notify(ohci_da8xx_ocic_handler); | ||
353 | if (!error) | ||
354 | return 0; | ||
355 | } | ||
356 | |||
357 | usb_remove_hcd(hcd); | ||
358 | err4: | ||
359 | iounmap(hcd->regs); | ||
360 | err3: | ||
361 | release_mem_region(hcd->rsrc_start, hcd->rsrc_len); | ||
362 | err2: | ||
363 | usb_put_hcd(hcd); | ||
364 | err1: | ||
365 | clk_put(usb20_clk); | ||
366 | err0: | ||
367 | clk_put(usb11_clk); | ||
368 | return error; | ||
369 | } | ||
370 | |||
371 | /** | ||
372 | * usb_hcd_da8xx_remove - shutdown processing for DA8xx-based HCDs | ||
373 | * @dev: USB Host Controller being removed | ||
374 | * Context: !in_interrupt() | ||
375 | * | ||
376 | * Reverses the effect of usb_hcd_da8xx_probe(), first invoking | ||
377 | * the HCD's stop() method. It is always called from a thread | ||
378 | * context, normally "rmmod", "apmd", or something similar. | ||
379 | */ | ||
380 | static inline void | ||
381 | usb_hcd_da8xx_remove(struct usb_hcd *hcd, struct platform_device *pdev) | ||
382 | { | ||
383 | struct da8xx_ohci_root_hub *hub = pdev->dev.platform_data; | ||
384 | |||
385 | hub->ocic_notify(NULL); | ||
386 | usb_remove_hcd(hcd); | ||
387 | iounmap(hcd->regs); | ||
388 | release_mem_region(hcd->rsrc_start, hcd->rsrc_len); | ||
389 | usb_put_hcd(hcd); | ||
390 | clk_put(usb20_clk); | ||
391 | clk_put(usb11_clk); | ||
392 | } | ||
393 | |||
394 | static int ohci_hcd_da8xx_drv_probe(struct platform_device *dev) | ||
395 | { | ||
396 | return usb_hcd_da8xx_probe(&ohci_da8xx_hc_driver, dev); | ||
397 | } | ||
398 | |||
399 | static int ohci_hcd_da8xx_drv_remove(struct platform_device *dev) | ||
400 | { | ||
401 | struct usb_hcd *hcd = platform_get_drvdata(dev); | ||
402 | |||
403 | usb_hcd_da8xx_remove(hcd, dev); | ||
404 | platform_set_drvdata(dev, NULL); | ||
405 | |||
406 | return 0; | ||
407 | } | ||
408 | |||
409 | #ifdef CONFIG_PM | ||
410 | static int ohci_da8xx_suspend(struct platform_device *dev, pm_message_t message) | ||
411 | { | ||
412 | struct usb_hcd *hcd = platform_get_drvdata(dev); | ||
413 | struct ohci_hcd *ohci = hcd_to_ohci(hcd); | ||
414 | |||
415 | if (time_before(jiffies, ohci->next_statechange)) | ||
416 | msleep(5); | ||
417 | ohci->next_statechange = jiffies; | ||
418 | |||
419 | ohci_da8xx_clock(0); | ||
420 | hcd->state = HC_STATE_SUSPENDED; | ||
421 | dev->dev.power.power_state = PMSG_SUSPEND; | ||
422 | return 0; | ||
423 | } | ||
424 | |||
425 | static int ohci_da8xx_resume(struct platform_device *dev) | ||
426 | { | ||
427 | struct usb_hcd *hcd = platform_get_drvdata(dev); | ||
428 | struct ohci_hcd *ohci = hcd_to_ohci(hcd); | ||
429 | |||
430 | if (time_before(jiffies, ohci->next_statechange)) | ||
431 | msleep(5); | ||
432 | ohci->next_statechange = jiffies; | ||
433 | |||
434 | ohci_da8xx_clock(1); | ||
435 | dev->dev.power.power_state = PMSG_ON; | ||
436 | usb_hcd_resume_root_hub(hcd); | ||
437 | return 0; | ||
438 | } | ||
439 | #endif | ||
440 | |||
441 | /* | ||
442 | * Driver definition to register with platform structure. | ||
443 | */ | ||
444 | static struct platform_driver ohci_hcd_da8xx_driver = { | ||
445 | .probe = ohci_hcd_da8xx_drv_probe, | ||
446 | .remove = ohci_hcd_da8xx_drv_remove, | ||
447 | .shutdown = usb_hcd_platform_shutdown, | ||
448 | #ifdef CONFIG_PM | ||
449 | .suspend = ohci_da8xx_suspend, | ||
450 | .resume = ohci_da8xx_resume, | ||
451 | #endif | ||
452 | .driver = { | ||
453 | .owner = THIS_MODULE, | ||
454 | .name = "ohci", | ||
455 | }, | ||
456 | }; | ||
diff --git a/drivers/usb/host/ohci-dbg.c b/drivers/usb/host/ohci-dbg.c index 811f5dfdc582..8ad2441b0284 100644 --- a/drivers/usb/host/ohci-dbg.c +++ b/drivers/usb/host/ohci-dbg.c | |||
@@ -53,13 +53,13 @@ urb_print(struct urb * urb, char * str, int small, int status) | |||
53 | int i, len; | 53 | int i, len; |
54 | 54 | ||
55 | if (usb_pipecontrol (pipe)) { | 55 | if (usb_pipecontrol (pipe)) { |
56 | printk (KERN_DEBUG __FILE__ ": setup(8):"); | 56 | printk (KERN_DEBUG "%s: setup(8):", __FILE__); |
57 | for (i = 0; i < 8 ; i++) | 57 | for (i = 0; i < 8 ; i++) |
58 | printk (" %02x", ((__u8 *) urb->setup_packet) [i]); | 58 | printk (" %02x", ((__u8 *) urb->setup_packet) [i]); |
59 | printk ("\n"); | 59 | printk ("\n"); |
60 | } | 60 | } |
61 | if (urb->transfer_buffer_length > 0 && urb->transfer_buffer) { | 61 | if (urb->transfer_buffer_length > 0 && urb->transfer_buffer) { |
62 | printk (KERN_DEBUG __FILE__ ": data(%d/%d):", | 62 | printk (KERN_DEBUG "%s: data(%d/%d):", __FILE__, |
63 | urb->actual_length, | 63 | urb->actual_length, |
64 | urb->transfer_buffer_length); | 64 | urb->transfer_buffer_length); |
65 | len = usb_pipeout (pipe)? | 65 | len = usb_pipeout (pipe)? |
diff --git a/drivers/usb/host/ohci-hcd.c b/drivers/usb/host/ohci-hcd.c index 24eb74781919..afe59be23645 100644 --- a/drivers/usb/host/ohci-hcd.c +++ b/drivers/usb/host/ohci-hcd.c | |||
@@ -1051,6 +1051,11 @@ MODULE_LICENSE ("GPL"); | |||
1051 | #define PLATFORM_DRIVER usb_hcd_pnx4008_driver | 1051 | #define PLATFORM_DRIVER usb_hcd_pnx4008_driver |
1052 | #endif | 1052 | #endif |
1053 | 1053 | ||
1054 | #ifdef CONFIG_ARCH_DAVINCI_DA8XX | ||
1055 | #include "ohci-da8xx.c" | ||
1056 | #define PLATFORM_DRIVER ohci_hcd_da8xx_driver | ||
1057 | #endif | ||
1058 | |||
1054 | #if defined(CONFIG_CPU_SUBTYPE_SH7720) || \ | 1059 | #if defined(CONFIG_CPU_SUBTYPE_SH7720) || \ |
1055 | defined(CONFIG_CPU_SUBTYPE_SH7721) || \ | 1060 | defined(CONFIG_CPU_SUBTYPE_SH7721) || \ |
1056 | defined(CONFIG_CPU_SUBTYPE_SH7763) || \ | 1061 | defined(CONFIG_CPU_SUBTYPE_SH7763) || \ |
diff --git a/drivers/usb/host/ohci-lh7a404.c b/drivers/usb/host/ohci-lh7a404.c index de42283149c7..18d39f0463ee 100644 --- a/drivers/usb/host/ohci-lh7a404.c +++ b/drivers/usb/host/ohci-lh7a404.c | |||
@@ -28,8 +28,8 @@ extern int usb_disabled(void); | |||
28 | 28 | ||
29 | static void lh7a404_start_hc(struct platform_device *dev) | 29 | static void lh7a404_start_hc(struct platform_device *dev) |
30 | { | 30 | { |
31 | printk(KERN_DEBUG __FILE__ | 31 | printk(KERN_DEBUG "%s: starting LH7A404 OHCI USB Controller\n", |
32 | ": starting LH7A404 OHCI USB Controller\n"); | 32 | __FILE__); |
33 | 33 | ||
34 | /* | 34 | /* |
35 | * Now, carefully enable the USB clock, and take | 35 | * Now, carefully enable the USB clock, and take |
@@ -39,14 +39,13 @@ static void lh7a404_start_hc(struct platform_device *dev) | |||
39 | udelay(1000); | 39 | udelay(1000); |
40 | USBH_CMDSTATUS = OHCI_HCR; | 40 | USBH_CMDSTATUS = OHCI_HCR; |
41 | 41 | ||
42 | printk(KERN_DEBUG __FILE__ | 42 | printk(KERN_DEBUG "%s: Clock to USB host has been enabled \n", __FILE__); |
43 | ": Clock to USB host has been enabled \n"); | ||
44 | } | 43 | } |
45 | 44 | ||
46 | static void lh7a404_stop_hc(struct platform_device *dev) | 45 | static void lh7a404_stop_hc(struct platform_device *dev) |
47 | { | 46 | { |
48 | printk(KERN_DEBUG __FILE__ | 47 | printk(KERN_DEBUG "%s: stopping LH7A404 OHCI USB Controller\n", |
49 | ": stopping LH7A404 OHCI USB Controller\n"); | 48 | __FILE__); |
50 | 49 | ||
51 | CSC_PWRCNT &= ~CSC_PWRCNT_USBH_EN; /* Disable clock */ | 50 | CSC_PWRCNT &= ~CSC_PWRCNT_USBH_EN; /* Disable clock */ |
52 | } | 51 | } |
diff --git a/drivers/usb/host/ohci-pnx4008.c b/drivers/usb/host/ohci-pnx4008.c index 2769326da42e..cd74bbdd007c 100644 --- a/drivers/usb/host/ohci-pnx4008.c +++ b/drivers/usb/host/ohci-pnx4008.c | |||
@@ -327,7 +327,7 @@ static int __devinit usb_hcd_pnx4008_probe(struct platform_device *pdev) | |||
327 | } | 327 | } |
328 | i2c_adap = i2c_get_adapter(2); | 328 | i2c_adap = i2c_get_adapter(2); |
329 | memset(&i2c_info, 0, sizeof(struct i2c_board_info)); | 329 | memset(&i2c_info, 0, sizeof(struct i2c_board_info)); |
330 | strlcpy(i2c_info.name, "isp1301_pnx", I2C_NAME_SIZE); | 330 | strlcpy(i2c_info.type, "isp1301_pnx", I2C_NAME_SIZE); |
331 | isp1301_i2c_client = i2c_new_probed_device(i2c_adap, &i2c_info, | 331 | isp1301_i2c_client = i2c_new_probed_device(i2c_adap, &i2c_info, |
332 | normal_i2c); | 332 | normal_i2c); |
333 | i2c_put_adapter(i2c_adap); | 333 | i2c_put_adapter(i2c_adap); |
@@ -411,7 +411,7 @@ out3: | |||
411 | out2: | 411 | out2: |
412 | clk_put(usb_clk); | 412 | clk_put(usb_clk); |
413 | out1: | 413 | out1: |
414 | i2c_unregister_client(isp1301_i2c_client); | 414 | i2c_unregister_device(isp1301_i2c_client); |
415 | isp1301_i2c_client = NULL; | 415 | isp1301_i2c_client = NULL; |
416 | out_i2c_driver: | 416 | out_i2c_driver: |
417 | i2c_del_driver(&isp1301_driver); | 417 | i2c_del_driver(&isp1301_driver); |
@@ -430,7 +430,7 @@ static int usb_hcd_pnx4008_remove(struct platform_device *pdev) | |||
430 | pnx4008_unset_usb_bits(); | 430 | pnx4008_unset_usb_bits(); |
431 | clk_disable(usb_clk); | 431 | clk_disable(usb_clk); |
432 | clk_put(usb_clk); | 432 | clk_put(usb_clk); |
433 | i2c_unregister_client(isp1301_i2c_client); | 433 | i2c_unregister_device(isp1301_i2c_client); |
434 | isp1301_i2c_client = NULL; | 434 | isp1301_i2c_client = NULL; |
435 | i2c_del_driver(&isp1301_driver); | 435 | i2c_del_driver(&isp1301_driver); |
436 | 436 | ||
diff --git a/drivers/usb/host/ohci-ppc-of.c b/drivers/usb/host/ohci-ppc-of.c index 68a301710297..103263c230cf 100644 --- a/drivers/usb/host/ohci-ppc-of.c +++ b/drivers/usb/host/ohci-ppc-of.c | |||
@@ -114,21 +114,21 @@ ohci_hcd_ppc_of_probe(struct of_device *op, const struct of_device_id *match) | |||
114 | hcd->rsrc_len = res.end - res.start + 1; | 114 | hcd->rsrc_len = res.end - res.start + 1; |
115 | 115 | ||
116 | if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) { | 116 | if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) { |
117 | printk(KERN_ERR __FILE__ ": request_mem_region failed\n"); | 117 | printk(KERN_ERR "%s: request_mem_region failed\n", __FILE__); |
118 | rv = -EBUSY; | 118 | rv = -EBUSY; |
119 | goto err_rmr; | 119 | goto err_rmr; |
120 | } | 120 | } |
121 | 121 | ||
122 | irq = irq_of_parse_and_map(dn, 0); | 122 | irq = irq_of_parse_and_map(dn, 0); |
123 | if (irq == NO_IRQ) { | 123 | if (irq == NO_IRQ) { |
124 | printk(KERN_ERR __FILE__ ": irq_of_parse_and_map failed\n"); | 124 | printk(KERN_ERR "%s: irq_of_parse_and_map failed\n", __FILE__); |
125 | rv = -EBUSY; | 125 | rv = -EBUSY; |
126 | goto err_irq; | 126 | goto err_irq; |
127 | } | 127 | } |
128 | 128 | ||
129 | hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len); | 129 | hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len); |
130 | if (!hcd->regs) { | 130 | if (!hcd->regs) { |
131 | printk(KERN_ERR __FILE__ ": ioremap failed\n"); | 131 | printk(KERN_ERR "%s: ioremap failed\n", __FILE__); |
132 | rv = -ENOMEM; | 132 | rv = -ENOMEM; |
133 | goto err_ioremap; | 133 | goto err_ioremap; |
134 | } | 134 | } |
@@ -169,7 +169,7 @@ ohci_hcd_ppc_of_probe(struct of_device *op, const struct of_device_id *match) | |||
169 | } else | 169 | } else |
170 | release_mem_region(res.start, 0x4); | 170 | release_mem_region(res.start, 0x4); |
171 | } else | 171 | } else |
172 | pr_debug(__FILE__ ": cannot get ehci offset from fdt\n"); | 172 | pr_debug("%s: cannot get ehci offset from fdt\n", __FILE__); |
173 | } | 173 | } |
174 | 174 | ||
175 | iounmap(hcd->regs); | 175 | iounmap(hcd->regs); |
@@ -212,7 +212,7 @@ static int ohci_hcd_ppc_of_shutdown(struct of_device *op) | |||
212 | } | 212 | } |
213 | 213 | ||
214 | 214 | ||
215 | static struct of_device_id ohci_hcd_ppc_of_match[] = { | 215 | static const struct of_device_id ohci_hcd_ppc_of_match[] = { |
216 | #ifdef CONFIG_USB_OHCI_HCD_PPC_OF_BE | 216 | #ifdef CONFIG_USB_OHCI_HCD_PPC_OF_BE |
217 | { | 217 | { |
218 | .name = "usb", | 218 | .name = "usb", |
diff --git a/drivers/usb/host/ohci-ppc-soc.c b/drivers/usb/host/ohci-ppc-soc.c index cd3398b675b2..89e670e38c10 100644 --- a/drivers/usb/host/ohci-ppc-soc.c +++ b/drivers/usb/host/ohci-ppc-soc.c | |||
@@ -41,14 +41,14 @@ static int usb_hcd_ppc_soc_probe(const struct hc_driver *driver, | |||
41 | 41 | ||
42 | res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); | 42 | res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); |
43 | if (!res) { | 43 | if (!res) { |
44 | pr_debug(__FILE__ ": no irq\n"); | 44 | pr_debug("%s: no irq\n", __FILE__); |
45 | return -ENODEV; | 45 | return -ENODEV; |
46 | } | 46 | } |
47 | irq = res->start; | 47 | irq = res->start; |
48 | 48 | ||
49 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 49 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
50 | if (!res) { | 50 | if (!res) { |
51 | pr_debug(__FILE__ ": no reg addr\n"); | 51 | pr_debug("%s: no reg addr\n", __FILE__); |
52 | return -ENODEV; | 52 | return -ENODEV; |
53 | } | 53 | } |
54 | 54 | ||
@@ -59,14 +59,14 @@ static int usb_hcd_ppc_soc_probe(const struct hc_driver *driver, | |||
59 | hcd->rsrc_len = res->end - res->start + 1; | 59 | hcd->rsrc_len = res->end - res->start + 1; |
60 | 60 | ||
61 | if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) { | 61 | if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) { |
62 | pr_debug(__FILE__ ": request_mem_region failed\n"); | 62 | pr_debug("%s: request_mem_region failed\n", __FILE__); |
63 | retval = -EBUSY; | 63 | retval = -EBUSY; |
64 | goto err1; | 64 | goto err1; |
65 | } | 65 | } |
66 | 66 | ||
67 | hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len); | 67 | hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len); |
68 | if (!hcd->regs) { | 68 | if (!hcd->regs) { |
69 | pr_debug(__FILE__ ": ioremap failed\n"); | 69 | pr_debug("%s: ioremap failed\n", __FILE__); |
70 | retval = -ENOMEM; | 70 | retval = -ENOMEM; |
71 | goto err2; | 71 | goto err2; |
72 | } | 72 | } |
diff --git a/drivers/usb/host/ohci-sa1111.c b/drivers/usb/host/ohci-sa1111.c index e4bbe8e188e4..d8eb3bdafabb 100644 --- a/drivers/usb/host/ohci-sa1111.c +++ b/drivers/usb/host/ohci-sa1111.c | |||
@@ -31,8 +31,8 @@ static void sa1111_start_hc(struct sa1111_dev *dev) | |||
31 | { | 31 | { |
32 | unsigned int usb_rst = 0; | 32 | unsigned int usb_rst = 0; |
33 | 33 | ||
34 | printk(KERN_DEBUG __FILE__ | 34 | printk(KERN_DEBUG "%s: starting SA-1111 OHCI USB Controller\n", |
35 | ": starting SA-1111 OHCI USB Controller\n"); | 35 | __FILE__); |
36 | 36 | ||
37 | #ifdef CONFIG_SA1100_BADGE4 | 37 | #ifdef CONFIG_SA1100_BADGE4 |
38 | if (machine_is_badge4()) { | 38 | if (machine_is_badge4()) { |
@@ -65,8 +65,8 @@ static void sa1111_start_hc(struct sa1111_dev *dev) | |||
65 | static void sa1111_stop_hc(struct sa1111_dev *dev) | 65 | static void sa1111_stop_hc(struct sa1111_dev *dev) |
66 | { | 66 | { |
67 | unsigned int usb_rst; | 67 | unsigned int usb_rst; |
68 | printk(KERN_DEBUG __FILE__ | 68 | printk(KERN_DEBUG "%s: stopping SA-1111 OHCI USB Controller\n", |
69 | ": stopping SA-1111 OHCI USB Controller\n"); | 69 | __FILE__); |
70 | 70 | ||
71 | /* | 71 | /* |
72 | * Put the USB host controller into reset. | 72 | * Put the USB host controller into reset. |
diff --git a/drivers/usb/host/sl811-hcd.c b/drivers/usb/host/sl811-hcd.c index 5b22a4d1c9e4..e11cc3aa4b82 100644 --- a/drivers/usb/host/sl811-hcd.c +++ b/drivers/usb/host/sl811-hcd.c | |||
@@ -51,6 +51,7 @@ | |||
51 | #include <asm/irq.h> | 51 | #include <asm/irq.h> |
52 | #include <asm/system.h> | 52 | #include <asm/system.h> |
53 | #include <asm/byteorder.h> | 53 | #include <asm/byteorder.h> |
54 | #include <asm/unaligned.h> | ||
54 | 55 | ||
55 | #include "../core/hcd.h" | 56 | #include "../core/hcd.h" |
56 | #include "sl811.h" | 57 | #include "sl811.h" |
@@ -1272,12 +1273,12 @@ sl811h_hub_control( | |||
1272 | sl811h_hub_descriptor(sl811, (struct usb_hub_descriptor *) buf); | 1273 | sl811h_hub_descriptor(sl811, (struct usb_hub_descriptor *) buf); |
1273 | break; | 1274 | break; |
1274 | case GetHubStatus: | 1275 | case GetHubStatus: |
1275 | *(__le32 *) buf = cpu_to_le32(0); | 1276 | put_unaligned_le32(0, buf); |
1276 | break; | 1277 | break; |
1277 | case GetPortStatus: | 1278 | case GetPortStatus: |
1278 | if (wIndex != 1) | 1279 | if (wIndex != 1) |
1279 | goto error; | 1280 | goto error; |
1280 | *(__le32 *) buf = cpu_to_le32(sl811->port1); | 1281 | put_unaligned_le32(sl811->port1, buf); |
1281 | 1282 | ||
1282 | #ifndef VERBOSE | 1283 | #ifndef VERBOSE |
1283 | if (*(u16*)(buf+2)) /* only if wPortChange is interesting */ | 1284 | if (*(u16*)(buf+2)) /* only if wPortChange is interesting */ |
diff --git a/drivers/usb/host/uhci-hcd.c b/drivers/usb/host/uhci-hcd.c index 99cd00fd3514..09197067fe6b 100644 --- a/drivers/usb/host/uhci-hcd.c +++ b/drivers/usb/host/uhci-hcd.c | |||
@@ -735,6 +735,7 @@ static void uhci_stop(struct usb_hcd *hcd) | |||
735 | uhci_hc_died(uhci); | 735 | uhci_hc_died(uhci); |
736 | uhci_scan_schedule(uhci); | 736 | uhci_scan_schedule(uhci); |
737 | spin_unlock_irq(&uhci->lock); | 737 | spin_unlock_irq(&uhci->lock); |
738 | synchronize_irq(hcd->irq); | ||
738 | 739 | ||
739 | del_timer_sync(&uhci->fsbr_timer); | 740 | del_timer_sync(&uhci->fsbr_timer); |
740 | release_uhci(uhci); | 741 | release_uhci(uhci); |
diff --git a/drivers/usb/host/xhci-dbg.c b/drivers/usb/host/xhci-dbg.c index 33128d52f212..105fa8b025bb 100644 --- a/drivers/usb/host/xhci-dbg.c +++ b/drivers/usb/host/xhci-dbg.c | |||
@@ -406,6 +406,25 @@ static void dbg_rsvd64(struct xhci_hcd *xhci, u64 *ctx, dma_addr_t dma) | |||
406 | } | 406 | } |
407 | } | 407 | } |
408 | 408 | ||
409 | char *xhci_get_slot_state(struct xhci_hcd *xhci, | ||
410 | struct xhci_container_ctx *ctx) | ||
411 | { | ||
412 | struct xhci_slot_ctx *slot_ctx = xhci_get_slot_ctx(xhci, ctx); | ||
413 | |||
414 | switch (GET_SLOT_STATE(slot_ctx->dev_state)) { | ||
415 | case 0: | ||
416 | return "enabled/disabled"; | ||
417 | case 1: | ||
418 | return "default"; | ||
419 | case 2: | ||
420 | return "addressed"; | ||
421 | case 3: | ||
422 | return "configured"; | ||
423 | default: | ||
424 | return "reserved"; | ||
425 | } | ||
426 | } | ||
427 | |||
409 | void xhci_dbg_slot_ctx(struct xhci_hcd *xhci, struct xhci_container_ctx *ctx) | 428 | void xhci_dbg_slot_ctx(struct xhci_hcd *xhci, struct xhci_container_ctx *ctx) |
410 | { | 429 | { |
411 | /* Fields are 32 bits wide, DMA addresses are in bytes */ | 430 | /* Fields are 32 bits wide, DMA addresses are in bytes */ |
diff --git a/drivers/usb/host/xhci-ext-caps.h b/drivers/usb/host/xhci-ext-caps.h index ecc131c3fe33..78c4edac1db1 100644 --- a/drivers/usb/host/xhci-ext-caps.h +++ b/drivers/usb/host/xhci-ext-caps.h | |||
@@ -101,12 +101,15 @@ static inline int xhci_find_next_cap_offset(void __iomem *base, int ext_offset) | |||
101 | 101 | ||
102 | next = readl(base + ext_offset); | 102 | next = readl(base + ext_offset); |
103 | 103 | ||
104 | if (ext_offset == XHCI_HCC_PARAMS_OFFSET) | 104 | if (ext_offset == XHCI_HCC_PARAMS_OFFSET) { |
105 | /* Find the first extended capability */ | 105 | /* Find the first extended capability */ |
106 | next = XHCI_HCC_EXT_CAPS(next); | 106 | next = XHCI_HCC_EXT_CAPS(next); |
107 | else | 107 | ext_offset = 0; |
108 | } else { | ||
108 | /* Find the next extended capability */ | 109 | /* Find the next extended capability */ |
109 | next = XHCI_EXT_CAPS_NEXT(next); | 110 | next = XHCI_EXT_CAPS_NEXT(next); |
111 | } | ||
112 | |||
110 | if (!next) | 113 | if (!next) |
111 | return 0; | 114 | return 0; |
112 | /* | 115 | /* |
diff --git a/drivers/usb/host/xhci-hcd.c b/drivers/usb/host/xhci-hcd.c index 5e92c72df642..4cb69e0af834 100644 --- a/drivers/usb/host/xhci-hcd.c +++ b/drivers/usb/host/xhci-hcd.c | |||
@@ -1007,7 +1007,7 @@ int xhci_add_endpoint(struct usb_hcd *hcd, struct usb_device *udev, | |||
1007 | * for usb_set_interface() and usb_set_configuration() claim). | 1007 | * for usb_set_interface() and usb_set_configuration() claim). |
1008 | */ | 1008 | */ |
1009 | if (xhci_endpoint_init(xhci, xhci->devs[udev->slot_id], | 1009 | if (xhci_endpoint_init(xhci, xhci->devs[udev->slot_id], |
1010 | udev, ep, GFP_KERNEL) < 0) { | 1010 | udev, ep, GFP_NOIO) < 0) { |
1011 | dev_dbg(&udev->dev, "%s - could not initialize ep %#x\n", | 1011 | dev_dbg(&udev->dev, "%s - could not initialize ep %#x\n", |
1012 | __func__, ep->desc.bEndpointAddress); | 1012 | __func__, ep->desc.bEndpointAddress); |
1013 | return -ENOMEM; | 1013 | return -ENOMEM; |
@@ -1181,6 +1181,8 @@ static int xhci_configure_endpoint(struct xhci_hcd *xhci, | |||
1181 | ret = xhci_queue_evaluate_context(xhci, in_ctx->dma, | 1181 | ret = xhci_queue_evaluate_context(xhci, in_ctx->dma, |
1182 | udev->slot_id); | 1182 | udev->slot_id); |
1183 | if (ret < 0) { | 1183 | if (ret < 0) { |
1184 | if (command) | ||
1185 | list_del(&command->cmd_list); | ||
1184 | spin_unlock_irqrestore(&xhci->lock, flags); | 1186 | spin_unlock_irqrestore(&xhci->lock, flags); |
1185 | xhci_dbg(xhci, "FIXME allocate a new ring segment\n"); | 1187 | xhci_dbg(xhci, "FIXME allocate a new ring segment\n"); |
1186 | return -ENOMEM; | 1188 | return -ENOMEM; |
@@ -1264,30 +1266,13 @@ int xhci_check_bandwidth(struct usb_hcd *hcd, struct usb_device *udev) | |||
1264 | xhci_zero_in_ctx(xhci, virt_dev); | 1266 | xhci_zero_in_ctx(xhci, virt_dev); |
1265 | /* Install new rings and free or cache any old rings */ | 1267 | /* Install new rings and free or cache any old rings */ |
1266 | for (i = 1; i < 31; ++i) { | 1268 | for (i = 1; i < 31; ++i) { |
1267 | int rings_cached; | ||
1268 | |||
1269 | if (!virt_dev->eps[i].new_ring) | 1269 | if (!virt_dev->eps[i].new_ring) |
1270 | continue; | 1270 | continue; |
1271 | /* Only cache or free the old ring if it exists. | 1271 | /* Only cache or free the old ring if it exists. |
1272 | * It may not if this is the first add of an endpoint. | 1272 | * It may not if this is the first add of an endpoint. |
1273 | */ | 1273 | */ |
1274 | if (virt_dev->eps[i].ring) { | 1274 | if (virt_dev->eps[i].ring) { |
1275 | rings_cached = virt_dev->num_rings_cached; | 1275 | xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i); |
1276 | if (rings_cached < XHCI_MAX_RINGS_CACHED) { | ||
1277 | virt_dev->num_rings_cached++; | ||
1278 | rings_cached = virt_dev->num_rings_cached; | ||
1279 | virt_dev->ring_cache[rings_cached] = | ||
1280 | virt_dev->eps[i].ring; | ||
1281 | xhci_dbg(xhci, "Cached old ring, " | ||
1282 | "%d ring%s cached\n", | ||
1283 | rings_cached, | ||
1284 | (rings_cached > 1) ? "s" : ""); | ||
1285 | } else { | ||
1286 | xhci_ring_free(xhci, virt_dev->eps[i].ring); | ||
1287 | xhci_dbg(xhci, "Ring cache full (%d rings), " | ||
1288 | "freeing ring\n", | ||
1289 | virt_dev->num_rings_cached); | ||
1290 | } | ||
1291 | } | 1276 | } |
1292 | virt_dev->eps[i].ring = virt_dev->eps[i].new_ring; | 1277 | virt_dev->eps[i].ring = virt_dev->eps[i].new_ring; |
1293 | virt_dev->eps[i].new_ring = NULL; | 1278 | virt_dev->eps[i].new_ring = NULL; |
@@ -1458,6 +1443,131 @@ void xhci_endpoint_reset(struct usb_hcd *hcd, | |||
1458 | } | 1443 | } |
1459 | 1444 | ||
1460 | /* | 1445 | /* |
1446 | * This submits a Reset Device Command, which will set the device state to 0, | ||
1447 | * set the device address to 0, and disable all the endpoints except the default | ||
1448 | * control endpoint. The USB core should come back and call | ||
1449 | * xhci_address_device(), and then re-set up the configuration. If this is | ||
1450 | * called because of a usb_reset_and_verify_device(), then the old alternate | ||
1451 | * settings will be re-installed through the normal bandwidth allocation | ||
1452 | * functions. | ||
1453 | * | ||
1454 | * Wait for the Reset Device command to finish. Remove all structures | ||
1455 | * associated with the endpoints that were disabled. Clear the input device | ||
1456 | * structure? Cache the rings? Reset the control endpoint 0 max packet size? | ||
1457 | */ | ||
1458 | int xhci_reset_device(struct usb_hcd *hcd, struct usb_device *udev) | ||
1459 | { | ||
1460 | int ret, i; | ||
1461 | unsigned long flags; | ||
1462 | struct xhci_hcd *xhci; | ||
1463 | unsigned int slot_id; | ||
1464 | struct xhci_virt_device *virt_dev; | ||
1465 | struct xhci_command *reset_device_cmd; | ||
1466 | int timeleft; | ||
1467 | int last_freed_endpoint; | ||
1468 | |||
1469 | ret = xhci_check_args(hcd, udev, NULL, 0, __func__); | ||
1470 | if (ret <= 0) | ||
1471 | return ret; | ||
1472 | xhci = hcd_to_xhci(hcd); | ||
1473 | slot_id = udev->slot_id; | ||
1474 | virt_dev = xhci->devs[slot_id]; | ||
1475 | if (!virt_dev) { | ||
1476 | xhci_dbg(xhci, "%s called with invalid slot ID %u\n", | ||
1477 | __func__, slot_id); | ||
1478 | return -EINVAL; | ||
1479 | } | ||
1480 | |||
1481 | xhci_dbg(xhci, "Resetting device with slot ID %u\n", slot_id); | ||
1482 | /* Allocate the command structure that holds the struct completion. | ||
1483 | * Assume we're in process context, since the normal device reset | ||
1484 | * process has to wait for the device anyway. Storage devices are | ||
1485 | * reset as part of error handling, so use GFP_NOIO instead of | ||
1486 | * GFP_KERNEL. | ||
1487 | */ | ||
1488 | reset_device_cmd = xhci_alloc_command(xhci, false, true, GFP_NOIO); | ||
1489 | if (!reset_device_cmd) { | ||
1490 | xhci_dbg(xhci, "Couldn't allocate command structure.\n"); | ||
1491 | return -ENOMEM; | ||
1492 | } | ||
1493 | |||
1494 | /* Attempt to submit the Reset Device command to the command ring */ | ||
1495 | spin_lock_irqsave(&xhci->lock, flags); | ||
1496 | reset_device_cmd->command_trb = xhci->cmd_ring->enqueue; | ||
1497 | list_add_tail(&reset_device_cmd->cmd_list, &virt_dev->cmd_list); | ||
1498 | ret = xhci_queue_reset_device(xhci, slot_id); | ||
1499 | if (ret) { | ||
1500 | xhci_dbg(xhci, "FIXME: allocate a command ring segment\n"); | ||
1501 | list_del(&reset_device_cmd->cmd_list); | ||
1502 | spin_unlock_irqrestore(&xhci->lock, flags); | ||
1503 | goto command_cleanup; | ||
1504 | } | ||
1505 | xhci_ring_cmd_db(xhci); | ||
1506 | spin_unlock_irqrestore(&xhci->lock, flags); | ||
1507 | |||
1508 | /* Wait for the Reset Device command to finish */ | ||
1509 | timeleft = wait_for_completion_interruptible_timeout( | ||
1510 | reset_device_cmd->completion, | ||
1511 | USB_CTRL_SET_TIMEOUT); | ||
1512 | if (timeleft <= 0) { | ||
1513 | xhci_warn(xhci, "%s while waiting for reset device command\n", | ||
1514 | timeleft == 0 ? "Timeout" : "Signal"); | ||
1515 | spin_lock_irqsave(&xhci->lock, flags); | ||
1516 | /* The timeout might have raced with the event ring handler, so | ||
1517 | * only delete from the list if the item isn't poisoned. | ||
1518 | */ | ||
1519 | if (reset_device_cmd->cmd_list.next != LIST_POISON1) | ||
1520 | list_del(&reset_device_cmd->cmd_list); | ||
1521 | spin_unlock_irqrestore(&xhci->lock, flags); | ||
1522 | ret = -ETIME; | ||
1523 | goto command_cleanup; | ||
1524 | } | ||
1525 | |||
1526 | /* The Reset Device command can't fail, according to the 0.95/0.96 spec, | ||
1527 | * unless we tried to reset a slot ID that wasn't enabled, | ||
1528 | * or the device wasn't in the addressed or configured state. | ||
1529 | */ | ||
1530 | ret = reset_device_cmd->status; | ||
1531 | switch (ret) { | ||
1532 | case COMP_EBADSLT: /* 0.95 completion code for bad slot ID */ | ||
1533 | case COMP_CTX_STATE: /* 0.96 completion code for same thing */ | ||
1534 | xhci_info(xhci, "Can't reset device (slot ID %u) in %s state\n", | ||
1535 | slot_id, | ||
1536 | xhci_get_slot_state(xhci, virt_dev->out_ctx)); | ||
1537 | xhci_info(xhci, "Not freeing device rings.\n"); | ||
1538 | /* Don't treat this as an error. May change my mind later. */ | ||
1539 | ret = 0; | ||
1540 | goto command_cleanup; | ||
1541 | case COMP_SUCCESS: | ||
1542 | xhci_dbg(xhci, "Successful reset device command.\n"); | ||
1543 | break; | ||
1544 | default: | ||
1545 | if (xhci_is_vendor_info_code(xhci, ret)) | ||
1546 | break; | ||
1547 | xhci_warn(xhci, "Unknown completion code %u for " | ||
1548 | "reset device command.\n", ret); | ||
1549 | ret = -EINVAL; | ||
1550 | goto command_cleanup; | ||
1551 | } | ||
1552 | |||
1553 | /* Everything but endpoint 0 is disabled, so free or cache the rings. */ | ||
1554 | last_freed_endpoint = 1; | ||
1555 | for (i = 1; i < 31; ++i) { | ||
1556 | if (!virt_dev->eps[i].ring) | ||
1557 | continue; | ||
1558 | xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i); | ||
1559 | last_freed_endpoint = i; | ||
1560 | } | ||
1561 | xhci_dbg(xhci, "Output context after successful reset device cmd:\n"); | ||
1562 | xhci_dbg_ctx(xhci, virt_dev->out_ctx, last_freed_endpoint); | ||
1563 | ret = 0; | ||
1564 | |||
1565 | command_cleanup: | ||
1566 | xhci_free_command(xhci, reset_device_cmd); | ||
1567 | return ret; | ||
1568 | } | ||
1569 | |||
1570 | /* | ||
1461 | * At this point, the struct usb_device is about to go away, the device has | 1571 | * At this point, the struct usb_device is about to go away, the device has |
1462 | * disconnected, and all traffic has been stopped and the endpoints have been | 1572 | * disconnected, and all traffic has been stopped and the endpoints have been |
1463 | * disabled. Free any HC data structures associated with that device. | 1573 | * disabled. Free any HC data structures associated with that device. |
@@ -1694,7 +1804,7 @@ int xhci_update_hub_device(struct usb_hcd *hcd, struct usb_device *hdev, | |||
1694 | xhci_warn(xhci, "Cannot update hub desc for unknown device.\n"); | 1804 | xhci_warn(xhci, "Cannot update hub desc for unknown device.\n"); |
1695 | return -EINVAL; | 1805 | return -EINVAL; |
1696 | } | 1806 | } |
1697 | config_cmd = xhci_alloc_command(xhci, true, mem_flags); | 1807 | config_cmd = xhci_alloc_command(xhci, true, true, mem_flags); |
1698 | if (!config_cmd) { | 1808 | if (!config_cmd) { |
1699 | xhci_dbg(xhci, "Could not allocate xHCI command structure.\n"); | 1809 | xhci_dbg(xhci, "Could not allocate xHCI command structure.\n"); |
1700 | return -ENOMEM; | 1810 | return -ENOMEM; |
diff --git a/drivers/usb/host/xhci-hub.c b/drivers/usb/host/xhci-hub.c index eac5b53aa9e7..208b805b80eb 100644 --- a/drivers/usb/host/xhci-hub.c +++ b/drivers/usb/host/xhci-hub.c | |||
@@ -129,6 +129,50 @@ static u32 xhci_port_state_to_neutral(u32 state) | |||
129 | return (state & XHCI_PORT_RO) | (state & XHCI_PORT_RWS); | 129 | return (state & XHCI_PORT_RO) | (state & XHCI_PORT_RWS); |
130 | } | 130 | } |
131 | 131 | ||
132 | static void xhci_disable_port(struct xhci_hcd *xhci, u16 wIndex, | ||
133 | u32 __iomem *addr, u32 port_status) | ||
134 | { | ||
135 | /* Write 1 to disable the port */ | ||
136 | xhci_writel(xhci, port_status | PORT_PE, addr); | ||
137 | port_status = xhci_readl(xhci, addr); | ||
138 | xhci_dbg(xhci, "disable port, actual port %d status = 0x%x\n", | ||
139 | wIndex, port_status); | ||
140 | } | ||
141 | |||
142 | static void xhci_clear_port_change_bit(struct xhci_hcd *xhci, u16 wValue, | ||
143 | u16 wIndex, u32 __iomem *addr, u32 port_status) | ||
144 | { | ||
145 | char *port_change_bit; | ||
146 | u32 status; | ||
147 | |||
148 | switch (wValue) { | ||
149 | case USB_PORT_FEAT_C_RESET: | ||
150 | status = PORT_RC; | ||
151 | port_change_bit = "reset"; | ||
152 | break; | ||
153 | case USB_PORT_FEAT_C_CONNECTION: | ||
154 | status = PORT_CSC; | ||
155 | port_change_bit = "connect"; | ||
156 | break; | ||
157 | case USB_PORT_FEAT_C_OVER_CURRENT: | ||
158 | status = PORT_OCC; | ||
159 | port_change_bit = "over-current"; | ||
160 | break; | ||
161 | case USB_PORT_FEAT_C_ENABLE: | ||
162 | status = PORT_PEC; | ||
163 | port_change_bit = "enable/disable"; | ||
164 | break; | ||
165 | default: | ||
166 | /* Should never happen */ | ||
167 | return; | ||
168 | } | ||
169 | /* Change bits are all write 1 to clear */ | ||
170 | xhci_writel(xhci, port_status | status, addr); | ||
171 | port_status = xhci_readl(xhci, addr); | ||
172 | xhci_dbg(xhci, "clear port %s change, actual port %d status = 0x%x\n", | ||
173 | port_change_bit, wIndex, port_status); | ||
174 | } | ||
175 | |||
132 | int xhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue, | 176 | int xhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue, |
133 | u16 wIndex, char *buf, u16 wLength) | 177 | u16 wIndex, char *buf, u16 wLength) |
134 | { | 178 | { |
@@ -138,7 +182,6 @@ int xhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue, | |||
138 | u32 temp, status; | 182 | u32 temp, status; |
139 | int retval = 0; | 183 | int retval = 0; |
140 | u32 __iomem *addr; | 184 | u32 __iomem *addr; |
141 | char *port_change_bit; | ||
142 | 185 | ||
143 | ports = HCS_MAX_PORTS(xhci->hcs_params1); | 186 | ports = HCS_MAX_PORTS(xhci->hcs_params1); |
144 | 187 | ||
@@ -229,26 +272,18 @@ int xhci_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue, | |||
229 | temp = xhci_port_state_to_neutral(temp); | 272 | temp = xhci_port_state_to_neutral(temp); |
230 | switch (wValue) { | 273 | switch (wValue) { |
231 | case USB_PORT_FEAT_C_RESET: | 274 | case USB_PORT_FEAT_C_RESET: |
232 | status = PORT_RC; | ||
233 | port_change_bit = "reset"; | ||
234 | break; | ||
235 | case USB_PORT_FEAT_C_CONNECTION: | 275 | case USB_PORT_FEAT_C_CONNECTION: |
236 | status = PORT_CSC; | ||
237 | port_change_bit = "connect"; | ||
238 | break; | ||
239 | case USB_PORT_FEAT_C_OVER_CURRENT: | 276 | case USB_PORT_FEAT_C_OVER_CURRENT: |
240 | status = PORT_OCC; | 277 | case USB_PORT_FEAT_C_ENABLE: |
241 | port_change_bit = "over-current"; | 278 | xhci_clear_port_change_bit(xhci, wValue, wIndex, |
279 | addr, temp); | ||
280 | break; | ||
281 | case USB_PORT_FEAT_ENABLE: | ||
282 | xhci_disable_port(xhci, wIndex, addr, temp); | ||
242 | break; | 283 | break; |
243 | default: | 284 | default: |
244 | goto error; | 285 | goto error; |
245 | } | 286 | } |
246 | /* Change bits are all write 1 to clear */ | ||
247 | xhci_writel(xhci, temp | status, addr); | ||
248 | temp = xhci_readl(xhci, addr); | ||
249 | xhci_dbg(xhci, "clear port %s change, actual port %d status = 0x%x\n", | ||
250 | port_change_bit, wIndex, temp); | ||
251 | temp = xhci_readl(xhci, addr); /* unblock any posted writes */ | ||
252 | break; | 287 | break; |
253 | default: | 288 | default: |
254 | error: | 289 | error: |
diff --git a/drivers/usb/host/xhci-mem.c b/drivers/usb/host/xhci-mem.c index bffcef7a5545..49f7d72f8b1b 100644 --- a/drivers/usb/host/xhci-mem.c +++ b/drivers/usb/host/xhci-mem.c | |||
@@ -198,6 +198,31 @@ fail: | |||
198 | return 0; | 198 | return 0; |
199 | } | 199 | } |
200 | 200 | ||
201 | void xhci_free_or_cache_endpoint_ring(struct xhci_hcd *xhci, | ||
202 | struct xhci_virt_device *virt_dev, | ||
203 | unsigned int ep_index) | ||
204 | { | ||
205 | int rings_cached; | ||
206 | |||
207 | rings_cached = virt_dev->num_rings_cached; | ||
208 | if (rings_cached < XHCI_MAX_RINGS_CACHED) { | ||
209 | virt_dev->num_rings_cached++; | ||
210 | rings_cached = virt_dev->num_rings_cached; | ||
211 | virt_dev->ring_cache[rings_cached] = | ||
212 | virt_dev->eps[ep_index].ring; | ||
213 | xhci_dbg(xhci, "Cached old ring, " | ||
214 | "%d ring%s cached\n", | ||
215 | rings_cached, | ||
216 | (rings_cached > 1) ? "s" : ""); | ||
217 | } else { | ||
218 | xhci_ring_free(xhci, virt_dev->eps[ep_index].ring); | ||
219 | xhci_dbg(xhci, "Ring cache full (%d rings), " | ||
220 | "freeing ring\n", | ||
221 | virt_dev->num_rings_cached); | ||
222 | } | ||
223 | virt_dev->eps[ep_index].ring = NULL; | ||
224 | } | ||
225 | |||
201 | /* Zero an endpoint ring (except for link TRBs) and move the enqueue and dequeue | 226 | /* Zero an endpoint ring (except for link TRBs) and move the enqueue and dequeue |
202 | * pointers to the beginning of the ring. | 227 | * pointers to the beginning of the ring. |
203 | */ | 228 | */ |
@@ -242,6 +267,8 @@ struct xhci_container_ctx *xhci_alloc_container_ctx(struct xhci_hcd *xhci, | |||
242 | void xhci_free_container_ctx(struct xhci_hcd *xhci, | 267 | void xhci_free_container_ctx(struct xhci_hcd *xhci, |
243 | struct xhci_container_ctx *ctx) | 268 | struct xhci_container_ctx *ctx) |
244 | { | 269 | { |
270 | if (!ctx) | ||
271 | return; | ||
245 | dma_pool_free(xhci->device_pool, ctx->bytes, ctx->dma); | 272 | dma_pool_free(xhci->device_pool, ctx->bytes, ctx->dma); |
246 | kfree(ctx); | 273 | kfree(ctx); |
247 | } | 274 | } |
@@ -427,7 +454,7 @@ int xhci_setup_addressable_virt_dev(struct xhci_hcd *xhci, struct usb_device *ud | |||
427 | case USB_SPEED_LOW: | 454 | case USB_SPEED_LOW: |
428 | slot_ctx->dev_info |= (u32) SLOT_SPEED_LS; | 455 | slot_ctx->dev_info |= (u32) SLOT_SPEED_LS; |
429 | break; | 456 | break; |
430 | case USB_SPEED_VARIABLE: | 457 | case USB_SPEED_WIRELESS: |
431 | xhci_dbg(xhci, "FIXME xHCI doesn't support wireless speeds\n"); | 458 | xhci_dbg(xhci, "FIXME xHCI doesn't support wireless speeds\n"); |
432 | return -EINVAL; | 459 | return -EINVAL; |
433 | break; | 460 | break; |
@@ -471,7 +498,7 @@ int xhci_setup_addressable_virt_dev(struct xhci_hcd *xhci, struct usb_device *ud | |||
471 | case USB_SPEED_LOW: | 498 | case USB_SPEED_LOW: |
472 | ep0_ctx->ep_info2 |= MAX_PACKET(8); | 499 | ep0_ctx->ep_info2 |= MAX_PACKET(8); |
473 | break; | 500 | break; |
474 | case USB_SPEED_VARIABLE: | 501 | case USB_SPEED_WIRELESS: |
475 | xhci_dbg(xhci, "FIXME xHCI doesn't support wireless speeds\n"); | 502 | xhci_dbg(xhci, "FIXME xHCI doesn't support wireless speeds\n"); |
476 | return -EINVAL; | 503 | return -EINVAL; |
477 | break; | 504 | break; |
@@ -819,7 +846,8 @@ static void scratchpad_free(struct xhci_hcd *xhci) | |||
819 | } | 846 | } |
820 | 847 | ||
821 | struct xhci_command *xhci_alloc_command(struct xhci_hcd *xhci, | 848 | struct xhci_command *xhci_alloc_command(struct xhci_hcd *xhci, |
822 | bool allocate_completion, gfp_t mem_flags) | 849 | bool allocate_in_ctx, bool allocate_completion, |
850 | gfp_t mem_flags) | ||
823 | { | 851 | { |
824 | struct xhci_command *command; | 852 | struct xhci_command *command; |
825 | 853 | ||
@@ -827,11 +855,14 @@ struct xhci_command *xhci_alloc_command(struct xhci_hcd *xhci, | |||
827 | if (!command) | 855 | if (!command) |
828 | return NULL; | 856 | return NULL; |
829 | 857 | ||
830 | command->in_ctx = | 858 | if (allocate_in_ctx) { |
831 | xhci_alloc_container_ctx(xhci, XHCI_CTX_TYPE_INPUT, mem_flags); | 859 | command->in_ctx = |
832 | if (!command->in_ctx) { | 860 | xhci_alloc_container_ctx(xhci, XHCI_CTX_TYPE_INPUT, |
833 | kfree(command); | 861 | mem_flags); |
834 | return NULL; | 862 | if (!command->in_ctx) { |
863 | kfree(command); | ||
864 | return NULL; | ||
865 | } | ||
835 | } | 866 | } |
836 | 867 | ||
837 | if (allocate_completion) { | 868 | if (allocate_completion) { |
diff --git a/drivers/usb/host/xhci-pci.c b/drivers/usb/host/xhci-pci.c index e097008d6fb1..417d37aff8d7 100644 --- a/drivers/usb/host/xhci-pci.c +++ b/drivers/usb/host/xhci-pci.c | |||
@@ -139,6 +139,7 @@ static const struct hc_driver xhci_pci_hc_driver = { | |||
139 | .reset_bandwidth = xhci_reset_bandwidth, | 139 | .reset_bandwidth = xhci_reset_bandwidth, |
140 | .address_device = xhci_address_device, | 140 | .address_device = xhci_address_device, |
141 | .update_hub_device = xhci_update_hub_device, | 141 | .update_hub_device = xhci_update_hub_device, |
142 | .reset_device = xhci_reset_device, | ||
142 | 143 | ||
143 | /* | 144 | /* |
144 | * scheduling support | 145 | * scheduling support |
diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c index ee7bc7ecbc59..6ba841bca4a2 100644 --- a/drivers/usb/host/xhci-ring.c +++ b/drivers/usb/host/xhci-ring.c | |||
@@ -953,6 +953,17 @@ bandwidth_change: | |||
953 | case TRB_TYPE(TRB_RESET_EP): | 953 | case TRB_TYPE(TRB_RESET_EP): |
954 | handle_reset_ep_completion(xhci, event, xhci->cmd_ring->dequeue); | 954 | handle_reset_ep_completion(xhci, event, xhci->cmd_ring->dequeue); |
955 | break; | 955 | break; |
956 | case TRB_TYPE(TRB_RESET_DEV): | ||
957 | xhci_dbg(xhci, "Completed reset device command.\n"); | ||
958 | slot_id = TRB_TO_SLOT_ID( | ||
959 | xhci->cmd_ring->dequeue->generic.field[3]); | ||
960 | virt_dev = xhci->devs[slot_id]; | ||
961 | if (virt_dev) | ||
962 | handle_cmd_in_cmd_wait_list(xhci, virt_dev, event); | ||
963 | else | ||
964 | xhci_warn(xhci, "Reset device command completion " | ||
965 | "for disabled slot %u\n", slot_id); | ||
966 | break; | ||
956 | default: | 967 | default: |
957 | /* Skip over unknown commands on the event ring */ | 968 | /* Skip over unknown commands on the event ring */ |
958 | xhci->error_bitmask |= 1 << 6; | 969 | xhci->error_bitmask |= 1 << 6; |
@@ -1080,6 +1091,20 @@ static int xhci_requires_manual_halt_cleanup(struct xhci_hcd *xhci, | |||
1080 | return 0; | 1091 | return 0; |
1081 | } | 1092 | } |
1082 | 1093 | ||
1094 | int xhci_is_vendor_info_code(struct xhci_hcd *xhci, unsigned int trb_comp_code) | ||
1095 | { | ||
1096 | if (trb_comp_code >= 224 && trb_comp_code <= 255) { | ||
1097 | /* Vendor defined "informational" completion code, | ||
1098 | * treat as not-an-error. | ||
1099 | */ | ||
1100 | xhci_dbg(xhci, "Vendor defined info completion code %u\n", | ||
1101 | trb_comp_code); | ||
1102 | xhci_dbg(xhci, "Treating code as success.\n"); | ||
1103 | return 1; | ||
1104 | } | ||
1105 | return 0; | ||
1106 | } | ||
1107 | |||
1083 | /* | 1108 | /* |
1084 | * If this function returns an error condition, it means it got a Transfer | 1109 | * If this function returns an error condition, it means it got a Transfer |
1085 | * event with a corrupted Slot ID, Endpoint ID, or TRB DMA address. | 1110 | * event with a corrupted Slot ID, Endpoint ID, or TRB DMA address. |
@@ -1196,13 +1221,7 @@ static int handle_tx_event(struct xhci_hcd *xhci, | |||
1196 | status = -ENOSR; | 1221 | status = -ENOSR; |
1197 | break; | 1222 | break; |
1198 | default: | 1223 | default: |
1199 | if (trb_comp_code >= 224 && trb_comp_code <= 255) { | 1224 | if (xhci_is_vendor_info_code(xhci, trb_comp_code)) { |
1200 | /* Vendor defined "informational" completion code, | ||
1201 | * treat as not-an-error. | ||
1202 | */ | ||
1203 | xhci_dbg(xhci, "Vendor defined info completion code %u\n", | ||
1204 | trb_comp_code); | ||
1205 | xhci_dbg(xhci, "Treating code as success.\n"); | ||
1206 | status = 0; | 1225 | status = 0; |
1207 | break; | 1226 | break; |
1208 | } | 1227 | } |
@@ -2181,6 +2200,14 @@ int xhci_queue_address_device(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr, | |||
2181 | false); | 2200 | false); |
2182 | } | 2201 | } |
2183 | 2202 | ||
2203 | /* Queue a reset device command TRB */ | ||
2204 | int xhci_queue_reset_device(struct xhci_hcd *xhci, u32 slot_id) | ||
2205 | { | ||
2206 | return queue_command(xhci, 0, 0, 0, | ||
2207 | TRB_TYPE(TRB_RESET_DEV) | SLOT_ID_FOR_TRB(slot_id), | ||
2208 | false); | ||
2209 | } | ||
2210 | |||
2184 | /* Queue a configure endpoint command TRB */ | 2211 | /* Queue a configure endpoint command TRB */ |
2185 | int xhci_queue_configure_endpoint(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr, | 2212 | int xhci_queue_configure_endpoint(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr, |
2186 | u32 slot_id, bool command_must_succeed) | 2213 | u32 slot_id, bool command_must_succeed) |
diff --git a/drivers/usb/host/xhci.h b/drivers/usb/host/xhci.h index 877813505ef2..e5eb09b2f38e 100644 --- a/drivers/usb/host/xhci.h +++ b/drivers/usb/host/xhci.h | |||
@@ -1210,6 +1210,8 @@ void xhci_dbg_erst(struct xhci_hcd *xhci, struct xhci_erst *erst); | |||
1210 | void xhci_dbg_cmd_ptrs(struct xhci_hcd *xhci); | 1210 | void xhci_dbg_cmd_ptrs(struct xhci_hcd *xhci); |
1211 | void xhci_dbg_ring_ptrs(struct xhci_hcd *xhci, struct xhci_ring *ring); | 1211 | void xhci_dbg_ring_ptrs(struct xhci_hcd *xhci, struct xhci_ring *ring); |
1212 | void xhci_dbg_ctx(struct xhci_hcd *xhci, struct xhci_container_ctx *ctx, unsigned int last_ep); | 1212 | void xhci_dbg_ctx(struct xhci_hcd *xhci, struct xhci_container_ctx *ctx, unsigned int last_ep); |
1213 | char *xhci_get_slot_state(struct xhci_hcd *xhci, | ||
1214 | struct xhci_container_ctx *ctx); | ||
1213 | 1215 | ||
1214 | /* xHCI memory management */ | 1216 | /* xHCI memory management */ |
1215 | void xhci_mem_cleanup(struct xhci_hcd *xhci); | 1217 | void xhci_mem_cleanup(struct xhci_hcd *xhci); |
@@ -1233,8 +1235,12 @@ int xhci_endpoint_init(struct xhci_hcd *xhci, struct xhci_virt_device *virt_dev, | |||
1233 | struct usb_device *udev, struct usb_host_endpoint *ep, | 1235 | struct usb_device *udev, struct usb_host_endpoint *ep, |
1234 | gfp_t mem_flags); | 1236 | gfp_t mem_flags); |
1235 | void xhci_ring_free(struct xhci_hcd *xhci, struct xhci_ring *ring); | 1237 | void xhci_ring_free(struct xhci_hcd *xhci, struct xhci_ring *ring); |
1238 | void xhci_free_or_cache_endpoint_ring(struct xhci_hcd *xhci, | ||
1239 | struct xhci_virt_device *virt_dev, | ||
1240 | unsigned int ep_index); | ||
1236 | struct xhci_command *xhci_alloc_command(struct xhci_hcd *xhci, | 1241 | struct xhci_command *xhci_alloc_command(struct xhci_hcd *xhci, |
1237 | bool allocate_completion, gfp_t mem_flags); | 1242 | bool allocate_in_ctx, bool allocate_completion, |
1243 | gfp_t mem_flags); | ||
1238 | void xhci_free_command(struct xhci_hcd *xhci, | 1244 | void xhci_free_command(struct xhci_hcd *xhci, |
1239 | struct xhci_command *command); | 1245 | struct xhci_command *command); |
1240 | 1246 | ||
@@ -1264,6 +1270,7 @@ int xhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status); | |||
1264 | int xhci_add_endpoint(struct usb_hcd *hcd, struct usb_device *udev, struct usb_host_endpoint *ep); | 1270 | int xhci_add_endpoint(struct usb_hcd *hcd, struct usb_device *udev, struct usb_host_endpoint *ep); |
1265 | int xhci_drop_endpoint(struct usb_hcd *hcd, struct usb_device *udev, struct usb_host_endpoint *ep); | 1271 | int xhci_drop_endpoint(struct usb_hcd *hcd, struct usb_device *udev, struct usb_host_endpoint *ep); |
1266 | void xhci_endpoint_reset(struct usb_hcd *hcd, struct usb_host_endpoint *ep); | 1272 | void xhci_endpoint_reset(struct usb_hcd *hcd, struct usb_host_endpoint *ep); |
1273 | int xhci_reset_device(struct usb_hcd *hcd, struct usb_device *udev); | ||
1267 | int xhci_check_bandwidth(struct usb_hcd *hcd, struct usb_device *udev); | 1274 | int xhci_check_bandwidth(struct usb_hcd *hcd, struct usb_device *udev); |
1268 | void xhci_reset_bandwidth(struct usb_hcd *hcd, struct usb_device *udev); | 1275 | void xhci_reset_bandwidth(struct usb_hcd *hcd, struct usb_device *udev); |
1269 | 1276 | ||
@@ -1272,6 +1279,7 @@ dma_addr_t xhci_trb_virt_to_dma(struct xhci_segment *seg, union xhci_trb *trb); | |||
1272 | struct xhci_segment *trb_in_td(struct xhci_segment *start_seg, | 1279 | struct xhci_segment *trb_in_td(struct xhci_segment *start_seg, |
1273 | union xhci_trb *start_trb, union xhci_trb *end_trb, | 1280 | union xhci_trb *start_trb, union xhci_trb *end_trb, |
1274 | dma_addr_t suspect_dma); | 1281 | dma_addr_t suspect_dma); |
1282 | int xhci_is_vendor_info_code(struct xhci_hcd *xhci, unsigned int trb_comp_code); | ||
1275 | void xhci_ring_cmd_db(struct xhci_hcd *xhci); | 1283 | void xhci_ring_cmd_db(struct xhci_hcd *xhci); |
1276 | void *xhci_setup_one_noop(struct xhci_hcd *xhci); | 1284 | void *xhci_setup_one_noop(struct xhci_hcd *xhci); |
1277 | void xhci_handle_event(struct xhci_hcd *xhci); | 1285 | void xhci_handle_event(struct xhci_hcd *xhci); |
@@ -1293,6 +1301,7 @@ int xhci_queue_evaluate_context(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr, | |||
1293 | u32 slot_id); | 1301 | u32 slot_id); |
1294 | int xhci_queue_reset_ep(struct xhci_hcd *xhci, int slot_id, | 1302 | int xhci_queue_reset_ep(struct xhci_hcd *xhci, int slot_id, |
1295 | unsigned int ep_index); | 1303 | unsigned int ep_index); |
1304 | int xhci_queue_reset_device(struct xhci_hcd *xhci, u32 slot_id); | ||
1296 | void xhci_find_new_dequeue_state(struct xhci_hcd *xhci, | 1305 | void xhci_find_new_dequeue_state(struct xhci_hcd *xhci, |
1297 | unsigned int slot_id, unsigned int ep_index, | 1306 | unsigned int slot_id, unsigned int ep_index, |
1298 | struct xhci_td *cur_td, struct xhci_dequeue_state *state); | 1307 | struct xhci_td *cur_td, struct xhci_dequeue_state *state); |