2 * SL811HS HCD (Host Controller Driver) for USB.
4 * Copyright (C) 2004 Psion Teklogix (for NetBook PRO)
5 * Copyright (C) 2004-2005 David Brownell
7 * Periodic scheduling is based on Roman's OHCI code
8 * Copyright (C) 1999 Roman Weissgaerber
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).
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.
21 * Status: Passed basic stress testing, works with hubs, mice, keyboards,
25 * - usb suspend/resume triggered by sl811 (with USB_SUSPEND)
26 * - various issues noted in the code
27 * - performance work; use both register banks; ...
28 * - use urb->iso_frame_desc[] with ISO transfers
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>
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>
47 #include <linux/usb/sl811.h>
48 #include <linux/platform_device.h>
52 #include <asm/system.h>
53 #include <asm/byteorder.h>
55 #include "../core/hcd.h"
59 MODULE_DESCRIPTION("SL811HS USB Host Controller Driver");
60 MODULE_LICENSE("GPL");
61 MODULE_ALIAS("platform:sl811-hcd");
63 #define DRIVER_VERSION "19 May 2005"
67 # define STUB_DEBUG_FILE
70 /* for now, use only one transfer register bank */
73 /* this doesn't understand urb->iso_frame_desc[], but if you had a driver
74 * that just queued one ISO frame per URB then iso transfers "should" work
75 * using the normal urb status fields.
82 static const char hcd_name[] = "sl811-hcd";
84 /*-------------------------------------------------------------------------*/
86 static void port_power(struct sl811 *sl811, int is_on)
88 struct usb_hcd *hcd = sl811_to_hcd(sl811);
90 /* hub is inactive unless the port is powered */
92 if (sl811->port1 & (1 << USB_PORT_FEAT_POWER))
95 sl811->port1 = (1 << USB_PORT_FEAT_POWER);
96 sl811->irq_enable = SL11H_INTMASK_INSRMV;
97 hcd->self.controller->power.power_state = PMSG_ON;
100 sl811->irq_enable = 0;
101 hcd->state = HC_STATE_HALT;
102 hcd->self.controller->power.power_state = PMSG_SUSPEND;
105 sl811_write(sl811, SL11H_IRQ_ENABLE, 0);
106 sl811_write(sl811, SL11H_IRQ_STATUS, ~0);
108 if (sl811->board && sl811->board->port_power) {
109 /* switch VBUS, at 500mA unless hub power budget gets set */
110 DBG("power %s\n", is_on ? "on" : "off");
111 sl811->board->port_power(hcd->self.controller, is_on);
114 /* reset as thoroughly as we can */
115 if (sl811->board && sl811->board->reset)
116 sl811->board->reset(hcd->self.controller);
118 sl811_write(sl811, SL11H_CTLREG1, SL11H_CTL1MASK_SE0);
122 sl811_write(sl811, SL11H_IRQ_ENABLE, 0);
123 sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1);
124 sl811_write(sl811, SL811HS_CTLREG2, SL811HS_CTL2_INIT);
125 sl811_write(sl811, SL11H_IRQ_ENABLE, sl811->irq_enable);
127 // if !is_on, put into lowpower mode now
130 /*-------------------------------------------------------------------------*/
132 /* This is a PIO-only HCD. Queueing appends URBs to the endpoint's queue,
133 * and may start I/O. Endpoint queues are scanned during completion irq
134 * handlers (one per packet: ACK, NAK, faults, etc) and urb cancellation.
136 * Using an external DMA engine to copy a packet at a time could work,
137 * though setup/teardown costs may be too big to make it worthwhile.
140 /* SETUP starts a new control request. Devices are not allowed to
141 * STALL or NAK these; they must cancel any pending control requests.
143 static void setup_packet(
145 struct sl811h_ep *ep,
153 void __iomem *data_reg;
155 addr = SL811HS_PACKET_BUF(bank == 0);
156 len = sizeof(struct usb_ctrlrequest);
157 data_reg = sl811->data_reg;
158 sl811_write_buf(sl811, addr, urb->setup_packet, len);
160 /* autoincrementing */
161 sl811_write(sl811, bank + SL11H_BUFADDRREG, addr);
162 writeb(len, data_reg);
163 writeb(SL_SETUP /* | ep->epnum */, data_reg);
164 writeb(usb_pipedevice(urb->pipe), data_reg);
166 /* always OUT/data0 */ ;
167 sl811_write(sl811, bank + SL11H_HOSTCTLREG,
168 control | SL11H_HCTLMASK_OUT);
170 PACKET("SETUP qh%p\n", ep);
173 /* STATUS finishes control requests, often after IN or OUT data packets */
174 static void status_packet(
176 struct sl811h_ep *ep,
183 void __iomem *data_reg;
185 do_out = urb->transfer_buffer_length && usb_pipein(urb->pipe);
186 data_reg = sl811->data_reg;
188 /* autoincrementing */
189 sl811_write(sl811, bank + SL11H_BUFADDRREG, 0);
191 writeb((do_out ? SL_OUT : SL_IN) /* | ep->epnum */, data_reg);
192 writeb(usb_pipedevice(urb->pipe), data_reg);
194 /* always data1; sometimes IN */
195 control |= SL11H_HCTLMASK_TOGGLE;
197 control |= SL11H_HCTLMASK_OUT;
198 sl811_write(sl811, bank + SL11H_HOSTCTLREG, control);
200 PACKET("STATUS%s/%s qh%p\n", ep->nak_count ? "/retry" : "",
201 do_out ? "out" : "in", ep);
204 /* IN packets can be used with any type of endpoint. here we just
205 * start the transfer, data from the peripheral may arrive later.
206 * urb->iso_frame_desc is currently ignored here...
208 static void in_packet(
210 struct sl811h_ep *ep,
218 void __iomem *data_reg;
220 /* avoid losing data on overflow */
222 addr = SL811HS_PACKET_BUF(bank == 0);
223 if (!(control & SL11H_HCTLMASK_ISOCH)
224 && usb_gettoggle(urb->dev, ep->epnum, 0))
225 control |= SL11H_HCTLMASK_TOGGLE;
226 data_reg = sl811->data_reg;
228 /* autoincrementing */
229 sl811_write(sl811, bank + SL11H_BUFADDRREG, addr);
230 writeb(len, data_reg);
231 writeb(SL_IN | ep->epnum, data_reg);
232 writeb(usb_pipedevice(urb->pipe), data_reg);
234 sl811_write(sl811, bank + SL11H_HOSTCTLREG, control);
235 ep->length = min((int)len,
236 urb->transfer_buffer_length - urb->actual_length);
237 PACKET("IN%s/%d qh%p len%d\n", ep->nak_count ? "/retry" : "",
238 !!usb_gettoggle(urb->dev, ep->epnum, 0), ep, len);
241 /* OUT packets can be used with any type of endpoint.
242 * urb->iso_frame_desc is currently ignored here...
244 static void out_packet(
246 struct sl811h_ep *ep,
255 void __iomem *data_reg;
257 buf = urb->transfer_buffer + urb->actual_length;
260 len = min((int)ep->maxpacket,
261 urb->transfer_buffer_length - urb->actual_length);
263 if (!(control & SL11H_HCTLMASK_ISOCH)
264 && usb_gettoggle(urb->dev, ep->epnum, 1))
265 control |= SL11H_HCTLMASK_TOGGLE;
266 addr = SL811HS_PACKET_BUF(bank == 0);
267 data_reg = sl811->data_reg;
269 sl811_write_buf(sl811, addr, buf, len);
271 /* autoincrementing */
272 sl811_write(sl811, bank + SL11H_BUFADDRREG, addr);
273 writeb(len, data_reg);
274 writeb(SL_OUT | ep->epnum, data_reg);
275 writeb(usb_pipedevice(urb->pipe), data_reg);
277 sl811_write(sl811, bank + SL11H_HOSTCTLREG,
278 control | SL11H_HCTLMASK_OUT);
280 PACKET("OUT%s/%d qh%p len%d\n", ep->nak_count ? "/retry" : "",
281 !!usb_gettoggle(urb->dev, ep->epnum, 1), ep, len);
284 /*-------------------------------------------------------------------------*/
286 /* caller updates on-chip enables later */
288 static inline void sofirq_on(struct sl811 *sl811)
290 if (sl811->irq_enable & SL11H_INTMASK_SOFINTR)
292 VDBG("sof irq on\n");
293 sl811->irq_enable |= SL11H_INTMASK_SOFINTR;
296 static inline void sofirq_off(struct sl811 *sl811)
298 if (!(sl811->irq_enable & SL11H_INTMASK_SOFINTR))
300 VDBG("sof irq off\n");
301 sl811->irq_enable &= ~SL11H_INTMASK_SOFINTR;
304 /*-------------------------------------------------------------------------*/
306 /* pick the next endpoint for a transaction, and issue it.
307 * frames start with periodic transfers (after whatever is pending
308 * from the previous frame), and the rest of the time is async
309 * transfers, scheduled round-robin.
311 static struct sl811h_ep *start(struct sl811 *sl811, u8 bank)
313 struct sl811h_ep *ep;
318 /* use endpoint at schedule head */
319 if (sl811->next_periodic) {
320 ep = sl811->next_periodic;
321 sl811->next_periodic = ep->next;
323 if (sl811->next_async)
324 ep = sl811->next_async;
325 else if (!list_empty(&sl811->async))
326 ep = container_of(sl811->async.next,
327 struct sl811h_ep, schedule);
329 /* could set up the first fullspeed periodic
330 * transfer for the next frame ...
336 if ((bank && sl811->active_b == ep) || sl811->active_a == ep)
340 if (ep->schedule.next == &sl811->async)
341 sl811->next_async = NULL;
343 sl811->next_async = container_of(ep->schedule.next,
344 struct sl811h_ep, schedule);
347 if (unlikely(list_empty(&ep->hep->urb_list))) {
348 DBG("empty %p queue?\n", ep);
352 urb = container_of(ep->hep->urb_list.next, struct urb, urb_list);
353 control = ep->defctrl;
355 /* if this frame doesn't have enough time left to transfer this
356 * packet, wait till the next frame. too-simple algorithm...
358 fclock = sl811_read(sl811, SL11H_SOFTMRREG) << 6;
359 fclock -= 100; /* setup takes not much time */
360 if (urb->dev->speed == USB_SPEED_LOW) {
361 if (control & SL11H_HCTLMASK_PREAMBLE) {
362 /* also note erratum 1: some hubs won't work */
365 fclock -= ep->maxpacket << 8;
367 /* erratum 2: AFTERSOF only works for fullspeed */
370 sl811->stat_overrun++;
375 fclock -= 12000 / 19; /* 19 64byte packets/msec */
378 sl811->stat_overrun++;
379 control |= SL11H_HCTLMASK_AFTERSOF;
381 /* throttle bulk/control irq noise */
382 } else if (ep->nak_count)
383 control |= SL11H_HCTLMASK_AFTERSOF;
387 switch (ep->nextpid) {
389 in_packet(sl811, ep, urb, bank, control);
392 out_packet(sl811, ep, urb, bank, control);
395 setup_packet(sl811, ep, urb, bank, control);
397 case USB_PID_ACK: /* for control status */
398 status_packet(sl811, ep, urb, bank, control);
401 DBG("bad ep%p pid %02x\n", ep, ep->nextpid);
407 #define MIN_JIFFIES ((msecs_to_jiffies(2) > 1) ? msecs_to_jiffies(2) : 2)
409 static inline void start_transfer(struct sl811 *sl811)
411 if (sl811->port1 & (1 << USB_PORT_FEAT_SUSPEND))
413 if (sl811->active_a == NULL) {
414 sl811->active_a = start(sl811, SL811_EP_A(SL811_HOST_BUF));
415 if (sl811->active_a != NULL)
416 sl811->jiffies_a = jiffies + MIN_JIFFIES;
419 if (sl811->active_b == NULL) {
420 sl811->active_b = start(sl811, SL811_EP_B(SL811_HOST_BUF));
421 if (sl811->active_b != NULL)
422 sl811->jiffies_b = jiffies + MIN_JIFFIES;
427 static void finish_request(
429 struct sl811h_ep *ep,
432 ) __releases(sl811->lock) __acquires(sl811->lock)
436 if (usb_pipecontrol(urb->pipe))
437 ep->nextpid = USB_PID_SETUP;
439 usb_hcd_unlink_urb_from_ep(sl811_to_hcd(sl811), urb);
440 spin_unlock(&sl811->lock);
441 usb_hcd_giveback_urb(sl811_to_hcd(sl811), urb, status);
442 spin_lock(&sl811->lock);
444 /* leave active endpoints in the schedule */
445 if (!list_empty(&ep->hep->urb_list))
448 /* async deschedule? */
449 if (!list_empty(&ep->schedule)) {
450 list_del_init(&ep->schedule);
451 if (ep == sl811->next_async)
452 sl811->next_async = NULL;
456 /* periodic deschedule */
457 DBG("deschedule qh%d/%p branch %d\n", ep->period, ep, ep->branch);
458 for (i = ep->branch; i < PERIODIC_SIZE; i += ep->period) {
459 struct sl811h_ep *temp;
460 struct sl811h_ep **prev = &sl811->periodic[i];
462 while (*prev && ((temp = *prev) != ep))
466 sl811->load[i] -= ep->load;
468 ep->branch = PERIODIC_SIZE;
469 sl811->periodic_count--;
470 sl811_to_hcd(sl811)->self.bandwidth_allocated
471 -= ep->load / ep->period;
472 if (ep == sl811->next_periodic)
473 sl811->next_periodic = ep->next;
475 /* we might turn SOFs back on again for the async schedule */
476 if (sl811->periodic_count == 0)
481 done(struct sl811 *sl811, struct sl811h_ep *ep, u8 bank)
485 int urbstat = -EINPROGRESS;
490 status = sl811_read(sl811, bank + SL11H_PKTSTATREG);
492 urb = container_of(ep->hep->urb_list.next, struct urb, urb_list);
494 /* we can safely ignore NAKs */
495 if (status & SL11H_STATMASK_NAK) {
496 // PACKET("...NAK_%02x qh%p\n", bank, ep);
501 /* ACK advances transfer, toggle, and maybe queue */
502 } else if (status & SL11H_STATMASK_ACK) {
503 struct usb_device *udev = urb->dev;
507 /* urb->iso_frame_desc is currently ignored here... */
509 ep->nak_count = ep->error_count = 0;
510 switch (ep->nextpid) {
512 // PACKET("...ACK/out_%02x qh%p\n", bank, ep);
513 urb->actual_length += ep->length;
514 usb_dotoggle(udev, ep->epnum, 1);
515 if (urb->actual_length
516 == urb->transfer_buffer_length) {
517 if (usb_pipecontrol(urb->pipe))
518 ep->nextpid = USB_PID_ACK;
520 /* some bulk protocols terminate OUT transfers
521 * by a short packet, using ZLPs not padding.
523 else if (ep->length < ep->maxpacket
524 || !(urb->transfer_flags
530 // PACKET("...ACK/in_%02x qh%p\n", bank, ep);
531 buf = urb->transfer_buffer + urb->actual_length;
533 len = ep->maxpacket - sl811_read(sl811,
534 bank + SL11H_XFERCNTREG);
535 if (len > ep->length) {
537 urbstat = -EOVERFLOW;
539 urb->actual_length += len;
540 sl811_read_buf(sl811, SL811HS_PACKET_BUF(bank == 0),
542 usb_dotoggle(udev, ep->epnum, 0);
543 if (urbstat == -EINPROGRESS &&
544 (len < ep->maxpacket ||
545 urb->actual_length ==
546 urb->transfer_buffer_length)) {
547 if (usb_pipecontrol(urb->pipe))
548 ep->nextpid = USB_PID_ACK;
554 // PACKET("...ACK/setup_%02x qh%p\n", bank, ep);
555 if (urb->transfer_buffer_length == urb->actual_length)
556 ep->nextpid = USB_PID_ACK;
557 else if (usb_pipeout(urb->pipe)) {
558 usb_settoggle(udev, 0, 1, 1);
559 ep->nextpid = USB_PID_OUT;
561 usb_settoggle(udev, 0, 0, 1);
562 ep->nextpid = USB_PID_IN;
566 // PACKET("...ACK/status_%02x qh%p\n", bank, ep);
571 /* STALL stops all transfers */
572 } else if (status & SL11H_STATMASK_STALL) {
573 PACKET("...STALL_%02x qh%p\n", bank, ep);
574 ep->nak_count = ep->error_count = 0;
577 /* error? retry, until "3 strikes" */
578 } else if (++ep->error_count >= 3) {
579 if (status & SL11H_STATMASK_TMOUT)
581 else if (status & SL11H_STATMASK_OVF)
582 urbstat = -EOVERFLOW;
586 PACKET("...3STRIKES_%02x %02x qh%p stat %d\n",
587 bank, status, ep, urbstat);
590 if (urbstat != -EINPROGRESS || urb->unlinked)
591 finish_request(sl811, ep, urb, urbstat);
594 static inline u8 checkdone(struct sl811 *sl811)
599 if (sl811->active_a && time_before_eq(sl811->jiffies_a, jiffies)) {
600 ctl = sl811_read(sl811, SL811_EP_A(SL11H_HOSTCTLREG));
601 if (ctl & SL11H_HCTLMASK_ARM)
602 sl811_write(sl811, SL811_EP_A(SL11H_HOSTCTLREG), 0);
603 DBG("%s DONE_A: ctrl %02x sts %02x\n",
604 (ctl & SL11H_HCTLMASK_ARM) ? "timeout" : "lost",
606 sl811_read(sl811, SL811_EP_A(SL11H_PKTSTATREG)));
607 irqstat |= SL11H_INTMASK_DONE_A;
610 if (sl811->active_b && time_before_eq(sl811->jiffies_b, jiffies)) {
611 ctl = sl811_read(sl811, SL811_EP_B(SL11H_HOSTCTLREG));
612 if (ctl & SL11H_HCTLMASK_ARM)
613 sl811_write(sl811, SL811_EP_B(SL11H_HOSTCTLREG), 0);
614 DBG("%s DONE_B: ctrl %02x sts %02x\n",
615 (ctl & SL11H_HCTLMASK_ARM) ? "timeout" : "lost",
617 sl811_read(sl811, SL811_EP_B(SL11H_PKTSTATREG)));
618 irqstat |= SL11H_INTMASK_DONE_A;
624 static irqreturn_t sl811h_irq(struct usb_hcd *hcd)
626 struct sl811 *sl811 = hcd_to_sl811(hcd);
628 irqreturn_t ret = IRQ_NONE;
629 unsigned retries = 5;
631 spin_lock(&sl811->lock);
634 irqstat = sl811_read(sl811, SL11H_IRQ_STATUS) & ~SL11H_INTMASK_DP;
636 sl811_write(sl811, SL11H_IRQ_STATUS, irqstat);
637 irqstat &= sl811->irq_enable;
641 /* this may no longer be necessary ... */
643 irqstat = checkdone(sl811);
649 /* USB packets, not necessarily handled in the order they're
650 * issued ... that's fine if they're different endpoints.
652 if (irqstat & SL11H_INTMASK_DONE_A) {
653 done(sl811, sl811->active_a, SL811_EP_A(SL811_HOST_BUF));
654 sl811->active_a = NULL;
658 if (irqstat & SL11H_INTMASK_DONE_B) {
659 done(sl811, sl811->active_b, SL811_EP_B(SL811_HOST_BUF));
660 sl811->active_b = NULL;
664 if (irqstat & SL11H_INTMASK_SOFINTR) {
667 index = sl811->frame++ % (PERIODIC_SIZE - 1);
670 /* be graceful about almost-inevitable periodic schedule
671 * overruns: continue the previous frame's transfers iff
672 * this one has nothing scheduled.
674 if (sl811->next_periodic) {
675 // ERR("overrun to slot %d\n", index);
676 sl811->stat_overrun++;
678 if (sl811->periodic[index])
679 sl811->next_periodic = sl811->periodic[index];
682 /* khubd manages debouncing and wakeup */
683 if (irqstat & SL11H_INTMASK_INSRMV) {
684 sl811->stat_insrmv++;
686 /* most stats are reset for each VBUS session */
687 sl811->stat_wake = 0;
691 sl811->stat_lost = 0;
694 sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1);
696 sl811->irq_enable = SL11H_INTMASK_INSRMV;
697 sl811_write(sl811, SL11H_IRQ_ENABLE, sl811->irq_enable);
699 /* usbcore nukes other pending transactions on disconnect */
700 if (sl811->active_a) {
701 sl811_write(sl811, SL811_EP_A(SL11H_HOSTCTLREG), 0);
702 finish_request(sl811, sl811->active_a,
703 container_of(sl811->active_a
704 ->hep->urb_list.next,
705 struct urb, urb_list),
707 sl811->active_a = NULL;
710 if (sl811->active_b) {
711 sl811_write(sl811, SL811_EP_B(SL11H_HOSTCTLREG), 0);
712 finish_request(sl811, sl811->active_b,
713 container_of(sl811->active_b
714 ->hep->urb_list.next,
715 struct urb, urb_list),
717 sl811->active_b = NULL;
721 /* port status seems weird until after reset, so
722 * force the reset and make khubd clean up later.
724 sl811->port1 |= (1 << USB_PORT_FEAT_C_CONNECTION)
725 | (1 << USB_PORT_FEAT_CONNECTION);
727 } else if (irqstat & SL11H_INTMASK_RD) {
728 if (sl811->port1 & (1 << USB_PORT_FEAT_SUSPEND)) {
730 sl811->port1 |= 1 << USB_PORT_FEAT_C_SUSPEND;
733 irqstat &= ~SL11H_INTMASK_RD;
737 if (sl811->port1 & (1 << USB_PORT_FEAT_ENABLE))
738 start_transfer(sl811);
744 if (sl811->periodic_count == 0 && list_empty(&sl811->async))
746 sl811_write(sl811, SL11H_IRQ_ENABLE, sl811->irq_enable);
748 spin_unlock(&sl811->lock);
753 /*-------------------------------------------------------------------------*/
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.
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.
762 #define MAX_PERIODIC_LOAD 500 /* out of 1000 usec */
764 static int balance(struct sl811 *sl811, u16 period, u16 load)
766 int i, branch = -ENOSPC;
768 /* search for the least loaded schedule branch of that period
769 * which has enough bandwidth left unreserved.
771 for (i = 0; i < period ; i++) {
772 if (branch < 0 || sl811->load[branch] > sl811->load[i]) {
775 for (j = i; j < PERIODIC_SIZE; j += period) {
776 if ((sl811->load[j] + load)
780 if (j < PERIODIC_SIZE)
788 /*-------------------------------------------------------------------------*/
790 static int sl811h_urb_enqueue(
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;
805 struct usb_host_endpoint *hep = urb->ep;
808 if (type == PIPE_ISOCHRONOUS)
812 /* avoid all allocations within spinlocks */
814 ep = kzalloc(sizeof *ep, mem_flags);
816 spin_lock_irqsave(&sl811->lock, flags);
818 /* don't submit to a dead or disabled port */
819 if (!(sl811->port1 & (1 << USB_PORT_FEAT_ENABLE))
820 || !HC_IS_RUNNING(hcd->state)) {
823 goto fail_not_linked;
825 retval = usb_hcd_link_urb_to_ep(hcd, urb);
828 goto fail_not_linked;
839 INIT_LIST_HEAD(&ep->schedule);
842 ep->maxpacket = usb_maxpacket(udev, urb->pipe, is_out);
843 ep->defctrl = SL11H_HCTLMASK_ARM | SL11H_HCTLMASK_ENABLE;
844 usb_settoggle(udev, epnum, is_out, 0);
846 if (type == PIPE_CONTROL)
847 ep->nextpid = USB_PID_SETUP;
849 ep->nextpid = USB_PID_OUT;
851 ep->nextpid = USB_PID_IN;
853 if (ep->maxpacket > H_MAXPACKET) {
854 /* iso packets up to 240 bytes could work... */
855 DBG("dev %d ep%d maxpacket %d\n",
856 udev->devnum, epnum, ep->maxpacket);
861 if (udev->speed == USB_SPEED_LOW) {
862 /* send preamble for external hub? */
863 if (!(sl811->ctrl1 & SL11H_CTL1MASK_LSPD))
864 ep->defctrl |= SL11H_HCTLMASK_PREAMBLE;
867 case PIPE_ISOCHRONOUS:
869 if (urb->interval > PERIODIC_SIZE)
870 urb->interval = PERIODIC_SIZE;
871 ep->period = urb->interval;
872 ep->branch = PERIODIC_SIZE;
873 if (type == PIPE_ISOCHRONOUS)
874 ep->defctrl |= SL11H_HCTLMASK_ISOCH;
875 ep->load = usb_calc_bus_time(udev->speed, !is_out,
876 (type == PIPE_ISOCHRONOUS),
877 usb_maxpacket(udev, pipe, is_out))
886 /* maybe put endpoint into schedule */
890 if (list_empty(&ep->schedule))
891 list_add_tail(&ep->schedule, &sl811->async);
893 case PIPE_ISOCHRONOUS:
895 urb->interval = ep->period;
896 if (ep->branch < PERIODIC_SIZE) {
897 /* NOTE: the phase is correct here, but the value
898 * needs offsetting by the transfer queue depth.
899 * All current drivers ignore start_frame, so this
900 * is unlikely to ever matter...
902 urb->start_frame = (sl811->frame & (PERIODIC_SIZE - 1))
907 retval = balance(sl811, ep->period, ep->load);
912 urb->start_frame = (sl811->frame & (PERIODIC_SIZE - 1))
915 /* sort each schedule branch by period (slow before fast)
916 * to share the faster parts of the tree without needing
917 * dummy/placeholder nodes
919 DBG("schedule qh%d/%p branch %d\n", ep->period, ep, ep->branch);
920 for (i = ep->branch; i < PERIODIC_SIZE; i += ep->period) {
921 struct sl811h_ep **prev = &sl811->periodic[i];
922 struct sl811h_ep *here = *prev;
924 while (here && ep != here) {
925 if (ep->period > here->period)
934 sl811->load[i] += ep->load;
936 sl811->periodic_count++;
937 hcd->self.bandwidth_allocated += ep->load / ep->period;
942 start_transfer(sl811);
943 sl811_write(sl811, SL11H_IRQ_ENABLE, sl811->irq_enable);
946 usb_hcd_unlink_urb_from_ep(hcd, urb);
948 spin_unlock_irqrestore(&sl811->lock, flags);
952 static int sl811h_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
954 struct sl811 *sl811 = hcd_to_sl811(hcd);
955 struct usb_host_endpoint *hep;
957 struct sl811h_ep *ep;
960 spin_lock_irqsave(&sl811->lock, flags);
961 retval = usb_hcd_check_unlink_urb(hcd, urb, status);
968 /* finish right away if this urb can't be active ...
969 * note that some drivers wrongly expect delays
971 if (ep->hep->urb_list.next != &urb->urb_list) {
972 /* not front of queue? never active */
974 /* for active transfers, we expect an IRQ */
975 } else if (sl811->active_a == ep) {
976 if (time_before_eq(sl811->jiffies_a, jiffies)) {
977 /* happens a lot with lowspeed?? */
978 DBG("giveup on DONE_A: ctrl %02x sts %02x\n",
980 SL811_EP_A(SL11H_HOSTCTLREG)),
982 SL811_EP_A(SL11H_PKTSTATREG)));
983 sl811_write(sl811, SL811_EP_A(SL11H_HOSTCTLREG),
985 sl811->active_a = NULL;
989 } else if (sl811->active_b == ep) {
990 if (time_before_eq(sl811->jiffies_a, jiffies)) {
991 /* happens a lot with lowspeed?? */
992 DBG("giveup on DONE_B: ctrl %02x sts %02x\n",
994 SL811_EP_B(SL11H_HOSTCTLREG)),
996 SL811_EP_B(SL11H_PKTSTATREG)));
997 sl811_write(sl811, SL811_EP_B(SL11H_HOSTCTLREG),
999 sl811->active_b = NULL;
1004 /* front of queue for inactive endpoint */
1008 finish_request(sl811, ep, urb, 0);
1010 VDBG("dequeue, urb %p active %s; wait4irq\n", urb,
1011 (sl811->active_a == ep) ? "A" : "B");
1015 spin_unlock_irqrestore(&sl811->lock, flags);
1020 sl811h_endpoint_disable(struct usb_hcd *hcd, struct usb_host_endpoint *hep)
1022 struct sl811h_ep *ep = hep->hcpriv;
1027 /* assume we'd just wait for the irq */
1028 if (!list_empty(&hep->urb_list))
1030 if (!list_empty(&hep->urb_list))
1031 WARN("ep %p not empty?\n", ep);
1038 sl811h_get_frame(struct usb_hcd *hcd)
1040 struct sl811 *sl811 = hcd_to_sl811(hcd);
1042 /* wrong except while periodic transfers are scheduled;
1043 * never matches the on-the-wire frame;
1044 * subject to overruns.
1046 return sl811->frame;
1050 /*-------------------------------------------------------------------------*/
1052 /* the virtual root hub timer IRQ checks for hub status */
1054 sl811h_hub_status_data(struct usb_hcd *hcd, char *buf)
1056 struct sl811 *sl811 = hcd_to_sl811(hcd);
1058 unsigned long flags;
1060 /* non-SMP HACK: use root hub timer as i/o watchdog
1061 * this seems essential when SOF IRQs aren't in use...
1063 local_irq_save(flags);
1064 if (!timer_pending(&sl811->timer)) {
1065 if (sl811h_irq( /* ~0, */ hcd) != IRQ_NONE)
1068 local_irq_restore(flags);
1071 if (!(sl811->port1 & (0xffff << 16)))
1074 /* tell khubd port 1 changed */
1080 sl811h_hub_descriptor (
1081 struct sl811 *sl811,
1082 struct usb_hub_descriptor *desc
1086 desc->bDescriptorType = 0x29;
1087 desc->bHubContrCurrent = 0;
1089 desc->bNbrPorts = 1;
1090 desc->bDescLength = 9;
1092 /* per-port power switching (gang of one!), or none */
1093 desc->bPwrOn2PwrGood = 0;
1094 if (sl811->board && sl811->board->port_power) {
1095 desc->bPwrOn2PwrGood = sl811->board->potpg;
1096 if (!desc->bPwrOn2PwrGood)
1097 desc->bPwrOn2PwrGood = 10;
1102 /* no overcurrent errors detection/handling */
1105 desc->wHubCharacteristics = (__force __u16)cpu_to_le16(temp);
1107 /* two bitmaps: ports removable, and legacy PortPwrCtrlMask */
1108 desc->bitmap[0] = 0 << 1;
1109 desc->bitmap[1] = ~0;
1113 sl811h_timer(unsigned long _sl811)
1115 struct sl811 *sl811 = (void *) _sl811;
1116 unsigned long flags;
1118 u8 signaling = sl811->ctrl1 & SL11H_CTL1MASK_FORCE;
1119 const u32 mask = (1 << USB_PORT_FEAT_CONNECTION)
1120 | (1 << USB_PORT_FEAT_ENABLE)
1121 | (1 << USB_PORT_FEAT_LOWSPEED);
1123 spin_lock_irqsave(&sl811->lock, flags);
1125 /* stop special signaling */
1126 sl811->ctrl1 &= ~SL11H_CTL1MASK_FORCE;
1127 sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1);
1130 irqstat = sl811_read(sl811, SL11H_IRQ_STATUS);
1132 switch (signaling) {
1133 case SL11H_CTL1MASK_SE0:
1135 sl811->port1 = (1 << USB_PORT_FEAT_C_RESET)
1136 | (1 << USB_PORT_FEAT_POWER);
1138 /* don't wrongly ack RD */
1139 if (irqstat & SL11H_INTMASK_INSRMV)
1140 irqstat &= ~SL11H_INTMASK_RD;
1142 case SL11H_CTL1MASK_K:
1143 DBG("end resume\n");
1144 sl811->port1 &= ~(1 << USB_PORT_FEAT_SUSPEND);
1147 DBG("odd timer signaling: %02x\n", signaling);
1150 sl811_write(sl811, SL11H_IRQ_STATUS, irqstat);
1152 if (irqstat & SL11H_INTMASK_RD) {
1153 /* usbcore nukes all pending transactions on disconnect */
1154 if (sl811->port1 & (1 << USB_PORT_FEAT_CONNECTION))
1155 sl811->port1 |= (1 << USB_PORT_FEAT_C_CONNECTION)
1156 | (1 << USB_PORT_FEAT_C_ENABLE);
1157 sl811->port1 &= ~mask;
1158 sl811->irq_enable = SL11H_INTMASK_INSRMV;
1160 sl811->port1 |= mask;
1161 if (irqstat & SL11H_INTMASK_DP)
1162 sl811->port1 &= ~(1 << USB_PORT_FEAT_LOWSPEED);
1163 sl811->irq_enable = SL11H_INTMASK_INSRMV | SL11H_INTMASK_RD;
1166 if (sl811->port1 & (1 << USB_PORT_FEAT_CONNECTION)) {
1167 u8 ctrl2 = SL811HS_CTL2_INIT;
1169 sl811->irq_enable |= SL11H_INTMASK_DONE_A;
1171 sl811->irq_enable |= SL11H_INTMASK_DONE_B;
1173 if (sl811->port1 & (1 << USB_PORT_FEAT_LOWSPEED)) {
1174 sl811->ctrl1 |= SL11H_CTL1MASK_LSPD;
1175 ctrl2 |= SL811HS_CTL2MASK_DSWAP;
1178 /* start SOFs flowing, kickstarting with A registers */
1179 sl811->ctrl1 |= SL11H_CTL1MASK_SOF_ENA;
1180 sl811_write(sl811, SL11H_SOFLOWREG, 0xe0);
1181 sl811_write(sl811, SL811HS_CTLREG2, ctrl2);
1183 /* autoincrementing */
1184 sl811_write(sl811, SL811_EP_A(SL11H_BUFLNTHREG), 0);
1185 writeb(SL_SOF, sl811->data_reg);
1186 writeb(0, sl811->data_reg);
1187 sl811_write(sl811, SL811_EP_A(SL11H_HOSTCTLREG),
1188 SL11H_HCTLMASK_ARM);
1190 /* khubd provides debounce delay */
1194 sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1);
1197 sl811_write(sl811, SL11H_IRQ_ENABLE, sl811->irq_enable);
1198 spin_unlock_irqrestore(&sl811->lock, flags);
1203 struct usb_hcd *hcd,
1210 struct sl811 *sl811 = hcd_to_sl811(hcd);
1212 unsigned long flags;
1214 spin_lock_irqsave(&sl811->lock, flags);
1217 case ClearHubFeature:
1220 case C_HUB_OVER_CURRENT:
1221 case C_HUB_LOCAL_POWER:
1227 case ClearPortFeature:
1228 if (wIndex != 1 || wLength != 0)
1232 case USB_PORT_FEAT_ENABLE:
1233 sl811->port1 &= (1 << USB_PORT_FEAT_POWER);
1235 sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1);
1236 sl811->irq_enable = SL11H_INTMASK_INSRMV;
1237 sl811_write(sl811, SL11H_IRQ_ENABLE,
1240 case USB_PORT_FEAT_SUSPEND:
1241 if (!(sl811->port1 & (1 << USB_PORT_FEAT_SUSPEND)))
1244 /* 20 msec of resume/K signaling, other irqs blocked */
1245 DBG("start resume...\n");
1246 sl811->irq_enable = 0;
1247 sl811_write(sl811, SL11H_IRQ_ENABLE,
1249 sl811->ctrl1 |= SL11H_CTL1MASK_K;
1250 sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1);
1252 mod_timer(&sl811->timer, jiffies
1253 + msecs_to_jiffies(20));
1255 case USB_PORT_FEAT_POWER:
1256 port_power(sl811, 0);
1258 case USB_PORT_FEAT_C_ENABLE:
1259 case USB_PORT_FEAT_C_SUSPEND:
1260 case USB_PORT_FEAT_C_CONNECTION:
1261 case USB_PORT_FEAT_C_OVER_CURRENT:
1262 case USB_PORT_FEAT_C_RESET:
1267 sl811->port1 &= ~(1 << wValue);
1269 case GetHubDescriptor:
1270 sl811h_hub_descriptor(sl811, (struct usb_hub_descriptor *) buf);
1273 *(__le32 *) buf = cpu_to_le32(0);
1278 *(__le32 *) buf = cpu_to_le32(sl811->port1);
1281 if (*(u16*)(buf+2)) /* only if wPortChange is interesting */
1283 DBG("GetPortStatus %08x\n", sl811->port1);
1285 case SetPortFeature:
1286 if (wIndex != 1 || wLength != 0)
1289 case USB_PORT_FEAT_SUSPEND:
1290 if (sl811->port1 & (1 << USB_PORT_FEAT_RESET))
1292 if (!(sl811->port1 & (1 << USB_PORT_FEAT_ENABLE)))
1295 DBG("suspend...\n");
1296 sl811->ctrl1 &= ~SL11H_CTL1MASK_SOF_ENA;
1297 sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1);
1299 case USB_PORT_FEAT_POWER:
1300 port_power(sl811, 1);
1302 case USB_PORT_FEAT_RESET:
1303 if (sl811->port1 & (1 << USB_PORT_FEAT_SUSPEND))
1305 if (!(sl811->port1 & (1 << USB_PORT_FEAT_POWER)))
1308 /* 50 msec of reset/SE0 signaling, irqs blocked */
1309 sl811->irq_enable = 0;
1310 sl811_write(sl811, SL11H_IRQ_ENABLE,
1312 sl811->ctrl1 = SL11H_CTL1MASK_SE0;
1313 sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1);
1314 sl811->port1 |= (1 << USB_PORT_FEAT_RESET);
1315 mod_timer(&sl811->timer, jiffies
1316 + msecs_to_jiffies(50));
1321 sl811->port1 |= 1 << wValue;
1326 /* "protocol stall" on error */
1330 spin_unlock_irqrestore(&sl811->lock, flags);
1337 sl811h_bus_suspend(struct usb_hcd *hcd)
1340 DBG("%s\n", __FUNCTION__);
1345 sl811h_bus_resume(struct usb_hcd *hcd)
1348 DBG("%s\n", __FUNCTION__);
1354 #define sl811h_bus_suspend NULL
1355 #define sl811h_bus_resume NULL
1360 /*-------------------------------------------------------------------------*/
1362 #ifdef STUB_DEBUG_FILE
1364 static inline void create_debug_file(struct sl811 *sl811) { }
1365 static inline void remove_debug_file(struct sl811 *sl811) { }
1369 #include <linux/proc_fs.h>
1370 #include <linux/seq_file.h>
1372 static void dump_irq(struct seq_file *s, char *label, u8 mask)
1374 seq_printf(s, "%s %02x%s%s%s%s%s%s\n", label, mask,
1375 (mask & SL11H_INTMASK_DONE_A) ? " done_a" : "",
1376 (mask & SL11H_INTMASK_DONE_B) ? " done_b" : "",
1377 (mask & SL11H_INTMASK_SOFINTR) ? " sof" : "",
1378 (mask & SL11H_INTMASK_INSRMV) ? " ins/rmv" : "",
1379 (mask & SL11H_INTMASK_RD) ? " rd" : "",
1380 (mask & SL11H_INTMASK_DP) ? " dp" : "");
1383 static int proc_sl811h_show(struct seq_file *s, void *unused)
1385 struct sl811 *sl811 = s->private;
1386 struct sl811h_ep *ep;
1389 seq_printf(s, "%s\n%s version %s\nportstatus[1] = %08x\n",
1390 sl811_to_hcd(sl811)->product_desc,
1391 hcd_name, DRIVER_VERSION,
1394 seq_printf(s, "insert/remove: %ld\n", sl811->stat_insrmv);
1395 seq_printf(s, "current session: done_a %ld done_b %ld "
1396 "wake %ld sof %ld overrun %ld lost %ld\n\n",
1397 sl811->stat_a, sl811->stat_b,
1398 sl811->stat_wake, sl811->stat_sof,
1399 sl811->stat_overrun, sl811->stat_lost);
1401 spin_lock_irq(&sl811->lock);
1403 if (sl811->ctrl1 & SL11H_CTL1MASK_SUSPEND)
1404 seq_printf(s, "(suspended)\n\n");
1406 u8 t = sl811_read(sl811, SL11H_CTLREG1);
1408 seq_printf(s, "ctrl1 %02x%s%s%s%s\n", t,
1409 (t & SL11H_CTL1MASK_SOF_ENA) ? " sofgen" : "",
1410 ({char *s; switch (t & SL11H_CTL1MASK_FORCE) {
1411 case SL11H_CTL1MASK_NORMAL: s = ""; break;
1412 case SL11H_CTL1MASK_SE0: s = " se0/reset"; break;
1413 case SL11H_CTL1MASK_K: s = " k/resume"; break;
1414 default: s = "j"; break;
1416 (t & SL11H_CTL1MASK_LSPD) ? " lowspeed" : "",
1417 (t & SL11H_CTL1MASK_SUSPEND) ? " suspend" : "");
1419 dump_irq(s, "irq_enable",
1420 sl811_read(sl811, SL11H_IRQ_ENABLE));
1421 dump_irq(s, "irq_status",
1422 sl811_read(sl811, SL11H_IRQ_STATUS));
1423 seq_printf(s, "frame clocks remaining: %d\n",
1424 sl811_read(sl811, SL11H_SOFTMRREG) << 6);
1427 seq_printf(s, "A: qh%p ctl %02x sts %02x\n", sl811->active_a,
1428 sl811_read(sl811, SL811_EP_A(SL11H_HOSTCTLREG)),
1429 sl811_read(sl811, SL811_EP_A(SL11H_PKTSTATREG)));
1430 seq_printf(s, "B: qh%p ctl %02x sts %02x\n", sl811->active_b,
1431 sl811_read(sl811, SL811_EP_B(SL11H_HOSTCTLREG)),
1432 sl811_read(sl811, SL811_EP_B(SL11H_PKTSTATREG)));
1433 seq_printf(s, "\n");
1434 list_for_each_entry (ep, &sl811->async, schedule) {
1437 seq_printf(s, "%s%sqh%p, ep%d%s, maxpacket %d"
1439 (ep == sl811->active_a) ? "(A) " : "",
1440 (ep == sl811->active_b) ? "(B) " : "",
1442 ({ char *s; switch (ep->nextpid) {
1443 case USB_PID_IN: s = "in"; break;
1444 case USB_PID_OUT: s = "out"; break;
1445 case USB_PID_SETUP: s = "setup"; break;
1446 case USB_PID_ACK: s = "status"; break;
1447 default: s = "?"; break;
1450 ep->nak_count, ep->error_count);
1451 list_for_each_entry (urb, &ep->hep->urb_list, urb_list) {
1452 seq_printf(s, " urb%p, %d/%d\n", urb,
1454 urb->transfer_buffer_length);
1457 if (!list_empty(&sl811->async))
1458 seq_printf(s, "\n");
1460 seq_printf(s, "periodic size= %d\n", PERIODIC_SIZE);
1462 for (i = 0; i < PERIODIC_SIZE; i++) {
1463 ep = sl811->periodic[i];
1466 seq_printf(s, "%2d [%3d]:\n", i, sl811->load[i]);
1468 /* DUMB: prints shared entries multiple times */
1471 " %s%sqh%d/%p (%sdev%d ep%d%s max %d) "
1473 (ep == sl811->active_a) ? "(A) " : "",
1474 (ep == sl811->active_b) ? "(B) " : "",
1476 (ep->udev->speed == USB_SPEED_FULL)
1478 ep->udev->devnum, ep->epnum,
1479 (ep->epnum == 0) ? ""
1480 : ((ep->nextpid == USB_PID_IN)
1483 ep->maxpacket, ep->error_count);
1488 spin_unlock_irq(&sl811->lock);
1489 seq_printf(s, "\n");
1494 static int proc_sl811h_open(struct inode *inode, struct file *file)
1496 return single_open(file, proc_sl811h_show, PDE(inode)->data);
1499 static const struct file_operations proc_ops = {
1500 .open = proc_sl811h_open,
1502 .llseek = seq_lseek,
1503 .release = single_release,
1506 /* expect just one sl811 per system */
1507 static const char proc_filename[] = "driver/sl811h";
1509 static void create_debug_file(struct sl811 *sl811)
1511 struct proc_dir_entry *pde;
1513 pde = create_proc_entry(proc_filename, 0, NULL);
1517 pde->proc_fops = &proc_ops;
1522 static void remove_debug_file(struct sl811 *sl811)
1525 remove_proc_entry(proc_filename, NULL);
1530 /*-------------------------------------------------------------------------*/
1533 sl811h_stop(struct usb_hcd *hcd)
1535 struct sl811 *sl811 = hcd_to_sl811(hcd);
1536 unsigned long flags;
1538 del_timer_sync(&hcd->rh_timer);
1540 spin_lock_irqsave(&sl811->lock, flags);
1541 port_power(sl811, 0);
1542 spin_unlock_irqrestore(&sl811->lock, flags);
1546 sl811h_start(struct usb_hcd *hcd)
1548 struct sl811 *sl811 = hcd_to_sl811(hcd);
1550 /* chip has been reset, VBUS power is off */
1551 hcd->state = HC_STATE_RUNNING;
1554 if (!device_can_wakeup(hcd->self.controller))
1555 device_init_wakeup(hcd->self.controller,
1556 sl811->board->can_wakeup);
1557 hcd->power_budget = sl811->board->power * 2;
1560 /* enable power and interrupts */
1561 port_power(sl811, 1);
1566 /*-------------------------------------------------------------------------*/
1568 static struct hc_driver sl811h_hc_driver = {
1569 .description = hcd_name,
1570 .hcd_priv_size = sizeof(struct sl811),
1573 * generic hardware linkage
1576 .flags = HCD_USB11 | HCD_MEMORY,
1578 /* Basic lifecycle operations */
1579 .start = sl811h_start,
1580 .stop = sl811h_stop,
1583 * managing i/o requests and associated device resources
1585 .urb_enqueue = sl811h_urb_enqueue,
1586 .urb_dequeue = sl811h_urb_dequeue,
1587 .endpoint_disable = sl811h_endpoint_disable,
1590 * periodic schedule support
1592 .get_frame_number = sl811h_get_frame,
1597 .hub_status_data = sl811h_hub_status_data,
1598 .hub_control = sl811h_hub_control,
1599 .bus_suspend = sl811h_bus_suspend,
1600 .bus_resume = sl811h_bus_resume,
1603 /*-------------------------------------------------------------------------*/
1605 static int __devexit
1606 sl811h_remove(struct platform_device *dev)
1608 struct usb_hcd *hcd = platform_get_drvdata(dev);
1609 struct sl811 *sl811 = hcd_to_sl811(hcd);
1610 struct resource *res;
1612 remove_debug_file(sl811);
1613 usb_remove_hcd(hcd);
1615 /* some platforms may use IORESOURCE_IO */
1616 res = platform_get_resource(dev, IORESOURCE_MEM, 1);
1618 iounmap(sl811->data_reg);
1620 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
1622 iounmap(sl811->addr_reg);
1628 static int __devinit
1629 sl811h_probe(struct platform_device *dev)
1631 struct usb_hcd *hcd;
1632 struct sl811 *sl811;
1633 struct resource *addr, *data;
1635 void __iomem *addr_reg;
1636 void __iomem *data_reg;
1640 /* basic sanity checks first. board-specific init logic should
1641 * have initialized these three resources and probably board
1642 * specific platform_data. we don't probe for IRQs, and do only
1643 * minimal sanity checking.
1645 irq = platform_get_irq(dev, 0);
1646 if (dev->num_resources < 3 || irq < 0)
1649 /* refuse to confuse usbcore */
1650 if (dev->dev.dma_mask) {
1651 DBG("no we won't dma\n");
1655 /* the chip may be wired for either kind of addressing */
1656 addr = platform_get_resource(dev, IORESOURCE_MEM, 0);
1657 data = platform_get_resource(dev, IORESOURCE_MEM, 1);
1659 if (!addr || !data) {
1660 addr = platform_get_resource(dev, IORESOURCE_IO, 0);
1661 data = platform_get_resource(dev, IORESOURCE_IO, 1);
1666 * NOTE: 64-bit resource->start is getting truncated
1667 * to avoid compiler warning, assuming that ->start
1668 * is always 32-bit for this case
1670 addr_reg = (void __iomem *) (unsigned long) addr->start;
1671 data_reg = (void __iomem *) (unsigned long) data->start;
1673 addr_reg = ioremap(addr->start, 1);
1674 if (addr_reg == NULL) {
1679 data_reg = ioremap(data->start, 1);
1680 if (data_reg == NULL) {
1686 /* allocate and initialize hcd */
1687 hcd = usb_create_hcd(&sl811h_hc_driver, &dev->dev, dev->dev.bus_id);
1692 hcd->rsrc_start = addr->start;
1693 sl811 = hcd_to_sl811(hcd);
1695 spin_lock_init(&sl811->lock);
1696 INIT_LIST_HEAD(&sl811->async);
1697 sl811->board = dev->dev.platform_data;
1698 init_timer(&sl811->timer);
1699 sl811->timer.function = sl811h_timer;
1700 sl811->timer.data = (unsigned long) sl811;
1701 sl811->addr_reg = addr_reg;
1702 sl811->data_reg = data_reg;
1704 spin_lock_irq(&sl811->lock);
1705 port_power(sl811, 0);
1706 spin_unlock_irq(&sl811->lock);
1709 tmp = sl811_read(sl811, SL11H_HWREVREG);
1712 hcd->product_desc = "SL811HS v1.2";
1715 hcd->product_desc = "SL811HS v1.5";
1718 /* reject case 0, SL11S is less functional */
1719 DBG("chiprev %02x\n", tmp);
1724 /* The chip's IRQ is level triggered, active high. A requirement
1725 * for platform device setup is to cope with things like signal
1726 * inverters (e.g. CF is active low) or working only with edge
1727 * triggers (e.g. most ARM CPUs). Initial driver stress testing
1728 * was on a system with single edge triggering, so most sorts of
1729 * triggering arrangement should work.
1731 retval = usb_add_hcd(hcd, irq, IRQF_DISABLED | IRQF_SHARED);
1735 create_debug_file(sl811);
1747 DBG("init error, %d\n", retval);
1753 /* for this device there's no useful distinction between the controller
1754 * and its root hub, except that the root hub only gets direct PM calls
1755 * when CONFIG_USB_SUSPEND is enabled.
1759 sl811h_suspend(struct platform_device *dev, pm_message_t state)
1761 struct usb_hcd *hcd = platform_get_drvdata(dev);
1762 struct sl811 *sl811 = hcd_to_sl811(hcd);
1765 switch (state.event) {
1766 case PM_EVENT_FREEZE:
1767 retval = sl811h_bus_suspend(hcd);
1769 case PM_EVENT_SUSPEND:
1770 case PM_EVENT_HIBERNATE:
1771 case PM_EVENT_PRETHAW: /* explicitly discard hw state */
1772 port_power(sl811, 0);
1776 dev->dev.power.power_state = state;
1781 sl811h_resume(struct platform_device *dev)
1783 struct usb_hcd *hcd = platform_get_drvdata(dev);
1784 struct sl811 *sl811 = hcd_to_sl811(hcd);
1786 /* with no "check to see if VBUS is still powered" board hook,
1787 * let's assume it'd only be powered to enable remote wakeup.
1789 if (dev->dev.power.power_state.event == PM_EVENT_SUSPEND
1790 || !device_can_wakeup(&hcd->self.root_hub->dev)) {
1792 port_power(sl811, 1);
1793 usb_root_hub_lost_power(hcd->self.root_hub);
1797 dev->dev.power.power_state = PMSG_ON;
1798 return sl811h_bus_resume(hcd);
1803 #define sl811h_suspend NULL
1804 #define sl811h_resume NULL
1809 /* this driver is exported so sl811_cs can depend on it */
1810 struct platform_driver sl811h_driver = {
1811 .probe = sl811h_probe,
1812 .remove = __devexit_p(sl811h_remove),
1814 .suspend = sl811h_suspend,
1815 .resume = sl811h_resume,
1817 .name = (char *) hcd_name,
1818 .owner = THIS_MODULE,
1821 EXPORT_SYMBOL(sl811h_driver);
1823 /*-------------------------------------------------------------------------*/
1825 static int __init sl811h_init(void)
1830 INFO("driver %s, %s\n", hcd_name, DRIVER_VERSION);
1831 return platform_driver_register(&sl811h_driver);
1833 module_init(sl811h_init);
1835 static void __exit sl811h_cleanup(void)
1837 platform_driver_unregister(&sl811h_driver);
1839 module_exit(sl811h_cleanup);