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>
11 * (c) 2011 Arvid Brodin <arvid.brodin@enea.com>
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/slab.h>
17 #include <linux/list.h>
18 #include <linux/usb.h>
19 #include <linux/usb/hcd.h>
20 #include <linux/debugfs.h>
21 #include <linux/uaccess.h>
24 #include <linux/timer.h>
25 #include <asm/unaligned.h>
26 #include <asm/cacheflush.h>
27 #include <linux/gpio.h>
29 #include "isp1760-hcd.h"
31 static struct kmem_cache
*qtd_cachep
;
32 static struct kmem_cache
*qh_cachep
;
33 static struct kmem_cache
*urb_listitem_cachep
;
35 enum queue_head_types
{
45 struct slotinfo atl_slots
[32];
47 struct slotinfo int_slots
[32];
49 struct memory_chunk memory_pool
[BLOCKS
];
50 struct list_head qh_list
[QH_END
];
52 /* periodic schedule support */
53 #define DEFAULT_I_TDPS 1024
54 unsigned periodic_size
;
56 unsigned long reset_done
;
57 unsigned long next_statechange
;
58 unsigned int devflags
;
63 static inline struct isp1760_hcd
*hcd_to_priv(struct usb_hcd
*hcd
)
65 return (struct isp1760_hcd
*) (hcd
->hcd_priv
);
68 /* Section 2.2 Host Controller Capability Registers */
69 #define HC_LENGTH(p) (((p)>>00)&0x00ff) /* bits 7:0 */
70 #define HC_VERSION(p) (((p)>>16)&0xffff) /* bits 31:16 */
71 #define HCS_INDICATOR(p) ((p)&(1 << 16)) /* true: has port indicators */
72 #define HCS_PPC(p) ((p)&(1 << 4)) /* true: port power control */
73 #define HCS_N_PORTS(p) (((p)>>0)&0xf) /* bits 3:0, ports on HC */
74 #define HCC_ISOC_CACHE(p) ((p)&(1 << 7)) /* true: can cache isoc frame */
75 #define HCC_ISOC_THRES(p) (((p)>>4)&0x7) /* bits 6:4, uframes cached */
77 /* Section 2.3 Host Controller Operational Registers */
78 #define CMD_LRESET (1<<7) /* partial reset (no ports, etc) */
79 #define CMD_RESET (1<<1) /* reset HC not bus */
80 #define CMD_RUN (1<<0) /* start/stop HC */
81 #define STS_PCD (1<<2) /* port change detect */
82 #define FLAG_CF (1<<0) /* true: we'll support "high speed" */
84 #define PORT_OWNER (1<<13) /* true: companion hc owns this port */
85 #define PORT_POWER (1<<12) /* true: has power (see PPC) */
86 #define PORT_USB11(x) (((x) & (3 << 10)) == (1 << 10)) /* USB 1.1 device */
87 #define PORT_RESET (1<<8) /* reset port */
88 #define PORT_SUSPEND (1<<7) /* suspend port */
89 #define PORT_RESUME (1<<6) /* resume it */
90 #define PORT_PE (1<<2) /* port enable */
91 #define PORT_CSC (1<<1) /* connect status change */
92 #define PORT_CONNECT (1<<0) /* device connected */
93 #define PORT_RWC_BITS (PORT_CSC)
100 /* the rest is HCD-private */
101 struct list_head qtd_list
;
104 size_t actual_length
;
106 /* QTD_ENQUEUED: waiting for transfer (inactive) */
107 /* QTD_PAYLOAD_ALLOC: chip mem has been allocated for payload */
108 /* QTD_XFER_STARTED: valid ptd has been written to isp176x - only
109 interrupt handler may touch this qtd! */
110 /* QTD_XFER_COMPLETE: payload has been transferred successfully */
111 /* QTD_RETIRE: transfer error/abort qtd */
112 #define QTD_ENQUEUED 0
113 #define QTD_PAYLOAD_ALLOC 1
114 #define QTD_XFER_STARTED 2
115 #define QTD_XFER_COMPLETE 3
120 /* Queue head, one for each active endpoint */
122 struct list_head qh_list
;
123 struct list_head qtd_list
;
127 int tt_buffer_dirty
; /* See USB2.0 spec section 11.17.5 */
130 struct urb_listitem
{
131 struct list_head urb_list
;
136 * Access functions for isp176x registers (addresses 0..0x03FF).
138 static u32
reg_read32(void __iomem
*base
, u32 reg
)
140 return readl(base
+ reg
);
143 static void reg_write32(void __iomem
*base
, u32 reg
, u32 val
)
145 writel(val
, base
+ reg
);
149 * Access functions for isp176x memory (offset >= 0x0400).
151 * bank_reads8() reads memory locations prefetched by an earlier write to
152 * HC_MEMORY_REG (see isp176x datasheet). Unless you want to do fancy multi-
153 * bank optimizations, you should use the more generic mem_reads8() below.
155 * For access to ptd memory, use the specialized ptd_read() and ptd_write()
158 * These functions copy via MMIO data to/from the device. memcpy_{to|from}io()
159 * doesn't quite work because some people have to enforce 32-bit access
161 static void bank_reads8(void __iomem
*src_base
, u32 src_offset
, u32 bank_addr
,
162 __u32
*dst
, u32 bytes
)
169 src
= src_base
+ (bank_addr
| src_offset
);
171 if (src_offset
< PAYLOAD_OFFSET
) {
173 *dst
= le32_to_cpu(__raw_readl(src
));
180 *dst
= __raw_readl(src
);
190 /* in case we have 3, 2 or 1 by left. The dst buffer may not be fully
193 if (src_offset
< PAYLOAD_OFFSET
)
194 val
= le32_to_cpu(__raw_readl(src
));
196 val
= __raw_readl(src
);
198 dst_byteptr
= (void *) dst
;
199 src_byteptr
= (void *) &val
;
201 *dst_byteptr
= *src_byteptr
;
208 static void mem_reads8(void __iomem
*src_base
, u32 src_offset
, void *dst
,
211 reg_write32(src_base
, HC_MEMORY_REG
, src_offset
+ ISP_BANK(0));
213 bank_reads8(src_base
, src_offset
, ISP_BANK(0), dst
, bytes
);
216 static void mem_writes8(void __iomem
*dst_base
, u32 dst_offset
,
217 __u32
const *src
, u32 bytes
)
221 dst
= dst_base
+ dst_offset
;
223 if (dst_offset
< PAYLOAD_OFFSET
) {
225 __raw_writel(cpu_to_le32(*src
), dst
);
232 __raw_writel(*src
, dst
);
241 /* in case we have 3, 2 or 1 bytes left. The buffer is allocated and the
242 * extra bytes should not be read by the HW.
245 if (dst_offset
< PAYLOAD_OFFSET
)
246 __raw_writel(cpu_to_le32(*src
), dst
);
248 __raw_writel(*src
, dst
);
252 * Read and write ptds. 'ptd_offset' should be one of ISO_PTD_OFFSET,
253 * INT_PTD_OFFSET, and ATL_PTD_OFFSET. 'slot' should be less than 32.
255 static void ptd_read(void __iomem
*base
, u32 ptd_offset
, u32 slot
,
258 reg_write32(base
, HC_MEMORY_REG
,
259 ISP_BANK(0) + ptd_offset
+ slot
*sizeof(*ptd
));
261 bank_reads8(base
, ptd_offset
+ slot
*sizeof(*ptd
), ISP_BANK(0),
262 (void *) ptd
, sizeof(*ptd
));
265 static void ptd_write(void __iomem
*base
, u32 ptd_offset
, u32 slot
,
268 mem_writes8(base
, ptd_offset
+ slot
*sizeof(*ptd
) + sizeof(ptd
->dw0
),
269 &ptd
->dw1
, 7*sizeof(ptd
->dw1
));
270 /* Make sure dw0 gets written last (after other dw's and after payload)
271 since it contains the enable bit */
273 mem_writes8(base
, ptd_offset
+ slot
*sizeof(*ptd
), &ptd
->dw0
,
278 /* memory management of the 60kb on the chip from 0x1000 to 0xffff */
279 static void init_memory(struct isp1760_hcd
*priv
)
284 payload_addr
= PAYLOAD_OFFSET
;
285 for (i
= 0; i
< BLOCK_1_NUM
; i
++) {
286 priv
->memory_pool
[i
].start
= payload_addr
;
287 priv
->memory_pool
[i
].size
= BLOCK_1_SIZE
;
288 priv
->memory_pool
[i
].free
= 1;
289 payload_addr
+= priv
->memory_pool
[i
].size
;
293 for (i
= 0; i
< BLOCK_2_NUM
; i
++) {
294 priv
->memory_pool
[curr
+ i
].start
= payload_addr
;
295 priv
->memory_pool
[curr
+ i
].size
= BLOCK_2_SIZE
;
296 priv
->memory_pool
[curr
+ i
].free
= 1;
297 payload_addr
+= priv
->memory_pool
[curr
+ i
].size
;
301 for (i
= 0; i
< BLOCK_3_NUM
; i
++) {
302 priv
->memory_pool
[curr
+ i
].start
= payload_addr
;
303 priv
->memory_pool
[curr
+ i
].size
= BLOCK_3_SIZE
;
304 priv
->memory_pool
[curr
+ i
].free
= 1;
305 payload_addr
+= priv
->memory_pool
[curr
+ i
].size
;
308 WARN_ON(payload_addr
- priv
->memory_pool
[0].start
> PAYLOAD_AREA_SIZE
);
311 static void alloc_mem(struct usb_hcd
*hcd
, struct isp1760_qtd
*qtd
)
313 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
316 WARN_ON(qtd
->payload_addr
);
321 for (i
= 0; i
< BLOCKS
; i
++) {
322 if (priv
->memory_pool
[i
].size
>= qtd
->length
&&
323 priv
->memory_pool
[i
].free
) {
324 priv
->memory_pool
[i
].free
= 0;
325 qtd
->payload_addr
= priv
->memory_pool
[i
].start
;
331 static void free_mem(struct usb_hcd
*hcd
, struct isp1760_qtd
*qtd
)
333 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
336 if (!qtd
->payload_addr
)
339 for (i
= 0; i
< BLOCKS
; i
++) {
340 if (priv
->memory_pool
[i
].start
== qtd
->payload_addr
) {
341 WARN_ON(priv
->memory_pool
[i
].free
);
342 priv
->memory_pool
[i
].free
= 1;
343 qtd
->payload_addr
= 0;
348 dev_err(hcd
->self
.controller
, "%s: Invalid pointer: %08x\n",
349 __func__
, qtd
->payload_addr
);
351 qtd
->payload_addr
= 0;
354 static int handshake(struct usb_hcd
*hcd
, u32 reg
,
355 u32 mask
, u32 done
, int usec
)
360 result
= reg_read32(hcd
->regs
, reg
);
372 /* reset a non-running (STS_HALT == 1) controller */
373 static int ehci_reset(struct usb_hcd
*hcd
)
376 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
378 u32 command
= reg_read32(hcd
->regs
, HC_USBCMD
);
380 command
|= CMD_RESET
;
381 reg_write32(hcd
->regs
, HC_USBCMD
, command
);
382 hcd
->state
= HC_STATE_HALT
;
383 priv
->next_statechange
= jiffies
;
384 retval
= handshake(hcd
, HC_USBCMD
,
385 CMD_RESET
, 0, 250 * 1000);
389 static struct isp1760_qh
*qh_alloc(gfp_t flags
)
391 struct isp1760_qh
*qh
;
393 qh
= kmem_cache_zalloc(qh_cachep
, flags
);
397 INIT_LIST_HEAD(&qh
->qh_list
);
398 INIT_LIST_HEAD(&qh
->qtd_list
);
404 static void qh_free(struct isp1760_qh
*qh
)
406 WARN_ON(!list_empty(&qh
->qtd_list
));
407 WARN_ON(qh
->slot
> -1);
408 kmem_cache_free(qh_cachep
, qh
);
411 /* one-time init, only for memory state */
412 static int priv_init(struct usb_hcd
*hcd
)
414 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
418 spin_lock_init(&priv
->lock
);
420 for (i
= 0; i
< QH_END
; i
++)
421 INIT_LIST_HEAD(&priv
->qh_list
[i
]);
424 * hw default: 1K periodic list heads, one per frame.
425 * periodic_size can shrink by USBCMD update if hcc_params allows.
427 priv
->periodic_size
= DEFAULT_I_TDPS
;
429 /* controllers may cache some of the periodic schedule ... */
430 hcc_params
= reg_read32(hcd
->regs
, HC_HCCPARAMS
);
431 /* full frame cache */
432 if (HCC_ISOC_CACHE(hcc_params
))
434 else /* N microframes cached */
435 priv
->i_thresh
= 2 + HCC_ISOC_THRES(hcc_params
);
440 static int isp1760_hc_setup(struct usb_hcd
*hcd
)
442 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
446 /* low-level chip reset */
447 if (gpio_is_valid(priv
->rst_gpio
)) {
448 unsigned int rst_lvl
;
450 rst_lvl
= (priv
->devflags
&
451 ISP1760_FLAG_RESET_ACTIVE_HIGH
) ? 1 : 0;
453 gpio_set_value(priv
->rst_gpio
, rst_lvl
);
455 gpio_set_value(priv
->rst_gpio
, !rst_lvl
);
458 /* Setup HW Mode Control: This assumes a level active-low interrupt */
459 hwmode
= HW_DATA_BUS_32BIT
;
461 if (priv
->devflags
& ISP1760_FLAG_BUS_WIDTH_16
)
462 hwmode
&= ~HW_DATA_BUS_32BIT
;
463 if (priv
->devflags
& ISP1760_FLAG_ANALOG_OC
)
464 hwmode
|= HW_ANA_DIGI_OC
;
465 if (priv
->devflags
& ISP1760_FLAG_DACK_POL_HIGH
)
466 hwmode
|= HW_DACK_POL_HIGH
;
467 if (priv
->devflags
& ISP1760_FLAG_DREQ_POL_HIGH
)
468 hwmode
|= HW_DREQ_POL_HIGH
;
469 if (priv
->devflags
& ISP1760_FLAG_INTR_POL_HIGH
)
470 hwmode
|= HW_INTR_HIGH_ACT
;
471 if (priv
->devflags
& ISP1760_FLAG_INTR_EDGE_TRIG
)
472 hwmode
|= HW_INTR_EDGE_TRIG
;
475 * We have to set this first in case we're in 16-bit mode.
476 * Write it twice to ensure correct upper bits if switching
479 reg_write32(hcd
->regs
, HC_HW_MODE_CTRL
, hwmode
);
480 reg_write32(hcd
->regs
, HC_HW_MODE_CTRL
, hwmode
);
482 reg_write32(hcd
->regs
, HC_SCRATCH_REG
, 0xdeadbabe);
483 /* Change bus pattern */
484 scratch
= reg_read32(hcd
->regs
, HC_CHIP_ID_REG
);
485 scratch
= reg_read32(hcd
->regs
, HC_SCRATCH_REG
);
486 if (scratch
!= 0xdeadbabe) {
487 dev_err(hcd
->self
.controller
, "Scratch test failed.\n");
492 reg_write32(hcd
->regs
, HC_BUFFER_STATUS_REG
, 0);
493 reg_write32(hcd
->regs
, HC_ATL_PTD_SKIPMAP_REG
, NO_TRANSFER_ACTIVE
);
494 reg_write32(hcd
->regs
, HC_INT_PTD_SKIPMAP_REG
, NO_TRANSFER_ACTIVE
);
495 reg_write32(hcd
->regs
, HC_ISO_PTD_SKIPMAP_REG
, NO_TRANSFER_ACTIVE
);
498 reg_write32(hcd
->regs
, HC_RESET_REG
, SW_RESET_RESET_ALL
);
501 reg_write32(hcd
->regs
, HC_RESET_REG
, SW_RESET_RESET_HC
);
504 result
= ehci_reset(hcd
);
510 dev_info(hcd
->self
.controller
, "bus width: %d, oc: %s\n",
511 (priv
->devflags
& ISP1760_FLAG_BUS_WIDTH_16
) ?
512 16 : 32, (priv
->devflags
& ISP1760_FLAG_ANALOG_OC
) ?
513 "analog" : "digital");
516 reg_write32(hcd
->regs
, HC_HW_MODE_CTRL
, hwmode
| ALL_ATX_RESET
);
518 reg_write32(hcd
->regs
, HC_HW_MODE_CTRL
, hwmode
);
520 reg_write32(hcd
->regs
, HC_INTERRUPT_ENABLE
, INTERRUPT_ENABLE_MASK
);
523 * PORT 1 Control register of the ISP1760 is the OTG control
524 * register on ISP1761. Since there is no OTG or device controller
525 * support in this driver, we use port 1 as a "normal" USB host port on
528 reg_write32(hcd
->regs
, HC_PORT1_CTRL
, PORT1_POWER
| PORT1_INIT2
);
531 priv
->hcs_params
= reg_read32(hcd
->regs
, HC_HCSPARAMS
);
533 return priv_init(hcd
);
536 static u32
base_to_chip(u32 base
)
538 return ((base
- 0x400) >> 3);
541 static int last_qtd_of_urb(struct isp1760_qtd
*qtd
, struct isp1760_qh
*qh
)
545 if (list_is_last(&qtd
->qtd_list
, &qh
->qtd_list
))
549 qtd
= list_entry(qtd
->qtd_list
.next
, typeof(*qtd
), qtd_list
);
550 return (qtd
->urb
!= urb
);
553 /* magic numbers that can affect system performance */
554 #define EHCI_TUNE_CERR 3 /* 0-3 qtd retries; 0 == don't stop */
555 #define EHCI_TUNE_RL_HS 4 /* nak throttle; see 4.9 */
556 #define EHCI_TUNE_RL_TT 0
557 #define EHCI_TUNE_MULT_HS 1 /* 1-3 transactions/uframe; 4.10.3 */
558 #define EHCI_TUNE_MULT_TT 1
559 #define EHCI_TUNE_FLS 2 /* (small) 256 frame schedule */
561 static void create_ptd_atl(struct isp1760_qh
*qh
,
562 struct isp1760_qtd
*qtd
, struct ptd
*ptd
)
567 u32 nak
= NAK_COUNTER
;
569 memset(ptd
, 0, sizeof(*ptd
));
571 /* according to 3.6.2, max packet len can not be > 0x400 */
572 maxpacket
= usb_maxpacket(qtd
->urb
->dev
, qtd
->urb
->pipe
,
573 usb_pipeout(qtd
->urb
->pipe
));
574 multi
= 1 + ((maxpacket
>> 11) & 0x3);
578 ptd
->dw0
= DW0_VALID_BIT
;
579 ptd
->dw0
|= TO_DW0_LENGTH(qtd
->length
);
580 ptd
->dw0
|= TO_DW0_MAXPACKET(maxpacket
);
581 ptd
->dw0
|= TO_DW0_ENDPOINT(usb_pipeendpoint(qtd
->urb
->pipe
));
584 ptd
->dw1
= usb_pipeendpoint(qtd
->urb
->pipe
) >> 1;
585 ptd
->dw1
|= TO_DW1_DEVICE_ADDR(usb_pipedevice(qtd
->urb
->pipe
));
586 ptd
->dw1
|= TO_DW1_PID_TOKEN(qtd
->packet_type
);
588 if (usb_pipebulk(qtd
->urb
->pipe
))
589 ptd
->dw1
|= DW1_TRANS_BULK
;
590 else if (usb_pipeint(qtd
->urb
->pipe
))
591 ptd
->dw1
|= DW1_TRANS_INT
;
593 if (qtd
->urb
->dev
->speed
!= USB_SPEED_HIGH
) {
594 /* split transaction */
596 ptd
->dw1
|= DW1_TRANS_SPLIT
;
597 if (qtd
->urb
->dev
->speed
== USB_SPEED_LOW
)
598 ptd
->dw1
|= DW1_SE_USB_LOSPEED
;
600 ptd
->dw1
|= TO_DW1_PORT_NUM(qtd
->urb
->dev
->ttport
);
601 ptd
->dw1
|= TO_DW1_HUB_NUM(qtd
->urb
->dev
->tt
->hub
->devnum
);
603 /* SE bit for Split INT transfers */
604 if (usb_pipeint(qtd
->urb
->pipe
) &&
605 (qtd
->urb
->dev
->speed
== USB_SPEED_LOW
))
611 ptd
->dw0
|= TO_DW0_MULTI(multi
);
612 if (usb_pipecontrol(qtd
->urb
->pipe
) ||
613 usb_pipebulk(qtd
->urb
->pipe
))
614 ptd
->dw3
|= TO_DW3_PING(qh
->ping
);
618 ptd
->dw2
|= TO_DW2_DATA_START_ADDR(base_to_chip(qtd
->payload_addr
));
619 ptd
->dw2
|= TO_DW2_RL(rl
);
622 ptd
->dw3
|= TO_DW3_NAKCOUNT(nak
);
623 ptd
->dw3
|= TO_DW3_DATA_TOGGLE(qh
->toggle
);
624 if (usb_pipecontrol(qtd
->urb
->pipe
)) {
625 if (qtd
->data_buffer
== qtd
->urb
->setup_packet
)
626 ptd
->dw3
&= ~TO_DW3_DATA_TOGGLE(1);
627 else if (last_qtd_of_urb(qtd
, qh
))
628 ptd
->dw3
|= TO_DW3_DATA_TOGGLE(1);
631 ptd
->dw3
|= DW3_ACTIVE_BIT
;
633 ptd
->dw3
|= TO_DW3_CERR(ERR_COUNTER
);
636 static void transform_add_int(struct isp1760_qh
*qh
,
637 struct isp1760_qtd
*qtd
, struct ptd
*ptd
)
643 * Most of this is guessing. ISP1761 datasheet is quite unclear, and
644 * the algorithm from the original Philips driver code, which was
645 * pretty much used in this driver before as well, is quite horrendous
646 * and, i believe, incorrect. The code below follows the datasheet and
647 * USB2.0 spec as far as I can tell, and plug/unplug seems to be much
648 * more reliable this way (fingers crossed...).
651 if (qtd
->urb
->dev
->speed
== USB_SPEED_HIGH
) {
652 /* urb->interval is in units of microframes (1/8 ms) */
653 period
= qtd
->urb
->interval
>> 3;
655 if (qtd
->urb
->interval
> 4)
656 usof
= 0x01; /* One bit set =>
657 interval 1 ms * uFrame-match */
658 else if (qtd
->urb
->interval
> 2)
659 usof
= 0x22; /* Two bits set => interval 1/2 ms */
660 else if (qtd
->urb
->interval
> 1)
661 usof
= 0x55; /* Four bits set => interval 1/4 ms */
663 usof
= 0xff; /* All bits set => interval 1/8 ms */
665 /* urb->interval is in units of frames (1 ms) */
666 period
= qtd
->urb
->interval
;
667 usof
= 0x0f; /* Execute Start Split on any of the
668 four first uFrames */
671 * First 8 bits in dw5 is uSCS and "specifies which uSOF the
672 * complete split needs to be sent. Valid only for IN." Also,
673 * "All bits can be set to one for every transfer." (p 82,
674 * ISP1761 data sheet.) 0x1c is from Philips driver. Where did
675 * that number come from? 0xff seems to work fine...
677 /* ptd->dw5 = 0x1c; */
678 ptd
->dw5
= 0xff; /* Execute Complete Split on any uFrame */
681 period
= period
>> 1;/* Ensure equal or shorter period than requested */
682 period
&= 0xf8; /* Mask off too large values and lowest unused 3 bits */
688 static void create_ptd_int(struct isp1760_qh
*qh
,
689 struct isp1760_qtd
*qtd
, struct ptd
*ptd
)
691 create_ptd_atl(qh
, qtd
, ptd
);
692 transform_add_int(qh
, qtd
, ptd
);
695 static void isp1760_urb_done(struct usb_hcd
*hcd
, struct urb
*urb
)
696 __releases(priv
->lock
)
697 __acquires(priv
->lock
)
699 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
701 if (!urb
->unlinked
) {
702 if (urb
->status
== -EINPROGRESS
)
706 if (usb_pipein(urb
->pipe
) && usb_pipetype(urb
->pipe
) != PIPE_CONTROL
) {
708 for (ptr
= urb
->transfer_buffer
;
709 ptr
< urb
->transfer_buffer
+ urb
->transfer_buffer_length
;
711 flush_dcache_page(virt_to_page(ptr
));
714 /* complete() can reenter this HCD */
715 usb_hcd_unlink_urb_from_ep(hcd
, urb
);
716 spin_unlock(&priv
->lock
);
717 usb_hcd_giveback_urb(hcd
, urb
, urb
->status
);
718 spin_lock(&priv
->lock
);
721 static struct isp1760_qtd
*qtd_alloc(gfp_t flags
, struct urb
*urb
,
724 struct isp1760_qtd
*qtd
;
726 qtd
= kmem_cache_zalloc(qtd_cachep
, flags
);
730 INIT_LIST_HEAD(&qtd
->qtd_list
);
732 qtd
->packet_type
= packet_type
;
733 qtd
->status
= QTD_ENQUEUED
;
734 qtd
->actual_length
= 0;
739 static void qtd_free(struct isp1760_qtd
*qtd
)
741 WARN_ON(qtd
->payload_addr
);
742 kmem_cache_free(qtd_cachep
, qtd
);
745 static void start_bus_transfer(struct usb_hcd
*hcd
, u32 ptd_offset
, int slot
,
746 struct slotinfo
*slots
, struct isp1760_qtd
*qtd
,
747 struct isp1760_qh
*qh
, struct ptd
*ptd
)
749 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
752 WARN_ON((slot
< 0) || (slot
> 31));
753 WARN_ON(qtd
->length
&& !qtd
->payload_addr
);
754 WARN_ON(slots
[slot
].qtd
);
755 WARN_ON(slots
[slot
].qh
);
756 WARN_ON(qtd
->status
!= QTD_PAYLOAD_ALLOC
);
758 /* Make sure done map has not triggered from some unlinked transfer */
759 if (ptd_offset
== ATL_PTD_OFFSET
) {
760 priv
->atl_done_map
|= reg_read32(hcd
->regs
,
761 HC_ATL_PTD_DONEMAP_REG
);
762 priv
->atl_done_map
&= ~(1 << slot
);
764 priv
->int_done_map
|= reg_read32(hcd
->regs
,
765 HC_INT_PTD_DONEMAP_REG
);
766 priv
->int_done_map
&= ~(1 << slot
);
770 qtd
->status
= QTD_XFER_STARTED
;
771 slots
[slot
].timestamp
= jiffies
;
772 slots
[slot
].qtd
= qtd
;
774 ptd_write(hcd
->regs
, ptd_offset
, slot
, ptd
);
776 if (ptd_offset
== ATL_PTD_OFFSET
) {
777 skip_map
= reg_read32(hcd
->regs
, HC_ATL_PTD_SKIPMAP_REG
);
778 skip_map
&= ~(1 << qh
->slot
);
779 reg_write32(hcd
->regs
, HC_ATL_PTD_SKIPMAP_REG
, skip_map
);
781 skip_map
= reg_read32(hcd
->regs
, HC_INT_PTD_SKIPMAP_REG
);
782 skip_map
&= ~(1 << qh
->slot
);
783 reg_write32(hcd
->regs
, HC_INT_PTD_SKIPMAP_REG
, skip_map
);
787 static int is_short_bulk(struct isp1760_qtd
*qtd
)
789 return (usb_pipebulk(qtd
->urb
->pipe
) &&
790 (qtd
->actual_length
< qtd
->length
));
793 static void collect_qtds(struct usb_hcd
*hcd
, struct isp1760_qh
*qh
,
794 struct list_head
*urb_list
)
797 struct isp1760_qtd
*qtd
, *qtd_next
;
798 struct urb_listitem
*urb_listitem
;
800 list_for_each_entry_safe(qtd
, qtd_next
, &qh
->qtd_list
, qtd_list
) {
801 if (qtd
->status
< QTD_XFER_COMPLETE
)
804 last_qtd
= last_qtd_of_urb(qtd
, qh
);
806 if ((!last_qtd
) && (qtd
->status
== QTD_RETIRE
))
807 qtd_next
->status
= QTD_RETIRE
;
809 if (qtd
->status
== QTD_XFER_COMPLETE
) {
810 if (qtd
->actual_length
) {
811 switch (qtd
->packet_type
) {
813 mem_reads8(hcd
->regs
, qtd
->payload_addr
,
816 /* Fall through (?) */
818 qtd
->urb
->actual_length
+=
820 /* Fall through ... */
826 if (is_short_bulk(qtd
)) {
827 if (qtd
->urb
->transfer_flags
& URB_SHORT_NOT_OK
)
828 qtd
->urb
->status
= -EREMOTEIO
;
830 qtd_next
->status
= QTD_RETIRE
;
834 if (qtd
->payload_addr
)
838 if ((qtd
->status
== QTD_RETIRE
) &&
839 (qtd
->urb
->status
== -EINPROGRESS
))
840 qtd
->urb
->status
= -EPIPE
;
841 /* Defer calling of urb_done() since it releases lock */
842 urb_listitem
= kmem_cache_zalloc(urb_listitem_cachep
,
844 if (unlikely(!urb_listitem
))
845 break; /* Try again on next call */
846 urb_listitem
->urb
= qtd
->urb
;
847 list_add_tail(&urb_listitem
->urb_list
, urb_list
);
850 list_del(&qtd
->qtd_list
);
855 #define ENQUEUE_DEPTH 2
856 static void enqueue_qtds(struct usb_hcd
*hcd
, struct isp1760_qh
*qh
)
858 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
860 struct slotinfo
*slots
;
861 int curr_slot
, free_slot
;
864 struct isp1760_qtd
*qtd
;
866 if (unlikely(list_empty(&qh
->qtd_list
))) {
871 /* Make sure this endpoint's TT buffer is clean before queueing ptds */
872 if (qh
->tt_buffer_dirty
)
875 if (usb_pipeint(list_entry(qh
->qtd_list
.next
, struct isp1760_qtd
,
876 qtd_list
)->urb
->pipe
)) {
877 ptd_offset
= INT_PTD_OFFSET
;
878 slots
= priv
->int_slots
;
880 ptd_offset
= ATL_PTD_OFFSET
;
881 slots
= priv
->atl_slots
;
885 for (curr_slot
= 0; curr_slot
< 32; curr_slot
++) {
886 if ((free_slot
== -1) && (slots
[curr_slot
].qtd
== NULL
))
887 free_slot
= curr_slot
;
888 if (slots
[curr_slot
].qh
== qh
)
893 list_for_each_entry(qtd
, &qh
->qtd_list
, qtd_list
) {
894 if (qtd
->status
== QTD_ENQUEUED
) {
895 WARN_ON(qtd
->payload_addr
);
897 if ((qtd
->length
) && (!qtd
->payload_addr
))
901 ((qtd
->packet_type
== SETUP_PID
) ||
902 (qtd
->packet_type
== OUT_PID
))) {
903 mem_writes8(hcd
->regs
, qtd
->payload_addr
,
904 qtd
->data_buffer
, qtd
->length
);
907 qtd
->status
= QTD_PAYLOAD_ALLOC
;
910 if (qtd
->status
== QTD_PAYLOAD_ALLOC
) {
912 if ((curr_slot > 31) && (free_slot == -1))
913 dev_dbg(hcd->self.controller, "%s: No slot "
914 "available for transfer\n", __func__);
916 /* Start xfer for this endpoint if not already done */
917 if ((curr_slot
> 31) && (free_slot
> -1)) {
918 if (usb_pipeint(qtd
->urb
->pipe
))
919 create_ptd_int(qh
, qtd
, &ptd
);
921 create_ptd_atl(qh
, qtd
, &ptd
);
923 start_bus_transfer(hcd
, ptd_offset
, free_slot
,
924 slots
, qtd
, qh
, &ptd
);
925 curr_slot
= free_slot
;
929 if (n
>= ENQUEUE_DEPTH
)
935 static void schedule_ptds(struct usb_hcd
*hcd
)
937 struct isp1760_hcd
*priv
;
938 struct isp1760_qh
*qh
, *qh_next
;
939 struct list_head
*ep_queue
;
941 struct urb_listitem
*urb_listitem
, *urb_listitem_next
;
949 priv
= hcd_to_priv(hcd
);
952 * check finished/retired xfers, transfer payloads, call urb_done()
954 for (i
= 0; i
< QH_END
; i
++) {
955 ep_queue
= &priv
->qh_list
[i
];
956 list_for_each_entry_safe(qh
, qh_next
, ep_queue
, qh_list
) {
957 collect_qtds(hcd
, qh
, &urb_list
);
958 if (list_empty(&qh
->qtd_list
))
959 list_del(&qh
->qh_list
);
963 list_for_each_entry_safe(urb_listitem
, urb_listitem_next
, &urb_list
,
965 isp1760_urb_done(hcd
, urb_listitem
->urb
);
966 kmem_cache_free(urb_listitem_cachep
, urb_listitem
);
970 * Schedule packets for transfer.
972 * According to USB2.0 specification:
974 * 1st prio: interrupt xfers, up to 80 % of bandwidth
975 * 2nd prio: control xfers
976 * 3rd prio: bulk xfers
978 * ... but let's use a simpler scheme here (mostly because ISP1761 doc
979 * is very unclear on how to prioritize traffic):
981 * 1) Enqueue any queued control transfers, as long as payload chip mem
982 * and PTD ATL slots are available.
983 * 2) Enqueue any queued INT transfers, as long as payload chip mem
984 * and PTD INT slots are available.
985 * 3) Enqueue any queued bulk transfers, as long as payload chip mem
986 * and PTD ATL slots are available.
988 * Use double buffering (ENQUEUE_DEPTH==2) as a compromise between
989 * conservation of chip mem and performance.
991 * I'm sure this scheme could be improved upon!
993 for (i
= 0; i
< QH_END
; i
++) {
994 ep_queue
= &priv
->qh_list
[i
];
995 list_for_each_entry_safe(qh
, qh_next
, ep_queue
, qh_list
)
996 enqueue_qtds(hcd
, qh
);
1000 #define PTD_STATE_QTD_DONE 1
1001 #define PTD_STATE_QTD_RELOAD 2
1002 #define PTD_STATE_URB_RETIRE 3
1004 static int check_int_transfer(struct usb_hcd
*hcd
, struct ptd
*ptd
,
1013 /* FIXME: ISP1761 datasheet does not say what to do with these. Do we
1014 need to handle these errors? Is it done in hardware? */
1016 if (ptd
->dw3
& DW3_HALT_BIT
) {
1018 urb
->status
= -EPROTO
; /* Default unknown error */
1020 for (i
= 0; i
< 8; i
++) {
1021 switch (dw4
& 0x7) {
1023 dev_dbg(hcd
->self
.controller
, "%s: underrun "
1024 "during uFrame %d\n",
1026 urb
->status
= -ECOMM
; /* Could not write data */
1029 dev_dbg(hcd
->self
.controller
, "%s: transaction "
1030 "error during uFrame %d\n",
1032 urb
->status
= -EPROTO
; /* timeout, bad CRC, PID
1036 dev_dbg(hcd
->self
.controller
, "%s: babble "
1037 "error during uFrame %d\n",
1039 urb
->status
= -EOVERFLOW
;
1045 return PTD_STATE_URB_RETIRE
;
1048 return PTD_STATE_QTD_DONE
;
1051 static int check_atl_transfer(struct usb_hcd
*hcd
, struct ptd
*ptd
,
1055 if (ptd
->dw3
& DW3_HALT_BIT
) {
1056 if (ptd
->dw3
& DW3_BABBLE_BIT
)
1057 urb
->status
= -EOVERFLOW
;
1058 else if (FROM_DW3_CERR(ptd
->dw3
))
1059 urb
->status
= -EPIPE
; /* Stall */
1060 else if (ptd
->dw3
& DW3_ERROR_BIT
)
1061 urb
->status
= -EPROTO
; /* XactErr */
1063 urb
->status
= -EPROTO
; /* Unknown */
1065 dev_dbg(hcd->self.controller, "%s: ptd error:\n"
1066 " dw0: %08x dw1: %08x dw2: %08x dw3: %08x\n"
1067 " dw4: %08x dw5: %08x dw6: %08x dw7: %08x\n",
1069 ptd->dw0, ptd->dw1, ptd->dw2, ptd->dw3,
1070 ptd->dw4, ptd->dw5, ptd->dw6, ptd->dw7);
1072 return PTD_STATE_URB_RETIRE
;
1075 if ((ptd
->dw3
& DW3_ERROR_BIT
) && (ptd
->dw3
& DW3_ACTIVE_BIT
)) {
1076 /* Transfer Error, *but* active and no HALT -> reload */
1077 dev_dbg(hcd
->self
.controller
, "PID error; reloading ptd\n");
1078 return PTD_STATE_QTD_RELOAD
;
1081 if (!FROM_DW3_NAKCOUNT(ptd
->dw3
) && (ptd
->dw3
& DW3_ACTIVE_BIT
)) {
1083 * NAKs are handled in HW by the chip. Usually if the
1084 * device is not able to send data fast enough.
1085 * This happens mostly on slower hardware.
1087 return PTD_STATE_QTD_RELOAD
;
1090 return PTD_STATE_QTD_DONE
;
1093 static void handle_done_ptds(struct usb_hcd
*hcd
)
1095 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
1097 struct isp1760_qh
*qh
;
1100 struct slotinfo
*slots
;
1102 struct isp1760_qtd
*qtd
;
1106 skip_map
= reg_read32(hcd
->regs
, HC_INT_PTD_SKIPMAP_REG
);
1107 priv
->int_done_map
&= ~skip_map
;
1108 skip_map
= reg_read32(hcd
->regs
, HC_ATL_PTD_SKIPMAP_REG
);
1109 priv
->atl_done_map
&= ~skip_map
;
1111 modified
= priv
->int_done_map
|| priv
->atl_done_map
;
1113 while (priv
->int_done_map
|| priv
->atl_done_map
) {
1114 if (priv
->int_done_map
) {
1116 slot
= __ffs(priv
->int_done_map
);
1117 priv
->int_done_map
&= ~(1 << slot
);
1118 slots
= priv
->int_slots
;
1119 /* This should not trigger, and could be removed if
1120 noone have any problems with it triggering: */
1121 if (!slots
[slot
].qh
) {
1125 ptd_offset
= INT_PTD_OFFSET
;
1126 ptd_read(hcd
->regs
, INT_PTD_OFFSET
, slot
, &ptd
);
1127 state
= check_int_transfer(hcd
, &ptd
,
1128 slots
[slot
].qtd
->urb
);
1131 slot
= __ffs(priv
->atl_done_map
);
1132 priv
->atl_done_map
&= ~(1 << slot
);
1133 slots
= priv
->atl_slots
;
1134 /* This should not trigger, and could be removed if
1135 noone have any problems with it triggering: */
1136 if (!slots
[slot
].qh
) {
1140 ptd_offset
= ATL_PTD_OFFSET
;
1141 ptd_read(hcd
->regs
, ATL_PTD_OFFSET
, slot
, &ptd
);
1142 state
= check_atl_transfer(hcd
, &ptd
,
1143 slots
[slot
].qtd
->urb
);
1146 qtd
= slots
[slot
].qtd
;
1147 slots
[slot
].qtd
= NULL
;
1148 qh
= slots
[slot
].qh
;
1149 slots
[slot
].qh
= NULL
;
1152 WARN_ON(qtd
->status
!= QTD_XFER_STARTED
);
1155 case PTD_STATE_QTD_DONE
:
1156 if ((usb_pipeint(qtd
->urb
->pipe
)) &&
1157 (qtd
->urb
->dev
->speed
!= USB_SPEED_HIGH
))
1158 qtd
->actual_length
=
1159 FROM_DW3_SCS_NRBYTESTRANSFERRED(ptd
.dw3
);
1161 qtd
->actual_length
=
1162 FROM_DW3_NRBYTESTRANSFERRED(ptd
.dw3
);
1164 qtd
->status
= QTD_XFER_COMPLETE
;
1165 if (list_is_last(&qtd
->qtd_list
, &qh
->qtd_list
) ||
1169 qtd
= list_entry(qtd
->qtd_list
.next
,
1170 typeof(*qtd
), qtd_list
);
1172 qh
->toggle
= FROM_DW3_DATA_TOGGLE(ptd
.dw3
);
1173 qh
->ping
= FROM_DW3_PING(ptd
.dw3
);
1176 case PTD_STATE_QTD_RELOAD
: /* QTD_RETRY, for atls only */
1177 qtd
->status
= QTD_PAYLOAD_ALLOC
;
1178 ptd
.dw0
|= DW0_VALID_BIT
;
1179 /* RL counter = ERR counter */
1180 ptd
.dw3
&= ~TO_DW3_NAKCOUNT(0xf);
1181 ptd
.dw3
|= TO_DW3_NAKCOUNT(FROM_DW2_RL(ptd
.dw2
));
1182 ptd
.dw3
&= ~TO_DW3_CERR(3);
1183 ptd
.dw3
|= TO_DW3_CERR(ERR_COUNTER
);
1184 qh
->toggle
= FROM_DW3_DATA_TOGGLE(ptd
.dw3
);
1185 qh
->ping
= FROM_DW3_PING(ptd
.dw3
);
1188 case PTD_STATE_URB_RETIRE
:
1189 qtd
->status
= QTD_RETIRE
;
1190 if ((qtd
->urb
->dev
->speed
!= USB_SPEED_HIGH
) &&
1191 (qtd
->urb
->status
!= -EPIPE
) &&
1192 (qtd
->urb
->status
!= -EREMOTEIO
)) {
1193 qh
->tt_buffer_dirty
= 1;
1194 if (usb_hub_clear_tt_buffer(qtd
->urb
))
1195 /* Clear failed; let's hope things work
1197 qh
->tt_buffer_dirty
= 0;
1209 if (qtd
&& (qtd
->status
== QTD_PAYLOAD_ALLOC
)) {
1210 if (slots
== priv
->int_slots
) {
1211 if (state
== PTD_STATE_QTD_RELOAD
)
1212 dev_err(hcd
->self
.controller
,
1213 "%s: PTD_STATE_QTD_RELOAD on "
1214 "interrupt packet\n", __func__
);
1215 if (state
!= PTD_STATE_QTD_RELOAD
)
1216 create_ptd_int(qh
, qtd
, &ptd
);
1218 if (state
!= PTD_STATE_QTD_RELOAD
)
1219 create_ptd_atl(qh
, qtd
, &ptd
);
1222 start_bus_transfer(hcd
, ptd_offset
, slot
, slots
, qtd
,
1231 static irqreturn_t
isp1760_irq(struct usb_hcd
*hcd
)
1233 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
1235 irqreturn_t irqret
= IRQ_NONE
;
1237 spin_lock(&priv
->lock
);
1239 if (!(hcd
->state
& HC_STATE_RUNNING
))
1242 imask
= reg_read32(hcd
->regs
, HC_INTERRUPT_REG
);
1243 if (unlikely(!imask
))
1245 reg_write32(hcd
->regs
, HC_INTERRUPT_REG
, imask
); /* Clear */
1247 priv
->int_done_map
|= reg_read32(hcd
->regs
, HC_INT_PTD_DONEMAP_REG
);
1248 priv
->atl_done_map
|= reg_read32(hcd
->regs
, HC_ATL_PTD_DONEMAP_REG
);
1250 handle_done_ptds(hcd
);
1252 irqret
= IRQ_HANDLED
;
1254 spin_unlock(&priv
->lock
);
1260 * Workaround for problem described in chip errata 2:
1262 * Sometimes interrupts are not generated when ATL (not INT?) completion occurs.
1263 * One solution suggested in the errata is to use SOF interrupts _instead_of_
1264 * ATL done interrupts (the "instead of" might be important since it seems
1265 * enabling ATL interrupts also causes the chip to sometimes - rarely - "forget"
1266 * to set the PTD's done bit in addition to not generating an interrupt!).
1268 * So if we use SOF + ATL interrupts, we sometimes get stale PTDs since their
1269 * done bit is not being set. This is bad - it blocks the endpoint until reboot.
1271 * If we use SOF interrupts only, we get latency between ptd completion and the
1272 * actual handling. This is very noticeable in testusb runs which takes several
1273 * minutes longer without ATL interrupts.
1275 * A better solution is to run the code below every SLOT_CHECK_PERIOD ms. If it
1276 * finds active ATL slots which are older than SLOT_TIMEOUT ms, it checks the
1277 * slot's ACTIVE and VALID bits. If these are not set, the ptd is considered
1278 * completed and its done map bit is set.
1280 * The values of SLOT_TIMEOUT and SLOT_CHECK_PERIOD have been arbitrarily chosen
1281 * not to cause too much lag when this HW bug occurs, while still hopefully
1282 * ensuring that the check does not falsely trigger.
1284 #define SLOT_TIMEOUT 300
1285 #define SLOT_CHECK_PERIOD 200
1286 static struct timer_list errata2_timer
;
1288 static void errata2_function(unsigned long data
)
1290 struct usb_hcd
*hcd
= (struct usb_hcd
*) data
;
1291 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
1294 unsigned long spinflags
;
1296 spin_lock_irqsave(&priv
->lock
, spinflags
);
1298 for (slot
= 0; slot
< 32; slot
++)
1299 if (priv
->atl_slots
[slot
].qh
&& time_after(jiffies
,
1300 priv
->atl_slots
[slot
].timestamp
+
1301 SLOT_TIMEOUT
* HZ
/ 1000)) {
1302 ptd_read(hcd
->regs
, ATL_PTD_OFFSET
, slot
, &ptd
);
1303 if (!FROM_DW0_VALID(ptd
.dw0
) &&
1304 !FROM_DW3_ACTIVE(ptd
.dw3
))
1305 priv
->atl_done_map
|= 1 << slot
;
1308 if (priv
->atl_done_map
)
1309 handle_done_ptds(hcd
);
1311 spin_unlock_irqrestore(&priv
->lock
, spinflags
);
1313 errata2_timer
.expires
= jiffies
+ SLOT_CHECK_PERIOD
* HZ
/ 1000;
1314 add_timer(&errata2_timer
);
1317 static int isp1760_run(struct usb_hcd
*hcd
)
1324 hcd
->uses_new_polling
= 1;
1326 hcd
->state
= HC_STATE_RUNNING
;
1328 /* Set PTD interrupt AND & OR maps */
1329 reg_write32(hcd
->regs
, HC_ATL_IRQ_MASK_AND_REG
, 0);
1330 reg_write32(hcd
->regs
, HC_ATL_IRQ_MASK_OR_REG
, 0xffffffff);
1331 reg_write32(hcd
->regs
, HC_INT_IRQ_MASK_AND_REG
, 0);
1332 reg_write32(hcd
->regs
, HC_INT_IRQ_MASK_OR_REG
, 0xffffffff);
1333 reg_write32(hcd
->regs
, HC_ISO_IRQ_MASK_AND_REG
, 0);
1334 reg_write32(hcd
->regs
, HC_ISO_IRQ_MASK_OR_REG
, 0xffffffff);
1335 /* step 23 passed */
1337 temp
= reg_read32(hcd
->regs
, HC_HW_MODE_CTRL
);
1338 reg_write32(hcd
->regs
, HC_HW_MODE_CTRL
, temp
| HW_GLOBAL_INTR_EN
);
1340 command
= reg_read32(hcd
->regs
, HC_USBCMD
);
1341 command
&= ~(CMD_LRESET
|CMD_RESET
);
1343 reg_write32(hcd
->regs
, HC_USBCMD
, command
);
1345 retval
= handshake(hcd
, HC_USBCMD
, CMD_RUN
, CMD_RUN
, 250 * 1000);
1351 * Spec says to write FLAG_CF as last config action, priv code grabs
1352 * the semaphore while doing so.
1354 down_write(&ehci_cf_port_reset_rwsem
);
1355 reg_write32(hcd
->regs
, HC_CONFIGFLAG
, FLAG_CF
);
1357 retval
= handshake(hcd
, HC_CONFIGFLAG
, FLAG_CF
, FLAG_CF
, 250 * 1000);
1358 up_write(&ehci_cf_port_reset_rwsem
);
1362 init_timer(&errata2_timer
);
1363 errata2_timer
.function
= errata2_function
;
1364 errata2_timer
.data
= (unsigned long) hcd
;
1365 errata2_timer
.expires
= jiffies
+ SLOT_CHECK_PERIOD
* HZ
/ 1000;
1366 add_timer(&errata2_timer
);
1368 chipid
= reg_read32(hcd
->regs
, HC_CHIP_ID_REG
);
1369 dev_info(hcd
->self
.controller
, "USB ISP %04x HW rev. %d started\n",
1370 chipid
& 0xffff, chipid
>> 16);
1372 /* PTD Register Init Part 2, Step 28 */
1374 /* Setup registers controlling PTD checking */
1375 reg_write32(hcd
->regs
, HC_ATL_PTD_LASTPTD_REG
, 0x80000000);
1376 reg_write32(hcd
->regs
, HC_INT_PTD_LASTPTD_REG
, 0x80000000);
1377 reg_write32(hcd
->regs
, HC_ISO_PTD_LASTPTD_REG
, 0x00000001);
1378 reg_write32(hcd
->regs
, HC_ATL_PTD_SKIPMAP_REG
, 0xffffffff);
1379 reg_write32(hcd
->regs
, HC_INT_PTD_SKIPMAP_REG
, 0xffffffff);
1380 reg_write32(hcd
->regs
, HC_ISO_PTD_SKIPMAP_REG
, 0xffffffff);
1381 reg_write32(hcd
->regs
, HC_BUFFER_STATUS_REG
,
1382 ATL_BUF_FILL
| INT_BUF_FILL
);
1384 /* GRR this is run-once init(), being done every time the HC starts.
1385 * So long as they're part of class devices, we can't do it init()
1386 * since the class device isn't created that early.
1391 static int qtd_fill(struct isp1760_qtd
*qtd
, void *databuffer
, size_t len
)
1393 qtd
->data_buffer
= databuffer
;
1395 if (len
> MAX_PAYLOAD_SIZE
)
1396 len
= MAX_PAYLOAD_SIZE
;
1402 static void qtd_list_free(struct list_head
*qtd_list
)
1404 struct isp1760_qtd
*qtd
, *qtd_next
;
1406 list_for_each_entry_safe(qtd
, qtd_next
, qtd_list
, qtd_list
) {
1407 list_del(&qtd
->qtd_list
);
1413 * Packetize urb->transfer_buffer into list of packets of size wMaxPacketSize.
1414 * Also calculate the PID type (SETUP/IN/OUT) for each packet.
1416 #define max_packet(wMaxPacketSize) ((wMaxPacketSize) & 0x07ff)
1417 static void packetize_urb(struct usb_hcd
*hcd
,
1418 struct urb
*urb
, struct list_head
*head
, gfp_t flags
)
1420 struct isp1760_qtd
*qtd
;
1422 int len
, maxpacketsize
;
1426 * URBs map to sequences of QTDs: one logical transaction
1429 if (!urb
->transfer_buffer
&& urb
->transfer_buffer_length
) {
1430 /* XXX This looks like usb storage / SCSI bug */
1431 dev_err(hcd
->self
.controller
,
1432 "buf is null, dma is %08lx len is %d\n",
1433 (long unsigned)urb
->transfer_dma
,
1434 urb
->transfer_buffer_length
);
1438 if (usb_pipein(urb
->pipe
))
1439 packet_type
= IN_PID
;
1441 packet_type
= OUT_PID
;
1443 if (usb_pipecontrol(urb
->pipe
)) {
1444 qtd
= qtd_alloc(flags
, urb
, SETUP_PID
);
1447 qtd_fill(qtd
, urb
->setup_packet
, sizeof(struct usb_ctrlrequest
));
1448 list_add_tail(&qtd
->qtd_list
, head
);
1450 /* for zero length DATA stages, STATUS is always IN */
1451 if (urb
->transfer_buffer_length
== 0)
1452 packet_type
= IN_PID
;
1455 maxpacketsize
= max_packet(usb_maxpacket(urb
->dev
, urb
->pipe
,
1456 usb_pipeout(urb
->pipe
)));
1459 * buffer gets wrapped in one or more qtds;
1460 * last one may be "short" (including zero len)
1461 * and may serve as a control status ack
1463 buf
= urb
->transfer_buffer
;
1464 len
= urb
->transfer_buffer_length
;
1469 qtd
= qtd_alloc(flags
, urb
, packet_type
);
1472 this_qtd_len
= qtd_fill(qtd
, buf
, len
);
1473 list_add_tail(&qtd
->qtd_list
, head
);
1475 len
-= this_qtd_len
;
1476 buf
+= this_qtd_len
;
1483 * control requests may need a terminating data "status" ack;
1484 * bulk ones may need a terminating short packet (zero length).
1486 if (urb
->transfer_buffer_length
!= 0) {
1489 if (usb_pipecontrol(urb
->pipe
)) {
1491 if (packet_type
== IN_PID
)
1492 packet_type
= OUT_PID
;
1494 packet_type
= IN_PID
;
1495 } else if (usb_pipebulk(urb
->pipe
)
1496 && (urb
->transfer_flags
& URB_ZERO_PACKET
)
1497 && !(urb
->transfer_buffer_length
%
1502 qtd
= qtd_alloc(flags
, urb
, packet_type
);
1506 /* never any data in such packets */
1507 qtd_fill(qtd
, NULL
, 0);
1508 list_add_tail(&qtd
->qtd_list
, head
);
1515 qtd_list_free(head
);
1518 static int isp1760_urb_enqueue(struct usb_hcd
*hcd
, struct urb
*urb
,
1521 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
1522 struct list_head
*ep_queue
;
1523 struct isp1760_qh
*qh
, *qhit
;
1524 unsigned long spinflags
;
1525 LIST_HEAD(new_qtds
);
1529 switch (usb_pipetype(urb
->pipe
)) {
1531 ep_queue
= &priv
->qh_list
[QH_CONTROL
];
1534 ep_queue
= &priv
->qh_list
[QH_BULK
];
1536 case PIPE_INTERRUPT
:
1537 if (urb
->interval
< 0)
1539 /* FIXME: Check bandwidth */
1540 ep_queue
= &priv
->qh_list
[QH_INTERRUPT
];
1542 case PIPE_ISOCHRONOUS
:
1543 dev_err(hcd
->self
.controller
, "%s: isochronous USB packets "
1544 "not yet supported\n",
1548 dev_err(hcd
->self
.controller
, "%s: unknown pipe type\n",
1553 if (usb_pipein(urb
->pipe
))
1554 urb
->actual_length
= 0;
1556 packetize_urb(hcd
, urb
, &new_qtds
, mem_flags
);
1557 if (list_empty(&new_qtds
))
1561 spin_lock_irqsave(&priv
->lock
, spinflags
);
1563 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
)) {
1564 retval
= -ESHUTDOWN
;
1565 qtd_list_free(&new_qtds
);
1568 retval
= usb_hcd_link_urb_to_ep(hcd
, urb
);
1570 qtd_list_free(&new_qtds
);
1574 qh
= urb
->ep
->hcpriv
;
1577 list_for_each_entry(qhit
, ep_queue
, qh_list
) {
1584 list_add_tail(&qh
->qh_list
, ep_queue
);
1586 qh
= qh_alloc(GFP_ATOMIC
);
1589 usb_hcd_unlink_urb_from_ep(hcd
, urb
);
1590 qtd_list_free(&new_qtds
);
1593 list_add_tail(&qh
->qh_list
, ep_queue
);
1594 urb
->ep
->hcpriv
= qh
;
1597 list_splice_tail(&new_qtds
, &qh
->qtd_list
);
1601 spin_unlock_irqrestore(&priv
->lock
, spinflags
);
1605 static void kill_transfer(struct usb_hcd
*hcd
, struct urb
*urb
,
1606 struct isp1760_qh
*qh
)
1608 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
1611 WARN_ON(qh
->slot
== -1);
1613 /* We need to forcefully reclaim the slot since some transfers never
1614 return, e.g. interrupt transfers and NAKed bulk transfers. */
1615 if (usb_pipecontrol(urb
->pipe
) || usb_pipebulk(urb
->pipe
)) {
1616 skip_map
= reg_read32(hcd
->regs
, HC_ATL_PTD_SKIPMAP_REG
);
1617 skip_map
|= (1 << qh
->slot
);
1618 reg_write32(hcd
->regs
, HC_ATL_PTD_SKIPMAP_REG
, skip_map
);
1619 priv
->atl_slots
[qh
->slot
].qh
= NULL
;
1620 priv
->atl_slots
[qh
->slot
].qtd
= NULL
;
1622 skip_map
= reg_read32(hcd
->regs
, HC_INT_PTD_SKIPMAP_REG
);
1623 skip_map
|= (1 << qh
->slot
);
1624 reg_write32(hcd
->regs
, HC_INT_PTD_SKIPMAP_REG
, skip_map
);
1625 priv
->int_slots
[qh
->slot
].qh
= NULL
;
1626 priv
->int_slots
[qh
->slot
].qtd
= NULL
;
1633 * Retire the qtds beginning at 'qtd' and belonging all to the same urb, killing
1634 * any active transfer belonging to the urb in the process.
1636 static void dequeue_urb_from_qtd(struct usb_hcd
*hcd
, struct isp1760_qh
*qh
,
1637 struct isp1760_qtd
*qtd
)
1640 int urb_was_running
;
1643 urb_was_running
= 0;
1644 list_for_each_entry_from(qtd
, &qh
->qtd_list
, qtd_list
) {
1645 if (qtd
->urb
!= urb
)
1648 if (qtd
->status
>= QTD_XFER_STARTED
)
1649 urb_was_running
= 1;
1650 if (last_qtd_of_urb(qtd
, qh
) &&
1651 (qtd
->status
>= QTD_XFER_COMPLETE
))
1652 urb_was_running
= 0;
1654 if (qtd
->status
== QTD_XFER_STARTED
)
1655 kill_transfer(hcd
, urb
, qh
);
1656 qtd
->status
= QTD_RETIRE
;
1659 if ((urb
->dev
->speed
!= USB_SPEED_HIGH
) && urb_was_running
) {
1660 qh
->tt_buffer_dirty
= 1;
1661 if (usb_hub_clear_tt_buffer(urb
))
1662 /* Clear failed; let's hope things work anyway */
1663 qh
->tt_buffer_dirty
= 0;
1667 static int isp1760_urb_dequeue(struct usb_hcd
*hcd
, struct urb
*urb
,
1670 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
1671 unsigned long spinflags
;
1672 struct isp1760_qh
*qh
;
1673 struct isp1760_qtd
*qtd
;
1676 spin_lock_irqsave(&priv
->lock
, spinflags
);
1677 retval
= usb_hcd_check_unlink_urb(hcd
, urb
, status
);
1681 qh
= urb
->ep
->hcpriv
;
1687 list_for_each_entry(qtd
, &qh
->qtd_list
, qtd_list
)
1688 if (qtd
->urb
== urb
) {
1689 dequeue_urb_from_qtd(hcd
, qh
, qtd
);
1690 list_move(&qtd
->qtd_list
, &qh
->qtd_list
);
1694 urb
->status
= status
;
1698 spin_unlock_irqrestore(&priv
->lock
, spinflags
);
1702 static void isp1760_endpoint_disable(struct usb_hcd
*hcd
,
1703 struct usb_host_endpoint
*ep
)
1705 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
1706 unsigned long spinflags
;
1707 struct isp1760_qh
*qh
, *qh_iter
;
1710 spin_lock_irqsave(&priv
->lock
, spinflags
);
1716 WARN_ON(!list_empty(&qh
->qtd_list
));
1718 for (i
= 0; i
< QH_END
; i
++)
1719 list_for_each_entry(qh_iter
, &priv
->qh_list
[i
], qh_list
)
1720 if (qh_iter
== qh
) {
1721 list_del(&qh_iter
->qh_list
);
1731 spin_unlock_irqrestore(&priv
->lock
, spinflags
);
1734 static int isp1760_hub_status_data(struct usb_hcd
*hcd
, char *buf
)
1736 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
1737 u32 temp
, status
= 0;
1740 unsigned long flags
;
1742 /* if !PM_RUNTIME, root hub timers won't get shut down ... */
1743 if (!HC_IS_RUNNING(hcd
->state
))
1746 /* init status to no-changes */
1750 spin_lock_irqsave(&priv
->lock
, flags
);
1751 temp
= reg_read32(hcd
->regs
, HC_PORTSC1
);
1753 if (temp
& PORT_OWNER
) {
1754 if (temp
& PORT_CSC
) {
1756 reg_write32(hcd
->regs
, HC_PORTSC1
, temp
);
1762 * Return status information even for ports with OWNER set.
1763 * Otherwise khubd wouldn't see the disconnect event when a
1764 * high-speed device is switched over to the companion
1765 * controller by the user.
1768 if ((temp
& mask
) != 0
1769 || ((temp
& PORT_RESUME
) != 0
1770 && time_after_eq(jiffies
,
1771 priv
->reset_done
))) {
1772 buf
[0] |= 1 << (0 + 1);
1775 /* FIXME autosuspend idle root hubs */
1777 spin_unlock_irqrestore(&priv
->lock
, flags
);
1778 return status
? retval
: 0;
1781 static void isp1760_hub_descriptor(struct isp1760_hcd
*priv
,
1782 struct usb_hub_descriptor
*desc
)
1784 int ports
= HCS_N_PORTS(priv
->hcs_params
);
1787 desc
->bDescriptorType
= 0x29;
1788 /* priv 1.0, 2.3.9 says 20ms max */
1789 desc
->bPwrOn2PwrGood
= 10;
1790 desc
->bHubContrCurrent
= 0;
1792 desc
->bNbrPorts
= ports
;
1793 temp
= 1 + (ports
/ 8);
1794 desc
->bDescLength
= 7 + 2 * temp
;
1796 /* ports removable, and usb 1.0 legacy PortPwrCtrlMask */
1797 memset(&desc
->u
.hs
.DeviceRemovable
[0], 0, temp
);
1798 memset(&desc
->u
.hs
.DeviceRemovable
[temp
], 0xff, temp
);
1800 /* per-port overcurrent reporting */
1802 if (HCS_PPC(priv
->hcs_params
))
1803 /* per-port power control */
1806 /* no power switching */
1808 desc
->wHubCharacteristics
= cpu_to_le16(temp
);
1811 #define PORT_WAKE_BITS (PORT_WKOC_E|PORT_WKDISC_E|PORT_WKCONN_E)
1813 static int check_reset_complete(struct usb_hcd
*hcd
, int index
,
1816 if (!(port_status
& PORT_CONNECT
))
1819 /* if reset finished and it's still not enabled -- handoff */
1820 if (!(port_status
& PORT_PE
)) {
1822 dev_info(hcd
->self
.controller
,
1823 "port %d full speed --> companion\n",
1826 port_status
|= PORT_OWNER
;
1827 port_status
&= ~PORT_RWC_BITS
;
1828 reg_write32(hcd
->regs
, HC_PORTSC1
, port_status
);
1831 dev_info(hcd
->self
.controller
, "port %d high speed\n",
1837 static int isp1760_hub_control(struct usb_hcd
*hcd
, u16 typeReq
,
1838 u16 wValue
, u16 wIndex
, char *buf
, u16 wLength
)
1840 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
1841 int ports
= HCS_N_PORTS(priv
->hcs_params
);
1843 unsigned long flags
;
1848 * FIXME: support SetPortFeatures USB_PORT_FEAT_INDICATOR.
1849 * HCS_INDICATOR may say we can change LEDs to off/amber/green.
1850 * (track current state ourselves) ... blink for diagnostics,
1851 * power, "this is the one", etc. EHCI spec supports this.
1854 spin_lock_irqsave(&priv
->lock
, flags
);
1856 case ClearHubFeature
:
1858 case C_HUB_LOCAL_POWER
:
1859 case C_HUB_OVER_CURRENT
:
1860 /* no hub-wide feature/status flags */
1866 case ClearPortFeature
:
1867 if (!wIndex
|| wIndex
> ports
)
1870 temp
= reg_read32(hcd
->regs
, HC_PORTSC1
);
1873 * Even if OWNER is set, so the port is owned by the
1874 * companion controller, khubd needs to be able to clear
1875 * the port-change status bits (especially
1876 * USB_PORT_STAT_C_CONNECTION).
1880 case USB_PORT_FEAT_ENABLE
:
1881 reg_write32(hcd
->regs
, HC_PORTSC1
, temp
& ~PORT_PE
);
1883 case USB_PORT_FEAT_C_ENABLE
:
1886 case USB_PORT_FEAT_SUSPEND
:
1887 if (temp
& PORT_RESET
)
1890 if (temp
& PORT_SUSPEND
) {
1891 if ((temp
& PORT_PE
) == 0)
1893 /* resume signaling for 20 msec */
1894 temp
&= ~(PORT_RWC_BITS
);
1895 reg_write32(hcd
->regs
, HC_PORTSC1
,
1896 temp
| PORT_RESUME
);
1897 priv
->reset_done
= jiffies
+
1898 msecs_to_jiffies(20);
1901 case USB_PORT_FEAT_C_SUSPEND
:
1902 /* we auto-clear this feature */
1904 case USB_PORT_FEAT_POWER
:
1905 if (HCS_PPC(priv
->hcs_params
))
1906 reg_write32(hcd
->regs
, HC_PORTSC1
,
1907 temp
& ~PORT_POWER
);
1909 case USB_PORT_FEAT_C_CONNECTION
:
1910 reg_write32(hcd
->regs
, HC_PORTSC1
, temp
| PORT_CSC
);
1912 case USB_PORT_FEAT_C_OVER_CURRENT
:
1915 case USB_PORT_FEAT_C_RESET
:
1916 /* GetPortStatus clears reset */
1921 reg_read32(hcd
->regs
, HC_USBCMD
);
1923 case GetHubDescriptor
:
1924 isp1760_hub_descriptor(priv
, (struct usb_hub_descriptor
*)
1928 /* no hub-wide feature/status flags */
1932 if (!wIndex
|| wIndex
> ports
)
1936 temp
= reg_read32(hcd
->regs
, HC_PORTSC1
);
1938 /* wPortChange bits */
1939 if (temp
& PORT_CSC
)
1940 status
|= USB_PORT_STAT_C_CONNECTION
<< 16;
1943 /* whoever resumes must GetPortStatus to complete it!! */
1944 if (temp
& PORT_RESUME
) {
1945 dev_err(hcd
->self
.controller
, "Port resume should be skipped.\n");
1947 /* Remote Wakeup received? */
1948 if (!priv
->reset_done
) {
1949 /* resume signaling for 20 msec */
1950 priv
->reset_done
= jiffies
1951 + msecs_to_jiffies(20);
1952 /* check the port again */
1953 mod_timer(&hcd
->rh_timer
, priv
->reset_done
);
1956 /* resume completed? */
1957 else if (time_after_eq(jiffies
,
1958 priv
->reset_done
)) {
1959 status
|= USB_PORT_STAT_C_SUSPEND
<< 16;
1960 priv
->reset_done
= 0;
1962 /* stop resume signaling */
1963 temp
= reg_read32(hcd
->regs
, HC_PORTSC1
);
1964 reg_write32(hcd
->regs
, HC_PORTSC1
,
1965 temp
& ~(PORT_RWC_BITS
| PORT_RESUME
));
1966 retval
= handshake(hcd
, HC_PORTSC1
,
1967 PORT_RESUME
, 0, 2000 /* 2msec */);
1969 dev_err(hcd
->self
.controller
,
1970 "port %d resume error %d\n",
1971 wIndex
+ 1, retval
);
1974 temp
&= ~(PORT_SUSPEND
|PORT_RESUME
|(3<<10));
1978 /* whoever resets must GetPortStatus to complete it!! */
1979 if ((temp
& PORT_RESET
)
1980 && time_after_eq(jiffies
,
1981 priv
->reset_done
)) {
1982 status
|= USB_PORT_STAT_C_RESET
<< 16;
1983 priv
->reset_done
= 0;
1985 /* force reset to complete */
1986 reg_write32(hcd
->regs
, HC_PORTSC1
, temp
& ~PORT_RESET
);
1987 /* REVISIT: some hardware needs 550+ usec to clear
1988 * this bit; seems too long to spin routinely...
1990 retval
= handshake(hcd
, HC_PORTSC1
,
1991 PORT_RESET
, 0, 750);
1993 dev_err(hcd
->self
.controller
, "port %d reset error %d\n",
1994 wIndex
+ 1, retval
);
1998 /* see what we found out */
1999 temp
= check_reset_complete(hcd
, wIndex
,
2000 reg_read32(hcd
->regs
, HC_PORTSC1
));
2003 * Even if OWNER is set, there's no harm letting khubd
2004 * see the wPortStatus values (they should all be 0 except
2005 * for PORT_POWER anyway).
2008 if (temp
& PORT_OWNER
)
2009 dev_err(hcd
->self
.controller
, "PORT_OWNER is set\n");
2011 if (temp
& PORT_CONNECT
) {
2012 status
|= USB_PORT_STAT_CONNECTION
;
2013 /* status may be from integrated TT */
2014 status
|= USB_PORT_STAT_HIGH_SPEED
;
2017 status
|= USB_PORT_STAT_ENABLE
;
2018 if (temp
& (PORT_SUSPEND
|PORT_RESUME
))
2019 status
|= USB_PORT_STAT_SUSPEND
;
2020 if (temp
& PORT_RESET
)
2021 status
|= USB_PORT_STAT_RESET
;
2022 if (temp
& PORT_POWER
)
2023 status
|= USB_PORT_STAT_POWER
;
2025 put_unaligned(cpu_to_le32(status
), (__le32
*) buf
);
2029 case C_HUB_LOCAL_POWER
:
2030 case C_HUB_OVER_CURRENT
:
2031 /* no hub-wide feature/status flags */
2037 case SetPortFeature
:
2038 selector
= wIndex
>> 8;
2040 if (!wIndex
|| wIndex
> ports
)
2043 temp
= reg_read32(hcd
->regs
, HC_PORTSC1
);
2044 if (temp
& PORT_OWNER
)
2047 /* temp &= ~PORT_RWC_BITS; */
2049 case USB_PORT_FEAT_ENABLE
:
2050 reg_write32(hcd
->regs
, HC_PORTSC1
, temp
| PORT_PE
);
2053 case USB_PORT_FEAT_SUSPEND
:
2054 if ((temp
& PORT_PE
) == 0
2055 || (temp
& PORT_RESET
) != 0)
2058 reg_write32(hcd
->regs
, HC_PORTSC1
, temp
| PORT_SUSPEND
);
2060 case USB_PORT_FEAT_POWER
:
2061 if (HCS_PPC(priv
->hcs_params
))
2062 reg_write32(hcd
->regs
, HC_PORTSC1
,
2065 case USB_PORT_FEAT_RESET
:
2066 if (temp
& PORT_RESUME
)
2068 /* line status bits may report this as low speed,
2069 * which can be fine if this root hub has a
2070 * transaction translator built in.
2072 if ((temp
& (PORT_PE
|PORT_CONNECT
)) == PORT_CONNECT
2073 && PORT_USB11(temp
)) {
2080 * caller must wait, then call GetPortStatus
2081 * usb 2.0 spec says 50 ms resets on root
2083 priv
->reset_done
= jiffies
+
2084 msecs_to_jiffies(50);
2086 reg_write32(hcd
->regs
, HC_PORTSC1
, temp
);
2091 reg_read32(hcd
->regs
, HC_USBCMD
);
2096 /* "stall" on error */
2099 spin_unlock_irqrestore(&priv
->lock
, flags
);
2103 static int isp1760_get_frame(struct usb_hcd
*hcd
)
2105 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
2108 fr
= reg_read32(hcd
->regs
, HC_FRINDEX
);
2109 return (fr
>> 3) % priv
->periodic_size
;
2112 static void isp1760_stop(struct usb_hcd
*hcd
)
2114 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
2117 del_timer(&errata2_timer
);
2119 isp1760_hub_control(hcd
, ClearPortFeature
, USB_PORT_FEAT_POWER
, 1,
2123 spin_lock_irq(&priv
->lock
);
2126 temp
= reg_read32(hcd
->regs
, HC_HW_MODE_CTRL
);
2127 reg_write32(hcd
->regs
, HC_HW_MODE_CTRL
, temp
&= ~HW_GLOBAL_INTR_EN
);
2128 spin_unlock_irq(&priv
->lock
);
2130 reg_write32(hcd
->regs
, HC_CONFIGFLAG
, 0);
2133 static void isp1760_shutdown(struct usb_hcd
*hcd
)
2138 temp
= reg_read32(hcd
->regs
, HC_HW_MODE_CTRL
);
2139 reg_write32(hcd
->regs
, HC_HW_MODE_CTRL
, temp
&= ~HW_GLOBAL_INTR_EN
);
2141 command
= reg_read32(hcd
->regs
, HC_USBCMD
);
2142 command
&= ~CMD_RUN
;
2143 reg_write32(hcd
->regs
, HC_USBCMD
, command
);
2146 static void isp1760_clear_tt_buffer_complete(struct usb_hcd
*hcd
,
2147 struct usb_host_endpoint
*ep
)
2149 struct isp1760_hcd
*priv
= hcd_to_priv(hcd
);
2150 struct isp1760_qh
*qh
= ep
->hcpriv
;
2151 unsigned long spinflags
;
2156 spin_lock_irqsave(&priv
->lock
, spinflags
);
2157 qh
->tt_buffer_dirty
= 0;
2159 spin_unlock_irqrestore(&priv
->lock
, spinflags
);
2163 static const struct hc_driver isp1760_hc_driver
= {
2164 .description
= "isp1760-hcd",
2165 .product_desc
= "NXP ISP1760 USB Host Controller",
2166 .hcd_priv_size
= sizeof(struct isp1760_hcd
),
2168 .flags
= HCD_MEMORY
| HCD_USB2
,
2169 .reset
= isp1760_hc_setup
,
2170 .start
= isp1760_run
,
2171 .stop
= isp1760_stop
,
2172 .shutdown
= isp1760_shutdown
,
2173 .urb_enqueue
= isp1760_urb_enqueue
,
2174 .urb_dequeue
= isp1760_urb_dequeue
,
2175 .endpoint_disable
= isp1760_endpoint_disable
,
2176 .get_frame_number
= isp1760_get_frame
,
2177 .hub_status_data
= isp1760_hub_status_data
,
2178 .hub_control
= isp1760_hub_control
,
2179 .clear_tt_buffer_complete
= isp1760_clear_tt_buffer_complete
,
2182 int __init
init_kmem_once(void)
2184 urb_listitem_cachep
= kmem_cache_create("isp1760_urb_listitem",
2185 sizeof(struct urb_listitem
), 0, SLAB_TEMPORARY
|
2186 SLAB_MEM_SPREAD
, NULL
);
2188 if (!urb_listitem_cachep
)
2191 qtd_cachep
= kmem_cache_create("isp1760_qtd",
2192 sizeof(struct isp1760_qtd
), 0, SLAB_TEMPORARY
|
2193 SLAB_MEM_SPREAD
, NULL
);
2198 qh_cachep
= kmem_cache_create("isp1760_qh", sizeof(struct isp1760_qh
),
2199 0, SLAB_TEMPORARY
| SLAB_MEM_SPREAD
, NULL
);
2202 kmem_cache_destroy(qtd_cachep
);
2209 void deinit_kmem_cache(void)
2211 kmem_cache_destroy(qtd_cachep
);
2212 kmem_cache_destroy(qh_cachep
);
2213 kmem_cache_destroy(urb_listitem_cachep
);
2216 struct usb_hcd
*isp1760_register(phys_addr_t res_start
, resource_size_t res_len
,
2217 int irq
, unsigned long irqflags
,
2219 struct device
*dev
, const char *busname
,
2220 unsigned int devflags
)
2222 struct usb_hcd
*hcd
;
2223 struct isp1760_hcd
*priv
;
2227 return ERR_PTR(-ENODEV
);
2229 /* prevent usb-core allocating DMA pages */
2230 dev
->dma_mask
= NULL
;
2232 hcd
= usb_create_hcd(&isp1760_hc_driver
, dev
, dev_name(dev
));
2234 return ERR_PTR(-ENOMEM
);
2236 priv
= hcd_to_priv(hcd
);
2237 priv
->devflags
= devflags
;
2238 priv
->rst_gpio
= rst_gpio
;
2240 hcd
->regs
= ioremap(res_start
, res_len
);
2247 hcd
->rsrc_start
= res_start
;
2248 hcd
->rsrc_len
= res_len
;
2250 ret
= usb_add_hcd(hcd
, irq
, irqflags
);
2262 return ERR_PTR(ret
);
2265 MODULE_DESCRIPTION("Driver for the ISP1760 USB-controller from NXP");
2266 MODULE_AUTHOR("Sebastian Siewior <bigeasy@linuxtronix.de>");
2267 MODULE_LICENSE("GPL v2");