11da177e4SLinus Torvalds /* 2578333abSAlan Stern * Enhanced Host Controller Interface (EHCI) driver for USB. 3578333abSAlan Stern * 4578333abSAlan Stern * Maintainer: Alan Stern <stern@rowland.harvard.edu> 5578333abSAlan Stern * 61da177e4SLinus Torvalds * Copyright (c) 2000-2004 by David Brownell 71da177e4SLinus Torvalds * 81da177e4SLinus Torvalds * This program is free software; you can redistribute it and/or modify it 91da177e4SLinus Torvalds * under the terms of the GNU General Public License as published by the 101da177e4SLinus Torvalds * Free Software Foundation; either version 2 of the License, or (at your 111da177e4SLinus Torvalds * option) any later version. 121da177e4SLinus Torvalds * 131da177e4SLinus Torvalds * This program is distributed in the hope that it will be useful, but 141da177e4SLinus Torvalds * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 151da177e4SLinus Torvalds * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 161da177e4SLinus Torvalds * for more details. 171da177e4SLinus Torvalds * 181da177e4SLinus Torvalds * You should have received a copy of the GNU General Public License 191da177e4SLinus Torvalds * along with this program; if not, write to the Free Software Foundation, 201da177e4SLinus Torvalds * Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 211da177e4SLinus Torvalds */ 221da177e4SLinus Torvalds 231da177e4SLinus Torvalds #include <linux/module.h> 241da177e4SLinus Torvalds #include <linux/pci.h> 251da177e4SLinus Torvalds #include <linux/dmapool.h> 261da177e4SLinus Torvalds #include <linux/kernel.h> 271da177e4SLinus Torvalds #include <linux/delay.h> 281da177e4SLinus Torvalds #include <linux/ioport.h> 291da177e4SLinus Torvalds #include <linux/sched.h> 303c04e20eSMing Lei #include <linux/vmalloc.h> 311da177e4SLinus Torvalds #include <linux/errno.h> 321da177e4SLinus Torvalds #include <linux/init.h> 331da177e4SLinus Torvalds #include <linux/timer.h> 34ee4ecb8aSOliver Neukum #include <linux/ktime.h> 351da177e4SLinus Torvalds #include <linux/list.h> 361da177e4SLinus Torvalds #include <linux/interrupt.h> 371da177e4SLinus Torvalds #include <linux/usb.h> 3827729aadSEric Lescouet #include <linux/usb/hcd.h> 391da177e4SLinus Torvalds #include <linux/moduleparam.h> 401da177e4SLinus Torvalds #include <linux/dma-mapping.h> 41694cc208STony Jones #include <linux/debugfs.h> 425a0e3ad6STejun Heo #include <linux/slab.h> 43aa4d8342SAlek Du #include <linux/uaccess.h> 441da177e4SLinus Torvalds 451da177e4SLinus Torvalds #include <asm/byteorder.h> 461da177e4SLinus Torvalds #include <asm/io.h> 471da177e4SLinus Torvalds #include <asm/irq.h> 481da177e4SLinus Torvalds #include <asm/system.h> 491da177e4SLinus Torvalds #include <asm/unaligned.h> 501da177e4SLinus Torvalds 51*df7c1ca2SGeoff Levand #if defined(CONFIG_PPC_PS3) 52*df7c1ca2SGeoff Levand #include <asm/firmware.h> 53*df7c1ca2SGeoff Levand #endif 54*df7c1ca2SGeoff Levand 551da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/ 561da177e4SLinus Torvalds 571da177e4SLinus Torvalds /* 581da177e4SLinus Torvalds * EHCI hc_driver implementation ... experimental, incomplete. 591da177e4SLinus Torvalds * Based on the final 1.0 register interface specification. 601da177e4SLinus Torvalds * 611da177e4SLinus Torvalds * USB 2.0 shows up in upcoming www.pcmcia.org technology. 621da177e4SLinus Torvalds * First was PCMCIA, like ISA; then CardBus, which is PCI. 631da177e4SLinus Torvalds * Next comes "CardBay", using USB 2.0 signals. 641da177e4SLinus Torvalds * 651da177e4SLinus Torvalds * Contains additional contributions by Brad Hards, Rory Bolt, and others. 661da177e4SLinus Torvalds * Special thanks to Intel and VIA for providing host controllers to 671da177e4SLinus Torvalds * test this driver on, and Cypress (including In-System Design) for 681da177e4SLinus Torvalds * providing early devices for those host controllers to talk to! 691da177e4SLinus Torvalds */ 701da177e4SLinus Torvalds 711da177e4SLinus Torvalds #define DRIVER_AUTHOR "David Brownell" 721da177e4SLinus Torvalds #define DRIVER_DESC "USB 2.0 'Enhanced' Host Controller (EHCI) Driver" 731da177e4SLinus Torvalds 741da177e4SLinus Torvalds static const char hcd_name [] = "ehci_hcd"; 751da177e4SLinus Torvalds 761da177e4SLinus Torvalds 779776afc8SDavid Brownell #undef VERBOSE_DEBUG 781da177e4SLinus Torvalds #undef EHCI_URB_TRACE 791da177e4SLinus Torvalds 801da177e4SLinus Torvalds #ifdef DEBUG 811da177e4SLinus Torvalds #define EHCI_STATS 821da177e4SLinus Torvalds #endif 831da177e4SLinus Torvalds 841da177e4SLinus Torvalds /* magic numbers that can affect system performance */ 851da177e4SLinus Torvalds #define EHCI_TUNE_CERR 3 /* 0-3 qtd retries; 0 == don't stop */ 861da177e4SLinus Torvalds #define EHCI_TUNE_RL_HS 4 /* nak throttle; see 4.9 */ 871da177e4SLinus Torvalds #define EHCI_TUNE_RL_TT 0 881da177e4SLinus Torvalds #define EHCI_TUNE_MULT_HS 1 /* 1-3 transactions/uframe; 4.10.3 */ 891da177e4SLinus Torvalds #define EHCI_TUNE_MULT_TT 1 90ffda0803SAlan Stern /* 91ffda0803SAlan Stern * Some drivers think it's safe to schedule isochronous transfers more than 92ffda0803SAlan Stern * 256 ms into the future (partly as a result of an old bug in the scheduling 93ffda0803SAlan Stern * code). In an attempt to avoid trouble, we will use a minimum scheduling 94ffda0803SAlan Stern * length of 512 frames instead of 256. 95ffda0803SAlan Stern */ 96ffda0803SAlan Stern #define EHCI_TUNE_FLS 1 /* (medium) 512-frame schedule */ 971da177e4SLinus Torvalds 9807d29b63SAlan Stern #define EHCI_IAA_MSECS 10 /* arbitrary */ 991da177e4SLinus Torvalds #define EHCI_IO_JIFFIES (HZ/10) /* io watchdog > irq_thresh */ 1001da177e4SLinus Torvalds #define EHCI_ASYNC_JIFFIES (HZ/20) /* async idle timeout */ 101004c1968SAlan Stern #define EHCI_SHRINK_JIFFIES (DIV_ROUND_UP(HZ, 200) + 1) 102fcda37cbSMing Lei /* 5-ms async qh unlink delay */ 1031da177e4SLinus Torvalds 1041da177e4SLinus Torvalds /* Initial IRQ latency: faster than hw default */ 1051da177e4SLinus Torvalds static int log2_irq_thresh = 0; // 0 to 6 1061da177e4SLinus Torvalds module_param (log2_irq_thresh, int, S_IRUGO); 1071da177e4SLinus Torvalds MODULE_PARM_DESC (log2_irq_thresh, "log2 IRQ latency, 1-64 microframes"); 1081da177e4SLinus Torvalds 1091da177e4SLinus Torvalds /* initial park setting: slower than hw default */ 1101da177e4SLinus Torvalds static unsigned park = 0; 1111da177e4SLinus Torvalds module_param (park, uint, S_IRUGO); 1121da177e4SLinus Torvalds MODULE_PARM_DESC (park, "park setting; 1-3 back-to-back async packets"); 1131da177e4SLinus Torvalds 11493f1a47cSDavid Brownell /* for flakey hardware, ignore overcurrent indicators */ 11593f1a47cSDavid Brownell static int ignore_oc = 0; 11693f1a47cSDavid Brownell module_param (ignore_oc, bool, S_IRUGO); 11793f1a47cSDavid Brownell MODULE_PARM_DESC (ignore_oc, "ignore bogus hardware overcurrent indications"); 11893f1a47cSDavid Brownell 11948f24970SAlek Du /* for link power management(LPM) feature */ 12048f24970SAlek Du static unsigned int hird; 12148f24970SAlek Du module_param(hird, int, S_IRUGO); 122cc556871SNiels de Vos MODULE_PARM_DESC(hird, "host initiated resume duration, +1 for each 75us"); 12348f24970SAlek Du 1241da177e4SLinus Torvalds #define INTR_MASK (STS_IAA | STS_FATAL | STS_PCD | STS_ERR | STS_INT) 1251da177e4SLinus Torvalds 1261da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/ 1271da177e4SLinus Torvalds 1281da177e4SLinus Torvalds #include "ehci.h" 1291da177e4SLinus Torvalds #include "ehci-dbg.c" 130ad93562bSAndiry Xu #include "pci-quirks.h" 1311da177e4SLinus Torvalds 1321da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/ 1331da177e4SLinus Torvalds 134bc29847eSAlan Stern static void 135bc29847eSAlan Stern timer_action(struct ehci_hcd *ehci, enum ehci_timer_action action) 136bc29847eSAlan Stern { 137bc29847eSAlan Stern /* Don't override timeouts which shrink or (later) disable 138bc29847eSAlan Stern * the async ring; just the I/O watchdog. Note that if a 139bc29847eSAlan Stern * SHRINK were pending, OFF would never be requested. 140bc29847eSAlan Stern */ 141bc29847eSAlan Stern if (timer_pending(&ehci->watchdog) 142bc29847eSAlan Stern && ((BIT(TIMER_ASYNC_SHRINK) | BIT(TIMER_ASYNC_OFF)) 143bc29847eSAlan Stern & ehci->actions)) 144bc29847eSAlan Stern return; 145bc29847eSAlan Stern 146bc29847eSAlan Stern if (!test_and_set_bit(action, &ehci->actions)) { 147bc29847eSAlan Stern unsigned long t; 148bc29847eSAlan Stern 149bc29847eSAlan Stern switch (action) { 150bc29847eSAlan Stern case TIMER_IO_WATCHDOG: 151403dbd36SAlek Du if (!ehci->need_io_watchdog) 152403dbd36SAlek Du return; 153bc29847eSAlan Stern t = EHCI_IO_JIFFIES; 154bc29847eSAlan Stern break; 155bc29847eSAlan Stern case TIMER_ASYNC_OFF: 156bc29847eSAlan Stern t = EHCI_ASYNC_JIFFIES; 157bc29847eSAlan Stern break; 158bc29847eSAlan Stern /* case TIMER_ASYNC_SHRINK: */ 159bc29847eSAlan Stern default: 160004c1968SAlan Stern t = EHCI_SHRINK_JIFFIES; 161bc29847eSAlan Stern break; 162bc29847eSAlan Stern } 163bc29847eSAlan Stern mod_timer(&ehci->watchdog, t + jiffies); 164bc29847eSAlan Stern } 165bc29847eSAlan Stern } 166bc29847eSAlan Stern 167bc29847eSAlan Stern /*-------------------------------------------------------------------------*/ 168bc29847eSAlan Stern 1691da177e4SLinus Torvalds /* 1701da177e4SLinus Torvalds * handshake - spin reading hc until handshake completes or fails 1711da177e4SLinus Torvalds * @ptr: address of hc register to be read 1721da177e4SLinus Torvalds * @mask: bits to look at in result of read 1731da177e4SLinus Torvalds * @done: value of those bits when handshake succeeds 1741da177e4SLinus Torvalds * @usec: timeout in microseconds 1751da177e4SLinus Torvalds * 1761da177e4SLinus Torvalds * Returns negative errno, or zero on success 1771da177e4SLinus Torvalds * 1781da177e4SLinus Torvalds * Success happens when the "mask" bits have the specified value (hardware 1791da177e4SLinus Torvalds * handshake done). There are two failure modes: "usec" have passed (major 1801da177e4SLinus Torvalds * hardware flakeout), or the register reads as all-ones (hardware removed). 1811da177e4SLinus Torvalds * 1821da177e4SLinus Torvalds * That last failure should_only happen in cases like physical cardbus eject 1831da177e4SLinus Torvalds * before driver shutdown. But it also seems to be caused by bugs in cardbus 1841da177e4SLinus Torvalds * bridge shutdown: shutting down the bridge before the devices using it. 1851da177e4SLinus Torvalds */ 186083522d7SBenjamin Herrenschmidt static int handshake (struct ehci_hcd *ehci, void __iomem *ptr, 187083522d7SBenjamin Herrenschmidt u32 mask, u32 done, int usec) 1881da177e4SLinus Torvalds { 1891da177e4SLinus Torvalds u32 result; 1901da177e4SLinus Torvalds 1911da177e4SLinus Torvalds do { 192083522d7SBenjamin Herrenschmidt result = ehci_readl(ehci, ptr); 1931da177e4SLinus Torvalds if (result == ~(u32)0) /* card removed */ 1941da177e4SLinus Torvalds return -ENODEV; 1951da177e4SLinus Torvalds result &= mask; 1961da177e4SLinus Torvalds if (result == done) 1971da177e4SLinus Torvalds return 0; 1981da177e4SLinus Torvalds udelay (1); 1991da177e4SLinus Torvalds usec--; 2001da177e4SLinus Torvalds } while (usec > 0); 2011da177e4SLinus Torvalds return -ETIMEDOUT; 2021da177e4SLinus Torvalds } 2031da177e4SLinus Torvalds 20465fd4272SMatthieu CASTET /* check TDI/ARC silicon is in host mode */ 20565fd4272SMatthieu CASTET static int tdi_in_host_mode (struct ehci_hcd *ehci) 20665fd4272SMatthieu CASTET { 20765fd4272SMatthieu CASTET u32 __iomem *reg_ptr; 20865fd4272SMatthieu CASTET u32 tmp; 20965fd4272SMatthieu CASTET 21065fd4272SMatthieu CASTET reg_ptr = (u32 __iomem *)(((u8 __iomem *)ehci->regs) + USBMODE); 21165fd4272SMatthieu CASTET tmp = ehci_readl(ehci, reg_ptr); 21265fd4272SMatthieu CASTET return (tmp & 3) == USBMODE_CM_HC; 21365fd4272SMatthieu CASTET } 21465fd4272SMatthieu CASTET 2151da177e4SLinus Torvalds /* force HC to halt state from unknown (EHCI spec section 2.3) */ 2161da177e4SLinus Torvalds static int ehci_halt (struct ehci_hcd *ehci) 2171da177e4SLinus Torvalds { 218083522d7SBenjamin Herrenschmidt u32 temp = ehci_readl(ehci, &ehci->regs->status); 2191da177e4SLinus Torvalds 22072f30b6fSDavid Brownell /* disable any irqs left enabled by previous code */ 221083522d7SBenjamin Herrenschmidt ehci_writel(ehci, 0, &ehci->regs->intr_enable); 22272f30b6fSDavid Brownell 22365fd4272SMatthieu CASTET if (ehci_is_TDI(ehci) && tdi_in_host_mode(ehci) == 0) { 22465fd4272SMatthieu CASTET return 0; 22565fd4272SMatthieu CASTET } 22665fd4272SMatthieu CASTET 2271da177e4SLinus Torvalds if ((temp & STS_HALT) != 0) 2281da177e4SLinus Torvalds return 0; 2291da177e4SLinus Torvalds 230083522d7SBenjamin Herrenschmidt temp = ehci_readl(ehci, &ehci->regs->command); 2311da177e4SLinus Torvalds temp &= ~CMD_RUN; 232083522d7SBenjamin Herrenschmidt ehci_writel(ehci, temp, &ehci->regs->command); 233083522d7SBenjamin Herrenschmidt return handshake (ehci, &ehci->regs->status, 234083522d7SBenjamin Herrenschmidt STS_HALT, STS_HALT, 16 * 125); 2351da177e4SLinus Torvalds } 2361da177e4SLinus Torvalds 237*df7c1ca2SGeoff Levand #if defined(CONFIG_USB_SUSPEND) && defined(CONFIG_PPC_PS3) 238*df7c1ca2SGeoff Levand 239*df7c1ca2SGeoff Levand /* 240*df7c1ca2SGeoff Levand * The EHCI controller of the Cell Super Companion Chip used in the 241*df7c1ca2SGeoff Levand * PS3 will stop the root hub after all root hub ports are suspended. 242*df7c1ca2SGeoff Levand * When in this condition handshake will return -ETIMEDOUT. The 243*df7c1ca2SGeoff Levand * STS_HLT bit will not be set, so inspection of the frame index is 244*df7c1ca2SGeoff Levand * used here to test for the condition. If the condition is found 245*df7c1ca2SGeoff Levand * return success to allow the USB suspend to complete. 246*df7c1ca2SGeoff Levand */ 247*df7c1ca2SGeoff Levand 248*df7c1ca2SGeoff Levand static int handshake_for_broken_root_hub(struct ehci_hcd *ehci, 249*df7c1ca2SGeoff Levand void __iomem *ptr, u32 mask, u32 done, 250*df7c1ca2SGeoff Levand int usec) 251*df7c1ca2SGeoff Levand { 252*df7c1ca2SGeoff Levand unsigned int old_index; 253*df7c1ca2SGeoff Levand int error; 254*df7c1ca2SGeoff Levand 255*df7c1ca2SGeoff Levand if (!firmware_has_feature(FW_FEATURE_PS3_LV1)) 256*df7c1ca2SGeoff Levand return -ETIMEDOUT; 257*df7c1ca2SGeoff Levand 258*df7c1ca2SGeoff Levand old_index = ehci_read_frame_index(ehci); 259*df7c1ca2SGeoff Levand 260*df7c1ca2SGeoff Levand error = handshake(ehci, ptr, mask, done, usec); 261*df7c1ca2SGeoff Levand 262*df7c1ca2SGeoff Levand if (error == -ETIMEDOUT && ehci_read_frame_index(ehci) == old_index) 263*df7c1ca2SGeoff Levand return 0; 264*df7c1ca2SGeoff Levand 265*df7c1ca2SGeoff Levand return error; 266*df7c1ca2SGeoff Levand } 267*df7c1ca2SGeoff Levand 268*df7c1ca2SGeoff Levand #else 269*df7c1ca2SGeoff Levand 270*df7c1ca2SGeoff Levand static int handshake_for_broken_root_hub(struct ehci_hcd *ehci, 271*df7c1ca2SGeoff Levand void __iomem *ptr, u32 mask, u32 done, 272*df7c1ca2SGeoff Levand int usec) 273*df7c1ca2SGeoff Levand { 274*df7c1ca2SGeoff Levand return -ETIMEDOUT; 275*df7c1ca2SGeoff Levand } 276*df7c1ca2SGeoff Levand 277*df7c1ca2SGeoff Levand #endif 278*df7c1ca2SGeoff Levand 2790bcfeb3eSDavid Brownell static int handshake_on_error_set_halt(struct ehci_hcd *ehci, void __iomem *ptr, 2800bcfeb3eSDavid Brownell u32 mask, u32 done, int usec) 2810bcfeb3eSDavid Brownell { 2820bcfeb3eSDavid Brownell int error; 2830bcfeb3eSDavid Brownell 2840bcfeb3eSDavid Brownell error = handshake(ehci, ptr, mask, done, usec); 285*df7c1ca2SGeoff Levand if (error == -ETIMEDOUT) 286*df7c1ca2SGeoff Levand error = handshake_for_broken_root_hub(ehci, ptr, mask, done, 287*df7c1ca2SGeoff Levand usec); 288*df7c1ca2SGeoff Levand 2890bcfeb3eSDavid Brownell if (error) { 2900bcfeb3eSDavid Brownell ehci_halt(ehci); 291e8799906SAlan Stern ehci->rh_state = EHCI_RH_HALTED; 29265cb76baSOzan Çağlayan ehci_err(ehci, "force halt; handshake %p %08x %08x -> %d\n", 2930bcfeb3eSDavid Brownell ptr, mask, done, error); 2940bcfeb3eSDavid Brownell } 2950bcfeb3eSDavid Brownell 2960bcfeb3eSDavid Brownell return error; 2970bcfeb3eSDavid Brownell } 2980bcfeb3eSDavid Brownell 2991da177e4SLinus Torvalds /* put TDI/ARC silicon into EHCI mode */ 3001da177e4SLinus Torvalds static void tdi_reset (struct ehci_hcd *ehci) 3011da177e4SLinus Torvalds { 3021da177e4SLinus Torvalds u32 __iomem *reg_ptr; 3031da177e4SLinus Torvalds u32 tmp; 3041da177e4SLinus Torvalds 305d23a1377SVladimir Barinov reg_ptr = (u32 __iomem *)(((u8 __iomem *)ehci->regs) + USBMODE); 306083522d7SBenjamin Herrenschmidt tmp = ehci_readl(ehci, reg_ptr); 307d23a1377SVladimir Barinov tmp |= USBMODE_CM_HC; 308d23a1377SVladimir Barinov /* The default byte access to MMR space is LE after 309d23a1377SVladimir Barinov * controller reset. Set the required endian mode 310d23a1377SVladimir Barinov * for transfer buffers to match the host microprocessor 311d23a1377SVladimir Barinov */ 312d23a1377SVladimir Barinov if (ehci_big_endian_mmio(ehci)) 313d23a1377SVladimir Barinov tmp |= USBMODE_BE; 314083522d7SBenjamin Herrenschmidt ehci_writel(ehci, tmp, reg_ptr); 3151da177e4SLinus Torvalds } 3161da177e4SLinus Torvalds 3171da177e4SLinus Torvalds /* reset a non-running (STS_HALT == 1) controller */ 3181da177e4SLinus Torvalds static int ehci_reset (struct ehci_hcd *ehci) 3191da177e4SLinus Torvalds { 3201da177e4SLinus Torvalds int retval; 321083522d7SBenjamin Herrenschmidt u32 command = ehci_readl(ehci, &ehci->regs->command); 3221da177e4SLinus Torvalds 3238d053c79SJason Wessel /* If the EHCI debug controller is active, special care must be 3248d053c79SJason Wessel * taken before and after a host controller reset */ 3258d053c79SJason Wessel if (ehci->debug && !dbgp_reset_prep()) 3268d053c79SJason Wessel ehci->debug = NULL; 3278d053c79SJason Wessel 3281da177e4SLinus Torvalds command |= CMD_RESET; 3291da177e4SLinus Torvalds dbg_cmd (ehci, "reset", command); 330083522d7SBenjamin Herrenschmidt ehci_writel(ehci, command, &ehci->regs->command); 331e8799906SAlan Stern ehci->rh_state = EHCI_RH_HALTED; 3321da177e4SLinus Torvalds ehci->next_statechange = jiffies; 333083522d7SBenjamin Herrenschmidt retval = handshake (ehci, &ehci->regs->command, 334083522d7SBenjamin Herrenschmidt CMD_RESET, 0, 250 * 1000); 3351da177e4SLinus Torvalds 336331ac6b2SAlek Du if (ehci->has_hostpc) { 337331ac6b2SAlek Du ehci_writel(ehci, USBMODE_EX_HC | USBMODE_EX_VBPS, 338331ac6b2SAlek Du (u32 __iomem *)(((u8 *)ehci->regs) + USBMODE_EX)); 339331ac6b2SAlek Du ehci_writel(ehci, TXFIFO_DEFAULT, 340331ac6b2SAlek Du (u32 __iomem *)(((u8 *)ehci->regs) + TXFILLTUNING)); 341331ac6b2SAlek Du } 3421da177e4SLinus Torvalds if (retval) 3431da177e4SLinus Torvalds return retval; 3441da177e4SLinus Torvalds 3451da177e4SLinus Torvalds if (ehci_is_TDI(ehci)) 3461da177e4SLinus Torvalds tdi_reset (ehci); 3471da177e4SLinus Torvalds 3488d053c79SJason Wessel if (ehci->debug) 3498d053c79SJason Wessel dbgp_external_startup(); 3508d053c79SJason Wessel 3511da177e4SLinus Torvalds return retval; 3521da177e4SLinus Torvalds } 3531da177e4SLinus Torvalds 3541da177e4SLinus Torvalds /* idle the controller (from running) */ 3551da177e4SLinus Torvalds static void ehci_quiesce (struct ehci_hcd *ehci) 3561da177e4SLinus Torvalds { 3571da177e4SLinus Torvalds u32 temp; 3581da177e4SLinus Torvalds 3591da177e4SLinus Torvalds #ifdef DEBUG 360e8799906SAlan Stern if (ehci->rh_state != EHCI_RH_RUNNING) 3611da177e4SLinus Torvalds BUG (); 3621da177e4SLinus Torvalds #endif 3631da177e4SLinus Torvalds 3641da177e4SLinus Torvalds /* wait for any schedule enables/disables to take effect */ 365083522d7SBenjamin Herrenschmidt temp = ehci_readl(ehci, &ehci->regs->command) << 10; 3661da177e4SLinus Torvalds temp &= STS_ASS | STS_PSS; 367c765d4caSKarsten Wiese if (handshake_on_error_set_halt(ehci, &ehci->regs->status, 368c765d4caSKarsten Wiese STS_ASS | STS_PSS, temp, 16 * 125)) 3691da177e4SLinus Torvalds return; 3701da177e4SLinus Torvalds 3711da177e4SLinus Torvalds /* then disable anything that's still active */ 372083522d7SBenjamin Herrenschmidt temp = ehci_readl(ehci, &ehci->regs->command); 3731da177e4SLinus Torvalds temp &= ~(CMD_ASE | CMD_IAAD | CMD_PSE); 374083522d7SBenjamin Herrenschmidt ehci_writel(ehci, temp, &ehci->regs->command); 3751da177e4SLinus Torvalds 3761da177e4SLinus Torvalds /* hardware can take 16 microframes to turn off ... */ 377c765d4caSKarsten Wiese handshake_on_error_set_halt(ehci, &ehci->regs->status, 378c765d4caSKarsten Wiese STS_ASS | STS_PSS, 0, 16 * 125); 3791da177e4SLinus Torvalds } 3801da177e4SLinus Torvalds 3811da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/ 3821da177e4SLinus Torvalds 38307d29b63SAlan Stern static void end_unlink_async(struct ehci_hcd *ehci); 3847d12e780SDavid Howells static void ehci_work(struct ehci_hcd *ehci); 3851da177e4SLinus Torvalds 3861da177e4SLinus Torvalds #include "ehci-hub.c" 38748f24970SAlek Du #include "ehci-lpm.c" 3881da177e4SLinus Torvalds #include "ehci-mem.c" 3891da177e4SLinus Torvalds #include "ehci-q.c" 3901da177e4SLinus Torvalds #include "ehci-sched.c" 3914c67045bSKirill Smelkov #include "ehci-sysfs.c" 3921da177e4SLinus Torvalds 3931da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/ 3941da177e4SLinus Torvalds 39507d29b63SAlan Stern static void ehci_iaa_watchdog(unsigned long param) 39607d29b63SAlan Stern { 39707d29b63SAlan Stern struct ehci_hcd *ehci = (struct ehci_hcd *) param; 39807d29b63SAlan Stern unsigned long flags; 39907d29b63SAlan Stern 40007d29b63SAlan Stern spin_lock_irqsave (&ehci->lock, flags); 40107d29b63SAlan Stern 402e82cc128SDavid Brownell /* Lost IAA irqs wedge things badly; seen first with a vt8235. 403e82cc128SDavid Brownell * So we need this watchdog, but must protect it against both 404e82cc128SDavid Brownell * (a) SMP races against real IAA firing and retriggering, and 405e82cc128SDavid Brownell * (b) clean HC shutdown, when IAA watchdog was pending. 406e82cc128SDavid Brownell */ 407e82cc128SDavid Brownell if (ehci->reclaim 408e82cc128SDavid Brownell && !timer_pending(&ehci->iaa_watchdog) 409e8799906SAlan Stern && ehci->rh_state == EHCI_RH_RUNNING) { 410e82cc128SDavid Brownell u32 cmd, status; 411e82cc128SDavid Brownell 412e82cc128SDavid Brownell /* If we get here, IAA is *REALLY* late. It's barely 413e82cc128SDavid Brownell * conceivable that the system is so busy that CMD_IAAD 414e82cc128SDavid Brownell * is still legitimately set, so let's be sure it's 415e82cc128SDavid Brownell * clear before we read STS_IAA. (The HC should clear 416e82cc128SDavid Brownell * CMD_IAAD when it sets STS_IAA.) 417e82cc128SDavid Brownell */ 41807d29b63SAlan Stern cmd = ehci_readl(ehci, &ehci->regs->command); 419e82cc128SDavid Brownell if (cmd & CMD_IAAD) 420e82cc128SDavid Brownell ehci_writel(ehci, cmd & ~CMD_IAAD, 421e82cc128SDavid Brownell &ehci->regs->command); 42207d29b63SAlan Stern 423e82cc128SDavid Brownell /* If IAA is set here it either legitimately triggered 424e82cc128SDavid Brownell * before we cleared IAAD above (but _way_ late, so we'll 425e82cc128SDavid Brownell * still count it as lost) ... or a silicon erratum: 426e82cc128SDavid Brownell * - VIA seems to set IAA without triggering the IRQ; 427e82cc128SDavid Brownell * - IAAD potentially cleared without setting IAA. 428e82cc128SDavid Brownell */ 429e82cc128SDavid Brownell status = ehci_readl(ehci, &ehci->regs->status); 430e82cc128SDavid Brownell if ((status & STS_IAA) || !(cmd & CMD_IAAD)) { 43107d29b63SAlan Stern COUNT (ehci->stats.lost_iaa); 43207d29b63SAlan Stern ehci_writel(ehci, STS_IAA, &ehci->regs->status); 43307d29b63SAlan Stern } 434e82cc128SDavid Brownell 435e82cc128SDavid Brownell ehci_vdbg(ehci, "IAA watchdog: status %x cmd %x\n", 436e82cc128SDavid Brownell status, cmd); 43707d29b63SAlan Stern end_unlink_async(ehci); 43807d29b63SAlan Stern } 43907d29b63SAlan Stern 44007d29b63SAlan Stern spin_unlock_irqrestore(&ehci->lock, flags); 44107d29b63SAlan Stern } 44207d29b63SAlan Stern 4431da177e4SLinus Torvalds static void ehci_watchdog(unsigned long param) 4441da177e4SLinus Torvalds { 4451da177e4SLinus Torvalds struct ehci_hcd *ehci = (struct ehci_hcd *) param; 4461da177e4SLinus Torvalds unsigned long flags; 4471da177e4SLinus Torvalds 4481da177e4SLinus Torvalds spin_lock_irqsave(&ehci->lock, flags); 4491da177e4SLinus Torvalds 4501da177e4SLinus Torvalds /* stop async processing after it's idled a bit */ 4511da177e4SLinus Torvalds if (test_bit (TIMER_ASYNC_OFF, &ehci->actions)) 4521da177e4SLinus Torvalds start_unlink_async (ehci, ehci->async); 4531da177e4SLinus Torvalds 4541da177e4SLinus Torvalds /* ehci could run by timer, without IRQs ... */ 4557d12e780SDavid Howells ehci_work (ehci); 4561da177e4SLinus Torvalds 4571da177e4SLinus Torvalds spin_unlock_irqrestore (&ehci->lock, flags); 4581da177e4SLinus Torvalds } 4591da177e4SLinus Torvalds 4608903795aSAlan Stern /* On some systems, leaving remote wakeup enabled prevents system shutdown. 4618903795aSAlan Stern * The firmware seems to think that powering off is a wakeup event! 4628903795aSAlan Stern * This routine turns off remote wakeup and everything else, on all ports. 4638903795aSAlan Stern */ 4648903795aSAlan Stern static void ehci_turn_off_all_ports(struct ehci_hcd *ehci) 4658903795aSAlan Stern { 4668903795aSAlan Stern int port = HCS_N_PORTS(ehci->hcs_params); 4678903795aSAlan Stern 4688903795aSAlan Stern while (port--) 4698903795aSAlan Stern ehci_writel(ehci, PORT_RWC_BITS, 4708903795aSAlan Stern &ehci->regs->port_status[port]); 4718903795aSAlan Stern } 4728903795aSAlan Stern 47321da84a8SSarah Sharp /* 47421da84a8SSarah Sharp * Halt HC, turn off all ports, and let the BIOS use the companion controllers. 47521da84a8SSarah Sharp * Should be called with ehci->lock held. 47672f30b6fSDavid Brownell */ 47721da84a8SSarah Sharp static void ehci_silence_controller(struct ehci_hcd *ehci) 4781da177e4SLinus Torvalds { 47921da84a8SSarah Sharp ehci_halt(ehci); 4808903795aSAlan Stern ehci_turn_off_all_ports(ehci); 4811da177e4SLinus Torvalds 4821da177e4SLinus Torvalds /* make BIOS/etc use companion controller during reboot */ 483083522d7SBenjamin Herrenschmidt ehci_writel(ehci, 0, &ehci->regs->configured_flag); 4848903795aSAlan Stern 4858903795aSAlan Stern /* unblock posted writes */ 4868903795aSAlan Stern ehci_readl(ehci, &ehci->regs->configured_flag); 4871da177e4SLinus Torvalds } 4881da177e4SLinus Torvalds 48921da84a8SSarah Sharp /* ehci_shutdown kick in for silicon on any bus (not just pci, etc). 49021da84a8SSarah Sharp * This forcibly disables dma and IRQs, helping kexec and other cases 49121da84a8SSarah Sharp * where the next system software may expect clean state. 49221da84a8SSarah Sharp */ 49321da84a8SSarah Sharp static void ehci_shutdown(struct usb_hcd *hcd) 49421da84a8SSarah Sharp { 49521da84a8SSarah Sharp struct ehci_hcd *ehci = hcd_to_ehci(hcd); 49621da84a8SSarah Sharp 49721da84a8SSarah Sharp del_timer_sync(&ehci->watchdog); 49821da84a8SSarah Sharp del_timer_sync(&ehci->iaa_watchdog); 49921da84a8SSarah Sharp 50021da84a8SSarah Sharp spin_lock_irq(&ehci->lock); 50121da84a8SSarah Sharp ehci_silence_controller(ehci); 50221da84a8SSarah Sharp spin_unlock_irq(&ehci->lock); 50321da84a8SSarah Sharp } 50421da84a8SSarah Sharp 50556c1e26dSDavid Brownell static void ehci_port_power (struct ehci_hcd *ehci, int is_on) 50656c1e26dSDavid Brownell { 50756c1e26dSDavid Brownell unsigned port; 50856c1e26dSDavid Brownell 50956c1e26dSDavid Brownell if (!HCS_PPC (ehci->hcs_params)) 51056c1e26dSDavid Brownell return; 51156c1e26dSDavid Brownell 51256c1e26dSDavid Brownell ehci_dbg (ehci, "...power%s ports...\n", is_on ? "up" : "down"); 51356c1e26dSDavid Brownell for (port = HCS_N_PORTS (ehci->hcs_params); port > 0; ) 51456c1e26dSDavid Brownell (void) ehci_hub_control(ehci_to_hcd(ehci), 51556c1e26dSDavid Brownell is_on ? SetPortFeature : ClearPortFeature, 51656c1e26dSDavid Brownell USB_PORT_FEAT_POWER, 51756c1e26dSDavid Brownell port--, NULL, 0); 518383975d7SAlan Stern /* Flush those writes */ 519383975d7SAlan Stern ehci_readl(ehci, &ehci->regs->command); 52056c1e26dSDavid Brownell msleep(20); 52156c1e26dSDavid Brownell } 52256c1e26dSDavid Brownell 5237ff71d6aSMatt Porter /*-------------------------------------------------------------------------*/ 5241da177e4SLinus Torvalds 5257ff71d6aSMatt Porter /* 5267ff71d6aSMatt Porter * ehci_work is called from some interrupts, timers, and so on. 5277ff71d6aSMatt Porter * it calls driver completion functions, after dropping ehci->lock. 5287ff71d6aSMatt Porter */ 5297d12e780SDavid Howells static void ehci_work (struct ehci_hcd *ehci) 5307ff71d6aSMatt Porter { 5317ff71d6aSMatt Porter timer_action_done (ehci, TIMER_IO_WATCHDOG); 5321da177e4SLinus Torvalds 5337ff71d6aSMatt Porter /* another CPU may drop ehci->lock during a schedule scan while 5347ff71d6aSMatt Porter * it reports urb completions. this flag guards against bogus 5357ff71d6aSMatt Porter * attempts at re-entrant schedule scanning. 5367ff71d6aSMatt Porter */ 5377ff71d6aSMatt Porter if (ehci->scanning) 5387ff71d6aSMatt Porter return; 5397ff71d6aSMatt Porter ehci->scanning = 1; 5407d12e780SDavid Howells scan_async (ehci); 5417ff71d6aSMatt Porter if (ehci->next_uframe != -1) 5427d12e780SDavid Howells scan_periodic (ehci); 5437ff71d6aSMatt Porter ehci->scanning = 0; 5447ff71d6aSMatt Porter 5457ff71d6aSMatt Porter /* the IO watchdog guards against hardware or driver bugs that 5467ff71d6aSMatt Porter * misplace IRQs, and should let us run completely without IRQs. 5477ff71d6aSMatt Porter * such lossage has been observed on both VT6202 and VT8235. 5487ff71d6aSMatt Porter */ 549e8799906SAlan Stern if (ehci->rh_state == EHCI_RH_RUNNING && 5507ff71d6aSMatt Porter (ehci->async->qh_next.ptr != NULL || 5517ff71d6aSMatt Porter ehci->periodic_sched != 0)) 5527ff71d6aSMatt Porter timer_action (ehci, TIMER_IO_WATCHDOG); 5537ff71d6aSMatt Porter } 5547ff71d6aSMatt Porter 55521da84a8SSarah Sharp /* 55621da84a8SSarah Sharp * Called when the ehci_hcd module is removed. 55721da84a8SSarah Sharp */ 5587ff71d6aSMatt Porter static void ehci_stop (struct usb_hcd *hcd) 5591da177e4SLinus Torvalds { 5601da177e4SLinus Torvalds struct ehci_hcd *ehci = hcd_to_ehci (hcd); 5611da177e4SLinus Torvalds 5627ff71d6aSMatt Porter ehci_dbg (ehci, "stop\n"); 5631da177e4SLinus Torvalds 5647ff71d6aSMatt Porter /* no more interrupts ... */ 5657ff71d6aSMatt Porter del_timer_sync (&ehci->watchdog); 56607d29b63SAlan Stern del_timer_sync(&ehci->iaa_watchdog); 5671da177e4SLinus Torvalds 5687ff71d6aSMatt Porter spin_lock_irq(&ehci->lock); 569e8799906SAlan Stern if (ehci->rh_state == EHCI_RH_RUNNING) 5707ff71d6aSMatt Porter ehci_quiesce (ehci); 5711da177e4SLinus Torvalds 57221da84a8SSarah Sharp ehci_silence_controller(ehci); 5737ff71d6aSMatt Porter ehci_reset (ehci); 5747ff71d6aSMatt Porter spin_unlock_irq(&ehci->lock); 5757ff71d6aSMatt Porter 5764c67045bSKirill Smelkov remove_sysfs_files(ehci); 5777ff71d6aSMatt Porter remove_debug_files (ehci); 5787ff71d6aSMatt Porter 5797ff71d6aSMatt Porter /* root hub is shut down separately (first, when possible) */ 5807ff71d6aSMatt Porter spin_lock_irq (&ehci->lock); 5817ff71d6aSMatt Porter if (ehci->async) 5827d12e780SDavid Howells ehci_work (ehci); 5837ff71d6aSMatt Porter spin_unlock_irq (&ehci->lock); 5847ff71d6aSMatt Porter ehci_mem_cleanup (ehci); 5857ff71d6aSMatt Porter 586ad93562bSAndiry Xu if (ehci->amd_pll_fix == 1) 587ad93562bSAndiry Xu usb_amd_dev_put(); 58805570297SAlex He 5897ff71d6aSMatt Porter #ifdef EHCI_STATS 5907ff71d6aSMatt Porter ehci_dbg (ehci, "irq normal %ld err %ld reclaim %ld (lost %ld)\n", 5917ff71d6aSMatt Porter ehci->stats.normal, ehci->stats.error, ehci->stats.reclaim, 5927ff71d6aSMatt Porter ehci->stats.lost_iaa); 5937ff71d6aSMatt Porter ehci_dbg (ehci, "complete %ld unlink %ld\n", 5947ff71d6aSMatt Porter ehci->stats.complete, ehci->stats.unlink); 5951da177e4SLinus Torvalds #endif 5967ff71d6aSMatt Porter 597083522d7SBenjamin Herrenschmidt dbg_status (ehci, "ehci_stop completed", 598083522d7SBenjamin Herrenschmidt ehci_readl(ehci, &ehci->regs->status)); 5991da177e4SLinus Torvalds } 6001da177e4SLinus Torvalds 60118807521SDavid Brownell /* one-time init, only for memory state */ 60218807521SDavid Brownell static int ehci_init(struct usb_hcd *hcd) 6031da177e4SLinus Torvalds { 6041da177e4SLinus Torvalds struct ehci_hcd *ehci = hcd_to_ehci(hcd); 6051da177e4SLinus Torvalds u32 temp; 6061da177e4SLinus Torvalds int retval; 6071da177e4SLinus Torvalds u32 hcc_params; 6083807e26dSAlek Du struct ehci_qh_hw *hw; 6091da177e4SLinus Torvalds 61018807521SDavid Brownell spin_lock_init(&ehci->lock); 61118807521SDavid Brownell 612403dbd36SAlek Du /* 613403dbd36SAlek Du * keep io watchdog by default, those good HCDs could turn off it later 614403dbd36SAlek Du */ 615403dbd36SAlek Du ehci->need_io_watchdog = 1; 6161da177e4SLinus Torvalds init_timer(&ehci->watchdog); 6171da177e4SLinus Torvalds ehci->watchdog.function = ehci_watchdog; 6181da177e4SLinus Torvalds ehci->watchdog.data = (unsigned long) ehci; 6191da177e4SLinus Torvalds 62007d29b63SAlan Stern init_timer(&ehci->iaa_watchdog); 62107d29b63SAlan Stern ehci->iaa_watchdog.function = ehci_iaa_watchdog; 62207d29b63SAlan Stern ehci->iaa_watchdog.data = (unsigned long) ehci; 62307d29b63SAlan Stern 624f75593ceSAlan Stern hcc_params = ehci_readl(ehci, &ehci->caps->hcc_params); 625f75593ceSAlan Stern 6261da177e4SLinus Torvalds /* 627cc62a7ebSKirill Smelkov * by default set standard 80% (== 100 usec/uframe) max periodic 628cc62a7ebSKirill Smelkov * bandwidth as required by USB 2.0 629cc62a7ebSKirill Smelkov */ 630cc62a7ebSKirill Smelkov ehci->uframe_periodic_max = 100; 631cc62a7ebSKirill Smelkov 632cc62a7ebSKirill Smelkov /* 6331da177e4SLinus Torvalds * hw default: 1K periodic list heads, one per frame. 6341da177e4SLinus Torvalds * periodic_size can shrink by USBCMD update if hcc_params allows. 6351da177e4SLinus Torvalds */ 6361da177e4SLinus Torvalds ehci->periodic_size = DEFAULT_I_TDPS; 6379aa09d2fSKarsten Wiese INIT_LIST_HEAD(&ehci->cached_itd_list); 6380e5f231bSAlan Stern INIT_LIST_HEAD(&ehci->cached_sitd_list); 639f75593ceSAlan Stern 640f75593ceSAlan Stern if (HCC_PGM_FRAMELISTLEN(hcc_params)) { 641f75593ceSAlan Stern /* periodic schedule size can be smaller than default */ 642f75593ceSAlan Stern switch (EHCI_TUNE_FLS) { 643f75593ceSAlan Stern case 0: ehci->periodic_size = 1024; break; 644f75593ceSAlan Stern case 1: ehci->periodic_size = 512; break; 645f75593ceSAlan Stern case 2: ehci->periodic_size = 256; break; 646f75593ceSAlan Stern default: BUG(); 647f75593ceSAlan Stern } 648f75593ceSAlan Stern } 64918807521SDavid Brownell if ((retval = ehci_mem_init(ehci, GFP_KERNEL)) < 0) 6501da177e4SLinus Torvalds return retval; 6511da177e4SLinus Torvalds 6521da177e4SLinus Torvalds /* controllers may cache some of the periodic schedule ... */ 6531da177e4SLinus Torvalds if (HCC_ISOC_CACHE(hcc_params)) // full frame cache 654dccd574cSSarah Sharp ehci->i_thresh = 2 + 8; 6551da177e4SLinus Torvalds else // N microframes cached 6561da177e4SLinus Torvalds ehci->i_thresh = 2 + HCC_ISOC_THRES(hcc_params); 6571da177e4SLinus Torvalds 6581da177e4SLinus Torvalds ehci->reclaim = NULL; 6591da177e4SLinus Torvalds ehci->next_uframe = -1; 6609aa09d2fSKarsten Wiese ehci->clock_frame = -1; 6611da177e4SLinus Torvalds 6621da177e4SLinus Torvalds /* 6631da177e4SLinus Torvalds * dedicate a qh for the async ring head, since we couldn't unlink 6641da177e4SLinus Torvalds * a 'real' qh without stopping the async schedule [4.8]. use it 6651da177e4SLinus Torvalds * as the 'reclamation list head' too. 6661da177e4SLinus Torvalds * its dummy is used in hw_alt_next of many tds, to prevent the qh 6671da177e4SLinus Torvalds * from automatically advancing to the next td after short reads. 6681da177e4SLinus Torvalds */ 6691da177e4SLinus Torvalds ehci->async->qh_next.qh = NULL; 6703807e26dSAlek Du hw = ehci->async->hw; 6713807e26dSAlek Du hw->hw_next = QH_NEXT(ehci, ehci->async->qh_dma); 6723807e26dSAlek Du hw->hw_info1 = cpu_to_hc32(ehci, QH_HEAD); 6733807e26dSAlek Du hw->hw_token = cpu_to_hc32(ehci, QTD_STS_HALT); 6743807e26dSAlek Du hw->hw_qtd_next = EHCI_LIST_END(ehci); 6751da177e4SLinus Torvalds ehci->async->qh_state = QH_STATE_LINKED; 6763807e26dSAlek Du hw->hw_alt_next = QTD_NEXT(ehci, ehci->async->dummy->qtd_dma); 6771da177e4SLinus Torvalds 6781da177e4SLinus Torvalds /* clear interrupt enables, set irq latency */ 6791da177e4SLinus Torvalds if (log2_irq_thresh < 0 || log2_irq_thresh > 6) 6801da177e4SLinus Torvalds log2_irq_thresh = 0; 6811da177e4SLinus Torvalds temp = 1 << (16 + log2_irq_thresh); 6825a9cdf33SAlek Du if (HCC_PER_PORT_CHANGE_EVENT(hcc_params)) { 6835a9cdf33SAlek Du ehci->has_ppcd = 1; 6845a9cdf33SAlek Du ehci_dbg(ehci, "enable per-port change event\n"); 6855a9cdf33SAlek Du temp |= CMD_PPCEE; 6865a9cdf33SAlek Du } 6871da177e4SLinus Torvalds if (HCC_CANPARK(hcc_params)) { 6881da177e4SLinus Torvalds /* HW default park == 3, on hardware that supports it (like 6891da177e4SLinus Torvalds * NVidia and ALI silicon), maximizes throughput on the async 6901da177e4SLinus Torvalds * schedule by avoiding QH fetches between transfers. 6911da177e4SLinus Torvalds * 6921da177e4SLinus Torvalds * With fast usb storage devices and NForce2, "park" seems to 6931da177e4SLinus Torvalds * make problems: throughput reduction (!), data errors... 6941da177e4SLinus Torvalds */ 6951da177e4SLinus Torvalds if (park) { 6961da177e4SLinus Torvalds park = min(park, (unsigned) 3); 6971da177e4SLinus Torvalds temp |= CMD_PARK; 6981da177e4SLinus Torvalds temp |= park << 8; 6991da177e4SLinus Torvalds } 70018807521SDavid Brownell ehci_dbg(ehci, "park %d\n", park); 7011da177e4SLinus Torvalds } 7021da177e4SLinus Torvalds if (HCC_PGM_FRAMELISTLEN(hcc_params)) { 7031da177e4SLinus Torvalds /* periodic schedule size can be smaller than default */ 7041da177e4SLinus Torvalds temp &= ~(3 << 2); 7051da177e4SLinus Torvalds temp |= (EHCI_TUNE_FLS << 2); 7061da177e4SLinus Torvalds } 70748f24970SAlek Du if (HCC_LPM(hcc_params)) { 70848f24970SAlek Du /* support link power management EHCI 1.1 addendum */ 70948f24970SAlek Du ehci_dbg(ehci, "support lpm\n"); 71048f24970SAlek Du ehci->has_lpm = 1; 71148f24970SAlek Du if (hird > 0xf) { 71248f24970SAlek Du ehci_dbg(ehci, "hird %d invalid, use default 0", 71348f24970SAlek Du hird); 71448f24970SAlek Du hird = 0; 71548f24970SAlek Du } 71648f24970SAlek Du temp |= hird << 24; 71748f24970SAlek Du } 71818807521SDavid Brownell ehci->command = temp; 71918807521SDavid Brownell 72040f8db8fSAlan Stern /* Accept arbitrarily long scatter-gather lists */ 7214307a28eSAndrea Righi if (!(hcd->driver->flags & HCD_LOCAL_MEM)) 72240f8db8fSAlan Stern hcd->self.sg_tablesize = ~0; 72318807521SDavid Brownell return 0; 72418807521SDavid Brownell } 72518807521SDavid Brownell 72618807521SDavid Brownell /* start HC running; it's halted, ehci_init() has been run (once) */ 72718807521SDavid Brownell static int ehci_run (struct usb_hcd *hcd) 72818807521SDavid Brownell { 72918807521SDavid Brownell struct ehci_hcd *ehci = hcd_to_ehci (hcd); 73018807521SDavid Brownell u32 temp; 73118807521SDavid Brownell u32 hcc_params; 73218807521SDavid Brownell 7331d619f12SMarcelo Tosatti hcd->uses_new_polling = 1; 7341d619f12SMarcelo Tosatti 73518807521SDavid Brownell /* EHCI spec section 4.1 */ 736876e0df9SGeoff Levand 737083522d7SBenjamin Herrenschmidt ehci_writel(ehci, ehci->periodic_dma, &ehci->regs->frame_list); 738083522d7SBenjamin Herrenschmidt ehci_writel(ehci, (u32)ehci->async->qh_dma, &ehci->regs->async_next); 73918807521SDavid Brownell 74018807521SDavid Brownell /* 74118807521SDavid Brownell * hcc_params controls whether ehci->regs->segment must (!!!) 74218807521SDavid Brownell * be used; it constrains QH/ITD/SITD and QTD locations. 74318807521SDavid Brownell * pci_pool consistent memory always uses segment zero. 74418807521SDavid Brownell * streaming mappings for I/O buffers, like pci_map_single(), 74518807521SDavid Brownell * can return segments above 4GB, if the device allows. 74618807521SDavid Brownell * 74718807521SDavid Brownell * NOTE: the dma mask is visible through dma_supported(), so 74818807521SDavid Brownell * drivers can pass this info along ... like NETIF_F_HIGHDMA, 74918807521SDavid Brownell * Scsi_Host.highmem_io, and so forth. It's readonly to all 75018807521SDavid Brownell * host side drivers though. 75118807521SDavid Brownell */ 752083522d7SBenjamin Herrenschmidt hcc_params = ehci_readl(ehci, &ehci->caps->hcc_params); 75318807521SDavid Brownell if (HCC_64BIT_ADDR(hcc_params)) { 754083522d7SBenjamin Herrenschmidt ehci_writel(ehci, 0, &ehci->regs->segment); 75518807521SDavid Brownell #if 0 75618807521SDavid Brownell // this is deeply broken on almost all architectures 7576a35528aSYang Hongyang if (!dma_set_mask(hcd->self.controller, DMA_BIT_MASK(64))) 75818807521SDavid Brownell ehci_info(ehci, "enabled 64bit DMA\n"); 75918807521SDavid Brownell #endif 76018807521SDavid Brownell } 76118807521SDavid Brownell 76218807521SDavid Brownell 7631da177e4SLinus Torvalds // Philips, Intel, and maybe others need CMD_RUN before the 7641da177e4SLinus Torvalds // root hub will detect new devices (why?); NEC doesn't 76518807521SDavid Brownell ehci->command &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET); 76618807521SDavid Brownell ehci->command |= CMD_RUN; 767083522d7SBenjamin Herrenschmidt ehci_writel(ehci, ehci->command, &ehci->regs->command); 76818807521SDavid Brownell dbg_cmd (ehci, "init", ehci->command); 7691da177e4SLinus Torvalds 7701da177e4SLinus Torvalds /* 7711da177e4SLinus Torvalds * Start, enabling full USB 2.0 functionality ... usb 1.1 devices 7721da177e4SLinus Torvalds * are explicitly handed to companion controller(s), so no TT is 7731da177e4SLinus Torvalds * involved with the root hub. (Except where one is integrated, 7741da177e4SLinus Torvalds * and there's no companion controller unless maybe for USB OTG.) 77532fe0198SAlan Stern * 77632fe0198SAlan Stern * Turning on the CF flag will transfer ownership of all ports 77732fe0198SAlan Stern * from the companions to the EHCI controller. If any of the 77832fe0198SAlan Stern * companions are in the middle of a port reset at the time, it 77932fe0198SAlan Stern * could cause trouble. Write-locking ehci_cf_port_reset_rwsem 7801cb52658SDavid Brownell * guarantees that no resets are in progress. After we set CF, 7811cb52658SDavid Brownell * a short delay lets the hardware catch up; new resets shouldn't 7821cb52658SDavid Brownell * be started before the port switching actions could complete. 7831da177e4SLinus Torvalds */ 78432fe0198SAlan Stern down_write(&ehci_cf_port_reset_rwsem); 785e8799906SAlan Stern ehci->rh_state = EHCI_RH_RUNNING; 786083522d7SBenjamin Herrenschmidt ehci_writel(ehci, FLAG_CF, &ehci->regs->configured_flag); 787083522d7SBenjamin Herrenschmidt ehci_readl(ehci, &ehci->regs->command); /* unblock posted writes */ 7881cb52658SDavid Brownell msleep(5); 78932fe0198SAlan Stern up_write(&ehci_cf_port_reset_rwsem); 790ee4ecb8aSOliver Neukum ehci->last_periodic_enable = ktime_get_real(); 7911da177e4SLinus Torvalds 792c430131aSJan Andersson temp = HC_VERSION(ehci, ehci_readl(ehci, &ehci->caps->hc_capbase)); 7931da177e4SLinus Torvalds ehci_info (ehci, 7942b70f073SAlan Stern "USB %x.%x started, EHCI %x.%02x%s\n", 7957ff71d6aSMatt Porter ((ehci->sbrn & 0xf0)>>4), (ehci->sbrn & 0x0f), 7962b70f073SAlan Stern temp >> 8, temp & 0xff, 79793f1a47cSDavid Brownell ignore_oc ? ", overcurrent ignored" : ""); 7981da177e4SLinus Torvalds 799083522d7SBenjamin Herrenschmidt ehci_writel(ehci, INTR_MASK, 800083522d7SBenjamin Herrenschmidt &ehci->regs->intr_enable); /* Turn On Interrupts */ 8011da177e4SLinus Torvalds 80218807521SDavid Brownell /* GRR this is run-once init(), being done every time the HC starts. 80318807521SDavid Brownell * So long as they're part of class devices, we can't do it init() 80418807521SDavid Brownell * since the class device isn't created that early. 80518807521SDavid Brownell */ 8061da177e4SLinus Torvalds create_debug_files(ehci); 8074c67045bSKirill Smelkov create_sysfs_files(ehci); 8081da177e4SLinus Torvalds 8091da177e4SLinus Torvalds return 0; 8101da177e4SLinus Torvalds } 8111da177e4SLinus Torvalds 8122093c6b4SMatthieu CASTET static int __maybe_unused ehci_setup (struct usb_hcd *hcd) 8132093c6b4SMatthieu CASTET { 8142093c6b4SMatthieu CASTET struct ehci_hcd *ehci = hcd_to_ehci(hcd); 8152093c6b4SMatthieu CASTET int retval; 8162093c6b4SMatthieu CASTET 8172093c6b4SMatthieu CASTET ehci->regs = (void __iomem *)ehci->caps + 8182093c6b4SMatthieu CASTET HC_LENGTH(ehci, ehci_readl(ehci, &ehci->caps->hc_capbase)); 8192093c6b4SMatthieu CASTET dbg_hcs_params(ehci, "reset"); 8202093c6b4SMatthieu CASTET dbg_hcc_params(ehci, "reset"); 8212093c6b4SMatthieu CASTET 8222093c6b4SMatthieu CASTET /* cache this readonly data; minimize chip reads */ 8232093c6b4SMatthieu CASTET ehci->hcs_params = ehci_readl(ehci, &ehci->caps->hcs_params); 8242093c6b4SMatthieu CASTET 8252093c6b4SMatthieu CASTET ehci->sbrn = HCD_USB2; 8262093c6b4SMatthieu CASTET 8272093c6b4SMatthieu CASTET retval = ehci_halt(ehci); 8282093c6b4SMatthieu CASTET if (retval) 8292093c6b4SMatthieu CASTET return retval; 8302093c6b4SMatthieu CASTET 8312093c6b4SMatthieu CASTET /* data structure init */ 8322093c6b4SMatthieu CASTET retval = ehci_init(hcd); 8332093c6b4SMatthieu CASTET if (retval) 8342093c6b4SMatthieu CASTET return retval; 8352093c6b4SMatthieu CASTET 8362093c6b4SMatthieu CASTET ehci_reset(ehci); 8372093c6b4SMatthieu CASTET 8382093c6b4SMatthieu CASTET return 0; 8392093c6b4SMatthieu CASTET } 8402093c6b4SMatthieu CASTET 8411da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/ 8421da177e4SLinus Torvalds 8437d12e780SDavid Howells static irqreturn_t ehci_irq (struct usb_hcd *hcd) 8441da177e4SLinus Torvalds { 8451da177e4SLinus Torvalds struct ehci_hcd *ehci = hcd_to_ehci (hcd); 84667b2e029SAlan Stern u32 status, masked_status, pcd_status = 0, cmd; 8471da177e4SLinus Torvalds int bh; 8481da177e4SLinus Torvalds 8491da177e4SLinus Torvalds spin_lock (&ehci->lock); 8501da177e4SLinus Torvalds 851083522d7SBenjamin Herrenschmidt status = ehci_readl(ehci, &ehci->regs->status); 8521da177e4SLinus Torvalds 8531da177e4SLinus Torvalds /* e.g. cardbus physical eject */ 8541da177e4SLinus Torvalds if (status == ~(u32) 0) { 8551da177e4SLinus Torvalds ehci_dbg (ehci, "device removed\n"); 8561da177e4SLinus Torvalds goto dead; 8571da177e4SLinus Torvalds } 8581da177e4SLinus Torvalds 85969fff59dSAlan Stern /* Shared IRQ? */ 86067b2e029SAlan Stern masked_status = status & INTR_MASK; 861e8799906SAlan Stern if (!masked_status || unlikely(ehci->rh_state == EHCI_RH_HALTED)) { 8621da177e4SLinus Torvalds spin_unlock(&ehci->lock); 8631da177e4SLinus Torvalds return IRQ_NONE; 8641da177e4SLinus Torvalds } 8651da177e4SLinus Torvalds 8661da177e4SLinus Torvalds /* clear (just) interrupts */ 86767b2e029SAlan Stern ehci_writel(ehci, masked_status, &ehci->regs->status); 868e82cc128SDavid Brownell cmd = ehci_readl(ehci, &ehci->regs->command); 8691da177e4SLinus Torvalds bh = 0; 8701da177e4SLinus Torvalds 8719776afc8SDavid Brownell #ifdef VERBOSE_DEBUG 8721da177e4SLinus Torvalds /* unrequested/ignored: Frame List Rollover */ 8731da177e4SLinus Torvalds dbg_status (ehci, "irq", status); 8741da177e4SLinus Torvalds #endif 8751da177e4SLinus Torvalds 8761da177e4SLinus Torvalds /* INT, ERR, and IAA interrupt rates can be throttled */ 8771da177e4SLinus Torvalds 8781da177e4SLinus Torvalds /* normal [4.15.1.2] or error [4.15.1.1] completion */ 8791da177e4SLinus Torvalds if (likely ((status & (STS_INT|STS_ERR)) != 0)) { 8801da177e4SLinus Torvalds if (likely ((status & STS_ERR) == 0)) 8811da177e4SLinus Torvalds COUNT (ehci->stats.normal); 8821da177e4SLinus Torvalds else 8831da177e4SLinus Torvalds COUNT (ehci->stats.error); 8841da177e4SLinus Torvalds bh = 1; 8851da177e4SLinus Torvalds } 8861da177e4SLinus Torvalds 8871da177e4SLinus Torvalds /* complete the unlinking of some qh [4.15.2.3] */ 8881da177e4SLinus Torvalds if (status & STS_IAA) { 889e82cc128SDavid Brownell /* guard against (alleged) silicon errata */ 890e82cc128SDavid Brownell if (cmd & CMD_IAAD) { 891e82cc128SDavid Brownell ehci_writel(ehci, cmd & ~CMD_IAAD, 892e82cc128SDavid Brownell &ehci->regs->command); 893e82cc128SDavid Brownell ehci_dbg(ehci, "IAA with IAAD still set?\n"); 894e82cc128SDavid Brownell } 895e82cc128SDavid Brownell if (ehci->reclaim) { 8961da177e4SLinus Torvalds COUNT(ehci->stats.reclaim); 89707d29b63SAlan Stern end_unlink_async(ehci); 898e82cc128SDavid Brownell } else 899e82cc128SDavid Brownell ehci_dbg(ehci, "IAA with nothing to reclaim?\n"); 9001da177e4SLinus Torvalds } 9011da177e4SLinus Torvalds 9021da177e4SLinus Torvalds /* remote wakeup [4.3.1] */ 903d97cc2f2SDavid Brownell if (status & STS_PCD) { 9041da177e4SLinus Torvalds unsigned i = HCS_N_PORTS (ehci->hcs_params); 9055a9cdf33SAlek Du u32 ppcd = 0; 906d1b1842cSDavid Brownell 907d1b1842cSDavid Brownell /* kick root hub later */ 9081d619f12SMarcelo Tosatti pcd_status = status; 9091da177e4SLinus Torvalds 9101da177e4SLinus Torvalds /* resume root hub? */ 911eafe5b99SAlan Stern if (!(cmd & CMD_RUN)) 9128c03356aSAlan Stern usb_hcd_resume_root_hub(hcd); 9131da177e4SLinus Torvalds 9145a9cdf33SAlek Du /* get per-port change detect bits */ 9155a9cdf33SAlek Du if (ehci->has_ppcd) 9165a9cdf33SAlek Du ppcd = status >> 16; 9175a9cdf33SAlek Du 9181da177e4SLinus Torvalds while (i--) { 9195a9cdf33SAlek Du int pstatus; 9205a9cdf33SAlek Du 9215a9cdf33SAlek Du /* leverage per-port change bits feature */ 9225a9cdf33SAlek Du if (ehci->has_ppcd && !(ppcd & (1 << i))) 9235a9cdf33SAlek Du continue; 9245a9cdf33SAlek Du pstatus = ehci_readl(ehci, 925083522d7SBenjamin Herrenschmidt &ehci->regs->port_status[i]); 926b972b68cSDavid Brownell 927b972b68cSDavid Brownell if (pstatus & PORT_OWNER) 9281da177e4SLinus Torvalds continue; 929eafe5b99SAlan Stern if (!(test_bit(i, &ehci->suspended_ports) && 930eafe5b99SAlan Stern ((pstatus & PORT_RESUME) || 931eafe5b99SAlan Stern !(pstatus & PORT_SUSPEND)) && 932eafe5b99SAlan Stern (pstatus & PORT_PE) && 933eafe5b99SAlan Stern ehci->reset_done[i] == 0)) 9341da177e4SLinus Torvalds continue; 9351da177e4SLinus Torvalds 9361da177e4SLinus Torvalds /* start 20 msec resume signaling from this port, 9371da177e4SLinus Torvalds * and make khubd collect PORT_STAT_C_SUSPEND to 93849d0f078SAlan Stern * stop that signaling. Use 5 ms extra for safety, 93949d0f078SAlan Stern * like usb_port_resume() does. 9401da177e4SLinus Torvalds */ 94149d0f078SAlan Stern ehci->reset_done[i] = jiffies + msecs_to_jiffies(25); 9421da177e4SLinus Torvalds ehci_dbg (ehci, "port %d remote wakeup\n", i + 1); 94361e8b858SAlan Stern mod_timer(&hcd->rh_timer, ehci->reset_done[i]); 9441da177e4SLinus Torvalds } 9451da177e4SLinus Torvalds } 9461da177e4SLinus Torvalds 9471da177e4SLinus Torvalds /* PCI errors [4.15.2.4] */ 9481da177e4SLinus Torvalds if (unlikely ((status & STS_FATAL) != 0)) { 94967b2e029SAlan Stern ehci_err(ehci, "fatal error\n"); 950eafe5b99SAlan Stern dbg_cmd(ehci, "fatal", cmd); 9511da177e4SLinus Torvalds dbg_status(ehci, "fatal", status); 95267b2e029SAlan Stern ehci_halt(ehci); 9531da177e4SLinus Torvalds dead: 9541da177e4SLinus Torvalds ehci_reset(ehci); 955083522d7SBenjamin Herrenschmidt ehci_writel(ehci, 0, &ehci->regs->configured_flag); 95669fff59dSAlan Stern usb_hc_died(hcd); 9571da177e4SLinus Torvalds /* generic layer kills/unlinks all urbs, then 9581da177e4SLinus Torvalds * uses ehci_stop to clean up the rest 9591da177e4SLinus Torvalds */ 9601da177e4SLinus Torvalds bh = 1; 9611da177e4SLinus Torvalds } 9621da177e4SLinus Torvalds 9631da177e4SLinus Torvalds if (bh) 9647d12e780SDavid Howells ehci_work (ehci); 9651da177e4SLinus Torvalds spin_unlock (&ehci->lock); 966d1b1842cSDavid Brownell if (pcd_status) 9671d619f12SMarcelo Tosatti usb_hcd_poll_rh_status(hcd); 9681da177e4SLinus Torvalds return IRQ_HANDLED; 9691da177e4SLinus Torvalds } 9701da177e4SLinus Torvalds 9711da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/ 9721da177e4SLinus Torvalds 9731da177e4SLinus Torvalds /* 9741da177e4SLinus Torvalds * non-error returns are a promise to giveback() the urb later 9751da177e4SLinus Torvalds * we drop ownership so next owner (or urb unlink) can get it 9761da177e4SLinus Torvalds * 9771da177e4SLinus Torvalds * urb + dev is in hcd.self.controller.urb_list 9781da177e4SLinus Torvalds * we're queueing TDs onto software and hardware lists 9791da177e4SLinus Torvalds * 9801da177e4SLinus Torvalds * hcd-specific init for hcpriv hasn't been done yet 9811da177e4SLinus Torvalds * 9821da177e4SLinus Torvalds * NOTE: control, bulk, and interrupt share the same code to append TDs 9831da177e4SLinus Torvalds * to a (possibly active) QH, and the same QH scanning code. 9841da177e4SLinus Torvalds */ 9851da177e4SLinus Torvalds static int ehci_urb_enqueue ( 9861da177e4SLinus Torvalds struct usb_hcd *hcd, 9871da177e4SLinus Torvalds struct urb *urb, 98855016f10SAl Viro gfp_t mem_flags 9891da177e4SLinus Torvalds ) { 9901da177e4SLinus Torvalds struct ehci_hcd *ehci = hcd_to_ehci (hcd); 9911da177e4SLinus Torvalds struct list_head qtd_list; 9921da177e4SLinus Torvalds 9931da177e4SLinus Torvalds INIT_LIST_HEAD (&qtd_list); 9941da177e4SLinus Torvalds 9951da177e4SLinus Torvalds switch (usb_pipetype (urb->pipe)) { 99625b70a86SDavid Brownell case PIPE_CONTROL: 99725b70a86SDavid Brownell /* qh_completions() code doesn't handle all the fault cases 99825b70a86SDavid Brownell * in multi-TD control transfers. Even 1KB is rare anyway. 99925b70a86SDavid Brownell */ 100025b70a86SDavid Brownell if (urb->transfer_buffer_length > (16 * 1024)) 100125b70a86SDavid Brownell return -EMSGSIZE; 100225b70a86SDavid Brownell /* FALLTHROUGH */ 100325b70a86SDavid Brownell /* case PIPE_BULK: */ 10041da177e4SLinus Torvalds default: 10051da177e4SLinus Torvalds if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags)) 10061da177e4SLinus Torvalds return -ENOMEM; 1007e9df41c5SAlan Stern return submit_async(ehci, urb, &qtd_list, mem_flags); 10081da177e4SLinus Torvalds 10091da177e4SLinus Torvalds case PIPE_INTERRUPT: 10101da177e4SLinus Torvalds if (!qh_urb_transaction (ehci, urb, &qtd_list, mem_flags)) 10111da177e4SLinus Torvalds return -ENOMEM; 1012e9df41c5SAlan Stern return intr_submit(ehci, urb, &qtd_list, mem_flags); 10131da177e4SLinus Torvalds 10141da177e4SLinus Torvalds case PIPE_ISOCHRONOUS: 10151da177e4SLinus Torvalds if (urb->dev->speed == USB_SPEED_HIGH) 10161da177e4SLinus Torvalds return itd_submit (ehci, urb, mem_flags); 10171da177e4SLinus Torvalds else 10181da177e4SLinus Torvalds return sitd_submit (ehci, urb, mem_flags); 10191da177e4SLinus Torvalds } 10201da177e4SLinus Torvalds } 10211da177e4SLinus Torvalds 10221da177e4SLinus Torvalds static void unlink_async (struct ehci_hcd *ehci, struct ehci_qh *qh) 10231da177e4SLinus Torvalds { 102407d29b63SAlan Stern /* failfast */ 1025e8799906SAlan Stern if (ehci->rh_state != EHCI_RH_RUNNING && ehci->reclaim) 102607d29b63SAlan Stern end_unlink_async(ehci); 102707d29b63SAlan Stern 10283a44494eSAlan Stern /* If the QH isn't linked then there's nothing we can do 10293a44494eSAlan Stern * unless we were called during a giveback, in which case 10303a44494eSAlan Stern * qh_completions() has to deal with it. 10313a44494eSAlan Stern */ 10323a44494eSAlan Stern if (qh->qh_state != QH_STATE_LINKED) { 10333a44494eSAlan Stern if (qh->qh_state == QH_STATE_COMPLETING) 10343a44494eSAlan Stern qh->needs_rescan = 1; 10353a44494eSAlan Stern return; 10363a44494eSAlan Stern } 103707d29b63SAlan Stern 103807d29b63SAlan Stern /* defer till later if busy */ 10393a44494eSAlan Stern if (ehci->reclaim) { 10401da177e4SLinus Torvalds struct ehci_qh *last; 10411da177e4SLinus Torvalds 10421da177e4SLinus Torvalds for (last = ehci->reclaim; 10431da177e4SLinus Torvalds last->reclaim; 10441da177e4SLinus Torvalds last = last->reclaim) 10451da177e4SLinus Torvalds continue; 10461da177e4SLinus Torvalds qh->qh_state = QH_STATE_UNLINK_WAIT; 10471da177e4SLinus Torvalds last->reclaim = qh; 10481da177e4SLinus Torvalds 104907d29b63SAlan Stern /* start IAA cycle */ 105007d29b63SAlan Stern } else 10511da177e4SLinus Torvalds start_unlink_async (ehci, qh); 10521da177e4SLinus Torvalds } 10531da177e4SLinus Torvalds 10541da177e4SLinus Torvalds /* remove from hardware lists 10551da177e4SLinus Torvalds * completions normally happen asynchronously 10561da177e4SLinus Torvalds */ 10571da177e4SLinus Torvalds 1058e9df41c5SAlan Stern static int ehci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status) 10591da177e4SLinus Torvalds { 10601da177e4SLinus Torvalds struct ehci_hcd *ehci = hcd_to_ehci (hcd); 10611da177e4SLinus Torvalds struct ehci_qh *qh; 10621da177e4SLinus Torvalds unsigned long flags; 1063e9df41c5SAlan Stern int rc; 10641da177e4SLinus Torvalds 10651da177e4SLinus Torvalds spin_lock_irqsave (&ehci->lock, flags); 1066e9df41c5SAlan Stern rc = usb_hcd_check_unlink_urb(hcd, urb, status); 1067e9df41c5SAlan Stern if (rc) 1068e9df41c5SAlan Stern goto done; 1069e9df41c5SAlan Stern 10701da177e4SLinus Torvalds switch (usb_pipetype (urb->pipe)) { 10711da177e4SLinus Torvalds // case PIPE_CONTROL: 10721da177e4SLinus Torvalds // case PIPE_BULK: 10731da177e4SLinus Torvalds default: 10741da177e4SLinus Torvalds qh = (struct ehci_qh *) urb->hcpriv; 10751da177e4SLinus Torvalds if (!qh) 10761da177e4SLinus Torvalds break; 107707d29b63SAlan Stern switch (qh->qh_state) { 107807d29b63SAlan Stern case QH_STATE_LINKED: 107907d29b63SAlan Stern case QH_STATE_COMPLETING: 10801da177e4SLinus Torvalds unlink_async(ehci, qh); 10811da177e4SLinus Torvalds break; 108207d29b63SAlan Stern case QH_STATE_UNLINK: 108307d29b63SAlan Stern case QH_STATE_UNLINK_WAIT: 108407d29b63SAlan Stern /* already started */ 108507d29b63SAlan Stern break; 108607d29b63SAlan Stern case QH_STATE_IDLE: 10877a0f0d95SAlan Stern /* QH might be waiting for a Clear-TT-Buffer */ 10887a0f0d95SAlan Stern qh_completions(ehci, qh); 108907d29b63SAlan Stern break; 109007d29b63SAlan Stern } 109107d29b63SAlan Stern break; 10921da177e4SLinus Torvalds 10931da177e4SLinus Torvalds case PIPE_INTERRUPT: 10941da177e4SLinus Torvalds qh = (struct ehci_qh *) urb->hcpriv; 10951da177e4SLinus Torvalds if (!qh) 10961da177e4SLinus Torvalds break; 10971da177e4SLinus Torvalds switch (qh->qh_state) { 10981da177e4SLinus Torvalds case QH_STATE_LINKED: 1099a448c9d8SAlan Stern case QH_STATE_COMPLETING: 11001da177e4SLinus Torvalds intr_deschedule (ehci, qh); 1101a448c9d8SAlan Stern break; 11021da177e4SLinus Torvalds case QH_STATE_IDLE: 11037d12e780SDavid Howells qh_completions (ehci, qh); 11041da177e4SLinus Torvalds break; 11051da177e4SLinus Torvalds default: 11061da177e4SLinus Torvalds ehci_dbg (ehci, "bogus qh %p state %d\n", 11071da177e4SLinus Torvalds qh, qh->qh_state); 11081da177e4SLinus Torvalds goto done; 11091da177e4SLinus Torvalds } 11101da177e4SLinus Torvalds break; 11111da177e4SLinus Torvalds 11121da177e4SLinus Torvalds case PIPE_ISOCHRONOUS: 11131da177e4SLinus Torvalds // itd or sitd ... 11141da177e4SLinus Torvalds 11151da177e4SLinus Torvalds // wait till next completion, do it then. 11161da177e4SLinus Torvalds // completion irqs can wait up to 1024 msec, 11171da177e4SLinus Torvalds break; 11181da177e4SLinus Torvalds } 11191da177e4SLinus Torvalds done: 11201da177e4SLinus Torvalds spin_unlock_irqrestore (&ehci->lock, flags); 1121e9df41c5SAlan Stern return rc; 11221da177e4SLinus Torvalds } 11231da177e4SLinus Torvalds 11241da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/ 11251da177e4SLinus Torvalds 11261da177e4SLinus Torvalds // bulk qh holds the data toggle 11271da177e4SLinus Torvalds 11281da177e4SLinus Torvalds static void 11291da177e4SLinus Torvalds ehci_endpoint_disable (struct usb_hcd *hcd, struct usb_host_endpoint *ep) 11301da177e4SLinus Torvalds { 11311da177e4SLinus Torvalds struct ehci_hcd *ehci = hcd_to_ehci (hcd); 11321da177e4SLinus Torvalds unsigned long flags; 11331da177e4SLinus Torvalds struct ehci_qh *qh, *tmp; 11341da177e4SLinus Torvalds 11351da177e4SLinus Torvalds /* ASSERT: any requests/urbs are being unlinked */ 11361da177e4SLinus Torvalds /* ASSERT: nobody can be submitting urbs for this any more */ 11371da177e4SLinus Torvalds 11381da177e4SLinus Torvalds rescan: 11391da177e4SLinus Torvalds spin_lock_irqsave (&ehci->lock, flags); 11401da177e4SLinus Torvalds qh = ep->hcpriv; 11411da177e4SLinus Torvalds if (!qh) 11421da177e4SLinus Torvalds goto done; 11431da177e4SLinus Torvalds 11441da177e4SLinus Torvalds /* endpoints can be iso streams. for now, we don't 11451da177e4SLinus Torvalds * accelerate iso completions ... so spin a while. 11461da177e4SLinus Torvalds */ 11471082f57aSClemens Ladisch if (qh->hw == NULL) { 11481da177e4SLinus Torvalds ehci_vdbg (ehci, "iso delay\n"); 11491da177e4SLinus Torvalds goto idle_timeout; 11501da177e4SLinus Torvalds } 11511da177e4SLinus Torvalds 1152e8799906SAlan Stern if (ehci->rh_state != EHCI_RH_RUNNING) 11531da177e4SLinus Torvalds qh->qh_state = QH_STATE_IDLE; 11541da177e4SLinus Torvalds switch (qh->qh_state) { 11551da177e4SLinus Torvalds case QH_STATE_LINKED: 11563a44494eSAlan Stern case QH_STATE_COMPLETING: 11571da177e4SLinus Torvalds for (tmp = ehci->async->qh_next.qh; 11581da177e4SLinus Torvalds tmp && tmp != qh; 11591da177e4SLinus Torvalds tmp = tmp->qh_next.qh) 11601da177e4SLinus Torvalds continue; 116102e2c51bSAlan Stern /* periodic qh self-unlinks on empty, and a COMPLETING qh 116202e2c51bSAlan Stern * may already be unlinked. 116302e2c51bSAlan Stern */ 116402e2c51bSAlan Stern if (tmp) 11651da177e4SLinus Torvalds unlink_async(ehci, qh); 11661da177e4SLinus Torvalds /* FALL THROUGH */ 11671da177e4SLinus Torvalds case QH_STATE_UNLINK: /* wait for hw to finish? */ 116807d29b63SAlan Stern case QH_STATE_UNLINK_WAIT: 11691da177e4SLinus Torvalds idle_timeout: 11701da177e4SLinus Torvalds spin_unlock_irqrestore (&ehci->lock, flags); 117122c43863SNishanth Aravamudan schedule_timeout_uninterruptible(1); 11721da177e4SLinus Torvalds goto rescan; 11731da177e4SLinus Torvalds case QH_STATE_IDLE: /* fully unlinked */ 1174914b7012SAlan Stern if (qh->clearing_tt) 1175914b7012SAlan Stern goto idle_timeout; 11761da177e4SLinus Torvalds if (list_empty (&qh->qtd_list)) { 11771da177e4SLinus Torvalds qh_put (qh); 11781da177e4SLinus Torvalds break; 11791da177e4SLinus Torvalds } 11801da177e4SLinus Torvalds /* else FALL THROUGH */ 11811da177e4SLinus Torvalds default: 11821da177e4SLinus Torvalds /* caller was supposed to have unlinked any requests; 11831da177e4SLinus Torvalds * that's not our job. just leak this memory. 11841da177e4SLinus Torvalds */ 11851da177e4SLinus Torvalds ehci_err (ehci, "qh %p (#%02x) state %d%s\n", 11861da177e4SLinus Torvalds qh, ep->desc.bEndpointAddress, qh->qh_state, 11871da177e4SLinus Torvalds list_empty (&qh->qtd_list) ? "" : "(has tds)"); 11881da177e4SLinus Torvalds break; 11891da177e4SLinus Torvalds } 11901da177e4SLinus Torvalds ep->hcpriv = NULL; 11911da177e4SLinus Torvalds done: 11921da177e4SLinus Torvalds spin_unlock_irqrestore (&ehci->lock, flags); 11931da177e4SLinus Torvalds } 11941da177e4SLinus Torvalds 1195b18ffd49SAlan Stern static void 1196b18ffd49SAlan Stern ehci_endpoint_reset(struct usb_hcd *hcd, struct usb_host_endpoint *ep) 1197b18ffd49SAlan Stern { 1198b18ffd49SAlan Stern struct ehci_hcd *ehci = hcd_to_ehci(hcd); 1199b18ffd49SAlan Stern struct ehci_qh *qh; 1200b18ffd49SAlan Stern int eptype = usb_endpoint_type(&ep->desc); 1201a455212dSAlan Stern int epnum = usb_endpoint_num(&ep->desc); 1202a455212dSAlan Stern int is_out = usb_endpoint_dir_out(&ep->desc); 1203a455212dSAlan Stern unsigned long flags; 1204b18ffd49SAlan Stern 1205b18ffd49SAlan Stern if (eptype != USB_ENDPOINT_XFER_BULK && eptype != USB_ENDPOINT_XFER_INT) 1206b18ffd49SAlan Stern return; 1207b18ffd49SAlan Stern 1208a455212dSAlan Stern spin_lock_irqsave(&ehci->lock, flags); 1209b18ffd49SAlan Stern qh = ep->hcpriv; 1210b18ffd49SAlan Stern 1211b18ffd49SAlan Stern /* For Bulk and Interrupt endpoints we maintain the toggle state 1212b18ffd49SAlan Stern * in the hardware; the toggle bits in udev aren't used at all. 1213b18ffd49SAlan Stern * When an endpoint is reset by usb_clear_halt() we must reset 1214b18ffd49SAlan Stern * the toggle bit in the QH. 1215b18ffd49SAlan Stern */ 1216b18ffd49SAlan Stern if (qh) { 1217a455212dSAlan Stern usb_settoggle(qh->dev, epnum, is_out, 0); 1218b18ffd49SAlan Stern if (!list_empty(&qh->qtd_list)) { 1219b18ffd49SAlan Stern WARN_ONCE(1, "clear_halt for a busy endpoint\n"); 12203a44494eSAlan Stern } else if (qh->qh_state == QH_STATE_LINKED || 12213a44494eSAlan Stern qh->qh_state == QH_STATE_COMPLETING) { 1222a455212dSAlan Stern 1223a455212dSAlan Stern /* The toggle value in the QH can't be updated 1224a455212dSAlan Stern * while the QH is active. Unlink it now; 1225a455212dSAlan Stern * re-linking will call qh_refresh(). 1226b18ffd49SAlan Stern */ 1227a448c9d8SAlan Stern if (eptype == USB_ENDPOINT_XFER_BULK) 1228b18ffd49SAlan Stern unlink_async(ehci, qh); 1229a448c9d8SAlan Stern else 1230b18ffd49SAlan Stern intr_deschedule(ehci, qh); 1231b18ffd49SAlan Stern } 1232b18ffd49SAlan Stern } 1233a455212dSAlan Stern spin_unlock_irqrestore(&ehci->lock, flags); 1234b18ffd49SAlan Stern } 1235b18ffd49SAlan Stern 12367ff71d6aSMatt Porter static int ehci_get_frame (struct usb_hcd *hcd) 12377ff71d6aSMatt Porter { 12387ff71d6aSMatt Porter struct ehci_hcd *ehci = hcd_to_ehci (hcd); 123968aa95d5SAlan Stern return (ehci_read_frame_index(ehci) >> 3) % ehci->periodic_size; 12407ff71d6aSMatt Porter } 12411da177e4SLinus Torvalds 12421da177e4SLinus Torvalds /*-------------------------------------------------------------------------*/ 12431da177e4SLinus Torvalds 12442b70f073SAlan Stern MODULE_DESCRIPTION(DRIVER_DESC); 12451da177e4SLinus Torvalds MODULE_AUTHOR (DRIVER_AUTHOR); 12461da177e4SLinus Torvalds MODULE_LICENSE ("GPL"); 12471da177e4SLinus Torvalds 12487ff71d6aSMatt Porter #ifdef CONFIG_PCI 12497ff71d6aSMatt Porter #include "ehci-pci.c" 125001cced25SKumar Gala #define PCI_DRIVER ehci_pci_driver 12517ff71d6aSMatt Porter #endif 12521da177e4SLinus Torvalds 1253ba02978aSLi Yang #ifdef CONFIG_USB_EHCI_FSL 125480cb9aeeSRandy Vinson #include "ehci-fsl.c" 125501cced25SKumar Gala #define PLATFORM_DRIVER ehci_fsl_driver 125680cb9aeeSRandy Vinson #endif 125780cb9aeeSRandy Vinson 12587e8d5cd9SDaniel Mack #ifdef CONFIG_USB_EHCI_MXC 12597e8d5cd9SDaniel Mack #include "ehci-mxc.c" 12607e8d5cd9SDaniel Mack #define PLATFORM_DRIVER ehci_mxc_driver 12617e8d5cd9SDaniel Mack #endif 12627e8d5cd9SDaniel Mack 126360b0bf0fSYoshihiro Shimoda #ifdef CONFIG_USB_EHCI_SH 126463c84552SPaul Mundt #include "ehci-sh.c" 126563c84552SPaul Mundt #define PLATFORM_DRIVER ehci_hcd_sh_driver 126663c84552SPaul Mundt #endif 126763c84552SPaul Mundt 126837663860SManuel Lauss #ifdef CONFIG_MIPS_ALCHEMY 126976fa9a24SJordan Crouse #include "ehci-au1xxx.c" 127001cced25SKumar Gala #define PLATFORM_DRIVER ehci_hcd_au1xxx_driver 127176fa9a24SJordan Crouse #endif 127276fa9a24SJordan Crouse 12737f124f4bSKeshava Munegowda #ifdef CONFIG_USB_EHCI_HCD_OMAP 127454ab2b02SFelipe Balbi #include "ehci-omap.c" 127554ab2b02SFelipe Balbi #define PLATFORM_DRIVER ehci_hcd_omap_driver 127654ab2b02SFelipe Balbi #endif 127754ab2b02SFelipe Balbi 1278ad75a410SGeoff Levand #ifdef CONFIG_PPC_PS3 1279ad75a410SGeoff Levand #include "ehci-ps3.c" 12807a4eb7fdSGeoff Levand #define PS3_SYSTEM_BUS_DRIVER ps3_ehci_driver 1281ad75a410SGeoff Levand #endif 1282ad75a410SGeoff Levand 1283da0e8fb0SValentine Barshak #ifdef CONFIG_USB_EHCI_HCD_PPC_OF 1284da0e8fb0SValentine Barshak #include "ehci-ppc-of.c" 1285da0e8fb0SValentine Barshak #define OF_PLATFORM_DRIVER ehci_hcd_ppc_of_driver 1286da0e8fb0SValentine Barshak #endif 1287da0e8fb0SValentine Barshak 128808d3c18eSJulie Zhu #ifdef CONFIG_XPS_USB_HCD_XILINX 128908d3c18eSJulie Zhu #include "ehci-xilinx-of.c" 12901f23b2d9SGrant Likely #define XILINX_OF_PLATFORM_DRIVER ehci_hcd_xilinx_of_driver 129108d3c18eSJulie Zhu #endif 129208d3c18eSJulie Zhu 1293705a7521SLennert Buytenhek #ifdef CONFIG_PLAT_ORION 1294e96ffe2fSTzachi Perelstein #include "ehci-orion.c" 1295e96ffe2fSTzachi Perelstein #define PLATFORM_DRIVER ehci_orion_driver 1296e96ffe2fSTzachi Perelstein #endif 1297e96ffe2fSTzachi Perelstein 129891bc4d31SVladimir Barinov #ifdef CONFIG_ARCH_IXP4XX 129991bc4d31SVladimir Barinov #include "ehci-ixp4xx.c" 130091bc4d31SVladimir Barinov #define PLATFORM_DRIVER ixp4xx_ehci_driver 130191bc4d31SVladimir Barinov #endif 130291bc4d31SVladimir Barinov 1303586dfc8cSWan ZongShun #ifdef CONFIG_USB_W90X900_EHCI 1304586dfc8cSWan ZongShun #include "ehci-w90x900.c" 1305586dfc8cSWan ZongShun #define PLATFORM_DRIVER ehci_hcd_w90x900_driver 1306586dfc8cSWan ZongShun #endif 1307586dfc8cSWan ZongShun 1308501c9c08SNicolas Ferre #ifdef CONFIG_ARCH_AT91 1309501c9c08SNicolas Ferre #include "ehci-atmel.c" 1310501c9c08SNicolas Ferre #define PLATFORM_DRIVER ehci_atmel_driver 1311501c9c08SNicolas Ferre #endif 1312501c9c08SNicolas Ferre 13131643accdSDavid Daney #ifdef CONFIG_USB_OCTEON_EHCI 13141643accdSDavid Daney #include "ehci-octeon.c" 13151643accdSDavid Daney #define PLATFORM_DRIVER ehci_octeon_driver 13161643accdSDavid Daney #endif 13171643accdSDavid Daney 1318760efe69SMac Lin #ifdef CONFIG_USB_CNS3XXX_EHCI 1319760efe69SMac Lin #include "ehci-cns3xxx.c" 1320760efe69SMac Lin #define PLATFORM_DRIVER cns3xxx_ehci_driver 1321760efe69SMac Lin #endif 1322760efe69SMac Lin 1323ad78acafSAlexey Charkov #ifdef CONFIG_ARCH_VT8500 1324ad78acafSAlexey Charkov #include "ehci-vt8500.c" 1325ad78acafSAlexey Charkov #define PLATFORM_DRIVER vt8500_ehci_driver 1326ad78acafSAlexey Charkov #endif 1327ad78acafSAlexey Charkov 1328c8c38de9SDeepak Sikri #ifdef CONFIG_PLAT_SPEAR 1329c8c38de9SDeepak Sikri #include "ehci-spear.c" 1330c8c38de9SDeepak Sikri #define PLATFORM_DRIVER spear_ehci_hcd_driver 1331c8c38de9SDeepak Sikri #endif 1332c8c38de9SDeepak Sikri 1333b0848aeaSPavankumar Kondeti #ifdef CONFIG_USB_EHCI_MSM 1334b0848aeaSPavankumar Kondeti #include "ehci-msm.c" 1335b0848aeaSPavankumar Kondeti #define PLATFORM_DRIVER ehci_msm_driver 1336b0848aeaSPavankumar Kondeti #endif 1337b0848aeaSPavankumar Kondeti 133822ced687SAnoop #ifdef CONFIG_USB_EHCI_HCD_PMC_MSP 133922ced687SAnoop #include "ehci-pmcmsp.c" 134022ced687SAnoop #define PLATFORM_DRIVER ehci_hcd_msp_driver 134122ced687SAnoop #endif 134222ced687SAnoop 134379ad3b5aSBenoit Goby #ifdef CONFIG_USB_EHCI_TEGRA 134479ad3b5aSBenoit Goby #include "ehci-tegra.c" 134579ad3b5aSBenoit Goby #define PLATFORM_DRIVER tegra_ehci_driver 134679ad3b5aSBenoit Goby #endif 134779ad3b5aSBenoit Goby 13481bcc5aa8SJoonyoung Shim #ifdef CONFIG_USB_EHCI_S5P 13491bcc5aa8SJoonyoung Shim #include "ehci-s5p.c" 13501bcc5aa8SJoonyoung Shim #define PLATFORM_DRIVER s5p_ehci_driver 13511bcc5aa8SJoonyoung Shim #endif 13521bcc5aa8SJoonyoung Shim 1353502fa841SGabor Juhos #ifdef CONFIG_USB_EHCI_ATH79 1354502fa841SGabor Juhos #include "ehci-ath79.c" 1355502fa841SGabor Juhos #define PLATFORM_DRIVER ehci_ath79_driver 1356502fa841SGabor Juhos #endif 1357502fa841SGabor Juhos 13589be03929SJan Andersson #ifdef CONFIG_SPARC_LEON 13599be03929SJan Andersson #include "ehci-grlib.c" 13609be03929SJan Andersson #define PLATFORM_DRIVER ehci_grlib_driver 13619be03929SJan Andersson #endif 13629be03929SJan Andersson 13633abd7f68STanmay Upadhyay #ifdef CONFIG_USB_PXA168_EHCI 13643abd7f68STanmay Upadhyay #include "ehci-pxa168.c" 13653abd7f68STanmay Upadhyay #define PLATFORM_DRIVER ehci_pxa168_driver 13663abd7f68STanmay Upadhyay #endif 13673abd7f68STanmay Upadhyay 136823106343SJayachandran C #ifdef CONFIG_NLM_XLR 136923106343SJayachandran C #include "ehci-xls.c" 137023106343SJayachandran C #define PLATFORM_DRIVER ehci_xls_driver 137123106343SJayachandran C #endif 137223106343SJayachandran C 1373ad75a410SGeoff Levand #if !defined(PCI_DRIVER) && !defined(PLATFORM_DRIVER) && \ 13741f23b2d9SGrant Likely !defined(PS3_SYSTEM_BUS_DRIVER) && !defined(OF_PLATFORM_DRIVER) && \ 13751f23b2d9SGrant Likely !defined(XILINX_OF_PLATFORM_DRIVER) 13767ff71d6aSMatt Porter #error "missing bus glue for ehci-hcd" 13777ff71d6aSMatt Porter #endif 137801cced25SKumar Gala 137901cced25SKumar Gala static int __init ehci_hcd_init(void) 138001cced25SKumar Gala { 138101cced25SKumar Gala int retval = 0; 138201cced25SKumar Gala 13832b70f073SAlan Stern if (usb_disabled()) 13842b70f073SAlan Stern return -ENODEV; 13852b70f073SAlan Stern 13862b70f073SAlan Stern printk(KERN_INFO "%s: " DRIVER_DESC "\n", hcd_name); 13879beeee65SAlan Stern set_bit(USB_EHCI_LOADED, &usb_hcds_loaded); 13889beeee65SAlan Stern if (test_bit(USB_UHCI_LOADED, &usb_hcds_loaded) || 13899beeee65SAlan Stern test_bit(USB_OHCI_LOADED, &usb_hcds_loaded)) 13909beeee65SAlan Stern printk(KERN_WARNING "Warning! ehci_hcd should always be loaded" 13919beeee65SAlan Stern " before uhci_hcd and ohci_hcd, not after\n"); 13929beeee65SAlan Stern 139301cced25SKumar Gala pr_debug("%s: block sizes: qh %Zd qtd %Zd itd %Zd sitd %Zd\n", 139401cced25SKumar Gala hcd_name, 139501cced25SKumar Gala sizeof(struct ehci_qh), sizeof(struct ehci_qtd), 139601cced25SKumar Gala sizeof(struct ehci_itd), sizeof(struct ehci_sitd)); 139701cced25SKumar Gala 1398694cc208STony Jones #ifdef DEBUG 139908f4e586SGreg Kroah-Hartman ehci_debug_root = debugfs_create_dir("ehci", usb_debug_root); 14009beeee65SAlan Stern if (!ehci_debug_root) { 14019beeee65SAlan Stern retval = -ENOENT; 14029beeee65SAlan Stern goto err_debug; 14039beeee65SAlan Stern } 1404694cc208STony Jones #endif 1405694cc208STony Jones 140601cced25SKumar Gala #ifdef PLATFORM_DRIVER 140701cced25SKumar Gala retval = platform_driver_register(&PLATFORM_DRIVER); 1408da0e8fb0SValentine Barshak if (retval < 0) 1409da0e8fb0SValentine Barshak goto clean0; 141001cced25SKumar Gala #endif 141101cced25SKumar Gala 141201cced25SKumar Gala #ifdef PCI_DRIVER 141301cced25SKumar Gala retval = pci_register_driver(&PCI_DRIVER); 1414da0e8fb0SValentine Barshak if (retval < 0) 1415da0e8fb0SValentine Barshak goto clean1; 1416ad75a410SGeoff Levand #endif 1417ad75a410SGeoff Levand 1418ad75a410SGeoff Levand #ifdef PS3_SYSTEM_BUS_DRIVER 14197a4eb7fdSGeoff Levand retval = ps3_ehci_driver_register(&PS3_SYSTEM_BUS_DRIVER); 1420da0e8fb0SValentine Barshak if (retval < 0) 1421da0e8fb0SValentine Barshak goto clean2; 1422da0e8fb0SValentine Barshak #endif 1423da0e8fb0SValentine Barshak 1424da0e8fb0SValentine Barshak #ifdef OF_PLATFORM_DRIVER 1425d35fb641SGrant Likely retval = platform_driver_register(&OF_PLATFORM_DRIVER); 1426da0e8fb0SValentine Barshak if (retval < 0) 1427da0e8fb0SValentine Barshak goto clean3; 1428da0e8fb0SValentine Barshak #endif 14291f23b2d9SGrant Likely 14301f23b2d9SGrant Likely #ifdef XILINX_OF_PLATFORM_DRIVER 1431d35fb641SGrant Likely retval = platform_driver_register(&XILINX_OF_PLATFORM_DRIVER); 14321f23b2d9SGrant Likely if (retval < 0) 14331f23b2d9SGrant Likely goto clean4; 14341f23b2d9SGrant Likely #endif 1435da0e8fb0SValentine Barshak return retval; 1436da0e8fb0SValentine Barshak 14371f23b2d9SGrant Likely #ifdef XILINX_OF_PLATFORM_DRIVER 1438d35fb641SGrant Likely /* platform_driver_unregister(&XILINX_OF_PLATFORM_DRIVER); */ 14391f23b2d9SGrant Likely clean4: 14401f23b2d9SGrant Likely #endif 1441da0e8fb0SValentine Barshak #ifdef OF_PLATFORM_DRIVER 1442d35fb641SGrant Likely platform_driver_unregister(&OF_PLATFORM_DRIVER); 1443da0e8fb0SValentine Barshak clean3: 1444da0e8fb0SValentine Barshak #endif 1445da0e8fb0SValentine Barshak #ifdef PS3_SYSTEM_BUS_DRIVER 1446da0e8fb0SValentine Barshak ps3_ehci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER); 1447da0e8fb0SValentine Barshak clean2: 1448da0e8fb0SValentine Barshak #endif 1449da0e8fb0SValentine Barshak #ifdef PCI_DRIVER 1450da0e8fb0SValentine Barshak pci_unregister_driver(&PCI_DRIVER); 1451da0e8fb0SValentine Barshak clean1: 1452da0e8fb0SValentine Barshak #endif 1453da0e8fb0SValentine Barshak #ifdef PLATFORM_DRIVER 1454da0e8fb0SValentine Barshak platform_driver_unregister(&PLATFORM_DRIVER); 1455da0e8fb0SValentine Barshak clean0: 1456da0e8fb0SValentine Barshak #endif 1457694cc208STony Jones #ifdef DEBUG 1458694cc208STony Jones debugfs_remove(ehci_debug_root); 1459694cc208STony Jones ehci_debug_root = NULL; 14609beeee65SAlan Stern err_debug: 1461a9b6148dSLinus Torvalds #endif 14629beeee65SAlan Stern clear_bit(USB_EHCI_LOADED, &usb_hcds_loaded); 146301cced25SKumar Gala return retval; 146401cced25SKumar Gala } 146501cced25SKumar Gala module_init(ehci_hcd_init); 146601cced25SKumar Gala 146701cced25SKumar Gala static void __exit ehci_hcd_cleanup(void) 146801cced25SKumar Gala { 14691f23b2d9SGrant Likely #ifdef XILINX_OF_PLATFORM_DRIVER 1470d35fb641SGrant Likely platform_driver_unregister(&XILINX_OF_PLATFORM_DRIVER); 14711f23b2d9SGrant Likely #endif 1472da0e8fb0SValentine Barshak #ifdef OF_PLATFORM_DRIVER 1473d35fb641SGrant Likely platform_driver_unregister(&OF_PLATFORM_DRIVER); 1474da0e8fb0SValentine Barshak #endif 147501cced25SKumar Gala #ifdef PLATFORM_DRIVER 147601cced25SKumar Gala platform_driver_unregister(&PLATFORM_DRIVER); 147701cced25SKumar Gala #endif 147801cced25SKumar Gala #ifdef PCI_DRIVER 147901cced25SKumar Gala pci_unregister_driver(&PCI_DRIVER); 148001cced25SKumar Gala #endif 1481ad75a410SGeoff Levand #ifdef PS3_SYSTEM_BUS_DRIVER 14827a4eb7fdSGeoff Levand ps3_ehci_driver_unregister(&PS3_SYSTEM_BUS_DRIVER); 1483ad75a410SGeoff Levand #endif 1484694cc208STony Jones #ifdef DEBUG 1485694cc208STony Jones debugfs_remove(ehci_debug_root); 1486694cc208STony Jones #endif 14879beeee65SAlan Stern clear_bit(USB_EHCI_LOADED, &usb_hcds_loaded); 148801cced25SKumar Gala } 148901cced25SKumar Gala module_exit(ehci_hcd_cleanup); 149001cced25SKumar Gala 1491