2 * Driver for the NXP ISP1760 chip
4 * However, the code might contain some bugs. What doesn't work for sure is:
7 e The interrupt line is configured as active low, level.
9 * (c) 2007 Sebastian Siewior <bigeasy@linutronix.de>
12 #include <linux/module.h>
13 #include <linux/kernel.h>
14 #include <linux/slab.h>
15 #include <linux/list.h>
16 #include <linux/usb.h>
17 #include <linux/debugfs.h>
18 #include <linux/uaccess.h>
21 #include <asm/unaligned.h>
22 #include <asm/cacheflush.h>
24 #include "../core/hcd.h"
25 #include "isp1760-hcd.h"
27 static struct kmem_cache
*qtd_cachep
;
28 static struct kmem_cache
*qh_cachep
;
33 struct inter_packet_info atl_ints
[32];
34 struct inter_packet_info int_ints
[32];
35 struct memory_chunk memory_pool
[BLOCKS
];
37 /* periodic schedule support */
38 #define DEFAULT_I_TDPS 1024
39 unsigned periodic_size
;
41 unsigned long reset_done
;
42 unsigned long next_statechange
;
43 unsigned int devflags
;
46 static inline struct isp1760_hcd
*hcd_to_priv(struct usb_hcd
*hcd
)
48 return (struct isp1760_hcd
*) (hcd
->hcd_priv
);
50 static inline struct usb_hcd
*priv_to_hcd(struct isp1760_hcd
*priv
)
52 return container_of((void *) priv
, struct usb_hcd
, hcd_priv
);
55 /* Section 2.2 Host Controller Capability Registers */
56 #define HC_LENGTH(p) (((p)>>00)&0x00ff) /* bits 7:0 */
57 #define HC_VERSION(p) (((p)>>16)&0xffff) /* bits 31:16 */
58 #define HCS_INDICATOR(p) ((p)&(1 << 16)) /* true: has port indicators */
59 #define HCS_PPC(p) ((p)&(1 << 4)) /* true: port power control */
60 #define HCS_N_PORTS(p) (((p)>>0)&0xf) /* bits 3:0, ports on HC */
61 #define HCC_ISOC_CACHE(p) ((p)&(1 << 7)) /* true: can cache isoc frame */
62 #define HCC_ISOC_THRES(p) (((p)>>4)&0x7) /* bits 6:4, uframes cached */
64 /* Section 2.3 Host Controller Operational Registers */
65 #define CMD_LRESET (1<<7) /* partial reset (no ports, etc) */
66 #define CMD_RESET (1<<1) /* reset HC not bus */
67 #define CMD_RUN (1<<0) /* start/stop HC */
68 #define STS_PCD (1<<2) /* port change detect */
69 #define FLAG_CF (1<<0) /* true: we'll support "high speed" */
71 #define PORT_OWNER (1<<13) /* true: companion hc owns this port */
72 #define PORT_POWER (1<<12) /* true: has power (see PPC) */
73 #define PORT_USB11(x) (((x) & (3 << 10)) == (1 << 10)) /* USB 1.1 device */
74 #define PORT_RESET (1<<8) /* reset port */
75 #define PORT_SUSPEND (1<<7) /* suspend port */
76 #define PORT_RESUME (1<<6) /* resume it */
77 #define PORT_PE (1<<2) /* port enable */
78 #define PORT_CSC (1<<1) /* connect status change */
79 #define PORT_CONNECT (1<<0) /* device connected */
80 #define PORT_RWC_BITS (PORT_CSC)
83 struct isp1760_qtd
*hw_next
;
88 /* the rest is HCD-private */
89 struct list_head qtd_list
;
95 #define URB_COMPLETE_NOTIFY (1 << 0)
96 #define URB_ENQUEUED (1 << 1)
97 #define URB_TYPE_ATL (1 << 2)
98 #define URB_TYPE_INT (1 << 3)
102 /* first part defined by EHCI spec */
103 struct list_head qtd_list
;
104 struct isp1760_hcd
*priv
;
106 /* periodic schedule info */
107 unsigned short period
; /* polling interval */
108 struct usb_device
*dev
;
114 #define ehci_port_speed(priv, portsc) (1 << USB_PORT_FEAT_HIGHSPEED)
116 static unsigned int isp1760_readl(__u32 __iomem
*regs
)
121 static void isp1760_writel(const unsigned int val
, __u32 __iomem
*regs
)
127 * The next two copy via MMIO data to/from the device. memcpy_{to|from}io()
128 * doesn't quite work because some people have to enforce 32-bit access
130 static void priv_read_copy(struct isp1760_hcd
*priv
, u32
*src
,
131 __u32 __iomem
*dst
, u32 len
)
137 printk(KERN_ERR
"ERROR: buffer: %p len: %d\n", src
, len
);
142 *src
= __raw_readl(dst
);
151 /* in case we have 3, 2 or 1 by left. The dst buffer may not be fully
154 val
= isp1760_readl(dst
);
166 static void priv_write_copy(const struct isp1760_hcd
*priv
, const u32
*src
,
167 __u32 __iomem
*dst
, u32 len
)
170 __raw_writel(*src
, dst
);
178 /* in case we have 3, 2 or 1 by left. The buffer is allocated and the
179 * extra bytes should not be read by the HW
182 __raw_writel(*src
, dst
);
185 /* memory management of the 60kb on the chip from 0x1000 to 0xffff */
186 static void init_memory(struct isp1760_hcd
*priv
)
192 for (i
= 0; i
< BLOCK_1_NUM
; i
++) {
193 priv
->memory_pool
[i
].start
= payload
;
194 priv
->memory_pool
[i
].size
= BLOCK_1_SIZE
;
195 priv
->memory_pool
[i
].free
= 1;
196 payload
+= priv
->memory_pool
[i
].size
;
200 for (i
= BLOCK_1_NUM
; i
< BLOCK_1_NUM
+ BLOCK_2_NUM
; i
++) {
201 priv
->memory_pool
[i
].start
= payload
;
202 priv
->memory_pool
[i
].size
= BLOCK_2_SIZE
;
203 priv
->memory_pool
[i
].free
= 1;
204 payload
+= priv
->memory_pool
[i
].size
;
208 for (i
= BLOCK_1_NUM
+ BLOCK_2_NUM
; i
< BLOCKS
; i
++) {
209 priv
->memory_pool
[i
].start
= payload
;
210 priv
->memory_pool
[i
].size
= BLOCK_3_SIZE
;
211 priv
->memory_pool
[i
].free
= 1;
212 payload
+= priv
->memory_pool
[i
].size
;
215 BUG_ON(payload
- priv
->memory_pool
[i
- 1].size
> PAYLOAD_SIZE
);
218 static u32
alloc_mem(struct isp1760_hcd
*priv
, u32 size
)
223 return ISP1760_NULL_POINTER
;
225 for (i
= 0; i
< BLOCKS
; i
++) {
226 if (priv
->memory_pool
[i
].size
>= size
&&
227 priv
->memory_pool
[i
].free
) {
229 priv
->memory_pool
[i
].free
= 0;
230 return priv
->memory_pool
[i
].start
;
234 printk(KERN_ERR
"ISP1760 MEM: can not allocate %d bytes of memory\n",
236 printk(KERN_ERR
"Current memory map:\n");
237 for (i
= 0; i
< BLOCKS
; i
++) {
238 printk(KERN_ERR
"Pool %2d size %4d status: %d\n",
239 i
, priv
->memory_pool
[i
].size
,
240 priv
->memory_pool
[i
].free
);
242 /* XXX maybe -ENOMEM could be possible */
247 static void free_mem(struct isp1760_hcd
*priv
, u32 mem
)
251 if (mem
== ISP1760_NULL_POINTER
)
254 for (i
= 0; i
< BLOCKS
; i
++) {
255 if (priv
->memory_pool
[i
].start
== mem
) {
257 BUG_ON(priv
->memory_pool
[i
].free
);
259 priv
->memory_pool
[i
].free
= 1;
264 printk(KERN_ERR
"Trying to free not-here-allocated memory :%08x\n",
269 static void isp1760_init_regs(struct usb_hcd
*hcd
)
271 isp1760_writel(0, hcd
->regs
+ HC_BUFFER_STATUS_REG
);
272 isp1760_writel(NO_TRANSFER_ACTIVE
, hcd
->regs
+
273 HC_ATL_PTD_SKIPMAP_REG
);
274 isp1760_writel(NO_TRANSFER_ACTIVE
, hcd
->regs
+
275 HC_INT_PTD_SKIPMAP_REG
);
276 isp1760_writel(NO_TRANSFER_ACTIVE
, hcd
->regs
+
277 HC_ISO_PTD_SKIPMAP_REG
);
279 isp1760_writel(~NO_TRANSFER_ACTIVE
, hcd
->regs
+
280 HC_ATL_PTD_DONEMAP_REG
);
281 isp1760_writel(~NO_TRANSFER_ACTIVE
, hcd
->regs
+
282 HC_INT_PTD_DONEMAP_REG
);
283 isp1760_writel(~NO_TRANSFER_ACTIVE
, hcd
->regs
+
284 HC_ISO_PTD_DONEMAP_REG
);
287 static int handshake(struct isp1760_hcd
*priv
, void __iomem
*ptr
,
288 u32 mask
, u32 done
, int usec
)
293 result
= isp1760_readl(ptr
);
305 /* reset a non-running (STS_HALT == 1) controller */
306 static int ehci_reset(struct isp1760_hcd
*priv
)
309 struct usb_hcd
*hcd
= priv_to_hcd(priv
);
310 u32 command
= isp1760_readl(hcd
->regs
+ HC_USBCMD
);
312 command
|= CMD_RESET
;
313 isp1760_writel(command
, hcd
->regs
+ HC_USBCMD
);
314 hcd
->state
= HC_STATE_HALT
;
315 priv
->next_statechange
= jiffies
;
316 retval
= handshake(priv
, hcd
->regs
+ HC_USBCMD
,
317 CMD_RESET
, 0, 250 * 1000);
321 static void qh_destroy(struct isp1760_qh
*qh
)
323 BUG_ON(!list_empty(&qh
->qtd_list
));
324 kmem_cache_free(qh_cachep
, qh
);
327 static struct isp1760_qh
*isp1760_qh_alloc(struct isp1760_hcd
*priv
,
330 struct isp1760_qh
*qh
;
332 qh
= kmem_cache_zalloc(qh_cachep
, flags
);
336 INIT_LIST_HEAD(&qh
->qtd_list
);
341 /* magic numbers that can affect system performance */
342 #define EHCI_TUNE_CERR 3 /* 0-3 qtd retries; 0 == don't stop */
343 #define EHCI_TUNE_RL_HS 4 /* nak throttle; see 4.9 */
344 #define EHCI_TUNE_RL_TT 0
345 #define EHCI_TUNE_MULT_HS 1 /* 1-3 transactions/uframe; 4.10.3 */
346 #define EHCI_TUNE_MULT_TT 1
347 #define EHCI_TUNE_FLS 2 /* (small) 256 frame schedule */
349 /* one-time init, only for memory state */
350 static int priv_init(struct usb_hcd
*hcd
)
352 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
355 spin_lock_init(&priv
->lock
);
358 * hw default: 1K periodic list heads, one per frame.
359 * periodic_size can shrink by USBCMD update if hcc_params allows.
361 priv
->periodic_size
= DEFAULT_I_TDPS
;
363 /* controllers may cache some of the periodic schedule ... */
364 hcc_params
= isp1760_readl(hcd
->regs
+ HC_HCCPARAMS
);
365 /* full frame cache */
366 if (HCC_ISOC_CACHE(hcc_params
))
368 else /* N microframes cached */
369 priv
->i_thresh
= 2 + HCC_ISOC_THRES(hcc_params
);
374 static int isp1760_hc_setup(struct usb_hcd
*hcd
)
376 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
380 /* Setup HW Mode Control: This assumes a level active-low interrupt */
381 hwmode
= HW_DATA_BUS_32BIT
;
383 if (priv
->devflags
& ISP1760_FLAG_BUS_WIDTH_16
)
384 hwmode
&= ~HW_DATA_BUS_32BIT
;
385 if (priv
->devflags
& ISP1760_FLAG_ANALOG_OC
)
386 hwmode
|= HW_ANA_DIGI_OC
;
387 if (priv
->devflags
& ISP1760_FLAG_DACK_POL_HIGH
)
388 hwmode
|= HW_DACK_POL_HIGH
;
389 if (priv
->devflags
& ISP1760_FLAG_DREQ_POL_HIGH
)
390 hwmode
|= HW_DREQ_POL_HIGH
;
391 if (priv
->devflags
& ISP1760_FLAG_INTR_POL_HIGH
)
392 hwmode
|= HW_INTR_HIGH_ACT
;
393 if (priv
->devflags
& ISP1760_FLAG_INTR_EDGE_TRIG
)
394 hwmode
|= HW_INTR_EDGE_TRIG
;
397 * We have to set this first in case we're in 16-bit mode.
398 * Write it twice to ensure correct upper bits if switching
401 isp1760_writel(hwmode
, hcd
->regs
+ HC_HW_MODE_CTRL
);
402 isp1760_writel(hwmode
, hcd
->regs
+ HC_HW_MODE_CTRL
);
404 isp1760_writel(0xdeadbabe, hcd
->regs
+ HC_SCRATCH_REG
);
405 /* Change bus pattern */
406 scratch
= isp1760_readl(hcd
->regs
+ HC_CHIP_ID_REG
);
407 scratch
= isp1760_readl(hcd
->regs
+ HC_SCRATCH_REG
);
408 if (scratch
!= 0xdeadbabe) {
409 printk(KERN_ERR
"ISP1760: Scratch test failed.\n");
414 isp1760_init_regs(hcd
);
417 isp1760_writel(SW_RESET_RESET_ALL
, hcd
->regs
+ HC_RESET_REG
);
420 isp1760_writel(SW_RESET_RESET_HC
, hcd
->regs
+ HC_RESET_REG
);
423 result
= ehci_reset(priv
);
429 isp1760_info(priv
, "bus width: %d, oc: %s\n",
430 (priv
->devflags
& ISP1760_FLAG_BUS_WIDTH_16
) ?
431 16 : 32, (priv
->devflags
& ISP1760_FLAG_ANALOG_OC
) ?
432 "analog" : "digital");
435 isp1760_writel(hwmode
| ALL_ATX_RESET
, hcd
->regs
+ HC_HW_MODE_CTRL
);
437 isp1760_writel(hwmode
, hcd
->regs
+ HC_HW_MODE_CTRL
);
439 isp1760_writel(INTERRUPT_ENABLE_MASK
, hcd
->regs
+ HC_INTERRUPT_REG
);
440 isp1760_writel(INTERRUPT_ENABLE_MASK
, hcd
->regs
+ HC_INTERRUPT_ENABLE
);
443 * PORT 1 Control register of the ISP1760 is the OTG control
444 * register on ISP1761. Since there is no OTG or device controller
445 * support in this driver, we use port 1 as a "normal" USB host port on
448 isp1760_writel(PORT1_POWER
| PORT1_INIT2
,
449 hcd
->regs
+ HC_PORT1_CTRL
);
452 priv
->hcs_params
= isp1760_readl(hcd
->regs
+ HC_HCSPARAMS
);
454 return priv_init(hcd
);
457 static void isp1760_init_maps(struct usb_hcd
*hcd
)
459 /*set last maps, for iso its only 1, else 32 tds bitmap*/
460 isp1760_writel(0x80000000, hcd
->regs
+ HC_ATL_PTD_LASTPTD_REG
);
461 isp1760_writel(0x80000000, hcd
->regs
+ HC_INT_PTD_LASTPTD_REG
);
462 isp1760_writel(0x00000001, hcd
->regs
+ HC_ISO_PTD_LASTPTD_REG
);
465 static void isp1760_enable_interrupts(struct usb_hcd
*hcd
)
467 isp1760_writel(0, hcd
->regs
+ HC_ATL_IRQ_MASK_AND_REG
);
468 isp1760_writel(0, hcd
->regs
+ HC_ATL_IRQ_MASK_OR_REG
);
469 isp1760_writel(0, hcd
->regs
+ HC_INT_IRQ_MASK_AND_REG
);
470 isp1760_writel(0, hcd
->regs
+ HC_INT_IRQ_MASK_OR_REG
);
471 isp1760_writel(0, hcd
->regs
+ HC_ISO_IRQ_MASK_AND_REG
);
472 isp1760_writel(0xffffffff, hcd
->regs
+ HC_ISO_IRQ_MASK_OR_REG
);
476 static int isp1760_run(struct usb_hcd
*hcd
)
478 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
484 hcd
->uses_new_polling
= 1;
487 hcd
->state
= HC_STATE_RUNNING
;
488 isp1760_enable_interrupts(hcd
);
489 temp
= isp1760_readl(hcd
->regs
+ HC_HW_MODE_CTRL
);
490 isp1760_writel(temp
| HW_GLOBAL_INTR_EN
, hcd
->regs
+ HC_HW_MODE_CTRL
);
492 command
= isp1760_readl(hcd
->regs
+ HC_USBCMD
);
493 command
&= ~(CMD_LRESET
|CMD_RESET
);
495 isp1760_writel(command
, hcd
->regs
+ HC_USBCMD
);
497 retval
= handshake(priv
, hcd
->regs
+ HC_USBCMD
, CMD_RUN
, CMD_RUN
,
504 * Spec says to write FLAG_CF as last config action, priv code grabs
505 * the semaphore while doing so.
507 down_write(&ehci_cf_port_reset_rwsem
);
508 isp1760_writel(FLAG_CF
, hcd
->regs
+ HC_CONFIGFLAG
);
510 retval
= handshake(priv
, hcd
->regs
+ HC_CONFIGFLAG
, FLAG_CF
, FLAG_CF
,
512 up_write(&ehci_cf_port_reset_rwsem
);
516 chipid
= isp1760_readl(hcd
->regs
+ HC_CHIP_ID_REG
);
517 isp1760_info(priv
, "USB ISP %04x HW rev. %d started\n", chipid
& 0xffff,
520 /* PTD Register Init Part 2, Step 28 */
522 isp1760_init_maps(hcd
);
524 /* GRR this is run-once init(), being done every time the HC starts.
525 * So long as they're part of class devices, we can't do it init()
526 * since the class device isn't created that early.
531 static u32
base_to_chip(u32 base
)
533 return ((base
- 0x400) >> 3);
536 static void transform_into_atl(struct isp1760_hcd
*priv
, struct isp1760_qh
*qh
,
537 struct isp1760_qtd
*qtd
, struct urb
*urb
,
538 u32 payload
, struct ptd
*ptd
)
548 u32 nak
= NAK_COUNTER
;
550 /* according to 3.6.2, max packet len can not be > 0x400 */
551 maxpacket
= usb_maxpacket(urb
->dev
, urb
->pipe
, usb_pipeout(urb
->pipe
));
552 multi
= 1 + ((maxpacket
>> 11) & 0x3);
557 dw0
|= PTD_LENGTH(qtd
->length
);
558 dw0
|= PTD_MAXPACKET(maxpacket
);
559 dw0
|= PTD_ENDPOINT(usb_pipeendpoint(urb
->pipe
));
560 dw1
= usb_pipeendpoint(urb
->pipe
) >> 1;
563 dw1
|= PTD_DEVICE_ADDR(usb_pipedevice(urb
->pipe
));
565 pid_code
= qtd
->packet_type
;
566 dw1
|= PTD_PID_TOKEN(pid_code
);
568 if (usb_pipebulk(urb
->pipe
))
569 dw1
|= PTD_TRANS_BULK
;
570 else if (usb_pipeint(urb
->pipe
))
571 dw1
|= PTD_TRANS_INT
;
573 if (urb
->dev
->speed
!= USB_SPEED_HIGH
) {
574 /* split transaction */
576 dw1
|= PTD_TRANS_SPLIT
;
577 if (urb
->dev
->speed
== USB_SPEED_LOW
)
578 dw1
|= PTD_SE_USB_LOSPEED
;
580 dw1
|= PTD_PORT_NUM(urb
->dev
->ttport
);
581 dw1
|= PTD_HUB_NUM(urb
->dev
->tt
->hub
->devnum
);
583 /* SE bit for Split INT transfers */
584 if (usb_pipeint(urb
->pipe
) &&
585 (urb
->dev
->speed
== USB_SPEED_LOW
))
592 dw0
|= PTD_MULTI(multi
);
593 if (usb_pipecontrol(urb
->pipe
) || usb_pipebulk(urb
->pipe
))
600 dw2
|= PTD_DATA_START_ADDR(base_to_chip(payload
));
601 dw2
|= PTD_RL_CNT(rl
);
602 dw3
|= PTD_NAC_CNT(nak
);
605 if (usb_pipecontrol(urb
->pipe
))
606 dw3
|= PTD_DATA_TOGGLE(qtd
->toggle
);
613 dw3
|= PTD_CERR(ERR_COUNTER
);
615 memset(ptd
, 0, sizeof(*ptd
));
617 ptd
->dw0
= cpu_to_le32(dw0
);
618 ptd
->dw1
= cpu_to_le32(dw1
);
619 ptd
->dw2
= cpu_to_le32(dw2
);
620 ptd
->dw3
= cpu_to_le32(dw3
);
623 static void transform_add_int(struct isp1760_hcd
*priv
, struct isp1760_qh
*qh
,
624 struct isp1760_qtd
*qtd
, struct urb
*urb
,
625 u32 payload
, struct ptd
*ptd
)
634 maxpacket
= usb_maxpacket(urb
->dev
, urb
->pipe
, usb_pipeout(urb
->pipe
));
635 multi
= 1 + ((maxpacket
>> 11) & 0x3);
637 /* length of the data per uframe */
638 maxpacket
= multi
* maxpacket
;
640 numberofusofs
= urb
->transfer_buffer_length
/ maxpacket
;
641 if (urb
->transfer_buffer_length
% maxpacket
)
646 for (i
= 0; i
< numberofusofs
; i
++) {
651 if (urb
->dev
->speed
!= USB_SPEED_HIGH
) {
653 ptd
->dw5
= cpu_to_le32(0x1c);
655 if (qh
->period
>= 32)
656 period
= qh
->period
/ 2;
663 period
= qh
->period
/8;
670 if (qh
->period
>= 8) {
671 /* millisecond period */
672 period
= (period
<< 3);
674 /* usof based tranmsfers */
675 /* minimum 4 usofs */
680 ptd
->dw2
|= cpu_to_le32(period
);
681 ptd
->dw4
= cpu_to_le32(usof
);
684 static void transform_into_int(struct isp1760_hcd
*priv
, struct isp1760_qh
*qh
,
685 struct isp1760_qtd
*qtd
, struct urb
*urb
,
686 u32 payload
, struct ptd
*ptd
)
688 transform_into_atl(priv
, qh
, qtd
, urb
, payload
, ptd
);
689 transform_add_int(priv
, qh
, qtd
, urb
, payload
, ptd
);
692 static int qtd_fill(struct isp1760_qtd
*qtd
, void *databuffer
, size_t len
,
697 qtd
->data_buffer
= databuffer
;
698 qtd
->packet_type
= GET_QTD_TOKEN_TYPE(token
);
699 qtd
->toggle
= GET_DATA_TOGGLE(token
);
701 if (len
> HC_ATL_PL_SIZE
)
702 count
= HC_ATL_PL_SIZE
;
710 static int check_error(struct ptd
*ptd
)
715 dw3
= le32_to_cpu(ptd
->dw3
);
716 if (dw3
& DW3_HALT_BIT
)
719 if (dw3
& DW3_ERROR_BIT
) {
720 printk(KERN_ERR
"error bit is set in DW3\n");
724 if (dw3
& DW3_QTD_ACTIVE
) {
725 printk(KERN_ERR
"transfer active bit is set DW3\n");
726 printk(KERN_ERR
"nak counter: %d, rl: %d\n", (dw3
>> 19) & 0xf,
727 (le32_to_cpu(ptd
->dw2
) >> 25) & 0xf);
733 static void check_int_err_status(u32 dw4
)
739 for (i
= 0; i
< 8; i
++) {
742 printk(KERN_ERR
"ERROR: under run , %d\n", i
);
746 printk(KERN_ERR
"ERROR: transaction error, %d\n", i
);
750 printk(KERN_ERR
"ERROR: babble error, %d\n", i
);
757 static void enqueue_one_qtd(struct isp1760_qtd
*qtd
, struct isp1760_hcd
*priv
,
761 struct usb_hcd
*hcd
= priv_to_hcd(priv
);
763 token
= qtd
->packet_type
;
765 if (qtd
->length
&& (qtd
->length
<= HC_ATL_PL_SIZE
)) {
771 priv_write_copy(priv
, qtd
->data_buffer
,
778 static void enqueue_one_atl_qtd(u32 atl_regs
, u32 payload
,
779 struct isp1760_hcd
*priv
, struct isp1760_qh
*qh
,
780 struct urb
*urb
, u32 slot
, struct isp1760_qtd
*qtd
)
783 struct usb_hcd
*hcd
= priv_to_hcd(priv
);
785 transform_into_atl(priv
, qh
, qtd
, urb
, payload
, &ptd
);
786 priv_write_copy(priv
, (u32
*)&ptd
, hcd
->regs
+ atl_regs
, sizeof(ptd
));
787 enqueue_one_qtd(qtd
, priv
, payload
);
789 priv
->atl_ints
[slot
].urb
= urb
;
790 priv
->atl_ints
[slot
].qh
= qh
;
791 priv
->atl_ints
[slot
].qtd
= qtd
;
792 priv
->atl_ints
[slot
].data_buffer
= qtd
->data_buffer
;
793 priv
->atl_ints
[slot
].payload
= payload
;
794 qtd
->status
|= URB_ENQUEUED
| URB_TYPE_ATL
;
795 qtd
->status
|= slot
<< 16;
798 static void enqueue_one_int_qtd(u32 int_regs
, u32 payload
,
799 struct isp1760_hcd
*priv
, struct isp1760_qh
*qh
,
800 struct urb
*urb
, u32 slot
, struct isp1760_qtd
*qtd
)
803 struct usb_hcd
*hcd
= priv_to_hcd(priv
);
805 transform_into_int(priv
, qh
, qtd
, urb
, payload
, &ptd
);
806 priv_write_copy(priv
, (u32
*)&ptd
, hcd
->regs
+ int_regs
, sizeof(ptd
));
807 enqueue_one_qtd(qtd
, priv
, payload
);
809 priv
->int_ints
[slot
].urb
= urb
;
810 priv
->int_ints
[slot
].qh
= qh
;
811 priv
->int_ints
[slot
].qtd
= qtd
;
812 priv
->int_ints
[slot
].data_buffer
= qtd
->data_buffer
;
813 priv
->int_ints
[slot
].payload
= payload
;
814 qtd
->status
|= URB_ENQUEUED
| URB_TYPE_INT
;
815 qtd
->status
|= slot
<< 16;
818 static void enqueue_an_ATL_packet(struct usb_hcd
*hcd
, struct isp1760_qh
*qh
,
819 struct isp1760_qtd
*qtd
)
821 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
822 u32 skip_map
, or_map
;
825 u32 atl_regs
, payload
;
829 * When this function is called from the interrupt handler to enqueue
830 * a follow-up packet, the SKIP register gets written and read back
831 * almost immediately. With ISP1761, this register requires a delay of
832 * 195ns between a write and subsequent read (see section 15.1.1.3).
835 skip_map
= isp1760_readl(hcd
->regs
+ HC_ATL_PTD_SKIPMAP_REG
);
838 slot
= __ffs(skip_map
);
839 queue_entry
= 1 << slot
;
841 atl_regs
= ATL_REGS_OFFSET
+ slot
* sizeof(struct ptd
);
843 payload
= alloc_mem(priv
, qtd
->length
);
845 enqueue_one_atl_qtd(atl_regs
, payload
, priv
, qh
, qtd
->urb
, slot
, qtd
);
847 or_map
= isp1760_readl(hcd
->regs
+ HC_ATL_IRQ_MASK_OR_REG
);
848 or_map
|= queue_entry
;
849 isp1760_writel(or_map
, hcd
->regs
+ HC_ATL_IRQ_MASK_OR_REG
);
851 skip_map
&= ~queue_entry
;
852 isp1760_writel(skip_map
, hcd
->regs
+ HC_ATL_PTD_SKIPMAP_REG
);
854 buffstatus
= isp1760_readl(hcd
->regs
+ HC_BUFFER_STATUS_REG
);
855 buffstatus
|= ATL_BUFFER
;
856 isp1760_writel(buffstatus
, hcd
->regs
+ HC_BUFFER_STATUS_REG
);
859 static void enqueue_an_INT_packet(struct usb_hcd
*hcd
, struct isp1760_qh
*qh
,
860 struct isp1760_qtd
*qtd
)
862 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
863 u32 skip_map
, or_map
;
866 u32 int_regs
, payload
;
870 * When this function is called from the interrupt handler to enqueue
871 * a follow-up packet, the SKIP register gets written and read back
872 * almost immediately. With ISP1761, this register requires a delay of
873 * 195ns between a write and subsequent read (see section 15.1.1.3).
876 skip_map
= isp1760_readl(hcd
->regs
+ HC_INT_PTD_SKIPMAP_REG
);
879 slot
= __ffs(skip_map
);
880 queue_entry
= 1 << slot
;
882 int_regs
= INT_REGS_OFFSET
+ slot
* sizeof(struct ptd
);
884 payload
= alloc_mem(priv
, qtd
->length
);
886 enqueue_one_int_qtd(int_regs
, payload
, priv
, qh
, qtd
->urb
, slot
, qtd
);
888 or_map
= isp1760_readl(hcd
->regs
+ HC_INT_IRQ_MASK_OR_REG
);
889 or_map
|= queue_entry
;
890 isp1760_writel(or_map
, hcd
->regs
+ HC_INT_IRQ_MASK_OR_REG
);
892 skip_map
&= ~queue_entry
;
893 isp1760_writel(skip_map
, hcd
->regs
+ HC_INT_PTD_SKIPMAP_REG
);
895 buffstatus
= isp1760_readl(hcd
->regs
+ HC_BUFFER_STATUS_REG
);
896 buffstatus
|= INT_BUFFER
;
897 isp1760_writel(buffstatus
, hcd
->regs
+ HC_BUFFER_STATUS_REG
);
900 static void isp1760_urb_done(struct isp1760_hcd
*priv
, struct urb
*urb
, int status
)
901 __releases(priv
->lock
)
902 __acquires(priv
->lock
)
904 if (!urb
->unlinked
) {
905 if (status
== -EINPROGRESS
)
909 if (usb_pipein(urb
->pipe
) && usb_pipetype(urb
->pipe
) != PIPE_CONTROL
) {
911 for (ptr
= urb
->transfer_buffer
;
912 ptr
< urb
->transfer_buffer
+ urb
->transfer_buffer_length
;
914 flush_dcache_page(virt_to_page(ptr
));
917 /* complete() can reenter this HCD */
918 usb_hcd_unlink_urb_from_ep(priv_to_hcd(priv
), urb
);
919 spin_unlock(&priv
->lock
);
920 usb_hcd_giveback_urb(priv_to_hcd(priv
), urb
, status
);
921 spin_lock(&priv
->lock
);
924 static void isp1760_qtd_free(struct isp1760_qtd
*qtd
)
926 kmem_cache_free(qtd_cachep
, qtd
);
929 static struct isp1760_qtd
*clean_this_qtd(struct isp1760_qtd
*qtd
)
931 struct isp1760_qtd
*tmp_qtd
;
933 tmp_qtd
= qtd
->hw_next
;
934 list_del(&qtd
->qtd_list
);
935 isp1760_qtd_free(qtd
);
940 * Remove this QTD from the QH list and free its memory. If this QTD
941 * isn't the last one than remove also his successor(s).
942 * Returns the QTD which is part of an new URB and should be enqueued.
944 static struct isp1760_qtd
*clean_up_qtdlist(struct isp1760_qtd
*qtd
)
946 struct isp1760_qtd
*tmp_qtd
;
950 tmp_qtd
= qtd
->hw_next
;
951 last_one
= qtd
->status
& URB_COMPLETE_NOTIFY
;
952 list_del(&qtd
->qtd_list
);
953 isp1760_qtd_free(qtd
);
955 } while (!last_one
&& qtd
);
960 static void do_atl_int(struct usb_hcd
*usb_hcd
)
962 struct isp1760_hcd
*priv
= hcd_to_priv(usb_hcd
);
963 u32 done_map
, skip_map
;
965 struct urb
*urb
= NULL
;
972 u32 status
= -EINVAL
;
974 struct isp1760_qtd
*qtd
;
975 struct isp1760_qh
*qh
;
979 done_map
= isp1760_readl(usb_hcd
->regs
+
980 HC_ATL_PTD_DONEMAP_REG
);
981 skip_map
= isp1760_readl(usb_hcd
->regs
+
982 HC_ATL_PTD_SKIPMAP_REG
);
984 or_map
= isp1760_readl(usb_hcd
->regs
+ HC_ATL_IRQ_MASK_OR_REG
);
986 isp1760_writel(or_map
, usb_hcd
->regs
+ HC_ATL_IRQ_MASK_OR_REG
);
988 atl_regs_base
= ATL_REGS_OFFSET
;
996 queue_entry
= __ffs(done_map
);
997 done_map
&= ~(1 << queue_entry
);
998 skip_map
|= 1 << queue_entry
;
1000 atl_regs
= atl_regs_base
+ queue_entry
* sizeof(struct ptd
);
1002 urb
= priv
->atl_ints
[queue_entry
].urb
;
1003 qtd
= priv
->atl_ints
[queue_entry
].qtd
;
1004 qh
= priv
->atl_ints
[queue_entry
].qh
;
1005 payload
= priv
->atl_ints
[queue_entry
].payload
;
1008 printk(KERN_ERR
"qh is 0\n");
1011 isp1760_writel(atl_regs
+ ISP_BANK(0), usb_hcd
->regs
+
1013 isp1760_writel(payload
+ ISP_BANK(1), usb_hcd
->regs
+
1016 * write bank1 address twice to ensure the 90ns delay (time
1017 * between BANK0 write and the priv_read_copy() call is at
1018 * least 3*t_WHWL + 2*t_w11 = 3*25ns + 2*17ns = 109ns)
1020 isp1760_writel(payload
+ ISP_BANK(1), usb_hcd
->regs
+
1023 priv_read_copy(priv
, (u32
*)&ptd
, usb_hcd
->regs
+ atl_regs
+
1024 ISP_BANK(0), sizeof(ptd
));
1026 dw1
= le32_to_cpu(ptd
.dw1
);
1027 dw2
= le32_to_cpu(ptd
.dw2
);
1028 dw3
= le32_to_cpu(ptd
.dw3
);
1029 rl
= (dw2
>> 25) & 0x0f;
1030 nakcount
= (dw3
>> 19) & 0xf;
1032 /* Transfer Error, *but* active and no HALT -> reload */
1033 if ((dw3
& DW3_ERROR_BIT
) && (dw3
& DW3_QTD_ACTIVE
) &&
1034 !(dw3
& DW3_HALT_BIT
)) {
1036 /* according to ppriv code, we have to
1037 * reload this one if trasfered bytes != requested bytes
1038 * else act like everything went smooth..
1039 * XXX This just doesn't feel right and hasn't
1043 length
= PTD_XFERRED_LENGTH(dw3
);
1044 printk(KERN_ERR
"Should reload now.... transfered %d "
1045 "of %zu\n", length
, qtd
->length
);
1049 if (!nakcount
&& (dw3
& DW3_QTD_ACTIVE
)) {
1053 * NAKs are handled in HW by the chip. Usually if the
1054 * device is not able to send data fast enough.
1055 * This happens mostly on slower hardware.
1057 printk(KERN_NOTICE
"Reloading ptd %p/%p... qh %p read: "
1058 "%d of %zu done: %08x cur: %08x\n", qtd
,
1059 urb
, qh
, PTD_XFERRED_LENGTH(dw3
),
1060 qtd
->length
, done_map
,
1061 (1 << queue_entry
));
1063 /* RL counter = ERR counter */
1064 dw3
&= ~(0xf << 19);
1066 dw3
&= ~(3 << (55 - 32));
1067 dw3
|= ERR_COUNTER
<< (55 - 32);
1070 * It is not needed to write skip map back because it
1071 * is unchanged. Just make sure that this entry is
1072 * unskipped once it gets written to the HW.
1074 skip_map
&= ~(1 << queue_entry
);
1075 or_map
= isp1760_readl(usb_hcd
->regs
+
1076 HC_ATL_IRQ_MASK_OR_REG
);
1077 or_map
|= 1 << queue_entry
;
1078 isp1760_writel(or_map
, usb_hcd
->regs
+
1079 HC_ATL_IRQ_MASK_OR_REG
);
1081 ptd
.dw3
= cpu_to_le32(dw3
);
1082 priv_write_copy(priv
, (u32
*)&ptd
, usb_hcd
->regs
+
1083 atl_regs
, sizeof(ptd
));
1085 ptd
.dw0
|= cpu_to_le32(PTD_VALID
);
1086 priv_write_copy(priv
, (u32
*)&ptd
, usb_hcd
->regs
+
1087 atl_regs
, sizeof(ptd
));
1089 buffstatus
= isp1760_readl(usb_hcd
->regs
+
1090 HC_BUFFER_STATUS_REG
);
1091 buffstatus
|= ATL_BUFFER
;
1092 isp1760_writel(buffstatus
, usb_hcd
->regs
+
1093 HC_BUFFER_STATUS_REG
);
1097 error
= check_error(&ptd
);
1100 priv
->atl_ints
[queue_entry
].qh
->toggle
= 0;
1101 priv
->atl_ints
[queue_entry
].qh
->ping
= 0;
1102 urb
->status
= -EPIPE
;
1105 printk(KERN_ERR
"Error in %s().\n", __func__
);
1106 printk(KERN_ERR
"IN dw0: %08x dw1: %08x dw2: %08x "
1107 "dw3: %08x dw4: %08x dw5: %08x dw6: "
1109 ptd
.dw0
, ptd
.dw1
, ptd
.dw2
, ptd
.dw3
,
1110 ptd
.dw4
, ptd
.dw5
, ptd
.dw6
, ptd
.dw7
);
1113 if (usb_pipetype(urb
->pipe
) == PIPE_BULK
) {
1114 priv
->atl_ints
[queue_entry
].qh
->toggle
= dw3
&
1116 priv
->atl_ints
[queue_entry
].qh
->ping
= dw3
&
1121 length
= PTD_XFERRED_LENGTH(dw3
);
1123 switch (DW1_GET_PID(dw1
)) {
1125 priv_read_copy(priv
,
1126 priv
->atl_ints
[queue_entry
].data_buffer
,
1127 usb_hcd
->regs
+ payload
+ ISP_BANK(1),
1132 urb
->actual_length
+= length
;
1139 priv
->atl_ints
[queue_entry
].data_buffer
= NULL
;
1140 priv
->atl_ints
[queue_entry
].urb
= NULL
;
1141 priv
->atl_ints
[queue_entry
].qtd
= NULL
;
1142 priv
->atl_ints
[queue_entry
].qh
= NULL
;
1144 free_mem(priv
, payload
);
1146 isp1760_writel(skip_map
, usb_hcd
->regs
+
1147 HC_ATL_PTD_SKIPMAP_REG
);
1149 if (urb
->status
== -EPIPE
) {
1150 /* HALT was received */
1152 qtd
= clean_up_qtdlist(qtd
);
1153 isp1760_urb_done(priv
, urb
, urb
->status
);
1155 } else if (usb_pipebulk(urb
->pipe
) && (length
< qtd
->length
)) {
1156 /* short BULK received */
1158 if (urb
->transfer_flags
& URB_SHORT_NOT_OK
) {
1159 urb
->status
= -EREMOTEIO
;
1160 isp1760_dbg(priv
, "short bulk, %d instead %zu "
1161 "with URB_SHORT_NOT_OK flag.\n",
1162 length
, qtd
->length
);
1165 if (urb
->status
== -EINPROGRESS
)
1168 qtd
= clean_up_qtdlist(qtd
);
1170 isp1760_urb_done(priv
, urb
, urb
->status
);
1172 } else if (qtd
->status
& URB_COMPLETE_NOTIFY
) {
1173 /* that was the last qtd of that URB */
1175 if (urb
->status
== -EINPROGRESS
)
1178 qtd
= clean_this_qtd(qtd
);
1179 isp1760_urb_done(priv
, urb
, urb
->status
);
1182 /* next QTD of this URB */
1184 qtd
= clean_this_qtd(qtd
);
1189 enqueue_an_ATL_packet(usb_hcd
, qh
, qtd
);
1191 skip_map
= isp1760_readl(usb_hcd
->regs
+
1192 HC_ATL_PTD_SKIPMAP_REG
);
1196 static void do_intl_int(struct usb_hcd
*usb_hcd
)
1198 struct isp1760_hcd
*priv
= hcd_to_priv(usb_hcd
);
1199 u32 done_map
, skip_map
;
1201 struct urb
*urb
= NULL
;
1209 struct isp1760_qtd
*qtd
;
1210 struct isp1760_qh
*qh
;
1212 done_map
= isp1760_readl(usb_hcd
->regs
+
1213 HC_INT_PTD_DONEMAP_REG
);
1214 skip_map
= isp1760_readl(usb_hcd
->regs
+
1215 HC_INT_PTD_SKIPMAP_REG
);
1217 or_map
= isp1760_readl(usb_hcd
->regs
+ HC_INT_IRQ_MASK_OR_REG
);
1218 or_map
&= ~done_map
;
1219 isp1760_writel(or_map
, usb_hcd
->regs
+ HC_INT_IRQ_MASK_OR_REG
);
1221 int_regs_base
= INT_REGS_OFFSET
;
1227 queue_entry
= __ffs(done_map
);
1228 done_map
&= ~(1 << queue_entry
);
1229 skip_map
|= 1 << queue_entry
;
1231 int_regs
= int_regs_base
+ queue_entry
* sizeof(struct ptd
);
1232 urb
= priv
->int_ints
[queue_entry
].urb
;
1233 qtd
= priv
->int_ints
[queue_entry
].qtd
;
1234 qh
= priv
->int_ints
[queue_entry
].qh
;
1235 payload
= priv
->int_ints
[queue_entry
].payload
;
1238 printk(KERN_ERR
"(INT) qh is 0\n");
1242 isp1760_writel(int_regs
+ ISP_BANK(0), usb_hcd
->regs
+
1244 isp1760_writel(payload
+ ISP_BANK(1), usb_hcd
->regs
+
1247 * write bank1 address twice to ensure the 90ns delay (time
1248 * between BANK0 write and the priv_read_copy() call is at
1249 * least 3*t_WHWL + 2*t_w11 = 3*25ns + 2*17ns = 92ns)
1251 isp1760_writel(payload
+ ISP_BANK(1), usb_hcd
->regs
+
1254 priv_read_copy(priv
, (u32
*)&ptd
, usb_hcd
->regs
+ int_regs
+
1255 ISP_BANK(0), sizeof(ptd
));
1256 dw1
= le32_to_cpu(ptd
.dw1
);
1257 dw3
= le32_to_cpu(ptd
.dw3
);
1258 check_int_err_status(le32_to_cpu(ptd
.dw4
));
1260 error
= check_error(&ptd
);
1263 printk(KERN_ERR
"Error in %s().\n", __func__
);
1264 printk(KERN_ERR
"IN dw0: %08x dw1: %08x dw2: %08x "
1265 "dw3: %08x dw4: %08x dw5: %08x dw6: "
1267 ptd
.dw0
, ptd
.dw1
, ptd
.dw2
, ptd
.dw3
,
1268 ptd
.dw4
, ptd
.dw5
, ptd
.dw6
, ptd
.dw7
);
1270 urb
->status
= -EPIPE
;
1271 priv
->int_ints
[queue_entry
].qh
->toggle
= 0;
1272 priv
->int_ints
[queue_entry
].qh
->ping
= 0;
1275 priv
->int_ints
[queue_entry
].qh
->toggle
=
1277 priv
->int_ints
[queue_entry
].qh
->ping
= dw3
& (1 << 26);
1280 if (urb
->dev
->speed
!= USB_SPEED_HIGH
)
1281 length
= PTD_XFERRED_LENGTH_LO(dw3
);
1283 length
= PTD_XFERRED_LENGTH(dw3
);
1286 switch (DW1_GET_PID(dw1
)) {
1288 priv_read_copy(priv
,
1289 priv
->int_ints
[queue_entry
].data_buffer
,
1290 usb_hcd
->regs
+ payload
+ ISP_BANK(1),
1294 urb
->actual_length
+= length
;
1301 priv
->int_ints
[queue_entry
].data_buffer
= NULL
;
1302 priv
->int_ints
[queue_entry
].urb
= NULL
;
1303 priv
->int_ints
[queue_entry
].qtd
= NULL
;
1304 priv
->int_ints
[queue_entry
].qh
= NULL
;
1306 isp1760_writel(skip_map
, usb_hcd
->regs
+
1307 HC_INT_PTD_SKIPMAP_REG
);
1308 free_mem(priv
, payload
);
1310 if (urb
->status
== -EPIPE
) {
1313 qtd
= clean_up_qtdlist(qtd
);
1314 isp1760_urb_done(priv
, urb
, urb
->status
);
1316 } else if (qtd
->status
& URB_COMPLETE_NOTIFY
) {
1318 if (urb
->status
== -EINPROGRESS
)
1321 qtd
= clean_this_qtd(qtd
);
1322 isp1760_urb_done(priv
, urb
, urb
->status
);
1325 /* next QTD of this URB */
1327 qtd
= clean_this_qtd(qtd
);
1332 enqueue_an_INT_packet(usb_hcd
, qh
, qtd
);
1334 skip_map
= isp1760_readl(usb_hcd
->regs
+
1335 HC_INT_PTD_SKIPMAP_REG
);
1339 #define max_packet(wMaxPacketSize) ((wMaxPacketSize) & 0x07ff)
1340 static struct isp1760_qh
*qh_make(struct isp1760_hcd
*priv
, struct urb
*urb
,
1343 struct isp1760_qh
*qh
;
1346 qh
= isp1760_qh_alloc(priv
, flags
);
1351 * init endpoint/device data for this QH
1353 is_input
= usb_pipein(urb
->pipe
);
1354 type
= usb_pipetype(urb
->pipe
);
1356 if (type
== PIPE_INTERRUPT
) {
1358 if (urb
->dev
->speed
== USB_SPEED_HIGH
) {
1360 qh
->period
= urb
->interval
>> 3;
1361 if (qh
->period
== 0 && urb
->interval
!= 1) {
1362 /* NOTE interval 2 or 4 uframes could work.
1363 * But interval 1 scheduling is simpler, and
1364 * includes high bandwidth.
1366 printk(KERN_ERR
"intr period %d uframes, NYET!",
1372 qh
->period
= urb
->interval
;
1376 /* support for tt scheduling, and access to toggles */
1379 if (!usb_pipecontrol(urb
->pipe
))
1380 usb_settoggle(urb
->dev
, usb_pipeendpoint(urb
->pipe
), !is_input
,
1386 * For control/bulk/interrupt, return QH with these TDs appended.
1387 * Allocates and initializes the QH if necessary.
1388 * Returns null if it can't allocate a QH it needs to.
1389 * If the QH has TDs (urbs) already, that's great.
1391 static struct isp1760_qh
*qh_append_tds(struct isp1760_hcd
*priv
,
1392 struct urb
*urb
, struct list_head
*qtd_list
, int epnum
,
1395 struct isp1760_qh
*qh
;
1396 struct isp1760_qtd
*qtd
;
1397 struct isp1760_qtd
*prev_qtd
;
1399 qh
= (struct isp1760_qh
*)*ptr
;
1401 /* can't sleep here, we have priv->lock... */
1402 qh
= qh_make(priv
, urb
, GFP_ATOMIC
);
1408 qtd
= list_entry(qtd_list
->next
, struct isp1760_qtd
,
1410 if (!list_empty(&qh
->qtd_list
))
1411 prev_qtd
= list_entry(qh
->qtd_list
.prev
,
1412 struct isp1760_qtd
, qtd_list
);
1416 list_splice(qtd_list
, qh
->qtd_list
.prev
);
1418 BUG_ON(prev_qtd
->hw_next
);
1419 prev_qtd
->hw_next
= qtd
;
1426 static void qtd_list_free(struct isp1760_hcd
*priv
, struct urb
*urb
,
1427 struct list_head
*qtd_list
)
1429 struct list_head
*entry
, *temp
;
1431 list_for_each_safe(entry
, temp
, qtd_list
) {
1432 struct isp1760_qtd
*qtd
;
1434 qtd
= list_entry(entry
, struct isp1760_qtd
, qtd_list
);
1435 list_del(&qtd
->qtd_list
);
1436 isp1760_qtd_free(qtd
);
1440 static int isp1760_prepare_enqueue(struct isp1760_hcd
*priv
, struct urb
*urb
,
1441 struct list_head
*qtd_list
, gfp_t mem_flags
, packet_enqueue
*p
)
1443 struct isp1760_qtd
*qtd
;
1445 unsigned long flags
;
1446 struct isp1760_qh
*qh
= NULL
;
1450 qtd
= list_entry(qtd_list
->next
, struct isp1760_qtd
, qtd_list
);
1451 epnum
= urb
->ep
->desc
.bEndpointAddress
;
1453 spin_lock_irqsave(&priv
->lock
, flags
);
1454 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE
, &priv_to_hcd(priv
)->flags
)) {
1458 rc
= usb_hcd_link_urb_to_ep(priv_to_hcd(priv
), urb
);
1462 qh
= urb
->ep
->hcpriv
;
1464 qh_busy
= !list_empty(&qh
->qtd_list
);
1468 qh
= qh_append_tds(priv
, urb
, qtd_list
, epnum
, &urb
->ep
->hcpriv
);
1470 usb_hcd_unlink_urb_from_ep(priv_to_hcd(priv
), urb
);
1476 p(priv_to_hcd(priv
), qh
, qtd
);
1479 spin_unlock_irqrestore(&priv
->lock
, flags
);
1481 qtd_list_free(priv
, urb
, qtd_list
);
1485 static struct isp1760_qtd
*isp1760_qtd_alloc(struct isp1760_hcd
*priv
,
1488 struct isp1760_qtd
*qtd
;
1490 qtd
= kmem_cache_zalloc(qtd_cachep
, flags
);
1492 INIT_LIST_HEAD(&qtd
->qtd_list
);
1498 * create a list of filled qtds for this URB; won't link into qh.
1500 static struct list_head
*qh_urb_transaction(struct isp1760_hcd
*priv
,
1501 struct urb
*urb
, struct list_head
*head
, gfp_t flags
)
1503 struct isp1760_qtd
*qtd
, *qtd_prev
;
1510 * URBs map to sequences of QTDs: one logical transaction
1512 qtd
= isp1760_qtd_alloc(priv
, flags
);
1516 list_add_tail(&qtd
->qtd_list
, head
);
1518 urb
->status
= -EINPROGRESS
;
1521 /* for split transactions, SplitXState initialized to zero */
1523 len
= urb
->transfer_buffer_length
;
1524 is_input
= usb_pipein(urb
->pipe
);
1525 if (usb_pipecontrol(urb
->pipe
)) {
1527 qtd_fill(qtd
, urb
->setup_packet
,
1528 sizeof(struct usb_ctrlrequest
),
1531 /* ... and always at least one more pid */
1532 token
^= DATA_TOGGLE
;
1534 qtd
= isp1760_qtd_alloc(priv
, flags
);
1538 qtd_prev
->hw_next
= qtd
;
1539 list_add_tail(&qtd
->qtd_list
, head
);
1541 /* for zero length DATA stages, STATUS is always IN */
1547 * data transfer stage: buffer setup
1549 buf
= urb
->transfer_buffer
;
1556 maxpacket
= max_packet(usb_maxpacket(urb
->dev
, urb
->pipe
, !is_input
));
1559 * buffer gets wrapped in one or more qtds;
1560 * last one may be "short" (including zero len)
1561 * and may serve as a control status ack
1567 /* XXX This looks like usb storage / SCSI bug */
1568 printk(KERN_ERR
"buf is null, dma is %08lx len is %d\n",
1569 (long unsigned)urb
->transfer_dma
, len
);
1573 this_qtd_len
= qtd_fill(qtd
, buf
, len
, token
);
1574 len
-= this_qtd_len
;
1575 buf
+= this_qtd_len
;
1577 /* qh makes control packets use qtd toggle; maybe switch it */
1578 if ((maxpacket
& (this_qtd_len
+ (maxpacket
- 1))) == 0)
1579 token
^= DATA_TOGGLE
;
1585 qtd
= isp1760_qtd_alloc(priv
, flags
);
1589 qtd_prev
->hw_next
= qtd
;
1590 list_add_tail(&qtd
->qtd_list
, head
);
1594 * control requests may need a terminating data "status" ack;
1595 * bulk ones may need a terminating short packet (zero length).
1597 if (urb
->transfer_buffer_length
!= 0) {
1600 if (usb_pipecontrol(urb
->pipe
)) {
1602 /* "in" <--> "out" */
1605 token
|= DATA_TOGGLE
;
1606 } else if (usb_pipebulk(urb
->pipe
)
1607 && (urb
->transfer_flags
& URB_ZERO_PACKET
)
1608 && !(urb
->transfer_buffer_length
% maxpacket
)) {
1613 qtd
= isp1760_qtd_alloc(priv
, flags
);
1617 qtd_prev
->hw_next
= qtd
;
1618 list_add_tail(&qtd
->qtd_list
, head
);
1620 /* never any data in such packets */
1621 qtd_fill(qtd
, NULL
, 0, token
);
1625 qtd
->status
= URB_COMPLETE_NOTIFY
;
1629 qtd_list_free(priv
, urb
, head
);
1633 static int isp1760_urb_enqueue(struct usb_hcd
*hcd
, struct urb
*urb
,
1636 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
1637 struct list_head qtd_list
;
1640 INIT_LIST_HEAD(&qtd_list
);
1642 switch (usb_pipetype(urb
->pipe
)) {
1646 if (!qh_urb_transaction(priv
, urb
, &qtd_list
, mem_flags
))
1648 pe
= enqueue_an_ATL_packet
;
1651 case PIPE_INTERRUPT
:
1652 if (!qh_urb_transaction(priv
, urb
, &qtd_list
, mem_flags
))
1654 pe
= enqueue_an_INT_packet
;
1657 case PIPE_ISOCHRONOUS
:
1658 printk(KERN_ERR
"PIPE_ISOCHRONOUS ain't supported\n");
1663 return isp1760_prepare_enqueue(priv
, urb
, &qtd_list
, mem_flags
, pe
);
1666 static int isp1760_urb_dequeue(struct usb_hcd
*hcd
, struct urb
*urb
,
1669 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
1670 struct inter_packet_info
*ints
;
1672 u32 reg_base
, or_reg
, skip_reg
;
1673 unsigned long flags
;
1677 switch (usb_pipetype(urb
->pipe
)) {
1678 case PIPE_ISOCHRONOUS
:
1682 case PIPE_INTERRUPT
:
1683 ints
= priv
->int_ints
;
1684 reg_base
= INT_REGS_OFFSET
;
1685 or_reg
= HC_INT_IRQ_MASK_OR_REG
;
1686 skip_reg
= HC_INT_PTD_SKIPMAP_REG
;
1687 pe
= enqueue_an_INT_packet
;
1691 ints
= priv
->atl_ints
;
1692 reg_base
= ATL_REGS_OFFSET
;
1693 or_reg
= HC_ATL_IRQ_MASK_OR_REG
;
1694 skip_reg
= HC_ATL_PTD_SKIPMAP_REG
;
1695 pe
= enqueue_an_ATL_packet
;
1699 memset(&ptd
, 0, sizeof(ptd
));
1700 spin_lock_irqsave(&priv
->lock
, flags
);
1702 for (i
= 0; i
< 32; i
++) {
1703 if (ints
->urb
== urb
) {
1706 struct isp1760_qtd
*qtd
;
1707 struct isp1760_qh
*qh
= ints
->qh
;
1709 skip_map
= isp1760_readl(hcd
->regs
+ skip_reg
);
1711 isp1760_writel(skip_map
, hcd
->regs
+ skip_reg
);
1713 or_map
= isp1760_readl(hcd
->regs
+ or_reg
);
1714 or_map
&= ~(1 << i
);
1715 isp1760_writel(or_map
, hcd
->regs
+ or_reg
);
1717 priv_write_copy(priv
, (u32
*)&ptd
, hcd
->regs
+ reg_base
1718 + i
* sizeof(ptd
), sizeof(ptd
));
1720 qtd
= clean_up_qtdlist(qtd
);
1722 free_mem(priv
, ints
->payload
);
1727 ints
->data_buffer
= NULL
;
1730 isp1760_urb_done(priv
, urb
, status
);
1735 } else if (ints
->qtd
) {
1736 struct isp1760_qtd
*qtd
, *prev_qtd
= ints
->qtd
;
1738 for (qtd
= ints
->qtd
->hw_next
; qtd
; qtd
= qtd
->hw_next
) {
1739 if (qtd
->urb
== urb
) {
1740 prev_qtd
->hw_next
= clean_up_qtdlist(qtd
);
1741 isp1760_urb_done(priv
, urb
, status
);
1746 /* we found the urb before the end of the list */
1753 spin_unlock_irqrestore(&priv
->lock
, flags
);
1757 static irqreturn_t
isp1760_irq(struct usb_hcd
*usb_hcd
)
1759 struct isp1760_hcd
*priv
= hcd_to_priv(usb_hcd
);
1761 irqreturn_t irqret
= IRQ_NONE
;
1763 spin_lock(&priv
->lock
);
1765 if (!(usb_hcd
->state
& HC_STATE_RUNNING
))
1768 imask
= isp1760_readl(usb_hcd
->regs
+ HC_INTERRUPT_REG
);
1769 if (unlikely(!imask
))
1772 isp1760_writel(imask
, usb_hcd
->regs
+ HC_INTERRUPT_REG
);
1773 if (imask
& HC_ATL_INT
)
1774 do_atl_int(usb_hcd
);
1776 if (imask
& HC_INTL_INT
)
1777 do_intl_int(usb_hcd
);
1779 irqret
= IRQ_HANDLED
;
1781 spin_unlock(&priv
->lock
);
1785 static int isp1760_hub_status_data(struct usb_hcd
*hcd
, char *buf
)
1787 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
1788 u32 temp
, status
= 0;
1791 unsigned long flags
;
1793 /* if !USB_SUSPEND, root hub timers won't get shut down ... */
1794 if (!HC_IS_RUNNING(hcd
->state
))
1797 /* init status to no-changes */
1801 spin_lock_irqsave(&priv
->lock
, flags
);
1802 temp
= isp1760_readl(hcd
->regs
+ HC_PORTSC1
);
1804 if (temp
& PORT_OWNER
) {
1805 if (temp
& PORT_CSC
) {
1807 isp1760_writel(temp
, hcd
->regs
+ HC_PORTSC1
);
1813 * Return status information even for ports with OWNER set.
1814 * Otherwise khubd wouldn't see the disconnect event when a
1815 * high-speed device is switched over to the companion
1816 * controller by the user.
1819 if ((temp
& mask
) != 0
1820 || ((temp
& PORT_RESUME
) != 0
1821 && time_after_eq(jiffies
,
1822 priv
->reset_done
))) {
1823 buf
[0] |= 1 << (0 + 1);
1826 /* FIXME autosuspend idle root hubs */
1828 spin_unlock_irqrestore(&priv
->lock
, flags
);
1829 return status
? retval
: 0;
1832 static void isp1760_hub_descriptor(struct isp1760_hcd
*priv
,
1833 struct usb_hub_descriptor
*desc
)
1835 int ports
= HCS_N_PORTS(priv
->hcs_params
);
1838 desc
->bDescriptorType
= 0x29;
1839 /* priv 1.0, 2.3.9 says 20ms max */
1840 desc
->bPwrOn2PwrGood
= 10;
1841 desc
->bHubContrCurrent
= 0;
1843 desc
->bNbrPorts
= ports
;
1844 temp
= 1 + (ports
/ 8);
1845 desc
->bDescLength
= 7 + 2 * temp
;
1847 /* two bitmaps: ports removable, and usb 1.0 legacy PortPwrCtrlMask */
1848 memset(&desc
->bitmap
[0], 0, temp
);
1849 memset(&desc
->bitmap
[temp
], 0xff, temp
);
1851 /* per-port overcurrent reporting */
1853 if (HCS_PPC(priv
->hcs_params
))
1854 /* per-port power control */
1857 /* no power switching */
1859 desc
->wHubCharacteristics
= cpu_to_le16(temp
);
1862 #define PORT_WAKE_BITS (PORT_WKOC_E|PORT_WKDISC_E|PORT_WKCONN_E)
1864 static int check_reset_complete(struct isp1760_hcd
*priv
, int index
,
1865 u32 __iomem
*status_reg
, int port_status
)
1867 if (!(port_status
& PORT_CONNECT
))
1870 /* if reset finished and it's still not enabled -- handoff */
1871 if (!(port_status
& PORT_PE
)) {
1873 printk(KERN_ERR
"port %d full speed --> companion\n",
1876 port_status
|= PORT_OWNER
;
1877 port_status
&= ~PORT_RWC_BITS
;
1878 isp1760_writel(port_status
, status_reg
);
1881 printk(KERN_ERR
"port %d high speed\n", index
+ 1);
1886 static int isp1760_hub_control(struct usb_hcd
*hcd
, u16 typeReq
,
1887 u16 wValue
, u16 wIndex
, char *buf
, u16 wLength
)
1889 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
1890 int ports
= HCS_N_PORTS(priv
->hcs_params
);
1891 u32 __iomem
*status_reg
= hcd
->regs
+ HC_PORTSC1
;
1893 unsigned long flags
;
1898 * FIXME: support SetPortFeatures USB_PORT_FEAT_INDICATOR.
1899 * HCS_INDICATOR may say we can change LEDs to off/amber/green.
1900 * (track current state ourselves) ... blink for diagnostics,
1901 * power, "this is the one", etc. EHCI spec supports this.
1904 spin_lock_irqsave(&priv
->lock
, flags
);
1906 case ClearHubFeature
:
1908 case C_HUB_LOCAL_POWER
:
1909 case C_HUB_OVER_CURRENT
:
1910 /* no hub-wide feature/status flags */
1916 case ClearPortFeature
:
1917 if (!wIndex
|| wIndex
> ports
)
1920 temp
= isp1760_readl(status_reg
);
1923 * Even if OWNER is set, so the port is owned by the
1924 * companion controller, khubd needs to be able to clear
1925 * the port-change status bits (especially
1926 * USB_PORT_FEAT_C_CONNECTION).
1930 case USB_PORT_FEAT_ENABLE
:
1931 isp1760_writel(temp
& ~PORT_PE
, status_reg
);
1933 case USB_PORT_FEAT_C_ENABLE
:
1936 case USB_PORT_FEAT_SUSPEND
:
1937 if (temp
& PORT_RESET
)
1940 if (temp
& PORT_SUSPEND
) {
1941 if ((temp
& PORT_PE
) == 0)
1943 /* resume signaling for 20 msec */
1944 temp
&= ~(PORT_RWC_BITS
);
1945 isp1760_writel(temp
| PORT_RESUME
,
1947 priv
->reset_done
= jiffies
+
1948 msecs_to_jiffies(20);
1951 case USB_PORT_FEAT_C_SUSPEND
:
1952 /* we auto-clear this feature */
1954 case USB_PORT_FEAT_POWER
:
1955 if (HCS_PPC(priv
->hcs_params
))
1956 isp1760_writel(temp
& ~PORT_POWER
, status_reg
);
1958 case USB_PORT_FEAT_C_CONNECTION
:
1959 isp1760_writel(temp
| PORT_CSC
,
1962 case USB_PORT_FEAT_C_OVER_CURRENT
:
1965 case USB_PORT_FEAT_C_RESET
:
1966 /* GetPortStatus clears reset */
1971 isp1760_readl(hcd
->regs
+ HC_USBCMD
);
1973 case GetHubDescriptor
:
1974 isp1760_hub_descriptor(priv
, (struct usb_hub_descriptor
*)
1978 /* no hub-wide feature/status flags */
1982 if (!wIndex
|| wIndex
> ports
)
1986 temp
= isp1760_readl(status_reg
);
1988 /* wPortChange bits */
1989 if (temp
& PORT_CSC
)
1990 status
|= 1 << USB_PORT_FEAT_C_CONNECTION
;
1993 /* whoever resumes must GetPortStatus to complete it!! */
1994 if (temp
& PORT_RESUME
) {
1995 printk(KERN_ERR
"Port resume should be skipped.\n");
1997 /* Remote Wakeup received? */
1998 if (!priv
->reset_done
) {
1999 /* resume signaling for 20 msec */
2000 priv
->reset_done
= jiffies
2001 + msecs_to_jiffies(20);
2002 /* check the port again */
2003 mod_timer(&priv_to_hcd(priv
)->rh_timer
,
2007 /* resume completed? */
2008 else if (time_after_eq(jiffies
,
2009 priv
->reset_done
)) {
2010 status
|= 1 << USB_PORT_FEAT_C_SUSPEND
;
2011 priv
->reset_done
= 0;
2013 /* stop resume signaling */
2014 temp
= isp1760_readl(status_reg
);
2016 temp
& ~(PORT_RWC_BITS
| PORT_RESUME
),
2018 retval
= handshake(priv
, status_reg
,
2019 PORT_RESUME
, 0, 2000 /* 2msec */);
2022 "port %d resume error %d\n",
2023 wIndex
+ 1, retval
);
2026 temp
&= ~(PORT_SUSPEND
|PORT_RESUME
|(3<<10));
2030 /* whoever resets must GetPortStatus to complete it!! */
2031 if ((temp
& PORT_RESET
)
2032 && time_after_eq(jiffies
,
2033 priv
->reset_done
)) {
2034 status
|= 1 << USB_PORT_FEAT_C_RESET
;
2035 priv
->reset_done
= 0;
2037 /* force reset to complete */
2038 isp1760_writel(temp
& ~PORT_RESET
,
2040 /* REVISIT: some hardware needs 550+ usec to clear
2041 * this bit; seems too long to spin routinely...
2043 retval
= handshake(priv
, status_reg
,
2044 PORT_RESET
, 0, 750);
2046 isp1760_err(priv
, "port %d reset error %d\n",
2047 wIndex
+ 1, retval
);
2051 /* see what we found out */
2052 temp
= check_reset_complete(priv
, wIndex
, status_reg
,
2053 isp1760_readl(status_reg
));
2056 * Even if OWNER is set, there's no harm letting khubd
2057 * see the wPortStatus values (they should all be 0 except
2058 * for PORT_POWER anyway).
2061 if (temp
& PORT_OWNER
)
2062 printk(KERN_ERR
"Warning: PORT_OWNER is set\n");
2064 if (temp
& PORT_CONNECT
) {
2065 status
|= 1 << USB_PORT_FEAT_CONNECTION
;
2066 /* status may be from integrated TT */
2067 status
|= ehci_port_speed(priv
, temp
);
2070 status
|= 1 << USB_PORT_FEAT_ENABLE
;
2071 if (temp
& (PORT_SUSPEND
|PORT_RESUME
))
2072 status
|= 1 << USB_PORT_FEAT_SUSPEND
;
2073 if (temp
& PORT_RESET
)
2074 status
|= 1 << USB_PORT_FEAT_RESET
;
2075 if (temp
& PORT_POWER
)
2076 status
|= 1 << USB_PORT_FEAT_POWER
;
2078 put_unaligned(cpu_to_le32(status
), (__le32
*) buf
);
2082 case C_HUB_LOCAL_POWER
:
2083 case C_HUB_OVER_CURRENT
:
2084 /* no hub-wide feature/status flags */
2090 case SetPortFeature
:
2091 selector
= wIndex
>> 8;
2093 if (!wIndex
|| wIndex
> ports
)
2096 temp
= isp1760_readl(status_reg
);
2097 if (temp
& PORT_OWNER
)
2100 /* temp &= ~PORT_RWC_BITS; */
2102 case USB_PORT_FEAT_ENABLE
:
2103 isp1760_writel(temp
| PORT_PE
, status_reg
);
2106 case USB_PORT_FEAT_SUSPEND
:
2107 if ((temp
& PORT_PE
) == 0
2108 || (temp
& PORT_RESET
) != 0)
2111 isp1760_writel(temp
| PORT_SUSPEND
, status_reg
);
2113 case USB_PORT_FEAT_POWER
:
2114 if (HCS_PPC(priv
->hcs_params
))
2115 isp1760_writel(temp
| PORT_POWER
,
2118 case USB_PORT_FEAT_RESET
:
2119 if (temp
& PORT_RESUME
)
2121 /* line status bits may report this as low speed,
2122 * which can be fine if this root hub has a
2123 * transaction translator built in.
2125 if ((temp
& (PORT_PE
|PORT_CONNECT
)) == PORT_CONNECT
2126 && PORT_USB11(temp
)) {
2133 * caller must wait, then call GetPortStatus
2134 * usb 2.0 spec says 50 ms resets on root
2136 priv
->reset_done
= jiffies
+
2137 msecs_to_jiffies(50);
2139 isp1760_writel(temp
, status_reg
);
2144 isp1760_readl(hcd
->regs
+ HC_USBCMD
);
2149 /* "stall" on error */
2152 spin_unlock_irqrestore(&priv
->lock
, flags
);
2156 static void isp1760_endpoint_disable(struct usb_hcd
*usb_hcd
,
2157 struct usb_host_endpoint
*ep
)
2159 struct isp1760_hcd
*priv
= hcd_to_priv(usb_hcd
);
2160 struct isp1760_qh
*qh
;
2161 struct isp1760_qtd
*qtd
;
2162 unsigned long flags
;
2164 spin_lock_irqsave(&priv
->lock
, flags
);
2171 /* more than entry might get removed */
2172 if (list_empty(&qh
->qtd_list
))
2175 qtd
= list_first_entry(&qh
->qtd_list
, struct isp1760_qtd
,
2178 if (qtd
->status
& URB_ENQUEUED
) {
2180 spin_unlock_irqrestore(&priv
->lock
, flags
);
2181 isp1760_urb_dequeue(usb_hcd
, qtd
->urb
, -ECONNRESET
);
2182 spin_lock_irqsave(&priv
->lock
, flags
);
2187 clean_up_qtdlist(qtd
);
2188 isp1760_urb_done(priv
, urb
, -ECONNRESET
);
2193 /* remove requests and leak them.
2194 * ATL are pretty fast done, INT could take a while...
2195 * The latter shoule be removed
2198 spin_unlock_irqrestore(&priv
->lock
, flags
);
2201 static int isp1760_get_frame(struct usb_hcd
*hcd
)
2203 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
2206 fr
= isp1760_readl(hcd
->regs
+ HC_FRINDEX
);
2207 return (fr
>> 3) % priv
->periodic_size
;
2210 static void isp1760_stop(struct usb_hcd
*hcd
)
2212 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
2215 isp1760_hub_control(hcd
, ClearPortFeature
, USB_PORT_FEAT_POWER
, 1,
2219 spin_lock_irq(&priv
->lock
);
2222 temp
= isp1760_readl(hcd
->regs
+ HC_HW_MODE_CTRL
);
2223 isp1760_writel(temp
&= ~HW_GLOBAL_INTR_EN
, hcd
->regs
+ HC_HW_MODE_CTRL
);
2224 spin_unlock_irq(&priv
->lock
);
2226 isp1760_writel(0, hcd
->regs
+ HC_CONFIGFLAG
);
2229 static void isp1760_shutdown(struct usb_hcd
*hcd
)
2234 temp
= isp1760_readl(hcd
->regs
+ HC_HW_MODE_CTRL
);
2235 isp1760_writel(temp
&= ~HW_GLOBAL_INTR_EN
, hcd
->regs
+ HC_HW_MODE_CTRL
);
2237 command
= isp1760_readl(hcd
->regs
+ HC_USBCMD
);
2238 command
&= ~CMD_RUN
;
2239 isp1760_writel(command
, hcd
->regs
+ HC_USBCMD
);
2242 static const struct hc_driver isp1760_hc_driver
= {
2243 .description
= "isp1760-hcd",
2244 .product_desc
= "NXP ISP1760 USB Host Controller",
2245 .hcd_priv_size
= sizeof(struct isp1760_hcd
),
2247 .flags
= HCD_MEMORY
| HCD_USB2
,
2248 .reset
= isp1760_hc_setup
,
2249 .start
= isp1760_run
,
2250 .stop
= isp1760_stop
,
2251 .shutdown
= isp1760_shutdown
,
2252 .urb_enqueue
= isp1760_urb_enqueue
,
2253 .urb_dequeue
= isp1760_urb_dequeue
,
2254 .endpoint_disable
= isp1760_endpoint_disable
,
2255 .get_frame_number
= isp1760_get_frame
,
2256 .hub_status_data
= isp1760_hub_status_data
,
2257 .hub_control
= isp1760_hub_control
,
2260 int __init
init_kmem_once(void)
2262 qtd_cachep
= kmem_cache_create("isp1760_qtd",
2263 sizeof(struct isp1760_qtd
), 0, SLAB_TEMPORARY
|
2264 SLAB_MEM_SPREAD
, NULL
);
2269 qh_cachep
= kmem_cache_create("isp1760_qh", sizeof(struct isp1760_qh
),
2270 0, SLAB_TEMPORARY
| SLAB_MEM_SPREAD
, NULL
);
2273 kmem_cache_destroy(qtd_cachep
);
2280 void deinit_kmem_cache(void)
2282 kmem_cache_destroy(qtd_cachep
);
2283 kmem_cache_destroy(qh_cachep
);
2286 struct usb_hcd
*isp1760_register(phys_addr_t res_start
, resource_size_t res_len
,
2287 int irq
, unsigned long irqflags
,
2288 struct device
*dev
, const char *busname
,
2289 unsigned int devflags
)
2291 struct usb_hcd
*hcd
;
2292 struct isp1760_hcd
*priv
;
2296 return ERR_PTR(-ENODEV
);
2298 /* prevent usb-core allocating DMA pages */
2299 dev
->dma_mask
= NULL
;
2301 hcd
= usb_create_hcd(&isp1760_hc_driver
, dev
, dev_name(dev
));
2303 return ERR_PTR(-ENOMEM
);
2305 priv
= hcd_to_priv(hcd
);
2306 priv
->devflags
= devflags
;
2308 hcd
->regs
= ioremap(res_start
, res_len
);
2315 hcd
->rsrc_start
= res_start
;
2316 hcd
->rsrc_len
= res_len
;
2318 ret
= usb_add_hcd(hcd
, irq
, irqflags
);
2330 return ERR_PTR(ret
);
2333 MODULE_DESCRIPTION("Driver for the ISP1760 USB-controller from NXP");
2334 MODULE_AUTHOR("Sebastian Siewior <bigeasy@linuxtronix.de>");
2335 MODULE_LICENSE("GPL v2");