2 * ISP116x HCD (Host Controller Driver) for USB.
4 * Derived from the SL811 HCD, rewritten for ISP116x.
5 * Copyright (C) 2005 Olav Kongas <ok@artecdesign.ee>
8 * Copyright (C) 2004 Psion Teklogix (for NetBook PRO)
9 * Copyright (C) 2004 David Brownell
11 * Periodic scheduling is based on Roman's OHCI code
12 * Copyright (C) 1999 Roman Weissgaerber
17 * The driver basically works. A number of people have used it with a range
20 * The driver passes all usbtests 1-14.
22 * Suspending/resuming of root hub via sysfs works. Remote wakeup works too.
23 * And suspending/resuming of platform device works too. Suspend/resume
24 * via HCD operations vector is not implemented.
26 * Iso transfer support is not implemented. Adding this would include
27 * implementing recovery from the failure to service the processed ITL
28 * fifo ram in time, which will involve chip reset.
31 + More testing of suspend/resume.
35 ISP116x chips require certain delays between accesses to its
36 registers. The following timing options exist.
38 1. Configure your memory controller (the best)
39 2. Implement platform-specific delay function possibly
40 combined with configuring the memory controller; see
41 include/linux/usb-isp116x.h for more info. Some broken
42 memory controllers line LH7A400 SMC need this. Also,
43 uncomment for that to work the following
44 USE_PLATFORM_DELAY macro.
45 3. Use ndelay (easiest, poorest). For that, uncomment
46 the following USE_NDELAY macro.
48 #define USE_PLATFORM_DELAY
53 /* Transfer descriptors. See dump_ptd() for printout format */
55 /* enqueuing/finishing log of urbs */
58 #include <linux/config.h>
59 #include <linux/module.h>
60 #include <linux/moduleparam.h>
61 #include <linux/kernel.h>
62 #include <linux/delay.h>
63 #include <linux/ioport.h>
64 #include <linux/sched.h>
65 #include <linux/slab.h>
66 #include <linux/smp_lock.h>
67 #include <linux/errno.h>
68 #include <linux/init.h>
69 #include <linux/list.h>
70 #include <linux/interrupt.h>
71 #include <linux/usb.h>
72 #include <linux/usb_isp116x.h>
76 #include <asm/system.h>
77 #include <asm/byteorder.h>
80 # define STUB_DEBUG_FILE
83 #include "../core/hcd.h"
86 #define DRIVER_VERSION "08 Apr 2005"
87 #define DRIVER_DESC "ISP116x USB Host Controller Driver"
89 MODULE_DESCRIPTION(DRIVER_DESC);
90 MODULE_LICENSE("GPL");
92 static const char hcd_name[] = "isp116x-hcd";
94 /*-----------------------------------------------------------------*/
97 Write len bytes to fifo, pad till 32-bit boundary
99 static void write_ptddata_to_fifo(struct isp116x *isp116x, void *buf, int len)
102 u16 *dp2 = (u16 *) buf;
106 if ((unsigned long)dp2 & 1) {
108 for (; len > 1; len -= 2) {
111 isp116x_raw_write_data16(isp116x, w);
114 isp116x_write_data16(isp116x, (u16) * dp);
117 for (; len > 1; len -= 2)
118 isp116x_raw_write_data16(isp116x, *dp2++);
120 isp116x_write_data16(isp116x, 0xff & *((u8 *) dp2));
122 if (quot == 1 || quot == 2)
123 isp116x_raw_write_data16(isp116x, 0);
127 Read len bytes from fifo and then read till 32-bit boundary.
129 static void read_ptddata_from_fifo(struct isp116x *isp116x, void *buf, int len)
132 u16 *dp2 = (u16 *) buf;
136 if ((unsigned long)dp2 & 1) {
138 for (; len > 1; len -= 2) {
139 w = isp116x_raw_read_data16(isp116x);
141 *dp++ = (w >> 8) & 0xff;
144 *dp = 0xff & isp116x_read_data16(isp116x);
147 for (; len > 1; len -= 2)
148 *dp2++ = isp116x_raw_read_data16(isp116x);
150 *(u8 *) dp2 = 0xff & isp116x_read_data16(isp116x);
152 if (quot == 1 || quot == 2)
153 isp116x_raw_read_data16(isp116x);
157 Write ptd's and data for scheduled transfers into
158 the fifo ram. Fifo must be empty and ready.
160 static void pack_fifo(struct isp116x *isp116x)
162 struct isp116x_ep *ep;
164 int buflen = isp116x->atl_last_dir == PTD_DIR_IN
165 ? isp116x->atl_bufshrt : isp116x->atl_buflen;
168 isp116x_write_reg16(isp116x, HCuPINT, HCuPINT_AIIEOT);
169 isp116x_write_reg16(isp116x, HCXFERCTR, buflen);
170 isp116x_write_addr(isp116x, HCATLPORT | ISP116x_WRITE_OFFSET);
171 for (ep = isp116x->atl_active; ep; ep = ep->active) {
175 dump_ptd_out_data(ptd, ep->data);
176 isp116x_write_data16(isp116x, ptd->count);
177 isp116x_write_data16(isp116x, ptd->mps);
178 isp116x_write_data16(isp116x, ptd->len);
179 isp116x_write_data16(isp116x, ptd->faddr);
180 buflen -= sizeof(struct ptd);
181 /* Skip writing data for last IN PTD */
182 if (ep->active || (isp116x->atl_last_dir != PTD_DIR_IN)) {
183 write_ptddata_to_fifo(isp116x, ep->data, ep->length);
184 buflen -= ALIGN(ep->length, 4);
191 Read the processed ptd's and data from fifo ram back to
192 URBs' buffers. Fifo must be full and done
194 static void unpack_fifo(struct isp116x *isp116x)
196 struct isp116x_ep *ep;
198 int buflen = isp116x->atl_last_dir == PTD_DIR_IN
199 ? isp116x->atl_buflen : isp116x->atl_bufshrt;
201 isp116x_write_reg16(isp116x, HCuPINT, HCuPINT_AIIEOT);
202 isp116x_write_reg16(isp116x, HCXFERCTR, buflen);
203 isp116x_write_addr(isp116x, HCATLPORT);
204 for (ep = isp116x->atl_active; ep; ep = ep->active) {
206 ptd->count = isp116x_read_data16(isp116x);
207 ptd->mps = isp116x_read_data16(isp116x);
208 ptd->len = isp116x_read_data16(isp116x);
209 ptd->faddr = isp116x_read_data16(isp116x);
210 buflen -= sizeof(struct ptd);
211 /* Skip reading data for last Setup or Out PTD */
212 if (ep->active || (isp116x->atl_last_dir == PTD_DIR_IN)) {
213 read_ptddata_from_fifo(isp116x, ep->data, ep->length);
214 buflen -= ALIGN(ep->length, 4);
217 dump_ptd_in_data(ptd, ep->data);
222 /*---------------------------------------------------------------*/
227 static void preproc_atl_queue(struct isp116x *isp116x)
229 struct isp116x_ep *ep;
232 u16 toggle = 0, dir = PTD_DIR_SETUP, len;
234 for (ep = isp116x->atl_active; ep; ep = ep->active) {
235 BUG_ON(list_empty(&ep->hep->urb_list));
236 urb = container_of(ep->hep->urb_list.next,
237 struct urb, urb_list);
240 spin_lock(&urb->lock);
241 ep->data = (unsigned char *)urb->transfer_buffer
242 + urb->actual_length;
244 switch (ep->nextpid) {
246 toggle = usb_gettoggle(urb->dev, ep->epnum, 0);
250 toggle = usb_gettoggle(urb->dev, ep->epnum, 1);
254 len = sizeof(struct usb_ctrlrequest);
255 ep->data = urb->setup_packet;
260 dir = (urb->transfer_buffer_length
261 && usb_pipein(urb->pipe))
262 ? PTD_DIR_OUT : PTD_DIR_IN;
265 ERR("%s %d: ep->nextpid %d\n", __func__, __LINE__,
270 ptd->count = PTD_CC_MSK | PTD_ACTIVE_MSK | PTD_TOGGLE(toggle);
271 ptd->mps = PTD_MPS(ep->maxpacket)
272 | PTD_SPD(urb->dev->speed == USB_SPEED_LOW)
274 ptd->len = PTD_LEN(len) | PTD_DIR(dir);
275 ptd->faddr = PTD_FA(usb_pipedevice(urb->pipe));
276 spin_unlock(&urb->lock);
278 ptd->mps |= PTD_LAST_MSK;
279 isp116x->atl_last_dir = dir;
281 isp116x->atl_bufshrt = sizeof(struct ptd) + isp116x->atl_buflen;
282 isp116x->atl_buflen = isp116x->atl_bufshrt + ALIGN(len, 4);
287 Analyze transfer results, handle partial transfers and errors
289 static void postproc_atl_queue(struct isp116x *isp116x)
291 struct isp116x_ep *ep;
293 struct usb_device *udev;
298 for (ep = isp116x->atl_active; ep; ep = ep->active) {
299 BUG_ON(list_empty(&ep->hep->urb_list));
301 container_of(ep->hep->urb_list.next, struct urb, urb_list);
304 cc = PTD_GET_CC(ptd);
306 spin_lock(&urb->lock);
309 /* Data underrun is special. For allowed underrun
310 we clear the error and continue as normal. For
311 forbidden underrun we finish the DATA stage
312 immediately while for control transfer,
313 we do a STATUS stage. */
314 if (cc == TD_DATAUNDERRUN) {
315 if (!(urb->transfer_flags & URB_SHORT_NOT_OK)) {
316 DBG("Allowed data underrun\n");
321 if (usb_pipecontrol(urb->pipe))
322 ep->nextpid = USB_PID_ACK;
324 usb_settoggle(udev, ep->epnum,
327 PTD_GET_TOGGLE(ptd) ^ 1);
328 urb->status = cc_to_error[TD_DATAUNDERRUN];
329 spin_unlock(&urb->lock);
333 /* Keep underrun error through the STATUS stage */
334 if (urb->status == cc_to_error[TD_DATAUNDERRUN])
335 cc = TD_DATAUNDERRUN;
337 if (cc != TD_CC_NOERROR && cc != TD_NOTACCESSED
338 && (++ep->error_count >= 3 || cc == TD_CC_STALL
339 || cc == TD_DATAOVERRUN)) {
340 if (urb->status == -EINPROGRESS)
341 urb->status = cc_to_error[cc];
342 if (ep->nextpid == USB_PID_ACK)
344 spin_unlock(&urb->lock);
347 /* According to usb spec, zero-length Int transfer signals
348 finishing of the urb. Hey, does this apply only
350 if (usb_pipeint(urb->pipe) && !PTD_GET_LEN(ptd)) {
351 if (urb->status == -EINPROGRESS)
353 spin_unlock(&urb->lock);
357 /* Relax after previously failed, but later succeeded
358 or correctly NAK'ed retransmission attempt */
360 && (cc == TD_CC_NOERROR || cc == TD_NOTACCESSED))
363 /* Take into account idiosyncracies of the isp116x chip
364 regarding toggle bit for failed transfers */
365 if (ep->nextpid == USB_PID_OUT)
366 usb_settoggle(udev, ep->epnum, 1, PTD_GET_TOGGLE(ptd)
367 ^ (ep->error_count > 0));
368 else if (ep->nextpid == USB_PID_IN)
369 usb_settoggle(udev, ep->epnum, 0, PTD_GET_TOGGLE(ptd)
370 ^ (ep->error_count > 0));
372 switch (ep->nextpid) {
375 urb->actual_length += PTD_GET_COUNT(ptd);
376 if (PTD_GET_ACTIVE(ptd)
377 || (cc != TD_CC_NOERROR && cc < 0x0E))
379 if (urb->transfer_buffer_length != urb->actual_length) {
383 if (urb->transfer_flags & URB_ZERO_PACKET
384 && ep->nextpid == USB_PID_OUT
385 && !(PTD_GET_COUNT(ptd) % ep->maxpacket)) {
386 DBG("Zero packet requested\n");
390 /* All data for this URB is transferred, let's finish */
391 if (usb_pipecontrol(urb->pipe))
392 ep->nextpid = USB_PID_ACK;
393 else if (urb->status == -EINPROGRESS)
397 if (PTD_GET_ACTIVE(ptd)
398 || (cc != TD_CC_NOERROR && cc < 0x0E))
400 if (urb->transfer_buffer_length == urb->actual_length)
401 ep->nextpid = USB_PID_ACK;
402 else if (usb_pipeout(urb->pipe)) {
403 usb_settoggle(udev, 0, 1, 1);
404 ep->nextpid = USB_PID_OUT;
406 usb_settoggle(udev, 0, 0, 1);
407 ep->nextpid = USB_PID_IN;
411 if (PTD_GET_ACTIVE(ptd)
412 || (cc != TD_CC_NOERROR && cc < 0x0E))
414 if (urb->status == -EINPROGRESS)
421 spin_unlock(&urb->lock);
426 Take done or failed requests out of schedule. Give back
429 static void finish_request(struct isp116x *isp116x, struct isp116x_ep *ep,
430 struct urb *urb, struct pt_regs *regs)
431 __releases(isp116x->lock) __acquires(isp116x->lock)
438 if (usb_pipecontrol(urb->pipe))
439 ep->nextpid = USB_PID_SETUP;
441 urb_dbg(urb, "Finish");
443 spin_unlock(&isp116x->lock);
444 usb_hcd_giveback_urb(isp116x_to_hcd(isp116x), urb, regs);
445 spin_lock(&isp116x->lock);
447 /* take idle endpoints out of the schedule */
448 if (!list_empty(&ep->hep->urb_list))
451 /* async deschedule */
452 if (!list_empty(&ep->schedule)) {
453 list_del_init(&ep->schedule);
457 /* periodic deschedule */
458 DBG("deschedule qh%d/%p branch %d\n", ep->period, ep, ep->branch);
459 for (i = ep->branch; i < PERIODIC_SIZE; i += ep->period) {
460 struct isp116x_ep *temp;
461 struct isp116x_ep **prev = &isp116x->periodic[i];
463 while (*prev && ((temp = *prev) != ep))
467 isp116x->load[i] -= ep->load;
469 ep->branch = PERIODIC_SIZE;
470 isp116x_to_hcd(isp116x)->self.bandwidth_allocated -=
471 ep->load / ep->period;
473 /* switch irq type? */
474 if (!--isp116x->periodic_count) {
475 isp116x->irqenb &= ~HCuPINT_SOF;
476 isp116x->irqenb |= HCuPINT_ATL;
481 Scan transfer lists, schedule transfers, send data off
484 static void start_atl_transfers(struct isp116x *isp116x)
486 struct isp116x_ep *last_ep = NULL, *ep;
489 int len, index, speed, byte_time;
491 if (atomic_read(&isp116x->atl_finishing))
494 if (!HC_IS_RUNNING(isp116x_to_hcd(isp116x)->state))
497 /* FIFO not empty? */
498 if (isp116x_read_reg16(isp116x, HCBUFSTAT) & HCBUFSTAT_ATL_FULL)
501 isp116x->atl_active = NULL;
502 isp116x->atl_buflen = isp116x->atl_bufshrt = 0;
504 /* Schedule int transfers */
505 if (isp116x->periodic_count) {
506 isp116x->fmindex = index =
507 (isp116x->fmindex + 1) & (PERIODIC_SIZE - 1);
508 if ((load = isp116x->load[index])) {
509 /* Bring all int transfers for this frame
510 into the active queue */
511 isp116x->atl_active = last_ep =
512 isp116x->periodic[index];
513 while (last_ep->next)
514 last_ep = (last_ep->active = last_ep->next);
515 last_ep->active = NULL;
519 /* Schedule control/bulk transfers */
520 list_for_each_entry(ep, &isp116x->async, schedule) {
521 urb = container_of(ep->hep->urb_list.next,
522 struct urb, urb_list);
523 speed = urb->dev->speed;
524 byte_time = speed == USB_SPEED_LOW
525 ? BYTE_TIME_LOWSPEED : BYTE_TIME_FULLSPEED;
527 if (ep->nextpid == USB_PID_SETUP) {
528 len = sizeof(struct usb_ctrlrequest);
529 } else if (ep->nextpid == USB_PID_ACK) {
532 /* Find current free length ... */
533 len = (MAX_LOAD_LIMIT - load) / byte_time;
535 /* ... then limit it to configured max size ... */
536 len = min(len, speed == USB_SPEED_LOW ?
537 MAX_TRANSFER_SIZE_LOWSPEED :
538 MAX_TRANSFER_SIZE_FULLSPEED);
540 /* ... and finally cut to the multiple of MaxPacketSize,
541 or to the real length if there's enough room. */
543 (urb->transfer_buffer_length -
544 urb->actual_length)) {
545 len -= len % ep->maxpacket;
549 len = urb->transfer_buffer_length -
554 load += len * byte_time;
555 if (load > MAX_LOAD_LIMIT)
561 last_ep->active = ep;
563 isp116x->atl_active = ep;
567 /* Avoid starving of endpoints */
568 if ((&isp116x->async)->next != (&isp116x->async)->prev)
569 list_move(&isp116x->async, (&isp116x->async)->next);
571 if (isp116x->atl_active) {
572 preproc_atl_queue(isp116x);
578 Finish the processed transfers
580 static void finish_atl_transfers(struct isp116x *isp116x, struct pt_regs *regs)
582 struct isp116x_ep *ep;
585 if (!isp116x->atl_active)
587 /* Fifo not ready? */
588 if (!(isp116x_read_reg16(isp116x, HCBUFSTAT) & HCBUFSTAT_ATL_DONE))
591 atomic_inc(&isp116x->atl_finishing);
592 unpack_fifo(isp116x);
593 postproc_atl_queue(isp116x);
594 for (ep = isp116x->atl_active; ep; ep = ep->active) {
596 container_of(ep->hep->urb_list.next, struct urb, urb_list);
597 /* USB_PID_ACK check here avoids finishing of
598 control transfers, for which TD_DATAUNDERRUN
599 occured, while URB_SHORT_NOT_OK was set */
600 if (urb && urb->status != -EINPROGRESS
601 && ep->nextpid != USB_PID_ACK)
602 finish_request(isp116x, ep, urb, regs);
604 atomic_dec(&isp116x->atl_finishing);
607 static irqreturn_t isp116x_irq(struct usb_hcd *hcd, struct pt_regs *regs)
609 struct isp116x *isp116x = hcd_to_isp116x(hcd);
611 irqreturn_t ret = IRQ_NONE;
613 spin_lock(&isp116x->lock);
614 isp116x_write_reg16(isp116x, HCuPINTENB, 0);
615 irqstat = isp116x_read_reg16(isp116x, HCuPINT);
616 isp116x_write_reg16(isp116x, HCuPINT, irqstat);
618 if (irqstat & (HCuPINT_ATL | HCuPINT_SOF)) {
620 finish_atl_transfers(isp116x, regs);
623 if (irqstat & HCuPINT_OPR) {
624 u32 intstat = isp116x_read_reg32(isp116x, HCINTSTAT);
625 isp116x_write_reg32(isp116x, HCINTSTAT, intstat);
626 if (intstat & HCINT_UE) {
627 ERR("Unrecoverable error\n");
628 /* What should we do here? Reset? */
630 if (intstat & HCINT_RHSC) {
632 isp116x_read_reg32(isp116x, HCRHSTATUS);
634 isp116x_read_reg32(isp116x, HCRHPORT1);
636 isp116x_read_reg32(isp116x, HCRHPORT2);
638 if (intstat & HCINT_RD) {
639 DBG("---- remote wakeup\n");
640 schedule_work(&isp116x->rh_resume);
643 irqstat &= ~HCuPINT_OPR;
647 if (irqstat & (HCuPINT_ATL | HCuPINT_SOF)) {
648 start_atl_transfers(isp116x);
651 isp116x_write_reg16(isp116x, HCuPINTENB, isp116x->irqenb);
652 spin_unlock(&isp116x->lock);
656 /*-----------------------------------------------------------------*/
658 /* usb 1.1 says max 90% of a frame is available for periodic transfers.
659 * this driver doesn't promise that much since it's got to handle an
660 * IRQ per packet; irq handling latencies also use up that time.
664 #define MAX_PERIODIC_LOAD 600
665 static int balance(struct isp116x *isp116x, u16 period, u16 load)
667 int i, branch = -ENOSPC;
669 /* search for the least loaded schedule branch of that period
670 which has enough bandwidth left unreserved. */
671 for (i = 0; i < period; i++) {
672 if (branch < 0 || isp116x->load[branch] > isp116x->load[i]) {
675 for (j = i; j < PERIODIC_SIZE; j += period) {
676 if ((isp116x->load[j] + load)
680 if (j < PERIODIC_SIZE)
688 /* NB! ALL the code above this point runs with isp116x->lock
692 /*-----------------------------------------------------------------*/
694 static int isp116x_urb_enqueue(struct usb_hcd *hcd,
695 struct usb_host_endpoint *hep, struct urb *urb,
698 struct isp116x *isp116x = hcd_to_isp116x(hcd);
699 struct usb_device *udev = urb->dev;
700 unsigned int pipe = urb->pipe;
701 int is_out = !usb_pipein(pipe);
702 int type = usb_pipetype(pipe);
703 int epnum = usb_pipeendpoint(pipe);
704 struct isp116x_ep *ep = NULL;
709 urb_dbg(urb, "Enqueue");
711 if (type == PIPE_ISOCHRONOUS) {
712 ERR("Isochronous transfers not supported\n");
713 urb_dbg(urb, "Refused to enqueue");
716 /* avoid all allocations within spinlocks: request or endpoint */
718 ep = kcalloc(1, sizeof *ep, mem_flags);
723 spin_lock_irqsave(&isp116x->lock, flags);
724 if (!HC_IS_RUNNING(hcd->state)) {
732 INIT_LIST_HEAD(&ep->schedule);
733 ep->udev = usb_get_dev(udev);
735 ep->maxpacket = usb_maxpacket(udev, urb->pipe, is_out);
736 usb_settoggle(udev, epnum, is_out, 0);
738 if (type == PIPE_CONTROL) {
739 ep->nextpid = USB_PID_SETUP;
741 ep->nextpid = USB_PID_OUT;
743 ep->nextpid = USB_PID_IN;
748 With INT URBs submitted, the driver works with SOF
749 interrupt enabled and ATL interrupt disabled. After
750 the PTDs are written to fifo ram, the chip starts
751 fifo processing and usb transfers after the next
752 SOF and continues until the transfers are finished
753 (succeeded or failed) or the frame ends. Therefore,
754 the transfers occur only in every second frame,
755 while fifo reading/writing and data processing
756 occur in every other second frame. */
757 if (urb->interval < 2)
759 if (urb->interval > 2 * PERIODIC_SIZE)
760 urb->interval = 2 * PERIODIC_SIZE;
761 ep->period = urb->interval >> 1;
762 ep->branch = PERIODIC_SIZE;
763 ep->load = usb_calc_bus_time(udev->speed,
765 (type == PIPE_ISOCHRONOUS),
766 usb_maxpacket(udev, pipe,
774 /* maybe put endpoint into schedule */
778 if (list_empty(&ep->schedule))
779 list_add_tail(&ep->schedule, &isp116x->async);
782 urb->interval = ep->period;
783 ep->length = min((int)ep->maxpacket,
784 urb->transfer_buffer_length);
786 /* urb submitted for already existing endpoint */
787 if (ep->branch < PERIODIC_SIZE)
790 ret = ep->branch = balance(isp116x, ep->period, ep->load);
795 urb->start_frame = (isp116x->fmindex & (PERIODIC_SIZE - 1))
798 /* sort each schedule branch by period (slow before fast)
799 to share the faster parts of the tree without needing
800 dummy/placeholder nodes */
801 DBG("schedule qh%d/%p branch %d\n", ep->period, ep, ep->branch);
802 for (i = ep->branch; i < PERIODIC_SIZE; i += ep->period) {
803 struct isp116x_ep **prev = &isp116x->periodic[i];
804 struct isp116x_ep *here = *prev;
806 while (here && ep != here) {
807 if (ep->period > here->period)
816 isp116x->load[i] += ep->load;
818 hcd->self.bandwidth_allocated += ep->load / ep->period;
820 /* switch over to SOFint */
821 if (!isp116x->periodic_count++) {
822 isp116x->irqenb &= ~HCuPINT_ATL;
823 isp116x->irqenb |= HCuPINT_SOF;
824 isp116x_write_reg16(isp116x, HCuPINTENB,
829 /* in case of unlink-during-submit */
830 spin_lock(&urb->lock);
831 if (urb->status != -EINPROGRESS) {
832 spin_unlock(&urb->lock);
833 finish_request(isp116x, ep, urb, NULL);
838 spin_unlock(&urb->lock);
839 start_atl_transfers(isp116x);
842 spin_unlock_irqrestore(&isp116x->lock, flags);
849 static int isp116x_urb_dequeue(struct usb_hcd *hcd, struct urb *urb)
851 struct isp116x *isp116x = hcd_to_isp116x(hcd);
852 struct usb_host_endpoint *hep;
853 struct isp116x_ep *ep, *ep_act;
856 spin_lock_irqsave(&isp116x->lock, flags);
858 /* URB already unlinked (or never linked)? */
860 spin_unlock_irqrestore(&isp116x->lock, flags);
864 WARN_ON(hep != ep->hep);
866 /* In front of queue? */
867 if (ep->hep->urb_list.next == &urb->urb_list)
869 for (ep_act = isp116x->atl_active; ep_act;
870 ep_act = ep_act->active)
872 VDBG("dequeue, urb %p active; wait for irq\n",
879 finish_request(isp116x, ep, urb, NULL);
881 spin_unlock_irqrestore(&isp116x->lock, flags);
885 static void isp116x_endpoint_disable(struct usb_hcd *hcd,
886 struct usb_host_endpoint *hep)
889 struct isp116x_ep *ep = hep->hcpriv;;
894 /* assume we'd just wait for the irq */
895 for (i = 0; i < 100 && !list_empty(&hep->urb_list); i++)
897 if (!list_empty(&hep->urb_list))
898 WARN("ep %p not empty?\n", ep);
900 usb_put_dev(ep->udev);
905 static int isp116x_get_frame(struct usb_hcd *hcd)
907 struct isp116x *isp116x = hcd_to_isp116x(hcd);
911 spin_lock_irqsave(&isp116x->lock, flags);
912 fmnum = isp116x_read_reg32(isp116x, HCFMNUM);
913 spin_unlock_irqrestore(&isp116x->lock, flags);
917 /*----------------------------------------------------------------*/
920 Adapted from ohci-hub.c. Currently we don't support autosuspend.
922 static int isp116x_hub_status_data(struct usb_hcd *hcd, char *buf)
924 struct isp116x *isp116x = hcd_to_isp116x(hcd);
925 int ports, i, changed = 0;
927 if (!HC_IS_RUNNING(hcd->state))
930 ports = isp116x->rhdesca & RH_A_NDP;
933 if (isp116x->rhstatus & (RH_HS_LPSC | RH_HS_OCIC))
934 buf[0] = changed = 1;
938 for (i = 0; i < ports; i++) {
939 u32 status = isp116x->rhport[i];
941 if (status & (RH_PS_CSC | RH_PS_PESC | RH_PS_PSSC
942 | RH_PS_OCIC | RH_PS_PRSC)) {
944 buf[0] |= 1 << (i + 1);
951 static void isp116x_hub_descriptor(struct isp116x *isp116x,
952 struct usb_hub_descriptor *desc)
954 u32 reg = isp116x->rhdesca;
956 desc->bDescriptorType = 0x29;
957 desc->bDescLength = 9;
958 desc->bHubContrCurrent = 0;
959 desc->bNbrPorts = (u8) (reg & 0x3);
960 /* Power switching, device type, overcurrent. */
961 desc->wHubCharacteristics =
962 (__force __u16) cpu_to_le16((u16) ((reg >> 8) & 0x1f));
963 desc->bPwrOn2PwrGood = (u8) ((reg >> 24) & 0xff);
964 /* two bitmaps: ports removable, and legacy PortPwrCtrlMask */
965 desc->bitmap[0] = desc->bNbrPorts == 1 ? 1 << 1 : 3 << 1;
966 desc->bitmap[1] = ~0;
969 /* Perform reset of a given port.
970 It would be great to just start the reset and let the
971 USB core to clear the reset in due time. However,
972 root hub ports should be reset for at least 50 ms, while
973 our chip stays in reset for about 10 ms. I.e., we must
974 repeatedly reset it ourself here.
976 static inline void root_port_reset(struct isp116x *isp116x, unsigned port)
979 unsigned long flags, t;
981 /* Root hub reset should be 50 ms, but some devices
982 want it even longer. */
983 t = jiffies + msecs_to_jiffies(100);
985 while (time_before(jiffies, t)) {
986 spin_lock_irqsave(&isp116x->lock, flags);
987 /* spin until any current reset finishes */
989 tmp = isp116x_read_reg32(isp116x, port ?
990 HCRHPORT2 : HCRHPORT1);
991 if (!(tmp & RH_PS_PRS))
995 /* Don't reset a disconnected port */
996 if (!(tmp & RH_PS_CCS)) {
997 spin_unlock_irqrestore(&isp116x->lock, flags);
1000 /* Reset lasts 10ms (claims datasheet) */
1001 isp116x_write_reg32(isp116x, port ? HCRHPORT2 :
1002 HCRHPORT1, (RH_PS_PRS));
1003 spin_unlock_irqrestore(&isp116x->lock, flags);
1008 /* Adapted from ohci-hub.c */
1009 static int isp116x_hub_control(struct usb_hcd *hcd,
1011 u16 wValue, u16 wIndex, char *buf, u16 wLength)
1013 struct isp116x *isp116x = hcd_to_isp116x(hcd);
1015 unsigned long flags;
1016 int ports = isp116x->rhdesca & RH_A_NDP;
1020 case ClearHubFeature:
1021 DBG("ClearHubFeature: ");
1023 case C_HUB_OVER_CURRENT:
1024 DBG("C_HUB_OVER_CURRENT\n");
1025 spin_lock_irqsave(&isp116x->lock, flags);
1026 isp116x_write_reg32(isp116x, HCRHSTATUS, RH_HS_OCIC);
1027 spin_unlock_irqrestore(&isp116x->lock, flags);
1028 case C_HUB_LOCAL_POWER:
1029 DBG("C_HUB_LOCAL_POWER\n");
1036 DBG("SetHubFeature: ");
1038 case C_HUB_OVER_CURRENT:
1039 case C_HUB_LOCAL_POWER:
1040 DBG("C_HUB_OVER_CURRENT or C_HUB_LOCAL_POWER\n");
1046 case GetHubDescriptor:
1047 DBG("GetHubDescriptor\n");
1048 isp116x_hub_descriptor(isp116x,
1049 (struct usb_hub_descriptor *)buf);
1052 DBG("GetHubStatus\n");
1053 *(__le32 *) buf = 0;
1056 DBG("GetPortStatus\n");
1057 if (!wIndex || wIndex > ports)
1059 tmp = isp116x->rhport[--wIndex];
1060 *(__le32 *) buf = cpu_to_le32(tmp);
1061 DBG("GetPortStatus: port[%d] %08x\n", wIndex + 1, tmp);
1063 case ClearPortFeature:
1064 DBG("ClearPortFeature: ");
1065 if (!wIndex || wIndex > ports)
1070 case USB_PORT_FEAT_ENABLE:
1071 DBG("USB_PORT_FEAT_ENABLE\n");
1074 case USB_PORT_FEAT_C_ENABLE:
1075 DBG("USB_PORT_FEAT_C_ENABLE\n");
1078 case USB_PORT_FEAT_SUSPEND:
1079 DBG("USB_PORT_FEAT_SUSPEND\n");
1082 case USB_PORT_FEAT_C_SUSPEND:
1083 DBG("USB_PORT_FEAT_C_SUSPEND\n");
1086 case USB_PORT_FEAT_POWER:
1087 DBG("USB_PORT_FEAT_POWER\n");
1090 case USB_PORT_FEAT_C_CONNECTION:
1091 DBG("USB_PORT_FEAT_C_CONNECTION\n");
1094 case USB_PORT_FEAT_C_OVER_CURRENT:
1095 DBG("USB_PORT_FEAT_C_OVER_CURRENT\n");
1098 case USB_PORT_FEAT_C_RESET:
1099 DBG("USB_PORT_FEAT_C_RESET\n");
1105 spin_lock_irqsave(&isp116x->lock, flags);
1106 isp116x_write_reg32(isp116x, wIndex
1107 ? HCRHPORT2 : HCRHPORT1, tmp);
1108 isp116x->rhport[wIndex] =
1109 isp116x_read_reg32(isp116x, wIndex ? HCRHPORT2 : HCRHPORT1);
1110 spin_unlock_irqrestore(&isp116x->lock, flags);
1112 case SetPortFeature:
1113 DBG("SetPortFeature: ");
1114 if (!wIndex || wIndex > ports)
1118 case USB_PORT_FEAT_SUSPEND:
1119 DBG("USB_PORT_FEAT_SUSPEND\n");
1120 spin_lock_irqsave(&isp116x->lock, flags);
1121 isp116x_write_reg32(isp116x, wIndex
1122 ? HCRHPORT2 : HCRHPORT1, RH_PS_PSS);
1124 case USB_PORT_FEAT_POWER:
1125 DBG("USB_PORT_FEAT_POWER\n");
1126 spin_lock_irqsave(&isp116x->lock, flags);
1127 isp116x_write_reg32(isp116x, wIndex
1128 ? HCRHPORT2 : HCRHPORT1, RH_PS_PPS);
1130 case USB_PORT_FEAT_RESET:
1131 DBG("USB_PORT_FEAT_RESET\n");
1132 root_port_reset(isp116x, wIndex);
1133 spin_lock_irqsave(&isp116x->lock, flags);
1138 isp116x->rhport[wIndex] =
1139 isp116x_read_reg32(isp116x, wIndex ? HCRHPORT2 : HCRHPORT1);
1140 spin_unlock_irqrestore(&isp116x->lock, flags);
1145 /* "protocol stall" on error */
1146 DBG("PROTOCOL STALL\n");
1154 static int isp116x_hub_suspend(struct usb_hcd *hcd)
1156 struct isp116x *isp116x = hcd_to_isp116x(hcd);
1157 unsigned long flags;
1161 spin_lock_irqsave(&isp116x->lock, flags);
1163 val = isp116x_read_reg32(isp116x, HCCONTROL);
1164 switch (val & HCCONTROL_HCFS) {
1165 case HCCONTROL_USB_OPER:
1166 hcd->state = HC_STATE_QUIESCING;
1167 val &= (~HCCONTROL_HCFS & ~HCCONTROL_RWE);
1168 val |= HCCONTROL_USB_SUSPEND;
1169 if (hcd->remote_wakeup)
1170 val |= HCCONTROL_RWE;
1171 /* Wait for usb transfers to finish */
1173 isp116x_write_reg32(isp116x, HCCONTROL, val);
1174 hcd->state = HC_STATE_SUSPENDED;
1175 /* Wait for devices to suspend */
1177 case HCCONTROL_USB_SUSPEND:
1179 case HCCONTROL_USB_RESUME:
1180 isp116x_write_reg32(isp116x, HCCONTROL,
1181 (val & ~HCCONTROL_HCFS) |
1182 HCCONTROL_USB_RESET);
1183 case HCCONTROL_USB_RESET:
1190 spin_unlock_irqrestore(&isp116x->lock, flags);
1194 static int isp116x_hub_resume(struct usb_hcd *hcd)
1196 struct isp116x *isp116x = hcd_to_isp116x(hcd);
1198 int ret = -EINPROGRESS;
1201 spin_lock_irq(&isp116x->lock);
1203 val = isp116x_read_reg32(isp116x, HCCONTROL);
1204 switch (val & HCCONTROL_HCFS) {
1205 case HCCONTROL_USB_SUSPEND:
1206 val &= ~HCCONTROL_HCFS;
1207 val |= HCCONTROL_USB_RESUME;
1208 isp116x_write_reg32(isp116x, HCCONTROL, val);
1209 case HCCONTROL_USB_RESUME:
1211 case HCCONTROL_USB_OPER:
1212 /* Without setting power_state here the
1213 SUSPENDED state won't be removed from
1214 sysfs/usbN/power.state as a response to remote
1215 wakeup. Maybe in the future. */
1216 hcd->self.root_hub->dev.power.power_state = PMSG_ON;
1223 if (ret != -EINPROGRESS) {
1224 spin_unlock_irq(&isp116x->lock);
1228 val = isp116x->rhdesca & RH_A_NDP;
1231 isp116x_read_reg32(isp116x, val ? HCRHPORT2 : HCRHPORT1);
1232 /* force global, not selective, resume */
1233 if (!(stat & RH_PS_PSS))
1235 DBG("%s: Resuming port %d\n", __func__, val);
1236 isp116x_write_reg32(isp116x, RH_PS_POCI, val
1237 ? HCRHPORT2 : HCRHPORT1);
1239 spin_unlock_irq(&isp116x->lock);
1241 hcd->state = HC_STATE_RESUMING;
1244 /* Go operational */
1245 spin_lock_irq(&isp116x->lock);
1246 val = isp116x_read_reg32(isp116x, HCCONTROL);
1247 isp116x_write_reg32(isp116x, HCCONTROL,
1248 (val & ~HCCONTROL_HCFS) | HCCONTROL_USB_OPER);
1249 spin_unlock_irq(&isp116x->lock);
1250 /* see analogous comment above */
1251 hcd->self.root_hub->dev.power.power_state = PMSG_ON;
1252 hcd->state = HC_STATE_RUNNING;
1257 static void isp116x_rh_resume(void *_hcd)
1259 struct usb_hcd *hcd = _hcd;
1261 usb_resume_device(hcd->self.root_hub);
1266 #define isp116x_hub_suspend NULL
1267 #define isp116x_hub_resume NULL
1269 static void isp116x_rh_resume(void *_hcd)
1275 /*-----------------------------------------------------------------*/
1277 #ifdef STUB_DEBUG_FILE
1279 static inline void create_debug_file(struct isp116x *isp116x)
1283 static inline void remove_debug_file(struct isp116x *isp116x)
1289 #include <linux/proc_fs.h>
1290 #include <linux/seq_file.h>
1292 static void dump_irq(struct seq_file *s, char *label, u16 mask)
1294 seq_printf(s, "%s %04x%s%s%s%s%s%s\n", label, mask,
1295 mask & HCuPINT_CLKRDY ? " clkrdy" : "",
1296 mask & HCuPINT_SUSP ? " susp" : "",
1297 mask & HCuPINT_OPR ? " opr" : "",
1298 mask & HCuPINT_AIIEOT ? " eot" : "",
1299 mask & HCuPINT_ATL ? " atl" : "",
1300 mask & HCuPINT_SOF ? " sof" : "");
1303 static void dump_int(struct seq_file *s, char *label, u32 mask)
1305 seq_printf(s, "%s %08x%s%s%s%s%s%s%s\n", label, mask,
1306 mask & HCINT_MIE ? " MIE" : "",
1307 mask & HCINT_RHSC ? " rhsc" : "",
1308 mask & HCINT_FNO ? " fno" : "",
1309 mask & HCINT_UE ? " ue" : "",
1310 mask & HCINT_RD ? " rd" : "",
1311 mask & HCINT_SF ? " sof" : "", mask & HCINT_SO ? " so" : "");
1314 static int proc_isp116x_show(struct seq_file *s, void *unused)
1316 struct isp116x *isp116x = s->private;
1317 struct isp116x_ep *ep;
1322 seq_printf(s, "%s\n%s version %s\n",
1323 isp116x_to_hcd(isp116x)->product_desc, hcd_name,
1326 if (HC_IS_SUSPENDED(isp116x_to_hcd(isp116x)->state)) {
1327 seq_printf(s, "HCD is suspended\n");
1330 if (!HC_IS_RUNNING(isp116x_to_hcd(isp116x)->state)) {
1331 seq_printf(s, "HCD not running\n");
1335 spin_lock_irq(&isp116x->lock);
1337 dump_irq(s, "hc_irq_enable", isp116x_read_reg16(isp116x, HCuPINTENB));
1338 dump_irq(s, "hc_irq_status", isp116x_read_reg16(isp116x, HCuPINT));
1339 dump_int(s, "hc_int_enable", isp116x_read_reg32(isp116x, HCINTENB));
1340 dump_int(s, "hc_int_status", isp116x_read_reg32(isp116x, HCINTSTAT));
1342 list_for_each_entry(ep, &isp116x->async, schedule) {
1344 switch (ep->nextpid) {
1361 seq_printf(s, "%p, ep%d%s, maxpacket %d:\n", ep,
1362 ep->epnum, str, ep->maxpacket);
1363 list_for_each_entry(urb, &ep->hep->urb_list, urb_list) {
1364 seq_printf(s, " urb%p, %d/%d\n", urb,
1366 urb->transfer_buffer_length);
1369 if (!list_empty(&isp116x->async))
1370 seq_printf(s, "\n");
1372 seq_printf(s, "periodic size= %d\n", PERIODIC_SIZE);
1374 for (i = 0; i < PERIODIC_SIZE; i++) {
1375 ep = isp116x->periodic[i];
1378 seq_printf(s, "%2d [%3d]:\n", i, isp116x->load[i]);
1380 /* DUMB: prints shared entries multiple times */
1382 seq_printf(s, " %d/%p (%sdev%d ep%d%s max %d)\n",
1385 USB_SPEED_FULL) ? "" : "ls ",
1386 ep->udev->devnum, ep->epnum,
1388 0) ? "" : ((ep->nextpid ==
1389 USB_PID_IN) ? "in" : "out"),
1394 spin_unlock_irq(&isp116x->lock);
1395 seq_printf(s, "\n");
1400 static int proc_isp116x_open(struct inode *inode, struct file *file)
1402 return single_open(file, proc_isp116x_show, PDE(inode)->data);
1405 static struct file_operations proc_ops = {
1406 .open = proc_isp116x_open,
1408 .llseek = seq_lseek,
1409 .release = single_release,
1412 /* expect just one isp116x per system */
1413 static const char proc_filename[] = "driver/isp116x";
1415 static void create_debug_file(struct isp116x *isp116x)
1417 struct proc_dir_entry *pde;
1419 pde = create_proc_entry(proc_filename, 0, NULL);
1423 pde->proc_fops = &proc_ops;
1424 pde->data = isp116x;
1428 static void remove_debug_file(struct isp116x *isp116x)
1431 remove_proc_entry(proc_filename, NULL);
1436 /*-----------------------------------------------------------------*/
1439 Software reset - can be called from any contect.
1441 static int isp116x_sw_reset(struct isp116x *isp116x)
1444 unsigned long flags;
1447 spin_lock_irqsave(&isp116x->lock, flags);
1448 isp116x_write_reg16(isp116x, HCSWRES, HCSWRES_MAGIC);
1449 isp116x_write_reg32(isp116x, HCCMDSTAT, HCCMDSTAT_HCR);
1451 /* It usually resets within 1 ms */
1453 if (!(isp116x_read_reg32(isp116x, HCCMDSTAT) & HCCMDSTAT_HCR))
1457 ERR("Software reset timeout\n");
1460 spin_unlock_irqrestore(&isp116x->lock, flags);
1465 Reset. Tries to perform platform-specific hardware
1466 reset first; falls back to software reset.
1468 static int isp116x_reset(struct usb_hcd *hcd)
1470 struct isp116x *isp116x = hcd_to_isp116x(hcd);
1473 int ret = 0, timeout = 15 /* ms */ ;
1475 if (isp116x->board && isp116x->board->reset) {
1476 /* Hardware reset */
1477 isp116x->board->reset(hcd->self.controller, 1);
1479 if (isp116x->board->clock)
1480 isp116x->board->clock(hcd->self.controller, 1);
1482 isp116x->board->reset(hcd->self.controller, 0);
1484 ret = isp116x_sw_reset(isp116x);
1489 t = jiffies + msecs_to_jiffies(timeout);
1490 while (time_before_eq(jiffies, t)) {
1492 spin_lock_irq(&isp116x->lock);
1493 clkrdy = isp116x_read_reg16(isp116x, HCuPINT) & HCuPINT_CLKRDY;
1494 spin_unlock_irq(&isp116x->lock);
1499 ERR("Clock not ready after 20ms\n");
1500 /* After sw_reset the clock won't report to be ready, if
1501 H_WAKEUP pin is high. */
1502 if (!isp116x->board || !isp116x->board->reset)
1503 ERR("The driver does not support hardware wakeup.\n");
1504 ERR("Please make sure that the H_WAKEUP pin "
1505 "is pulled low!\n");
1511 static void isp116x_stop(struct usb_hcd *hcd)
1513 struct isp116x *isp116x = hcd_to_isp116x(hcd);
1514 unsigned long flags;
1517 spin_lock_irqsave(&isp116x->lock, flags);
1518 isp116x_write_reg16(isp116x, HCuPINTENB, 0);
1520 /* Switch off ports' power, some devices don't come up
1521 after next 'insmod' without this */
1522 val = isp116x_read_reg32(isp116x, HCRHDESCA);
1523 val &= ~(RH_A_NPS | RH_A_PSM);
1524 isp116x_write_reg32(isp116x, HCRHDESCA, val);
1525 isp116x_write_reg32(isp116x, HCRHSTATUS, RH_HS_LPS);
1526 spin_unlock_irqrestore(&isp116x->lock, flags);
1528 /* Put the chip into reset state */
1529 if (isp116x->board && isp116x->board->reset)
1530 isp116x->board->reset(hcd->self.controller, 0);
1532 isp116x_sw_reset(isp116x);
1534 /* Stop the clock */
1535 if (isp116x->board && isp116x->board->clock)
1536 isp116x->board->clock(hcd->self.controller, 0);
1540 Configure the chip. The chip must be successfully reset by now.
1542 static int isp116x_start(struct usb_hcd *hcd)
1544 struct isp116x *isp116x = hcd_to_isp116x(hcd);
1545 struct isp116x_platform_data *board = isp116x->board;
1547 unsigned long flags;
1549 spin_lock_irqsave(&isp116x->lock, flags);
1551 /* clear interrupt status and disable all interrupt sources */
1552 isp116x_write_reg16(isp116x, HCuPINT, 0xff);
1553 isp116x_write_reg16(isp116x, HCuPINTENB, 0);
1555 val = isp116x_read_reg16(isp116x, HCCHIPID);
1556 if ((val & HCCHIPID_MASK) != HCCHIPID_MAGIC) {
1557 ERR("Invalid chip ID %04x\n", val);
1558 spin_unlock_irqrestore(&isp116x->lock, flags);
1562 isp116x_write_reg16(isp116x, HCITLBUFLEN, ISP116x_ITL_BUFSIZE);
1563 isp116x_write_reg16(isp116x, HCATLBUFLEN, ISP116x_ATL_BUFSIZE);
1566 val = HCHWCFG_INT_ENABLE | HCHWCFG_DBWIDTH(1);
1567 if (board->sel15Kres)
1568 val |= HCHWCFG_15KRSEL;
1569 /* Remote wakeup won't work without working clock */
1570 if (board->clknotstop || board->remote_wakeup_enable)
1571 val |= HCHWCFG_CLKNOTSTOP;
1572 if (board->oc_enable)
1573 val |= HCHWCFG_ANALOG_OC;
1574 if (board->int_act_high)
1575 val |= HCHWCFG_INT_POL;
1576 if (board->int_edge_triggered)
1577 val |= HCHWCFG_INT_TRIGGER;
1578 isp116x_write_reg16(isp116x, HCHWCFG, val);
1580 /* ----- Root hub conf */
1582 /* AN10003_1.pdf recommends NPS to be always 1 */
1583 if (board->no_power_switching)
1585 if (board->power_switching_mode)
1588 val |= (board->potpg << 24) & RH_A_POTPGT;
1590 val |= (25 << 24) & RH_A_POTPGT;
1591 isp116x_write_reg32(isp116x, HCRHDESCA, val);
1592 isp116x->rhdesca = isp116x_read_reg32(isp116x, HCRHDESCA);
1595 isp116x_write_reg32(isp116x, HCRHDESCB, val);
1596 isp116x->rhdescb = isp116x_read_reg32(isp116x, HCRHDESCB);
1599 if (board->remote_wakeup_enable) {
1600 hcd->can_wakeup = 1;
1603 isp116x_write_reg32(isp116x, HCRHSTATUS, val);
1604 isp116x->rhstatus = isp116x_read_reg32(isp116x, HCRHSTATUS);
1606 isp116x_write_reg32(isp116x, HCFMINTVL, 0x27782edf);
1608 hcd->state = HC_STATE_RUNNING;
1610 /* Set up interrupts */
1611 isp116x->intenb = HCINT_MIE | HCINT_RHSC | HCINT_UE;
1612 if (board->remote_wakeup_enable)
1613 isp116x->intenb |= HCINT_RD;
1614 isp116x->irqenb = HCuPINT_ATL | HCuPINT_OPR; /* | HCuPINT_SUSP; */
1615 isp116x_write_reg32(isp116x, HCINTENB, isp116x->intenb);
1616 isp116x_write_reg16(isp116x, HCuPINTENB, isp116x->irqenb);
1618 /* Go operational */
1619 val = HCCONTROL_USB_OPER;
1620 /* Remote wakeup connected - NOT SUPPORTED */
1621 /* if (board->remote_wakeup_connected)
1622 val |= HCCONTROL_RWC; */
1623 if (board->remote_wakeup_enable)
1624 val |= HCCONTROL_RWE;
1625 isp116x_write_reg32(isp116x, HCCONTROL, val);
1627 /* Disable ports to avoid race in device enumeration */
1628 isp116x_write_reg32(isp116x, HCRHPORT1, RH_PS_CCS);
1629 isp116x_write_reg32(isp116x, HCRHPORT2, RH_PS_CCS);
1631 isp116x_show_regs(isp116x);
1632 spin_unlock_irqrestore(&isp116x->lock, flags);
1636 /*-----------------------------------------------------------------*/
1638 static struct hc_driver isp116x_hc_driver = {
1639 .description = hcd_name,
1640 .product_desc = "ISP116x Host Controller",
1641 .hcd_priv_size = sizeof(struct isp116x),
1646 .reset = isp116x_reset,
1647 .start = isp116x_start,
1648 .stop = isp116x_stop,
1650 .urb_enqueue = isp116x_urb_enqueue,
1651 .urb_dequeue = isp116x_urb_dequeue,
1652 .endpoint_disable = isp116x_endpoint_disable,
1654 .get_frame_number = isp116x_get_frame,
1656 .hub_status_data = isp116x_hub_status_data,
1657 .hub_control = isp116x_hub_control,
1658 .hub_suspend = isp116x_hub_suspend,
1659 .hub_resume = isp116x_hub_resume,
1662 /*----------------------------------------------------------------*/
1664 static int __init_or_module isp116x_remove(struct device *dev)
1666 struct usb_hcd *hcd = dev_get_drvdata(dev);
1667 struct isp116x *isp116x;
1668 struct platform_device *pdev;
1669 struct resource *res;
1673 isp116x = hcd_to_isp116x(hcd);
1674 pdev = container_of(dev, struct platform_device, dev);
1675 remove_debug_file(isp116x);
1676 usb_remove_hcd(hcd);
1678 iounmap(isp116x->data_reg);
1679 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1680 release_mem_region(res->start, 2);
1681 iounmap(isp116x->addr_reg);
1682 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1683 release_mem_region(res->start, 2);
1689 #define resource_len(r) (((r)->end - (r)->start) + 1)
1691 static int __init isp116x_probe(struct device *dev)
1693 struct usb_hcd *hcd;
1694 struct isp116x *isp116x;
1695 struct platform_device *pdev;
1696 struct resource *addr, *data;
1697 void __iomem *addr_reg;
1698 void __iomem *data_reg;
1702 pdev = container_of(dev, struct platform_device, dev);
1703 if (pdev->num_resources < 3) {
1708 data = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1709 addr = platform_get_resource(pdev, IORESOURCE_MEM, 1);
1710 irq = platform_get_irq(pdev, 0);
1711 if (!addr || !data || irq < 0) {
1716 if (dev->dma_mask) {
1717 DBG("DMA not supported\n");
1722 if (!request_mem_region(addr->start, 2, hcd_name)) {
1726 addr_reg = ioremap(addr->start, resource_len(addr));
1727 if (addr_reg == NULL) {
1731 if (!request_mem_region(data->start, 2, hcd_name)) {
1735 data_reg = ioremap(data->start, resource_len(data));
1736 if (data_reg == NULL) {
1741 /* allocate and initialize hcd */
1742 hcd = usb_create_hcd(&isp116x_hc_driver, dev, dev->bus_id);
1747 /* this rsrc_start is bogus */
1748 hcd->rsrc_start = addr->start;
1749 isp116x = hcd_to_isp116x(hcd);
1750 isp116x->data_reg = data_reg;
1751 isp116x->addr_reg = addr_reg;
1752 spin_lock_init(&isp116x->lock);
1753 INIT_LIST_HEAD(&isp116x->async);
1754 INIT_WORK(&isp116x->rh_resume, isp116x_rh_resume, hcd);
1755 isp116x->board = dev->platform_data;
1757 if (!isp116x->board) {
1758 ERR("Platform data structure not initialized\n");
1762 if (isp116x_check_platform_delay(isp116x)) {
1763 ERR("USE_PLATFORM_DELAY defined, but delay function not "
1765 ERR("See comments in drivers/usb/host/isp116x-hcd.c\n");
1770 ret = usb_add_hcd(hcd, irq, SA_INTERRUPT);
1774 create_debug_file(isp116x);
1782 release_mem_region(data->start, 2);
1786 release_mem_region(addr->start, 2);
1788 ERR("init error, %d\n", ret);
1794 Suspend of platform device
1796 static int isp116x_suspend(struct device *dev, pm_message_t state, u32 phase)
1799 struct usb_hcd *hcd = dev_get_drvdata(dev);
1801 VDBG("%s: state %x, phase %x\n", __func__, state, phase);
1803 if (phase != SUSPEND_DISABLE && phase != SUSPEND_POWER_DOWN)
1806 ret = usb_suspend_device(hcd->self.root_hub, state);
1808 dev->power.power_state = state;
1809 INFO("%s suspended\n", hcd_name);
1811 ERR("%s suspend failed\n", hcd_name);
1817 Resume platform device
1819 static int isp116x_resume(struct device *dev, u32 phase)
1822 struct usb_hcd *hcd = dev_get_drvdata(dev);
1824 VDBG("%s: state %x, phase %x\n", __func__, dev->power.power_state,
1826 if (phase != RESUME_POWER_ON)
1829 ret = usb_resume_device(hcd->self.root_hub);
1831 dev->power.power_state = PMSG_ON;
1832 VDBG("%s resumed\n", (char *)hcd_name);
1839 #define isp116x_suspend NULL
1840 #define isp116x_resume NULL
1844 static struct device_driver isp116x_driver = {
1845 .name = (char *)hcd_name,
1846 .bus = &platform_bus_type,
1847 .probe = isp116x_probe,
1848 .remove = isp116x_remove,
1849 .suspend = isp116x_suspend,
1850 .resume = isp116x_resume,
1853 /*-----------------------------------------------------------------*/
1855 static int __init isp116x_init(void)
1860 INFO("driver %s, %s\n", hcd_name, DRIVER_VERSION);
1861 return driver_register(&isp116x_driver);
1864 module_init(isp116x_init);
1866 static void __exit isp116x_cleanup(void)
1868 driver_unregister(&isp116x_driver);
1871 module_exit(isp116x_cleanup);