Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * SL811HS HCD (Host Controller Driver) for USB. |
| 3 | * |
| 4 | * Copyright (C) 2004 Psion Teklogix (for NetBook PRO) |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 5 | * Copyright (C) 2004-2005 David Brownell |
| 6 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Periodic scheduling is based on Roman's OHCI code |
| 8 | * Copyright (C) 1999 Roman Weissgaerber |
| 9 | * |
| 10 | * The SL811HS controller handles host side USB (like the SL11H, but with |
| 11 | * another register set and SOF generation) as well as peripheral side USB |
| 12 | * (like the SL811S). This driver version doesn't implement the Gadget API |
| 13 | * for the peripheral role; or OTG (that'd need much external circuitry). |
| 14 | * |
| 15 | * For documentation, see the SL811HS spec and the "SL811HS Embedded Host" |
| 16 | * document (providing significant pieces missing from that spec); plus |
| 17 | * the SL811S spec if you want peripheral side info. |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 18 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
| 20 | /* |
| 21 | * Status: Passed basic stress testing, works with hubs, mice, keyboards, |
| 22 | * and usb-storage. |
| 23 | * |
| 24 | * TODO: |
Alan Stern | 98f541c | 2013-05-01 12:13:54 -0400 | [diff] [blame] | 25 | * - usb suspend/resume triggered by sl811 (with PM_RUNTIME) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | * - various issues noted in the code |
| 27 | * - performance work; use both register banks; ... |
| 28 | * - use urb->iso_frame_desc[] with ISO transfers |
| 29 | */ |
| 30 | |
| 31 | #undef VERBOSE |
| 32 | #undef PACKET_TRACE |
| 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <linux/module.h> |
| 35 | #include <linux/moduleparam.h> |
| 36 | #include <linux/kernel.h> |
| 37 | #include <linux/delay.h> |
| 38 | #include <linux/ioport.h> |
| 39 | #include <linux/sched.h> |
| 40 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <linux/errno.h> |
| 42 | #include <linux/init.h> |
| 43 | #include <linux/timer.h> |
| 44 | #include <linux/list.h> |
| 45 | #include <linux/interrupt.h> |
| 46 | #include <linux/usb.h> |
David Brownell | 325a4af | 2006-06-13 09:59:32 -0700 | [diff] [blame] | 47 | #include <linux/usb/sl811.h> |
Eric Lescouet | 27729aa | 2010-04-24 23:21:52 +0200 | [diff] [blame] | 48 | #include <linux/usb/hcd.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 49 | #include <linux/platform_device.h> |
Linus Torvalds | 268bb0c | 2011-05-20 12:50:29 -0700 | [diff] [blame] | 50 | #include <linux/prefetch.h> |
Greg Kroah-Hartman | 0511b36 | 2013-07-02 12:22:06 -0700 | [diff] [blame] | 51 | #include <linux/debugfs.h> |
| 52 | #include <linux/seq_file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
| 54 | #include <asm/io.h> |
| 55 | #include <asm/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #include <asm/byteorder.h> |
Michael Hennerich | 8ca5bfab | 2009-12-21 12:53:24 -0500 | [diff] [blame] | 57 | #include <asm/unaligned.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | #include "sl811.h" |
| 60 | |
| 61 | |
| 62 | MODULE_DESCRIPTION("SL811HS USB Host Controller Driver"); |
| 63 | MODULE_LICENSE("GPL"); |
Kay Sievers | f4fce61 | 2008-04-10 21:29:22 -0700 | [diff] [blame] | 64 | MODULE_ALIAS("platform:sl811-hcd"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 66 | #define DRIVER_VERSION "19 May 2005" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | /* for now, use only one transfer register bank */ |
| 69 | #undef USE_B |
| 70 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | // #define QUIRK2 |
| 72 | #define QUIRK3 |
| 73 | |
| 74 | static const char hcd_name[] = "sl811-hcd"; |
| 75 | |
| 76 | /*-------------------------------------------------------------------------*/ |
| 77 | |
| 78 | static void port_power(struct sl811 *sl811, int is_on) |
| 79 | { |
| 80 | struct usb_hcd *hcd = sl811_to_hcd(sl811); |
| 81 | |
| 82 | /* hub is inactive unless the port is powered */ |
| 83 | if (is_on) { |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 84 | if (sl811->port1 & USB_PORT_STAT_POWER) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | return; |
| 86 | |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 87 | sl811->port1 = USB_PORT_STAT_POWER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | sl811->irq_enable = SL11H_INTMASK_INSRMV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | } else { |
| 90 | sl811->port1 = 0; |
| 91 | sl811->irq_enable = 0; |
| 92 | hcd->state = HC_STATE_HALT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | } |
| 94 | sl811->ctrl1 = 0; |
| 95 | sl811_write(sl811, SL11H_IRQ_ENABLE, 0); |
| 96 | sl811_write(sl811, SL11H_IRQ_STATUS, ~0); |
| 97 | |
| 98 | if (sl811->board && sl811->board->port_power) { |
| 99 | /* switch VBUS, at 500mA unless hub power budget gets set */ |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 100 | dev_dbg(hcd->self.controller, "power %s\n", |
| 101 | is_on ? "on" : "off"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | sl811->board->port_power(hcd->self.controller, is_on); |
| 103 | } |
| 104 | |
| 105 | /* reset as thoroughly as we can */ |
| 106 | if (sl811->board && sl811->board->reset) |
| 107 | sl811->board->reset(hcd->self.controller); |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 108 | else { |
| 109 | sl811_write(sl811, SL11H_CTLREG1, SL11H_CTL1MASK_SE0); |
| 110 | mdelay(20); |
| 111 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | |
| 113 | sl811_write(sl811, SL11H_IRQ_ENABLE, 0); |
| 114 | sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1); |
| 115 | sl811_write(sl811, SL811HS_CTLREG2, SL811HS_CTL2_INIT); |
| 116 | sl811_write(sl811, SL11H_IRQ_ENABLE, sl811->irq_enable); |
| 117 | |
| 118 | // if !is_on, put into lowpower mode now |
| 119 | } |
| 120 | |
| 121 | /*-------------------------------------------------------------------------*/ |
| 122 | |
| 123 | /* This is a PIO-only HCD. Queueing appends URBs to the endpoint's queue, |
| 124 | * and may start I/O. Endpoint queues are scanned during completion irq |
Steven Cole | 093cf72 | 2005-05-03 19:07:24 -0600 | [diff] [blame] | 125 | * handlers (one per packet: ACK, NAK, faults, etc) and urb cancellation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | * |
| 127 | * Using an external DMA engine to copy a packet at a time could work, |
| 128 | * though setup/teardown costs may be too big to make it worthwhile. |
| 129 | */ |
| 130 | |
| 131 | /* SETUP starts a new control request. Devices are not allowed to |
| 132 | * STALL or NAK these; they must cancel any pending control requests. |
| 133 | */ |
| 134 | static void setup_packet( |
| 135 | struct sl811 *sl811, |
| 136 | struct sl811h_ep *ep, |
| 137 | struct urb *urb, |
| 138 | u8 bank, |
| 139 | u8 control |
| 140 | ) |
| 141 | { |
| 142 | u8 addr; |
| 143 | u8 len; |
| 144 | void __iomem *data_reg; |
| 145 | |
| 146 | addr = SL811HS_PACKET_BUF(bank == 0); |
| 147 | len = sizeof(struct usb_ctrlrequest); |
| 148 | data_reg = sl811->data_reg; |
| 149 | sl811_write_buf(sl811, addr, urb->setup_packet, len); |
| 150 | |
| 151 | /* autoincrementing */ |
| 152 | sl811_write(sl811, bank + SL11H_BUFADDRREG, addr); |
| 153 | writeb(len, data_reg); |
| 154 | writeb(SL_SETUP /* | ep->epnum */, data_reg); |
| 155 | writeb(usb_pipedevice(urb->pipe), data_reg); |
| 156 | |
Peter Senna Tschudin | 2edd968 | 2012-09-12 19:03:22 +0200 | [diff] [blame] | 157 | /* always OUT/data0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | sl811_write(sl811, bank + SL11H_HOSTCTLREG, |
| 159 | control | SL11H_HCTLMASK_OUT); |
| 160 | ep->length = 0; |
| 161 | PACKET("SETUP qh%p\n", ep); |
| 162 | } |
| 163 | |
| 164 | /* STATUS finishes control requests, often after IN or OUT data packets */ |
| 165 | static void status_packet( |
| 166 | struct sl811 *sl811, |
| 167 | struct sl811h_ep *ep, |
| 168 | struct urb *urb, |
| 169 | u8 bank, |
| 170 | u8 control |
| 171 | ) |
| 172 | { |
| 173 | int do_out; |
| 174 | void __iomem *data_reg; |
| 175 | |
| 176 | do_out = urb->transfer_buffer_length && usb_pipein(urb->pipe); |
| 177 | data_reg = sl811->data_reg; |
| 178 | |
| 179 | /* autoincrementing */ |
| 180 | sl811_write(sl811, bank + SL11H_BUFADDRREG, 0); |
| 181 | writeb(0, data_reg); |
| 182 | writeb((do_out ? SL_OUT : SL_IN) /* | ep->epnum */, data_reg); |
| 183 | writeb(usb_pipedevice(urb->pipe), data_reg); |
| 184 | |
| 185 | /* always data1; sometimes IN */ |
| 186 | control |= SL11H_HCTLMASK_TOGGLE; |
| 187 | if (do_out) |
| 188 | control |= SL11H_HCTLMASK_OUT; |
| 189 | sl811_write(sl811, bank + SL11H_HOSTCTLREG, control); |
| 190 | ep->length = 0; |
| 191 | PACKET("STATUS%s/%s qh%p\n", ep->nak_count ? "/retry" : "", |
| 192 | do_out ? "out" : "in", ep); |
| 193 | } |
| 194 | |
| 195 | /* IN packets can be used with any type of endpoint. here we just |
| 196 | * start the transfer, data from the peripheral may arrive later. |
| 197 | * urb->iso_frame_desc is currently ignored here... |
| 198 | */ |
| 199 | static void in_packet( |
| 200 | struct sl811 *sl811, |
| 201 | struct sl811h_ep *ep, |
| 202 | struct urb *urb, |
| 203 | u8 bank, |
| 204 | u8 control |
| 205 | ) |
| 206 | { |
| 207 | u8 addr; |
| 208 | u8 len; |
| 209 | void __iomem *data_reg; |
| 210 | |
| 211 | /* avoid losing data on overflow */ |
| 212 | len = ep->maxpacket; |
| 213 | addr = SL811HS_PACKET_BUF(bank == 0); |
| 214 | if (!(control & SL11H_HCTLMASK_ISOCH) |
| 215 | && usb_gettoggle(urb->dev, ep->epnum, 0)) |
| 216 | control |= SL11H_HCTLMASK_TOGGLE; |
| 217 | data_reg = sl811->data_reg; |
| 218 | |
| 219 | /* autoincrementing */ |
| 220 | sl811_write(sl811, bank + SL11H_BUFADDRREG, addr); |
| 221 | writeb(len, data_reg); |
| 222 | writeb(SL_IN | ep->epnum, data_reg); |
| 223 | writeb(usb_pipedevice(urb->pipe), data_reg); |
| 224 | |
| 225 | sl811_write(sl811, bank + SL11H_HOSTCTLREG, control); |
Greg Kroah-Hartman | 16e2e5f | 2009-03-03 16:44:13 -0800 | [diff] [blame] | 226 | ep->length = min_t(u32, len, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | urb->transfer_buffer_length - urb->actual_length); |
| 228 | PACKET("IN%s/%d qh%p len%d\n", ep->nak_count ? "/retry" : "", |
| 229 | !!usb_gettoggle(urb->dev, ep->epnum, 0), ep, len); |
| 230 | } |
| 231 | |
| 232 | /* OUT packets can be used with any type of endpoint. |
| 233 | * urb->iso_frame_desc is currently ignored here... |
| 234 | */ |
| 235 | static void out_packet( |
| 236 | struct sl811 *sl811, |
| 237 | struct sl811h_ep *ep, |
| 238 | struct urb *urb, |
| 239 | u8 bank, |
| 240 | u8 control |
| 241 | ) |
| 242 | { |
| 243 | void *buf; |
| 244 | u8 addr; |
| 245 | u8 len; |
| 246 | void __iomem *data_reg; |
| 247 | |
| 248 | buf = urb->transfer_buffer + urb->actual_length; |
| 249 | prefetch(buf); |
| 250 | |
Greg Kroah-Hartman | 16e2e5f | 2009-03-03 16:44:13 -0800 | [diff] [blame] | 251 | len = min_t(u32, ep->maxpacket, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | urb->transfer_buffer_length - urb->actual_length); |
| 253 | |
| 254 | if (!(control & SL11H_HCTLMASK_ISOCH) |
| 255 | && usb_gettoggle(urb->dev, ep->epnum, 1)) |
| 256 | control |= SL11H_HCTLMASK_TOGGLE; |
| 257 | addr = SL811HS_PACKET_BUF(bank == 0); |
| 258 | data_reg = sl811->data_reg; |
| 259 | |
| 260 | sl811_write_buf(sl811, addr, buf, len); |
| 261 | |
| 262 | /* autoincrementing */ |
| 263 | sl811_write(sl811, bank + SL11H_BUFADDRREG, addr); |
| 264 | writeb(len, data_reg); |
| 265 | writeb(SL_OUT | ep->epnum, data_reg); |
| 266 | writeb(usb_pipedevice(urb->pipe), data_reg); |
| 267 | |
| 268 | sl811_write(sl811, bank + SL11H_HOSTCTLREG, |
| 269 | control | SL11H_HCTLMASK_OUT); |
| 270 | ep->length = len; |
| 271 | PACKET("OUT%s/%d qh%p len%d\n", ep->nak_count ? "/retry" : "", |
| 272 | !!usb_gettoggle(urb->dev, ep->epnum, 1), ep, len); |
| 273 | } |
| 274 | |
| 275 | /*-------------------------------------------------------------------------*/ |
| 276 | |
| 277 | /* caller updates on-chip enables later */ |
| 278 | |
| 279 | static inline void sofirq_on(struct sl811 *sl811) |
| 280 | { |
| 281 | if (sl811->irq_enable & SL11H_INTMASK_SOFINTR) |
| 282 | return; |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 283 | dev_dbg(sl811_to_hcd(sl811)->self.controller, "sof irq on\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | sl811->irq_enable |= SL11H_INTMASK_SOFINTR; |
| 285 | } |
| 286 | |
| 287 | static inline void sofirq_off(struct sl811 *sl811) |
| 288 | { |
| 289 | if (!(sl811->irq_enable & SL11H_INTMASK_SOFINTR)) |
| 290 | return; |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 291 | dev_dbg(sl811_to_hcd(sl811)->self.controller, "sof irq off\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | sl811->irq_enable &= ~SL11H_INTMASK_SOFINTR; |
| 293 | } |
| 294 | |
| 295 | /*-------------------------------------------------------------------------*/ |
| 296 | |
| 297 | /* pick the next endpoint for a transaction, and issue it. |
| 298 | * frames start with periodic transfers (after whatever is pending |
| 299 | * from the previous frame), and the rest of the time is async |
| 300 | * transfers, scheduled round-robin. |
| 301 | */ |
| 302 | static struct sl811h_ep *start(struct sl811 *sl811, u8 bank) |
| 303 | { |
| 304 | struct sl811h_ep *ep; |
| 305 | struct urb *urb; |
| 306 | int fclock; |
| 307 | u8 control; |
| 308 | |
| 309 | /* use endpoint at schedule head */ |
| 310 | if (sl811->next_periodic) { |
| 311 | ep = sl811->next_periodic; |
| 312 | sl811->next_periodic = ep->next; |
| 313 | } else { |
| 314 | if (sl811->next_async) |
| 315 | ep = sl811->next_async; |
| 316 | else if (!list_empty(&sl811->async)) |
| 317 | ep = container_of(sl811->async.next, |
| 318 | struct sl811h_ep, schedule); |
| 319 | else { |
| 320 | /* could set up the first fullspeed periodic |
| 321 | * transfer for the next frame ... |
| 322 | */ |
| 323 | return NULL; |
| 324 | } |
| 325 | |
| 326 | #ifdef USE_B |
| 327 | if ((bank && sl811->active_b == ep) || sl811->active_a == ep) |
| 328 | return NULL; |
| 329 | #endif |
| 330 | |
| 331 | if (ep->schedule.next == &sl811->async) |
| 332 | sl811->next_async = NULL; |
| 333 | else |
| 334 | sl811->next_async = container_of(ep->schedule.next, |
| 335 | struct sl811h_ep, schedule); |
| 336 | } |
| 337 | |
| 338 | if (unlikely(list_empty(&ep->hep->urb_list))) { |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 339 | dev_dbg(sl811_to_hcd(sl811)->self.controller, |
| 340 | "empty %p queue?\n", ep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | return NULL; |
| 342 | } |
| 343 | |
| 344 | urb = container_of(ep->hep->urb_list.next, struct urb, urb_list); |
| 345 | control = ep->defctrl; |
| 346 | |
| 347 | /* if this frame doesn't have enough time left to transfer this |
| 348 | * packet, wait till the next frame. too-simple algorithm... |
| 349 | */ |
| 350 | fclock = sl811_read(sl811, SL11H_SOFTMRREG) << 6; |
| 351 | fclock -= 100; /* setup takes not much time */ |
| 352 | if (urb->dev->speed == USB_SPEED_LOW) { |
| 353 | if (control & SL11H_HCTLMASK_PREAMBLE) { |
| 354 | /* also note erratum 1: some hubs won't work */ |
| 355 | fclock -= 800; |
| 356 | } |
| 357 | fclock -= ep->maxpacket << 8; |
| 358 | |
| 359 | /* erratum 2: AFTERSOF only works for fullspeed */ |
| 360 | if (fclock < 0) { |
| 361 | if (ep->period) |
| 362 | sl811->stat_overrun++; |
| 363 | sofirq_on(sl811); |
| 364 | return NULL; |
| 365 | } |
| 366 | } else { |
| 367 | fclock -= 12000 / 19; /* 19 64byte packets/msec */ |
| 368 | if (fclock < 0) { |
| 369 | if (ep->period) |
| 370 | sl811->stat_overrun++; |
| 371 | control |= SL11H_HCTLMASK_AFTERSOF; |
| 372 | |
| 373 | /* throttle bulk/control irq noise */ |
| 374 | } else if (ep->nak_count) |
| 375 | control |= SL11H_HCTLMASK_AFTERSOF; |
| 376 | } |
| 377 | |
| 378 | |
| 379 | switch (ep->nextpid) { |
| 380 | case USB_PID_IN: |
| 381 | in_packet(sl811, ep, urb, bank, control); |
| 382 | break; |
| 383 | case USB_PID_OUT: |
| 384 | out_packet(sl811, ep, urb, bank, control); |
| 385 | break; |
| 386 | case USB_PID_SETUP: |
| 387 | setup_packet(sl811, ep, urb, bank, control); |
| 388 | break; |
| 389 | case USB_PID_ACK: /* for control status */ |
| 390 | status_packet(sl811, ep, urb, bank, control); |
| 391 | break; |
| 392 | default: |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 393 | dev_dbg(sl811_to_hcd(sl811)->self.controller, |
| 394 | "bad ep%p pid %02x\n", ep, ep->nextpid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | ep = NULL; |
| 396 | } |
| 397 | return ep; |
| 398 | } |
| 399 | |
| 400 | #define MIN_JIFFIES ((msecs_to_jiffies(2) > 1) ? msecs_to_jiffies(2) : 2) |
| 401 | |
| 402 | static inline void start_transfer(struct sl811 *sl811) |
| 403 | { |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 404 | if (sl811->port1 & USB_PORT_STAT_SUSPEND) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | return; |
| 406 | if (sl811->active_a == NULL) { |
| 407 | sl811->active_a = start(sl811, SL811_EP_A(SL811_HOST_BUF)); |
| 408 | if (sl811->active_a != NULL) |
| 409 | sl811->jiffies_a = jiffies + MIN_JIFFIES; |
| 410 | } |
| 411 | #ifdef USE_B |
| 412 | if (sl811->active_b == NULL) { |
| 413 | sl811->active_b = start(sl811, SL811_EP_B(SL811_HOST_BUF)); |
| 414 | if (sl811->active_b != NULL) |
| 415 | sl811->jiffies_b = jiffies + MIN_JIFFIES; |
| 416 | } |
| 417 | #endif |
| 418 | } |
| 419 | |
| 420 | static void finish_request( |
| 421 | struct sl811 *sl811, |
| 422 | struct sl811h_ep *ep, |
| 423 | struct urb *urb, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | int status |
| 425 | ) __releases(sl811->lock) __acquires(sl811->lock) |
| 426 | { |
| 427 | unsigned i; |
| 428 | |
| 429 | if (usb_pipecontrol(urb->pipe)) |
| 430 | ep->nextpid = USB_PID_SETUP; |
| 431 | |
Alan Stern | e9df41c | 2007-08-08 11:48:02 -0400 | [diff] [blame] | 432 | usb_hcd_unlink_urb_from_ep(sl811_to_hcd(sl811), urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | spin_unlock(&sl811->lock); |
Alan Stern | 4a00027 | 2007-08-24 15:42:24 -0400 | [diff] [blame] | 434 | usb_hcd_giveback_urb(sl811_to_hcd(sl811), urb, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | spin_lock(&sl811->lock); |
| 436 | |
| 437 | /* leave active endpoints in the schedule */ |
| 438 | if (!list_empty(&ep->hep->urb_list)) |
| 439 | return; |
| 440 | |
| 441 | /* async deschedule? */ |
| 442 | if (!list_empty(&ep->schedule)) { |
| 443 | list_del_init(&ep->schedule); |
| 444 | if (ep == sl811->next_async) |
| 445 | sl811->next_async = NULL; |
| 446 | return; |
| 447 | } |
| 448 | |
| 449 | /* periodic deschedule */ |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 450 | dev_dbg(sl811_to_hcd(sl811)->self.controller, |
| 451 | "deschedule qh%d/%p branch %d\n", ep->period, ep, ep->branch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | for (i = ep->branch; i < PERIODIC_SIZE; i += ep->period) { |
| 453 | struct sl811h_ep *temp; |
| 454 | struct sl811h_ep **prev = &sl811->periodic[i]; |
| 455 | |
| 456 | while (*prev && ((temp = *prev) != ep)) |
| 457 | prev = &temp->next; |
| 458 | if (*prev) |
| 459 | *prev = ep->next; |
| 460 | sl811->load[i] -= ep->load; |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 461 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | ep->branch = PERIODIC_SIZE; |
| 463 | sl811->periodic_count--; |
| 464 | sl811_to_hcd(sl811)->self.bandwidth_allocated |
| 465 | -= ep->load / ep->period; |
| 466 | if (ep == sl811->next_periodic) |
| 467 | sl811->next_periodic = ep->next; |
| 468 | |
| 469 | /* we might turn SOFs back on again for the async schedule */ |
| 470 | if (sl811->periodic_count == 0) |
| 471 | sofirq_off(sl811); |
| 472 | } |
| 473 | |
| 474 | static void |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 475 | done(struct sl811 *sl811, struct sl811h_ep *ep, u8 bank) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | { |
| 477 | u8 status; |
| 478 | struct urb *urb; |
| 479 | int urbstat = -EINPROGRESS; |
| 480 | |
| 481 | if (unlikely(!ep)) |
| 482 | return; |
| 483 | |
| 484 | status = sl811_read(sl811, bank + SL11H_PKTSTATREG); |
| 485 | |
| 486 | urb = container_of(ep->hep->urb_list.next, struct urb, urb_list); |
| 487 | |
| 488 | /* we can safely ignore NAKs */ |
| 489 | if (status & SL11H_STATMASK_NAK) { |
| 490 | // PACKET("...NAK_%02x qh%p\n", bank, ep); |
| 491 | if (!ep->period) |
| 492 | ep->nak_count++; |
| 493 | ep->error_count = 0; |
| 494 | |
| 495 | /* ACK advances transfer, toggle, and maybe queue */ |
| 496 | } else if (status & SL11H_STATMASK_ACK) { |
| 497 | struct usb_device *udev = urb->dev; |
| 498 | int len; |
| 499 | unsigned char *buf; |
| 500 | |
| 501 | /* urb->iso_frame_desc is currently ignored here... */ |
| 502 | |
| 503 | ep->nak_count = ep->error_count = 0; |
| 504 | switch (ep->nextpid) { |
| 505 | case USB_PID_OUT: |
| 506 | // PACKET("...ACK/out_%02x qh%p\n", bank, ep); |
| 507 | urb->actual_length += ep->length; |
| 508 | usb_dotoggle(udev, ep->epnum, 1); |
| 509 | if (urb->actual_length |
| 510 | == urb->transfer_buffer_length) { |
| 511 | if (usb_pipecontrol(urb->pipe)) |
| 512 | ep->nextpid = USB_PID_ACK; |
| 513 | |
| 514 | /* some bulk protocols terminate OUT transfers |
| 515 | * by a short packet, using ZLPs not padding. |
| 516 | */ |
| 517 | else if (ep->length < ep->maxpacket |
| 518 | || !(urb->transfer_flags |
| 519 | & URB_ZERO_PACKET)) |
| 520 | urbstat = 0; |
| 521 | } |
| 522 | break; |
| 523 | case USB_PID_IN: |
| 524 | // PACKET("...ACK/in_%02x qh%p\n", bank, ep); |
| 525 | buf = urb->transfer_buffer + urb->actual_length; |
| 526 | prefetchw(buf); |
| 527 | len = ep->maxpacket - sl811_read(sl811, |
| 528 | bank + SL11H_XFERCNTREG); |
| 529 | if (len > ep->length) { |
| 530 | len = ep->length; |
Alan Stern | 65e5109 | 2007-08-24 15:40:47 -0400 | [diff] [blame] | 531 | urbstat = -EOVERFLOW; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | } |
| 533 | urb->actual_length += len; |
| 534 | sl811_read_buf(sl811, SL811HS_PACKET_BUF(bank == 0), |
| 535 | buf, len); |
| 536 | usb_dotoggle(udev, ep->epnum, 0); |
Alan Stern | 65e5109 | 2007-08-24 15:40:47 -0400 | [diff] [blame] | 537 | if (urbstat == -EINPROGRESS && |
| 538 | (len < ep->maxpacket || |
| 539 | urb->actual_length == |
| 540 | urb->transfer_buffer_length)) { |
| 541 | if (usb_pipecontrol(urb->pipe)) |
| 542 | ep->nextpid = USB_PID_ACK; |
| 543 | else |
| 544 | urbstat = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | } |
| 546 | break; |
| 547 | case USB_PID_SETUP: |
| 548 | // PACKET("...ACK/setup_%02x qh%p\n", bank, ep); |
| 549 | if (urb->transfer_buffer_length == urb->actual_length) |
| 550 | ep->nextpid = USB_PID_ACK; |
| 551 | else if (usb_pipeout(urb->pipe)) { |
| 552 | usb_settoggle(udev, 0, 1, 1); |
| 553 | ep->nextpid = USB_PID_OUT; |
| 554 | } else { |
| 555 | usb_settoggle(udev, 0, 0, 1); |
| 556 | ep->nextpid = USB_PID_IN; |
| 557 | } |
| 558 | break; |
| 559 | case USB_PID_ACK: |
| 560 | // PACKET("...ACK/status_%02x qh%p\n", bank, ep); |
| 561 | urbstat = 0; |
| 562 | break; |
| 563 | } |
| 564 | |
| 565 | /* STALL stops all transfers */ |
| 566 | } else if (status & SL11H_STATMASK_STALL) { |
| 567 | PACKET("...STALL_%02x qh%p\n", bank, ep); |
| 568 | ep->nak_count = ep->error_count = 0; |
| 569 | urbstat = -EPIPE; |
| 570 | |
| 571 | /* error? retry, until "3 strikes" */ |
| 572 | } else if (++ep->error_count >= 3) { |
| 573 | if (status & SL11H_STATMASK_TMOUT) |
Pete Zaitcev | 38e2bfc | 2006-09-18 22:49:02 -0700 | [diff] [blame] | 574 | urbstat = -ETIME; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | else if (status & SL11H_STATMASK_OVF) |
| 576 | urbstat = -EOVERFLOW; |
| 577 | else |
| 578 | urbstat = -EPROTO; |
| 579 | ep->error_count = 0; |
| 580 | PACKET("...3STRIKES_%02x %02x qh%p stat %d\n", |
| 581 | bank, status, ep, urbstat); |
| 582 | } |
| 583 | |
Alan Stern | 65e5109 | 2007-08-24 15:40:47 -0400 | [diff] [blame] | 584 | if (urbstat != -EINPROGRESS || urb->unlinked) |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 585 | finish_request(sl811, ep, urb, urbstat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | } |
| 587 | |
| 588 | static inline u8 checkdone(struct sl811 *sl811) |
| 589 | { |
| 590 | u8 ctl; |
| 591 | u8 irqstat = 0; |
| 592 | |
| 593 | if (sl811->active_a && time_before_eq(sl811->jiffies_a, jiffies)) { |
| 594 | ctl = sl811_read(sl811, SL811_EP_A(SL11H_HOSTCTLREG)); |
| 595 | if (ctl & SL11H_HCTLMASK_ARM) |
| 596 | sl811_write(sl811, SL811_EP_A(SL11H_HOSTCTLREG), 0); |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 597 | dev_dbg(sl811_to_hcd(sl811)->self.controller, |
| 598 | "%s DONE_A: ctrl %02x sts %02x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | (ctl & SL11H_HCTLMASK_ARM) ? "timeout" : "lost", |
| 600 | ctl, |
| 601 | sl811_read(sl811, SL811_EP_A(SL11H_PKTSTATREG))); |
| 602 | irqstat |= SL11H_INTMASK_DONE_A; |
| 603 | } |
| 604 | #ifdef USE_B |
| 605 | if (sl811->active_b && time_before_eq(sl811->jiffies_b, jiffies)) { |
| 606 | ctl = sl811_read(sl811, SL811_EP_B(SL11H_HOSTCTLREG)); |
| 607 | if (ctl & SL11H_HCTLMASK_ARM) |
| 608 | sl811_write(sl811, SL811_EP_B(SL11H_HOSTCTLREG), 0); |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 609 | dev_dbg(sl811_to_hcd(sl811)->self.controller, |
| 610 | "%s DONE_B: ctrl %02x sts %02x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | (ctl & SL11H_HCTLMASK_ARM) ? "timeout" : "lost", |
| 612 | ctl, |
| 613 | sl811_read(sl811, SL811_EP_B(SL11H_PKTSTATREG))); |
| 614 | irqstat |= SL11H_INTMASK_DONE_A; |
| 615 | } |
| 616 | #endif |
| 617 | return irqstat; |
| 618 | } |
| 619 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 620 | static irqreturn_t sl811h_irq(struct usb_hcd *hcd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | { |
| 622 | struct sl811 *sl811 = hcd_to_sl811(hcd); |
| 623 | u8 irqstat; |
| 624 | irqreturn_t ret = IRQ_NONE; |
| 625 | unsigned retries = 5; |
| 626 | |
| 627 | spin_lock(&sl811->lock); |
| 628 | |
| 629 | retry: |
| 630 | irqstat = sl811_read(sl811, SL11H_IRQ_STATUS) & ~SL11H_INTMASK_DP; |
| 631 | if (irqstat) { |
| 632 | sl811_write(sl811, SL11H_IRQ_STATUS, irqstat); |
| 633 | irqstat &= sl811->irq_enable; |
| 634 | } |
| 635 | |
| 636 | #ifdef QUIRK2 |
| 637 | /* this may no longer be necessary ... */ |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 638 | if (irqstat == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | irqstat = checkdone(sl811); |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 640 | if (irqstat) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | sl811->stat_lost++; |
| 642 | } |
| 643 | #endif |
| 644 | |
| 645 | /* USB packets, not necessarily handled in the order they're |
| 646 | * issued ... that's fine if they're different endpoints. |
| 647 | */ |
| 648 | if (irqstat & SL11H_INTMASK_DONE_A) { |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 649 | done(sl811, sl811->active_a, SL811_EP_A(SL811_HOST_BUF)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | sl811->active_a = NULL; |
| 651 | sl811->stat_a++; |
| 652 | } |
| 653 | #ifdef USE_B |
| 654 | if (irqstat & SL11H_INTMASK_DONE_B) { |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 655 | done(sl811, sl811->active_b, SL811_EP_B(SL811_HOST_BUF)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | sl811->active_b = NULL; |
| 657 | sl811->stat_b++; |
| 658 | } |
| 659 | #endif |
| 660 | if (irqstat & SL11H_INTMASK_SOFINTR) { |
| 661 | unsigned index; |
| 662 | |
| 663 | index = sl811->frame++ % (PERIODIC_SIZE - 1); |
| 664 | sl811->stat_sof++; |
| 665 | |
| 666 | /* be graceful about almost-inevitable periodic schedule |
| 667 | * overruns: continue the previous frame's transfers iff |
| 668 | * this one has nothing scheduled. |
| 669 | */ |
| 670 | if (sl811->next_periodic) { |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 671 | // dev_err(hcd->self.controller, "overrun to slot %d\n", index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | sl811->stat_overrun++; |
| 673 | } |
| 674 | if (sl811->periodic[index]) |
| 675 | sl811->next_periodic = sl811->periodic[index]; |
| 676 | } |
| 677 | |
| 678 | /* khubd manages debouncing and wakeup */ |
| 679 | if (irqstat & SL11H_INTMASK_INSRMV) { |
| 680 | sl811->stat_insrmv++; |
| 681 | |
| 682 | /* most stats are reset for each VBUS session */ |
| 683 | sl811->stat_wake = 0; |
| 684 | sl811->stat_sof = 0; |
| 685 | sl811->stat_a = 0; |
| 686 | sl811->stat_b = 0; |
| 687 | sl811->stat_lost = 0; |
| 688 | |
| 689 | sl811->ctrl1 = 0; |
| 690 | sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1); |
| 691 | |
| 692 | sl811->irq_enable = SL11H_INTMASK_INSRMV; |
| 693 | sl811_write(sl811, SL11H_IRQ_ENABLE, sl811->irq_enable); |
| 694 | |
| 695 | /* usbcore nukes other pending transactions on disconnect */ |
| 696 | if (sl811->active_a) { |
| 697 | sl811_write(sl811, SL811_EP_A(SL11H_HOSTCTLREG), 0); |
| 698 | finish_request(sl811, sl811->active_a, |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 699 | container_of(sl811->active_a |
| 700 | ->hep->urb_list.next, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | struct urb, urb_list), |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 702 | -ESHUTDOWN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | sl811->active_a = NULL; |
| 704 | } |
| 705 | #ifdef USE_B |
| 706 | if (sl811->active_b) { |
| 707 | sl811_write(sl811, SL811_EP_B(SL11H_HOSTCTLREG), 0); |
| 708 | finish_request(sl811, sl811->active_b, |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 709 | container_of(sl811->active_b |
| 710 | ->hep->urb_list.next, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | struct urb, urb_list), |
| 712 | NULL, -ESHUTDOWN); |
| 713 | sl811->active_b = NULL; |
| 714 | } |
| 715 | #endif |
| 716 | |
Steven Cole | 093cf72 | 2005-05-03 19:07:24 -0600 | [diff] [blame] | 717 | /* port status seems weird until after reset, so |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 718 | * force the reset and make khubd clean up later. |
| 719 | */ |
Michael Hennerich | 8a3461e | 2010-04-28 17:31:36 -0400 | [diff] [blame] | 720 | if (irqstat & SL11H_INTMASK_RD) |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 721 | sl811->port1 &= ~USB_PORT_STAT_CONNECTION; |
Michael Hennerich | 8a3461e | 2010-04-28 17:31:36 -0400 | [diff] [blame] | 722 | else |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 723 | sl811->port1 |= USB_PORT_STAT_CONNECTION; |
Hennerich, Michael | eb661bc | 2009-09-02 09:26:21 +0100 | [diff] [blame] | 724 | |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 725 | sl811->port1 |= USB_PORT_STAT_C_CONNECTION << 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | |
| 727 | } else if (irqstat & SL11H_INTMASK_RD) { |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 728 | if (sl811->port1 & USB_PORT_STAT_SUSPEND) { |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 729 | dev_dbg(hcd->self.controller, "wakeup\n"); |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 730 | sl811->port1 |= USB_PORT_STAT_C_SUSPEND << 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | sl811->stat_wake++; |
| 732 | } else |
| 733 | irqstat &= ~SL11H_INTMASK_RD; |
| 734 | } |
| 735 | |
| 736 | if (irqstat) { |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 737 | if (sl811->port1 & USB_PORT_STAT_ENABLE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | start_transfer(sl811); |
| 739 | ret = IRQ_HANDLED; |
| 740 | if (retries--) |
| 741 | goto retry; |
| 742 | } |
| 743 | |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 744 | if (sl811->periodic_count == 0 && list_empty(&sl811->async)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | sofirq_off(sl811); |
| 746 | sl811_write(sl811, SL11H_IRQ_ENABLE, sl811->irq_enable); |
| 747 | |
| 748 | spin_unlock(&sl811->lock); |
| 749 | |
| 750 | return ret; |
| 751 | } |
| 752 | |
| 753 | /*-------------------------------------------------------------------------*/ |
| 754 | |
| 755 | /* usb 1.1 says max 90% of a frame is available for periodic transfers. |
| 756 | * this driver doesn't promise that much since it's got to handle an |
| 757 | * IRQ per packet; irq handling latencies also use up that time. |
David Brownell | 4b2e790 | 2005-09-22 00:49:07 -0700 | [diff] [blame] | 758 | * |
| 759 | * NOTE: the periodic schedule is a sparse tree, with the load for |
| 760 | * each branch minimized. see fig 3.5 in the OHCI spec for example. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | */ |
| 762 | #define MAX_PERIODIC_LOAD 500 /* out of 1000 usec */ |
| 763 | |
| 764 | static int balance(struct sl811 *sl811, u16 period, u16 load) |
| 765 | { |
| 766 | int i, branch = -ENOSPC; |
| 767 | |
| 768 | /* search for the least loaded schedule branch of that period |
| 769 | * which has enough bandwidth left unreserved. |
| 770 | */ |
| 771 | for (i = 0; i < period ; i++) { |
| 772 | if (branch < 0 || sl811->load[branch] > sl811->load[i]) { |
| 773 | int j; |
| 774 | |
| 775 | for (j = i; j < PERIODIC_SIZE; j += period) { |
| 776 | if ((sl811->load[j] + load) |
| 777 | > MAX_PERIODIC_LOAD) |
| 778 | break; |
| 779 | } |
| 780 | if (j < PERIODIC_SIZE) |
| 781 | continue; |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 782 | branch = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 783 | } |
| 784 | } |
| 785 | return branch; |
| 786 | } |
| 787 | |
| 788 | /*-------------------------------------------------------------------------*/ |
| 789 | |
| 790 | static int sl811h_urb_enqueue( |
| 791 | struct usb_hcd *hcd, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | struct urb *urb, |
Al Viro | 55016f1 | 2005-10-21 03:21:58 -0400 | [diff] [blame] | 793 | gfp_t mem_flags |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | ) { |
| 795 | struct sl811 *sl811 = hcd_to_sl811(hcd); |
| 796 | struct usb_device *udev = urb->dev; |
| 797 | unsigned int pipe = urb->pipe; |
| 798 | int is_out = !usb_pipein(pipe); |
| 799 | int type = usb_pipetype(pipe); |
| 800 | int epnum = usb_pipeendpoint(pipe); |
| 801 | struct sl811h_ep *ep = NULL; |
| 802 | unsigned long flags; |
| 803 | int i; |
Alan Stern | e9df41c | 2007-08-08 11:48:02 -0400 | [diff] [blame] | 804 | int retval; |
| 805 | struct usb_host_endpoint *hep = urb->ep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | |
Mike Frysinger | ad7c56f | 2011-03-22 15:35:39 -0400 | [diff] [blame] | 807 | #ifndef CONFIG_USB_SL811_HCD_ISO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | if (type == PIPE_ISOCHRONOUS) |
| 809 | return -ENOSPC; |
| 810 | #endif |
| 811 | |
| 812 | /* avoid all allocations within spinlocks */ |
Kulikov Vasiliy | 76be932 | 2010-07-16 20:15:06 +0400 | [diff] [blame] | 813 | if (!hep->hcpriv) { |
Pekka Enberg | 7b842b6 | 2005-09-06 15:18:34 -0700 | [diff] [blame] | 814 | ep = kzalloc(sizeof *ep, mem_flags); |
Kulikov Vasiliy | 76be932 | 2010-07-16 20:15:06 +0400 | [diff] [blame] | 815 | if (ep == NULL) |
| 816 | return -ENOMEM; |
| 817 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | |
| 819 | spin_lock_irqsave(&sl811->lock, flags); |
| 820 | |
| 821 | /* don't submit to a dead or disabled port */ |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 822 | if (!(sl811->port1 & USB_PORT_STAT_ENABLE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | || !HC_IS_RUNNING(hcd->state)) { |
| 824 | retval = -ENODEV; |
David Brownell | 4b2e790 | 2005-09-22 00:49:07 -0700 | [diff] [blame] | 825 | kfree(ep); |
Alan Stern | e9df41c | 2007-08-08 11:48:02 -0400 | [diff] [blame] | 826 | goto fail_not_linked; |
| 827 | } |
| 828 | retval = usb_hcd_link_urb_to_ep(hcd, urb); |
| 829 | if (retval) { |
| 830 | kfree(ep); |
| 831 | goto fail_not_linked; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | } |
| 833 | |
| 834 | if (hep->hcpriv) { |
| 835 | kfree(ep); |
| 836 | ep = hep->hcpriv; |
| 837 | } else if (!ep) { |
| 838 | retval = -ENOMEM; |
| 839 | goto fail; |
| 840 | |
| 841 | } else { |
| 842 | INIT_LIST_HEAD(&ep->schedule); |
Alan Stern | 6a8e87b | 2006-01-19 10:46:27 -0500 | [diff] [blame] | 843 | ep->udev = udev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | ep->epnum = epnum; |
| 845 | ep->maxpacket = usb_maxpacket(udev, urb->pipe, is_out); |
| 846 | ep->defctrl = SL11H_HCTLMASK_ARM | SL11H_HCTLMASK_ENABLE; |
| 847 | usb_settoggle(udev, epnum, is_out, 0); |
| 848 | |
| 849 | if (type == PIPE_CONTROL) |
| 850 | ep->nextpid = USB_PID_SETUP; |
| 851 | else if (is_out) |
| 852 | ep->nextpid = USB_PID_OUT; |
| 853 | else |
| 854 | ep->nextpid = USB_PID_IN; |
| 855 | |
| 856 | if (ep->maxpacket > H_MAXPACKET) { |
| 857 | /* iso packets up to 240 bytes could work... */ |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 858 | dev_dbg(hcd->self.controller, |
| 859 | "dev %d ep%d maxpacket %d\n", udev->devnum, |
| 860 | epnum, ep->maxpacket); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | retval = -EINVAL; |
Jesper Juhl | 2bd15f1 | 2011-01-23 23:08:31 +0100 | [diff] [blame] | 862 | kfree(ep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | goto fail; |
| 864 | } |
| 865 | |
| 866 | if (udev->speed == USB_SPEED_LOW) { |
| 867 | /* send preamble for external hub? */ |
| 868 | if (!(sl811->ctrl1 & SL11H_CTL1MASK_LSPD)) |
| 869 | ep->defctrl |= SL11H_HCTLMASK_PREAMBLE; |
| 870 | } |
| 871 | switch (type) { |
| 872 | case PIPE_ISOCHRONOUS: |
| 873 | case PIPE_INTERRUPT: |
| 874 | if (urb->interval > PERIODIC_SIZE) |
| 875 | urb->interval = PERIODIC_SIZE; |
| 876 | ep->period = urb->interval; |
| 877 | ep->branch = PERIODIC_SIZE; |
| 878 | if (type == PIPE_ISOCHRONOUS) |
| 879 | ep->defctrl |= SL11H_HCTLMASK_ISOCH; |
| 880 | ep->load = usb_calc_bus_time(udev->speed, !is_out, |
| 881 | (type == PIPE_ISOCHRONOUS), |
| 882 | usb_maxpacket(udev, pipe, is_out)) |
| 883 | / 1000; |
| 884 | break; |
| 885 | } |
| 886 | |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 887 | ep->hep = hep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | hep->hcpriv = ep; |
| 889 | } |
| 890 | |
| 891 | /* maybe put endpoint into schedule */ |
| 892 | switch (type) { |
| 893 | case PIPE_CONTROL: |
| 894 | case PIPE_BULK: |
| 895 | if (list_empty(&ep->schedule)) |
| 896 | list_add_tail(&ep->schedule, &sl811->async); |
| 897 | break; |
| 898 | case PIPE_ISOCHRONOUS: |
| 899 | case PIPE_INTERRUPT: |
| 900 | urb->interval = ep->period; |
David Brownell | 4b2e790 | 2005-09-22 00:49:07 -0700 | [diff] [blame] | 901 | if (ep->branch < PERIODIC_SIZE) { |
| 902 | /* NOTE: the phase is correct here, but the value |
| 903 | * needs offsetting by the transfer queue depth. |
| 904 | * All current drivers ignore start_frame, so this |
| 905 | * is unlikely to ever matter... |
| 906 | */ |
| 907 | urb->start_frame = (sl811->frame & (PERIODIC_SIZE - 1)) |
| 908 | + ep->branch; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | break; |
David Brownell | 4b2e790 | 2005-09-22 00:49:07 -0700 | [diff] [blame] | 910 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | |
| 912 | retval = balance(sl811, ep->period, ep->load); |
| 913 | if (retval < 0) |
| 914 | goto fail; |
| 915 | ep->branch = retval; |
| 916 | retval = 0; |
| 917 | urb->start_frame = (sl811->frame & (PERIODIC_SIZE - 1)) |
| 918 | + ep->branch; |
| 919 | |
| 920 | /* sort each schedule branch by period (slow before fast) |
| 921 | * to share the faster parts of the tree without needing |
| 922 | * dummy/placeholder nodes |
| 923 | */ |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 924 | dev_dbg(hcd->self.controller, "schedule qh%d/%p branch %d\n", |
| 925 | ep->period, ep, ep->branch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | for (i = ep->branch; i < PERIODIC_SIZE; i += ep->period) { |
| 927 | struct sl811h_ep **prev = &sl811->periodic[i]; |
| 928 | struct sl811h_ep *here = *prev; |
| 929 | |
| 930 | while (here && ep != here) { |
| 931 | if (ep->period > here->period) |
| 932 | break; |
| 933 | prev = &here->next; |
| 934 | here = *prev; |
| 935 | } |
| 936 | if (ep != here) { |
| 937 | ep->next = here; |
| 938 | *prev = ep; |
| 939 | } |
| 940 | sl811->load[i] += ep->load; |
| 941 | } |
| 942 | sl811->periodic_count++; |
| 943 | hcd->self.bandwidth_allocated += ep->load / ep->period; |
| 944 | sofirq_on(sl811); |
| 945 | } |
| 946 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | urb->hcpriv = hep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | start_transfer(sl811); |
| 949 | sl811_write(sl811, SL11H_IRQ_ENABLE, sl811->irq_enable); |
| 950 | fail: |
Alan Stern | e9df41c | 2007-08-08 11:48:02 -0400 | [diff] [blame] | 951 | if (retval) |
| 952 | usb_hcd_unlink_urb_from_ep(hcd, urb); |
| 953 | fail_not_linked: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | spin_unlock_irqrestore(&sl811->lock, flags); |
| 955 | return retval; |
| 956 | } |
| 957 | |
Alan Stern | e9df41c | 2007-08-08 11:48:02 -0400 | [diff] [blame] | 958 | static int sl811h_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | { |
| 960 | struct sl811 *sl811 = hcd_to_sl811(hcd); |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 961 | struct usb_host_endpoint *hep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | unsigned long flags; |
| 963 | struct sl811h_ep *ep; |
Alan Stern | e9df41c | 2007-08-08 11:48:02 -0400 | [diff] [blame] | 964 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | spin_lock_irqsave(&sl811->lock, flags); |
Alan Stern | e9df41c | 2007-08-08 11:48:02 -0400 | [diff] [blame] | 967 | retval = usb_hcd_check_unlink_urb(hcd, urb, status); |
| 968 | if (retval) |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 969 | goto fail; |
| 970 | |
Alan Stern | e9df41c | 2007-08-08 11:48:02 -0400 | [diff] [blame] | 971 | hep = urb->hcpriv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | ep = hep->hcpriv; |
| 973 | if (ep) { |
| 974 | /* finish right away if this urb can't be active ... |
| 975 | * note that some drivers wrongly expect delays |
| 976 | */ |
| 977 | if (ep->hep->urb_list.next != &urb->urb_list) { |
| 978 | /* not front of queue? never active */ |
| 979 | |
| 980 | /* for active transfers, we expect an IRQ */ |
| 981 | } else if (sl811->active_a == ep) { |
| 982 | if (time_before_eq(sl811->jiffies_a, jiffies)) { |
| 983 | /* happens a lot with lowspeed?? */ |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 984 | dev_dbg(hcd->self.controller, |
| 985 | "giveup on DONE_A: ctrl %02x sts %02x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | sl811_read(sl811, |
| 987 | SL811_EP_A(SL11H_HOSTCTLREG)), |
| 988 | sl811_read(sl811, |
| 989 | SL811_EP_A(SL11H_PKTSTATREG))); |
| 990 | sl811_write(sl811, SL811_EP_A(SL11H_HOSTCTLREG), |
| 991 | 0); |
| 992 | sl811->active_a = NULL; |
| 993 | } else |
| 994 | urb = NULL; |
| 995 | #ifdef USE_B |
| 996 | } else if (sl811->active_b == ep) { |
| 997 | if (time_before_eq(sl811->jiffies_a, jiffies)) { |
| 998 | /* happens a lot with lowspeed?? */ |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 999 | dev_dbg(hcd->self.controller, |
| 1000 | "giveup on DONE_B: ctrl %02x sts %02x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | sl811_read(sl811, |
| 1002 | SL811_EP_B(SL11H_HOSTCTLREG)), |
| 1003 | sl811_read(sl811, |
| 1004 | SL811_EP_B(SL11H_PKTSTATREG))); |
| 1005 | sl811_write(sl811, SL811_EP_B(SL11H_HOSTCTLREG), |
| 1006 | 0); |
| 1007 | sl811->active_b = NULL; |
| 1008 | } else |
| 1009 | urb = NULL; |
| 1010 | #endif |
| 1011 | } else { |
| 1012 | /* front of queue for inactive endpoint */ |
| 1013 | } |
| 1014 | |
| 1015 | if (urb) |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1016 | finish_request(sl811, ep, urb, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | else |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 1018 | dev_dbg(sl811_to_hcd(sl811)->self.controller, |
| 1019 | "dequeue, urb %p active %s; wait4irq\n", urb, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | (sl811->active_a == ep) ? "A" : "B"); |
| 1021 | } else |
| 1022 | retval = -EINVAL; |
Alan Stern | e9df41c | 2007-08-08 11:48:02 -0400 | [diff] [blame] | 1023 | fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | spin_unlock_irqrestore(&sl811->lock, flags); |
| 1025 | return retval; |
| 1026 | } |
| 1027 | |
| 1028 | static void |
| 1029 | sl811h_endpoint_disable(struct usb_hcd *hcd, struct usb_host_endpoint *hep) |
| 1030 | { |
| 1031 | struct sl811h_ep *ep = hep->hcpriv; |
| 1032 | |
| 1033 | if (!ep) |
| 1034 | return; |
| 1035 | |
| 1036 | /* assume we'd just wait for the irq */ |
| 1037 | if (!list_empty(&hep->urb_list)) |
| 1038 | msleep(3); |
| 1039 | if (!list_empty(&hep->urb_list)) |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 1040 | dev_warn(hcd->self.controller, "ep %p not empty?\n", ep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | kfree(ep); |
| 1043 | hep->hcpriv = NULL; |
| 1044 | } |
| 1045 | |
| 1046 | static int |
| 1047 | sl811h_get_frame(struct usb_hcd *hcd) |
| 1048 | { |
| 1049 | struct sl811 *sl811 = hcd_to_sl811(hcd); |
| 1050 | |
| 1051 | /* wrong except while periodic transfers are scheduled; |
| 1052 | * never matches the on-the-wire frame; |
| 1053 | * subject to overruns. |
| 1054 | */ |
| 1055 | return sl811->frame; |
| 1056 | } |
| 1057 | |
| 1058 | |
| 1059 | /*-------------------------------------------------------------------------*/ |
| 1060 | |
| 1061 | /* the virtual root hub timer IRQ checks for hub status */ |
| 1062 | static int |
| 1063 | sl811h_hub_status_data(struct usb_hcd *hcd, char *buf) |
| 1064 | { |
| 1065 | struct sl811 *sl811 = hcd_to_sl811(hcd); |
| 1066 | #ifdef QUIRK3 |
| 1067 | unsigned long flags; |
| 1068 | |
| 1069 | /* non-SMP HACK: use root hub timer as i/o watchdog |
| 1070 | * this seems essential when SOF IRQs aren't in use... |
| 1071 | */ |
| 1072 | local_irq_save(flags); |
| 1073 | if (!timer_pending(&sl811->timer)) { |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1074 | if (sl811h_irq( /* ~0, */ hcd) != IRQ_NONE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | sl811->stat_lost++; |
| 1076 | } |
| 1077 | local_irq_restore(flags); |
| 1078 | #endif |
| 1079 | |
| 1080 | if (!(sl811->port1 & (0xffff << 16))) |
| 1081 | return 0; |
| 1082 | |
| 1083 | /* tell khubd port 1 changed */ |
| 1084 | *buf = (1 << 1); |
| 1085 | return 1; |
| 1086 | } |
| 1087 | |
| 1088 | static void |
| 1089 | sl811h_hub_descriptor ( |
| 1090 | struct sl811 *sl811, |
| 1091 | struct usb_hub_descriptor *desc |
| 1092 | ) { |
| 1093 | u16 temp = 0; |
| 1094 | |
| 1095 | desc->bDescriptorType = 0x29; |
| 1096 | desc->bHubContrCurrent = 0; |
| 1097 | |
| 1098 | desc->bNbrPorts = 1; |
| 1099 | desc->bDescLength = 9; |
| 1100 | |
| 1101 | /* per-port power switching (gang of one!), or none */ |
| 1102 | desc->bPwrOn2PwrGood = 0; |
| 1103 | if (sl811->board && sl811->board->port_power) { |
| 1104 | desc->bPwrOn2PwrGood = sl811->board->potpg; |
| 1105 | if (!desc->bPwrOn2PwrGood) |
| 1106 | desc->bPwrOn2PwrGood = 10; |
| 1107 | temp = 0x0001; |
| 1108 | } else |
| 1109 | temp = 0x0002; |
| 1110 | |
| 1111 | /* no overcurrent errors detection/handling */ |
| 1112 | temp |= 0x0010; |
| 1113 | |
Al Viro | fd05e72 | 2008-04-28 07:00:16 +0100 | [diff] [blame] | 1114 | desc->wHubCharacteristics = cpu_to_le16(temp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1115 | |
Sarah Sharp | da13051 | 2010-11-30 15:55:51 -0800 | [diff] [blame] | 1116 | /* ports removable, and legacy PortPwrCtrlMask */ |
John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 1117 | desc->u.hs.DeviceRemovable[0] = 0 << 1; |
| 1118 | desc->u.hs.DeviceRemovable[1] = ~0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | } |
| 1120 | |
| 1121 | static void |
| 1122 | sl811h_timer(unsigned long _sl811) |
| 1123 | { |
| 1124 | struct sl811 *sl811 = (void *) _sl811; |
| 1125 | unsigned long flags; |
| 1126 | u8 irqstat; |
| 1127 | u8 signaling = sl811->ctrl1 & SL11H_CTL1MASK_FORCE; |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 1128 | const u32 mask = USB_PORT_STAT_CONNECTION |
| 1129 | | USB_PORT_STAT_ENABLE |
Alan Stern | 288ead4 | 2010-03-04 11:32:30 -0500 | [diff] [blame] | 1130 | | USB_PORT_STAT_LOW_SPEED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1131 | |
| 1132 | spin_lock_irqsave(&sl811->lock, flags); |
| 1133 | |
| 1134 | /* stop special signaling */ |
| 1135 | sl811->ctrl1 &= ~SL11H_CTL1MASK_FORCE; |
| 1136 | sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1); |
| 1137 | udelay(3); |
| 1138 | |
| 1139 | irqstat = sl811_read(sl811, SL11H_IRQ_STATUS); |
| 1140 | |
| 1141 | switch (signaling) { |
| 1142 | case SL11H_CTL1MASK_SE0: |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 1143 | dev_dbg(sl811_to_hcd(sl811)->self.controller, "end reset\n"); |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 1144 | sl811->port1 = (USB_PORT_STAT_C_RESET << 16) |
| 1145 | | USB_PORT_STAT_POWER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | sl811->ctrl1 = 0; |
| 1147 | /* don't wrongly ack RD */ |
| 1148 | if (irqstat & SL11H_INTMASK_INSRMV) |
| 1149 | irqstat &= ~SL11H_INTMASK_RD; |
| 1150 | break; |
| 1151 | case SL11H_CTL1MASK_K: |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 1152 | dev_dbg(sl811_to_hcd(sl811)->self.controller, "end resume\n"); |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 1153 | sl811->port1 &= ~USB_PORT_STAT_SUSPEND; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | break; |
| 1155 | default: |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 1156 | dev_dbg(sl811_to_hcd(sl811)->self.controller, |
| 1157 | "odd timer signaling: %02x\n", signaling); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | break; |
| 1159 | } |
| 1160 | sl811_write(sl811, SL11H_IRQ_STATUS, irqstat); |
| 1161 | |
| 1162 | if (irqstat & SL11H_INTMASK_RD) { |
| 1163 | /* usbcore nukes all pending transactions on disconnect */ |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 1164 | if (sl811->port1 & USB_PORT_STAT_CONNECTION) |
| 1165 | sl811->port1 |= (USB_PORT_STAT_C_CONNECTION << 16) |
| 1166 | | (USB_PORT_STAT_C_ENABLE << 16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1167 | sl811->port1 &= ~mask; |
| 1168 | sl811->irq_enable = SL11H_INTMASK_INSRMV; |
| 1169 | } else { |
| 1170 | sl811->port1 |= mask; |
| 1171 | if (irqstat & SL11H_INTMASK_DP) |
Alan Stern | 288ead4 | 2010-03-04 11:32:30 -0500 | [diff] [blame] | 1172 | sl811->port1 &= ~USB_PORT_STAT_LOW_SPEED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1173 | sl811->irq_enable = SL11H_INTMASK_INSRMV | SL11H_INTMASK_RD; |
| 1174 | } |
| 1175 | |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 1176 | if (sl811->port1 & USB_PORT_STAT_CONNECTION) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | u8 ctrl2 = SL811HS_CTL2_INIT; |
| 1178 | |
| 1179 | sl811->irq_enable |= SL11H_INTMASK_DONE_A; |
| 1180 | #ifdef USE_B |
| 1181 | sl811->irq_enable |= SL11H_INTMASK_DONE_B; |
| 1182 | #endif |
Alan Stern | 288ead4 | 2010-03-04 11:32:30 -0500 | [diff] [blame] | 1183 | if (sl811->port1 & USB_PORT_STAT_LOW_SPEED) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | sl811->ctrl1 |= SL11H_CTL1MASK_LSPD; |
| 1185 | ctrl2 |= SL811HS_CTL2MASK_DSWAP; |
| 1186 | } |
| 1187 | |
| 1188 | /* start SOFs flowing, kickstarting with A registers */ |
| 1189 | sl811->ctrl1 |= SL11H_CTL1MASK_SOF_ENA; |
| 1190 | sl811_write(sl811, SL11H_SOFLOWREG, 0xe0); |
| 1191 | sl811_write(sl811, SL811HS_CTLREG2, ctrl2); |
| 1192 | |
| 1193 | /* autoincrementing */ |
| 1194 | sl811_write(sl811, SL811_EP_A(SL11H_BUFLNTHREG), 0); |
| 1195 | writeb(SL_SOF, sl811->data_reg); |
| 1196 | writeb(0, sl811->data_reg); |
| 1197 | sl811_write(sl811, SL811_EP_A(SL11H_HOSTCTLREG), |
| 1198 | SL11H_HCTLMASK_ARM); |
| 1199 | |
| 1200 | /* khubd provides debounce delay */ |
| 1201 | } else { |
| 1202 | sl811->ctrl1 = 0; |
| 1203 | } |
| 1204 | sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1); |
| 1205 | |
| 1206 | /* reenable irqs */ |
| 1207 | sl811_write(sl811, SL11H_IRQ_ENABLE, sl811->irq_enable); |
| 1208 | spin_unlock_irqrestore(&sl811->lock, flags); |
| 1209 | } |
| 1210 | |
| 1211 | static int |
| 1212 | sl811h_hub_control( |
| 1213 | struct usb_hcd *hcd, |
| 1214 | u16 typeReq, |
| 1215 | u16 wValue, |
| 1216 | u16 wIndex, |
| 1217 | char *buf, |
| 1218 | u16 wLength |
| 1219 | ) { |
| 1220 | struct sl811 *sl811 = hcd_to_sl811(hcd); |
| 1221 | int retval = 0; |
| 1222 | unsigned long flags; |
| 1223 | |
| 1224 | spin_lock_irqsave(&sl811->lock, flags); |
| 1225 | |
| 1226 | switch (typeReq) { |
| 1227 | case ClearHubFeature: |
| 1228 | case SetHubFeature: |
| 1229 | switch (wValue) { |
| 1230 | case C_HUB_OVER_CURRENT: |
| 1231 | case C_HUB_LOCAL_POWER: |
| 1232 | break; |
| 1233 | default: |
| 1234 | goto error; |
| 1235 | } |
| 1236 | break; |
| 1237 | case ClearPortFeature: |
| 1238 | if (wIndex != 1 || wLength != 0) |
| 1239 | goto error; |
| 1240 | |
| 1241 | switch (wValue) { |
| 1242 | case USB_PORT_FEAT_ENABLE: |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 1243 | sl811->port1 &= USB_PORT_STAT_POWER; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | sl811->ctrl1 = 0; |
| 1245 | sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1); |
| 1246 | sl811->irq_enable = SL11H_INTMASK_INSRMV; |
| 1247 | sl811_write(sl811, SL11H_IRQ_ENABLE, |
| 1248 | sl811->irq_enable); |
| 1249 | break; |
| 1250 | case USB_PORT_FEAT_SUSPEND: |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 1251 | if (!(sl811->port1 & USB_PORT_STAT_SUSPEND)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1252 | break; |
| 1253 | |
| 1254 | /* 20 msec of resume/K signaling, other irqs blocked */ |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 1255 | dev_dbg(hcd->self.controller, "start resume...\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1256 | sl811->irq_enable = 0; |
| 1257 | sl811_write(sl811, SL11H_IRQ_ENABLE, |
| 1258 | sl811->irq_enable); |
| 1259 | sl811->ctrl1 |= SL11H_CTL1MASK_K; |
| 1260 | sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1); |
| 1261 | |
| 1262 | mod_timer(&sl811->timer, jiffies |
| 1263 | + msecs_to_jiffies(20)); |
| 1264 | break; |
| 1265 | case USB_PORT_FEAT_POWER: |
| 1266 | port_power(sl811, 0); |
| 1267 | break; |
| 1268 | case USB_PORT_FEAT_C_ENABLE: |
| 1269 | case USB_PORT_FEAT_C_SUSPEND: |
| 1270 | case USB_PORT_FEAT_C_CONNECTION: |
| 1271 | case USB_PORT_FEAT_C_OVER_CURRENT: |
| 1272 | case USB_PORT_FEAT_C_RESET: |
| 1273 | break; |
| 1274 | default: |
| 1275 | goto error; |
| 1276 | } |
| 1277 | sl811->port1 &= ~(1 << wValue); |
| 1278 | break; |
| 1279 | case GetHubDescriptor: |
| 1280 | sl811h_hub_descriptor(sl811, (struct usb_hub_descriptor *) buf); |
| 1281 | break; |
| 1282 | case GetHubStatus: |
Michael Hennerich | 8ca5bfab | 2009-12-21 12:53:24 -0500 | [diff] [blame] | 1283 | put_unaligned_le32(0, buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | break; |
| 1285 | case GetPortStatus: |
| 1286 | if (wIndex != 1) |
| 1287 | goto error; |
Michael Hennerich | 8ca5bfab | 2009-12-21 12:53:24 -0500 | [diff] [blame] | 1288 | put_unaligned_le32(sl811->port1, buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | |
| 1290 | #ifndef VERBOSE |
| 1291 | if (*(u16*)(buf+2)) /* only if wPortChange is interesting */ |
| 1292 | #endif |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 1293 | dev_dbg(hcd->self.controller, "GetPortStatus %08x\n", |
| 1294 | sl811->port1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | break; |
| 1296 | case SetPortFeature: |
| 1297 | if (wIndex != 1 || wLength != 0) |
| 1298 | goto error; |
| 1299 | switch (wValue) { |
| 1300 | case USB_PORT_FEAT_SUSPEND: |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 1301 | if (sl811->port1 & USB_PORT_STAT_RESET) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | goto error; |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 1303 | if (!(sl811->port1 & USB_PORT_STAT_ENABLE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1304 | goto error; |
| 1305 | |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 1306 | dev_dbg(hcd->self.controller,"suspend...\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | sl811->ctrl1 &= ~SL11H_CTL1MASK_SOF_ENA; |
| 1308 | sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1); |
| 1309 | break; |
| 1310 | case USB_PORT_FEAT_POWER: |
| 1311 | port_power(sl811, 1); |
| 1312 | break; |
| 1313 | case USB_PORT_FEAT_RESET: |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 1314 | if (sl811->port1 & USB_PORT_STAT_SUSPEND) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | goto error; |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 1316 | if (!(sl811->port1 & USB_PORT_STAT_POWER)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | break; |
| 1318 | |
| 1319 | /* 50 msec of reset/SE0 signaling, irqs blocked */ |
| 1320 | sl811->irq_enable = 0; |
| 1321 | sl811_write(sl811, SL11H_IRQ_ENABLE, |
| 1322 | sl811->irq_enable); |
| 1323 | sl811->ctrl1 = SL11H_CTL1MASK_SE0; |
| 1324 | sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1); |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 1325 | sl811->port1 |= USB_PORT_STAT_RESET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | mod_timer(&sl811->timer, jiffies |
| 1327 | + msecs_to_jiffies(50)); |
| 1328 | break; |
| 1329 | default: |
| 1330 | goto error; |
| 1331 | } |
| 1332 | sl811->port1 |= 1 << wValue; |
| 1333 | break; |
| 1334 | |
| 1335 | default: |
| 1336 | error: |
| 1337 | /* "protocol stall" on error */ |
| 1338 | retval = -EPIPE; |
| 1339 | } |
| 1340 | |
| 1341 | spin_unlock_irqrestore(&sl811->lock, flags); |
| 1342 | return retval; |
| 1343 | } |
| 1344 | |
| 1345 | #ifdef CONFIG_PM |
| 1346 | |
| 1347 | static int |
Alan Stern | 0c0382e | 2005-10-13 17:08:02 -0400 | [diff] [blame] | 1348 | sl811h_bus_suspend(struct usb_hcd *hcd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 | { |
| 1350 | // SOFs off |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 1351 | dev_dbg(hcd->self.controller, "%s\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | return 0; |
| 1353 | } |
| 1354 | |
| 1355 | static int |
Alan Stern | 0c0382e | 2005-10-13 17:08:02 -0400 | [diff] [blame] | 1356 | sl811h_bus_resume(struct usb_hcd *hcd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | { |
| 1358 | // SOFs on |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 1359 | dev_dbg(hcd->self.controller, "%s\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1360 | return 0; |
| 1361 | } |
| 1362 | |
| 1363 | #else |
| 1364 | |
Alan Stern | 0c0382e | 2005-10-13 17:08:02 -0400 | [diff] [blame] | 1365 | #define sl811h_bus_suspend NULL |
| 1366 | #define sl811h_bus_resume NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | |
| 1368 | #endif |
| 1369 | |
| 1370 | |
| 1371 | /*-------------------------------------------------------------------------*/ |
| 1372 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1373 | static void dump_irq(struct seq_file *s, char *label, u8 mask) |
| 1374 | { |
| 1375 | seq_printf(s, "%s %02x%s%s%s%s%s%s\n", label, mask, |
| 1376 | (mask & SL11H_INTMASK_DONE_A) ? " done_a" : "", |
| 1377 | (mask & SL11H_INTMASK_DONE_B) ? " done_b" : "", |
| 1378 | (mask & SL11H_INTMASK_SOFINTR) ? " sof" : "", |
| 1379 | (mask & SL11H_INTMASK_INSRMV) ? " ins/rmv" : "", |
| 1380 | (mask & SL11H_INTMASK_RD) ? " rd" : "", |
| 1381 | (mask & SL11H_INTMASK_DP) ? " dp" : ""); |
| 1382 | } |
| 1383 | |
Greg Kroah-Hartman | 0511b36 | 2013-07-02 12:22:06 -0700 | [diff] [blame] | 1384 | static int sl811h_show(struct seq_file *s, void *unused) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1385 | { |
| 1386 | struct sl811 *sl811 = s->private; |
| 1387 | struct sl811h_ep *ep; |
| 1388 | unsigned i; |
| 1389 | |
| 1390 | seq_printf(s, "%s\n%s version %s\nportstatus[1] = %08x\n", |
| 1391 | sl811_to_hcd(sl811)->product_desc, |
| 1392 | hcd_name, DRIVER_VERSION, |
| 1393 | sl811->port1); |
| 1394 | |
| 1395 | seq_printf(s, "insert/remove: %ld\n", sl811->stat_insrmv); |
| 1396 | seq_printf(s, "current session: done_a %ld done_b %ld " |
| 1397 | "wake %ld sof %ld overrun %ld lost %ld\n\n", |
| 1398 | sl811->stat_a, sl811->stat_b, |
| 1399 | sl811->stat_wake, sl811->stat_sof, |
| 1400 | sl811->stat_overrun, sl811->stat_lost); |
| 1401 | |
| 1402 | spin_lock_irq(&sl811->lock); |
| 1403 | |
| 1404 | if (sl811->ctrl1 & SL11H_CTL1MASK_SUSPEND) |
| 1405 | seq_printf(s, "(suspended)\n\n"); |
| 1406 | else { |
| 1407 | u8 t = sl811_read(sl811, SL11H_CTLREG1); |
| 1408 | |
| 1409 | seq_printf(s, "ctrl1 %02x%s%s%s%s\n", t, |
| 1410 | (t & SL11H_CTL1MASK_SOF_ENA) ? " sofgen" : "", |
| 1411 | ({char *s; switch (t & SL11H_CTL1MASK_FORCE) { |
| 1412 | case SL11H_CTL1MASK_NORMAL: s = ""; break; |
| 1413 | case SL11H_CTL1MASK_SE0: s = " se0/reset"; break; |
| 1414 | case SL11H_CTL1MASK_K: s = " k/resume"; break; |
| 1415 | default: s = "j"; break; |
| 1416 | }; s; }), |
| 1417 | (t & SL11H_CTL1MASK_LSPD) ? " lowspeed" : "", |
| 1418 | (t & SL11H_CTL1MASK_SUSPEND) ? " suspend" : ""); |
| 1419 | |
| 1420 | dump_irq(s, "irq_enable", |
| 1421 | sl811_read(sl811, SL11H_IRQ_ENABLE)); |
| 1422 | dump_irq(s, "irq_status", |
| 1423 | sl811_read(sl811, SL11H_IRQ_STATUS)); |
| 1424 | seq_printf(s, "frame clocks remaining: %d\n", |
| 1425 | sl811_read(sl811, SL11H_SOFTMRREG) << 6); |
| 1426 | } |
| 1427 | |
| 1428 | seq_printf(s, "A: qh%p ctl %02x sts %02x\n", sl811->active_a, |
| 1429 | sl811_read(sl811, SL811_EP_A(SL11H_HOSTCTLREG)), |
| 1430 | sl811_read(sl811, SL811_EP_A(SL11H_PKTSTATREG))); |
| 1431 | seq_printf(s, "B: qh%p ctl %02x sts %02x\n", sl811->active_b, |
| 1432 | sl811_read(sl811, SL811_EP_B(SL11H_HOSTCTLREG)), |
| 1433 | sl811_read(sl811, SL811_EP_B(SL11H_PKTSTATREG))); |
| 1434 | seq_printf(s, "\n"); |
| 1435 | list_for_each_entry (ep, &sl811->async, schedule) { |
| 1436 | struct urb *urb; |
| 1437 | |
| 1438 | seq_printf(s, "%s%sqh%p, ep%d%s, maxpacket %d" |
| 1439 | " nak %d err %d\n", |
| 1440 | (ep == sl811->active_a) ? "(A) " : "", |
| 1441 | (ep == sl811->active_b) ? "(B) " : "", |
| 1442 | ep, ep->epnum, |
| 1443 | ({ char *s; switch (ep->nextpid) { |
| 1444 | case USB_PID_IN: s = "in"; break; |
| 1445 | case USB_PID_OUT: s = "out"; break; |
| 1446 | case USB_PID_SETUP: s = "setup"; break; |
| 1447 | case USB_PID_ACK: s = "status"; break; |
| 1448 | default: s = "?"; break; |
| 1449 | }; s;}), |
| 1450 | ep->maxpacket, |
| 1451 | ep->nak_count, ep->error_count); |
| 1452 | list_for_each_entry (urb, &ep->hep->urb_list, urb_list) { |
| 1453 | seq_printf(s, " urb%p, %d/%d\n", urb, |
| 1454 | urb->actual_length, |
| 1455 | urb->transfer_buffer_length); |
| 1456 | } |
| 1457 | } |
| 1458 | if (!list_empty(&sl811->async)) |
| 1459 | seq_printf(s, "\n"); |
| 1460 | |
| 1461 | seq_printf(s, "periodic size= %d\n", PERIODIC_SIZE); |
| 1462 | |
| 1463 | for (i = 0; i < PERIODIC_SIZE; i++) { |
| 1464 | ep = sl811->periodic[i]; |
| 1465 | if (!ep) |
| 1466 | continue; |
| 1467 | seq_printf(s, "%2d [%3d]:\n", i, sl811->load[i]); |
| 1468 | |
| 1469 | /* DUMB: prints shared entries multiple times */ |
| 1470 | do { |
| 1471 | seq_printf(s, |
| 1472 | " %s%sqh%d/%p (%sdev%d ep%d%s max %d) " |
| 1473 | "err %d\n", |
| 1474 | (ep == sl811->active_a) ? "(A) " : "", |
| 1475 | (ep == sl811->active_b) ? "(B) " : "", |
| 1476 | ep->period, ep, |
| 1477 | (ep->udev->speed == USB_SPEED_FULL) |
| 1478 | ? "" : "ls ", |
| 1479 | ep->udev->devnum, ep->epnum, |
| 1480 | (ep->epnum == 0) ? "" |
| 1481 | : ((ep->nextpid == USB_PID_IN) |
| 1482 | ? "in" |
| 1483 | : "out"), |
| 1484 | ep->maxpacket, ep->error_count); |
| 1485 | ep = ep->next; |
| 1486 | } while (ep); |
| 1487 | } |
| 1488 | |
| 1489 | spin_unlock_irq(&sl811->lock); |
| 1490 | seq_printf(s, "\n"); |
| 1491 | |
| 1492 | return 0; |
| 1493 | } |
| 1494 | |
Greg Kroah-Hartman | 0511b36 | 2013-07-02 12:22:06 -0700 | [diff] [blame] | 1495 | static int sl811h_open(struct inode *inode, struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | { |
Greg Kroah-Hartman | 0511b36 | 2013-07-02 12:22:06 -0700 | [diff] [blame] | 1497 | return single_open(file, sl811h_show, inode->i_private); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | } |
| 1499 | |
Greg Kroah-Hartman | 0511b36 | 2013-07-02 12:22:06 -0700 | [diff] [blame] | 1500 | static const struct file_operations debug_ops = { |
| 1501 | .open = sl811h_open, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1502 | .read = seq_read, |
| 1503 | .llseek = seq_lseek, |
| 1504 | .release = single_release, |
| 1505 | }; |
| 1506 | |
| 1507 | /* expect just one sl811 per system */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | static void create_debug_file(struct sl811 *sl811) |
| 1509 | { |
Greg Kroah-Hartman | 0511b36 | 2013-07-02 12:22:06 -0700 | [diff] [blame] | 1510 | sl811->debug_file = debugfs_create_file("sl811h", S_IRUGO, |
| 1511 | usb_debug_root, sl811, |
| 1512 | &debug_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | } |
| 1514 | |
| 1515 | static void remove_debug_file(struct sl811 *sl811) |
| 1516 | { |
Greg Kroah-Hartman | 0511b36 | 2013-07-02 12:22:06 -0700 | [diff] [blame] | 1517 | debugfs_remove(sl811->debug_file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1518 | } |
| 1519 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1520 | /*-------------------------------------------------------------------------*/ |
| 1521 | |
| 1522 | static void |
| 1523 | sl811h_stop(struct usb_hcd *hcd) |
| 1524 | { |
| 1525 | struct sl811 *sl811 = hcd_to_sl811(hcd); |
| 1526 | unsigned long flags; |
| 1527 | |
| 1528 | del_timer_sync(&hcd->rh_timer); |
| 1529 | |
| 1530 | spin_lock_irqsave(&sl811->lock, flags); |
| 1531 | port_power(sl811, 0); |
| 1532 | spin_unlock_irqrestore(&sl811->lock, flags); |
| 1533 | } |
| 1534 | |
| 1535 | static int |
| 1536 | sl811h_start(struct usb_hcd *hcd) |
| 1537 | { |
| 1538 | struct sl811 *sl811 = hcd_to_sl811(hcd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1539 | |
| 1540 | /* chip has been reset, VBUS power is off */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1541 | hcd->state = HC_STATE_RUNNING; |
| 1542 | |
Alan Stern | bc96c0a | 2005-04-25 11:21:31 -0400 | [diff] [blame] | 1543 | if (sl811->board) { |
David Brownell | 0c8624f | 2005-11-07 15:31:25 -0800 | [diff] [blame] | 1544 | if (!device_can_wakeup(hcd->self.controller)) |
| 1545 | device_init_wakeup(hcd->self.controller, |
| 1546 | sl811->board->can_wakeup); |
Alan Stern | bc96c0a | 2005-04-25 11:21:31 -0400 | [diff] [blame] | 1547 | hcd->power_budget = sl811->board->power * 2; |
| 1548 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1549 | |
Robert P. J. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 1550 | /* enable power and interrupts */ |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 1551 | port_power(sl811, 1); |
| 1552 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1553 | return 0; |
| 1554 | } |
| 1555 | |
| 1556 | /*-------------------------------------------------------------------------*/ |
| 1557 | |
| 1558 | static struct hc_driver sl811h_hc_driver = { |
| 1559 | .description = hcd_name, |
| 1560 | .hcd_priv_size = sizeof(struct sl811), |
| 1561 | |
| 1562 | /* |
| 1563 | * generic hardware linkage |
| 1564 | */ |
| 1565 | .irq = sl811h_irq, |
| 1566 | .flags = HCD_USB11 | HCD_MEMORY, |
| 1567 | |
| 1568 | /* Basic lifecycle operations */ |
| 1569 | .start = sl811h_start, |
| 1570 | .stop = sl811h_stop, |
| 1571 | |
| 1572 | /* |
| 1573 | * managing i/o requests and associated device resources |
| 1574 | */ |
| 1575 | .urb_enqueue = sl811h_urb_enqueue, |
| 1576 | .urb_dequeue = sl811h_urb_dequeue, |
| 1577 | .endpoint_disable = sl811h_endpoint_disable, |
| 1578 | |
| 1579 | /* |
| 1580 | * periodic schedule support |
| 1581 | */ |
| 1582 | .get_frame_number = sl811h_get_frame, |
| 1583 | |
| 1584 | /* |
| 1585 | * root hub support |
| 1586 | */ |
| 1587 | .hub_status_data = sl811h_hub_status_data, |
| 1588 | .hub_control = sl811h_hub_control, |
Alan Stern | 0c0382e | 2005-10-13 17:08:02 -0400 | [diff] [blame] | 1589 | .bus_suspend = sl811h_bus_suspend, |
| 1590 | .bus_resume = sl811h_bus_resume, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | }; |
| 1592 | |
| 1593 | /*-------------------------------------------------------------------------*/ |
| 1594 | |
Bill Pemberton | fb4e98a | 2012-11-19 13:26:20 -0500 | [diff] [blame] | 1595 | static int |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1596 | sl811h_remove(struct platform_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1597 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1598 | struct usb_hcd *hcd = platform_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1599 | struct sl811 *sl811 = hcd_to_sl811(hcd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1600 | struct resource *res; |
| 1601 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1602 | remove_debug_file(sl811); |
| 1603 | usb_remove_hcd(hcd); |
| 1604 | |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 1605 | /* some platforms may use IORESOURCE_IO */ |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1606 | res = platform_get_resource(dev, IORESOURCE_MEM, 1); |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 1607 | if (res) |
| 1608 | iounmap(sl811->data_reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1610 | res = platform_get_resource(dev, IORESOURCE_MEM, 0); |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 1611 | if (res) |
| 1612 | iounmap(sl811->addr_reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | |
| 1614 | usb_put_hcd(hcd); |
| 1615 | return 0; |
| 1616 | } |
| 1617 | |
Bill Pemberton | 41ac7b3 | 2012-11-19 13:21:48 -0500 | [diff] [blame] | 1618 | static int |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1619 | sl811h_probe(struct platform_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1620 | { |
| 1621 | struct usb_hcd *hcd; |
| 1622 | struct sl811 *sl811; |
Marc Zyngier | 2714021 | 2008-08-18 13:08:42 +0200 | [diff] [blame] | 1623 | struct resource *addr, *data, *ires; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | int irq; |
| 1625 | void __iomem *addr_reg; |
| 1626 | void __iomem *data_reg; |
| 1627 | int retval; |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 1628 | u8 tmp, ioaddr = 0; |
Marc Zyngier | 2714021 | 2008-08-18 13:08:42 +0200 | [diff] [blame] | 1629 | unsigned long irqflags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1630 | |
Tobias Klauser | 6ef1a92 | 2012-02-28 12:57:23 +0100 | [diff] [blame] | 1631 | if (usb_disabled()) |
| 1632 | return -ENODEV; |
| 1633 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | /* basic sanity checks first. board-specific init logic should |
| 1635 | * have initialized these three resources and probably board |
| 1636 | * specific platform_data. we don't probe for IRQs, and do only |
| 1637 | * minimal sanity checking. |
| 1638 | */ |
Marc Zyngier | 2714021 | 2008-08-18 13:08:42 +0200 | [diff] [blame] | 1639 | ires = platform_get_resource(dev, IORESOURCE_IRQ, 0); |
| 1640 | if (dev->num_resources < 3 || !ires) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1641 | return -ENODEV; |
| 1642 | |
Marc Zyngier | 2714021 | 2008-08-18 13:08:42 +0200 | [diff] [blame] | 1643 | irq = ires->start; |
| 1644 | irqflags = ires->flags & IRQF_TRIGGER_MASK; |
| 1645 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1646 | /* refuse to confuse usbcore */ |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1647 | if (dev->dev.dma_mask) { |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 1648 | dev_dbg(&dev->dev, "no we won't dma\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | return -EINVAL; |
| 1650 | } |
| 1651 | |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 1652 | /* the chip may be wired for either kind of addressing */ |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1653 | addr = platform_get_resource(dev, IORESOURCE_MEM, 0); |
| 1654 | data = platform_get_resource(dev, IORESOURCE_MEM, 1); |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 1655 | retval = -EBUSY; |
| 1656 | if (!addr || !data) { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1657 | addr = platform_get_resource(dev, IORESOURCE_IO, 0); |
| 1658 | data = platform_get_resource(dev, IORESOURCE_IO, 1); |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 1659 | if (!addr || !data) |
| 1660 | return -ENODEV; |
| 1661 | ioaddr = 1; |
Greg Kroah-Hartman | 2427ddd | 2006-06-12 17:07:52 -0700 | [diff] [blame] | 1662 | /* |
| 1663 | * NOTE: 64-bit resource->start is getting truncated |
| 1664 | * to avoid compiler warning, assuming that ->start |
| 1665 | * is always 32-bit for this case |
| 1666 | */ |
| 1667 | addr_reg = (void __iomem *) (unsigned long) addr->start; |
| 1668 | data_reg = (void __iomem *) (unsigned long) data->start; |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 1669 | } else { |
| 1670 | addr_reg = ioremap(addr->start, 1); |
| 1671 | if (addr_reg == NULL) { |
| 1672 | retval = -ENOMEM; |
| 1673 | goto err2; |
| 1674 | } |
| 1675 | |
| 1676 | data_reg = ioremap(data->start, 1); |
| 1677 | if (data_reg == NULL) { |
| 1678 | retval = -ENOMEM; |
| 1679 | goto err4; |
| 1680 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1681 | } |
| 1682 | |
| 1683 | /* allocate and initialize hcd */ |
Kay Sievers | 7071a3c | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 1684 | hcd = usb_create_hcd(&sl811h_hc_driver, &dev->dev, dev_name(&dev->dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1685 | if (!hcd) { |
| 1686 | retval = -ENOMEM; |
| 1687 | goto err5; |
| 1688 | } |
| 1689 | hcd->rsrc_start = addr->start; |
| 1690 | sl811 = hcd_to_sl811(hcd); |
| 1691 | |
| 1692 | spin_lock_init(&sl811->lock); |
| 1693 | INIT_LIST_HEAD(&sl811->async); |
Jingoo Han | d4f09e2 | 2013-07-30 19:59:40 +0900 | [diff] [blame] | 1694 | sl811->board = dev_get_platdata(&dev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | init_timer(&sl811->timer); |
| 1696 | sl811->timer.function = sl811h_timer; |
| 1697 | sl811->timer.data = (unsigned long) sl811; |
| 1698 | sl811->addr_reg = addr_reg; |
| 1699 | sl811->data_reg = data_reg; |
| 1700 | |
| 1701 | spin_lock_irq(&sl811->lock); |
| 1702 | port_power(sl811, 0); |
| 1703 | spin_unlock_irq(&sl811->lock); |
| 1704 | msleep(200); |
| 1705 | |
| 1706 | tmp = sl811_read(sl811, SL11H_HWREVREG); |
| 1707 | switch (tmp >> 4) { |
| 1708 | case 1: |
| 1709 | hcd->product_desc = "SL811HS v1.2"; |
| 1710 | break; |
| 1711 | case 2: |
| 1712 | hcd->product_desc = "SL811HS v1.5"; |
| 1713 | break; |
| 1714 | default: |
| 1715 | /* reject case 0, SL11S is less functional */ |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 1716 | dev_dbg(&dev->dev, "chiprev %02x\n", tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1717 | retval = -ENXIO; |
| 1718 | goto err6; |
| 1719 | } |
| 1720 | |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 1721 | /* The chip's IRQ is level triggered, active high. A requirement |
| 1722 | * for platform device setup is to cope with things like signal |
| 1723 | * inverters (e.g. CF is active low) or working only with edge |
| 1724 | * triggers (e.g. most ARM CPUs). Initial driver stress testing |
| 1725 | * was on a system with single edge triggering, so most sorts of |
| 1726 | * triggering arrangement should work. |
Marc Zyngier | 2714021 | 2008-08-18 13:08:42 +0200 | [diff] [blame] | 1727 | * |
| 1728 | * Use resource IRQ flags if set by platform device setup. |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 1729 | */ |
Marc Zyngier | 2714021 | 2008-08-18 13:08:42 +0200 | [diff] [blame] | 1730 | irqflags |= IRQF_SHARED; |
Yong Zhang | b5dd18d | 2011-09-07 16:10:52 +0800 | [diff] [blame] | 1731 | retval = usb_add_hcd(hcd, irq, irqflags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | if (retval != 0) |
| 1733 | goto err6; |
| 1734 | |
| 1735 | create_debug_file(sl811); |
| 1736 | return retval; |
| 1737 | |
| 1738 | err6: |
| 1739 | usb_put_hcd(hcd); |
| 1740 | err5: |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 1741 | if (!ioaddr) |
| 1742 | iounmap(data_reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1743 | err4: |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 1744 | if (!ioaddr) |
| 1745 | iounmap(addr_reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1746 | err2: |
Greg Kroah-Hartman | e452828 | 2013-06-28 11:33:03 -0700 | [diff] [blame] | 1747 | dev_dbg(&dev->dev, "init error, %d\n", retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1748 | return retval; |
| 1749 | } |
| 1750 | |
| 1751 | #ifdef CONFIG_PM |
| 1752 | |
| 1753 | /* for this device there's no useful distinction between the controller |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 1754 | * and its root hub, except that the root hub only gets direct PM calls |
Alan Stern | 84ebc10 | 2013-03-27 16:14:46 -0400 | [diff] [blame] | 1755 | * when CONFIG_PM_RUNTIME is enabled. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | */ |
| 1757 | |
| 1758 | static int |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1759 | sl811h_suspend(struct platform_device *dev, pm_message_t state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1760 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1761 | struct usb_hcd *hcd = platform_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | struct sl811 *sl811 = hcd_to_sl811(hcd); |
| 1763 | int retval = 0; |
| 1764 | |
David Brownell | 1858499 | 2006-08-14 23:11:06 -0700 | [diff] [blame] | 1765 | switch (state.event) { |
| 1766 | case PM_EVENT_FREEZE: |
Alan Stern | 0c0382e | 2005-10-13 17:08:02 -0400 | [diff] [blame] | 1767 | retval = sl811h_bus_suspend(hcd); |
David Brownell | 1858499 | 2006-08-14 23:11:06 -0700 | [diff] [blame] | 1768 | break; |
| 1769 | case PM_EVENT_SUSPEND: |
Rafael J. Wysocki | 3a2d5b7 | 2008-02-23 19:13:25 +0100 | [diff] [blame] | 1770 | case PM_EVENT_HIBERNATE: |
David Brownell | 1858499 | 2006-08-14 23:11:06 -0700 | [diff] [blame] | 1771 | case PM_EVENT_PRETHAW: /* explicitly discard hw state */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1772 | port_power(sl811, 0); |
David Brownell | 1858499 | 2006-08-14 23:11:06 -0700 | [diff] [blame] | 1773 | break; |
| 1774 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1775 | return retval; |
| 1776 | } |
| 1777 | |
| 1778 | static int |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1779 | sl811h_resume(struct platform_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1780 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1781 | struct usb_hcd *hcd = platform_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | struct sl811 *sl811 = hcd_to_sl811(hcd); |
| 1783 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1784 | /* with no "check to see if VBUS is still powered" board hook, |
| 1785 | * let's assume it'd only be powered to enable remote wakeup. |
| 1786 | */ |
Alan Stern | 70a1c9e | 2008-03-06 17:00:58 -0500 | [diff] [blame] | 1787 | if (!sl811->port1 || !device_can_wakeup(&hcd->self.root_hub->dev)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1788 | sl811->port1 = 0; |
| 1789 | port_power(sl811, 1); |
Alan Stern | 1c50c31 | 2005-11-14 11:45:38 -0500 | [diff] [blame] | 1790 | usb_root_hub_lost_power(hcd->self.root_hub); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1791 | return 0; |
| 1792 | } |
| 1793 | |
Alan Stern | 0c0382e | 2005-10-13 17:08:02 -0400 | [diff] [blame] | 1794 | return sl811h_bus_resume(hcd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1795 | } |
| 1796 | |
| 1797 | #else |
| 1798 | |
| 1799 | #define sl811h_suspend NULL |
| 1800 | #define sl811h_resume NULL |
| 1801 | |
| 1802 | #endif |
| 1803 | |
| 1804 | |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 1805 | /* this driver is exported so sl811_cs can depend on it */ |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1806 | struct platform_driver sl811h_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1807 | .probe = sl811h_probe, |
Bill Pemberton | 7690417 | 2012-11-19 13:21:08 -0500 | [diff] [blame] | 1808 | .remove = sl811h_remove, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1809 | |
| 1810 | .suspend = sl811h_suspend, |
| 1811 | .resume = sl811h_resume, |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 1812 | .driver = { |
| 1813 | .name = (char *) hcd_name, |
| 1814 | .owner = THIS_MODULE, |
| 1815 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1816 | }; |
David Brownell | 1e9a47b | 2005-05-26 05:55:55 -0700 | [diff] [blame] | 1817 | EXPORT_SYMBOL(sl811h_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1818 | |
Tobias Klauser | 6ef1a92 | 2012-02-28 12:57:23 +0100 | [diff] [blame] | 1819 | module_platform_driver(sl811h_driver); |