]> git.ipfire.org Git - people/arne_f/kernel.git/blame - drivers/usb/isp1760/isp1760-hcd.c
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[people/arne_f/kernel.git] / drivers / usb / isp1760 / isp1760-hcd.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
db11e47d
SS
2/*
3 * Driver for the NXP ISP1760 chip
4 *
5 * However, the code might contain some bugs. What doesn't work for sure is:
6 * - ISO
7 * - OTG
8 e The interrupt line is configured as active low, level.
9 *
10 * (c) 2007 Sebastian Siewior <bigeasy@linutronix.de>
11 *
71a9f9d2
AB
12 * (c) 2011 Arvid Brodin <arvid.brodin@enea.com>
13 *
db11e47d 14 */
7eb42c6e 15#include <linux/gpio/consumer.h>
db11e47d
SS
16#include <linux/module.h>
17#include <linux/kernel.h>
18#include <linux/slab.h>
19#include <linux/list.h>
20#include <linux/usb.h>
27729aad 21#include <linux/usb/hcd.h>
db11e47d
SS
22#include <linux/debugfs.h>
23#include <linux/uaccess.h>
24#include <linux/io.h>
db8516f6 25#include <linux/mm.h>
6d50c60e 26#include <linux/timer.h>
db11e47d 27#include <asm/unaligned.h>
db8516f6 28#include <asm/cacheflush.h>
db11e47d 29
5171446a 30#include "isp1760-core.h"
db11e47d 31#include "isp1760-hcd.h"
e19c99e7 32#include "isp1760-regs.h"
db11e47d
SS
33
34static struct kmem_cache *qtd_cachep;
35static struct kmem_cache *qh_cachep;
71a9f9d2 36static struct kmem_cache *urb_listitem_cachep;
db11e47d 37
f0bdbb0e
LP
38typedef void (packet_enqueue)(struct usb_hcd *hcd, struct isp1760_qh *qh,
39 struct isp1760_qtd *qtd);
db11e47d
SS
40
41static inline struct isp1760_hcd *hcd_to_priv(struct usb_hcd *hcd)
42{
cdd36e87 43 return *(struct isp1760_hcd **)hcd->hcd_priv;
db11e47d 44}
db11e47d 45
e19c99e7
LP
46/* urb state*/
47#define DELETE_URB (0x0008)
48#define NO_TRANSFER_ACTIVE (0xffffffff)
49
50/* Philips Proprietary Transfer Descriptor (PTD) */
51typedef __u32 __bitwise __dw;
52struct ptd {
53 __dw dw0;
54 __dw dw1;
55 __dw dw2;
56 __dw dw3;
57 __dw dw4;
58 __dw dw5;
59 __dw dw6;
60 __dw dw7;
61};
62#define PTD_OFFSET 0x0400
63#define ISO_PTD_OFFSET 0x0400
64#define INT_PTD_OFFSET 0x0800
65#define ATL_PTD_OFFSET 0x0c00
66#define PAYLOAD_OFFSET 0x1000
67
68
69/* ATL */
70/* DW0 */
71#define DW0_VALID_BIT 1
72#define FROM_DW0_VALID(x) ((x) & 0x01)
73#define TO_DW0_LENGTH(x) (((u32) x) << 3)
74#define TO_DW0_MAXPACKET(x) (((u32) x) << 18)
75#define TO_DW0_MULTI(x) (((u32) x) << 29)
76#define TO_DW0_ENDPOINT(x) (((u32) x) << 31)
77/* DW1 */
78#define TO_DW1_DEVICE_ADDR(x) (((u32) x) << 3)
79#define TO_DW1_PID_TOKEN(x) (((u32) x) << 10)
80#define DW1_TRANS_BULK ((u32) 2 << 12)
81#define DW1_TRANS_INT ((u32) 3 << 12)
82#define DW1_TRANS_SPLIT ((u32) 1 << 14)
83#define DW1_SE_USB_LOSPEED ((u32) 2 << 16)
84#define TO_DW1_PORT_NUM(x) (((u32) x) << 18)
85#define TO_DW1_HUB_NUM(x) (((u32) x) << 25)
86/* DW2 */
87#define TO_DW2_DATA_START_ADDR(x) (((u32) x) << 8)
88#define TO_DW2_RL(x) ((x) << 25)
89#define FROM_DW2_RL(x) (((x) >> 25) & 0xf)
90/* DW3 */
91#define FROM_DW3_NRBYTESTRANSFERRED(x) ((x) & 0x7fff)
92#define FROM_DW3_SCS_NRBYTESTRANSFERRED(x) ((x) & 0x07ff)
93#define TO_DW3_NAKCOUNT(x) ((x) << 19)
94#define FROM_DW3_NAKCOUNT(x) (((x) >> 19) & 0xf)
95#define TO_DW3_CERR(x) ((x) << 23)
96#define FROM_DW3_CERR(x) (((x) >> 23) & 0x3)
97#define TO_DW3_DATA_TOGGLE(x) ((x) << 25)
98#define FROM_DW3_DATA_TOGGLE(x) (((x) >> 25) & 0x1)
99#define TO_DW3_PING(x) ((x) << 26)
100#define FROM_DW3_PING(x) (((x) >> 26) & 0x1)
101#define DW3_ERROR_BIT (1 << 28)
102#define DW3_BABBLE_BIT (1 << 29)
103#define DW3_HALT_BIT (1 << 30)
104#define DW3_ACTIVE_BIT (1 << 31)
105#define FROM_DW3_ACTIVE(x) (((x) >> 31) & 0x01)
106
107#define INT_UNDERRUN (1 << 2)
108#define INT_BABBLE (1 << 1)
109#define INT_EXACT (1 << 0)
110
111#define SETUP_PID (2)
112#define IN_PID (1)
113#define OUT_PID (0)
114
115/* Errata 1 */
116#define RL_COUNTER (0)
117#define NAK_COUNTER (0)
118#define ERR_COUNTER (2)
db11e47d
SS
119
120struct isp1760_qtd {
db11e47d 121 u8 packet_type;
db11e47d 122 void *data_buffer;
a041d8e4
AB
123 u32 payload_addr;
124
db11e47d
SS
125 /* the rest is HCD-private */
126 struct list_head qtd_list;
127 struct urb *urb;
128 size_t length;
71a9f9d2
AB
129 size_t actual_length;
130
131 /* QTD_ENQUEUED: waiting for transfer (inactive) */
132 /* QTD_PAYLOAD_ALLOC: chip mem has been allocated for payload */
133 /* QTD_XFER_STARTED: valid ptd has been written to isp176x - only
134 interrupt handler may touch this qtd! */
135 /* QTD_XFER_COMPLETE: payload has been transferred successfully */
136 /* QTD_RETIRE: transfer error/abort qtd */
137#define QTD_ENQUEUED 0
138#define QTD_PAYLOAD_ALLOC 1
139#define QTD_XFER_STARTED 2
140#define QTD_XFER_COMPLETE 3
141#define QTD_RETIRE 4
db11e47d 142 u32 status;
db11e47d
SS
143};
144
71a9f9d2 145/* Queue head, one for each active endpoint */
db11e47d 146struct isp1760_qh {
71a9f9d2 147 struct list_head qh_list;
db11e47d 148 struct list_head qtd_list;
db11e47d
SS
149 u32 toggle;
150 u32 ping;
71a9f9d2 151 int slot;
74ad6029 152 int tt_buffer_dirty; /* See USB2.0 spec section 11.17.5 */
71a9f9d2
AB
153};
154
155struct urb_listitem {
156 struct list_head urb_list;
157 struct urb *urb;
db11e47d
SS
158};
159
bedc0c31
AB
160/*
161 * Access functions for isp176x registers (addresses 0..0x03FF).
162 */
163static u32 reg_read32(void __iomem *base, u32 reg)
db11e47d 164{
5171446a 165 return isp1760_read32(base, reg);
db11e47d
SS
166}
167
bedc0c31 168static void reg_write32(void __iomem *base, u32 reg, u32 val)
db11e47d 169{
5171446a 170 isp1760_write32(base, reg, val);
db11e47d
SS
171}
172
173/*
bedc0c31
AB
174 * Access functions for isp176x memory (offset >= 0x0400).
175 *
176 * bank_reads8() reads memory locations prefetched by an earlier write to
177 * HC_MEMORY_REG (see isp176x datasheet). Unless you want to do fancy multi-
178 * bank optimizations, you should use the more generic mem_reads8() below.
179 *
180 * For access to ptd memory, use the specialized ptd_read() and ptd_write()
181 * below.
182 *
183 * These functions copy via MMIO data to/from the device. memcpy_{to|from}io()
db11e47d
SS
184 * doesn't quite work because some people have to enforce 32-bit access
185 */
bedc0c31
AB
186static void bank_reads8(void __iomem *src_base, u32 src_offset, u32 bank_addr,
187 __u32 *dst, u32 bytes)
db11e47d 188{
bedc0c31 189 __u32 __iomem *src;
db11e47d 190 u32 val;
bedc0c31
AB
191 __u8 *src_byteptr;
192 __u8 *dst_byteptr;
db11e47d 193
bedc0c31 194 src = src_base + (bank_addr | src_offset);
db11e47d 195
bedc0c31
AB
196 if (src_offset < PAYLOAD_OFFSET) {
197 while (bytes >= 4) {
198 *dst = le32_to_cpu(__raw_readl(src));
199 bytes -= 4;
200 src++;
201 dst++;
202 }
203 } else {
204 while (bytes >= 4) {
205 *dst = __raw_readl(src);
206 bytes -= 4;
207 src++;
208 dst++;
209 }
db11e47d
SS
210 }
211
bedc0c31 212 if (!bytes)
db11e47d
SS
213 return;
214
215 /* in case we have 3, 2 or 1 by left. The dst buffer may not be fully
216 * allocated.
217 */
bedc0c31
AB
218 if (src_offset < PAYLOAD_OFFSET)
219 val = le32_to_cpu(__raw_readl(src));
220 else
221 val = __raw_readl(src);
222
223 dst_byteptr = (void *) dst;
224 src_byteptr = (void *) &val;
225 while (bytes > 0) {
226 *dst_byteptr = *src_byteptr;
227 dst_byteptr++;
228 src_byteptr++;
229 bytes--;
db11e47d
SS
230 }
231}
232
bedc0c31
AB
233static void mem_reads8(void __iomem *src_base, u32 src_offset, void *dst,
234 u32 bytes)
db11e47d 235{
bedc0c31
AB
236 reg_write32(src_base, HC_MEMORY_REG, src_offset + ISP_BANK(0));
237 ndelay(90);
238 bank_reads8(src_base, src_offset, ISP_BANK(0), dst, bytes);
239}
240
241static void mem_writes8(void __iomem *dst_base, u32 dst_offset,
242 __u32 const *src, u32 bytes)
243{
244 __u32 __iomem *dst;
245
246 dst = dst_base + dst_offset;
247
248 if (dst_offset < PAYLOAD_OFFSET) {
249 while (bytes >= 4) {
250 __raw_writel(cpu_to_le32(*src), dst);
251 bytes -= 4;
252 src++;
253 dst++;
254 }
255 } else {
256 while (bytes >= 4) {
257 __raw_writel(*src, dst);
258 bytes -= 4;
259 src++;
260 dst++;
261 }
db11e47d
SS
262 }
263
bedc0c31 264 if (!bytes)
db11e47d 265 return;
bedc0c31
AB
266 /* in case we have 3, 2 or 1 bytes left. The buffer is allocated and the
267 * extra bytes should not be read by the HW.
db11e47d
SS
268 */
269
bedc0c31
AB
270 if (dst_offset < PAYLOAD_OFFSET)
271 __raw_writel(cpu_to_le32(*src), dst);
272 else
273 __raw_writel(*src, dst);
db11e47d
SS
274}
275
bedc0c31
AB
276/*
277 * Read and write ptds. 'ptd_offset' should be one of ISO_PTD_OFFSET,
278 * INT_PTD_OFFSET, and ATL_PTD_OFFSET. 'slot' should be less than 32.
279 */
280static void ptd_read(void __iomem *base, u32 ptd_offset, u32 slot,
281 struct ptd *ptd)
282{
283 reg_write32(base, HC_MEMORY_REG,
284 ISP_BANK(0) + ptd_offset + slot*sizeof(*ptd));
285 ndelay(90);
286 bank_reads8(base, ptd_offset + slot*sizeof(*ptd), ISP_BANK(0),
287 (void *) ptd, sizeof(*ptd));
288}
289
290static void ptd_write(void __iomem *base, u32 ptd_offset, u32 slot,
291 struct ptd *ptd)
292{
293 mem_writes8(base, ptd_offset + slot*sizeof(*ptd) + sizeof(ptd->dw0),
294 &ptd->dw1, 7*sizeof(ptd->dw1));
295 /* Make sure dw0 gets written last (after other dw's and after payload)
296 since it contains the enable bit */
297 wmb();
298 mem_writes8(base, ptd_offset + slot*sizeof(*ptd), &ptd->dw0,
299 sizeof(ptd->dw0));
300}
301
302
db11e47d
SS
303/* memory management of the 60kb on the chip from 0x1000 to 0xffff */
304static void init_memory(struct isp1760_hcd *priv)
305{
a041d8e4
AB
306 int i, curr;
307 u32 payload_addr;
db11e47d 308
a041d8e4 309 payload_addr = PAYLOAD_OFFSET;
db11e47d 310 for (i = 0; i < BLOCK_1_NUM; i++) {
a041d8e4 311 priv->memory_pool[i].start = payload_addr;
db11e47d
SS
312 priv->memory_pool[i].size = BLOCK_1_SIZE;
313 priv->memory_pool[i].free = 1;
a041d8e4 314 payload_addr += priv->memory_pool[i].size;
db11e47d
SS
315 }
316
a041d8e4
AB
317 curr = i;
318 for (i = 0; i < BLOCK_2_NUM; i++) {
319 priv->memory_pool[curr + i].start = payload_addr;
320 priv->memory_pool[curr + i].size = BLOCK_2_SIZE;
321 priv->memory_pool[curr + i].free = 1;
322 payload_addr += priv->memory_pool[curr + i].size;
db11e47d
SS
323 }
324
a041d8e4
AB
325 curr = i;
326 for (i = 0; i < BLOCK_3_NUM; i++) {
327 priv->memory_pool[curr + i].start = payload_addr;
328 priv->memory_pool[curr + i].size = BLOCK_3_SIZE;
329 priv->memory_pool[curr + i].free = 1;
330 payload_addr += priv->memory_pool[curr + i].size;
db11e47d
SS
331 }
332
34537731 333 WARN_ON(payload_addr - priv->memory_pool[0].start > PAYLOAD_AREA_SIZE);
db11e47d
SS
334}
335
6bda21bc 336static void alloc_mem(struct usb_hcd *hcd, struct isp1760_qtd *qtd)
db11e47d 337{
6bda21bc 338 struct isp1760_hcd *priv = hcd_to_priv(hcd);
db11e47d
SS
339 int i;
340
34537731 341 WARN_ON(qtd->payload_addr);
a041d8e4
AB
342
343 if (!qtd->length)
344 return;
db11e47d
SS
345
346 for (i = 0; i < BLOCKS; i++) {
a041d8e4 347 if (priv->memory_pool[i].size >= qtd->length &&
db11e47d 348 priv->memory_pool[i].free) {
db11e47d 349 priv->memory_pool[i].free = 0;
a041d8e4
AB
350 qtd->payload_addr = priv->memory_pool[i].start;
351 return;
db11e47d
SS
352 }
353 }
db11e47d
SS
354}
355
6bda21bc 356static void free_mem(struct usb_hcd *hcd, struct isp1760_qtd *qtd)
db11e47d 357{
6bda21bc 358 struct isp1760_hcd *priv = hcd_to_priv(hcd);
db11e47d
SS
359 int i;
360
a041d8e4 361 if (!qtd->payload_addr)
db11e47d
SS
362 return;
363
364 for (i = 0; i < BLOCKS; i++) {
a041d8e4 365 if (priv->memory_pool[i].start == qtd->payload_addr) {
34537731 366 WARN_ON(priv->memory_pool[i].free);
db11e47d 367 priv->memory_pool[i].free = 1;
a041d8e4
AB
368 qtd->payload_addr = 0;
369 return;
db11e47d
SS
370 }
371 }
372
6bda21bc
AB
373 dev_err(hcd->self.controller, "%s: Invalid pointer: %08x\n",
374 __func__, qtd->payload_addr);
71a9f9d2
AB
375 WARN_ON(1);
376 qtd->payload_addr = 0;
db11e47d
SS
377}
378
bedc0c31 379static int handshake(struct usb_hcd *hcd, u32 reg,
db11e47d
SS
380 u32 mask, u32 done, int usec)
381{
382 u32 result;
383
384 do {
bedc0c31 385 result = reg_read32(hcd->regs, reg);
db11e47d
SS
386 if (result == ~0)
387 return -ENODEV;
388 result &= mask;
389 if (result == done)
390 return 0;
391 udelay(1);
392 usec--;
393 } while (usec > 0);
394 return -ETIMEDOUT;
395}
396
397/* reset a non-running (STS_HALT == 1) controller */
6bda21bc 398static int ehci_reset(struct usb_hcd *hcd)
db11e47d 399{
6bda21bc
AB
400 struct isp1760_hcd *priv = hcd_to_priv(hcd);
401
bedc0c31 402 u32 command = reg_read32(hcd->regs, HC_USBCMD);
db11e47d
SS
403
404 command |= CMD_RESET;
bedc0c31 405 reg_write32(hcd->regs, HC_USBCMD, command);
db11e47d
SS
406 hcd->state = HC_STATE_HALT;
407 priv->next_statechange = jiffies;
992510f3
GS
408
409 return handshake(hcd, HC_USBCMD, CMD_RESET, 0, 250 * 1000);
db11e47d
SS
410}
411
71a9f9d2 412static struct isp1760_qh *qh_alloc(gfp_t flags)
db11e47d
SS
413{
414 struct isp1760_qh *qh;
415
416 qh = kmem_cache_zalloc(qh_cachep, flags);
417 if (!qh)
71a9f9d2 418 return NULL;
db11e47d 419
71a9f9d2 420 INIT_LIST_HEAD(&qh->qh_list);
db11e47d 421 INIT_LIST_HEAD(&qh->qtd_list);
71a9f9d2
AB
422 qh->slot = -1;
423
db11e47d
SS
424 return qh;
425}
426
71a9f9d2
AB
427static void qh_free(struct isp1760_qh *qh)
428{
429 WARN_ON(!list_empty(&qh->qtd_list));
430 WARN_ON(qh->slot > -1);
431 kmem_cache_free(qh_cachep, qh);
432}
db11e47d
SS
433
434/* one-time init, only for memory state */
435static int priv_init(struct usb_hcd *hcd)
436{
437 struct isp1760_hcd *priv = hcd_to_priv(hcd);
438 u32 hcc_params;
e08f6a27 439 int i;
db11e47d
SS
440
441 spin_lock_init(&priv->lock);
442
e08f6a27
AB
443 for (i = 0; i < QH_END; i++)
444 INIT_LIST_HEAD(&priv->qh_list[i]);
71a9f9d2 445
db11e47d
SS
446 /*
447 * hw default: 1K periodic list heads, one per frame.
448 * periodic_size can shrink by USBCMD update if hcc_params allows.
449 */
450 priv->periodic_size = DEFAULT_I_TDPS;
451
452 /* controllers may cache some of the periodic schedule ... */
bedc0c31 453 hcc_params = reg_read32(hcd->regs, HC_HCCPARAMS);
db11e47d
SS
454 /* full frame cache */
455 if (HCC_ISOC_CACHE(hcc_params))
456 priv->i_thresh = 8;
457 else /* N microframes cached */
458 priv->i_thresh = 2 + HCC_ISOC_THRES(hcc_params);
459
460 return 0;
461}
462
463static int isp1760_hc_setup(struct usb_hcd *hcd)
464{
465 struct isp1760_hcd *priv = hcd_to_priv(hcd);
466 int result;
3faefc88
NC
467 u32 scratch, hwmode;
468
bedc0c31 469 reg_write32(hcd->regs, HC_SCRATCH_REG, 0xdeadbabe);
3faefc88 470 /* Change bus pattern */
bedc0c31
AB
471 scratch = reg_read32(hcd->regs, HC_CHIP_ID_REG);
472 scratch = reg_read32(hcd->regs, HC_SCRATCH_REG);
db11e47d 473 if (scratch != 0xdeadbabe) {
6bda21bc 474 dev_err(hcd->self.controller, "Scratch test failed.\n");
db11e47d
SS
475 return -ENODEV;
476 }
477
5171446a
LP
478 /*
479 * The RESET_HC bit in the SW_RESET register is supposed to reset the
480 * host controller without touching the CPU interface registers, but at
481 * least on the ISP1761 it seems to behave as the RESET_ALL bit and
482 * reset the whole device. We thus can't use it here, so let's reset
483 * the host controller through the EHCI USB Command register. The device
484 * has been reset in core code anyway, so this shouldn't matter.
485 */
71a9f9d2
AB
486 reg_write32(hcd->regs, HC_BUFFER_STATUS_REG, 0);
487 reg_write32(hcd->regs, HC_ATL_PTD_SKIPMAP_REG, NO_TRANSFER_ACTIVE);
488 reg_write32(hcd->regs, HC_INT_PTD_SKIPMAP_REG, NO_TRANSFER_ACTIVE);
489 reg_write32(hcd->regs, HC_ISO_PTD_SKIPMAP_REG, NO_TRANSFER_ACTIVE);
db11e47d 490
6bda21bc 491 result = ehci_reset(hcd);
db11e47d
SS
492 if (result)
493 return result;
494
495 /* Step 11 passed */
496
db11e47d 497 /* ATL reset */
5171446a 498 hwmode = reg_read32(hcd->regs, HC_HW_MODE_CTRL) & ~ALL_ATX_RESET;
bedc0c31 499 reg_write32(hcd->regs, HC_HW_MODE_CTRL, hwmode | ALL_ATX_RESET);
db11e47d 500 mdelay(10);
bedc0c31 501 reg_write32(hcd->regs, HC_HW_MODE_CTRL, hwmode);
db11e47d 502
bedc0c31 503 reg_write32(hcd->regs, HC_INTERRUPT_ENABLE, INTERRUPT_ENABLE_MASK);
3faefc88 504
bedc0c31 505 priv->hcs_params = reg_read32(hcd->regs, HC_HCSPARAMS);
db11e47d
SS
506
507 return priv_init(hcd);
508}
509
db11e47d
SS
510static u32 base_to_chip(u32 base)
511{
512 return ((base - 0x400) >> 3);
513}
514
7adc14b1
AB
515static int last_qtd_of_urb(struct isp1760_qtd *qtd, struct isp1760_qh *qh)
516{
517 struct urb *urb;
518
519 if (list_is_last(&qtd->qtd_list, &qh->qtd_list))
520 return 1;
521
522 urb = qtd->urb;
523 qtd = list_entry(qtd->qtd_list.next, typeof(*qtd), qtd_list);
524 return (qtd->urb != urb);
525}
526
71a9f9d2
AB
527/* magic numbers that can affect system performance */
528#define EHCI_TUNE_CERR 3 /* 0-3 qtd retries; 0 == don't stop */
529#define EHCI_TUNE_RL_HS 4 /* nak throttle; see 4.9 */
530#define EHCI_TUNE_RL_TT 0
531#define EHCI_TUNE_MULT_HS 1 /* 1-3 transactions/uframe; 4.10.3 */
532#define EHCI_TUNE_MULT_TT 1
533#define EHCI_TUNE_FLS 2 /* (small) 256 frame schedule */
534
535static void create_ptd_atl(struct isp1760_qh *qh,
a041d8e4 536 struct isp1760_qtd *qtd, struct ptd *ptd)
db11e47d 537{
db11e47d
SS
538 u32 maxpacket;
539 u32 multi;
db11e47d
SS
540 u32 rl = RL_COUNTER;
541 u32 nak = NAK_COUNTER;
542
bedc0c31
AB
543 memset(ptd, 0, sizeof(*ptd));
544
db11e47d 545 /* according to 3.6.2, max packet len can not be > 0x400 */
a041d8e4
AB
546 maxpacket = usb_maxpacket(qtd->urb->dev, qtd->urb->pipe,
547 usb_pipeout(qtd->urb->pipe));
db11e47d
SS
548 multi = 1 + ((maxpacket >> 11) & 0x3);
549 maxpacket &= 0x7ff;
550
551 /* DW0 */
71a9f9d2
AB
552 ptd->dw0 = DW0_VALID_BIT;
553 ptd->dw0 |= TO_DW0_LENGTH(qtd->length);
554 ptd->dw0 |= TO_DW0_MAXPACKET(maxpacket);
555 ptd->dw0 |= TO_DW0_ENDPOINT(usb_pipeendpoint(qtd->urb->pipe));
db11e47d
SS
556
557 /* DW1 */
a041d8e4 558 ptd->dw1 = usb_pipeendpoint(qtd->urb->pipe) >> 1;
71a9f9d2
AB
559 ptd->dw1 |= TO_DW1_DEVICE_ADDR(usb_pipedevice(qtd->urb->pipe));
560 ptd->dw1 |= TO_DW1_PID_TOKEN(qtd->packet_type);
db11e47d 561
a041d8e4 562 if (usb_pipebulk(qtd->urb->pipe))
71a9f9d2 563 ptd->dw1 |= DW1_TRANS_BULK;
a041d8e4 564 else if (usb_pipeint(qtd->urb->pipe))
71a9f9d2 565 ptd->dw1 |= DW1_TRANS_INT;
db11e47d 566
a041d8e4 567 if (qtd->urb->dev->speed != USB_SPEED_HIGH) {
db11e47d
SS
568 /* split transaction */
569
71a9f9d2 570 ptd->dw1 |= DW1_TRANS_SPLIT;
a041d8e4 571 if (qtd->urb->dev->speed == USB_SPEED_LOW)
71a9f9d2 572 ptd->dw1 |= DW1_SE_USB_LOSPEED;
db11e47d 573
71a9f9d2
AB
574 ptd->dw1 |= TO_DW1_PORT_NUM(qtd->urb->dev->ttport);
575 ptd->dw1 |= TO_DW1_HUB_NUM(qtd->urb->dev->tt->hub->devnum);
db11e47d
SS
576
577 /* SE bit for Split INT transfers */
a041d8e4
AB
578 if (usb_pipeint(qtd->urb->pipe) &&
579 (qtd->urb->dev->speed == USB_SPEED_LOW))
bedc0c31 580 ptd->dw1 |= 2 << 16;
db11e47d 581
db11e47d
SS
582 rl = 0;
583 nak = 0;
584 } else {
71a9f9d2 585 ptd->dw0 |= TO_DW0_MULTI(multi);
a041d8e4
AB
586 if (usb_pipecontrol(qtd->urb->pipe) ||
587 usb_pipebulk(qtd->urb->pipe))
71a9f9d2 588 ptd->dw3 |= TO_DW3_PING(qh->ping);
db11e47d
SS
589 }
590 /* DW2 */
bedc0c31 591 ptd->dw2 = 0;
71a9f9d2
AB
592 ptd->dw2 |= TO_DW2_DATA_START_ADDR(base_to_chip(qtd->payload_addr));
593 ptd->dw2 |= TO_DW2_RL(rl);
db11e47d
SS
594
595 /* DW3 */
71a9f9d2
AB
596 ptd->dw3 |= TO_DW3_NAKCOUNT(nak);
597 ptd->dw3 |= TO_DW3_DATA_TOGGLE(qh->toggle);
7adc14b1
AB
598 if (usb_pipecontrol(qtd->urb->pipe)) {
599 if (qtd->data_buffer == qtd->urb->setup_packet)
71a9f9d2 600 ptd->dw3 &= ~TO_DW3_DATA_TOGGLE(1);
7adc14b1 601 else if (last_qtd_of_urb(qtd, qh))
71a9f9d2 602 ptd->dw3 |= TO_DW3_DATA_TOGGLE(1);
7adc14b1 603 }
db11e47d 604
71a9f9d2 605 ptd->dw3 |= DW3_ACTIVE_BIT;
db11e47d 606 /* Cerr */
71a9f9d2 607 ptd->dw3 |= TO_DW3_CERR(ERR_COUNTER);
db11e47d
SS
608}
609
6bda21bc 610static void transform_add_int(struct isp1760_qh *qh,
a041d8e4 611 struct isp1760_qtd *qtd, struct ptd *ptd)
db11e47d 612{
65f1b525 613 u32 usof;
db11e47d
SS
614 u32 period;
615
65f1b525
AB
616 /*
617 * Most of this is guessing. ISP1761 datasheet is quite unclear, and
618 * the algorithm from the original Philips driver code, which was
619 * pretty much used in this driver before as well, is quite horrendous
620 * and, i believe, incorrect. The code below follows the datasheet and
621 * USB2.0 spec as far as I can tell, and plug/unplug seems to be much
622 * more reliable this way (fingers crossed...).
623 */
db11e47d 624
65f1b525
AB
625 if (qtd->urb->dev->speed == USB_SPEED_HIGH) {
626 /* urb->interval is in units of microframes (1/8 ms) */
627 period = qtd->urb->interval >> 3;
628
629 if (qtd->urb->interval > 4)
630 usof = 0x01; /* One bit set =>
631 interval 1 ms * uFrame-match */
632 else if (qtd->urb->interval > 2)
633 usof = 0x22; /* Two bits set => interval 1/2 ms */
634 else if (qtd->urb->interval > 1)
635 usof = 0x55; /* Four bits set => interval 1/4 ms */
db11e47d 636 else
65f1b525 637 usof = 0xff; /* All bits set => interval 1/8 ms */
db11e47d 638 } else {
65f1b525
AB
639 /* urb->interval is in units of frames (1 ms) */
640 period = qtd->urb->interval;
641 usof = 0x0f; /* Execute Start Split on any of the
642 four first uFrames */
643
644 /*
645 * First 8 bits in dw5 is uSCS and "specifies which uSOF the
646 * complete split needs to be sent. Valid only for IN." Also,
647 * "All bits can be set to one for every transfer." (p 82,
648 * ISP1761 data sheet.) 0x1c is from Philips driver. Where did
649 * that number come from? 0xff seems to work fine...
650 */
651 /* ptd->dw5 = 0x1c; */
652 ptd->dw5 = 0xff; /* Execute Complete Split on any uFrame */
db11e47d
SS
653 }
654
65f1b525
AB
655 period = period >> 1;/* Ensure equal or shorter period than requested */
656 period &= 0xf8; /* Mask off too large values and lowest unused 3 bits */
657
bedc0c31
AB
658 ptd->dw2 |= period;
659 ptd->dw4 = usof;
db11e47d
SS
660}
661
71a9f9d2 662static void create_ptd_int(struct isp1760_qh *qh,
a041d8e4 663 struct isp1760_qtd *qtd, struct ptd *ptd)
db11e47d 664{
71a9f9d2 665 create_ptd_atl(qh, qtd, ptd);
6bda21bc 666 transform_add_int(qh, qtd, ptd);
db11e47d
SS
667}
668
6bda21bc 669static void isp1760_urb_done(struct usb_hcd *hcd, struct urb *urb)
db11e47d
SS
670__releases(priv->lock)
671__acquires(priv->lock)
672{
6bda21bc
AB
673 struct isp1760_hcd *priv = hcd_to_priv(hcd);
674
db11e47d 675 if (!urb->unlinked) {
6bda21bc
AB
676 if (urb->status == -EINPROGRESS)
677 urb->status = 0;
db11e47d
SS
678 }
679
db8516f6
CM
680 if (usb_pipein(urb->pipe) && usb_pipetype(urb->pipe) != PIPE_CONTROL) {
681 void *ptr;
682 for (ptr = urb->transfer_buffer;
683 ptr < urb->transfer_buffer + urb->transfer_buffer_length;
684 ptr += PAGE_SIZE)
685 flush_dcache_page(virt_to_page(ptr));
686 }
687
db11e47d 688 /* complete() can reenter this HCD */
6bda21bc 689 usb_hcd_unlink_urb_from_ep(hcd, urb);
db11e47d 690 spin_unlock(&priv->lock);
6bda21bc 691 usb_hcd_giveback_urb(hcd, urb, urb->status);
db11e47d
SS
692 spin_lock(&priv->lock);
693}
694
34537731
AB
695static struct isp1760_qtd *qtd_alloc(gfp_t flags, struct urb *urb,
696 u8 packet_type)
db11e47d 697{
34537731
AB
698 struct isp1760_qtd *qtd;
699
700 qtd = kmem_cache_zalloc(qtd_cachep, flags);
701 if (!qtd)
702 return NULL;
703
704 INIT_LIST_HEAD(&qtd->qtd_list);
705 qtd->urb = urb;
706 qtd->packet_type = packet_type;
71a9f9d2
AB
707 qtd->status = QTD_ENQUEUED;
708 qtd->actual_length = 0;
34537731
AB
709
710 return qtd;
711}
712
713static void qtd_free(struct isp1760_qtd *qtd)
714{
715 WARN_ON(qtd->payload_addr);
db11e47d
SS
716 kmem_cache_free(qtd_cachep, qtd);
717}
718
71a9f9d2 719static void start_bus_transfer(struct usb_hcd *hcd, u32 ptd_offset, int slot,
ea0b1fab
LP
720 struct isp1760_slotinfo *slots,
721 struct isp1760_qtd *qtd, struct isp1760_qh *qh,
722 struct ptd *ptd)
db11e47d 723{
71a9f9d2 724 struct isp1760_hcd *priv = hcd_to_priv(hcd);
d05b6ec0
AB
725 int skip_map;
726
71a9f9d2
AB
727 WARN_ON((slot < 0) || (slot > 31));
728 WARN_ON(qtd->length && !qtd->payload_addr);
729 WARN_ON(slots[slot].qtd);
730 WARN_ON(slots[slot].qh);
731 WARN_ON(qtd->status != QTD_PAYLOAD_ALLOC);
732
d05b6ec0
AB
733 /* Make sure done map has not triggered from some unlinked transfer */
734 if (ptd_offset == ATL_PTD_OFFSET) {
735 priv->atl_done_map |= reg_read32(hcd->regs,
736 HC_ATL_PTD_DONEMAP_REG);
6477acc0
AB
737 priv->atl_done_map &= ~(1 << slot);
738 } else {
739 priv->int_done_map |= reg_read32(hcd->regs,
740 HC_INT_PTD_DONEMAP_REG);
741 priv->int_done_map &= ~(1 << slot);
742 }
d05b6ec0 743
6477acc0
AB
744 qh->slot = slot;
745 qtd->status = QTD_XFER_STARTED;
746 slots[slot].timestamp = jiffies;
747 slots[slot].qtd = qtd;
748 slots[slot].qh = qh;
749 ptd_write(hcd->regs, ptd_offset, slot, ptd);
750
751 if (ptd_offset == ATL_PTD_OFFSET) {
d05b6ec0
AB
752 skip_map = reg_read32(hcd->regs, HC_ATL_PTD_SKIPMAP_REG);
753 skip_map &= ~(1 << qh->slot);
754 reg_write32(hcd->regs, HC_ATL_PTD_SKIPMAP_REG, skip_map);
755 } else {
d05b6ec0
AB
756 skip_map = reg_read32(hcd->regs, HC_INT_PTD_SKIPMAP_REG);
757 skip_map &= ~(1 << qh->slot);
758 reg_write32(hcd->regs, HC_INT_PTD_SKIPMAP_REG, skip_map);
759 }
db11e47d
SS
760}
761
71a9f9d2 762static int is_short_bulk(struct isp1760_qtd *qtd)
db11e47d 763{
71a9f9d2
AB
764 return (usb_pipebulk(qtd->urb->pipe) &&
765 (qtd->actual_length < qtd->length));
db11e47d
SS
766}
767
71a9f9d2
AB
768static void collect_qtds(struct usb_hcd *hcd, struct isp1760_qh *qh,
769 struct list_head *urb_list)
db11e47d 770{
71a9f9d2
AB
771 int last_qtd;
772 struct isp1760_qtd *qtd, *qtd_next;
773 struct urb_listitem *urb_listitem;
db11e47d 774
71a9f9d2
AB
775 list_for_each_entry_safe(qtd, qtd_next, &qh->qtd_list, qtd_list) {
776 if (qtd->status < QTD_XFER_COMPLETE)
777 break;
db11e47d 778
38679b72 779 last_qtd = last_qtd_of_urb(qtd, qh);
71a9f9d2
AB
780
781 if ((!last_qtd) && (qtd->status == QTD_RETIRE))
782 qtd_next->status = QTD_RETIRE;
783
784 if (qtd->status == QTD_XFER_COMPLETE) {
785 if (qtd->actual_length) {
786 switch (qtd->packet_type) {
787 case IN_PID:
788 mem_reads8(hcd->regs, qtd->payload_addr,
789 qtd->data_buffer,
790 qtd->actual_length);
791 /* Fall through (?) */
792 case OUT_PID:
793 qtd->urb->actual_length +=
794 qtd->actual_length;
795 /* Fall through ... */
796 case SETUP_PID:
797 break;
798 }
799 }
db11e47d 800
71a9f9d2
AB
801 if (is_short_bulk(qtd)) {
802 if (qtd->urb->transfer_flags & URB_SHORT_NOT_OK)
803 qtd->urb->status = -EREMOTEIO;
804 if (!last_qtd)
805 qtd_next->status = QTD_RETIRE;
806 }
807 }
db11e47d 808
71a9f9d2
AB
809 if (qtd->payload_addr)
810 free_mem(hcd, qtd);
db11e47d 811
71a9f9d2
AB
812 if (last_qtd) {
813 if ((qtd->status == QTD_RETIRE) &&
814 (qtd->urb->status == -EINPROGRESS))
815 qtd->urb->status = -EPIPE;
816 /* Defer calling of urb_done() since it releases lock */
817 urb_listitem = kmem_cache_zalloc(urb_listitem_cachep,
818 GFP_ATOMIC);
819 if (unlikely(!urb_listitem))
38679b72 820 break; /* Try again on next call */
71a9f9d2
AB
821 urb_listitem->urb = qtd->urb;
822 list_add_tail(&urb_listitem->urb_list, urb_list);
823 }
847ed3e8 824
71a9f9d2
AB
825 list_del(&qtd->qtd_list);
826 qtd_free(qtd);
827 }
828}
3f02a957 829
71a9f9d2
AB
830#define ENQUEUE_DEPTH 2
831static void enqueue_qtds(struct usb_hcd *hcd, struct isp1760_qh *qh)
832{
833 struct isp1760_hcd *priv = hcd_to_priv(hcd);
834 int ptd_offset;
ea0b1fab 835 struct isp1760_slotinfo *slots;
71a9f9d2
AB
836 int curr_slot, free_slot;
837 int n;
838 struct ptd ptd;
839 struct isp1760_qtd *qtd;
db11e47d 840
71a9f9d2
AB
841 if (unlikely(list_empty(&qh->qtd_list))) {
842 WARN_ON(1);
843 return;
844 }
db11e47d 845
74ad6029
AB
846 /* Make sure this endpoint's TT buffer is clean before queueing ptds */
847 if (qh->tt_buffer_dirty)
848 return;
849
71a9f9d2
AB
850 if (usb_pipeint(list_entry(qh->qtd_list.next, struct isp1760_qtd,
851 qtd_list)->urb->pipe)) {
852 ptd_offset = INT_PTD_OFFSET;
853 slots = priv->int_slots;
854 } else {
855 ptd_offset = ATL_PTD_OFFSET;
856 slots = priv->atl_slots;
857 }
db11e47d 858
71a9f9d2
AB
859 free_slot = -1;
860 for (curr_slot = 0; curr_slot < 32; curr_slot++) {
861 if ((free_slot == -1) && (slots[curr_slot].qtd == NULL))
862 free_slot = curr_slot;
863 if (slots[curr_slot].qh == qh)
864 break;
865 }
db11e47d 866
71a9f9d2
AB
867 n = 0;
868 list_for_each_entry(qtd, &qh->qtd_list, qtd_list) {
869 if (qtd->status == QTD_ENQUEUED) {
870 WARN_ON(qtd->payload_addr);
871 alloc_mem(hcd, qtd);
872 if ((qtd->length) && (!qtd->payload_addr))
873 break;
db11e47d 874
71a9f9d2
AB
875 if ((qtd->length) &&
876 ((qtd->packet_type == SETUP_PID) ||
877 (qtd->packet_type == OUT_PID))) {
878 mem_writes8(hcd->regs, qtd->payload_addr,
879 qtd->data_buffer, qtd->length);
880 }
db11e47d 881
71a9f9d2 882 qtd->status = QTD_PAYLOAD_ALLOC;
db11e47d
SS
883 }
884
71a9f9d2
AB
885 if (qtd->status == QTD_PAYLOAD_ALLOC) {
886/*
887 if ((curr_slot > 31) && (free_slot == -1))
888 dev_dbg(hcd->self.controller, "%s: No slot "
889 "available for transfer\n", __func__);
890*/
891 /* Start xfer for this endpoint if not already done */
892 if ((curr_slot > 31) && (free_slot > -1)) {
893 if (usb_pipeint(qtd->urb->pipe))
894 create_ptd_int(qh, qtd, &ptd);
895 else
896 create_ptd_atl(qh, qtd, &ptd);
897
898 start_bus_transfer(hcd, ptd_offset, free_slot,
899 slots, qtd, qh, &ptd);
900 curr_slot = free_slot;
901 }
db11e47d 902
71a9f9d2
AB
903 n++;
904 if (n >= ENQUEUE_DEPTH)
905 break;
906 }
907 }
908}
db11e47d 909
de9c6307 910static void schedule_ptds(struct usb_hcd *hcd)
71a9f9d2
AB
911{
912 struct isp1760_hcd *priv;
913 struct isp1760_qh *qh, *qh_next;
914 struct list_head *ep_queue;
71a9f9d2
AB
915 LIST_HEAD(urb_list);
916 struct urb_listitem *urb_listitem, *urb_listitem_next;
e08f6a27 917 int i;
71a9f9d2
AB
918
919 if (!hcd) {
920 WARN_ON(1);
921 return;
922 }
db11e47d 923
71a9f9d2 924 priv = hcd_to_priv(hcd);
db11e47d 925
71a9f9d2
AB
926 /*
927 * check finished/retired xfers, transfer payloads, call urb_done()
928 */
e08f6a27
AB
929 for (i = 0; i < QH_END; i++) {
930 ep_queue = &priv->qh_list[i];
71a9f9d2 931 list_for_each_entry_safe(qh, qh_next, ep_queue, qh_list) {
71a9f9d2 932 collect_qtds(hcd, qh, &urb_list);
c64391f2 933 if (list_empty(&qh->qtd_list))
71a9f9d2 934 list_del(&qh->qh_list);
db11e47d 935 }
71a9f9d2 936 }
db11e47d 937
71a9f9d2
AB
938 list_for_each_entry_safe(urb_listitem, urb_listitem_next, &urb_list,
939 urb_list) {
940 isp1760_urb_done(hcd, urb_listitem->urb);
941 kmem_cache_free(urb_listitem_cachep, urb_listitem);
942 }
db11e47d 943
71a9f9d2
AB
944 /*
945 * Schedule packets for transfer.
946 *
947 * According to USB2.0 specification:
948 *
949 * 1st prio: interrupt xfers, up to 80 % of bandwidth
950 * 2nd prio: control xfers
951 * 3rd prio: bulk xfers
952 *
953 * ... but let's use a simpler scheme here (mostly because ISP1761 doc
954 * is very unclear on how to prioritize traffic):
955 *
956 * 1) Enqueue any queued control transfers, as long as payload chip mem
957 * and PTD ATL slots are available.
958 * 2) Enqueue any queued INT transfers, as long as payload chip mem
959 * and PTD INT slots are available.
960 * 3) Enqueue any queued bulk transfers, as long as payload chip mem
961 * and PTD ATL slots are available.
962 *
963 * Use double buffering (ENQUEUE_DEPTH==2) as a compromise between
964 * conservation of chip mem and performance.
965 *
966 * I'm sure this scheme could be improved upon!
967 */
e08f6a27
AB
968 for (i = 0; i < QH_END; i++) {
969 ep_queue = &priv->qh_list[i];
71a9f9d2
AB
970 list_for_each_entry_safe(qh, qh_next, ep_queue, qh_list)
971 enqueue_qtds(hcd, qh);
71a9f9d2
AB
972 }
973}
db11e47d 974
71a9f9d2
AB
975#define PTD_STATE_QTD_DONE 1
976#define PTD_STATE_QTD_RELOAD 2
977#define PTD_STATE_URB_RETIRE 3
db11e47d 978
71a9f9d2
AB
979static int check_int_transfer(struct usb_hcd *hcd, struct ptd *ptd,
980 struct urb *urb)
981{
982 __dw dw4;
983 int i;
db11e47d 984
71a9f9d2
AB
985 dw4 = ptd->dw4;
986 dw4 >>= 8;
db11e47d 987
71a9f9d2
AB
988 /* FIXME: ISP1761 datasheet does not say what to do with these. Do we
989 need to handle these errors? Is it done in hardware? */
db11e47d 990
71a9f9d2 991 if (ptd->dw3 & DW3_HALT_BIT) {
db11e47d 992
71a9f9d2 993 urb->status = -EPROTO; /* Default unknown error */
db11e47d 994
71a9f9d2
AB
995 for (i = 0; i < 8; i++) {
996 switch (dw4 & 0x7) {
997 case INT_UNDERRUN:
998 dev_dbg(hcd->self.controller, "%s: underrun "
999 "during uFrame %d\n",
1000 __func__, i);
1001 urb->status = -ECOMM; /* Could not write data */
1002 break;
1003 case INT_EXACT:
1004 dev_dbg(hcd->self.controller, "%s: transaction "
1005 "error during uFrame %d\n",
1006 __func__, i);
1007 urb->status = -EPROTO; /* timeout, bad CRC, PID
1008 error etc. */
1009 break;
1010 case INT_BABBLE:
1011 dev_dbg(hcd->self.controller, "%s: babble "
1012 "error during uFrame %d\n",
1013 __func__, i);
1014 urb->status = -EOVERFLOW;
1015 break;
1016 }
1017 dw4 >>= 3;
1018 }
db11e47d 1019
71a9f9d2
AB
1020 return PTD_STATE_URB_RETIRE;
1021 }
db11e47d 1022
71a9f9d2
AB
1023 return PTD_STATE_QTD_DONE;
1024}
db11e47d 1025
71a9f9d2
AB
1026static int check_atl_transfer(struct usb_hcd *hcd, struct ptd *ptd,
1027 struct urb *urb)
1028{
1029 WARN_ON(!ptd);
1030 if (ptd->dw3 & DW3_HALT_BIT) {
1031 if (ptd->dw3 & DW3_BABBLE_BIT)
1032 urb->status = -EOVERFLOW;
1033 else if (FROM_DW3_CERR(ptd->dw3))
1034 urb->status = -EPIPE; /* Stall */
1035 else if (ptd->dw3 & DW3_ERROR_BIT)
1036 urb->status = -EPROTO; /* XactErr */
1037 else
1038 urb->status = -EPROTO; /* Unknown */
1039/*
1040 dev_dbg(hcd->self.controller, "%s: ptd error:\n"
1041 " dw0: %08x dw1: %08x dw2: %08x dw3: %08x\n"
1042 " dw4: %08x dw5: %08x dw6: %08x dw7: %08x\n",
1043 __func__,
1044 ptd->dw0, ptd->dw1, ptd->dw2, ptd->dw3,
1045 ptd->dw4, ptd->dw5, ptd->dw6, ptd->dw7);
1046*/
1047 return PTD_STATE_URB_RETIRE;
1048 }
db11e47d 1049
71a9f9d2
AB
1050 if ((ptd->dw3 & DW3_ERROR_BIT) && (ptd->dw3 & DW3_ACTIVE_BIT)) {
1051 /* Transfer Error, *but* active and no HALT -> reload */
1052 dev_dbg(hcd->self.controller, "PID error; reloading ptd\n");
1053 return PTD_STATE_QTD_RELOAD;
1054 }
db11e47d 1055
71a9f9d2
AB
1056 if (!FROM_DW3_NAKCOUNT(ptd->dw3) && (ptd->dw3 & DW3_ACTIVE_BIT)) {
1057 /*
1058 * NAKs are handled in HW by the chip. Usually if the
1059 * device is not able to send data fast enough.
1060 * This happens mostly on slower hardware.
1061 */
1062 return PTD_STATE_QTD_RELOAD;
db11e47d 1063 }
71a9f9d2
AB
1064
1065 return PTD_STATE_QTD_DONE;
db11e47d
SS
1066}
1067
6d50c60e 1068static void handle_done_ptds(struct usb_hcd *hcd)
db11e47d 1069{
bedc0c31 1070 struct isp1760_hcd *priv = hcd_to_priv(hcd);
db11e47d 1071 struct ptd ptd;
db11e47d 1072 struct isp1760_qh *qh;
71a9f9d2
AB
1073 int slot;
1074 int state;
ea0b1fab 1075 struct isp1760_slotinfo *slots;
71a9f9d2
AB
1076 u32 ptd_offset;
1077 struct isp1760_qtd *qtd;
1078 int modified;
6d50c60e 1079 int skip_map;
71a9f9d2 1080
6d50c60e
AB
1081 skip_map = reg_read32(hcd->regs, HC_INT_PTD_SKIPMAP_REG);
1082 priv->int_done_map &= ~skip_map;
1083 skip_map = reg_read32(hcd->regs, HC_ATL_PTD_SKIPMAP_REG);
1084 priv->atl_done_map &= ~skip_map;
71a9f9d2 1085
6d50c60e 1086 modified = priv->int_done_map || priv->atl_done_map;
d05b6ec0
AB
1087
1088 while (priv->int_done_map || priv->atl_done_map) {
1089 if (priv->int_done_map) {
71a9f9d2 1090 /* INT ptd */
d05b6ec0
AB
1091 slot = __ffs(priv->int_done_map);
1092 priv->int_done_map &= ~(1 << slot);
71a9f9d2 1093 slots = priv->int_slots;
d05b6ec0
AB
1094 /* This should not trigger, and could be removed if
1095 noone have any problems with it triggering: */
1096 if (!slots[slot].qh) {
1097 WARN_ON(1);
71a9f9d2 1098 continue;
d05b6ec0 1099 }
71a9f9d2
AB
1100 ptd_offset = INT_PTD_OFFSET;
1101 ptd_read(hcd->regs, INT_PTD_OFFSET, slot, &ptd);
1102 state = check_int_transfer(hcd, &ptd,
1103 slots[slot].qtd->urb);
db11e47d 1104 } else {
71a9f9d2 1105 /* ATL ptd */
d05b6ec0
AB
1106 slot = __ffs(priv->atl_done_map);
1107 priv->atl_done_map &= ~(1 << slot);
71a9f9d2 1108 slots = priv->atl_slots;
d05b6ec0
AB
1109 /* This should not trigger, and could be removed if
1110 noone have any problems with it triggering: */
1111 if (!slots[slot].qh) {
1112 WARN_ON(1);
71a9f9d2 1113 continue;
d05b6ec0 1114 }
71a9f9d2
AB
1115 ptd_offset = ATL_PTD_OFFSET;
1116 ptd_read(hcd->regs, ATL_PTD_OFFSET, slot, &ptd);
1117 state = check_atl_transfer(hcd, &ptd,
1118 slots[slot].qtd->urb);
db11e47d
SS
1119 }
1120
71a9f9d2
AB
1121 qtd = slots[slot].qtd;
1122 slots[slot].qtd = NULL;
1123 qh = slots[slot].qh;
1124 slots[slot].qh = NULL;
71a9f9d2
AB
1125 qh->slot = -1;
1126
1127 WARN_ON(qtd->status != QTD_XFER_STARTED);
1128
1129 switch (state) {
1130 case PTD_STATE_QTD_DONE:
1131 if ((usb_pipeint(qtd->urb->pipe)) &&
1132 (qtd->urb->dev->speed != USB_SPEED_HIGH))
1133 qtd->actual_length =
1134 FROM_DW3_SCS_NRBYTESTRANSFERRED(ptd.dw3);
1135 else
1136 qtd->actual_length =
1137 FROM_DW3_NRBYTESTRANSFERRED(ptd.dw3);
db11e47d 1138
71a9f9d2
AB
1139 qtd->status = QTD_XFER_COMPLETE;
1140 if (list_is_last(&qtd->qtd_list, &qh->qtd_list) ||
1141 is_short_bulk(qtd))
1142 qtd = NULL;
1143 else
1144 qtd = list_entry(qtd->qtd_list.next,
1145 typeof(*qtd), qtd_list);
db11e47d 1146
71a9f9d2
AB
1147 qh->toggle = FROM_DW3_DATA_TOGGLE(ptd.dw3);
1148 qh->ping = FROM_DW3_PING(ptd.dw3);
1149 break;
db11e47d 1150
71a9f9d2
AB
1151 case PTD_STATE_QTD_RELOAD: /* QTD_RETRY, for atls only */
1152 qtd->status = QTD_PAYLOAD_ALLOC;
1153 ptd.dw0 |= DW0_VALID_BIT;
1154 /* RL counter = ERR counter */
1155 ptd.dw3 &= ~TO_DW3_NAKCOUNT(0xf);
1156 ptd.dw3 |= TO_DW3_NAKCOUNT(FROM_DW2_RL(ptd.dw2));
1157 ptd.dw3 &= ~TO_DW3_CERR(3);
1158 ptd.dw3 |= TO_DW3_CERR(ERR_COUNTER);
1159 qh->toggle = FROM_DW3_DATA_TOGGLE(ptd.dw3);
1160 qh->ping = FROM_DW3_PING(ptd.dw3);
1161 break;
db11e47d 1162
71a9f9d2
AB
1163 case PTD_STATE_URB_RETIRE:
1164 qtd->status = QTD_RETIRE;
74ad6029
AB
1165 if ((qtd->urb->dev->speed != USB_SPEED_HIGH) &&
1166 (qtd->urb->status != -EPIPE) &&
1167 (qtd->urb->status != -EREMOTEIO)) {
1168 qh->tt_buffer_dirty = 1;
1169 if (usb_hub_clear_tt_buffer(qtd->urb))
1170 /* Clear failed; let's hope things work
1171 anyway */
1172 qh->tt_buffer_dirty = 0;
1173 }
71a9f9d2
AB
1174 qtd = NULL;
1175 qh->toggle = 0;
1176 qh->ping = 0;
1177 break;
db11e47d 1178
71a9f9d2
AB
1179 default:
1180 WARN_ON(1);
1181 continue;
1182 }
db11e47d 1183
71a9f9d2
AB
1184 if (qtd && (qtd->status == QTD_PAYLOAD_ALLOC)) {
1185 if (slots == priv->int_slots) {
1186 if (state == PTD_STATE_QTD_RELOAD)
1187 dev_err(hcd->self.controller,
1188 "%s: PTD_STATE_QTD_RELOAD on "
1189 "interrupt packet\n", __func__);
1190 if (state != PTD_STATE_QTD_RELOAD)
1191 create_ptd_int(qh, qtd, &ptd);
1192 } else {
1193 if (state != PTD_STATE_QTD_RELOAD)
1194 create_ptd_atl(qh, qtd, &ptd);
1195 }
db11e47d 1196
71a9f9d2
AB
1197 start_bus_transfer(hcd, ptd_offset, slot, slots, qtd,
1198 qh, &ptd);
1199 }
1200 }
db11e47d 1201
71a9f9d2
AB
1202 if (modified)
1203 schedule_ptds(hcd);
6d50c60e 1204}
db11e47d 1205
6d50c60e
AB
1206static irqreturn_t isp1760_irq(struct usb_hcd *hcd)
1207{
1208 struct isp1760_hcd *priv = hcd_to_priv(hcd);
1209 u32 imask;
1210 irqreturn_t irqret = IRQ_NONE;
db11e47d 1211
6d50c60e
AB
1212 spin_lock(&priv->lock);
1213
1214 if (!(hcd->state & HC_STATE_RUNNING))
1215 goto leave;
1216
1217 imask = reg_read32(hcd->regs, HC_INTERRUPT_REG);
1218 if (unlikely(!imask))
1219 goto leave;
1220 reg_write32(hcd->regs, HC_INTERRUPT_REG, imask); /* Clear */
1221
1222 priv->int_done_map |= reg_read32(hcd->regs, HC_INT_PTD_DONEMAP_REG);
1223 priv->atl_done_map |= reg_read32(hcd->regs, HC_ATL_PTD_DONEMAP_REG);
1224
1225 handle_done_ptds(hcd);
db11e47d 1226
71a9f9d2
AB
1227 irqret = IRQ_HANDLED;
1228leave:
1229 spin_unlock(&priv->lock);
db11e47d 1230
71a9f9d2 1231 return irqret;
db11e47d
SS
1232}
1233
6d50c60e
AB
1234/*
1235 * Workaround for problem described in chip errata 2:
1236 *
1237 * Sometimes interrupts are not generated when ATL (not INT?) completion occurs.
1238 * One solution suggested in the errata is to use SOF interrupts _instead_of_
1239 * ATL done interrupts (the "instead of" might be important since it seems
1240 * enabling ATL interrupts also causes the chip to sometimes - rarely - "forget"
1241 * to set the PTD's done bit in addition to not generating an interrupt!).
1242 *
1243 * So if we use SOF + ATL interrupts, we sometimes get stale PTDs since their
1244 * done bit is not being set. This is bad - it blocks the endpoint until reboot.
1245 *
1246 * If we use SOF interrupts only, we get latency between ptd completion and the
1247 * actual handling. This is very noticeable in testusb runs which takes several
1248 * minutes longer without ATL interrupts.
1249 *
1250 * A better solution is to run the code below every SLOT_CHECK_PERIOD ms. If it
1251 * finds active ATL slots which are older than SLOT_TIMEOUT ms, it checks the
1252 * slot's ACTIVE and VALID bits. If these are not set, the ptd is considered
1253 * completed and its done map bit is set.
1254 *
1255 * The values of SLOT_TIMEOUT and SLOT_CHECK_PERIOD have been arbitrarily chosen
1256 * not to cause too much lag when this HW bug occurs, while still hopefully
1257 * ensuring that the check does not falsely trigger.
1258 */
6477acc0 1259#define SLOT_TIMEOUT 300
6d50c60e
AB
1260#define SLOT_CHECK_PERIOD 200
1261static struct timer_list errata2_timer;
1262
de9c6307 1263static void errata2_function(unsigned long data)
6d50c60e
AB
1264{
1265 struct usb_hcd *hcd = (struct usb_hcd *) data;
1266 struct isp1760_hcd *priv = hcd_to_priv(hcd);
1267 int slot;
1268 struct ptd ptd;
1269 unsigned long spinflags;
1270
1271 spin_lock_irqsave(&priv->lock, spinflags);
1272
1273 for (slot = 0; slot < 32; slot++)
6477acc0
AB
1274 if (priv->atl_slots[slot].qh && time_after(jiffies,
1275 priv->atl_slots[slot].timestamp +
4d3db7d7 1276 msecs_to_jiffies(SLOT_TIMEOUT))) {
6d50c60e
AB
1277 ptd_read(hcd->regs, ATL_PTD_OFFSET, slot, &ptd);
1278 if (!FROM_DW0_VALID(ptd.dw0) &&
1279 !FROM_DW3_ACTIVE(ptd.dw3))
1280 priv->atl_done_map |= 1 << slot;
1281 }
1282
6477acc0
AB
1283 if (priv->atl_done_map)
1284 handle_done_ptds(hcd);
6d50c60e
AB
1285
1286 spin_unlock_irqrestore(&priv->lock, spinflags);
1287
4d3db7d7 1288 errata2_timer.expires = jiffies + msecs_to_jiffies(SLOT_CHECK_PERIOD);
6d50c60e
AB
1289 add_timer(&errata2_timer);
1290}
1291
0ba7905e
AB
1292static int isp1760_run(struct usb_hcd *hcd)
1293{
1294 int retval;
1295 u32 temp;
1296 u32 command;
1297 u32 chipid;
1298
1299 hcd->uses_new_polling = 1;
1300
1301 hcd->state = HC_STATE_RUNNING;
1302
1303 /* Set PTD interrupt AND & OR maps */
1304 reg_write32(hcd->regs, HC_ATL_IRQ_MASK_AND_REG, 0);
1305 reg_write32(hcd->regs, HC_ATL_IRQ_MASK_OR_REG, 0xffffffff);
1306 reg_write32(hcd->regs, HC_INT_IRQ_MASK_AND_REG, 0);
1307 reg_write32(hcd->regs, HC_INT_IRQ_MASK_OR_REG, 0xffffffff);
1308 reg_write32(hcd->regs, HC_ISO_IRQ_MASK_AND_REG, 0);
1309 reg_write32(hcd->regs, HC_ISO_IRQ_MASK_OR_REG, 0xffffffff);
1310 /* step 23 passed */
1311
1312 temp = reg_read32(hcd->regs, HC_HW_MODE_CTRL);
1313 reg_write32(hcd->regs, HC_HW_MODE_CTRL, temp | HW_GLOBAL_INTR_EN);
1314
1315 command = reg_read32(hcd->regs, HC_USBCMD);
1316 command &= ~(CMD_LRESET|CMD_RESET);
1317 command |= CMD_RUN;
1318 reg_write32(hcd->regs, HC_USBCMD, command);
1319
1320 retval = handshake(hcd, HC_USBCMD, CMD_RUN, CMD_RUN, 250 * 1000);
1321 if (retval)
1322 return retval;
1323
1324 /*
1325 * XXX
1326 * Spec says to write FLAG_CF as last config action, priv code grabs
1327 * the semaphore while doing so.
1328 */
1329 down_write(&ehci_cf_port_reset_rwsem);
1330 reg_write32(hcd->regs, HC_CONFIGFLAG, FLAG_CF);
1331
1332 retval = handshake(hcd, HC_CONFIGFLAG, FLAG_CF, FLAG_CF, 250 * 1000);
1333 up_write(&ehci_cf_port_reset_rwsem);
1334 if (retval)
1335 return retval;
1336
b7aa4cc3 1337 setup_timer(&errata2_timer, errata2_function, (unsigned long)hcd);
4d3db7d7 1338 errata2_timer.expires = jiffies + msecs_to_jiffies(SLOT_CHECK_PERIOD);
6d50c60e
AB
1339 add_timer(&errata2_timer);
1340
0ba7905e
AB
1341 chipid = reg_read32(hcd->regs, HC_CHIP_ID_REG);
1342 dev_info(hcd->self.controller, "USB ISP %04x HW rev. %d started\n",
1343 chipid & 0xffff, chipid >> 16);
1344
1345 /* PTD Register Init Part 2, Step 28 */
1346
1347 /* Setup registers controlling PTD checking */
1348 reg_write32(hcd->regs, HC_ATL_PTD_LASTPTD_REG, 0x80000000);
1349 reg_write32(hcd->regs, HC_INT_PTD_LASTPTD_REG, 0x80000000);
1350 reg_write32(hcd->regs, HC_ISO_PTD_LASTPTD_REG, 0x00000001);
1351 reg_write32(hcd->regs, HC_ATL_PTD_SKIPMAP_REG, 0xffffffff);
1352 reg_write32(hcd->regs, HC_INT_PTD_SKIPMAP_REG, 0xffffffff);
1353 reg_write32(hcd->regs, HC_ISO_PTD_SKIPMAP_REG, 0xffffffff);
1354 reg_write32(hcd->regs, HC_BUFFER_STATUS_REG,
1355 ATL_BUF_FILL | INT_BUF_FILL);
1356
1357 /* GRR this is run-once init(), being done every time the HC starts.
1358 * So long as they're part of class devices, we can't do it init()
1359 * since the class device isn't created that early.
1360 */
1361 return 0;
1362}
1363
34537731 1364static int qtd_fill(struct isp1760_qtd *qtd, void *databuffer, size_t len)
db11e47d 1365{
34537731 1366 qtd->data_buffer = databuffer;
db11e47d 1367
34537731
AB
1368 if (len > MAX_PAYLOAD_SIZE)
1369 len = MAX_PAYLOAD_SIZE;
1370 qtd->length = len;
db11e47d 1371
34537731 1372 return qtd->length;
db11e47d
SS
1373}
1374
34537731 1375static void qtd_list_free(struct list_head *qtd_list)
db11e47d 1376{
34537731 1377 struct isp1760_qtd *qtd, *qtd_next;
db11e47d 1378
34537731 1379 list_for_each_entry_safe(qtd, qtd_next, qtd_list, qtd_list) {
db11e47d 1380 list_del(&qtd->qtd_list);
34537731 1381 qtd_free(qtd);
db11e47d
SS
1382 }
1383}
1384
db11e47d 1385/*
34537731
AB
1386 * Packetize urb->transfer_buffer into list of packets of size wMaxPacketSize.
1387 * Also calculate the PID type (SETUP/IN/OUT) for each packet.
db11e47d 1388 */
6bda21bc 1389#define max_packet(wMaxPacketSize) ((wMaxPacketSize) & 0x07ff)
34537731 1390static void packetize_urb(struct usb_hcd *hcd,
db11e47d
SS
1391 struct urb *urb, struct list_head *head, gfp_t flags)
1392{
fd436aee 1393 struct isp1760_qtd *qtd;
db11e47d 1394 void *buf;
34537731
AB
1395 int len, maxpacketsize;
1396 u8 packet_type;
db11e47d
SS
1397
1398 /*
1399 * URBs map to sequences of QTDs: one logical transaction
1400 */
db11e47d 1401
34537731
AB
1402 if (!urb->transfer_buffer && urb->transfer_buffer_length) {
1403 /* XXX This looks like usb storage / SCSI bug */
1404 dev_err(hcd->self.controller,
1405 "buf is null, dma is %08lx len is %d\n",
1406 (long unsigned)urb->transfer_dma,
1407 urb->transfer_buffer_length);
1408 WARN_ON(1);
1409 }
db11e47d 1410
34537731
AB
1411 if (usb_pipein(urb->pipe))
1412 packet_type = IN_PID;
1413 else
1414 packet_type = OUT_PID;
db11e47d 1415
db11e47d 1416 if (usb_pipecontrol(urb->pipe)) {
34537731 1417 qtd = qtd_alloc(flags, urb, SETUP_PID);
db11e47d
SS
1418 if (!qtd)
1419 goto cleanup;
34537731 1420 qtd_fill(qtd, urb->setup_packet, sizeof(struct usb_ctrlrequest));
db11e47d
SS
1421 list_add_tail(&qtd->qtd_list, head);
1422
1423 /* for zero length DATA stages, STATUS is always IN */
34537731
AB
1424 if (urb->transfer_buffer_length == 0)
1425 packet_type = IN_PID;
db11e47d
SS
1426 }
1427
34537731
AB
1428 maxpacketsize = max_packet(usb_maxpacket(urb->dev, urb->pipe,
1429 usb_pipeout(urb->pipe)));
db11e47d
SS
1430
1431 /*
1432 * buffer gets wrapped in one or more qtds;
1433 * last one may be "short" (including zero len)
1434 * and may serve as a control status ack
1435 */
34537731
AB
1436 buf = urb->transfer_buffer;
1437 len = urb->transfer_buffer_length;
1438
db11e47d
SS
1439 for (;;) {
1440 int this_qtd_len;
1441
34537731
AB
1442 qtd = qtd_alloc(flags, urb, packet_type);
1443 if (!qtd)
1444 goto cleanup;
1445 this_qtd_len = qtd_fill(qtd, buf, len);
1446 list_add_tail(&qtd->qtd_list, head);
db11e47d 1447
db11e47d
SS
1448 len -= this_qtd_len;
1449 buf += this_qtd_len;
1450
db11e47d
SS
1451 if (len <= 0)
1452 break;
db11e47d
SS
1453 }
1454
1455 /*
1456 * control requests may need a terminating data "status" ack;
1457 * bulk ones may need a terminating short packet (zero length).
1458 */
1459 if (urb->transfer_buffer_length != 0) {
1460 int one_more = 0;
1461
1462 if (usb_pipecontrol(urb->pipe)) {
1463 one_more = 1;
34537731
AB
1464 if (packet_type == IN_PID)
1465 packet_type = OUT_PID;
1466 else
1467 packet_type = IN_PID;
db11e47d
SS
1468 } else if (usb_pipebulk(urb->pipe)
1469 && (urb->transfer_flags & URB_ZERO_PACKET)
34537731
AB
1470 && !(urb->transfer_buffer_length %
1471 maxpacketsize)) {
db11e47d
SS
1472 one_more = 1;
1473 }
1474 if (one_more) {
34537731 1475 qtd = qtd_alloc(flags, urb, packet_type);
db11e47d
SS
1476 if (!qtd)
1477 goto cleanup;
db11e47d
SS
1478
1479 /* never any data in such packets */
34537731
AB
1480 qtd_fill(qtd, NULL, 0);
1481 list_add_tail(&qtd->qtd_list, head);
db11e47d
SS
1482 }
1483 }
1484
34537731 1485 return;
db11e47d
SS
1486
1487cleanup:
34537731
AB
1488 qtd_list_free(head);
1489}
1490
db11e47d
SS
1491static int isp1760_urb_enqueue(struct usb_hcd *hcd, struct urb *urb,
1492 gfp_t mem_flags)
1493{
71a9f9d2
AB
1494 struct isp1760_hcd *priv = hcd_to_priv(hcd);
1495 struct list_head *ep_queue;
1496 struct isp1760_qh *qh, *qhit;
1497 unsigned long spinflags;
1498 LIST_HEAD(new_qtds);
1499 int retval;
1500 int qh_in_queue;
db11e47d
SS
1501
1502 switch (usb_pipetype(urb->pipe)) {
1503 case PIPE_CONTROL:
e08f6a27 1504 ep_queue = &priv->qh_list[QH_CONTROL];
71a9f9d2 1505 break;
db11e47d 1506 case PIPE_BULK:
e08f6a27 1507 ep_queue = &priv->qh_list[QH_BULK];
db11e47d 1508 break;
db11e47d 1509 case PIPE_INTERRUPT:
71a9f9d2
AB
1510 if (urb->interval < 0)
1511 return -EINVAL;
1512 /* FIXME: Check bandwidth */
e08f6a27 1513 ep_queue = &priv->qh_list[QH_INTERRUPT];
db11e47d 1514 break;
db11e47d 1515 case PIPE_ISOCHRONOUS:
71a9f9d2
AB
1516 dev_err(hcd->self.controller, "%s: isochronous USB packets "
1517 "not yet supported\n",
1518 __func__);
1519 return -EPIPE;
db11e47d 1520 default:
71a9f9d2
AB
1521 dev_err(hcd->self.controller, "%s: unknown pipe type\n",
1522 __func__);
db11e47d
SS
1523 return -EPIPE;
1524 }
1525
71a9f9d2
AB
1526 if (usb_pipein(urb->pipe))
1527 urb->actual_length = 0;
db11e47d 1528
71a9f9d2
AB
1529 packetize_urb(hcd, urb, &new_qtds, mem_flags);
1530 if (list_empty(&new_qtds))
1531 return -ENOMEM;
db11e47d 1532
71a9f9d2
AB
1533 retval = 0;
1534 spin_lock_irqsave(&priv->lock, spinflags);
db11e47d 1535
71a9f9d2
AB
1536 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)) {
1537 retval = -ESHUTDOWN;
8788fa03 1538 qtd_list_free(&new_qtds);
71a9f9d2 1539 goto out;
db11e47d 1540 }
71a9f9d2 1541 retval = usb_hcd_link_urb_to_ep(hcd, urb);
8788fa03
MG
1542 if (retval) {
1543 qtd_list_free(&new_qtds);
71a9f9d2 1544 goto out;
8788fa03 1545 }
db11e47d 1546
71a9f9d2
AB
1547 qh = urb->ep->hcpriv;
1548 if (qh) {
1549 qh_in_queue = 0;
1550 list_for_each_entry(qhit, ep_queue, qh_list) {
1551 if (qhit == qh) {
1552 qh_in_queue = 1;
0afb20e0 1553 break;
71a9f9d2
AB
1554 }
1555 }
1556 if (!qh_in_queue)
1557 list_add_tail(&qh->qh_list, ep_queue);
1558 } else {
1559 qh = qh_alloc(GFP_ATOMIC);
1560 if (!qh) {
1561 retval = -ENOMEM;
38679b72 1562 usb_hcd_unlink_urb_from_ep(hcd, urb);
8788fa03 1563 qtd_list_free(&new_qtds);
71a9f9d2 1564 goto out;
db11e47d 1565 }
71a9f9d2
AB
1566 list_add_tail(&qh->qh_list, ep_queue);
1567 urb->ep->hcpriv = qh;
db11e47d
SS
1568 }
1569
71a9f9d2
AB
1570 list_splice_tail(&new_qtds, &qh->qtd_list);
1571 schedule_ptds(hcd);
1572
1573out:
1574 spin_unlock_irqrestore(&priv->lock, spinflags);
1575 return retval;
db11e47d
SS
1576}
1577
d05b6ec0
AB
1578static void kill_transfer(struct usb_hcd *hcd, struct urb *urb,
1579 struct isp1760_qh *qh)
1580{
1581 struct isp1760_hcd *priv = hcd_to_priv(hcd);
1582 int skip_map;
1583
1584 WARN_ON(qh->slot == -1);
1585
1586 /* We need to forcefully reclaim the slot since some transfers never
1587 return, e.g. interrupt transfers and NAKed bulk transfers. */
8b1ab60c 1588 if (usb_pipecontrol(urb->pipe) || usb_pipebulk(urb->pipe)) {
d05b6ec0
AB
1589 skip_map = reg_read32(hcd->regs, HC_ATL_PTD_SKIPMAP_REG);
1590 skip_map |= (1 << qh->slot);
1591 reg_write32(hcd->regs, HC_ATL_PTD_SKIPMAP_REG, skip_map);
1592 priv->atl_slots[qh->slot].qh = NULL;
1593 priv->atl_slots[qh->slot].qtd = NULL;
1594 } else {
1595 skip_map = reg_read32(hcd->regs, HC_INT_PTD_SKIPMAP_REG);
1596 skip_map |= (1 << qh->slot);
1597 reg_write32(hcd->regs, HC_INT_PTD_SKIPMAP_REG, skip_map);
1598 priv->int_slots[qh->slot].qh = NULL;
1599 priv->int_slots[qh->slot].qtd = NULL;
1600 }
1601
1602 qh->slot = -1;
d05b6ec0
AB
1603}
1604
74ad6029
AB
1605/*
1606 * Retire the qtds beginning at 'qtd' and belonging all to the same urb, killing
1607 * any active transfer belonging to the urb in the process.
1608 */
1609static void dequeue_urb_from_qtd(struct usb_hcd *hcd, struct isp1760_qh *qh,
1610 struct isp1760_qtd *qtd)
1611{
1612 struct urb *urb;
1613 int urb_was_running;
1614
1615 urb = qtd->urb;
1616 urb_was_running = 0;
1617 list_for_each_entry_from(qtd, &qh->qtd_list, qtd_list) {
1618 if (qtd->urb != urb)
1619 break;
1620
1621 if (qtd->status >= QTD_XFER_STARTED)
1622 urb_was_running = 1;
1623 if (last_qtd_of_urb(qtd, qh) &&
1624 (qtd->status >= QTD_XFER_COMPLETE))
1625 urb_was_running = 0;
1626
1627 if (qtd->status == QTD_XFER_STARTED)
1628 kill_transfer(hcd, urb, qh);
1629 qtd->status = QTD_RETIRE;
1630 }
1631
1632 if ((urb->dev->speed != USB_SPEED_HIGH) && urb_was_running) {
1633 qh->tt_buffer_dirty = 1;
1634 if (usb_hub_clear_tt_buffer(urb))
1635 /* Clear failed; let's hope things work anyway */
1636 qh->tt_buffer_dirty = 0;
1637 }
1638}
1639
71a9f9d2
AB
1640static int isp1760_urb_dequeue(struct usb_hcd *hcd, struct urb *urb,
1641 int status)
db11e47d 1642{
6bda21bc 1643 struct isp1760_hcd *priv = hcd_to_priv(hcd);
d05b6ec0 1644 unsigned long spinflags;
71a9f9d2
AB
1645 struct isp1760_qh *qh;
1646 struct isp1760_qtd *qtd;
71a9f9d2 1647 int retval = 0;
db11e47d 1648
71a9f9d2 1649 spin_lock_irqsave(&priv->lock, spinflags);
17d3e145
AB
1650 retval = usb_hcd_check_unlink_urb(hcd, urb, status);
1651 if (retval)
1652 goto out;
db11e47d 1653
71a9f9d2
AB
1654 qh = urb->ep->hcpriv;
1655 if (!qh) {
1656 retval = -EINVAL;
1657 goto out;
1658 }
db11e47d 1659
d05b6ec0
AB
1660 list_for_each_entry(qtd, &qh->qtd_list, qtd_list)
1661 if (qtd->urb == urb) {
74ad6029 1662 dequeue_urb_from_qtd(hcd, qh, qtd);
8cb22680 1663 list_move(&qtd->qtd_list, &qh->qtd_list);
74ad6029 1664 break;
d05b6ec0 1665 }
db11e47d 1666
71a9f9d2
AB
1667 urb->status = status;
1668 schedule_ptds(hcd);
db11e47d 1669
71a9f9d2
AB
1670out:
1671 spin_unlock_irqrestore(&priv->lock, spinflags);
71a9f9d2 1672 return retval;
db11e47d
SS
1673}
1674
079cdb09
AB
1675static void isp1760_endpoint_disable(struct usb_hcd *hcd,
1676 struct usb_host_endpoint *ep)
1677{
1678 struct isp1760_hcd *priv = hcd_to_priv(hcd);
d05b6ec0 1679 unsigned long spinflags;
c64391f2
AB
1680 struct isp1760_qh *qh, *qh_iter;
1681 int i;
079cdb09
AB
1682
1683 spin_lock_irqsave(&priv->lock, spinflags);
d05b6ec0 1684
079cdb09
AB
1685 qh = ep->hcpriv;
1686 if (!qh)
1687 goto out;
1688
c64391f2 1689 WARN_ON(!list_empty(&qh->qtd_list));
d05b6ec0 1690
c64391f2
AB
1691 for (i = 0; i < QH_END; i++)
1692 list_for_each_entry(qh_iter, &priv->qh_list[i], qh_list)
1693 if (qh_iter == qh) {
1694 list_del(&qh_iter->qh_list);
1695 i = QH_END;
1696 break;
1697 }
1698 qh_free(qh);
079cdb09 1699 ep->hcpriv = NULL;
079cdb09 1700
d05b6ec0
AB
1701 schedule_ptds(hcd);
1702
079cdb09
AB
1703out:
1704 spin_unlock_irqrestore(&priv->lock, spinflags);
1705}
1706
db11e47d
SS
1707static int isp1760_hub_status_data(struct usb_hcd *hcd, char *buf)
1708{
1709 struct isp1760_hcd *priv = hcd_to_priv(hcd);
1710 u32 temp, status = 0;
1711 u32 mask;
1712 int retval = 1;
1713 unsigned long flags;
1714
464ed18e 1715 /* if !PM, root hub timers won't get shut down ... */
db11e47d
SS
1716 if (!HC_IS_RUNNING(hcd->state))
1717 return 0;
1718
1719 /* init status to no-changes */
1720 buf[0] = 0;
1721 mask = PORT_CSC;
1722
1723 spin_lock_irqsave(&priv->lock, flags);
bedc0c31 1724 temp = reg_read32(hcd->regs, HC_PORTSC1);
db11e47d
SS
1725
1726 if (temp & PORT_OWNER) {
1727 if (temp & PORT_CSC) {
1728 temp &= ~PORT_CSC;
bedc0c31 1729 reg_write32(hcd->regs, HC_PORTSC1, temp);
db11e47d
SS
1730 goto done;
1731 }
1732 }
1733
1734 /*
1735 * Return status information even for ports with OWNER set.
37ebb549 1736 * Otherwise hub_wq wouldn't see the disconnect event when a
db11e47d
SS
1737 * high-speed device is switched over to the companion
1738 * controller by the user.
1739 */
1740
1741 if ((temp & mask) != 0
1742 || ((temp & PORT_RESUME) != 0
1743 && time_after_eq(jiffies,
1744 priv->reset_done))) {
1745 buf [0] |= 1 << (0 + 1);
1746 status = STS_PCD;
1747 }
1748 /* FIXME autosuspend idle root hubs */
1749done:
1750 spin_unlock_irqrestore(&priv->lock, flags);
1751 return status ? retval : 0;
1752}
1753
1754static void isp1760_hub_descriptor(struct isp1760_hcd *priv,
1755 struct usb_hub_descriptor *desc)
1756{
1757 int ports = HCS_N_PORTS(priv->hcs_params);
1758 u16 temp;
1759
1cf6563b 1760 desc->bDescriptorType = USB_DT_HUB;
db11e47d
SS
1761 /* priv 1.0, 2.3.9 says 20ms max */
1762 desc->bPwrOn2PwrGood = 10;
1763 desc->bHubContrCurrent = 0;
1764
1765 desc->bNbrPorts = ports;
1766 temp = 1 + (ports / 8);
1767 desc->bDescLength = 7 + 2 * temp;
1768
da13051c 1769 /* ports removable, and usb 1.0 legacy PortPwrCtrlMask */
dbe79bbe
JY
1770 memset(&desc->u.hs.DeviceRemovable[0], 0, temp);
1771 memset(&desc->u.hs.DeviceRemovable[temp], 0xff, temp);
db11e47d
SS
1772
1773 /* per-port overcurrent reporting */
cc581c12 1774 temp = HUB_CHAR_INDV_PORT_OCPM;
db11e47d
SS
1775 if (HCS_PPC(priv->hcs_params))
1776 /* per-port power control */
cc581c12 1777 temp |= HUB_CHAR_INDV_PORT_LPSM;
db11e47d
SS
1778 else
1779 /* no power switching */
cc581c12 1780 temp |= HUB_CHAR_NO_LPSM;
db11e47d
SS
1781 desc->wHubCharacteristics = cpu_to_le16(temp);
1782}
1783
1784#define PORT_WAKE_BITS (PORT_WKOC_E|PORT_WKDISC_E|PORT_WKCONN_E)
1785
bedc0c31
AB
1786static int check_reset_complete(struct usb_hcd *hcd, int index,
1787 int port_status)
db11e47d
SS
1788{
1789 if (!(port_status & PORT_CONNECT))
1790 return port_status;
1791
1792 /* if reset finished and it's still not enabled -- handoff */
1793 if (!(port_status & PORT_PE)) {
1794
71a9f9d2 1795 dev_info(hcd->self.controller,
6bda21bc
AB
1796 "port %d full speed --> companion\n",
1797 index + 1);
db11e47d
SS
1798
1799 port_status |= PORT_OWNER;
1800 port_status &= ~PORT_RWC_BITS;
bedc0c31 1801 reg_write32(hcd->regs, HC_PORTSC1, port_status);
db11e47d
SS
1802
1803 } else
71a9f9d2 1804 dev_info(hcd->self.controller, "port %d high speed\n",
6bda21bc 1805 index + 1);
db11e47d
SS
1806
1807 return port_status;
1808}
1809
1810static int isp1760_hub_control(struct usb_hcd *hcd, u16 typeReq,
1811 u16 wValue, u16 wIndex, char *buf, u16 wLength)
1812{
1813 struct isp1760_hcd *priv = hcd_to_priv(hcd);
1814 int ports = HCS_N_PORTS(priv->hcs_params);
db11e47d
SS
1815 u32 temp, status;
1816 unsigned long flags;
1817 int retval = 0;
1818 unsigned selector;
1819
1820 /*
1821 * FIXME: support SetPortFeatures USB_PORT_FEAT_INDICATOR.
1822 * HCS_INDICATOR may say we can change LEDs to off/amber/green.
1823 * (track current state ourselves) ... blink for diagnostics,
1824 * power, "this is the one", etc. EHCI spec supports this.
1825 */
1826
1827 spin_lock_irqsave(&priv->lock, flags);
1828 switch (typeReq) {
1829 case ClearHubFeature:
1830 switch (wValue) {
1831 case C_HUB_LOCAL_POWER:
1832 case C_HUB_OVER_CURRENT:
1833 /* no hub-wide feature/status flags */
1834 break;
1835 default:
1836 goto error;
1837 }
1838 break;
1839 case ClearPortFeature:
1840 if (!wIndex || wIndex > ports)
1841 goto error;
1842 wIndex--;
bedc0c31 1843 temp = reg_read32(hcd->regs, HC_PORTSC1);
db11e47d
SS
1844
1845 /*
1846 * Even if OWNER is set, so the port is owned by the
37ebb549 1847 * companion controller, hub_wq needs to be able to clear
db11e47d 1848 * the port-change status bits (especially
749da5f8 1849 * USB_PORT_STAT_C_CONNECTION).
db11e47d
SS
1850 */
1851
1852 switch (wValue) {
1853 case USB_PORT_FEAT_ENABLE:
bedc0c31 1854 reg_write32(hcd->regs, HC_PORTSC1, temp & ~PORT_PE);
db11e47d
SS
1855 break;
1856 case USB_PORT_FEAT_C_ENABLE:
1857 /* XXX error? */
1858 break;
1859 case USB_PORT_FEAT_SUSPEND:
1860 if (temp & PORT_RESET)
1861 goto error;
1862
1863 if (temp & PORT_SUSPEND) {
1864 if ((temp & PORT_PE) == 0)
1865 goto error;
1866 /* resume signaling for 20 msec */
1867 temp &= ~(PORT_RWC_BITS);
bedc0c31
AB
1868 reg_write32(hcd->regs, HC_PORTSC1,
1869 temp | PORT_RESUME);
db11e47d 1870 priv->reset_done = jiffies +
59c9904c 1871 msecs_to_jiffies(USB_RESUME_TIMEOUT);
db11e47d
SS
1872 }
1873 break;
1874 case USB_PORT_FEAT_C_SUSPEND:
1875 /* we auto-clear this feature */
1876 break;
1877 case USB_PORT_FEAT_POWER:
1878 if (HCS_PPC(priv->hcs_params))
bedc0c31
AB
1879 reg_write32(hcd->regs, HC_PORTSC1,
1880 temp & ~PORT_POWER);
db11e47d
SS
1881 break;
1882 case USB_PORT_FEAT_C_CONNECTION:
bedc0c31 1883 reg_write32(hcd->regs, HC_PORTSC1, temp | PORT_CSC);
db11e47d
SS
1884 break;
1885 case USB_PORT_FEAT_C_OVER_CURRENT:
1886 /* XXX error ?*/
1887 break;
1888 case USB_PORT_FEAT_C_RESET:
1889 /* GetPortStatus clears reset */
1890 break;
1891 default:
1892 goto error;
1893 }
bedc0c31 1894 reg_read32(hcd->regs, HC_USBCMD);
db11e47d
SS
1895 break;
1896 case GetHubDescriptor:
1897 isp1760_hub_descriptor(priv, (struct usb_hub_descriptor *)
1898 buf);
1899 break;
1900 case GetHubStatus:
1901 /* no hub-wide feature/status flags */
1902 memset(buf, 0, 4);
1903 break;
1904 case GetPortStatus:
1905 if (!wIndex || wIndex > ports)
1906 goto error;
1907 wIndex--;
1908 status = 0;
bedc0c31 1909 temp = reg_read32(hcd->regs, HC_PORTSC1);
db11e47d
SS
1910
1911 /* wPortChange bits */
1912 if (temp & PORT_CSC)
749da5f8 1913 status |= USB_PORT_STAT_C_CONNECTION << 16;
db11e47d
SS
1914
1915
1916 /* whoever resumes must GetPortStatus to complete it!! */
1917 if (temp & PORT_RESUME) {
6bda21bc 1918 dev_err(hcd->self.controller, "Port resume should be skipped.\n");
db11e47d
SS
1919
1920 /* Remote Wakeup received? */
1921 if (!priv->reset_done) {
1922 /* resume signaling for 20 msec */
1923 priv->reset_done = jiffies
1924 + msecs_to_jiffies(20);
1925 /* check the port again */
6bda21bc 1926 mod_timer(&hcd->rh_timer, priv->reset_done);
db11e47d
SS
1927 }
1928
1929 /* resume completed? */
1930 else if (time_after_eq(jiffies,
1931 priv->reset_done)) {
749da5f8 1932 status |= USB_PORT_STAT_C_SUSPEND << 16;
db11e47d
SS
1933 priv->reset_done = 0;
1934
1935 /* stop resume signaling */
bedc0c31
AB
1936 temp = reg_read32(hcd->regs, HC_PORTSC1);
1937 reg_write32(hcd->regs, HC_PORTSC1,
1938 temp & ~(PORT_RWC_BITS | PORT_RESUME));
1939 retval = handshake(hcd, HC_PORTSC1,
db11e47d
SS
1940 PORT_RESUME, 0, 2000 /* 2msec */);
1941 if (retval != 0) {
6bda21bc 1942 dev_err(hcd->self.controller,
db11e47d
SS
1943 "port %d resume error %d\n",
1944 wIndex + 1, retval);
1945 goto error;
1946 }
1947 temp &= ~(PORT_SUSPEND|PORT_RESUME|(3<<10));
1948 }
1949 }
1950
1951 /* whoever resets must GetPortStatus to complete it!! */
1952 if ((temp & PORT_RESET)
1953 && time_after_eq(jiffies,
1954 priv->reset_done)) {
749da5f8 1955 status |= USB_PORT_STAT_C_RESET << 16;
db11e47d
SS
1956 priv->reset_done = 0;
1957
1958 /* force reset to complete */
bedc0c31 1959 reg_write32(hcd->regs, HC_PORTSC1, temp & ~PORT_RESET);
db11e47d
SS
1960 /* REVISIT: some hardware needs 550+ usec to clear
1961 * this bit; seems too long to spin routinely...
1962 */
bedc0c31 1963 retval = handshake(hcd, HC_PORTSC1,
db11e47d
SS
1964 PORT_RESET, 0, 750);
1965 if (retval != 0) {
6bda21bc 1966 dev_err(hcd->self.controller, "port %d reset error %d\n",
db11e47d
SS
1967 wIndex + 1, retval);
1968 goto error;
1969 }
1970
1971 /* see what we found out */
bedc0c31
AB
1972 temp = check_reset_complete(hcd, wIndex,
1973 reg_read32(hcd->regs, HC_PORTSC1));
db11e47d
SS
1974 }
1975 /*
37ebb549 1976 * Even if OWNER is set, there's no harm letting hub_wq
db11e47d
SS
1977 * see the wPortStatus values (they should all be 0 except
1978 * for PORT_POWER anyway).
1979 */
1980
1981 if (temp & PORT_OWNER)
6bda21bc 1982 dev_err(hcd->self.controller, "PORT_OWNER is set\n");
db11e47d
SS
1983
1984 if (temp & PORT_CONNECT) {
749da5f8 1985 status |= USB_PORT_STAT_CONNECTION;
db11e47d 1986 /* status may be from integrated TT */
6bda21bc 1987 status |= USB_PORT_STAT_HIGH_SPEED;
db11e47d
SS
1988 }
1989 if (temp & PORT_PE)
749da5f8 1990 status |= USB_PORT_STAT_ENABLE;
db11e47d 1991 if (temp & (PORT_SUSPEND|PORT_RESUME))
749da5f8 1992 status |= USB_PORT_STAT_SUSPEND;
db11e47d 1993 if (temp & PORT_RESET)
749da5f8 1994 status |= USB_PORT_STAT_RESET;
db11e47d 1995 if (temp & PORT_POWER)
749da5f8 1996 status |= USB_PORT_STAT_POWER;
db11e47d
SS
1997
1998 put_unaligned(cpu_to_le32(status), (__le32 *) buf);
1999 break;
2000 case SetHubFeature:
2001 switch (wValue) {
2002 case C_HUB_LOCAL_POWER:
2003 case C_HUB_OVER_CURRENT:
2004 /* no hub-wide feature/status flags */
2005 break;
2006 default:
2007 goto error;
2008 }
2009 break;
2010 case SetPortFeature:
2011 selector = wIndex >> 8;
2012 wIndex &= 0xff;
2013 if (!wIndex || wIndex > ports)
2014 goto error;
2015 wIndex--;
bedc0c31 2016 temp = reg_read32(hcd->regs, HC_PORTSC1);
db11e47d
SS
2017 if (temp & PORT_OWNER)
2018 break;
2019
2020/* temp &= ~PORT_RWC_BITS; */
2021 switch (wValue) {
2022 case USB_PORT_FEAT_ENABLE:
bedc0c31 2023 reg_write32(hcd->regs, HC_PORTSC1, temp | PORT_PE);
db11e47d
SS
2024 break;
2025
2026 case USB_PORT_FEAT_SUSPEND:
2027 if ((temp & PORT_PE) == 0
2028 || (temp & PORT_RESET) != 0)
2029 goto error;
2030
bedc0c31 2031 reg_write32(hcd->regs, HC_PORTSC1, temp | PORT_SUSPEND);
db11e47d
SS
2032 break;
2033 case USB_PORT_FEAT_POWER:
2034 if (HCS_PPC(priv->hcs_params))
bedc0c31
AB
2035 reg_write32(hcd->regs, HC_PORTSC1,
2036 temp | PORT_POWER);
db11e47d
SS
2037 break;
2038 case USB_PORT_FEAT_RESET:
2039 if (temp & PORT_RESUME)
2040 goto error;
2041 /* line status bits may report this as low speed,
2042 * which can be fine if this root hub has a
2043 * transaction translator built in.
2044 */
2045 if ((temp & (PORT_PE|PORT_CONNECT)) == PORT_CONNECT
2046 && PORT_USB11(temp)) {
2047 temp |= PORT_OWNER;
2048 } else {
2049 temp |= PORT_RESET;
2050 temp &= ~PORT_PE;
2051
2052 /*
2053 * caller must wait, then call GetPortStatus
2054 * usb 2.0 spec says 50 ms resets on root
2055 */
2056 priv->reset_done = jiffies +
2057 msecs_to_jiffies(50);
2058 }
bedc0c31 2059 reg_write32(hcd->regs, HC_PORTSC1, temp);
db11e47d
SS
2060 break;
2061 default:
2062 goto error;
2063 }
bedc0c31 2064 reg_read32(hcd->regs, HC_USBCMD);
db11e47d
SS
2065 break;
2066
2067 default:
2068error:
2069 /* "stall" on error */
2070 retval = -EPIPE;
2071 }
2072 spin_unlock_irqrestore(&priv->lock, flags);
2073 return retval;
2074}
2075
db11e47d
SS
2076static int isp1760_get_frame(struct usb_hcd *hcd)
2077{
2078 struct isp1760_hcd *priv = hcd_to_priv(hcd);
2079 u32 fr;
2080
bedc0c31 2081 fr = reg_read32(hcd->regs, HC_FRINDEX);
db11e47d
SS
2082 return (fr >> 3) % priv->periodic_size;
2083}
2084
2085static void isp1760_stop(struct usb_hcd *hcd)
2086{
2087 struct isp1760_hcd *priv = hcd_to_priv(hcd);
3faefc88 2088 u32 temp;
db11e47d 2089
6d50c60e
AB
2090 del_timer(&errata2_timer);
2091
db11e47d
SS
2092 isp1760_hub_control(hcd, ClearPortFeature, USB_PORT_FEAT_POWER, 1,
2093 NULL, 0);
2094 mdelay(20);
2095
2096 spin_lock_irq(&priv->lock);
6bda21bc 2097 ehci_reset(hcd);
db11e47d 2098 /* Disable IRQ */
bedc0c31
AB
2099 temp = reg_read32(hcd->regs, HC_HW_MODE_CTRL);
2100 reg_write32(hcd->regs, HC_HW_MODE_CTRL, temp &= ~HW_GLOBAL_INTR_EN);
db11e47d
SS
2101 spin_unlock_irq(&priv->lock);
2102
bedc0c31 2103 reg_write32(hcd->regs, HC_CONFIGFLAG, 0);
db11e47d
SS
2104}
2105
2106static void isp1760_shutdown(struct usb_hcd *hcd)
2107{
3faefc88 2108 u32 command, temp;
db11e47d
SS
2109
2110 isp1760_stop(hcd);
bedc0c31
AB
2111 temp = reg_read32(hcd->regs, HC_HW_MODE_CTRL);
2112 reg_write32(hcd->regs, HC_HW_MODE_CTRL, temp &= ~HW_GLOBAL_INTR_EN);
db11e47d 2113
bedc0c31 2114 command = reg_read32(hcd->regs, HC_USBCMD);
db11e47d 2115 command &= ~CMD_RUN;
bedc0c31 2116 reg_write32(hcd->regs, HC_USBCMD, command);
db11e47d
SS
2117}
2118
74ad6029
AB
2119static void isp1760_clear_tt_buffer_complete(struct usb_hcd *hcd,
2120 struct usb_host_endpoint *ep)
2121{
2122 struct isp1760_hcd *priv = hcd_to_priv(hcd);
2123 struct isp1760_qh *qh = ep->hcpriv;
2124 unsigned long spinflags;
2125
2126 if (!qh)
2127 return;
2128
2129 spin_lock_irqsave(&priv->lock, spinflags);
2130 qh->tt_buffer_dirty = 0;
2131 schedule_ptds(hcd);
2132 spin_unlock_irqrestore(&priv->lock, spinflags);
2133}
2134
2135
db11e47d
SS
2136static const struct hc_driver isp1760_hc_driver = {
2137 .description = "isp1760-hcd",
2138 .product_desc = "NXP ISP1760 USB Host Controller",
cdd36e87 2139 .hcd_priv_size = sizeof(struct isp1760_hcd *),
db11e47d
SS
2140 .irq = isp1760_irq,
2141 .flags = HCD_MEMORY | HCD_USB2,
2142 .reset = isp1760_hc_setup,
2143 .start = isp1760_run,
2144 .stop = isp1760_stop,
2145 .shutdown = isp1760_shutdown,
2146 .urb_enqueue = isp1760_urb_enqueue,
2147 .urb_dequeue = isp1760_urb_dequeue,
2148 .endpoint_disable = isp1760_endpoint_disable,
2149 .get_frame_number = isp1760_get_frame,
2150 .hub_status_data = isp1760_hub_status_data,
2151 .hub_control = isp1760_hub_control,
74ad6029 2152 .clear_tt_buffer_complete = isp1760_clear_tt_buffer_complete,
db11e47d
SS
2153};
2154
5a6356ac 2155int __init isp1760_init_kmem_once(void)
db11e47d 2156{
94011ec2 2157 urb_listitem_cachep = kmem_cache_create("isp1760_urb_listitem",
71a9f9d2
AB
2158 sizeof(struct urb_listitem), 0, SLAB_TEMPORARY |
2159 SLAB_MEM_SPREAD, NULL);
2160
2161 if (!urb_listitem_cachep)
2162 return -ENOMEM;
2163
db11e47d
SS
2164 qtd_cachep = kmem_cache_create("isp1760_qtd",
2165 sizeof(struct isp1760_qtd), 0, SLAB_TEMPORARY |
2166 SLAB_MEM_SPREAD, NULL);
2167
2168 if (!qtd_cachep)
2169 return -ENOMEM;
2170
2171 qh_cachep = kmem_cache_create("isp1760_qh", sizeof(struct isp1760_qh),
2172 0, SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL);
2173
2174 if (!qh_cachep) {
2175 kmem_cache_destroy(qtd_cachep);
2176 return -ENOMEM;
2177 }
2178
2179 return 0;
2180}
2181
5a6356ac 2182void isp1760_deinit_kmem_cache(void)
db11e47d
SS
2183{
2184 kmem_cache_destroy(qtd_cachep);
2185 kmem_cache_destroy(qh_cachep);
71a9f9d2 2186 kmem_cache_destroy(urb_listitem_cachep);
db11e47d
SS
2187}
2188
4b1a577d
LP
2189int isp1760_hcd_register(struct isp1760_hcd *priv, void __iomem *regs,
2190 struct resource *mem, int irq, unsigned long irqflags,
5171446a 2191 struct device *dev)
db11e47d
SS
2192{
2193 struct usb_hcd *hcd;
db11e47d
SS
2194 int ret;
2195
0031a06e 2196 hcd = usb_create_hcd(&isp1760_hc_driver, dev, dev_name(dev));
db11e47d 2197 if (!hcd)
f0bdbb0e 2198 return -ENOMEM;
db11e47d 2199
cdd36e87
LP
2200 *(struct isp1760_hcd **)hcd->hcd_priv = priv;
2201
4b1a577d 2202 priv->hcd = hcd;
db11e47d 2203
db11e47d 2204 init_memory(priv);
db11e47d 2205
db11e47d 2206 hcd->irq = irq;
4b1a577d 2207 hcd->regs = regs;
4942e00e
LP
2208 hcd->rsrc_start = mem->start;
2209 hcd->rsrc_len = resource_size(mem);
db11e47d 2210
074f9dd5
AS
2211 /* This driver doesn't support wakeup requests */
2212 hcd->cant_recv_wakeups = 1;
2213
e6942d63
NC
2214 ret = usb_add_hcd(hcd, irq, irqflags);
2215 if (ret)
10feee14 2216 goto error;
e6942d63 2217
3c9740a1 2218 device_wakeup_enable(hcd->self.controller);
e6942d63 2219
f0bdbb0e 2220 return 0;
db11e47d 2221
10feee14 2222error:
30573751 2223 usb_put_hcd(hcd);
30573751 2224 return ret;
db11e47d 2225}
db11e47d 2226
4b1a577d 2227void isp1760_hcd_unregister(struct isp1760_hcd *priv)
10c73f09 2228{
d21daf1e
LP
2229 if (!priv->hcd)
2230 return;
db11e47d 2231
4b1a577d
LP
2232 usb_remove_hcd(priv->hcd);
2233 usb_put_hcd(priv->hcd);
db11e47d 2234}