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/smp_lock.h>
42 #include <linux/errno.h>
43 #include <linux/init.h>
44 #include <linux/timer.h>
45 #include <linux/list.h>
46 #include <linux/interrupt.h>
47 #include <linux/usb.h>
48 #include <linux/usb/sl811.h>
49 #include <linux/platform_device.h>
53 #include <asm/system.h>
54 #include <asm/byteorder.h>
56 #include "../core/hcd.h"
60 MODULE_DESCRIPTION("SL811HS USB Host Controller Driver");
61 MODULE_LICENSE("GPL");
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,
431 struct pt_regs *regs,
433 ) __releases(sl811->lock) __acquires(sl811->lock)
437 if (usb_pipecontrol(urb->pipe))
438 ep->nextpid = USB_PID_SETUP;
440 spin_lock(&urb->lock);
441 if (urb->status == -EINPROGRESS)
442 urb->status = status;
444 spin_unlock(&urb->lock);
446 spin_unlock(&sl811->lock);
447 usb_hcd_giveback_urb(sl811_to_hcd(sl811), urb, regs);
448 spin_lock(&sl811->lock);
450 /* leave active endpoints in the schedule */
451 if (!list_empty(&ep->hep->urb_list))
454 /* async deschedule? */
455 if (!list_empty(&ep->schedule)) {
456 list_del_init(&ep->schedule);
457 if (ep == sl811->next_async)
458 sl811->next_async = NULL;
462 /* periodic deschedule */
463 DBG("deschedule qh%d/%p branch %d\n", ep->period, ep, ep->branch);
464 for (i = ep->branch; i < PERIODIC_SIZE; i += ep->period) {
465 struct sl811h_ep *temp;
466 struct sl811h_ep **prev = &sl811->periodic[i];
468 while (*prev && ((temp = *prev) != ep))
472 sl811->load[i] -= ep->load;
474 ep->branch = PERIODIC_SIZE;
475 sl811->periodic_count--;
476 sl811_to_hcd(sl811)->self.bandwidth_allocated
477 -= ep->load / ep->period;
478 if (ep == sl811->next_periodic)
479 sl811->next_periodic = ep->next;
481 /* we might turn SOFs back on again for the async schedule */
482 if (sl811->periodic_count == 0)
487 done(struct sl811 *sl811, struct sl811h_ep *ep, u8 bank, struct pt_regs *regs)
491 int urbstat = -EINPROGRESS;
496 status = sl811_read(sl811, bank + SL11H_PKTSTATREG);
498 urb = container_of(ep->hep->urb_list.next, struct urb, urb_list);
500 /* we can safely ignore NAKs */
501 if (status & SL11H_STATMASK_NAK) {
502 // PACKET("...NAK_%02x qh%p\n", bank, ep);
507 /* ACK advances transfer, toggle, and maybe queue */
508 } else if (status & SL11H_STATMASK_ACK) {
509 struct usb_device *udev = urb->dev;
513 /* urb->iso_frame_desc is currently ignored here... */
515 ep->nak_count = ep->error_count = 0;
516 switch (ep->nextpid) {
518 // PACKET("...ACK/out_%02x qh%p\n", bank, ep);
519 urb->actual_length += ep->length;
520 usb_dotoggle(udev, ep->epnum, 1);
521 if (urb->actual_length
522 == urb->transfer_buffer_length) {
523 if (usb_pipecontrol(urb->pipe))
524 ep->nextpid = USB_PID_ACK;
526 /* some bulk protocols terminate OUT transfers
527 * by a short packet, using ZLPs not padding.
529 else if (ep->length < ep->maxpacket
530 || !(urb->transfer_flags
536 // PACKET("...ACK/in_%02x qh%p\n", bank, ep);
537 buf = urb->transfer_buffer + urb->actual_length;
539 len = ep->maxpacket - sl811_read(sl811,
540 bank + SL11H_XFERCNTREG);
541 if (len > ep->length) {
543 urb->status = -EOVERFLOW;
545 urb->actual_length += len;
546 sl811_read_buf(sl811, SL811HS_PACKET_BUF(bank == 0),
548 usb_dotoggle(udev, ep->epnum, 0);
549 if (urb->actual_length == urb->transfer_buffer_length)
551 else if (len < ep->maxpacket) {
552 if (urb->transfer_flags & URB_SHORT_NOT_OK)
553 urbstat = -EREMOTEIO;
557 if (usb_pipecontrol(urb->pipe)
558 && (urbstat == -EREMOTEIO
561 /* NOTE if the status stage STALLs (why?),
562 * this reports the wrong urb status.
564 spin_lock(&urb->lock);
565 if (urb->status == -EINPROGRESS)
566 urb->status = urbstat;
567 spin_unlock(&urb->lock);
570 ep->nextpid = USB_PID_ACK;
574 // PACKET("...ACK/setup_%02x qh%p\n", bank, ep);
575 if (urb->transfer_buffer_length == urb->actual_length)
576 ep->nextpid = USB_PID_ACK;
577 else if (usb_pipeout(urb->pipe)) {
578 usb_settoggle(udev, 0, 1, 1);
579 ep->nextpid = USB_PID_OUT;
581 usb_settoggle(udev, 0, 0, 1);
582 ep->nextpid = USB_PID_IN;
586 // PACKET("...ACK/status_%02x qh%p\n", bank, ep);
591 /* STALL stops all transfers */
592 } else if (status & SL11H_STATMASK_STALL) {
593 PACKET("...STALL_%02x qh%p\n", bank, ep);
594 ep->nak_count = ep->error_count = 0;
597 /* error? retry, until "3 strikes" */
598 } else if (++ep->error_count >= 3) {
599 if (status & SL11H_STATMASK_TMOUT)
600 urbstat = -ETIMEDOUT;
601 else if (status & SL11H_STATMASK_OVF)
602 urbstat = -EOVERFLOW;
606 PACKET("...3STRIKES_%02x %02x qh%p stat %d\n",
607 bank, status, ep, urbstat);
610 if (urb && (urbstat != -EINPROGRESS || urb->status != -EINPROGRESS))
611 finish_request(sl811, ep, urb, regs, urbstat);
614 static inline u8 checkdone(struct sl811 *sl811)
619 if (sl811->active_a && time_before_eq(sl811->jiffies_a, jiffies)) {
620 ctl = sl811_read(sl811, SL811_EP_A(SL11H_HOSTCTLREG));
621 if (ctl & SL11H_HCTLMASK_ARM)
622 sl811_write(sl811, SL811_EP_A(SL11H_HOSTCTLREG), 0);
623 DBG("%s DONE_A: ctrl %02x sts %02x\n",
624 (ctl & SL11H_HCTLMASK_ARM) ? "timeout" : "lost",
626 sl811_read(sl811, SL811_EP_A(SL11H_PKTSTATREG)));
627 irqstat |= SL11H_INTMASK_DONE_A;
630 if (sl811->active_b && time_before_eq(sl811->jiffies_b, jiffies)) {
631 ctl = sl811_read(sl811, SL811_EP_B(SL11H_HOSTCTLREG));
632 if (ctl & SL11H_HCTLMASK_ARM)
633 sl811_write(sl811, SL811_EP_B(SL11H_HOSTCTLREG), 0);
634 DBG("%s DONE_B: ctrl %02x sts %02x\n",
635 (ctl & SL11H_HCTLMASK_ARM) ? "timeout" : "lost",
637 sl811_read(sl811, SL811_EP_B(SL11H_PKTSTATREG)));
638 irqstat |= SL11H_INTMASK_DONE_A;
644 static irqreturn_t sl811h_irq(struct usb_hcd *hcd, struct pt_regs *regs)
646 struct sl811 *sl811 = hcd_to_sl811(hcd);
648 irqreturn_t ret = IRQ_NONE;
649 unsigned retries = 5;
651 spin_lock(&sl811->lock);
654 irqstat = sl811_read(sl811, SL11H_IRQ_STATUS) & ~SL11H_INTMASK_DP;
656 sl811_write(sl811, SL11H_IRQ_STATUS, irqstat);
657 irqstat &= sl811->irq_enable;
661 /* this may no longer be necessary ... */
663 irqstat = checkdone(sl811);
669 /* USB packets, not necessarily handled in the order they're
670 * issued ... that's fine if they're different endpoints.
672 if (irqstat & SL11H_INTMASK_DONE_A) {
673 done(sl811, sl811->active_a, SL811_EP_A(SL811_HOST_BUF), regs);
674 sl811->active_a = NULL;
678 if (irqstat & SL11H_INTMASK_DONE_B) {
679 done(sl811, sl811->active_b, SL811_EP_B(SL811_HOST_BUF), regs);
680 sl811->active_b = NULL;
684 if (irqstat & SL11H_INTMASK_SOFINTR) {
687 index = sl811->frame++ % (PERIODIC_SIZE - 1);
690 /* be graceful about almost-inevitable periodic schedule
691 * overruns: continue the previous frame's transfers iff
692 * this one has nothing scheduled.
694 if (sl811->next_periodic) {
695 // ERR("overrun to slot %d\n", index);
696 sl811->stat_overrun++;
698 if (sl811->periodic[index])
699 sl811->next_periodic = sl811->periodic[index];
702 /* khubd manages debouncing and wakeup */
703 if (irqstat & SL11H_INTMASK_INSRMV) {
704 sl811->stat_insrmv++;
706 /* most stats are reset for each VBUS session */
707 sl811->stat_wake = 0;
711 sl811->stat_lost = 0;
714 sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1);
716 sl811->irq_enable = SL11H_INTMASK_INSRMV;
717 sl811_write(sl811, SL11H_IRQ_ENABLE, sl811->irq_enable);
719 /* usbcore nukes other pending transactions on disconnect */
720 if (sl811->active_a) {
721 sl811_write(sl811, SL811_EP_A(SL11H_HOSTCTLREG), 0);
722 finish_request(sl811, sl811->active_a,
723 container_of(sl811->active_a
724 ->hep->urb_list.next,
725 struct urb, urb_list),
727 sl811->active_a = NULL;
730 if (sl811->active_b) {
731 sl811_write(sl811, SL811_EP_B(SL11H_HOSTCTLREG), 0);
732 finish_request(sl811, sl811->active_b,
733 container_of(sl811->active_b
734 ->hep->urb_list.next,
735 struct urb, urb_list),
737 sl811->active_b = NULL;
741 /* port status seems weird until after reset, so
742 * force the reset and make khubd clean up later.
744 sl811->port1 |= (1 << USB_PORT_FEAT_C_CONNECTION)
745 | (1 << USB_PORT_FEAT_CONNECTION);
747 } else if (irqstat & SL11H_INTMASK_RD) {
748 if (sl811->port1 & (1 << USB_PORT_FEAT_SUSPEND)) {
750 sl811->port1 |= 1 << USB_PORT_FEAT_C_SUSPEND;
753 irqstat &= ~SL11H_INTMASK_RD;
757 if (sl811->port1 & (1 << USB_PORT_FEAT_ENABLE))
758 start_transfer(sl811);
764 if (sl811->periodic_count == 0 && list_empty(&sl811->async))
766 sl811_write(sl811, SL11H_IRQ_ENABLE, sl811->irq_enable);
768 spin_unlock(&sl811->lock);
773 /*-------------------------------------------------------------------------*/
775 /* usb 1.1 says max 90% of a frame is available for periodic transfers.
776 * this driver doesn't promise that much since it's got to handle an
777 * IRQ per packet; irq handling latencies also use up that time.
779 * NOTE: the periodic schedule is a sparse tree, with the load for
780 * each branch minimized. see fig 3.5 in the OHCI spec for example.
782 #define MAX_PERIODIC_LOAD 500 /* out of 1000 usec */
784 static int balance(struct sl811 *sl811, u16 period, u16 load)
786 int i, branch = -ENOSPC;
788 /* search for the least loaded schedule branch of that period
789 * which has enough bandwidth left unreserved.
791 for (i = 0; i < period ; i++) {
792 if (branch < 0 || sl811->load[branch] > sl811->load[i]) {
795 for (j = i; j < PERIODIC_SIZE; j += period) {
796 if ((sl811->load[j] + load)
800 if (j < PERIODIC_SIZE)
808 /*-------------------------------------------------------------------------*/
810 static int sl811h_urb_enqueue(
812 struct usb_host_endpoint *hep,
816 struct sl811 *sl811 = hcd_to_sl811(hcd);
817 struct usb_device *udev = urb->dev;
818 unsigned int pipe = urb->pipe;
819 int is_out = !usb_pipein(pipe);
820 int type = usb_pipetype(pipe);
821 int epnum = usb_pipeendpoint(pipe);
822 struct sl811h_ep *ep = NULL;
828 if (type == PIPE_ISOCHRONOUS)
832 /* avoid all allocations within spinlocks */
834 ep = kzalloc(sizeof *ep, mem_flags);
836 spin_lock_irqsave(&sl811->lock, flags);
838 /* don't submit to a dead or disabled port */
839 if (!(sl811->port1 & (1 << USB_PORT_FEAT_ENABLE))
840 || !HC_IS_RUNNING(hcd->state)) {
854 INIT_LIST_HEAD(&ep->schedule);
857 ep->maxpacket = usb_maxpacket(udev, urb->pipe, is_out);
858 ep->defctrl = SL11H_HCTLMASK_ARM | SL11H_HCTLMASK_ENABLE;
859 usb_settoggle(udev, epnum, is_out, 0);
861 if (type == PIPE_CONTROL)
862 ep->nextpid = USB_PID_SETUP;
864 ep->nextpid = USB_PID_OUT;
866 ep->nextpid = USB_PID_IN;
868 if (ep->maxpacket > H_MAXPACKET) {
869 /* iso packets up to 240 bytes could work... */
870 DBG("dev %d ep%d maxpacket %d\n",
871 udev->devnum, epnum, ep->maxpacket);
876 if (udev->speed == USB_SPEED_LOW) {
877 /* send preamble for external hub? */
878 if (!(sl811->ctrl1 & SL11H_CTL1MASK_LSPD))
879 ep->defctrl |= SL11H_HCTLMASK_PREAMBLE;
882 case PIPE_ISOCHRONOUS:
884 if (urb->interval > PERIODIC_SIZE)
885 urb->interval = PERIODIC_SIZE;
886 ep->period = urb->interval;
887 ep->branch = PERIODIC_SIZE;
888 if (type == PIPE_ISOCHRONOUS)
889 ep->defctrl |= SL11H_HCTLMASK_ISOCH;
890 ep->load = usb_calc_bus_time(udev->speed, !is_out,
891 (type == PIPE_ISOCHRONOUS),
892 usb_maxpacket(udev, pipe, is_out))
901 /* maybe put endpoint into schedule */
905 if (list_empty(&ep->schedule))
906 list_add_tail(&ep->schedule, &sl811->async);
908 case PIPE_ISOCHRONOUS:
910 urb->interval = ep->period;
911 if (ep->branch < PERIODIC_SIZE) {
912 /* NOTE: the phase is correct here, but the value
913 * needs offsetting by the transfer queue depth.
914 * All current drivers ignore start_frame, so this
915 * is unlikely to ever matter...
917 urb->start_frame = (sl811->frame & (PERIODIC_SIZE - 1))
922 retval = balance(sl811, ep->period, ep->load);
927 urb->start_frame = (sl811->frame & (PERIODIC_SIZE - 1))
930 /* sort each schedule branch by period (slow before fast)
931 * to share the faster parts of the tree without needing
932 * dummy/placeholder nodes
934 DBG("schedule qh%d/%p branch %d\n", ep->period, ep, ep->branch);
935 for (i = ep->branch; i < PERIODIC_SIZE; i += ep->period) {
936 struct sl811h_ep **prev = &sl811->periodic[i];
937 struct sl811h_ep *here = *prev;
939 while (here && ep != here) {
940 if (ep->period > here->period)
949 sl811->load[i] += ep->load;
951 sl811->periodic_count++;
952 hcd->self.bandwidth_allocated += ep->load / ep->period;
956 /* in case of unlink-during-submit */
957 spin_lock(&urb->lock);
958 if (urb->status != -EINPROGRESS) {
959 spin_unlock(&urb->lock);
960 finish_request(sl811, ep, urb, NULL, 0);
965 spin_unlock(&urb->lock);
967 start_transfer(sl811);
968 sl811_write(sl811, SL11H_IRQ_ENABLE, sl811->irq_enable);
970 spin_unlock_irqrestore(&sl811->lock, flags);
974 static int sl811h_urb_dequeue(struct usb_hcd *hcd, struct urb *urb)
976 struct sl811 *sl811 = hcd_to_sl811(hcd);
977 struct usb_host_endpoint *hep;
979 struct sl811h_ep *ep;
982 spin_lock_irqsave(&sl811->lock, flags);
989 /* finish right away if this urb can't be active ...
990 * note that some drivers wrongly expect delays
992 if (ep->hep->urb_list.next != &urb->urb_list) {
993 /* not front of queue? never active */
995 /* for active transfers, we expect an IRQ */
996 } else if (sl811->active_a == ep) {
997 if (time_before_eq(sl811->jiffies_a, jiffies)) {
998 /* happens a lot with lowspeed?? */
999 DBG("giveup on DONE_A: ctrl %02x sts %02x\n",
1001 SL811_EP_A(SL11H_HOSTCTLREG)),
1003 SL811_EP_A(SL11H_PKTSTATREG)));
1004 sl811_write(sl811, SL811_EP_A(SL11H_HOSTCTLREG),
1006 sl811->active_a = NULL;
1010 } else if (sl811->active_b == ep) {
1011 if (time_before_eq(sl811->jiffies_a, jiffies)) {
1012 /* happens a lot with lowspeed?? */
1013 DBG("giveup on DONE_B: ctrl %02x sts %02x\n",
1015 SL811_EP_B(SL11H_HOSTCTLREG)),
1017 SL811_EP_B(SL11H_PKTSTATREG)));
1018 sl811_write(sl811, SL811_EP_B(SL11H_HOSTCTLREG),
1020 sl811->active_b = NULL;
1025 /* front of queue for inactive endpoint */
1029 finish_request(sl811, ep, urb, NULL, 0);
1031 VDBG("dequeue, urb %p active %s; wait4irq\n", urb,
1032 (sl811->active_a == ep) ? "A" : "B");
1036 spin_unlock_irqrestore(&sl811->lock, flags);
1041 sl811h_endpoint_disable(struct usb_hcd *hcd, struct usb_host_endpoint *hep)
1043 struct sl811h_ep *ep = hep->hcpriv;
1048 /* assume we'd just wait for the irq */
1049 if (!list_empty(&hep->urb_list))
1051 if (!list_empty(&hep->urb_list))
1052 WARN("ep %p not empty?\n", ep);
1059 sl811h_get_frame(struct usb_hcd *hcd)
1061 struct sl811 *sl811 = hcd_to_sl811(hcd);
1063 /* wrong except while periodic transfers are scheduled;
1064 * never matches the on-the-wire frame;
1065 * subject to overruns.
1067 return sl811->frame;
1071 /*-------------------------------------------------------------------------*/
1073 /* the virtual root hub timer IRQ checks for hub status */
1075 sl811h_hub_status_data(struct usb_hcd *hcd, char *buf)
1077 struct sl811 *sl811 = hcd_to_sl811(hcd);
1079 unsigned long flags;
1081 /* non-SMP HACK: use root hub timer as i/o watchdog
1082 * this seems essential when SOF IRQs aren't in use...
1084 local_irq_save(flags);
1085 if (!timer_pending(&sl811->timer)) {
1086 if (sl811h_irq( /* ~0, */ hcd, NULL) != IRQ_NONE)
1089 local_irq_restore(flags);
1092 if (!(sl811->port1 & (0xffff << 16)))
1095 /* tell khubd port 1 changed */
1101 sl811h_hub_descriptor (
1102 struct sl811 *sl811,
1103 struct usb_hub_descriptor *desc
1107 desc->bDescriptorType = 0x29;
1108 desc->bHubContrCurrent = 0;
1110 desc->bNbrPorts = 1;
1111 desc->bDescLength = 9;
1113 /* per-port power switching (gang of one!), or none */
1114 desc->bPwrOn2PwrGood = 0;
1115 if (sl811->board && sl811->board->port_power) {
1116 desc->bPwrOn2PwrGood = sl811->board->potpg;
1117 if (!desc->bPwrOn2PwrGood)
1118 desc->bPwrOn2PwrGood = 10;
1123 /* no overcurrent errors detection/handling */
1126 desc->wHubCharacteristics = (__force __u16)cpu_to_le16(temp);
1128 /* two bitmaps: ports removable, and legacy PortPwrCtrlMask */
1129 desc->bitmap[0] = 0 << 1;
1130 desc->bitmap[1] = ~0;
1134 sl811h_timer(unsigned long _sl811)
1136 struct sl811 *sl811 = (void *) _sl811;
1137 unsigned long flags;
1139 u8 signaling = sl811->ctrl1 & SL11H_CTL1MASK_FORCE;
1140 const u32 mask = (1 << USB_PORT_FEAT_CONNECTION)
1141 | (1 << USB_PORT_FEAT_ENABLE)
1142 | (1 << USB_PORT_FEAT_LOWSPEED);
1144 spin_lock_irqsave(&sl811->lock, flags);
1146 /* stop special signaling */
1147 sl811->ctrl1 &= ~SL11H_CTL1MASK_FORCE;
1148 sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1);
1151 irqstat = sl811_read(sl811, SL11H_IRQ_STATUS);
1153 switch (signaling) {
1154 case SL11H_CTL1MASK_SE0:
1156 sl811->port1 = (1 << USB_PORT_FEAT_C_RESET)
1157 | (1 << USB_PORT_FEAT_POWER);
1159 /* don't wrongly ack RD */
1160 if (irqstat & SL11H_INTMASK_INSRMV)
1161 irqstat &= ~SL11H_INTMASK_RD;
1163 case SL11H_CTL1MASK_K:
1164 DBG("end resume\n");
1165 sl811->port1 &= ~(1 << USB_PORT_FEAT_SUSPEND);
1168 DBG("odd timer signaling: %02x\n", signaling);
1171 sl811_write(sl811, SL11H_IRQ_STATUS, irqstat);
1173 if (irqstat & SL11H_INTMASK_RD) {
1174 /* usbcore nukes all pending transactions on disconnect */
1175 if (sl811->port1 & (1 << USB_PORT_FEAT_CONNECTION))
1176 sl811->port1 |= (1 << USB_PORT_FEAT_C_CONNECTION)
1177 | (1 << USB_PORT_FEAT_C_ENABLE);
1178 sl811->port1 &= ~mask;
1179 sl811->irq_enable = SL11H_INTMASK_INSRMV;
1181 sl811->port1 |= mask;
1182 if (irqstat & SL11H_INTMASK_DP)
1183 sl811->port1 &= ~(1 << USB_PORT_FEAT_LOWSPEED);
1184 sl811->irq_enable = SL11H_INTMASK_INSRMV | SL11H_INTMASK_RD;
1187 if (sl811->port1 & (1 << USB_PORT_FEAT_CONNECTION)) {
1188 u8 ctrl2 = SL811HS_CTL2_INIT;
1190 sl811->irq_enable |= SL11H_INTMASK_DONE_A;
1192 sl811->irq_enable |= SL11H_INTMASK_DONE_B;
1194 if (sl811->port1 & (1 << USB_PORT_FEAT_LOWSPEED)) {
1195 sl811->ctrl1 |= SL11H_CTL1MASK_LSPD;
1196 ctrl2 |= SL811HS_CTL2MASK_DSWAP;
1199 /* start SOFs flowing, kickstarting with A registers */
1200 sl811->ctrl1 |= SL11H_CTL1MASK_SOF_ENA;
1201 sl811_write(sl811, SL11H_SOFLOWREG, 0xe0);
1202 sl811_write(sl811, SL811HS_CTLREG2, ctrl2);
1204 /* autoincrementing */
1205 sl811_write(sl811, SL811_EP_A(SL11H_BUFLNTHREG), 0);
1206 writeb(SL_SOF, sl811->data_reg);
1207 writeb(0, sl811->data_reg);
1208 sl811_write(sl811, SL811_EP_A(SL11H_HOSTCTLREG),
1209 SL11H_HCTLMASK_ARM);
1211 /* khubd provides debounce delay */
1215 sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1);
1218 sl811_write(sl811, SL11H_IRQ_ENABLE, sl811->irq_enable);
1219 spin_unlock_irqrestore(&sl811->lock, flags);
1224 struct usb_hcd *hcd,
1231 struct sl811 *sl811 = hcd_to_sl811(hcd);
1233 unsigned long flags;
1235 spin_lock_irqsave(&sl811->lock, flags);
1238 case ClearHubFeature:
1241 case C_HUB_OVER_CURRENT:
1242 case C_HUB_LOCAL_POWER:
1248 case ClearPortFeature:
1249 if (wIndex != 1 || wLength != 0)
1253 case USB_PORT_FEAT_ENABLE:
1254 sl811->port1 &= (1 << USB_PORT_FEAT_POWER);
1256 sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1);
1257 sl811->irq_enable = SL11H_INTMASK_INSRMV;
1258 sl811_write(sl811, SL11H_IRQ_ENABLE,
1261 case USB_PORT_FEAT_SUSPEND:
1262 if (!(sl811->port1 & (1 << USB_PORT_FEAT_SUSPEND)))
1265 /* 20 msec of resume/K signaling, other irqs blocked */
1266 DBG("start resume...\n");
1267 sl811->irq_enable = 0;
1268 sl811_write(sl811, SL11H_IRQ_ENABLE,
1270 sl811->ctrl1 |= SL11H_CTL1MASK_K;
1271 sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1);
1273 mod_timer(&sl811->timer, jiffies
1274 + msecs_to_jiffies(20));
1276 case USB_PORT_FEAT_POWER:
1277 port_power(sl811, 0);
1279 case USB_PORT_FEAT_C_ENABLE:
1280 case USB_PORT_FEAT_C_SUSPEND:
1281 case USB_PORT_FEAT_C_CONNECTION:
1282 case USB_PORT_FEAT_C_OVER_CURRENT:
1283 case USB_PORT_FEAT_C_RESET:
1288 sl811->port1 &= ~(1 << wValue);
1290 case GetHubDescriptor:
1291 sl811h_hub_descriptor(sl811, (struct usb_hub_descriptor *) buf);
1294 *(__le32 *) buf = cpu_to_le32(0);
1299 *(__le32 *) buf = cpu_to_le32(sl811->port1);
1302 if (*(u16*)(buf+2)) /* only if wPortChange is interesting */
1304 DBG("GetPortStatus %08x\n", sl811->port1);
1306 case SetPortFeature:
1307 if (wIndex != 1 || wLength != 0)
1310 case USB_PORT_FEAT_SUSPEND:
1311 if (sl811->port1 & (1 << USB_PORT_FEAT_RESET))
1313 if (!(sl811->port1 & (1 << USB_PORT_FEAT_ENABLE)))
1316 DBG("suspend...\n");
1317 sl811->ctrl1 &= ~SL11H_CTL1MASK_SOF_ENA;
1318 sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1);
1320 case USB_PORT_FEAT_POWER:
1321 port_power(sl811, 1);
1323 case USB_PORT_FEAT_RESET:
1324 if (sl811->port1 & (1 << USB_PORT_FEAT_SUSPEND))
1326 if (!(sl811->port1 & (1 << USB_PORT_FEAT_POWER)))
1329 /* 50 msec of reset/SE0 signaling, irqs blocked */
1330 sl811->irq_enable = 0;
1331 sl811_write(sl811, SL11H_IRQ_ENABLE,
1333 sl811->ctrl1 = SL11H_CTL1MASK_SE0;
1334 sl811_write(sl811, SL11H_CTLREG1, sl811->ctrl1);
1335 sl811->port1 |= (1 << USB_PORT_FEAT_RESET);
1336 mod_timer(&sl811->timer, jiffies
1337 + msecs_to_jiffies(50));
1342 sl811->port1 |= 1 << wValue;
1347 /* "protocol stall" on error */
1351 spin_unlock_irqrestore(&sl811->lock, flags);
1358 sl811h_bus_suspend(struct usb_hcd *hcd)
1361 DBG("%s\n", __FUNCTION__);
1366 sl811h_bus_resume(struct usb_hcd *hcd)
1369 DBG("%s\n", __FUNCTION__);
1375 #define sl811h_bus_suspend NULL
1376 #define sl811h_bus_resume NULL
1381 /*-------------------------------------------------------------------------*/
1383 #ifdef STUB_DEBUG_FILE
1385 static inline void create_debug_file(struct sl811 *sl811) { }
1386 static inline void remove_debug_file(struct sl811 *sl811) { }
1390 #include <linux/proc_fs.h>
1391 #include <linux/seq_file.h>
1393 static void dump_irq(struct seq_file *s, char *label, u8 mask)
1395 seq_printf(s, "%s %02x%s%s%s%s%s%s\n", label, mask,
1396 (mask & SL11H_INTMASK_DONE_A) ? " done_a" : "",
1397 (mask & SL11H_INTMASK_DONE_B) ? " done_b" : "",
1398 (mask & SL11H_INTMASK_SOFINTR) ? " sof" : "",
1399 (mask & SL11H_INTMASK_INSRMV) ? " ins/rmv" : "",
1400 (mask & SL11H_INTMASK_RD) ? " rd" : "",
1401 (mask & SL11H_INTMASK_DP) ? " dp" : "");
1404 static int proc_sl811h_show(struct seq_file *s, void *unused)
1406 struct sl811 *sl811 = s->private;
1407 struct sl811h_ep *ep;
1410 seq_printf(s, "%s\n%s version %s\nportstatus[1] = %08x\n",
1411 sl811_to_hcd(sl811)->product_desc,
1412 hcd_name, DRIVER_VERSION,
1415 seq_printf(s, "insert/remove: %ld\n", sl811->stat_insrmv);
1416 seq_printf(s, "current session: done_a %ld done_b %ld "
1417 "wake %ld sof %ld overrun %ld lost %ld\n\n",
1418 sl811->stat_a, sl811->stat_b,
1419 sl811->stat_wake, sl811->stat_sof,
1420 sl811->stat_overrun, sl811->stat_lost);
1422 spin_lock_irq(&sl811->lock);
1424 if (sl811->ctrl1 & SL11H_CTL1MASK_SUSPEND)
1425 seq_printf(s, "(suspended)\n\n");
1427 u8 t = sl811_read(sl811, SL11H_CTLREG1);
1429 seq_printf(s, "ctrl1 %02x%s%s%s%s\n", t,
1430 (t & SL11H_CTL1MASK_SOF_ENA) ? " sofgen" : "",
1431 ({char *s; switch (t & SL11H_CTL1MASK_FORCE) {
1432 case SL11H_CTL1MASK_NORMAL: s = ""; break;
1433 case SL11H_CTL1MASK_SE0: s = " se0/reset"; break;
1434 case SL11H_CTL1MASK_K: s = " k/resume"; break;
1435 default: s = "j"; break;
1437 (t & SL11H_CTL1MASK_LSPD) ? " lowspeed" : "",
1438 (t & SL11H_CTL1MASK_SUSPEND) ? " suspend" : "");
1440 dump_irq(s, "irq_enable",
1441 sl811_read(sl811, SL11H_IRQ_ENABLE));
1442 dump_irq(s, "irq_status",
1443 sl811_read(sl811, SL11H_IRQ_STATUS));
1444 seq_printf(s, "frame clocks remaining: %d\n",
1445 sl811_read(sl811, SL11H_SOFTMRREG) << 6);
1448 seq_printf(s, "A: qh%p ctl %02x sts %02x\n", sl811->active_a,
1449 sl811_read(sl811, SL811_EP_A(SL11H_HOSTCTLREG)),
1450 sl811_read(sl811, SL811_EP_A(SL11H_PKTSTATREG)));
1451 seq_printf(s, "B: qh%p ctl %02x sts %02x\n", sl811->active_b,
1452 sl811_read(sl811, SL811_EP_B(SL11H_HOSTCTLREG)),
1453 sl811_read(sl811, SL811_EP_B(SL11H_PKTSTATREG)));
1454 seq_printf(s, "\n");
1455 list_for_each_entry (ep, &sl811->async, schedule) {
1458 seq_printf(s, "%s%sqh%p, ep%d%s, maxpacket %d"
1460 (ep == sl811->active_a) ? "(A) " : "",
1461 (ep == sl811->active_b) ? "(B) " : "",
1463 ({ char *s; switch (ep->nextpid) {
1464 case USB_PID_IN: s = "in"; break;
1465 case USB_PID_OUT: s = "out"; break;
1466 case USB_PID_SETUP: s = "setup"; break;
1467 case USB_PID_ACK: s = "status"; break;
1468 default: s = "?"; break;
1471 ep->nak_count, ep->error_count);
1472 list_for_each_entry (urb, &ep->hep->urb_list, urb_list) {
1473 seq_printf(s, " urb%p, %d/%d\n", urb,
1475 urb->transfer_buffer_length);
1478 if (!list_empty(&sl811->async))
1479 seq_printf(s, "\n");
1481 seq_printf(s, "periodic size= %d\n", PERIODIC_SIZE);
1483 for (i = 0; i < PERIODIC_SIZE; i++) {
1484 ep = sl811->periodic[i];
1487 seq_printf(s, "%2d [%3d]:\n", i, sl811->load[i]);
1489 /* DUMB: prints shared entries multiple times */
1492 " %s%sqh%d/%p (%sdev%d ep%d%s max %d) "
1494 (ep == sl811->active_a) ? "(A) " : "",
1495 (ep == sl811->active_b) ? "(B) " : "",
1497 (ep->udev->speed == USB_SPEED_FULL)
1499 ep->udev->devnum, ep->epnum,
1500 (ep->epnum == 0) ? ""
1501 : ((ep->nextpid == USB_PID_IN)
1504 ep->maxpacket, ep->error_count);
1509 spin_unlock_irq(&sl811->lock);
1510 seq_printf(s, "\n");
1515 static int proc_sl811h_open(struct inode *inode, struct file *file)
1517 return single_open(file, proc_sl811h_show, PDE(inode)->data);
1520 static struct file_operations proc_ops = {
1521 .open = proc_sl811h_open,
1523 .llseek = seq_lseek,
1524 .release = single_release,
1527 /* expect just one sl811 per system */
1528 static const char proc_filename[] = "driver/sl811h";
1530 static void create_debug_file(struct sl811 *sl811)
1532 struct proc_dir_entry *pde;
1534 pde = create_proc_entry(proc_filename, 0, NULL);
1538 pde->proc_fops = &proc_ops;
1543 static void remove_debug_file(struct sl811 *sl811)
1546 remove_proc_entry(proc_filename, NULL);
1551 /*-------------------------------------------------------------------------*/
1554 sl811h_stop(struct usb_hcd *hcd)
1556 struct sl811 *sl811 = hcd_to_sl811(hcd);
1557 unsigned long flags;
1559 del_timer_sync(&hcd->rh_timer);
1561 spin_lock_irqsave(&sl811->lock, flags);
1562 port_power(sl811, 0);
1563 spin_unlock_irqrestore(&sl811->lock, flags);
1567 sl811h_start(struct usb_hcd *hcd)
1569 struct sl811 *sl811 = hcd_to_sl811(hcd);
1571 /* chip has been reset, VBUS power is off */
1572 hcd->state = HC_STATE_RUNNING;
1575 if (!device_can_wakeup(hcd->self.controller))
1576 device_init_wakeup(hcd->self.controller,
1577 sl811->board->can_wakeup);
1578 hcd->power_budget = sl811->board->power * 2;
1581 /* enable power and interupts */
1582 port_power(sl811, 1);
1587 /*-------------------------------------------------------------------------*/
1589 static struct hc_driver sl811h_hc_driver = {
1590 .description = hcd_name,
1591 .hcd_priv_size = sizeof(struct sl811),
1594 * generic hardware linkage
1597 .flags = HCD_USB11 | HCD_MEMORY,
1599 /* Basic lifecycle operations */
1600 .start = sl811h_start,
1601 .stop = sl811h_stop,
1604 * managing i/o requests and associated device resources
1606 .urb_enqueue = sl811h_urb_enqueue,
1607 .urb_dequeue = sl811h_urb_dequeue,
1608 .endpoint_disable = sl811h_endpoint_disable,
1611 * periodic schedule support
1613 .get_frame_number = sl811h_get_frame,
1618 .hub_status_data = sl811h_hub_status_data,
1619 .hub_control = sl811h_hub_control,
1620 .bus_suspend = sl811h_bus_suspend,
1621 .bus_resume = sl811h_bus_resume,
1624 /*-------------------------------------------------------------------------*/
1626 static int __devexit
1627 sl811h_remove(struct platform_device *dev)
1629 struct usb_hcd *hcd = platform_get_drvdata(dev);
1630 struct sl811 *sl811 = hcd_to_sl811(hcd);
1631 struct resource *res;
1633 remove_debug_file(sl811);
1634 usb_remove_hcd(hcd);
1636 /* some platforms may use IORESOURCE_IO */
1637 res = platform_get_resource(dev, IORESOURCE_MEM, 1);
1639 iounmap(sl811->data_reg);
1641 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
1643 iounmap(sl811->addr_reg);
1649 static int __devinit
1650 sl811h_probe(struct platform_device *dev)
1652 struct usb_hcd *hcd;
1653 struct sl811 *sl811;
1654 struct resource *addr, *data;
1656 void __iomem *addr_reg;
1657 void __iomem *data_reg;
1661 /* basic sanity checks first. board-specific init logic should
1662 * have initialized these three resources and probably board
1663 * specific platform_data. we don't probe for IRQs, and do only
1664 * minimal sanity checking.
1666 irq = platform_get_irq(dev, 0);
1667 if (dev->num_resources < 3 || irq < 0)
1670 /* refuse to confuse usbcore */
1671 if (dev->dev.dma_mask) {
1672 DBG("no we won't dma\n");
1676 /* the chip may be wired for either kind of addressing */
1677 addr = platform_get_resource(dev, IORESOURCE_MEM, 0);
1678 data = platform_get_resource(dev, IORESOURCE_MEM, 1);
1680 if (!addr || !data) {
1681 addr = platform_get_resource(dev, IORESOURCE_IO, 0);
1682 data = platform_get_resource(dev, IORESOURCE_IO, 1);
1687 * NOTE: 64-bit resource->start is getting truncated
1688 * to avoid compiler warning, assuming that ->start
1689 * is always 32-bit for this case
1691 addr_reg = (void __iomem *) (unsigned long) addr->start;
1692 data_reg = (void __iomem *) (unsigned long) data->start;
1694 addr_reg = ioremap(addr->start, 1);
1695 if (addr_reg == NULL) {
1700 data_reg = ioremap(data->start, 1);
1701 if (data_reg == NULL) {
1707 /* allocate and initialize hcd */
1708 hcd = usb_create_hcd(&sl811h_hc_driver, &dev->dev, dev->dev.bus_id);
1713 hcd->rsrc_start = addr->start;
1714 sl811 = hcd_to_sl811(hcd);
1716 spin_lock_init(&sl811->lock);
1717 INIT_LIST_HEAD(&sl811->async);
1718 sl811->board = dev->dev.platform_data;
1719 init_timer(&sl811->timer);
1720 sl811->timer.function = sl811h_timer;
1721 sl811->timer.data = (unsigned long) sl811;
1722 sl811->addr_reg = addr_reg;
1723 sl811->data_reg = data_reg;
1725 spin_lock_irq(&sl811->lock);
1726 port_power(sl811, 0);
1727 spin_unlock_irq(&sl811->lock);
1730 tmp = sl811_read(sl811, SL11H_HWREVREG);
1733 hcd->product_desc = "SL811HS v1.2";
1736 hcd->product_desc = "SL811HS v1.5";
1739 /* reject case 0, SL11S is less functional */
1740 DBG("chiprev %02x\n", tmp);
1745 /* The chip's IRQ is level triggered, active high. A requirement
1746 * for platform device setup is to cope with things like signal
1747 * inverters (e.g. CF is active low) or working only with edge
1748 * triggers (e.g. most ARM CPUs). Initial driver stress testing
1749 * was on a system with single edge triggering, so most sorts of
1750 * triggering arrangement should work.
1752 retval = usb_add_hcd(hcd, irq, SA_INTERRUPT | SA_SHIRQ);
1756 create_debug_file(sl811);
1768 DBG("init error, %d\n", retval);
1774 /* for this device there's no useful distinction between the controller
1775 * and its root hub, except that the root hub only gets direct PM calls
1776 * when CONFIG_USB_SUSPEND is enabled.
1780 sl811h_suspend(struct platform_device *dev, pm_message_t state)
1782 struct usb_hcd *hcd = platform_get_drvdata(dev);
1783 struct sl811 *sl811 = hcd_to_sl811(hcd);
1786 if (state.event == PM_EVENT_FREEZE)
1787 retval = sl811h_bus_suspend(hcd);
1788 else if (state.event == PM_EVENT_SUSPEND)
1789 port_power(sl811, 0);
1791 dev->dev.power.power_state = state;
1796 sl811h_resume(struct platform_device *dev)
1798 struct usb_hcd *hcd = platform_get_drvdata(dev);
1799 struct sl811 *sl811 = hcd_to_sl811(hcd);
1801 /* with no "check to see if VBUS is still powered" board hook,
1802 * let's assume it'd only be powered to enable remote wakeup.
1804 if (dev->dev.power.power_state.event == PM_EVENT_SUSPEND
1805 || !device_can_wakeup(&hcd->self.root_hub->dev)) {
1807 port_power(sl811, 1);
1808 usb_root_hub_lost_power(hcd->self.root_hub);
1812 dev->dev.power.power_state = PMSG_ON;
1813 return sl811h_bus_resume(hcd);
1818 #define sl811h_suspend NULL
1819 #define sl811h_resume NULL
1824 /* this driver is exported so sl811_cs can depend on it */
1825 struct platform_driver sl811h_driver = {
1826 .probe = sl811h_probe,
1827 .remove = __devexit_p(sl811h_remove),
1829 .suspend = sl811h_suspend,
1830 .resume = sl811h_resume,
1832 .name = (char *) hcd_name,
1833 .owner = THIS_MODULE,
1836 EXPORT_SYMBOL(sl811h_driver);
1838 /*-------------------------------------------------------------------------*/
1840 static int __init sl811h_init(void)
1845 INFO("driver %s, %s\n", hcd_name, DRIVER_VERSION);
1846 return platform_driver_register(&sl811h_driver);
1848 module_init(sl811h_init);
1850 static void __exit sl811h_cleanup(void)
1852 platform_driver_unregister(&sl811h_driver);
1854 module_exit(sl811h_cleanup);