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/module.h>
59 #include <linux/delay.h>
60 #include <linux/debugfs.h>
61 #include <linux/seq_file.h>
62 #include <linux/errno.h>
63 #include <linux/init.h>
64 #include <linux/list.h>
65 #include <linux/slab.h>
66 #include <linux/usb.h>
67 #include <linux/usb/isp116x.h>
68 #include <linux/usb/hcd.h>
69 #include <linux/platform_device.h>
73 #include <asm/system.h>
74 #include <asm/byteorder.h>
78 #define DRIVER_VERSION "03 Nov 2005"
79 #define DRIVER_DESC "ISP116x USB Host Controller Driver"
81 MODULE_DESCRIPTION(DRIVER_DESC
);
82 MODULE_LICENSE("GPL");
84 static const char hcd_name
[] = "isp116x-hcd";
86 /*-----------------------------------------------------------------*/
89 Write len bytes to fifo, pad till 32-bit boundary
91 static void write_ptddata_to_fifo(struct isp116x
*isp116x
, void *buf
, int len
)
94 u16
*dp2
= (u16
*) buf
;
98 /* buffer is already in 'usb data order', which is LE. */
99 /* When reading buffer as u16, we have to take care byte order */
100 /* doesn't get mixed up */
102 if ((unsigned long)dp2
& 1) {
104 for (; len
> 1; len
-= 2) {
107 isp116x_raw_write_data16(isp116x
, w
);
110 isp116x_write_data16(isp116x
, (u16
) * dp
);
113 for (; len
> 1; len
-= 2) {
114 /* Keep byte order ! */
115 isp116x_raw_write_data16(isp116x
, cpu_to_le16(*dp2
++));
119 isp116x_write_data16(isp116x
, 0xff & *((u8
*) dp2
));
121 if (quot
== 1 || quot
== 2)
122 isp116x_raw_write_data16(isp116x
, 0);
126 Read len bytes from fifo and then read till 32-bit boundary.
128 static void read_ptddata_from_fifo(struct isp116x
*isp116x
, void *buf
, int len
)
131 u16
*dp2
= (u16
*) buf
;
135 /* buffer is already in 'usb data order', which is LE. */
136 /* When reading buffer as u16, we have to take care byte order */
137 /* doesn't get mixed up */
139 if ((unsigned long)dp2
& 1) {
141 for (; len
> 1; len
-= 2) {
142 w
= isp116x_raw_read_data16(isp116x
);
144 *dp
++ = (w
>> 8) & 0xff;
148 *dp
= 0xff & isp116x_read_data16(isp116x
);
151 for (; len
> 1; len
-= 2) {
152 /* Keep byte order! */
153 *dp2
++ = le16_to_cpu(isp116x_raw_read_data16(isp116x
));
157 *(u8
*) dp2
= 0xff & isp116x_read_data16(isp116x
);
159 if (quot
== 1 || quot
== 2)
160 isp116x_raw_read_data16(isp116x
);
164 Write ptd's and data for scheduled transfers into
165 the fifo ram. Fifo must be empty and ready.
167 static void pack_fifo(struct isp116x
*isp116x
)
169 struct isp116x_ep
*ep
;
171 int buflen
= isp116x
->atl_last_dir
== PTD_DIR_IN
172 ? isp116x
->atl_bufshrt
: isp116x
->atl_buflen
;
174 isp116x_write_reg16(isp116x
, HCuPINT
, HCuPINT_AIIEOT
);
175 isp116x_write_reg16(isp116x
, HCXFERCTR
, buflen
);
176 isp116x_write_addr(isp116x
, HCATLPORT
| ISP116x_WRITE_OFFSET
);
177 for (ep
= isp116x
->atl_active
; ep
; ep
= ep
->active
) {
180 dump_ptd_out_data(ptd
, ep
->data
);
181 isp116x_write_data16(isp116x
, ptd
->count
);
182 isp116x_write_data16(isp116x
, ptd
->mps
);
183 isp116x_write_data16(isp116x
, ptd
->len
);
184 isp116x_write_data16(isp116x
, ptd
->faddr
);
185 buflen
-= sizeof(struct ptd
);
186 /* Skip writing data for last IN PTD */
187 if (ep
->active
|| (isp116x
->atl_last_dir
!= PTD_DIR_IN
)) {
188 write_ptddata_to_fifo(isp116x
, ep
->data
, ep
->length
);
189 buflen
-= ALIGN(ep
->length
, 4);
196 Read the processed ptd's and data from fifo ram back to
197 URBs' buffers. Fifo must be full and done
199 static void unpack_fifo(struct isp116x
*isp116x
)
201 struct isp116x_ep
*ep
;
203 int buflen
= isp116x
->atl_last_dir
== PTD_DIR_IN
204 ? isp116x
->atl_buflen
: isp116x
->atl_bufshrt
;
206 isp116x_write_reg16(isp116x
, HCuPINT
, HCuPINT_AIIEOT
);
207 isp116x_write_reg16(isp116x
, HCXFERCTR
, buflen
);
208 isp116x_write_addr(isp116x
, HCATLPORT
);
209 for (ep
= isp116x
->atl_active
; ep
; ep
= ep
->active
) {
211 ptd
->count
= isp116x_read_data16(isp116x
);
212 ptd
->mps
= isp116x_read_data16(isp116x
);
213 ptd
->len
= isp116x_read_data16(isp116x
);
214 ptd
->faddr
= isp116x_read_data16(isp116x
);
215 buflen
-= sizeof(struct ptd
);
216 /* Skip reading data for last Setup or Out PTD */
217 if (ep
->active
|| (isp116x
->atl_last_dir
== PTD_DIR_IN
)) {
218 read_ptddata_from_fifo(isp116x
, ep
->data
, ep
->length
);
219 buflen
-= ALIGN(ep
->length
, 4);
222 dump_ptd_in_data(ptd
, ep
->data
);
227 /*---------------------------------------------------------------*/
232 static void preproc_atl_queue(struct isp116x
*isp116x
)
234 struct isp116x_ep
*ep
;
239 for (ep
= isp116x
->atl_active
; ep
; ep
= ep
->active
) {
240 u16 toggle
= 0, dir
= PTD_DIR_SETUP
;
242 BUG_ON(list_empty(&ep
->hep
->urb_list
));
243 urb
= container_of(ep
->hep
->urb_list
.next
,
244 struct urb
, urb_list
);
247 ep
->data
= (unsigned char *)urb
->transfer_buffer
248 + urb
->actual_length
;
250 switch (ep
->nextpid
) {
252 toggle
= usb_gettoggle(urb
->dev
, ep
->epnum
, 0);
256 toggle
= usb_gettoggle(urb
->dev
, ep
->epnum
, 1);
260 len
= sizeof(struct usb_ctrlrequest
);
261 ep
->data
= urb
->setup_packet
;
266 dir
= (urb
->transfer_buffer_length
267 && usb_pipein(urb
->pipe
))
268 ? PTD_DIR_OUT
: PTD_DIR_IN
;
271 ERR("%s %d: ep->nextpid %d\n", __func__
, __LINE__
,
276 ptd
->count
= PTD_CC_MSK
| PTD_ACTIVE_MSK
| PTD_TOGGLE(toggle
);
277 ptd
->mps
= PTD_MPS(ep
->maxpacket
)
278 | PTD_SPD(urb
->dev
->speed
== USB_SPEED_LOW
)
280 ptd
->len
= PTD_LEN(len
) | PTD_DIR(dir
);
281 ptd
->faddr
= PTD_FA(usb_pipedevice(urb
->pipe
));
283 ptd
->mps
|= PTD_LAST_MSK
;
284 isp116x
->atl_last_dir
= dir
;
286 isp116x
->atl_bufshrt
= sizeof(struct ptd
) + isp116x
->atl_buflen
;
287 isp116x
->atl_buflen
= isp116x
->atl_bufshrt
+ ALIGN(len
, 4);
292 Take done or failed requests out of schedule. Give back
295 static void finish_request(struct isp116x
*isp116x
, struct isp116x_ep
*ep
,
296 struct urb
*urb
, int status
)
297 __releases(isp116x
->lock
) __acquires(isp116x
->lock
)
303 if (usb_pipecontrol(urb
->pipe
))
304 ep
->nextpid
= USB_PID_SETUP
;
306 urb_dbg(urb
, "Finish");
308 usb_hcd_unlink_urb_from_ep(isp116x_to_hcd(isp116x
), urb
);
309 spin_unlock(&isp116x
->lock
);
310 usb_hcd_giveback_urb(isp116x_to_hcd(isp116x
), urb
, status
);
311 spin_lock(&isp116x
->lock
);
313 /* take idle endpoints out of the schedule */
314 if (!list_empty(&ep
->hep
->urb_list
))
317 /* async deschedule */
318 if (!list_empty(&ep
->schedule
)) {
319 list_del_init(&ep
->schedule
);
323 /* periodic deschedule */
324 DBG("deschedule qh%d/%p branch %d\n", ep
->period
, ep
, ep
->branch
);
325 for (i
= ep
->branch
; i
< PERIODIC_SIZE
; i
+= ep
->period
) {
326 struct isp116x_ep
*temp
;
327 struct isp116x_ep
**prev
= &isp116x
->periodic
[i
];
329 while (*prev
&& ((temp
= *prev
) != ep
))
333 isp116x
->load
[i
] -= ep
->load
;
335 ep
->branch
= PERIODIC_SIZE
;
336 isp116x_to_hcd(isp116x
)->self
.bandwidth_allocated
-=
337 ep
->load
/ ep
->period
;
339 /* switch irq type? */
340 if (!--isp116x
->periodic_count
) {
341 isp116x
->irqenb
&= ~HCuPINT_SOF
;
342 isp116x
->irqenb
|= HCuPINT_ATL
;
347 Analyze transfer results, handle partial transfers and errors
349 static void postproc_atl_queue(struct isp116x
*isp116x
)
351 struct isp116x_ep
*ep
;
353 struct usb_device
*udev
;
359 for (ep
= isp116x
->atl_active
; ep
; ep
= ep
->active
) {
360 BUG_ON(list_empty(&ep
->hep
->urb_list
));
362 container_of(ep
->hep
->urb_list
.next
, struct urb
, urb_list
);
365 cc
= PTD_GET_CC(ptd
);
367 status
= -EINPROGRESS
;
369 /* Data underrun is special. For allowed underrun
370 we clear the error and continue as normal. For
371 forbidden underrun we finish the DATA stage
372 immediately while for control transfer,
373 we do a STATUS stage. */
374 if (cc
== TD_DATAUNDERRUN
) {
375 if (!(urb
->transfer_flags
& URB_SHORT_NOT_OK
) ||
376 usb_pipecontrol(urb
->pipe
)) {
377 DBG("Allowed or control data underrun\n");
382 usb_settoggle(udev
, ep
->epnum
,
383 ep
->nextpid
== USB_PID_OUT
,
384 PTD_GET_TOGGLE(ptd
));
385 urb
->actual_length
+= PTD_GET_COUNT(ptd
);
386 status
= cc_to_error
[TD_DATAUNDERRUN
];
391 if (cc
!= TD_CC_NOERROR
&& cc
!= TD_NOTACCESSED
392 && (++ep
->error_count
>= 3 || cc
== TD_CC_STALL
393 || cc
== TD_DATAOVERRUN
)) {
394 status
= cc_to_error
[cc
];
395 if (ep
->nextpid
== USB_PID_ACK
)
399 /* According to usb spec, zero-length Int transfer signals
400 finishing of the urb. Hey, does this apply only
402 if (usb_pipeint(urb
->pipe
) && !PTD_GET_LEN(ptd
)) {
407 /* Relax after previously failed, but later succeeded
408 or correctly NAK'ed retransmission attempt */
410 && (cc
== TD_CC_NOERROR
|| cc
== TD_NOTACCESSED
))
413 /* Take into account idiosyncracies of the isp116x chip
414 regarding toggle bit for failed transfers */
415 if (ep
->nextpid
== USB_PID_OUT
)
416 usb_settoggle(udev
, ep
->epnum
, 1, PTD_GET_TOGGLE(ptd
)
417 ^ (ep
->error_count
> 0));
418 else if (ep
->nextpid
== USB_PID_IN
)
419 usb_settoggle(udev
, ep
->epnum
, 0, PTD_GET_TOGGLE(ptd
)
420 ^ (ep
->error_count
> 0));
422 switch (ep
->nextpid
) {
425 urb
->actual_length
+= PTD_GET_COUNT(ptd
);
426 if (PTD_GET_ACTIVE(ptd
)
427 || (cc
!= TD_CC_NOERROR
&& cc
< 0x0E))
429 if (urb
->transfer_buffer_length
!= urb
->actual_length
) {
433 if (urb
->transfer_flags
& URB_ZERO_PACKET
434 && ep
->nextpid
== USB_PID_OUT
435 && !(PTD_GET_COUNT(ptd
) % ep
->maxpacket
)) {
436 DBG("Zero packet requested\n");
440 /* All data for this URB is transferred, let's finish */
441 if (usb_pipecontrol(urb
->pipe
))
442 ep
->nextpid
= USB_PID_ACK
;
447 if (PTD_GET_ACTIVE(ptd
)
448 || (cc
!= TD_CC_NOERROR
&& cc
< 0x0E))
450 if (urb
->transfer_buffer_length
== urb
->actual_length
)
451 ep
->nextpid
= USB_PID_ACK
;
452 else if (usb_pipeout(urb
->pipe
)) {
453 usb_settoggle(udev
, 0, 1, 1);
454 ep
->nextpid
= USB_PID_OUT
;
456 usb_settoggle(udev
, 0, 0, 1);
457 ep
->nextpid
= USB_PID_IN
;
461 if (PTD_GET_ACTIVE(ptd
)
462 || (cc
!= TD_CC_NOERROR
&& cc
< 0x0E))
472 if (status
!= -EINPROGRESS
|| urb
->unlinked
)
473 finish_request(isp116x
, ep
, urb
, status
);
478 Scan transfer lists, schedule transfers, send data off
481 static void start_atl_transfers(struct isp116x
*isp116x
)
483 struct isp116x_ep
*last_ep
= NULL
, *ep
;
486 int len
, index
, speed
, byte_time
;
488 if (atomic_read(&isp116x
->atl_finishing
))
491 if (!HC_IS_RUNNING(isp116x_to_hcd(isp116x
)->state
))
494 /* FIFO not empty? */
495 if (isp116x_read_reg16(isp116x
, HCBUFSTAT
) & HCBUFSTAT_ATL_FULL
)
498 isp116x
->atl_active
= NULL
;
499 isp116x
->atl_buflen
= isp116x
->atl_bufshrt
= 0;
501 /* Schedule int transfers */
502 if (isp116x
->periodic_count
) {
503 isp116x
->fmindex
= index
=
504 (isp116x
->fmindex
+ 1) & (PERIODIC_SIZE
- 1);
505 if ((load
= isp116x
->load
[index
])) {
506 /* Bring all int transfers for this frame
507 into the active queue */
508 isp116x
->atl_active
= last_ep
=
509 isp116x
->periodic
[index
];
510 while (last_ep
->next
)
511 last_ep
= (last_ep
->active
= last_ep
->next
);
512 last_ep
->active
= NULL
;
516 /* Schedule control/bulk transfers */
517 list_for_each_entry(ep
, &isp116x
->async
, schedule
) {
518 urb
= container_of(ep
->hep
->urb_list
.next
,
519 struct urb
, urb_list
);
520 speed
= urb
->dev
->speed
;
521 byte_time
= speed
== USB_SPEED_LOW
522 ? BYTE_TIME_LOWSPEED
: BYTE_TIME_FULLSPEED
;
524 if (ep
->nextpid
== USB_PID_SETUP
) {
525 len
= sizeof(struct usb_ctrlrequest
);
526 } else if (ep
->nextpid
== USB_PID_ACK
) {
529 /* Find current free length ... */
530 len
= (MAX_LOAD_LIMIT
- load
) / byte_time
;
532 /* ... then limit it to configured max size ... */
533 len
= min(len
, speed
== USB_SPEED_LOW
?
534 MAX_TRANSFER_SIZE_LOWSPEED
:
535 MAX_TRANSFER_SIZE_FULLSPEED
);
537 /* ... and finally cut to the multiple of MaxPacketSize,
538 or to the real length if there's enough room. */
540 (urb
->transfer_buffer_length
-
541 urb
->actual_length
)) {
542 len
-= len
% ep
->maxpacket
;
546 len
= urb
->transfer_buffer_length
-
551 load
+= len
* byte_time
;
552 if (load
> MAX_LOAD_LIMIT
)
558 last_ep
->active
= ep
;
560 isp116x
->atl_active
= ep
;
564 /* Avoid starving of endpoints */
565 if ((&isp116x
->async
)->next
!= (&isp116x
->async
)->prev
)
566 list_move(&isp116x
->async
, (&isp116x
->async
)->next
);
568 if (isp116x
->atl_active
) {
569 preproc_atl_queue(isp116x
);
575 Finish the processed transfers
577 static void finish_atl_transfers(struct isp116x
*isp116x
)
579 if (!isp116x
->atl_active
)
581 /* Fifo not ready? */
582 if (!(isp116x_read_reg16(isp116x
, HCBUFSTAT
) & HCBUFSTAT_ATL_DONE
))
585 atomic_inc(&isp116x
->atl_finishing
);
586 unpack_fifo(isp116x
);
587 postproc_atl_queue(isp116x
);
588 atomic_dec(&isp116x
->atl_finishing
);
591 static irqreturn_t
isp116x_irq(struct usb_hcd
*hcd
)
593 struct isp116x
*isp116x
= hcd_to_isp116x(hcd
);
595 irqreturn_t ret
= IRQ_NONE
;
597 spin_lock(&isp116x
->lock
);
598 isp116x_write_reg16(isp116x
, HCuPINTENB
, 0);
599 irqstat
= isp116x_read_reg16(isp116x
, HCuPINT
);
600 isp116x_write_reg16(isp116x
, HCuPINT
, irqstat
);
602 if (irqstat
& (HCuPINT_ATL
| HCuPINT_SOF
)) {
604 finish_atl_transfers(isp116x
);
607 if (irqstat
& HCuPINT_OPR
) {
608 u32 intstat
= isp116x_read_reg32(isp116x
, HCINTSTAT
);
609 isp116x_write_reg32(isp116x
, HCINTSTAT
, intstat
);
610 if (intstat
& HCINT_UE
) {
611 ERR("Unrecoverable error, HC is dead!\n");
612 /* IRQ's are off, we do no DMA,
613 perfectly ready to die ... */
614 hcd
->state
= HC_STATE_HALT
;
619 if (intstat
& HCINT_RHSC
)
620 /* When root hub or any of its ports is going
621 to come out of suspend, it may take more
622 than 10ms for status bits to stabilize. */
623 mod_timer(&hcd
->rh_timer
, jiffies
624 + msecs_to_jiffies(20) + 1);
625 if (intstat
& HCINT_RD
) {
626 DBG("---- remote wakeup\n");
627 usb_hcd_resume_root_hub(hcd
);
629 irqstat
&= ~HCuPINT_OPR
;
633 if (irqstat
& (HCuPINT_ATL
| HCuPINT_SOF
)) {
634 start_atl_transfers(isp116x
);
637 isp116x_write_reg16(isp116x
, HCuPINTENB
, isp116x
->irqenb
);
639 spin_unlock(&isp116x
->lock
);
643 /*-----------------------------------------------------------------*/
645 /* usb 1.1 says max 90% of a frame is available for periodic transfers.
646 * this driver doesn't promise that much since it's got to handle an
647 * IRQ per packet; irq handling latencies also use up that time.
651 #define MAX_PERIODIC_LOAD 600
652 static int balance(struct isp116x
*isp116x
, u16 period
, u16 load
)
654 int i
, branch
= -ENOSPC
;
656 /* search for the least loaded schedule branch of that period
657 which has enough bandwidth left unreserved. */
658 for (i
= 0; i
< period
; i
++) {
659 if (branch
< 0 || isp116x
->load
[branch
] > isp116x
->load
[i
]) {
662 for (j
= i
; j
< PERIODIC_SIZE
; j
+= period
) {
663 if ((isp116x
->load
[j
] + load
)
667 if (j
< PERIODIC_SIZE
)
675 /* NB! ALL the code above this point runs with isp116x->lock
679 /*-----------------------------------------------------------------*/
681 static int isp116x_urb_enqueue(struct usb_hcd
*hcd
,
685 struct isp116x
*isp116x
= hcd_to_isp116x(hcd
);
686 struct usb_device
*udev
= urb
->dev
;
687 unsigned int pipe
= urb
->pipe
;
688 int is_out
= !usb_pipein(pipe
);
689 int type
= usb_pipetype(pipe
);
690 int epnum
= usb_pipeendpoint(pipe
);
691 struct usb_host_endpoint
*hep
= urb
->ep
;
692 struct isp116x_ep
*ep
= NULL
;
697 urb_dbg(urb
, "Enqueue");
699 if (type
== PIPE_ISOCHRONOUS
) {
700 ERR("Isochronous transfers not supported\n");
701 urb_dbg(urb
, "Refused to enqueue");
704 /* avoid all allocations within spinlocks: request or endpoint */
706 ep
= kzalloc(sizeof *ep
, mem_flags
);
711 spin_lock_irqsave(&isp116x
->lock
, flags
);
712 if (!HC_IS_RUNNING(hcd
->state
)) {
715 goto fail_not_linked
;
717 ret
= usb_hcd_link_urb_to_ep(hcd
, urb
);
720 goto fail_not_linked
;
726 INIT_LIST_HEAD(&ep
->schedule
);
729 ep
->maxpacket
= usb_maxpacket(udev
, urb
->pipe
, is_out
);
730 usb_settoggle(udev
, epnum
, is_out
, 0);
732 if (type
== PIPE_CONTROL
) {
733 ep
->nextpid
= USB_PID_SETUP
;
735 ep
->nextpid
= USB_PID_OUT
;
737 ep
->nextpid
= USB_PID_IN
;
742 With INT URBs submitted, the driver works with SOF
743 interrupt enabled and ATL interrupt disabled. After
744 the PTDs are written to fifo ram, the chip starts
745 fifo processing and usb transfers after the next
746 SOF and continues until the transfers are finished
747 (succeeded or failed) or the frame ends. Therefore,
748 the transfers occur only in every second frame,
749 while fifo reading/writing and data processing
750 occur in every other second frame. */
751 if (urb
->interval
< 2)
753 if (urb
->interval
> 2 * PERIODIC_SIZE
)
754 urb
->interval
= 2 * PERIODIC_SIZE
;
755 ep
->period
= urb
->interval
>> 1;
756 ep
->branch
= PERIODIC_SIZE
;
757 ep
->load
= usb_calc_bus_time(udev
->speed
,
759 (type
== PIPE_ISOCHRONOUS
),
760 usb_maxpacket(udev
, pipe
,
768 /* maybe put endpoint into schedule */
772 if (list_empty(&ep
->schedule
))
773 list_add_tail(&ep
->schedule
, &isp116x
->async
);
776 urb
->interval
= ep
->period
;
777 ep
->length
= min_t(u32
, ep
->maxpacket
,
778 urb
->transfer_buffer_length
);
780 /* urb submitted for already existing endpoint */
781 if (ep
->branch
< PERIODIC_SIZE
)
784 ep
->branch
= ret
= balance(isp116x
, ep
->period
, ep
->load
);
789 urb
->start_frame
= (isp116x
->fmindex
& (PERIODIC_SIZE
- 1))
792 /* sort each schedule branch by period (slow before fast)
793 to share the faster parts of the tree without needing
794 dummy/placeholder nodes */
795 DBG("schedule qh%d/%p branch %d\n", ep
->period
, ep
, ep
->branch
);
796 for (i
= ep
->branch
; i
< PERIODIC_SIZE
; i
+= ep
->period
) {
797 struct isp116x_ep
**prev
= &isp116x
->periodic
[i
];
798 struct isp116x_ep
*here
= *prev
;
800 while (here
&& ep
!= here
) {
801 if (ep
->period
> here
->period
)
810 isp116x
->load
[i
] += ep
->load
;
812 hcd
->self
.bandwidth_allocated
+= ep
->load
/ ep
->period
;
814 /* switch over to SOFint */
815 if (!isp116x
->periodic_count
++) {
816 isp116x
->irqenb
&= ~HCuPINT_ATL
;
817 isp116x
->irqenb
|= HCuPINT_SOF
;
818 isp116x_write_reg16(isp116x
, HCuPINTENB
,
824 start_atl_transfers(isp116x
);
828 usb_hcd_unlink_urb_from_ep(hcd
, urb
);
830 spin_unlock_irqrestore(&isp116x
->lock
, flags
);
837 static int isp116x_urb_dequeue(struct usb_hcd
*hcd
, struct urb
*urb
,
840 struct isp116x
*isp116x
= hcd_to_isp116x(hcd
);
841 struct usb_host_endpoint
*hep
;
842 struct isp116x_ep
*ep
, *ep_act
;
846 spin_lock_irqsave(&isp116x
->lock
, flags
);
847 rc
= usb_hcd_check_unlink_urb(hcd
, urb
, status
);
853 WARN_ON(hep
!= ep
->hep
);
855 /* In front of queue? */
856 if (ep
->hep
->urb_list
.next
== &urb
->urb_list
)
858 for (ep_act
= isp116x
->atl_active
; ep_act
;
859 ep_act
= ep_act
->active
)
861 VDBG("dequeue, urb %p active; wait for irq\n",
868 finish_request(isp116x
, ep
, urb
, status
);
870 spin_unlock_irqrestore(&isp116x
->lock
, flags
);
874 static void isp116x_endpoint_disable(struct usb_hcd
*hcd
,
875 struct usb_host_endpoint
*hep
)
878 struct isp116x_ep
*ep
= hep
->hcpriv
;
883 /* assume we'd just wait for the irq */
884 for (i
= 0; i
< 100 && !list_empty(&hep
->urb_list
); i
++)
886 if (!list_empty(&hep
->urb_list
))
887 WARNING("ep %p not empty?\n", ep
);
893 static int isp116x_get_frame(struct usb_hcd
*hcd
)
895 struct isp116x
*isp116x
= hcd_to_isp116x(hcd
);
899 spin_lock_irqsave(&isp116x
->lock
, flags
);
900 fmnum
= isp116x_read_reg32(isp116x
, HCFMNUM
);
901 spin_unlock_irqrestore(&isp116x
->lock
, flags
);
906 Adapted from ohci-hub.c. Currently we don't support autosuspend.
908 static int isp116x_hub_status_data(struct usb_hcd
*hcd
, char *buf
)
910 struct isp116x
*isp116x
= hcd_to_isp116x(hcd
);
911 int ports
, i
, changed
= 0;
914 if (!HC_IS_RUNNING(hcd
->state
))
917 /* Report no status change now, if we are scheduled to be
919 if (timer_pending(&hcd
->rh_timer
))
922 ports
= isp116x
->rhdesca
& RH_A_NDP
;
923 spin_lock_irqsave(&isp116x
->lock
, flags
);
924 isp116x
->rhstatus
= isp116x_read_reg32(isp116x
, HCRHSTATUS
);
925 if (isp116x
->rhstatus
& (RH_HS_LPSC
| RH_HS_OCIC
))
926 buf
[0] = changed
= 1;
930 for (i
= 0; i
< ports
; i
++) {
931 u32 status
= isp116x_read_reg32(isp116x
, i
? HCRHPORT2
: HCRHPORT1
);
933 if (status
& (RH_PS_CSC
| RH_PS_PESC
| RH_PS_PSSC
934 | RH_PS_OCIC
| RH_PS_PRSC
)) {
936 buf
[0] |= 1 << (i
+ 1);
939 spin_unlock_irqrestore(&isp116x
->lock
, flags
);
943 static void isp116x_hub_descriptor(struct isp116x
*isp116x
,
944 struct usb_hub_descriptor
*desc
)
946 u32 reg
= isp116x
->rhdesca
;
948 desc
->bDescriptorType
= 0x29;
949 desc
->bDescLength
= 9;
950 desc
->bHubContrCurrent
= 0;
951 desc
->bNbrPorts
= (u8
) (reg
& 0x3);
952 /* Power switching, device type, overcurrent. */
953 desc
->wHubCharacteristics
= cpu_to_le16((u16
) ((reg
>> 8) & 0x1f));
954 desc
->bPwrOn2PwrGood
= (u8
) ((reg
>> 24) & 0xff);
955 /* ports removable, and legacy PortPwrCtrlMask */
956 desc
->u
.hs
.DeviceRemovable
[0] = 0;
957 desc
->u
.hs
.DeviceRemovable
[1] = ~0;
960 /* Perform reset of a given port.
961 It would be great to just start the reset and let the
962 USB core to clear the reset in due time. However,
963 root hub ports should be reset for at least 50 ms, while
964 our chip stays in reset for about 10 ms. I.e., we must
965 repeatedly reset it ourself here.
967 static inline void root_port_reset(struct isp116x
*isp116x
, unsigned port
)
970 unsigned long flags
, t
;
972 /* Root hub reset should be 50 ms, but some devices
973 want it even longer. */
974 t
= jiffies
+ msecs_to_jiffies(100);
976 while (time_before(jiffies
, t
)) {
977 spin_lock_irqsave(&isp116x
->lock
, flags
);
978 /* spin until any current reset finishes */
980 tmp
= isp116x_read_reg32(isp116x
, port
?
981 HCRHPORT2
: HCRHPORT1
);
982 if (!(tmp
& RH_PS_PRS
))
986 /* Don't reset a disconnected port */
987 if (!(tmp
& RH_PS_CCS
)) {
988 spin_unlock_irqrestore(&isp116x
->lock
, flags
);
991 /* Reset lasts 10ms (claims datasheet) */
992 isp116x_write_reg32(isp116x
, port
? HCRHPORT2
:
993 HCRHPORT1
, (RH_PS_PRS
));
994 spin_unlock_irqrestore(&isp116x
->lock
, flags
);
999 /* Adapted from ohci-hub.c */
1000 static int isp116x_hub_control(struct usb_hcd
*hcd
,
1002 u16 wValue
, u16 wIndex
, char *buf
, u16 wLength
)
1004 struct isp116x
*isp116x
= hcd_to_isp116x(hcd
);
1006 unsigned long flags
;
1007 int ports
= isp116x
->rhdesca
& RH_A_NDP
;
1011 case ClearHubFeature
:
1012 DBG("ClearHubFeature: ");
1014 case C_HUB_OVER_CURRENT
:
1015 DBG("C_HUB_OVER_CURRENT\n");
1016 spin_lock_irqsave(&isp116x
->lock
, flags
);
1017 isp116x_write_reg32(isp116x
, HCRHSTATUS
, RH_HS_OCIC
);
1018 spin_unlock_irqrestore(&isp116x
->lock
, flags
);
1019 case C_HUB_LOCAL_POWER
:
1020 DBG("C_HUB_LOCAL_POWER\n");
1027 DBG("SetHubFeature: ");
1029 case C_HUB_OVER_CURRENT
:
1030 case C_HUB_LOCAL_POWER
:
1031 DBG("C_HUB_OVER_CURRENT or C_HUB_LOCAL_POWER\n");
1037 case GetHubDescriptor
:
1038 DBG("GetHubDescriptor\n");
1039 isp116x_hub_descriptor(isp116x
,
1040 (struct usb_hub_descriptor
*)buf
);
1043 DBG("GetHubStatus\n");
1044 *(__le32
*) buf
= 0;
1047 DBG("GetPortStatus\n");
1048 if (!wIndex
|| wIndex
> ports
)
1050 spin_lock_irqsave(&isp116x
->lock
, flags
);
1051 tmp
= isp116x_read_reg32(isp116x
, (--wIndex
) ? HCRHPORT2
: HCRHPORT1
);
1052 spin_unlock_irqrestore(&isp116x
->lock
, flags
);
1053 *(__le32
*) buf
= cpu_to_le32(tmp
);
1054 DBG("GetPortStatus: port[%d] %08x\n", wIndex
+ 1, tmp
);
1056 case ClearPortFeature
:
1057 DBG("ClearPortFeature: ");
1058 if (!wIndex
|| wIndex
> ports
)
1063 case USB_PORT_FEAT_ENABLE
:
1064 DBG("USB_PORT_FEAT_ENABLE\n");
1067 case USB_PORT_FEAT_C_ENABLE
:
1068 DBG("USB_PORT_FEAT_C_ENABLE\n");
1071 case USB_PORT_FEAT_SUSPEND
:
1072 DBG("USB_PORT_FEAT_SUSPEND\n");
1075 case USB_PORT_FEAT_C_SUSPEND
:
1076 DBG("USB_PORT_FEAT_C_SUSPEND\n");
1079 case USB_PORT_FEAT_POWER
:
1080 DBG("USB_PORT_FEAT_POWER\n");
1083 case USB_PORT_FEAT_C_CONNECTION
:
1084 DBG("USB_PORT_FEAT_C_CONNECTION\n");
1087 case USB_PORT_FEAT_C_OVER_CURRENT
:
1088 DBG("USB_PORT_FEAT_C_OVER_CURRENT\n");
1091 case USB_PORT_FEAT_C_RESET
:
1092 DBG("USB_PORT_FEAT_C_RESET\n");
1098 spin_lock_irqsave(&isp116x
->lock
, flags
);
1099 isp116x_write_reg32(isp116x
, wIndex
1100 ? HCRHPORT2
: HCRHPORT1
, tmp
);
1101 spin_unlock_irqrestore(&isp116x
->lock
, flags
);
1103 case SetPortFeature
:
1104 DBG("SetPortFeature: ");
1105 if (!wIndex
|| wIndex
> ports
)
1109 case USB_PORT_FEAT_SUSPEND
:
1110 DBG("USB_PORT_FEAT_SUSPEND\n");
1111 spin_lock_irqsave(&isp116x
->lock
, flags
);
1112 isp116x_write_reg32(isp116x
, wIndex
1113 ? HCRHPORT2
: HCRHPORT1
, RH_PS_PSS
);
1114 spin_unlock_irqrestore(&isp116x
->lock
, flags
);
1116 case USB_PORT_FEAT_POWER
:
1117 DBG("USB_PORT_FEAT_POWER\n");
1118 spin_lock_irqsave(&isp116x
->lock
, flags
);
1119 isp116x_write_reg32(isp116x
, wIndex
1120 ? HCRHPORT2
: HCRHPORT1
, RH_PS_PPS
);
1121 spin_unlock_irqrestore(&isp116x
->lock
, flags
);
1123 case USB_PORT_FEAT_RESET
:
1124 DBG("USB_PORT_FEAT_RESET\n");
1125 root_port_reset(isp116x
, wIndex
);
1134 /* "protocol stall" on error */
1135 DBG("PROTOCOL STALL\n");
1141 /*-----------------------------------------------------------------*/
1143 #ifdef CONFIG_DEBUG_FS
1145 static void dump_irq(struct seq_file
*s
, char *label
, u16 mask
)
1147 seq_printf(s
, "%s %04x%s%s%s%s%s%s\n", label
, mask
,
1148 mask
& HCuPINT_CLKRDY
? " clkrdy" : "",
1149 mask
& HCuPINT_SUSP
? " susp" : "",
1150 mask
& HCuPINT_OPR
? " opr" : "",
1151 mask
& HCuPINT_AIIEOT
? " eot" : "",
1152 mask
& HCuPINT_ATL
? " atl" : "",
1153 mask
& HCuPINT_SOF
? " sof" : "");
1156 static void dump_int(struct seq_file
*s
, char *label
, u32 mask
)
1158 seq_printf(s
, "%s %08x%s%s%s%s%s%s%s\n", label
, mask
,
1159 mask
& HCINT_MIE
? " MIE" : "",
1160 mask
& HCINT_RHSC
? " rhsc" : "",
1161 mask
& HCINT_FNO
? " fno" : "",
1162 mask
& HCINT_UE
? " ue" : "",
1163 mask
& HCINT_RD
? " rd" : "",
1164 mask
& HCINT_SF
? " sof" : "", mask
& HCINT_SO
? " so" : "");
1167 static int isp116x_show_dbg(struct seq_file
*s
, void *unused
)
1169 struct isp116x
*isp116x
= s
->private;
1171 seq_printf(s
, "%s\n%s version %s\n",
1172 isp116x_to_hcd(isp116x
)->product_desc
, hcd_name
,
1175 if (HC_IS_SUSPENDED(isp116x_to_hcd(isp116x
)->state
)) {
1176 seq_printf(s
, "HCD is suspended\n");
1179 if (!HC_IS_RUNNING(isp116x_to_hcd(isp116x
)->state
)) {
1180 seq_printf(s
, "HCD not running\n");
1184 spin_lock_irq(&isp116x
->lock
);
1185 dump_irq(s
, "hc_irq_enable", isp116x_read_reg16(isp116x
, HCuPINTENB
));
1186 dump_irq(s
, "hc_irq_status", isp116x_read_reg16(isp116x
, HCuPINT
));
1187 dump_int(s
, "hc_int_enable", isp116x_read_reg32(isp116x
, HCINTENB
));
1188 dump_int(s
, "hc_int_status", isp116x_read_reg32(isp116x
, HCINTSTAT
));
1189 isp116x_show_regs_seq(isp116x
, s
);
1190 spin_unlock_irq(&isp116x
->lock
);
1191 seq_printf(s
, "\n");
1196 static int isp116x_open_seq(struct inode
*inode
, struct file
*file
)
1198 return single_open(file
, isp116x_show_dbg
, inode
->i_private
);
1201 static const struct file_operations isp116x_debug_fops
= {
1202 .open
= isp116x_open_seq
,
1204 .llseek
= seq_lseek
,
1205 .release
= single_release
,
1208 static int create_debug_file(struct isp116x
*isp116x
)
1210 isp116x
->dentry
= debugfs_create_file(hcd_name
,
1211 S_IRUGO
, NULL
, isp116x
,
1212 &isp116x_debug_fops
);
1213 if (!isp116x
->dentry
)
1218 static void remove_debug_file(struct isp116x
*isp116x
)
1220 debugfs_remove(isp116x
->dentry
);
1225 #define create_debug_file(d) 0
1226 #define remove_debug_file(d) do{}while(0)
1228 #endif /* CONFIG_DEBUG_FS */
1230 /*-----------------------------------------------------------------*/
1233 Software reset - can be called from any contect.
1235 static int isp116x_sw_reset(struct isp116x
*isp116x
)
1238 unsigned long flags
;
1241 spin_lock_irqsave(&isp116x
->lock
, flags
);
1242 isp116x_write_reg16(isp116x
, HCSWRES
, HCSWRES_MAGIC
);
1243 isp116x_write_reg32(isp116x
, HCCMDSTAT
, HCCMDSTAT_HCR
);
1245 /* It usually resets within 1 ms */
1247 if (!(isp116x_read_reg32(isp116x
, HCCMDSTAT
) & HCCMDSTAT_HCR
))
1251 ERR("Software reset timeout\n");
1254 spin_unlock_irqrestore(&isp116x
->lock
, flags
);
1258 static int isp116x_reset(struct usb_hcd
*hcd
)
1260 struct isp116x
*isp116x
= hcd_to_isp116x(hcd
);
1263 int ret
, timeout
= 15 /* ms */ ;
1265 ret
= isp116x_sw_reset(isp116x
);
1269 t
= jiffies
+ msecs_to_jiffies(timeout
);
1270 while (time_before_eq(jiffies
, t
)) {
1272 spin_lock_irq(&isp116x
->lock
);
1273 clkrdy
= isp116x_read_reg16(isp116x
, HCuPINT
) & HCuPINT_CLKRDY
;
1274 spin_unlock_irq(&isp116x
->lock
);
1279 ERR("Clock not ready after %dms\n", timeout
);
1280 /* After sw_reset the clock won't report to be ready, if
1281 H_WAKEUP pin is high. */
1282 ERR("Please make sure that the H_WAKEUP pin is pulled low!\n");
1288 static void isp116x_stop(struct usb_hcd
*hcd
)
1290 struct isp116x
*isp116x
= hcd_to_isp116x(hcd
);
1291 unsigned long flags
;
1294 spin_lock_irqsave(&isp116x
->lock
, flags
);
1295 isp116x_write_reg16(isp116x
, HCuPINTENB
, 0);
1297 /* Switch off ports' power, some devices don't come up
1298 after next 'insmod' without this */
1299 val
= isp116x_read_reg32(isp116x
, HCRHDESCA
);
1300 val
&= ~(RH_A_NPS
| RH_A_PSM
);
1301 isp116x_write_reg32(isp116x
, HCRHDESCA
, val
);
1302 isp116x_write_reg32(isp116x
, HCRHSTATUS
, RH_HS_LPS
);
1303 spin_unlock_irqrestore(&isp116x
->lock
, flags
);
1305 isp116x_sw_reset(isp116x
);
1309 Configure the chip. The chip must be successfully reset by now.
1311 static int isp116x_start(struct usb_hcd
*hcd
)
1313 struct isp116x
*isp116x
= hcd_to_isp116x(hcd
);
1314 struct isp116x_platform_data
*board
= isp116x
->board
;
1316 unsigned long flags
;
1318 spin_lock_irqsave(&isp116x
->lock
, flags
);
1320 /* clear interrupt status and disable all interrupt sources */
1321 isp116x_write_reg16(isp116x
, HCuPINT
, 0xff);
1322 isp116x_write_reg16(isp116x
, HCuPINTENB
, 0);
1324 val
= isp116x_read_reg16(isp116x
, HCCHIPID
);
1325 if ((val
& HCCHIPID_MASK
) != HCCHIPID_MAGIC
) {
1326 ERR("Invalid chip ID %04x\n", val
);
1327 spin_unlock_irqrestore(&isp116x
->lock
, flags
);
1331 /* To be removed in future */
1332 hcd
->uses_new_polling
= 1;
1334 isp116x_write_reg16(isp116x
, HCITLBUFLEN
, ISP116x_ITL_BUFSIZE
);
1335 isp116x_write_reg16(isp116x
, HCATLBUFLEN
, ISP116x_ATL_BUFSIZE
);
1338 val
= HCHWCFG_INT_ENABLE
| HCHWCFG_DBWIDTH(1);
1339 if (board
->sel15Kres
)
1340 val
|= HCHWCFG_15KRSEL
;
1341 /* Remote wakeup won't work without working clock */
1342 if (board
->remote_wakeup_enable
)
1343 val
|= HCHWCFG_CLKNOTSTOP
;
1344 if (board
->oc_enable
)
1345 val
|= HCHWCFG_ANALOG_OC
;
1346 if (board
->int_act_high
)
1347 val
|= HCHWCFG_INT_POL
;
1348 if (board
->int_edge_triggered
)
1349 val
|= HCHWCFG_INT_TRIGGER
;
1350 isp116x_write_reg16(isp116x
, HCHWCFG
, val
);
1352 /* ----- Root hub conf */
1353 val
= (25 << 24) & RH_A_POTPGT
;
1354 /* AN10003_1.pdf recommends RH_A_NPS (no power switching) to
1355 be always set. Yet, instead, we request individual port
1358 /* Report overcurrent per port */
1360 isp116x_write_reg32(isp116x
, HCRHDESCA
, val
);
1361 isp116x
->rhdesca
= isp116x_read_reg32(isp116x
, HCRHDESCA
);
1364 isp116x_write_reg32(isp116x
, HCRHDESCB
, val
);
1365 isp116x
->rhdescb
= isp116x_read_reg32(isp116x
, HCRHDESCB
);
1368 if (board
->remote_wakeup_enable
) {
1369 if (!device_can_wakeup(hcd
->self
.controller
))
1370 device_init_wakeup(hcd
->self
.controller
, 1);
1373 isp116x_write_reg32(isp116x
, HCRHSTATUS
, val
);
1374 isp116x
->rhstatus
= isp116x_read_reg32(isp116x
, HCRHSTATUS
);
1376 isp116x_write_reg32(isp116x
, HCFMINTVL
, 0x27782edf);
1378 hcd
->state
= HC_STATE_RUNNING
;
1380 /* Set up interrupts */
1381 isp116x
->intenb
= HCINT_MIE
| HCINT_RHSC
| HCINT_UE
;
1382 if (board
->remote_wakeup_enable
)
1383 isp116x
->intenb
|= HCINT_RD
;
1384 isp116x
->irqenb
= HCuPINT_ATL
| HCuPINT_OPR
; /* | HCuPINT_SUSP; */
1385 isp116x_write_reg32(isp116x
, HCINTENB
, isp116x
->intenb
);
1386 isp116x_write_reg16(isp116x
, HCuPINTENB
, isp116x
->irqenb
);
1388 /* Go operational */
1389 val
= HCCONTROL_USB_OPER
;
1390 if (board
->remote_wakeup_enable
)
1391 val
|= HCCONTROL_RWE
;
1392 isp116x_write_reg32(isp116x
, HCCONTROL
, val
);
1394 /* Disable ports to avoid race in device enumeration */
1395 isp116x_write_reg32(isp116x
, HCRHPORT1
, RH_PS_CCS
);
1396 isp116x_write_reg32(isp116x
, HCRHPORT2
, RH_PS_CCS
);
1398 isp116x_show_regs_log(isp116x
);
1399 spin_unlock_irqrestore(&isp116x
->lock
, flags
);
1405 static int isp116x_bus_suspend(struct usb_hcd
*hcd
)
1407 struct isp116x
*isp116x
= hcd_to_isp116x(hcd
);
1408 unsigned long flags
;
1412 spin_lock_irqsave(&isp116x
->lock
, flags
);
1413 val
= isp116x_read_reg32(isp116x
, HCCONTROL
);
1415 switch (val
& HCCONTROL_HCFS
) {
1416 case HCCONTROL_USB_OPER
:
1417 spin_unlock_irqrestore(&isp116x
->lock
, flags
);
1418 val
&= (~HCCONTROL_HCFS
& ~HCCONTROL_RWE
);
1419 val
|= HCCONTROL_USB_SUSPEND
;
1420 if (hcd
->self
.root_hub
->do_remote_wakeup
)
1421 val
|= HCCONTROL_RWE
;
1422 /* Wait for usb transfers to finish */
1424 spin_lock_irqsave(&isp116x
->lock
, flags
);
1425 isp116x_write_reg32(isp116x
, HCCONTROL
, val
);
1426 spin_unlock_irqrestore(&isp116x
->lock
, flags
);
1427 /* Wait for devices to suspend */
1430 case HCCONTROL_USB_RESUME
:
1431 isp116x_write_reg32(isp116x
, HCCONTROL
,
1432 (val
& ~HCCONTROL_HCFS
) |
1433 HCCONTROL_USB_RESET
);
1434 case HCCONTROL_USB_RESET
:
1436 default: /* HCCONTROL_USB_SUSPEND */
1437 spin_unlock_irqrestore(&isp116x
->lock
, flags
);
1444 static int isp116x_bus_resume(struct usb_hcd
*hcd
)
1446 struct isp116x
*isp116x
= hcd_to_isp116x(hcd
);
1450 spin_lock_irq(&isp116x
->lock
);
1452 val
= isp116x_read_reg32(isp116x
, HCCONTROL
);
1453 switch (val
& HCCONTROL_HCFS
) {
1454 case HCCONTROL_USB_SUSPEND
:
1455 val
&= ~HCCONTROL_HCFS
;
1456 val
|= HCCONTROL_USB_RESUME
;
1457 isp116x_write_reg32(isp116x
, HCCONTROL
, val
);
1458 case HCCONTROL_USB_RESUME
:
1460 case HCCONTROL_USB_OPER
:
1461 spin_unlock_irq(&isp116x
->lock
);
1464 /* HCCONTROL_USB_RESET: this may happen, when during
1465 suspension the HC lost power. Reinitialize completely */
1466 spin_unlock_irq(&isp116x
->lock
);
1467 DBG("Chip has been reset while suspended. Reinit from scratch.\n");
1470 isp116x_hub_control(hcd
, SetPortFeature
,
1471 USB_PORT_FEAT_POWER
, 1, NULL
, 0);
1472 if ((isp116x
->rhdesca
& RH_A_NDP
) == 2)
1473 isp116x_hub_control(hcd
, SetPortFeature
,
1474 USB_PORT_FEAT_POWER
, 2, NULL
, 0);
1478 val
= isp116x
->rhdesca
& RH_A_NDP
;
1481 isp116x_read_reg32(isp116x
, val
? HCRHPORT2
: HCRHPORT1
);
1482 /* force global, not selective, resume */
1483 if (!(stat
& RH_PS_PSS
))
1485 DBG("%s: Resuming port %d\n", __func__
, val
);
1486 isp116x_write_reg32(isp116x
, RH_PS_POCI
, val
1487 ? HCRHPORT2
: HCRHPORT1
);
1489 spin_unlock_irq(&isp116x
->lock
);
1491 hcd
->state
= HC_STATE_RESUMING
;
1494 /* Go operational */
1495 spin_lock_irq(&isp116x
->lock
);
1496 val
= isp116x_read_reg32(isp116x
, HCCONTROL
);
1497 isp116x_write_reg32(isp116x
, HCCONTROL
,
1498 (val
& ~HCCONTROL_HCFS
) | HCCONTROL_USB_OPER
);
1499 spin_unlock_irq(&isp116x
->lock
);
1500 hcd
->state
= HC_STATE_RUNNING
;
1507 #define isp116x_bus_suspend NULL
1508 #define isp116x_bus_resume NULL
1512 static struct hc_driver isp116x_hc_driver
= {
1513 .description
= hcd_name
,
1514 .product_desc
= "ISP116x Host Controller",
1515 .hcd_priv_size
= sizeof(struct isp116x
),
1520 .reset
= isp116x_reset
,
1521 .start
= isp116x_start
,
1522 .stop
= isp116x_stop
,
1524 .urb_enqueue
= isp116x_urb_enqueue
,
1525 .urb_dequeue
= isp116x_urb_dequeue
,
1526 .endpoint_disable
= isp116x_endpoint_disable
,
1528 .get_frame_number
= isp116x_get_frame
,
1530 .hub_status_data
= isp116x_hub_status_data
,
1531 .hub_control
= isp116x_hub_control
,
1532 .bus_suspend
= isp116x_bus_suspend
,
1533 .bus_resume
= isp116x_bus_resume
,
1536 /*----------------------------------------------------------------*/
1538 static int isp116x_remove(struct platform_device
*pdev
)
1540 struct usb_hcd
*hcd
= platform_get_drvdata(pdev
);
1541 struct isp116x
*isp116x
;
1542 struct resource
*res
;
1546 isp116x
= hcd_to_isp116x(hcd
);
1547 remove_debug_file(isp116x
);
1548 usb_remove_hcd(hcd
);
1550 iounmap(isp116x
->data_reg
);
1551 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
1552 release_mem_region(res
->start
, 2);
1553 iounmap(isp116x
->addr_reg
);
1554 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1555 release_mem_region(res
->start
, 2);
1561 static int __devinit
isp116x_probe(struct platform_device
*pdev
)
1563 struct usb_hcd
*hcd
;
1564 struct isp116x
*isp116x
;
1565 struct resource
*addr
, *data
, *ires
;
1566 void __iomem
*addr_reg
;
1567 void __iomem
*data_reg
;
1570 unsigned long irqflags
;
1572 if (pdev
->num_resources
< 3) {
1577 data
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1578 addr
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
1579 ires
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
1581 if (!addr
|| !data
|| !ires
) {
1587 irqflags
= ires
->flags
& IRQF_TRIGGER_MASK
;
1589 if (pdev
->dev
.dma_mask
) {
1590 DBG("DMA not supported\n");
1595 if (!request_mem_region(addr
->start
, 2, hcd_name
)) {
1599 addr_reg
= ioremap(addr
->start
, resource_size(addr
));
1600 if (addr_reg
== NULL
) {
1604 if (!request_mem_region(data
->start
, 2, hcd_name
)) {
1608 data_reg
= ioremap(data
->start
, resource_size(data
));
1609 if (data_reg
== NULL
) {
1614 /* allocate and initialize hcd */
1615 hcd
= usb_create_hcd(&isp116x_hc_driver
, &pdev
->dev
, dev_name(&pdev
->dev
));
1620 /* this rsrc_start is bogus */
1621 hcd
->rsrc_start
= addr
->start
;
1622 isp116x
= hcd_to_isp116x(hcd
);
1623 isp116x
->data_reg
= data_reg
;
1624 isp116x
->addr_reg
= addr_reg
;
1625 spin_lock_init(&isp116x
->lock
);
1626 INIT_LIST_HEAD(&isp116x
->async
);
1627 isp116x
->board
= pdev
->dev
.platform_data
;
1629 if (!isp116x
->board
) {
1630 ERR("Platform data structure not initialized\n");
1634 if (isp116x_check_platform_delay(isp116x
)) {
1635 ERR("USE_PLATFORM_DELAY defined, but delay function not "
1637 ERR("See comments in drivers/usb/host/isp116x-hcd.c\n");
1642 ret
= usb_add_hcd(hcd
, irq
, irqflags
);
1646 ret
= create_debug_file(isp116x
);
1648 ERR("Couldn't create debugfs entry\n");
1655 usb_remove_hcd(hcd
);
1661 release_mem_region(data
->start
, 2);
1665 release_mem_region(addr
->start
, 2);
1667 ERR("init error, %d\n", ret
);
1673 Suspend of platform device
1675 static int isp116x_suspend(struct platform_device
*dev
, pm_message_t state
)
1677 VDBG("%s: state %x\n", __func__
, state
.event
);
1682 Resume platform device
1684 static int isp116x_resume(struct platform_device
*dev
)
1686 VDBG("%s\n", __func__
);
1692 #define isp116x_suspend NULL
1693 #define isp116x_resume NULL
1697 /* work with hotplug and coldplug */
1698 MODULE_ALIAS("platform:isp116x-hcd");
1700 static struct platform_driver isp116x_driver
= {
1701 .probe
= isp116x_probe
,
1702 .remove
= isp116x_remove
,
1703 .suspend
= isp116x_suspend
,
1704 .resume
= isp116x_resume
,
1706 .name
= (char *)hcd_name
,
1707 .owner
= THIS_MODULE
,
1711 /*-----------------------------------------------------------------*/
1713 static int __init
isp116x_init(void)
1718 INFO("driver %s, %s\n", hcd_name
, DRIVER_VERSION
);
1719 return platform_driver_register(&isp116x_driver
);
1722 module_init(isp116x_init
);
1724 static void __exit
isp116x_cleanup(void)
1726 platform_driver_unregister(&isp116x_driver
);
1729 module_exit(isp116x_cleanup
);