2 * URB OHCI HCD (Host Controller Driver) for USB on the AT91RM9200 and PCI bus.
4 * Interrupt support is added. Now, it has been tested
5 * on ULI1575 chip and works well with USB keyboard.
8 * Zhang Wei, Freescale Semiconductor, Inc. <wei.zhang@freescale.com>
11 * Gary Jennejohn, DENX Software Engineering <gj@denx.de>
13 * Note: Much of this code has been derived from Linux 2.4
14 * (C) Copyright 1999 Roman Weissgaerber <weissg@vienna.at>
15 * (C) Copyright 2000-2002 David Brownell
17 * Modified for the MP2USB by (C) Copyright 2005 Eric Benard
18 * ebenard@eukrea.com - based on s3c24x0's driver
20 * See file CREDITS for list of people who contributed to this
23 * This program is free software; you can redistribute it and/or
24 * modify it under the terms of the GNU General Public License as
25 * published by the Free Software Foundation; either version 2 of
26 * the License, or (at your option) any later version.
28 * This program is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 * GNU General Public License for more details.
33 * You should have received a copy of the GNU General Public License
34 * along with this program; if not, write to the Free Software
35 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
41 * 1 - Read doc/README.generic_usb_ohci
42 * 2 - this driver is intended for use with USB Mass Storage Devices
43 * (BBB) and USB keyboard. There is NO support for Isochronous pipes!
44 * 2 - when running on a PQFP208 AT91RM9200, define CONFIG_AT91C_PQFP_UHPBUG
45 * to activate workaround for bug #41 or this driver will NOT work!
50 #ifdef CONFIG_USB_OHCI_NEW
52 #include <asm/byteorder.h>
54 #if defined(CONFIG_PCI_OHCI)
62 #ifdef CONFIG_AT91RM9200
63 #include <asm/arch/hardware.h> /* needed for AT91_USB_HOST_BASE */
66 #if defined(CONFIG_ARM920T) || \
67 defined(CONFIG_S3C2400) || \
68 defined(CONFIG_S3C2410) || \
69 defined(CONFIG_S3C2440) || \
70 defined(CONFIG_S3C2443) || \
71 defined(CONFIG_440EP) || \
72 defined(CONFIG_PCI_OHCI) || \
73 defined(CONFIG_MPC5200) || \
74 defined(CFG_OHCI_USE_NPS)
75 # define OHCI_USE_NPS /* force NoPowerSwitching mode */
78 #undef OHCI_VERBOSE_DEBUG /* not always helpful */
81 #undef OHCI_FILL_TRACE
83 /* For initializing controller (mask in an HCFS mode too) */
84 #define OHCI_CONTROL_INIT \
85 (OHCI_CTRL_CBSR & 0x3) | OHCI_CTRL_IE | OHCI_CTRL_PLE
88 * e.g. PCI controllers need this
90 #ifdef CFG_OHCI_SWAP_REG_ACCESS
91 # define readl(a) __swap_32(*((vu_long *)(a)))
92 # define writel(a, b) (*((vu_long *)(b)) = __swap_32((vu_long)a))
94 # define readl(a) (*((vu_long *)(a)))
95 # define writel(a, b) (*((vu_long *)(b)) = ((vu_long)a))
96 #endif /* CFG_OHCI_SWAP_REG_ACCESS */
98 #define min_t(type,x,y) ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
100 #ifdef CONFIG_PCI_OHCI
101 static struct pci_device_id ohci_pci_ids
[] = {
102 {0x10b9, 0x5237}, /* ULI1575 PCI OHCI module ids */
103 {0x1033, 0x0035}, /* NEC PCI OHCI module ids */
104 {0x1131, 0x1561}, /* Philips 1561 PCI OHCI module ids */
105 /* Please add supported PCI OHCI controller ids here */
111 #define dbg(format, arg...) printf("DEBUG: " format "\n", ## arg)
113 #define dbg(format, arg...) do {} while(0)
115 #define err(format, arg...) printf("ERROR: " format "\n", ## arg)
118 #define info(format, arg...) printf("INFO: " format "\n", ## arg)
120 #define info(format, arg...) do {} while(0)
123 #ifdef CFG_OHCI_BE_CONTROLLER
124 # define m16_swap(x) cpu_to_be16(x)
125 # define m32_swap(x) cpu_to_be32(x)
127 # define m16_swap(x) cpu_to_le16(x)
128 # define m32_swap(x) cpu_to_le32(x)
129 #endif /* CFG_OHCI_BE_CONTROLLER */
133 /* this must be aligned to a 256 byte boundary */
134 struct ohci_hcca ghcca
[1];
135 /* a pointer to the aligned storage */
136 struct ohci_hcca
*phcca
;
137 /* this allocates EDs for all possible endpoints */
138 struct ohci_device ohci_dev
;
141 /* device which was disconnected */
142 struct usb_device
*devgone
;
144 /*-------------------------------------------------------------------------*/
146 /* AMD-756 (D2 rev) reports corrupt register contents in some cases.
147 * The erratum (#4) description is incorrect. AMD's workaround waits
148 * till some bits (mostly reserved) are clear; ok for all revs.
150 #define OHCI_QUIRK_AMD756 0xabcd
151 #define read_roothub(hc, register, mask) ({ \
152 u32 temp = readl (&hc->regs->roothub.register); \
153 if (hc->flags & OHCI_QUIRK_AMD756) \
154 while (temp & mask) \
155 temp = readl (&hc->regs->roothub.register); \
158 static u32
roothub_a (struct ohci
*hc
)
159 { return read_roothub (hc
, a
, 0xfc0fe000); }
160 static inline u32
roothub_b (struct ohci
*hc
)
161 { return readl (&hc
->regs
->roothub
.b
); }
162 static inline u32
roothub_status (struct ohci
*hc
)
163 { return readl (&hc
->regs
->roothub
.status
); }
164 static u32
roothub_portstatus (struct ohci
*hc
, int i
)
165 { return read_roothub (hc
, portstatus
[i
], 0xffe0fce0); }
167 /* forward declaration */
168 static int hc_interrupt (void);
170 td_submit_job (struct usb_device
* dev
, unsigned long pipe
, void * buffer
,
171 int transfer_len
, struct devrequest
* setup
, urb_priv_t
* urb
, int interval
);
173 /*-------------------------------------------------------------------------*
174 * URB support functions
175 *-------------------------------------------------------------------------*/
177 /* free HCD-private data associated with this URB */
179 static void urb_free_priv (urb_priv_t
* urb
)
185 last
= urb
->length
- 1;
187 for (i
= 0; i
<= last
; i
++) {
198 /*-------------------------------------------------------------------------*/
201 static int sohci_get_current_frame_number (struct usb_device
* dev
);
203 /* debug| print the main components of an URB
204 * small: 0) header + data packets 1) just header */
206 static void pkt_print (urb_priv_t
*purb
, struct usb_device
* dev
,
207 unsigned long pipe
, void * buffer
,
208 int transfer_len
, struct devrequest
* setup
, char * str
, int small
)
210 dbg("%s URB:[%4x] dev:%2d,ep:%2d-%c,type:%s,len:%d/%d stat:%#lx",
212 sohci_get_current_frame_number (dev
),
213 usb_pipedevice (pipe
),
214 usb_pipeendpoint (pipe
),
215 usb_pipeout (pipe
)? 'O': 'I',
216 usb_pipetype (pipe
) < 2? (usb_pipeint (pipe
)? "INTR": "ISOC"):
217 (usb_pipecontrol (pipe
)? "CTRL": "BULK"),
218 (purb
? purb
->actual_length
: 0),
219 transfer_len
, dev
->status
);
220 #ifdef OHCI_VERBOSE_DEBUG
224 if (usb_pipecontrol (pipe
)) {
225 printf (__FILE__
": cmd(8):");
226 for (i
= 0; i
< 8 ; i
++)
227 printf (" %02x", ((__u8
*) setup
) [i
]);
230 if (transfer_len
> 0 && buffer
) {
231 printf (__FILE__
": data(%d/%d):",
232 (purb
? purb
->actual_length
: 0),
234 len
= usb_pipeout (pipe
)?
236 (purb
? purb
->actual_length
: 0);
237 for (i
= 0; i
< 16 && i
< len
; i
++)
238 printf (" %02x", ((__u8
*) buffer
) [i
]);
239 printf ("%s\n", i
< len
? "...": "");
245 /* just for debugging; prints non-empty branches of the int ed tree inclusive iso eds*/
246 void ep_print_int_eds (ohci_t
*ohci
, char * str
) {
249 for (i
= 0; i
< 32; i
++) {
251 ed_p
= &(ohci
->hcca
->int_table
[i
]);
254 printf (__FILE__
": %s branch int %2d(%2x):", str
, i
, i
);
255 while (*ed_p
!= 0 && j
--) {
256 ed_t
*ed
= (ed_t
*)m32_swap(ed_p
);
257 printf (" ed: %4x;", ed
->hwINFO
);
258 ed_p
= &ed
->hwNextED
;
264 static void ohci_dump_intr_mask (char *label
, __u32 mask
)
266 dbg ("%s: 0x%08x%s%s%s%s%s%s%s%s%s",
269 (mask
& OHCI_INTR_MIE
) ? " MIE" : "",
270 (mask
& OHCI_INTR_OC
) ? " OC" : "",
271 (mask
& OHCI_INTR_RHSC
) ? " RHSC" : "",
272 (mask
& OHCI_INTR_FNO
) ? " FNO" : "",
273 (mask
& OHCI_INTR_UE
) ? " UE" : "",
274 (mask
& OHCI_INTR_RD
) ? " RD" : "",
275 (mask
& OHCI_INTR_SF
) ? " SF" : "",
276 (mask
& OHCI_INTR_WDH
) ? " WDH" : "",
277 (mask
& OHCI_INTR_SO
) ? " SO" : ""
281 static void maybe_print_eds (char *label
, __u32 value
)
283 ed_t
*edp
= (ed_t
*)value
;
286 dbg ("%s %08x", label
, value
);
287 dbg ("%08x", edp
->hwINFO
);
288 dbg ("%08x", edp
->hwTailP
);
289 dbg ("%08x", edp
->hwHeadP
);
290 dbg ("%08x", edp
->hwNextED
);
294 static char * hcfs2string (int state
)
297 case OHCI_USB_RESET
: return "reset";
298 case OHCI_USB_RESUME
: return "resume";
299 case OHCI_USB_OPER
: return "operational";
300 case OHCI_USB_SUSPEND
: return "suspend";
305 /* dump control and status registers */
306 static void ohci_dump_status (ohci_t
*controller
)
308 struct ohci_regs
*regs
= controller
->regs
;
311 temp
= readl (®s
->revision
) & 0xff;
313 dbg ("spec %d.%d", (temp
>> 4), (temp
& 0x0f));
315 temp
= readl (®s
->control
);
316 dbg ("control: 0x%08x%s%s%s HCFS=%s%s%s%s%s CBSR=%d", temp
,
317 (temp
& OHCI_CTRL_RWE
) ? " RWE" : "",
318 (temp
& OHCI_CTRL_RWC
) ? " RWC" : "",
319 (temp
& OHCI_CTRL_IR
) ? " IR" : "",
320 hcfs2string (temp
& OHCI_CTRL_HCFS
),
321 (temp
& OHCI_CTRL_BLE
) ? " BLE" : "",
322 (temp
& OHCI_CTRL_CLE
) ? " CLE" : "",
323 (temp
& OHCI_CTRL_IE
) ? " IE" : "",
324 (temp
& OHCI_CTRL_PLE
) ? " PLE" : "",
325 temp
& OHCI_CTRL_CBSR
328 temp
= readl (®s
->cmdstatus
);
329 dbg ("cmdstatus: 0x%08x SOC=%d%s%s%s%s", temp
,
330 (temp
& OHCI_SOC
) >> 16,
331 (temp
& OHCI_OCR
) ? " OCR" : "",
332 (temp
& OHCI_BLF
) ? " BLF" : "",
333 (temp
& OHCI_CLF
) ? " CLF" : "",
334 (temp
& OHCI_HCR
) ? " HCR" : ""
337 ohci_dump_intr_mask ("intrstatus", readl (®s
->intrstatus
));
338 ohci_dump_intr_mask ("intrenable", readl (®s
->intrenable
));
340 maybe_print_eds ("ed_periodcurrent", readl (®s
->ed_periodcurrent
));
342 maybe_print_eds ("ed_controlhead", readl (®s
->ed_controlhead
));
343 maybe_print_eds ("ed_controlcurrent", readl (®s
->ed_controlcurrent
));
345 maybe_print_eds ("ed_bulkhead", readl (®s
->ed_bulkhead
));
346 maybe_print_eds ("ed_bulkcurrent", readl (®s
->ed_bulkcurrent
));
348 maybe_print_eds ("donehead", readl (®s
->donehead
));
351 static void ohci_dump_roothub (ohci_t
*controller
, int verbose
)
355 temp
= roothub_a (controller
);
356 ndp
= (temp
& RH_A_NDP
);
357 #ifdef CONFIG_AT91C_PQFP_UHPBUG
358 ndp
= (ndp
== 2) ? 1:0;
361 dbg ("roothub.a: %08x POTPGT=%d%s%s%s%s%s NDP=%d", temp
,
362 ((temp
& RH_A_POTPGT
) >> 24) & 0xff,
363 (temp
& RH_A_NOCP
) ? " NOCP" : "",
364 (temp
& RH_A_OCPM
) ? " OCPM" : "",
365 (temp
& RH_A_DT
) ? " DT" : "",
366 (temp
& RH_A_NPS
) ? " NPS" : "",
367 (temp
& RH_A_PSM
) ? " PSM" : "",
370 temp
= roothub_b (controller
);
371 dbg ("roothub.b: %08x PPCM=%04x DR=%04x",
373 (temp
& RH_B_PPCM
) >> 16,
376 temp
= roothub_status (controller
);
377 dbg ("roothub.status: %08x%s%s%s%s%s%s",
379 (temp
& RH_HS_CRWE
) ? " CRWE" : "",
380 (temp
& RH_HS_OCIC
) ? " OCIC" : "",
381 (temp
& RH_HS_LPSC
) ? " LPSC" : "",
382 (temp
& RH_HS_DRWE
) ? " DRWE" : "",
383 (temp
& RH_HS_OCI
) ? " OCI" : "",
384 (temp
& RH_HS_LPS
) ? " LPS" : ""
388 for (i
= 0; i
< ndp
; i
++) {
389 temp
= roothub_portstatus (controller
, i
);
390 dbg ("roothub.portstatus [%d] = 0x%08x%s%s%s%s%s%s%s%s%s%s%s%s",
393 (temp
& RH_PS_PRSC
) ? " PRSC" : "",
394 (temp
& RH_PS_OCIC
) ? " OCIC" : "",
395 (temp
& RH_PS_PSSC
) ? " PSSC" : "",
396 (temp
& RH_PS_PESC
) ? " PESC" : "",
397 (temp
& RH_PS_CSC
) ? " CSC" : "",
399 (temp
& RH_PS_LSDA
) ? " LSDA" : "",
400 (temp
& RH_PS_PPS
) ? " PPS" : "",
401 (temp
& RH_PS_PRS
) ? " PRS" : "",
402 (temp
& RH_PS_POCI
) ? " POCI" : "",
403 (temp
& RH_PS_PSS
) ? " PSS" : "",
405 (temp
& RH_PS_PES
) ? " PES" : "",
406 (temp
& RH_PS_CCS
) ? " CCS" : ""
411 static void ohci_dump (ohci_t
*controller
, int verbose
)
413 dbg ("OHCI controller usb-%s state", controller
->slot_name
);
415 /* dumps some of the state we know about */
416 ohci_dump_status (controller
);
418 ep_print_int_eds (controller
, "hcca");
419 dbg ("hcca frame #%04x", controller
->hcca
->frame_no
);
420 ohci_dump_roothub (controller
, 1);
424 /*-------------------------------------------------------------------------*
425 * Interface functions (URB)
426 *-------------------------------------------------------------------------*/
428 /* get a transfer request */
430 int sohci_submit_job(urb_priv_t
*urb
, struct devrequest
*setup
)
434 urb_priv_t
*purb_priv
= urb
;
436 struct usb_device
*dev
= urb
->dev
;
437 unsigned long pipe
= urb
->pipe
;
438 void *buffer
= urb
->transfer_buffer
;
439 int transfer_len
= urb
->transfer_buffer_length
;
440 int interval
= urb
->interval
;
444 /* when controller's hung, permit only roothub cleanup attempts
445 * such as powering down ports */
446 if (ohci
->disabled
) {
447 err("sohci_submit_job: EPIPE");
451 /* we're about to begin a new transaction here so mark the URB unfinished */
454 /* every endpoint has a ed, locate and fill it */
455 if (!(ed
= ep_add_ed (dev
, pipe
, interval
, 1))) {
456 err("sohci_submit_job: ENOMEM");
460 /* for the private part of the URB we need the number of TDs (size) */
461 switch (usb_pipetype (pipe
)) {
462 case PIPE_BULK
: /* one TD for every 4096 Byte */
463 size
= (transfer_len
- 1) / 4096 + 1;
465 case PIPE_CONTROL
: /* 1 TD for setup, 1 for ACK and 1 for every 4096 B */
466 size
= (transfer_len
== 0)? 2:
467 (transfer_len
- 1) / 4096 + 3;
469 case PIPE_INTERRUPT
: /* 1 TD */
476 if (size
>= (N_URB_TD
- 1)) {
477 err("need %d TDs, only have %d", size
, N_URB_TD
);
480 purb_priv
->pipe
= pipe
;
482 /* fill the private part of the URB */
483 purb_priv
->length
= size
;
485 purb_priv
->actual_length
= 0;
487 /* allocate the TDs */
488 /* note that td[0] was allocated in ep_add_ed */
489 for (i
= 0; i
< size
; i
++) {
490 purb_priv
->td
[i
] = td_alloc (dev
);
491 if (!purb_priv
->td
[i
]) {
492 purb_priv
->length
= i
;
493 urb_free_priv (purb_priv
);
494 err("sohci_submit_job: ENOMEM");
499 if (ed
->state
== ED_NEW
|| (ed
->state
& ED_DEL
)) {
500 urb_free_priv (purb_priv
);
501 err("sohci_submit_job: EINVAL");
505 /* link the ed into a chain if is not already */
506 if (ed
->state
!= ED_OPER
)
509 /* fill the TDs and link it to the ed */
510 td_submit_job(dev
, pipe
, buffer
, transfer_len
, setup
, purb_priv
, interval
);
515 static inline int sohci_return_job(struct ohci
*hc
, urb_priv_t
*urb
)
517 struct ohci_regs
*regs
= hc
->regs
;
519 switch (usb_pipetype (urb
->pipe
)) {
521 /* implicitly requeued */
522 if (urb
->dev
->irq_handle
&&
523 (urb
->dev
->irq_act_len
= urb
->actual_length
)) {
524 writel (OHCI_INTR_WDH
, ®s
->intrenable
);
525 readl (®s
->intrenable
); /* PCI posting flush */
526 urb
->dev
->irq_handle(urb
->dev
);
527 writel (OHCI_INTR_WDH
, ®s
->intrdisable
);
528 readl (®s
->intrdisable
); /* PCI posting flush */
530 urb
->actual_length
= 0;
534 urb
->transfer_buffer
,
535 urb
->transfer_buffer_length
,
549 /*-------------------------------------------------------------------------*/
552 /* tell us the current USB frame number */
554 static int sohci_get_current_frame_number (struct usb_device
*usb_dev
)
556 ohci_t
*ohci
= &gohci
;
558 return m16_swap (ohci
->hcca
->frame_no
);
562 /*-------------------------------------------------------------------------*
563 * ED handling functions
564 *-------------------------------------------------------------------------*/
566 /* search for the right branch to insert an interrupt ed into the int tree
567 * do some load ballancing;
568 * returns the branch and
569 * sets the interval to interval = 2^integer (ld (interval)) */
571 static int ep_int_ballance (ohci_t
* ohci
, int interval
, int load
)
575 /* search for the least loaded interrupt endpoint
576 * branch of all 32 branches
578 for (i
= 0; i
< 32; i
++)
579 if (ohci
->ohci_int_load
[branch
] > ohci
->ohci_int_load
[i
])
582 branch
= branch
% interval
;
583 for (i
= branch
; i
< 32; i
+= interval
)
584 ohci
->ohci_int_load
[i
] += load
;
589 /*-------------------------------------------------------------------------*/
591 /* 2^int( ld (inter)) */
593 static int ep_2_n_interval (int inter
)
596 for (i
= 0; ((inter
>> i
) > 1 ) && (i
< 5); i
++);
600 /*-------------------------------------------------------------------------*/
602 /* the int tree is a binary tree
603 * in order to process it sequentially the indexes of the branches have to be mapped
604 * the mapping reverses the bits of a word of num_bits length */
606 static int ep_rev (int num_bits
, int word
)
610 for (i
= 0; i
< num_bits
; i
++)
611 wout
|= (((word
>> i
) & 1) << (num_bits
- i
- 1));
615 /*-------------------------------------------------------------------------*
616 * ED handling functions
617 *-------------------------------------------------------------------------*/
619 /* link an ed into one of the HC chains */
621 static int ep_link (ohci_t
*ohci
, ed_t
*edi
)
623 volatile ed_t
*ed
= edi
;
632 ed
->int_interval
= 0;
637 if (ohci
->ed_controltail
== NULL
) {
638 writel (ed
, &ohci
->regs
->ed_controlhead
);
640 ohci
->ed_controltail
->hwNextED
= m32_swap ((unsigned long)ed
);
642 ed
->ed_prev
= ohci
->ed_controltail
;
643 if (!ohci
->ed_controltail
&& !ohci
->ed_rm_list
[0] &&
644 !ohci
->ed_rm_list
[1] && !ohci
->sleeping
) {
645 ohci
->hc_control
|= OHCI_CTRL_CLE
;
646 writel (ohci
->hc_control
, &ohci
->regs
->control
);
648 ohci
->ed_controltail
= edi
;
653 if (ohci
->ed_bulktail
== NULL
) {
654 writel (ed
, &ohci
->regs
->ed_bulkhead
);
656 ohci
->ed_bulktail
->hwNextED
= m32_swap ((unsigned long)ed
);
658 ed
->ed_prev
= ohci
->ed_bulktail
;
659 if (!ohci
->ed_bulktail
&& !ohci
->ed_rm_list
[0] &&
660 !ohci
->ed_rm_list
[1] && !ohci
->sleeping
) {
661 ohci
->hc_control
|= OHCI_CTRL_BLE
;
662 writel (ohci
->hc_control
, &ohci
->regs
->control
);
664 ohci
->ed_bulktail
= edi
;
669 interval
= ep_2_n_interval (ed
->int_period
);
670 ed
->int_interval
= interval
;
671 int_branch
= ep_int_ballance (ohci
, interval
, load
);
672 ed
->int_branch
= int_branch
;
674 for (i
= 0; i
< ep_rev (6, interval
); i
+= inter
) {
676 for (ed_p
= &(ohci
->hcca
->int_table
[ep_rev (5, i
) + int_branch
]);
677 (*ed_p
!= 0) && (((ed_t
*)ed_p
)->int_interval
>= interval
);
678 ed_p
= &(((ed_t
*)ed_p
)->hwNextED
))
679 inter
= ep_rev (6, ((ed_t
*)ed_p
)->int_interval
);
680 ed
->hwNextED
= *ed_p
;
681 *ed_p
= m32_swap((unsigned long)ed
);
688 /*-------------------------------------------------------------------------*/
690 /* scan the periodic table to find and unlink this ED */
691 static void periodic_unlink ( struct ohci
*ohci
, volatile struct ed
*ed
,
692 unsigned index
, unsigned period
)
694 for (; index
< NUM_INTS
; index
+= period
) {
695 __u32
*ed_p
= &ohci
->hcca
->int_table
[index
];
697 /* ED might have been unlinked through another path */
699 if (((struct ed
*)m32_swap ((unsigned long)ed_p
)) == ed
) {
700 *ed_p
= ed
->hwNextED
;
703 ed_p
= & (((struct ed
*)m32_swap ((unsigned long)ed_p
))->hwNextED
);
708 /* unlink an ed from one of the HC chains.
709 * just the link to the ed is unlinked.
710 * the link from the ed still points to another operational ed or 0
711 * so the HC can eventually finish the processing of the unlinked ed */
713 static int ep_unlink (ohci_t
*ohci
, ed_t
*edi
)
715 volatile ed_t
*ed
= edi
;
718 ed
->hwINFO
|= m32_swap (OHCI_ED_SKIP
);
722 if (ed
->ed_prev
== NULL
) {
724 ohci
->hc_control
&= ~OHCI_CTRL_CLE
;
725 writel (ohci
->hc_control
, &ohci
->regs
->control
);
727 writel (m32_swap (*((__u32
*)&ed
->hwNextED
)), &ohci
->regs
->ed_controlhead
);
729 ed
->ed_prev
->hwNextED
= ed
->hwNextED
;
731 if (ohci
->ed_controltail
== ed
) {
732 ohci
->ed_controltail
= ed
->ed_prev
;
734 ((ed_t
*)m32_swap (*((__u32
*)&ed
->hwNextED
)))->ed_prev
= ed
->ed_prev
;
739 if (ed
->ed_prev
== NULL
) {
741 ohci
->hc_control
&= ~OHCI_CTRL_BLE
;
742 writel (ohci
->hc_control
, &ohci
->regs
->control
);
744 writel (m32_swap (*((__u32
*)&ed
->hwNextED
)), &ohci
->regs
->ed_bulkhead
);
746 ed
->ed_prev
->hwNextED
= ed
->hwNextED
;
748 if (ohci
->ed_bulktail
== ed
) {
749 ohci
->ed_bulktail
= ed
->ed_prev
;
751 ((ed_t
*)m32_swap (*((__u32
*)&ed
->hwNextED
)))->ed_prev
= ed
->ed_prev
;
756 periodic_unlink (ohci
, ed
, 0, 1);
757 for (i
= ed
->int_branch
; i
< 32; i
+= ed
->int_interval
)
758 ohci
->ohci_int_load
[i
] -= ed
->int_load
;
761 ed
->state
= ED_UNLINK
;
765 /*-------------------------------------------------------------------------*/
767 /* add/reinit an endpoint; this should be done once at the
768 * usb_set_configuration command, but the USB stack is a little bit
769 * stateless so we do it at every transaction if the state of the ed
770 * is ED_NEW then a dummy td is added and the state is changed to
771 * ED_UNLINK in all other cases the state is left unchanged the ed
772 * info fields are setted anyway even though most of them should not
775 static ed_t
* ep_add_ed (struct usb_device
*usb_dev
, unsigned long pipe
,
776 int interval
, int load
)
782 ed
= ed_ret
= &ohci_dev
.ed
[(usb_pipeendpoint (pipe
) << 1) |
783 (usb_pipecontrol (pipe
)? 0: usb_pipeout (pipe
))];
785 if ((ed
->state
& ED_DEL
) || (ed
->state
& ED_URB_DEL
)) {
786 err("ep_add_ed: pending delete");
787 /* pending delete request */
791 if (ed
->state
== ED_NEW
) {
792 ed
->hwINFO
= m32_swap (OHCI_ED_SKIP
); /* skip ed */
793 /* dummy td; end of td list for ed */
794 td
= td_alloc (usb_dev
);
795 ed
->hwTailP
= m32_swap ((unsigned long)td
);
796 ed
->hwHeadP
= ed
->hwTailP
;
797 ed
->state
= ED_UNLINK
;
798 ed
->type
= usb_pipetype (pipe
);
802 ed
->hwINFO
= m32_swap (usb_pipedevice (pipe
)
803 | usb_pipeendpoint (pipe
) << 7
804 | (usb_pipeisoc (pipe
)? 0x8000: 0)
805 | (usb_pipecontrol (pipe
)? 0: (usb_pipeout (pipe
)? 0x800: 0x1000))
806 | usb_pipeslow (pipe
) << 13
807 | usb_maxpacket (usb_dev
, pipe
) << 16);
809 if (ed
->type
== PIPE_INTERRUPT
&& ed
->state
== ED_UNLINK
) {
810 ed
->int_period
= interval
;
817 /*-------------------------------------------------------------------------*
818 * TD handling functions
819 *-------------------------------------------------------------------------*/
821 /* enqueue next TD for this URB (OHCI spec 5.2.8.2) */
823 static void td_fill (ohci_t
*ohci
, unsigned int info
,
825 struct usb_device
*dev
, int index
, urb_priv_t
*urb_priv
)
827 volatile td_t
*td
, *td_pt
;
828 #ifdef OHCI_FILL_TRACE
832 if (index
> urb_priv
->length
) {
833 err("index > length");
836 /* use this td as the next dummy */
837 td_pt
= urb_priv
->td
[index
];
840 /* fill the old dummy TD */
841 td
= urb_priv
->td
[index
] = (td_t
*)(m32_swap (urb_priv
->ed
->hwTailP
) & ~0xf);
843 td
->ed
= urb_priv
->ed
;
844 td
->next_dl_td
= NULL
;
846 td
->data
= (__u32
)data
;
847 #ifdef OHCI_FILL_TRACE
848 if ((usb_pipetype(urb_priv
->pipe
) == PIPE_BULK
) && usb_pipeout(urb_priv
->pipe
)) {
849 for (i
= 0; i
< len
; i
++)
850 printf("td->data[%d] %#2x ",i
, ((unsigned char *)td
->data
)[i
]);
857 td
->hwINFO
= m32_swap (info
);
858 td
->hwCBP
= m32_swap ((unsigned long)data
);
860 td
->hwBE
= m32_swap ((unsigned long)(data
+ len
- 1));
863 td
->hwNextTD
= m32_swap ((unsigned long)td_pt
);
865 /* append to queue */
866 td
->ed
->hwTailP
= td
->hwNextTD
;
869 /*-------------------------------------------------------------------------*/
871 /* prepare all TDs of a transfer */
873 static void td_submit_job (struct usb_device
*dev
, unsigned long pipe
, void *buffer
,
874 int transfer_len
, struct devrequest
*setup
, urb_priv_t
*urb
, int interval
)
876 ohci_t
*ohci
= &gohci
;
877 int data_len
= transfer_len
;
881 unsigned int toggle
= 0;
883 /* OHCI handles the DATA-toggles itself, we just use the USB-toggle bits for reseting */
884 if(usb_gettoggle(dev
, usb_pipeendpoint(pipe
), usb_pipeout(pipe
))) {
885 toggle
= TD_T_TOGGLE
;
888 usb_settoggle(dev
, usb_pipeendpoint(pipe
), usb_pipeout(pipe
), 1);
896 switch (usb_pipetype (pipe
)) {
898 info
= usb_pipeout (pipe
)?
899 TD_CC
| TD_DP_OUT
: TD_CC
| TD_DP_IN
;
900 while(data_len
> 4096) {
901 td_fill (ohci
, info
| (cnt
? TD_T_TOGGLE
:toggle
), data
, 4096, dev
, cnt
, urb
);
902 data
+= 4096; data_len
-= 4096; cnt
++;
904 info
= usb_pipeout (pipe
)?
905 TD_CC
| TD_DP_OUT
: TD_CC
| TD_R
| TD_DP_IN
;
906 td_fill (ohci
, info
| (cnt
? TD_T_TOGGLE
:toggle
), data
, data_len
, dev
, cnt
, urb
);
910 writel (OHCI_BLF
, &ohci
->regs
->cmdstatus
); /* start bulk list */
914 info
= TD_CC
| TD_DP_SETUP
| TD_T_DATA0
;
915 td_fill (ohci
, info
, setup
, 8, dev
, cnt
++, urb
);
917 info
= usb_pipeout (pipe
)?
918 TD_CC
| TD_R
| TD_DP_OUT
| TD_T_DATA1
: TD_CC
| TD_R
| TD_DP_IN
| TD_T_DATA1
;
919 /* NOTE: mishandles transfers >8K, some >4K */
920 td_fill (ohci
, info
, data
, data_len
, dev
, cnt
++, urb
);
922 info
= usb_pipeout (pipe
)?
923 TD_CC
| TD_DP_IN
| TD_T_DATA1
: TD_CC
| TD_DP_OUT
| TD_T_DATA1
;
924 td_fill (ohci
, info
, data
, 0, dev
, cnt
++, urb
);
926 writel (OHCI_CLF
, &ohci
->regs
->cmdstatus
); /* start Control list */
930 info
= usb_pipeout (urb
->pipe
)?
931 TD_CC
| TD_DP_OUT
| toggle
:
932 TD_CC
| TD_R
| TD_DP_IN
| toggle
;
933 td_fill (ohci
, info
, data
, data_len
, dev
, cnt
++, urb
);
936 if (urb
->length
!= cnt
)
937 dbg("TD LENGTH %d != CNT %d", urb
->length
, cnt
);
940 /*-------------------------------------------------------------------------*
941 * Done List handling functions
942 *-------------------------------------------------------------------------*/
944 /* calculate the transfer length and update the urb */
946 static void dl_transfer_length(td_t
* td
)
948 __u32 tdINFO
, tdBE
, tdCBP
;
949 urb_priv_t
*lurb_priv
= td
->ed
->purb
;
951 tdINFO
= m32_swap (td
->hwINFO
);
952 tdBE
= m32_swap (td
->hwBE
);
953 tdCBP
= m32_swap (td
->hwCBP
);
955 if (!(usb_pipetype (lurb_priv
->pipe
) == PIPE_CONTROL
&&
956 ((td
->index
== 0) || (td
->index
== lurb_priv
->length
- 1)))) {
959 lurb_priv
->actual_length
+= tdBE
- td
->data
+ 1;
961 lurb_priv
->actual_length
+= tdCBP
- td
->data
;
966 /*-------------------------------------------------------------------------*/
968 /* replies to the request have to be on a FIFO basis so
969 * we reverse the reversed done-list */
971 static td_t
* dl_reverse_done_list (ohci_t
*ohci
)
975 td_t
*td_list
= NULL
;
976 urb_priv_t
*lurb_priv
= NULL
;
978 td_list_hc
= m32_swap (ohci
->hcca
->done_head
) & 0xfffffff0;
979 ohci
->hcca
->done_head
= 0;
982 td_list
= (td_t
*)td_list_hc
;
984 if (TD_CC_GET (m32_swap (td_list
->hwINFO
))) {
985 lurb_priv
= td_list
->ed
->purb
;
986 dbg(" USB-error/status: %x : %p",
987 TD_CC_GET (m32_swap (td_list
->hwINFO
)), td_list
);
988 if (td_list
->ed
->hwHeadP
& m32_swap (0x1)) {
989 if (lurb_priv
&& ((td_list
->index
+ 1) < lurb_priv
->length
)) {
990 td_list
->ed
->hwHeadP
=
991 (lurb_priv
->td
[lurb_priv
->length
- 1]->hwNextTD
& m32_swap (0xfffffff0)) |
992 (td_list
->ed
->hwHeadP
& m32_swap (0x2));
993 lurb_priv
->td_cnt
+= lurb_priv
->length
- td_list
->index
- 1;
995 td_list
->ed
->hwHeadP
&= m32_swap (0xfffffff2);
997 #ifdef CONFIG_MPC5200
998 td_list
->hwNextTD
= 0;
1002 td_list
->next_dl_td
= td_rev
;
1004 td_list_hc
= m32_swap (td_list
->hwNextTD
) & 0xfffffff0;
1009 /*-------------------------------------------------------------------------*/
1012 static int dl_done_list (ohci_t
*ohci
, td_t
*td_list
)
1014 td_t
*td_list_next
= NULL
;
1019 urb_priv_t
*lurb_priv
;
1020 __u32 tdINFO
, edHeadP
, edTailP
;
1023 td_list_next
= td_list
->next_dl_td
;
1025 tdINFO
= m32_swap (td_list
->hwINFO
);
1028 lurb_priv
= ed
->purb
;
1030 dl_transfer_length(td_list
);
1032 /* error code of transfer */
1033 cc
= TD_CC_GET (tdINFO
);
1035 dbg("ConditionCode %#x", cc
);
1036 stat
= cc_to_error
[cc
];
1039 /* see if this done list makes for all TD's of current URB,
1040 * and mark the URB finished if so */
1041 if (++(lurb_priv
->td_cnt
) == lurb_priv
->length
) {
1043 if ((ed
->state
& (ED_OPER
| ED_UNLINK
)) &&
1044 (lurb_priv
->state
!= URB_DEL
))
1046 if ((ed
->state
& (ED_OPER
| ED_UNLINK
)))
1048 lurb_priv
->finished
= sohci_return_job(ohci
,
1051 dbg("dl_done_list: strange.., ED state %x, ed->state\n");
1053 dbg("dl_done_list: processing TD %x, len %x\n", lurb_priv
->td_cnt
,
1055 if (ed
->state
!= ED_NEW
&&
1056 (usb_pipetype (lurb_priv
->pipe
) != PIPE_INTERRUPT
)) {
1057 edHeadP
= m32_swap (ed
->hwHeadP
) & 0xfffffff0;
1058 edTailP
= m32_swap (ed
->hwTailP
);
1060 /* unlink eds if they are not busy */
1061 if ((edHeadP
== edTailP
) && (ed
->state
== ED_OPER
))
1062 ep_unlink (ohci
, ed
);
1065 td_list
= td_list_next
;
1070 /*-------------------------------------------------------------------------*
1072 *-------------------------------------------------------------------------*/
1074 /* Device descriptor */
1075 static __u8 root_hub_dev_des
[] =
1077 0x12, /* __u8 bLength; */
1078 0x01, /* __u8 bDescriptorType; Device */
1079 0x10, /* __u16 bcdUSB; v1.1 */
1081 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
1082 0x00, /* __u8 bDeviceSubClass; */
1083 0x00, /* __u8 bDeviceProtocol; */
1084 0x08, /* __u8 bMaxPacketSize0; 8 Bytes */
1085 0x00, /* __u16 idVendor; */
1087 0x00, /* __u16 idProduct; */
1089 0x00, /* __u16 bcdDevice; */
1091 0x00, /* __u8 iManufacturer; */
1092 0x01, /* __u8 iProduct; */
1093 0x00, /* __u8 iSerialNumber; */
1094 0x01 /* __u8 bNumConfigurations; */
1097 /* Configuration descriptor */
1098 static __u8 root_hub_config_des
[] =
1100 0x09, /* __u8 bLength; */
1101 0x02, /* __u8 bDescriptorType; Configuration */
1102 0x19, /* __u16 wTotalLength; */
1104 0x01, /* __u8 bNumInterfaces; */
1105 0x01, /* __u8 bConfigurationValue; */
1106 0x00, /* __u8 iConfiguration; */
1107 0x40, /* __u8 bmAttributes;
1108 Bit 7: Bus-powered, 6: Self-powered, 5 Remote-wakwup, 4..0: resvd */
1109 0x00, /* __u8 MaxPower; */
1112 0x09, /* __u8 if_bLength; */
1113 0x04, /* __u8 if_bDescriptorType; Interface */
1114 0x00, /* __u8 if_bInterfaceNumber; */
1115 0x00, /* __u8 if_bAlternateSetting; */
1116 0x01, /* __u8 if_bNumEndpoints; */
1117 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
1118 0x00, /* __u8 if_bInterfaceSubClass; */
1119 0x00, /* __u8 if_bInterfaceProtocol; */
1120 0x00, /* __u8 if_iInterface; */
1123 0x07, /* __u8 ep_bLength; */
1124 0x05, /* __u8 ep_bDescriptorType; Endpoint */
1125 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
1126 0x03, /* __u8 ep_bmAttributes; Interrupt */
1127 0x02, /* __u16 ep_wMaxPacketSize; ((MAX_ROOT_PORTS + 1) / 8 */
1129 0xff /* __u8 ep_bInterval; 255 ms */
1132 static unsigned char root_hub_str_index0
[] =
1134 0x04, /* __u8 bLength; */
1135 0x03, /* __u8 bDescriptorType; String-descriptor */
1136 0x09, /* __u8 lang ID */
1137 0x04, /* __u8 lang ID */
1140 static unsigned char root_hub_str_index1
[] =
1142 28, /* __u8 bLength; */
1143 0x03, /* __u8 bDescriptorType; String-descriptor */
1144 'O', /* __u8 Unicode */
1145 0, /* __u8 Unicode */
1146 'H', /* __u8 Unicode */
1147 0, /* __u8 Unicode */
1148 'C', /* __u8 Unicode */
1149 0, /* __u8 Unicode */
1150 'I', /* __u8 Unicode */
1151 0, /* __u8 Unicode */
1152 ' ', /* __u8 Unicode */
1153 0, /* __u8 Unicode */
1154 'R', /* __u8 Unicode */
1155 0, /* __u8 Unicode */
1156 'o', /* __u8 Unicode */
1157 0, /* __u8 Unicode */
1158 'o', /* __u8 Unicode */
1159 0, /* __u8 Unicode */
1160 't', /* __u8 Unicode */
1161 0, /* __u8 Unicode */
1162 ' ', /* __u8 Unicode */
1163 0, /* __u8 Unicode */
1164 'H', /* __u8 Unicode */
1165 0, /* __u8 Unicode */
1166 'u', /* __u8 Unicode */
1167 0, /* __u8 Unicode */
1168 'b', /* __u8 Unicode */
1169 0, /* __u8 Unicode */
1172 /* Hub class-specific descriptor is constructed dynamically */
1174 /*-------------------------------------------------------------------------*/
1176 #define OK(x) len = (x); break
1178 #define WR_RH_STAT(x) {info("WR:status %#8x", (x));writel((x), &gohci.regs->roothub.status);}
1179 #define WR_RH_PORTSTAT(x) {info("WR:portstatus[%d] %#8x", wIndex-1, (x));writel((x), &gohci.regs->roothub.portstatus[wIndex-1]);}
1181 #define WR_RH_STAT(x) writel((x), &gohci.regs->roothub.status)
1182 #define WR_RH_PORTSTAT(x) writel((x), &gohci.regs->roothub.portstatus[wIndex-1])
1184 #define RD_RH_STAT roothub_status(&gohci)
1185 #define RD_RH_PORTSTAT roothub_portstatus(&gohci,wIndex-1)
1187 /* request to virtual root hub */
1189 int rh_check_port_status(ohci_t
*controller
)
1195 temp
= roothub_a (controller
);
1196 ndp
= (temp
& RH_A_NDP
);
1197 #ifdef CONFIG_AT91C_PQFP_UHPBUG
1198 ndp
= (ndp
== 2) ? 1:0;
1200 for (i
= 0; i
< ndp
; i
++) {
1201 temp
= roothub_portstatus (controller
, i
);
1202 /* check for a device disconnect */
1203 if (((temp
& (RH_PS_PESC
| RH_PS_CSC
)) ==
1204 (RH_PS_PESC
| RH_PS_CSC
)) &&
1205 ((temp
& RH_PS_CCS
) == 0)) {
1213 static int ohci_submit_rh_msg(struct usb_device
*dev
, unsigned long pipe
,
1214 void *buffer
, int transfer_len
, struct devrequest
*cmd
)
1216 void * data
= buffer
;
1217 int leni
= transfer_len
;
1221 __u8
*data_buf
= (__u8
*)datab
;
1228 pkt_print(NULL
, dev
, pipe
, buffer
, transfer_len
, cmd
, "SUB(rh)", usb_pipein(pipe
));
1232 if ((pipe
& PIPE_INTERRUPT
) == PIPE_INTERRUPT
) {
1233 info("Root-Hub submit IRQ: NOT implemented");
1237 bmRType_bReq
= cmd
->requesttype
| (cmd
->request
<< 8);
1238 wValue
= cpu_to_le16 (cmd
->value
);
1239 wIndex
= cpu_to_le16 (cmd
->index
);
1240 wLength
= cpu_to_le16 (cmd
->length
);
1242 info("Root-Hub: adr: %2x cmd(%1x): %08x %04x %04x %04x",
1243 dev
->devnum
, 8, bmRType_bReq
, wValue
, wIndex
, wLength
);
1245 switch (bmRType_bReq
) {
1246 /* Request Destination:
1247 without flags: Device,
1248 RH_INTERFACE: interface,
1249 RH_ENDPOINT: endpoint,
1250 RH_CLASS means HUB here,
1251 RH_OTHER | RH_CLASS almost ever means HUB_PORT here
1255 *(__u16
*) data_buf
= cpu_to_le16 (1); OK (2);
1256 case RH_GET_STATUS
| RH_INTERFACE
:
1257 *(__u16
*) data_buf
= cpu_to_le16 (0); OK (2);
1258 case RH_GET_STATUS
| RH_ENDPOINT
:
1259 *(__u16
*) data_buf
= cpu_to_le16 (0); OK (2);
1260 case RH_GET_STATUS
| RH_CLASS
:
1261 *(__u32
*) data_buf
= cpu_to_le32 (
1262 RD_RH_STAT
& ~(RH_HS_CRWE
| RH_HS_DRWE
));
1264 case RH_GET_STATUS
| RH_OTHER
| RH_CLASS
:
1265 *(__u32
*) data_buf
= cpu_to_le32 (RD_RH_PORTSTAT
); OK (4);
1267 case RH_CLEAR_FEATURE
| RH_ENDPOINT
:
1269 case (RH_ENDPOINT_STALL
): OK (0);
1273 case RH_CLEAR_FEATURE
| RH_CLASS
:
1275 case RH_C_HUB_LOCAL_POWER
:
1277 case (RH_C_HUB_OVER_CURRENT
):
1278 WR_RH_STAT(RH_HS_OCIC
); OK (0);
1282 case RH_CLEAR_FEATURE
| RH_OTHER
| RH_CLASS
:
1284 case (RH_PORT_ENABLE
):
1285 WR_RH_PORTSTAT (RH_PS_CCS
); OK (0);
1286 case (RH_PORT_SUSPEND
):
1287 WR_RH_PORTSTAT (RH_PS_POCI
); OK (0);
1288 case (RH_PORT_POWER
):
1289 WR_RH_PORTSTAT (RH_PS_LSDA
); OK (0);
1290 case (RH_C_PORT_CONNECTION
):
1291 WR_RH_PORTSTAT (RH_PS_CSC
); OK (0);
1292 case (RH_C_PORT_ENABLE
):
1293 WR_RH_PORTSTAT (RH_PS_PESC
); OK (0);
1294 case (RH_C_PORT_SUSPEND
):
1295 WR_RH_PORTSTAT (RH_PS_PSSC
); OK (0);
1296 case (RH_C_PORT_OVER_CURRENT
):
1297 WR_RH_PORTSTAT (RH_PS_OCIC
); OK (0);
1298 case (RH_C_PORT_RESET
):
1299 WR_RH_PORTSTAT (RH_PS_PRSC
); OK (0);
1303 case RH_SET_FEATURE
| RH_OTHER
| RH_CLASS
:
1305 case (RH_PORT_SUSPEND
):
1306 WR_RH_PORTSTAT (RH_PS_PSS
); OK (0);
1307 case (RH_PORT_RESET
): /* BUG IN HUP CODE *********/
1308 if (RD_RH_PORTSTAT
& RH_PS_CCS
)
1309 WR_RH_PORTSTAT (RH_PS_PRS
);
1311 case (RH_PORT_POWER
):
1312 WR_RH_PORTSTAT (RH_PS_PPS
);
1315 case (RH_PORT_ENABLE
): /* BUG IN HUP CODE *********/
1316 if (RD_RH_PORTSTAT
& RH_PS_CCS
)
1317 WR_RH_PORTSTAT (RH_PS_PES
);
1322 case RH_SET_ADDRESS
: gohci
.rh
.devnum
= wValue
; OK(0);
1324 case RH_GET_DESCRIPTOR
:
1325 switch ((wValue
& 0xff00) >> 8) {
1326 case (0x01): /* device descriptor */
1327 len
= min_t(unsigned int,
1330 sizeof (root_hub_dev_des
),
1332 data_buf
= root_hub_dev_des
; OK(len
);
1333 case (0x02): /* configuration descriptor */
1334 len
= min_t(unsigned int,
1337 sizeof (root_hub_config_des
),
1339 data_buf
= root_hub_config_des
; OK(len
);
1340 case (0x03): /* string descriptors */
1341 if(wValue
==0x0300) {
1342 len
= min_t(unsigned int,
1345 sizeof (root_hub_str_index0
),
1347 data_buf
= root_hub_str_index0
;
1350 if(wValue
==0x0301) {
1351 len
= min_t(unsigned int,
1354 sizeof (root_hub_str_index1
),
1356 data_buf
= root_hub_str_index1
;
1360 stat
= USB_ST_STALLED
;
1364 case RH_GET_DESCRIPTOR
| RH_CLASS
:
1366 __u32 temp
= roothub_a (&gohci
);
1368 data_buf
[0] = 9; /* min length; */
1369 data_buf
[1] = 0x29;
1370 data_buf
[2] = temp
& RH_A_NDP
;
1371 #ifdef CONFIG_AT91C_PQFP_UHPBUG
1372 data_buf
[2] = (data_buf
[2] == 2) ? 1:0;
1375 if (temp
& RH_A_PSM
) /* per-port power switching? */
1376 data_buf
[3] |= 0x1;
1377 if (temp
& RH_A_NOCP
) /* no overcurrent reporting? */
1378 data_buf
[3] |= 0x10;
1379 else if (temp
& RH_A_OCPM
) /* per-port overcurrent reporting? */
1380 data_buf
[3] |= 0x8;
1382 /* corresponds to data_buf[4-7] */
1384 data_buf
[5] = (temp
& RH_A_POTPGT
) >> 24;
1385 temp
= roothub_b (&gohci
);
1386 data_buf
[7] = temp
& RH_B_DR
;
1387 if (data_buf
[2] < 7) {
1388 data_buf
[8] = 0xff;
1391 data_buf
[8] = (temp
& RH_B_DR
) >> 8;
1392 data_buf
[10] = data_buf
[9] = 0xff;
1395 len
= min_t(unsigned int, leni
,
1396 min_t(unsigned int, data_buf
[0], wLength
));
1400 case RH_GET_CONFIGURATION
: *(__u8
*) data_buf
= 0x01; OK (1);
1402 case RH_SET_CONFIGURATION
: WR_RH_STAT (0x10000); OK (0);
1405 dbg ("unsupported root hub command");
1406 stat
= USB_ST_STALLED
;
1410 ohci_dump_roothub (&gohci
, 1);
1415 len
= min_t(int, len
, leni
);
1416 if (data
!= data_buf
)
1417 memcpy (data
, data_buf
, len
);
1422 pkt_print(NULL
, dev
, pipe
, buffer
, transfer_len
, cmd
, "RET(rh)", 0/*usb_pipein(pipe)*/);
1430 /*-------------------------------------------------------------------------*/
1432 /* common code for handling submit messages - used for all but root hub */
1434 int submit_common_msg(struct usb_device
*dev
, unsigned long pipe
, void *buffer
,
1435 int transfer_len
, struct devrequest
*setup
, int interval
)
1438 int maxsize
= usb_maxpacket(dev
, pipe
);
1442 urb
= malloc(sizeof(urb_priv_t
));
1443 memset(urb
, 0, sizeof(urb_priv_t
));
1447 urb
->transfer_buffer
= buffer
;
1448 urb
->transfer_buffer_length
= transfer_len
;
1449 urb
->interval
= interval
;
1451 /* device pulled? Shortcut the action. */
1452 if (devgone
== dev
) {
1453 dev
->status
= USB_ST_CRC_ERR
;
1458 urb
->actual_length
= 0;
1459 pkt_print(urb
, dev
, pipe
, buffer
, transfer_len
, setup
, "SUB", usb_pipein(pipe
));
1464 err("submit_common_message: pipesize for pipe %lx is zero",
1469 if (sohci_submit_job(urb
, setup
) < 0) {
1470 err("sohci_submit_job failed");
1476 /* ohci_dump_status(&gohci); */
1479 /* allow more time for a BULK device to react - some are slow */
1480 #define BULK_TO 5000 /* timeout in milliseconds */
1481 if (usb_pipetype (pipe
) == PIPE_BULK
)
1486 /* wait for it to complete */
1488 /* check whether the controller is done */
1489 stat
= hc_interrupt();
1491 stat
= USB_ST_CRC_ERR
;
1495 /* NOTE: since we are not interrupt driven in U-Boot and always
1496 * handle only one URB at a time, we cannot assume the
1497 * transaction finished on the first successful return from
1498 * hc_interrupt().. unless the flag for current URB is set,
1499 * meaning that all TD's to/from device got actually
1500 * transferred and processed. If the current URB is not
1501 * finished we need to re-iterate this loop so as
1502 * hc_interrupt() gets called again as there needs to be some
1503 * more TD's to process still */
1504 if ((stat
>= 0) && (stat
!= 0xff) && (urb
->finished
)) {
1505 /* 0xff is returned for an SF-interrupt */
1515 err("CTL:TIMEOUT ");
1516 dbg("submit_common_msg: TO status %x\n", stat
);
1518 stat
= USB_ST_CRC_ERR
;
1524 dev
->act_len
= transfer_len
;
1527 pkt_print(urb
, dev
, pipe
, buffer
, transfer_len
, setup
, "RET(ctlr)", usb_pipein(pipe
));
1532 /* free TDs in urb_priv */
1533 if (usb_pipetype (pipe
) != PIPE_INTERRUPT
)
1534 urb_free_priv (urb
);
1538 /* submit routines called from usb.c */
1539 int submit_bulk_msg(struct usb_device
*dev
, unsigned long pipe
, void *buffer
,
1542 info("submit_bulk_msg");
1543 return submit_common_msg(dev
, pipe
, buffer
, transfer_len
, NULL
, 0);
1546 int submit_control_msg(struct usb_device
*dev
, unsigned long pipe
, void *buffer
,
1547 int transfer_len
, struct devrequest
*setup
)
1549 int maxsize
= usb_maxpacket(dev
, pipe
);
1551 info("submit_control_msg");
1553 pkt_print(NULL
, dev
, pipe
, buffer
, transfer_len
, setup
, "SUB", usb_pipein(pipe
));
1558 err("submit_control_message: pipesize for pipe %lx is zero",
1562 if (((pipe
>> 8) & 0x7f) == gohci
.rh
.devnum
) {
1564 /* root hub - redirect */
1565 return ohci_submit_rh_msg(dev
, pipe
, buffer
, transfer_len
,
1569 return submit_common_msg(dev
, pipe
, buffer
, transfer_len
, setup
, 0);
1572 int submit_int_msg(struct usb_device
*dev
, unsigned long pipe
, void *buffer
,
1573 int transfer_len
, int interval
)
1575 info("submit_int_msg");
1576 return submit_common_msg(dev
, pipe
, buffer
, transfer_len
, NULL
,
1580 /*-------------------------------------------------------------------------*
1582 *-------------------------------------------------------------------------*/
1584 /* reset the HC and BUS */
1586 static int hc_reset (ohci_t
*ohci
)
1589 int smm_timeout
= 50; /* 0,5 sec */
1591 dbg("%s\n", __FUNCTION__
);
1593 if (readl (&ohci
->regs
->control
) & OHCI_CTRL_IR
) { /* SMM owns the HC */
1594 writel (OHCI_OCR
, &ohci
->regs
->cmdstatus
); /* request ownership */
1595 info("USB HC TakeOver from SMM");
1596 while (readl (&ohci
->regs
->control
) & OHCI_CTRL_IR
) {
1598 if (--smm_timeout
== 0) {
1599 err("USB HC TakeOver failed!");
1605 /* Disable HC interrupts */
1606 writel (OHCI_INTR_MIE
, &ohci
->regs
->intrdisable
);
1608 dbg("USB HC reset_hc usb-%s: ctrl = 0x%X ;\n",
1610 readl(&ohci
->regs
->control
));
1612 /* Reset USB (needed by some controllers) */
1613 ohci
->hc_control
= 0;
1614 writel (ohci
->hc_control
, &ohci
->regs
->control
);
1616 /* HC Reset requires max 10 us delay */
1617 writel (OHCI_HCR
, &ohci
->regs
->cmdstatus
);
1618 while ((readl (&ohci
->regs
->cmdstatus
) & OHCI_HCR
) != 0) {
1619 if (--timeout
== 0) {
1620 err("USB HC reset timed out!");
1628 /*-------------------------------------------------------------------------*/
1630 /* Start an OHCI controller, set the BUS operational
1632 * connect the virtual root hub */
1634 static int hc_start (ohci_t
* ohci
)
1637 unsigned int fminterval
;
1641 /* Tell the controller where the control and bulk lists are
1642 * The lists are empty now. */
1644 writel (0, &ohci
->regs
->ed_controlhead
);
1645 writel (0, &ohci
->regs
->ed_bulkhead
);
1647 writel ((__u32
)ohci
->hcca
, &ohci
->regs
->hcca
); /* a reset clears this */
1649 fminterval
= 0x2edf;
1650 writel ((fminterval
* 9) / 10, &ohci
->regs
->periodicstart
);
1651 fminterval
|= ((((fminterval
- 210) * 6) / 7) << 16);
1652 writel (fminterval
, &ohci
->regs
->fminterval
);
1653 writel (0x628, &ohci
->regs
->lsthresh
);
1655 /* start controller operations */
1656 ohci
->hc_control
= OHCI_CONTROL_INIT
| OHCI_USB_OPER
;
1658 writel (ohci
->hc_control
, &ohci
->regs
->control
);
1660 /* disable all interrupts */
1661 mask
= (OHCI_INTR_SO
| OHCI_INTR_WDH
| OHCI_INTR_SF
| OHCI_INTR_RD
|
1662 OHCI_INTR_UE
| OHCI_INTR_FNO
| OHCI_INTR_RHSC
|
1663 OHCI_INTR_OC
| OHCI_INTR_MIE
);
1664 writel (mask
, &ohci
->regs
->intrdisable
);
1665 /* clear all interrupts */
1666 mask
&= ~OHCI_INTR_MIE
;
1667 writel (mask
, &ohci
->regs
->intrstatus
);
1668 /* Choose the interrupts we care about now - but w/o MIE */
1669 mask
= OHCI_INTR_RHSC
| OHCI_INTR_UE
| OHCI_INTR_WDH
| OHCI_INTR_SO
;
1670 writel (mask
, &ohci
->regs
->intrenable
);
1673 /* required for AMD-756 and some Mac platforms */
1674 writel ((roothub_a (ohci
) | RH_A_NPS
) & ~RH_A_PSM
,
1675 &ohci
->regs
->roothub
.a
);
1676 writel (RH_HS_LPSC
, &ohci
->regs
->roothub
.status
);
1677 #endif /* OHCI_USE_NPS */
1679 #define mdelay(n) ({unsigned long msec=(n); while (msec--) udelay(1000);})
1680 /* POTPGT delay is bits 24-31, in 2 ms units. */
1681 mdelay ((roothub_a (ohci
) >> 23) & 0x1fe);
1683 /* connect the virtual root hub */
1684 ohci
->rh
.devnum
= 0;
1689 /*-------------------------------------------------------------------------*/
1691 /* Poll USB interrupt. */
1692 void usb_event_poll(void)
1697 /* an interrupt happens */
1699 static int hc_interrupt (void)
1701 ohci_t
*ohci
= &gohci
;
1702 struct ohci_regs
*regs
= ohci
->regs
;
1706 if ((ohci
->hcca
->done_head
!= 0) &&
1707 !(m32_swap (ohci
->hcca
->done_head
) & 0x01)) {
1708 ints
= OHCI_INTR_WDH
;
1709 } else if ((ints
= readl (®s
->intrstatus
)) == ~(u32
)0) {
1711 err ("%s device removed!", ohci
->slot_name
);
1713 } else if ((ints
&= readl (®s
->intrenable
)) == 0) {
1714 dbg("hc_interrupt: returning..\n");
1718 /* dbg("Interrupt: %x frame: %x", ints, le16_to_cpu (ohci->hcca->frame_no)); */
1720 if (ints
& OHCI_INTR_RHSC
) {
1725 if (ints
& OHCI_INTR_UE
) {
1727 err ("OHCI Unrecoverable Error, controller usb-%s disabled",
1729 /* e.g. due to PCI Master/Target Abort */
1732 ohci_dump (ohci
, 1);
1736 /* FIXME: be optimistic, hope that bug won't repeat often. */
1737 /* Make some non-interrupt context restart the controller. */
1738 /* Count and limit the retries though; either hardware or */
1739 /* software errors can go forever... */
1744 if (ints
& OHCI_INTR_WDH
) {
1746 writel (OHCI_INTR_WDH
, ®s
->intrdisable
);
1747 (void)readl (®s
->intrdisable
); /* flush */
1748 stat
= dl_done_list (&gohci
, dl_reverse_done_list (&gohci
));
1749 writel (OHCI_INTR_WDH
, ®s
->intrenable
);
1750 (void)readl (®s
->intrdisable
); /* flush */
1753 if (ints
& OHCI_INTR_SO
) {
1754 dbg("USB Schedule overrun\n");
1755 writel (OHCI_INTR_SO
, ®s
->intrenable
);
1759 /* FIXME: this assumes SOF (1/ms) interrupts don't get lost... */
1760 if (ints
& OHCI_INTR_SF
) {
1761 unsigned int frame
= m16_swap (ohci
->hcca
->frame_no
) & 1;
1763 writel (OHCI_INTR_SF
, ®s
->intrdisable
);
1764 if (ohci
->ed_rm_list
[frame
] != NULL
)
1765 writel (OHCI_INTR_SF
, ®s
->intrenable
);
1769 writel (ints
, ®s
->intrstatus
);
1773 /*-------------------------------------------------------------------------*/
1775 /*-------------------------------------------------------------------------*/
1777 /* De-allocate all resources.. */
1779 static void hc_release_ohci (ohci_t
*ohci
)
1781 dbg ("USB HC release ohci usb-%s", ohci
->slot_name
);
1783 if (!ohci
->disabled
)
1787 /*-------------------------------------------------------------------------*/
1790 * low level initalisation routine, called from usb.c
1792 static char ohci_inited
= 0;
1794 int usb_lowlevel_init(void)
1796 #ifdef CONFIG_PCI_OHCI
1800 #ifdef CFG_USB_OHCI_CPU_INIT
1801 /* cpu dependant init */
1806 #ifdef CFG_USB_OHCI_BOARD_INIT
1807 /* board dependant init */
1808 if(usb_board_init())
1811 memset (&gohci
, 0, sizeof (ohci_t
));
1813 /* align the storage */
1814 if ((__u32
)&ghcca
[0] & 0xff) {
1815 err("HCCA not aligned!!");
1819 info("aligned ghcca %p", phcca
);
1820 memset(&ohci_dev
, 0, sizeof(struct ohci_device
));
1821 if ((__u32
)&ohci_dev
.ed
[0] & 0x7) {
1822 err("EDs not aligned!!");
1825 memset(gtd
, 0, sizeof(td_t
) * (NUM_TD
+ 1));
1826 if ((__u32
)gtd
& 0x7) {
1827 err("TDs not aligned!!");
1832 memset (phcca
, 0, sizeof (struct ohci_hcca
));
1837 #ifdef CONFIG_PCI_OHCI
1838 pdev
= pci_find_devices(ohci_pci_ids
, 0);
1843 pci_read_config_word(pdev
, PCI_VENDOR_ID
, &vid
);
1844 pci_read_config_word(pdev
, PCI_DEVICE_ID
, &did
);
1845 printf("OHCI pci controller (%04x, %04x) found @(%d:%d:%d)\n",
1846 vid
, did
, (pdev
>> 16) & 0xff,
1847 (pdev
>> 11) & 0x1f, (pdev
>> 8) & 0x7);
1848 pci_read_config_dword(pdev
, PCI_BASE_ADDRESS_0
, &base
);
1849 printf("OHCI regs address 0x%08x\n", base
);
1850 gohci
.regs
= (struct ohci_regs
*)base
;
1854 gohci
.regs
= (struct ohci_regs
*)CFG_USB_OHCI_REGS_BASE
;
1858 gohci
.slot_name
= CFG_USB_OHCI_SLOT_NAME
;
1860 if (hc_reset (&gohci
) < 0) {
1861 hc_release_ohci (&gohci
);
1862 err ("can't reset usb-%s", gohci
.slot_name
);
1863 #ifdef CFG_USB_OHCI_BOARD_INIT
1864 /* board dependant cleanup */
1865 usb_board_init_fail();
1868 #ifdef CFG_USB_OHCI_CPU_INIT
1869 /* cpu dependant cleanup */
1870 usb_cpu_init_fail();
1875 /* FIXME this is a second HC reset; why?? */
1876 /* writel(gohci.hc_control = OHCI_USB_RESET, &gohci.regs->control);
1878 if (hc_start (&gohci
) < 0) {
1879 err ("can't start usb-%s", gohci
.slot_name
);
1880 hc_release_ohci (&gohci
);
1881 /* Initialization failed */
1882 #ifdef CFG_USB_OHCI_BOARD_INIT
1883 /* board dependant cleanup */
1887 #ifdef CFG_USB_OHCI_CPU_INIT
1888 /* cpu dependant cleanup */
1895 ohci_dump (&gohci
, 1);
1903 int usb_lowlevel_stop(void)
1905 /* this gets called really early - before the controller has */
1906 /* even been initialized! */
1909 /* TODO release any interrupts, etc. */
1910 /* call hc_release_ohci() here ? */
1913 #ifdef CFG_USB_OHCI_BOARD_INIT
1914 /* board dependant cleanup */
1915 if(usb_board_stop())
1919 #ifdef CFG_USB_OHCI_CPU_INIT
1920 /* cpu dependant cleanup */
1927 #endif /* CONFIG_USB_OHCI_NEW */