blob: 829bbcae3a011c41784da55764ee900dcca509a5 [file] [log] [blame]
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001/*
Zhang Wei8d15efa2007-06-06 10:08:14 +02002 * URB OHCI HCD (Host Controller Driver) for USB on the AT91RM9200 and PCI bus.
3 *
4 * Interrupt support is added. Now, it has been tested
5 * on ULI1575 chip and works well with USB keyboard.
6 *
7 * (C) Copyright 2007
8 * Zhang Wei, Freescale Semiconductor, Inc. <wei.zhang@freescale.com>
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02009 *
10 * (C) Copyright 2003
11 * Gary Jennejohn, DENX Software Engineering <gj@denx.de>
12 *
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
16 *
17 * Modified for the MP2USB by (C) Copyright 2005 Eric Benard
18 * ebenard@eukrea.com - based on s3c24x0's driver
19 *
20 * See file CREDITS for list of people who contributed to this
21 * project.
22 *
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.
27 *
28 * This program is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Markus Klotzbuecheraa219212006-05-30 16:56:14 +020030 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +020031 * GNU General Public License for more details.
32 *
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,
36 * MA 02111-1307 USA
37 *
38 */
39/*
40 * IMPORTANT NOTES
Markus Klotzbuecher18f5ccb2007-06-06 11:49:35 +020041 * 1 - Read doc/README.generic_usb_ohci
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +020042 * 2 - this driver is intended for use with USB Mass Storage Devices
Zhang Wei8d15efa2007-06-06 10:08:14 +020043 * (BBB) and USB keyboard. There is NO support for Isochronous pipes!
Markus Klotzbuecher18f5ccb2007-06-06 11:49:35 +020044 * 2 - when running on a PQFP208 AT91RM9200, define CONFIG_AT91C_PQFP_UHPBUG
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +020045 * to activate workaround for bug #41 or this driver will NOT work!
46 */
47
48#include <common.h>
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +020049
Markus Klotzbuecher43c8b312006-11-27 11:44:58 +010050#ifdef CONFIG_USB_OHCI_NEW
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +020051
Markus Klotzbuecher18f5ccb2007-06-06 11:49:35 +020052#include <asm/byteorder.h>
53
54#if defined(CONFIG_PCI_OHCI)
Zhang Wei8d15efa2007-06-06 10:08:14 +020055# include <pci.h>
Markus Klotzbuecheraa219212006-05-30 16:56:14 +020056#endif
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +020057
58#include <malloc.h>
59#include <usb.h>
60#include "usb_ohci.h"
61
Wolfgang Denkdcac38b2007-11-19 12:59:14 +010062#ifdef CONFIG_AT91RM9200
63#include <asm/arch/hardware.h> /* needed for AT91_USB_HOST_BASE */
64#endif
65
Markus Klotzbuecheraa219212006-05-30 16:56:14 +020066#if defined(CONFIG_ARM920T) || \
67 defined(CONFIG_S3C2400) || \
Markus Klotzbuecherd209de62006-11-27 11:46:46 +010068 defined(CONFIG_S3C2410) || \
69 defined(CONFIG_440EP) || \
Zhang Wei8d15efa2007-06-06 10:08:14 +020070 defined(CONFIG_PCI_OHCI) || \
Stefan Roese41e74eb2008-03-05 12:29:32 +010071 defined(CONFIG_MPC5200) || \
72 defined(CFG_OHCI_USE_NPS)
Markus Klotzbuecher98095512006-05-23 10:33:11 +020073# define OHCI_USE_NPS /* force NoPowerSwitching mode */
74#endif
75
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +020076#undef OHCI_VERBOSE_DEBUG /* not always helpful */
Markus Klotzbuecherd209de62006-11-27 11:46:46 +010077#undef DEBUG
78#undef SHOW_INFO
79#undef OHCI_FILL_TRACE
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +020080
81/* For initializing controller (mask in an HCFS mode too) */
82#define OHCI_CONTROL_INIT \
83 (OHCI_CTRL_CBSR & 0x3) | OHCI_CTRL_IE | OHCI_CTRL_PLE
84
Markus Klotzbuecher18f5ccb2007-06-06 11:49:35 +020085/*
86 * e.g. PCI controllers need this
87 */
88#ifdef CFG_OHCI_SWAP_REG_ACCESS
Jason Jin3c701fb2007-06-11 15:14:24 +020089# define readl(a) __swap_32(*((vu_long *)(a)))
Markus Klotzbuecher18f5ccb2007-06-06 11:49:35 +020090# define writel(a, b) (*((vu_long *)(b)) = __swap_32((vu_long)a))
91#else
92# define readl(a) (*((vu_long *)(a)))
93# define writel(a, b) (*((vu_long *)(b)) = ((vu_long)a))
94#endif /* CFG_OHCI_SWAP_REG_ACCESS */
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +020095
96#define min_t(type,x,y) ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
97
Zhang Wei8d15efa2007-06-06 10:08:14 +020098#ifdef CONFIG_PCI_OHCI
99static struct pci_device_id ohci_pci_ids[] = {
100 {0x10b9, 0x5237}, /* ULI1575 PCI OHCI module ids */
David Saadae3b28422007-09-17 17:04:47 +0200101 {0x1033, 0x0035}, /* NEC PCI OHCI module ids */
TsiChung Liew923f43a2008-01-11 20:42:58 -0600102 {0x1131, 0x1561}, /* Philips 1561 PCI OHCI module ids */
Zhang Wei8d15efa2007-06-06 10:08:14 +0200103 /* Please add supported PCI OHCI controller ids here */
104 {0, 0}
105};
106#endif
107
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200108#ifdef DEBUG
109#define dbg(format, arg...) printf("DEBUG: " format "\n", ## arg)
110#else
111#define dbg(format, arg...) do {} while(0)
112#endif /* DEBUG */
113#define err(format, arg...) printf("ERROR: " format "\n", ## arg)
114#undef SHOW_INFO
115#ifdef SHOW_INFO
116#define info(format, arg...) printf("INFO: " format "\n", ## arg)
117#else
118#define info(format, arg...) do {} while(0)
119#endif
120
Markus Klotzbuecher18f5ccb2007-06-06 11:49:35 +0200121#ifdef CFG_OHCI_BE_CONTROLLER
122# define m16_swap(x) cpu_to_be16(x)
123# define m32_swap(x) cpu_to_be32(x)
Markus Klotzbuecherd209de62006-11-27 11:46:46 +0100124#else
Markus Klotzbuecher18f5ccb2007-06-06 11:49:35 +0200125# define m16_swap(x) cpu_to_le16(x)
126# define m32_swap(x) cpu_to_le32(x)
127#endif /* CFG_OHCI_BE_CONTROLLER */
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200128
129/* global ohci_t */
130static ohci_t gohci;
131/* this must be aligned to a 256 byte boundary */
132struct ohci_hcca ghcca[1];
133/* a pointer to the aligned storage */
134struct ohci_hcca *phcca;
135/* this allocates EDs for all possible endpoints */
136struct ohci_device ohci_dev;
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200137/* RHSC flag */
138int got_rhsc;
139/* device which was disconnected */
140struct usb_device *devgone;
141
142/*-------------------------------------------------------------------------*/
143
144/* AMD-756 (D2 rev) reports corrupt register contents in some cases.
145 * The erratum (#4) description is incorrect. AMD's workaround waits
146 * till some bits (mostly reserved) are clear; ok for all revs.
147 */
148#define OHCI_QUIRK_AMD756 0xabcd
149#define read_roothub(hc, register, mask) ({ \
150 u32 temp = readl (&hc->regs->roothub.register); \
151 if (hc->flags & OHCI_QUIRK_AMD756) \
152 while (temp & mask) \
153 temp = readl (&hc->regs->roothub.register); \
154 temp; })
155
156static u32 roothub_a (struct ohci *hc)
157 { return read_roothub (hc, a, 0xfc0fe000); }
158static inline u32 roothub_b (struct ohci *hc)
159 { return readl (&hc->regs->roothub.b); }
160static inline u32 roothub_status (struct ohci *hc)
161 { return readl (&hc->regs->roothub.status); }
162static u32 roothub_portstatus (struct ohci *hc, int i)
163 { return read_roothub (hc, portstatus [i], 0xffe0fce0); }
164
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200165/* forward declaration */
166static int hc_interrupt (void);
167static void
168td_submit_job (struct usb_device * dev, unsigned long pipe, void * buffer,
169 int transfer_len, struct devrequest * setup, urb_priv_t * urb, int interval);
170
171/*-------------------------------------------------------------------------*
172 * URB support functions
173 *-------------------------------------------------------------------------*/
174
175/* free HCD-private data associated with this URB */
176
177static void urb_free_priv (urb_priv_t * urb)
178{
179 int i;
180 int last;
181 struct td * td;
182
183 last = urb->length - 1;
184 if (last >= 0) {
185 for (i = 0; i <= last; i++) {
186 td = urb->td[i];
187 if (td) {
188 td->usb_dev = NULL;
189 urb->td[i] = NULL;
190 }
191 }
192 }
Zhang Wei8d15efa2007-06-06 10:08:14 +0200193 free(urb);
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200194}
195
196/*-------------------------------------------------------------------------*/
197
198#ifdef DEBUG
199static int sohci_get_current_frame_number (struct usb_device * dev);
200
201/* debug| print the main components of an URB
202 * small: 0) header + data packets 1) just header */
203
Zhang Wei8d15efa2007-06-06 10:08:14 +0200204static void pkt_print (urb_priv_t *purb, struct usb_device * dev,
205 unsigned long pipe, void * buffer,
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200206 int transfer_len, struct devrequest * setup, char * str, int small)
207{
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200208 dbg("%s URB:[%4x] dev:%2d,ep:%2d-%c,type:%s,len:%d/%d stat:%#lx",
209 str,
210 sohci_get_current_frame_number (dev),
211 usb_pipedevice (pipe),
212 usb_pipeendpoint (pipe),
213 usb_pipeout (pipe)? 'O': 'I',
214 usb_pipetype (pipe) < 2? (usb_pipeint (pipe)? "INTR": "ISOC"):
215 (usb_pipecontrol (pipe)? "CTRL": "BULK"),
Zhang Wei8d15efa2007-06-06 10:08:14 +0200216 (purb ? purb->actual_length : 0),
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200217 transfer_len, dev->status);
218#ifdef OHCI_VERBOSE_DEBUG
219 if (!small) {
220 int i, len;
221
222 if (usb_pipecontrol (pipe)) {
223 printf (__FILE__ ": cmd(8):");
224 for (i = 0; i < 8 ; i++)
225 printf (" %02x", ((__u8 *) setup) [i]);
226 printf ("\n");
227 }
228 if (transfer_len > 0 && buffer) {
229 printf (__FILE__ ": data(%d/%d):",
Zhang Wei8d15efa2007-06-06 10:08:14 +0200230 (purb ? purb->actual_length : 0),
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200231 transfer_len);
232 len = usb_pipeout (pipe)?
Zhang Wei8d15efa2007-06-06 10:08:14 +0200233 transfer_len:
234 (purb ? purb->actual_length : 0);
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200235 for (i = 0; i < 16 && i < len; i++)
236 printf (" %02x", ((__u8 *) buffer) [i]);
237 printf ("%s\n", i < len? "...": "");
238 }
239 }
240#endif
241}
242
243/* just for debugging; prints non-empty branches of the int ed tree inclusive iso eds*/
244void ep_print_int_eds (ohci_t *ohci, char * str) {
245 int i, j;
246 __u32 * ed_p;
247 for (i= 0; i < 32; i++) {
248 j = 5;
249 ed_p = &(ohci->hcca->int_table [i]);
250 if (*ed_p == 0)
251 continue;
252 printf (__FILE__ ": %s branch int %2d(%2x):", str, i, i);
253 while (*ed_p != 0 && j--) {
254 ed_t *ed = (ed_t *)m32_swap(ed_p);
255 printf (" ed: %4x;", ed->hwINFO);
256 ed_p = &ed->hwNextED;
257 }
258 printf ("\n");
259 }
260}
261
262static void ohci_dump_intr_mask (char *label, __u32 mask)
263{
264 dbg ("%s: 0x%08x%s%s%s%s%s%s%s%s%s",
265 label,
266 mask,
267 (mask & OHCI_INTR_MIE) ? " MIE" : "",
268 (mask & OHCI_INTR_OC) ? " OC" : "",
269 (mask & OHCI_INTR_RHSC) ? " RHSC" : "",
270 (mask & OHCI_INTR_FNO) ? " FNO" : "",
271 (mask & OHCI_INTR_UE) ? " UE" : "",
272 (mask & OHCI_INTR_RD) ? " RD" : "",
273 (mask & OHCI_INTR_SF) ? " SF" : "",
274 (mask & OHCI_INTR_WDH) ? " WDH" : "",
275 (mask & OHCI_INTR_SO) ? " SO" : ""
276 );
277}
278
279static void maybe_print_eds (char *label, __u32 value)
280{
281 ed_t *edp = (ed_t *)value;
282
283 if (value) {
284 dbg ("%s %08x", label, value);
285 dbg ("%08x", edp->hwINFO);
286 dbg ("%08x", edp->hwTailP);
287 dbg ("%08x", edp->hwHeadP);
288 dbg ("%08x", edp->hwNextED);
289 }
290}
291
292static char * hcfs2string (int state)
293{
294 switch (state) {
295 case OHCI_USB_RESET: return "reset";
296 case OHCI_USB_RESUME: return "resume";
297 case OHCI_USB_OPER: return "operational";
298 case OHCI_USB_SUSPEND: return "suspend";
299 }
300 return "?";
301}
302
303/* dump control and status registers */
304static void ohci_dump_status (ohci_t *controller)
305{
306 struct ohci_regs *regs = controller->regs;
307 __u32 temp;
308
309 temp = readl (&regs->revision) & 0xff;
310 if (temp != 0x10)
311 dbg ("spec %d.%d", (temp >> 4), (temp & 0x0f));
312
313 temp = readl (&regs->control);
314 dbg ("control: 0x%08x%s%s%s HCFS=%s%s%s%s%s CBSR=%d", temp,
315 (temp & OHCI_CTRL_RWE) ? " RWE" : "",
316 (temp & OHCI_CTRL_RWC) ? " RWC" : "",
317 (temp & OHCI_CTRL_IR) ? " IR" : "",
318 hcfs2string (temp & OHCI_CTRL_HCFS),
319 (temp & OHCI_CTRL_BLE) ? " BLE" : "",
320 (temp & OHCI_CTRL_CLE) ? " CLE" : "",
321 (temp & OHCI_CTRL_IE) ? " IE" : "",
322 (temp & OHCI_CTRL_PLE) ? " PLE" : "",
323 temp & OHCI_CTRL_CBSR
324 );
325
326 temp = readl (&regs->cmdstatus);
327 dbg ("cmdstatus: 0x%08x SOC=%d%s%s%s%s", temp,
328 (temp & OHCI_SOC) >> 16,
329 (temp & OHCI_OCR) ? " OCR" : "",
330 (temp & OHCI_BLF) ? " BLF" : "",
331 (temp & OHCI_CLF) ? " CLF" : "",
332 (temp & OHCI_HCR) ? " HCR" : ""
333 );
334
335 ohci_dump_intr_mask ("intrstatus", readl (&regs->intrstatus));
336 ohci_dump_intr_mask ("intrenable", readl (&regs->intrenable));
337
338 maybe_print_eds ("ed_periodcurrent", readl (&regs->ed_periodcurrent));
339
340 maybe_print_eds ("ed_controlhead", readl (&regs->ed_controlhead));
341 maybe_print_eds ("ed_controlcurrent", readl (&regs->ed_controlcurrent));
342
343 maybe_print_eds ("ed_bulkhead", readl (&regs->ed_bulkhead));
344 maybe_print_eds ("ed_bulkcurrent", readl (&regs->ed_bulkcurrent));
345
346 maybe_print_eds ("donehead", readl (&regs->donehead));
347}
348
349static void ohci_dump_roothub (ohci_t *controller, int verbose)
350{
351 __u32 temp, ndp, i;
352
353 temp = roothub_a (controller);
354 ndp = (temp & RH_A_NDP);
355#ifdef CONFIG_AT91C_PQFP_UHPBUG
356 ndp = (ndp == 2) ? 1:0;
357#endif
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200358 if (verbose) {
359 dbg ("roothub.a: %08x POTPGT=%d%s%s%s%s%s NDP=%d", temp,
360 ((temp & RH_A_POTPGT) >> 24) & 0xff,
361 (temp & RH_A_NOCP) ? " NOCP" : "",
362 (temp & RH_A_OCPM) ? " OCPM" : "",
363 (temp & RH_A_DT) ? " DT" : "",
364 (temp & RH_A_NPS) ? " NPS" : "",
365 (temp & RH_A_PSM) ? " PSM" : "",
366 ndp
367 );
368 temp = roothub_b (controller);
369 dbg ("roothub.b: %08x PPCM=%04x DR=%04x",
370 temp,
371 (temp & RH_B_PPCM) >> 16,
372 (temp & RH_B_DR)
373 );
374 temp = roothub_status (controller);
375 dbg ("roothub.status: %08x%s%s%s%s%s%s",
376 temp,
377 (temp & RH_HS_CRWE) ? " CRWE" : "",
378 (temp & RH_HS_OCIC) ? " OCIC" : "",
379 (temp & RH_HS_LPSC) ? " LPSC" : "",
380 (temp & RH_HS_DRWE) ? " DRWE" : "",
381 (temp & RH_HS_OCI) ? " OCI" : "",
382 (temp & RH_HS_LPS) ? " LPS" : ""
383 );
384 }
385
386 for (i = 0; i < ndp; i++) {
387 temp = roothub_portstatus (controller, i);
388 dbg ("roothub.portstatus [%d] = 0x%08x%s%s%s%s%s%s%s%s%s%s%s%s",
389 i,
390 temp,
391 (temp & RH_PS_PRSC) ? " PRSC" : "",
392 (temp & RH_PS_OCIC) ? " OCIC" : "",
393 (temp & RH_PS_PSSC) ? " PSSC" : "",
394 (temp & RH_PS_PESC) ? " PESC" : "",
395 (temp & RH_PS_CSC) ? " CSC" : "",
396
397 (temp & RH_PS_LSDA) ? " LSDA" : "",
398 (temp & RH_PS_PPS) ? " PPS" : "",
399 (temp & RH_PS_PRS) ? " PRS" : "",
400 (temp & RH_PS_POCI) ? " POCI" : "",
401 (temp & RH_PS_PSS) ? " PSS" : "",
402
403 (temp & RH_PS_PES) ? " PES" : "",
404 (temp & RH_PS_CCS) ? " CCS" : ""
405 );
406 }
407}
408
409static void ohci_dump (ohci_t *controller, int verbose)
410{
411 dbg ("OHCI controller usb-%s state", controller->slot_name);
412
413 /* dumps some of the state we know about */
414 ohci_dump_status (controller);
415 if (verbose)
416 ep_print_int_eds (controller, "hcca");
417 dbg ("hcca frame #%04x", controller->hcca->frame_no);
418 ohci_dump_roothub (controller, 1);
Stefan Roese41e74eb2008-03-05 12:29:32 +0100419}
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200420#endif /* DEBUG */
421
422/*-------------------------------------------------------------------------*
423 * Interface functions (URB)
424 *-------------------------------------------------------------------------*/
425
426/* get a transfer request */
427
Zhang Wei8d15efa2007-06-06 10:08:14 +0200428int sohci_submit_job(urb_priv_t *urb, struct devrequest *setup)
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200429{
430 ohci_t *ohci;
431 ed_t * ed;
Zhang Wei8d15efa2007-06-06 10:08:14 +0200432 urb_priv_t *purb_priv = urb;
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200433 int i, size = 0;
Zhang Wei8d15efa2007-06-06 10:08:14 +0200434 struct usb_device *dev = urb->dev;
435 unsigned long pipe = urb->pipe;
436 void *buffer = urb->transfer_buffer;
437 int transfer_len = urb->transfer_buffer_length;
438 int interval = urb->interval;
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200439
440 ohci = &gohci;
441
442 /* when controller's hung, permit only roothub cleanup attempts
443 * such as powering down ports */
444 if (ohci->disabled) {
445 err("sohci_submit_job: EPIPE");
446 return -1;
447 }
Markus Klotzbuechere3af6d52007-03-26 11:21:05 +0200448
Markus Klotzbuecheraa219212006-05-30 16:56:14 +0200449 /* we're about to begin a new transaction here so mark the URB unfinished */
Zhang Wei8d15efa2007-06-06 10:08:14 +0200450 urb->finished = 0;
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200451
452 /* every endpoint has a ed, locate and fill it */
Zhang Wei8d15efa2007-06-06 10:08:14 +0200453 if (!(ed = ep_add_ed (dev, pipe, interval, 1))) {
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200454 err("sohci_submit_job: ENOMEM");
455 return -1;
456 }
457
458 /* for the private part of the URB we need the number of TDs (size) */
459 switch (usb_pipetype (pipe)) {
460 case PIPE_BULK: /* one TD for every 4096 Byte */
461 size = (transfer_len - 1) / 4096 + 1;
462 break;
463 case PIPE_CONTROL: /* 1 TD for setup, 1 for ACK and 1 for every 4096 B */
464 size = (transfer_len == 0)? 2:
465 (transfer_len - 1) / 4096 + 3;
466 break;
Zhang Wei8d15efa2007-06-06 10:08:14 +0200467 case PIPE_INTERRUPT: /* 1 TD */
468 size = 1;
469 break;
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200470 }
471
Zhang Wei8d15efa2007-06-06 10:08:14 +0200472 ed->purb = urb;
473
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200474 if (size >= (N_URB_TD - 1)) {
475 err("need %d TDs, only have %d", size, N_URB_TD);
476 return -1;
477 }
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200478 purb_priv->pipe = pipe;
479
480 /* fill the private part of the URB */
481 purb_priv->length = size;
482 purb_priv->ed = ed;
483 purb_priv->actual_length = 0;
484
485 /* allocate the TDs */
486 /* note that td[0] was allocated in ep_add_ed */
487 for (i = 0; i < size; i++) {
488 purb_priv->td[i] = td_alloc (dev);
489 if (!purb_priv->td[i]) {
490 purb_priv->length = i;
491 urb_free_priv (purb_priv);
492 err("sohci_submit_job: ENOMEM");
493 return -1;
494 }
495 }
496
497 if (ed->state == ED_NEW || (ed->state & ED_DEL)) {
498 urb_free_priv (purb_priv);
499 err("sohci_submit_job: EINVAL");
500 return -1;
501 }
502
503 /* link the ed into a chain if is not already */
504 if (ed->state != ED_OPER)
505 ep_link (ohci, ed);
506
507 /* fill the TDs and link it to the ed */
508 td_submit_job(dev, pipe, buffer, transfer_len, setup, purb_priv, interval);
509
510 return 0;
511}
512
Zhang Wei8d15efa2007-06-06 10:08:14 +0200513static inline int sohci_return_job(struct ohci *hc, urb_priv_t *urb)
514{
515 struct ohci_regs *regs = hc->regs;
516
517 switch (usb_pipetype (urb->pipe)) {
518 case PIPE_INTERRUPT:
519 /* implicitly requeued */
520 if (urb->dev->irq_handle &&
521 (urb->dev->irq_act_len = urb->actual_length)) {
522 writel (OHCI_INTR_WDH, &regs->intrenable);
523 readl (&regs->intrenable); /* PCI posting flush */
524 urb->dev->irq_handle(urb->dev);
525 writel (OHCI_INTR_WDH, &regs->intrdisable);
526 readl (&regs->intrdisable); /* PCI posting flush */
527 }
528 urb->actual_length = 0;
529 td_submit_job (
530 urb->dev,
531 urb->pipe,
532 urb->transfer_buffer,
533 urb->transfer_buffer_length,
534 NULL,
535 urb,
536 urb->interval);
537 break;
538 case PIPE_CONTROL:
539 case PIPE_BULK:
540 break;
541 default:
542 return 0;
543 }
544 return 1;
545}
546
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200547/*-------------------------------------------------------------------------*/
548
549#ifdef DEBUG
550/* tell us the current USB frame number */
551
552static int sohci_get_current_frame_number (struct usb_device *usb_dev)
553{
554 ohci_t *ohci = &gohci;
555
556 return m16_swap (ohci->hcca->frame_no);
557}
558#endif
559
560/*-------------------------------------------------------------------------*
561 * ED handling functions
562 *-------------------------------------------------------------------------*/
563
Zhang Wei8d15efa2007-06-06 10:08:14 +0200564/* search for the right branch to insert an interrupt ed into the int tree
565 * do some load ballancing;
566 * returns the branch and
567 * sets the interval to interval = 2^integer (ld (interval)) */
568
569static int ep_int_ballance (ohci_t * ohci, int interval, int load)
570{
571 int i, branch = 0;
572
573 /* search for the least loaded interrupt endpoint
574 * branch of all 32 branches
575 */
576 for (i = 0; i < 32; i++)
577 if (ohci->ohci_int_load [branch] > ohci->ohci_int_load [i])
578 branch = i;
579
580 branch = branch % interval;
581 for (i = branch; i < 32; i += interval)
582 ohci->ohci_int_load [i] += load;
583
584 return branch;
585}
586
587/*-------------------------------------------------------------------------*/
588
589/* 2^int( ld (inter)) */
590
591static int ep_2_n_interval (int inter)
592{
593 int i;
594 for (i = 0; ((inter >> i) > 1 ) && (i < 5); i++);
595 return 1 << i;
596}
597
598/*-------------------------------------------------------------------------*/
599
600/* the int tree is a binary tree
601 * in order to process it sequentially the indexes of the branches have to be mapped
602 * the mapping reverses the bits of a word of num_bits length */
603
604static int ep_rev (int num_bits, int word)
605{
606 int i, wout = 0;
607
608 for (i = 0; i < num_bits; i++)
609 wout |= (((word >> i) & 1) << (num_bits - i - 1));
610 return wout;
611}
612
613/*-------------------------------------------------------------------------*
614 * ED handling functions
615 *-------------------------------------------------------------------------*/
616
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200617/* link an ed into one of the HC chains */
618
619static int ep_link (ohci_t *ohci, ed_t *edi)
620{
621 volatile ed_t *ed = edi;
Zhang Wei8d15efa2007-06-06 10:08:14 +0200622 int int_branch;
623 int i;
624 int inter;
625 int interval;
626 int load;
627 __u32 * ed_p;
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200628
629 ed->state = ED_OPER;
Zhang Wei8d15efa2007-06-06 10:08:14 +0200630 ed->int_interval = 0;
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200631
632 switch (ed->type) {
633 case PIPE_CONTROL:
634 ed->hwNextED = 0;
635 if (ohci->ed_controltail == NULL) {
636 writel (ed, &ohci->regs->ed_controlhead);
637 } else {
Markus Klotzbuecherd209de62006-11-27 11:46:46 +0100638 ohci->ed_controltail->hwNextED = m32_swap ((unsigned long)ed);
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200639 }
640 ed->ed_prev = ohci->ed_controltail;
641 if (!ohci->ed_controltail && !ohci->ed_rm_list[0] &&
642 !ohci->ed_rm_list[1] && !ohci->sleeping) {
643 ohci->hc_control |= OHCI_CTRL_CLE;
644 writel (ohci->hc_control, &ohci->regs->control);
645 }
646 ohci->ed_controltail = edi;
647 break;
648
649 case PIPE_BULK:
650 ed->hwNextED = 0;
651 if (ohci->ed_bulktail == NULL) {
652 writel (ed, &ohci->regs->ed_bulkhead);
653 } else {
Markus Klotzbuecherd209de62006-11-27 11:46:46 +0100654 ohci->ed_bulktail->hwNextED = m32_swap ((unsigned long)ed);
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200655 }
656 ed->ed_prev = ohci->ed_bulktail;
657 if (!ohci->ed_bulktail && !ohci->ed_rm_list[0] &&
658 !ohci->ed_rm_list[1] && !ohci->sleeping) {
659 ohci->hc_control |= OHCI_CTRL_BLE;
660 writel (ohci->hc_control, &ohci->regs->control);
661 }
662 ohci->ed_bulktail = edi;
663 break;
Zhang Wei8d15efa2007-06-06 10:08:14 +0200664
665 case PIPE_INTERRUPT:
666 load = ed->int_load;
667 interval = ep_2_n_interval (ed->int_period);
668 ed->int_interval = interval;
669 int_branch = ep_int_ballance (ohci, interval, load);
670 ed->int_branch = int_branch;
671
672 for (i = 0; i < ep_rev (6, interval); i += inter) {
673 inter = 1;
674 for (ed_p = &(ohci->hcca->int_table[ep_rev (5, i) + int_branch]);
675 (*ed_p != 0) && (((ed_t *)ed_p)->int_interval >= interval);
676 ed_p = &(((ed_t *)ed_p)->hwNextED))
677 inter = ep_rev (6, ((ed_t *)ed_p)->int_interval);
678 ed->hwNextED = *ed_p;
Martin Krause8a588192007-08-21 12:40:34 +0200679 *ed_p = m32_swap((unsigned long)ed);
Zhang Wei8d15efa2007-06-06 10:08:14 +0200680 }
681 break;
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200682 }
683 return 0;
684}
685
686/*-------------------------------------------------------------------------*/
687
Zhang Wei8d15efa2007-06-06 10:08:14 +0200688/* scan the periodic table to find and unlink this ED */
689static void periodic_unlink ( struct ohci *ohci, volatile struct ed *ed,
690 unsigned index, unsigned period)
691{
692 for (; index < NUM_INTS; index += period) {
693 __u32 *ed_p = &ohci->hcca->int_table [index];
694
695 /* ED might have been unlinked through another path */
696 while (*ed_p != 0) {
Martin Krause8a588192007-08-21 12:40:34 +0200697 if (((struct ed *)m32_swap ((unsigned long)ed_p)) == ed) {
Zhang Wei8d15efa2007-06-06 10:08:14 +0200698 *ed_p = ed->hwNextED;
699 break;
700 }
Martin Krause8a588192007-08-21 12:40:34 +0200701 ed_p = & (((struct ed *)m32_swap ((unsigned long)ed_p))->hwNextED);
Zhang Wei8d15efa2007-06-06 10:08:14 +0200702 }
703 }
704}
705
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200706/* unlink an ed from one of the HC chains.
707 * just the link to the ed is unlinked.
708 * the link from the ed still points to another operational ed or 0
709 * so the HC can eventually finish the processing of the unlinked ed */
710
Markus Klotzbuecher661ffe52006-11-27 11:43:09 +0100711static int ep_unlink (ohci_t *ohci, ed_t *edi)
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200712{
Markus Klotzbuecher661ffe52006-11-27 11:43:09 +0100713 volatile ed_t *ed = edi;
Zhang Wei8d15efa2007-06-06 10:08:14 +0200714 int i;
Markus Klotzbuecher661ffe52006-11-27 11:43:09 +0100715
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200716 ed->hwINFO |= m32_swap (OHCI_ED_SKIP);
717
718 switch (ed->type) {
719 case PIPE_CONTROL:
720 if (ed->ed_prev == NULL) {
721 if (!ed->hwNextED) {
722 ohci->hc_control &= ~OHCI_CTRL_CLE;
723 writel (ohci->hc_control, &ohci->regs->control);
724 }
725 writel (m32_swap (*((__u32 *)&ed->hwNextED)), &ohci->regs->ed_controlhead);
726 } else {
727 ed->ed_prev->hwNextED = ed->hwNextED;
728 }
729 if (ohci->ed_controltail == ed) {
730 ohci->ed_controltail = ed->ed_prev;
731 } else {
732 ((ed_t *)m32_swap (*((__u32 *)&ed->hwNextED)))->ed_prev = ed->ed_prev;
733 }
734 break;
735
736 case PIPE_BULK:
737 if (ed->ed_prev == NULL) {
738 if (!ed->hwNextED) {
739 ohci->hc_control &= ~OHCI_CTRL_BLE;
740 writel (ohci->hc_control, &ohci->regs->control);
741 }
742 writel (m32_swap (*((__u32 *)&ed->hwNextED)), &ohci->regs->ed_bulkhead);
743 } else {
744 ed->ed_prev->hwNextED = ed->hwNextED;
745 }
746 if (ohci->ed_bulktail == ed) {
747 ohci->ed_bulktail = ed->ed_prev;
748 } else {
749 ((ed_t *)m32_swap (*((__u32 *)&ed->hwNextED)))->ed_prev = ed->ed_prev;
750 }
751 break;
Zhang Wei8d15efa2007-06-06 10:08:14 +0200752
753 case PIPE_INTERRUPT:
754 periodic_unlink (ohci, ed, 0, 1);
755 for (i = ed->int_branch; i < 32; i += ed->int_interval)
756 ohci->ohci_int_load[i] -= ed->int_load;
757 break;
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200758 }
759 ed->state = ED_UNLINK;
760 return 0;
761}
762
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200763/*-------------------------------------------------------------------------*/
764
Markus Klotzbuecheraa219212006-05-30 16:56:14 +0200765/* add/reinit an endpoint; this should be done once at the
766 * usb_set_configuration command, but the USB stack is a little bit
767 * stateless so we do it at every transaction if the state of the ed
768 * is ED_NEW then a dummy td is added and the state is changed to
769 * ED_UNLINK in all other cases the state is left unchanged the ed
770 * info fields are setted anyway even though most of them should not
771 * change
772 */
Zhang Wei8d15efa2007-06-06 10:08:14 +0200773static ed_t * ep_add_ed (struct usb_device *usb_dev, unsigned long pipe,
774 int interval, int load)
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200775{
776 td_t *td;
777 ed_t *ed_ret;
778 volatile ed_t *ed;
779
780 ed = ed_ret = &ohci_dev.ed[(usb_pipeendpoint (pipe) << 1) |
781 (usb_pipecontrol (pipe)? 0: usb_pipeout (pipe))];
782
783 if ((ed->state & ED_DEL) || (ed->state & ED_URB_DEL)) {
784 err("ep_add_ed: pending delete");
785 /* pending delete request */
786 return NULL;
787 }
788
789 if (ed->state == ED_NEW) {
790 ed->hwINFO = m32_swap (OHCI_ED_SKIP); /* skip ed */
791 /* dummy td; end of td list for ed */
792 td = td_alloc (usb_dev);
Markus Klotzbuecherd209de62006-11-27 11:46:46 +0100793 ed->hwTailP = m32_swap ((unsigned long)td);
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200794 ed->hwHeadP = ed->hwTailP;
795 ed->state = ED_UNLINK;
796 ed->type = usb_pipetype (pipe);
797 ohci_dev.ed_cnt++;
798 }
799
800 ed->hwINFO = m32_swap (usb_pipedevice (pipe)
801 | usb_pipeendpoint (pipe) << 7
802 | (usb_pipeisoc (pipe)? 0x8000: 0)
803 | (usb_pipecontrol (pipe)? 0: (usb_pipeout (pipe)? 0x800: 0x1000))
804 | usb_pipeslow (pipe) << 13
805 | usb_maxpacket (usb_dev, pipe) << 16);
806
Zhang Wei8d15efa2007-06-06 10:08:14 +0200807 if (ed->type == PIPE_INTERRUPT && ed->state == ED_UNLINK) {
808 ed->int_period = interval;
809 ed->int_load = load;
810 }
811
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200812 return ed_ret;
813}
814
815/*-------------------------------------------------------------------------*
816 * TD handling functions
817 *-------------------------------------------------------------------------*/
818
819/* enqueue next TD for this URB (OHCI spec 5.2.8.2) */
820
821static void td_fill (ohci_t *ohci, unsigned int info,
822 void *data, int len,
823 struct usb_device *dev, int index, urb_priv_t *urb_priv)
824{
825 volatile td_t *td, *td_pt;
826#ifdef OHCI_FILL_TRACE
827 int i;
828#endif
829
830 if (index > urb_priv->length) {
831 err("index > length");
832 return;
833 }
834 /* use this td as the next dummy */
835 td_pt = urb_priv->td [index];
836 td_pt->hwNextTD = 0;
837
838 /* fill the old dummy TD */
839 td = urb_priv->td [index] = (td_t *)(m32_swap (urb_priv->ed->hwTailP) & ~0xf);
840
841 td->ed = urb_priv->ed;
842 td->next_dl_td = NULL;
843 td->index = index;
844 td->data = (__u32)data;
845#ifdef OHCI_FILL_TRACE
846 if ((usb_pipetype(urb_priv->pipe) == PIPE_BULK) && usb_pipeout(urb_priv->pipe)) {
847 for (i = 0; i < len; i++)
848 printf("td->data[%d] %#2x ",i, ((unsigned char *)td->data)[i]);
849 printf("\n");
850 }
851#endif
852 if (!len)
853 data = 0;
854
855 td->hwINFO = m32_swap (info);
Markus Klotzbuecherd209de62006-11-27 11:46:46 +0100856 td->hwCBP = m32_swap ((unsigned long)data);
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200857 if (data)
Markus Klotzbuecherd209de62006-11-27 11:46:46 +0100858 td->hwBE = m32_swap ((unsigned long)(data + len - 1));
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200859 else
860 td->hwBE = 0;
Markus Klotzbuecherd209de62006-11-27 11:46:46 +0100861 td->hwNextTD = m32_swap ((unsigned long)td_pt);
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200862
863 /* append to queue */
864 td->ed->hwTailP = td->hwNextTD;
865}
866
867/*-------------------------------------------------------------------------*/
868
869/* prepare all TDs of a transfer */
870
871static void td_submit_job (struct usb_device *dev, unsigned long pipe, void *buffer,
872 int transfer_len, struct devrequest *setup, urb_priv_t *urb, int interval)
873{
874 ohci_t *ohci = &gohci;
875 int data_len = transfer_len;
876 void *data;
877 int cnt = 0;
878 __u32 info = 0;
879 unsigned int toggle = 0;
880
881 /* OHCI handles the DATA-toggles itself, we just use the USB-toggle bits for reseting */
882 if(usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe))) {
883 toggle = TD_T_TOGGLE;
884 } else {
885 toggle = TD_T_DATA0;
886 usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), 1);
887 }
888 urb->td_cnt = 0;
889 if (data_len)
890 data = buffer;
891 else
892 data = 0;
893
894 switch (usb_pipetype (pipe)) {
895 case PIPE_BULK:
896 info = usb_pipeout (pipe)?
897 TD_CC | TD_DP_OUT : TD_CC | TD_DP_IN ;
898 while(data_len > 4096) {
899 td_fill (ohci, info | (cnt? TD_T_TOGGLE:toggle), data, 4096, dev, cnt, urb);
900 data += 4096; data_len -= 4096; cnt++;
901 }
902 info = usb_pipeout (pipe)?
903 TD_CC | TD_DP_OUT : TD_CC | TD_R | TD_DP_IN ;
904 td_fill (ohci, info | (cnt? TD_T_TOGGLE:toggle), data, data_len, dev, cnt, urb);
905 cnt++;
906
907 if (!ohci->sleeping)
908 writel (OHCI_BLF, &ohci->regs->cmdstatus); /* start bulk list */
909 break;
910
911 case PIPE_CONTROL:
912 info = TD_CC | TD_DP_SETUP | TD_T_DATA0;
913 td_fill (ohci, info, setup, 8, dev, cnt++, urb);
914 if (data_len > 0) {
915 info = usb_pipeout (pipe)?
916 TD_CC | TD_R | TD_DP_OUT | TD_T_DATA1 : TD_CC | TD_R | TD_DP_IN | TD_T_DATA1;
917 /* NOTE: mishandles transfers >8K, some >4K */
918 td_fill (ohci, info, data, data_len, dev, cnt++, urb);
919 }
920 info = usb_pipeout (pipe)?
921 TD_CC | TD_DP_IN | TD_T_DATA1: TD_CC | TD_DP_OUT | TD_T_DATA1;
922 td_fill (ohci, info, data, 0, dev, cnt++, urb);
923 if (!ohci->sleeping)
924 writel (OHCI_CLF, &ohci->regs->cmdstatus); /* start Control list */
925 break;
Zhang Wei8d15efa2007-06-06 10:08:14 +0200926
927 case PIPE_INTERRUPT:
928 info = usb_pipeout (urb->pipe)?
929 TD_CC | TD_DP_OUT | toggle:
930 TD_CC | TD_R | TD_DP_IN | toggle;
931 td_fill (ohci, info, data, data_len, dev, cnt++, urb);
932 break;
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200933 }
934 if (urb->length != cnt)
935 dbg("TD LENGTH %d != CNT %d", urb->length, cnt);
936}
937
938/*-------------------------------------------------------------------------*
939 * Done List handling functions
940 *-------------------------------------------------------------------------*/
941
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200942/* calculate the transfer length and update the urb */
943
944static void dl_transfer_length(td_t * td)
945{
946 __u32 tdINFO, tdBE, tdCBP;
Zhang Wei8d15efa2007-06-06 10:08:14 +0200947 urb_priv_t *lurb_priv = td->ed->purb;
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200948
949 tdINFO = m32_swap (td->hwINFO);
950 tdBE = m32_swap (td->hwBE);
951 tdCBP = m32_swap (td->hwCBP);
952
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200953 if (!(usb_pipetype (lurb_priv->pipe) == PIPE_CONTROL &&
954 ((td->index == 0) || (td->index == lurb_priv->length - 1)))) {
955 if (tdBE != 0) {
956 if (td->hwCBP == 0)
957 lurb_priv->actual_length += tdBE - td->data + 1;
958 else
959 lurb_priv->actual_length += tdCBP - td->data;
960 }
961 }
962}
963
964/*-------------------------------------------------------------------------*/
965
966/* replies to the request have to be on a FIFO basis so
967 * we reverse the reversed done-list */
968
969static td_t * dl_reverse_done_list (ohci_t *ohci)
970{
971 __u32 td_list_hc;
972 td_t *td_rev = NULL;
973 td_t *td_list = NULL;
974 urb_priv_t *lurb_priv = NULL;
975
976 td_list_hc = m32_swap (ohci->hcca->done_head) & 0xfffffff0;
977 ohci->hcca->done_head = 0;
978
979 while (td_list_hc) {
980 td_list = (td_t *)td_list_hc;
981
982 if (TD_CC_GET (m32_swap (td_list->hwINFO))) {
Zhang Wei8d15efa2007-06-06 10:08:14 +0200983 lurb_priv = td_list->ed->purb;
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200984 dbg(" USB-error/status: %x : %p",
985 TD_CC_GET (m32_swap (td_list->hwINFO)), td_list);
986 if (td_list->ed->hwHeadP & m32_swap (0x1)) {
987 if (lurb_priv && ((td_list->index + 1) < lurb_priv->length)) {
988 td_list->ed->hwHeadP =
989 (lurb_priv->td[lurb_priv->length - 1]->hwNextTD & m32_swap (0xfffffff0)) |
990 (td_list->ed->hwHeadP & m32_swap (0x2));
991 lurb_priv->td_cnt += lurb_priv->length - td_list->index - 1;
992 } else
993 td_list->ed->hwHeadP &= m32_swap (0xfffffff2);
994 }
Markus Klotzbuecher661ffe52006-11-27 11:43:09 +0100995#ifdef CONFIG_MPC5200
996 td_list->hwNextTD = 0;
997#endif
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +0200998 }
999
1000 td_list->next_dl_td = td_rev;
1001 td_rev = td_list;
1002 td_list_hc = m32_swap (td_list->hwNextTD) & 0xfffffff0;
1003 }
1004 return td_list;
1005}
1006
1007/*-------------------------------------------------------------------------*/
1008
1009/* td done list */
1010static int dl_done_list (ohci_t *ohci, td_t *td_list)
1011{
1012 td_t *td_list_next = NULL;
1013 ed_t *ed;
1014 int cc = 0;
1015 int stat = 0;
1016 /* urb_t *urb; */
1017 urb_priv_t *lurb_priv;
1018 __u32 tdINFO, edHeadP, edTailP;
1019
1020 while (td_list) {
1021 td_list_next = td_list->next_dl_td;
1022
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001023 tdINFO = m32_swap (td_list->hwINFO);
1024
1025 ed = td_list->ed;
Zhang Wei8d15efa2007-06-06 10:08:14 +02001026 lurb_priv = ed->purb;
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001027
1028 dl_transfer_length(td_list);
1029
1030 /* error code of transfer */
1031 cc = TD_CC_GET (tdINFO);
1032 if (cc != 0) {
1033 dbg("ConditionCode %#x", cc);
1034 stat = cc_to_error[cc];
1035 }
Markus Klotzbuechere3af6d52007-03-26 11:21:05 +02001036
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001037 /* see if this done list makes for all TD's of current URB,
1038 * and mark the URB finished if so */
1039 if (++(lurb_priv->td_cnt) == lurb_priv->length) {
Markus Klotzbuecherd209de62006-11-27 11:46:46 +01001040#if 1
1041 if ((ed->state & (ED_OPER | ED_UNLINK)) &&
1042 (lurb_priv->state != URB_DEL))
1043#else
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001044 if ((ed->state & (ED_OPER | ED_UNLINK)))
Zhang Wei8d15efa2007-06-06 10:08:14 +02001045#endif
1046 lurb_priv->finished = sohci_return_job(ohci,
1047 lurb_priv);
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001048 else
1049 dbg("dl_done_list: strange.., ED state %x, ed->state\n");
1050 } else
1051 dbg("dl_done_list: processing TD %x, len %x\n", lurb_priv->td_cnt,
1052 lurb_priv->length);
Zhang Wei8d15efa2007-06-06 10:08:14 +02001053 if (ed->state != ED_NEW &&
1054 (usb_pipetype (lurb_priv->pipe) != PIPE_INTERRUPT)) {
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001055 edHeadP = m32_swap (ed->hwHeadP) & 0xfffffff0;
1056 edTailP = m32_swap (ed->hwTailP);
1057
1058 /* unlink eds if they are not busy */
1059 if ((edHeadP == edTailP) && (ed->state == ED_OPER))
1060 ep_unlink (ohci, ed);
1061 }
1062
1063 td_list = td_list_next;
1064 }
1065 return stat;
1066}
1067
1068/*-------------------------------------------------------------------------*
1069 * Virtual Root Hub
1070 *-------------------------------------------------------------------------*/
1071
1072/* Device descriptor */
1073static __u8 root_hub_dev_des[] =
1074{
1075 0x12, /* __u8 bLength; */
1076 0x01, /* __u8 bDescriptorType; Device */
1077 0x10, /* __u16 bcdUSB; v1.1 */
1078 0x01,
1079 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
1080 0x00, /* __u8 bDeviceSubClass; */
1081 0x00, /* __u8 bDeviceProtocol; */
1082 0x08, /* __u8 bMaxPacketSize0; 8 Bytes */
1083 0x00, /* __u16 idVendor; */
1084 0x00,
1085 0x00, /* __u16 idProduct; */
1086 0x00,
1087 0x00, /* __u16 bcdDevice; */
1088 0x00,
1089 0x00, /* __u8 iManufacturer; */
1090 0x01, /* __u8 iProduct; */
1091 0x00, /* __u8 iSerialNumber; */
1092 0x01 /* __u8 bNumConfigurations; */
1093};
1094
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001095/* Configuration descriptor */
1096static __u8 root_hub_config_des[] =
1097{
1098 0x09, /* __u8 bLength; */
1099 0x02, /* __u8 bDescriptorType; Configuration */
1100 0x19, /* __u16 wTotalLength; */
1101 0x00,
1102 0x01, /* __u8 bNumInterfaces; */
1103 0x01, /* __u8 bConfigurationValue; */
1104 0x00, /* __u8 iConfiguration; */
1105 0x40, /* __u8 bmAttributes;
1106 Bit 7: Bus-powered, 6: Self-powered, 5 Remote-wakwup, 4..0: resvd */
1107 0x00, /* __u8 MaxPower; */
1108
1109 /* interface */
1110 0x09, /* __u8 if_bLength; */
1111 0x04, /* __u8 if_bDescriptorType; Interface */
1112 0x00, /* __u8 if_bInterfaceNumber; */
1113 0x00, /* __u8 if_bAlternateSetting; */
1114 0x01, /* __u8 if_bNumEndpoints; */
1115 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
1116 0x00, /* __u8 if_bInterfaceSubClass; */
1117 0x00, /* __u8 if_bInterfaceProtocol; */
1118 0x00, /* __u8 if_iInterface; */
1119
1120 /* endpoint */
1121 0x07, /* __u8 ep_bLength; */
1122 0x05, /* __u8 ep_bDescriptorType; Endpoint */
1123 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
1124 0x03, /* __u8 ep_bmAttributes; Interrupt */
1125 0x02, /* __u16 ep_wMaxPacketSize; ((MAX_ROOT_PORTS + 1) / 8 */
1126 0x00,
1127 0xff /* __u8 ep_bInterval; 255 ms */
1128};
1129
1130static unsigned char root_hub_str_index0[] =
1131{
1132 0x04, /* __u8 bLength; */
1133 0x03, /* __u8 bDescriptorType; String-descriptor */
1134 0x09, /* __u8 lang ID */
1135 0x04, /* __u8 lang ID */
1136};
1137
1138static unsigned char root_hub_str_index1[] =
1139{
1140 28, /* __u8 bLength; */
1141 0x03, /* __u8 bDescriptorType; String-descriptor */
1142 'O', /* __u8 Unicode */
1143 0, /* __u8 Unicode */
1144 'H', /* __u8 Unicode */
1145 0, /* __u8 Unicode */
1146 'C', /* __u8 Unicode */
1147 0, /* __u8 Unicode */
1148 'I', /* __u8 Unicode */
1149 0, /* __u8 Unicode */
1150 ' ', /* __u8 Unicode */
1151 0, /* __u8 Unicode */
1152 'R', /* __u8 Unicode */
1153 0, /* __u8 Unicode */
1154 'o', /* __u8 Unicode */
1155 0, /* __u8 Unicode */
1156 'o', /* __u8 Unicode */
1157 0, /* __u8 Unicode */
1158 't', /* __u8 Unicode */
1159 0, /* __u8 Unicode */
1160 ' ', /* __u8 Unicode */
1161 0, /* __u8 Unicode */
1162 'H', /* __u8 Unicode */
1163 0, /* __u8 Unicode */
1164 'u', /* __u8 Unicode */
1165 0, /* __u8 Unicode */
1166 'b', /* __u8 Unicode */
1167 0, /* __u8 Unicode */
1168};
1169
1170/* Hub class-specific descriptor is constructed dynamically */
1171
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001172/*-------------------------------------------------------------------------*/
1173
1174#define OK(x) len = (x); break
1175#ifdef DEBUG
1176#define WR_RH_STAT(x) {info("WR:status %#8x", (x));writel((x), &gohci.regs->roothub.status);}
1177#define WR_RH_PORTSTAT(x) {info("WR:portstatus[%d] %#8x", wIndex-1, (x));writel((x), &gohci.regs->roothub.portstatus[wIndex-1]);}
1178#else
1179#define WR_RH_STAT(x) writel((x), &gohci.regs->roothub.status)
1180#define WR_RH_PORTSTAT(x) writel((x), &gohci.regs->roothub.portstatus[wIndex-1])
1181#endif
1182#define RD_RH_STAT roothub_status(&gohci)
1183#define RD_RH_PORTSTAT roothub_portstatus(&gohci,wIndex-1)
1184
1185/* request to virtual root hub */
1186
1187int rh_check_port_status(ohci_t *controller)
1188{
1189 __u32 temp, ndp, i;
1190 int res;
1191
1192 res = -1;
1193 temp = roothub_a (controller);
1194 ndp = (temp & RH_A_NDP);
1195#ifdef CONFIG_AT91C_PQFP_UHPBUG
1196 ndp = (ndp == 2) ? 1:0;
1197#endif
1198 for (i = 0; i < ndp; i++) {
1199 temp = roothub_portstatus (controller, i);
1200 /* check for a device disconnect */
1201 if (((temp & (RH_PS_PESC | RH_PS_CSC)) ==
1202 (RH_PS_PESC | RH_PS_CSC)) &&
1203 ((temp & RH_PS_CCS) == 0)) {
1204 res = i;
1205 break;
1206 }
1207 }
1208 return res;
1209}
1210
1211static int ohci_submit_rh_msg(struct usb_device *dev, unsigned long pipe,
1212 void *buffer, int transfer_len, struct devrequest *cmd)
1213{
1214 void * data = buffer;
1215 int leni = transfer_len;
1216 int len = 0;
1217 int stat = 0;
1218 __u32 datab[4];
1219 __u8 *data_buf = (__u8 *)datab;
1220 __u16 bmRType_bReq;
1221 __u16 wValue;
1222 __u16 wIndex;
1223 __u16 wLength;
1224
1225#ifdef DEBUG
Zhang Wei8d15efa2007-06-06 10:08:14 +02001226pkt_print(NULL, dev, pipe, buffer, transfer_len, cmd, "SUB(rh)", usb_pipein(pipe));
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001227#else
1228 wait_ms(1);
1229#endif
1230 if ((pipe & PIPE_INTERRUPT) == PIPE_INTERRUPT) {
1231 info("Root-Hub submit IRQ: NOT implemented");
1232 return 0;
1233 }
1234
1235 bmRType_bReq = cmd->requesttype | (cmd->request << 8);
Markus Klotzbuecher18f5ccb2007-06-06 11:49:35 +02001236 wValue = cpu_to_le16 (cmd->value);
1237 wIndex = cpu_to_le16 (cmd->index);
1238 wLength = cpu_to_le16 (cmd->length);
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001239
1240 info("Root-Hub: adr: %2x cmd(%1x): %08x %04x %04x %04x",
1241 dev->devnum, 8, bmRType_bReq, wValue, wIndex, wLength);
1242
1243 switch (bmRType_bReq) {
1244 /* Request Destination:
1245 without flags: Device,
1246 RH_INTERFACE: interface,
1247 RH_ENDPOINT: endpoint,
1248 RH_CLASS means HUB here,
1249 RH_OTHER | RH_CLASS almost ever means HUB_PORT here
1250 */
1251
1252 case RH_GET_STATUS:
Markus Klotzbuecher18f5ccb2007-06-06 11:49:35 +02001253 *(__u16 *) data_buf = cpu_to_le16 (1); OK (2);
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001254 case RH_GET_STATUS | RH_INTERFACE:
Markus Klotzbuecher18f5ccb2007-06-06 11:49:35 +02001255 *(__u16 *) data_buf = cpu_to_le16 (0); OK (2);
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001256 case RH_GET_STATUS | RH_ENDPOINT:
Markus Klotzbuecher18f5ccb2007-06-06 11:49:35 +02001257 *(__u16 *) data_buf = cpu_to_le16 (0); OK (2);
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001258 case RH_GET_STATUS | RH_CLASS:
Markus Klotzbuecher18f5ccb2007-06-06 11:49:35 +02001259 *(__u32 *) data_buf = cpu_to_le32 (
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001260 RD_RH_STAT & ~(RH_HS_CRWE | RH_HS_DRWE));
1261 OK (4);
1262 case RH_GET_STATUS | RH_OTHER | RH_CLASS:
Markus Klotzbuecher18f5ccb2007-06-06 11:49:35 +02001263 *(__u32 *) data_buf = cpu_to_le32 (RD_RH_PORTSTAT); OK (4);
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001264
1265 case RH_CLEAR_FEATURE | RH_ENDPOINT:
1266 switch (wValue) {
1267 case (RH_ENDPOINT_STALL): OK (0);
1268 }
1269 break;
1270
1271 case RH_CLEAR_FEATURE | RH_CLASS:
1272 switch (wValue) {
1273 case RH_C_HUB_LOCAL_POWER:
1274 OK(0);
1275 case (RH_C_HUB_OVER_CURRENT):
1276 WR_RH_STAT(RH_HS_OCIC); OK (0);
1277 }
1278 break;
1279
1280 case RH_CLEAR_FEATURE | RH_OTHER | RH_CLASS:
1281 switch (wValue) {
1282 case (RH_PORT_ENABLE):
1283 WR_RH_PORTSTAT (RH_PS_CCS ); OK (0);
1284 case (RH_PORT_SUSPEND):
1285 WR_RH_PORTSTAT (RH_PS_POCI); OK (0);
1286 case (RH_PORT_POWER):
1287 WR_RH_PORTSTAT (RH_PS_LSDA); OK (0);
1288 case (RH_C_PORT_CONNECTION):
1289 WR_RH_PORTSTAT (RH_PS_CSC ); OK (0);
1290 case (RH_C_PORT_ENABLE):
1291 WR_RH_PORTSTAT (RH_PS_PESC); OK (0);
1292 case (RH_C_PORT_SUSPEND):
1293 WR_RH_PORTSTAT (RH_PS_PSSC); OK (0);
1294 case (RH_C_PORT_OVER_CURRENT):
1295 WR_RH_PORTSTAT (RH_PS_OCIC); OK (0);
1296 case (RH_C_PORT_RESET):
1297 WR_RH_PORTSTAT (RH_PS_PRSC); OK (0);
1298 }
1299 break;
1300
1301 case RH_SET_FEATURE | RH_OTHER | RH_CLASS:
1302 switch (wValue) {
1303 case (RH_PORT_SUSPEND):
1304 WR_RH_PORTSTAT (RH_PS_PSS ); OK (0);
1305 case (RH_PORT_RESET): /* BUG IN HUP CODE *********/
1306 if (RD_RH_PORTSTAT & RH_PS_CCS)
1307 WR_RH_PORTSTAT (RH_PS_PRS);
1308 OK (0);
1309 case (RH_PORT_POWER):
Rodolfo Giomettid5960402007-04-23 13:10:52 +02001310 WR_RH_PORTSTAT (RH_PS_PPS );
1311 wait_ms(100);
1312 OK (0);
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001313 case (RH_PORT_ENABLE): /* BUG IN HUP CODE *********/
1314 if (RD_RH_PORTSTAT & RH_PS_CCS)
1315 WR_RH_PORTSTAT (RH_PS_PES );
1316 OK (0);
1317 }
1318 break;
1319
1320 case RH_SET_ADDRESS: gohci.rh.devnum = wValue; OK(0);
1321
1322 case RH_GET_DESCRIPTOR:
1323 switch ((wValue & 0xff00) >> 8) {
1324 case (0x01): /* device descriptor */
1325 len = min_t(unsigned int,
1326 leni,
1327 min_t(unsigned int,
1328 sizeof (root_hub_dev_des),
1329 wLength));
1330 data_buf = root_hub_dev_des; OK(len);
1331 case (0x02): /* configuration descriptor */
1332 len = min_t(unsigned int,
1333 leni,
1334 min_t(unsigned int,
1335 sizeof (root_hub_config_des),
1336 wLength));
1337 data_buf = root_hub_config_des; OK(len);
1338 case (0x03): /* string descriptors */
1339 if(wValue==0x0300) {
1340 len = min_t(unsigned int,
1341 leni,
1342 min_t(unsigned int,
1343 sizeof (root_hub_str_index0),
1344 wLength));
1345 data_buf = root_hub_str_index0;
1346 OK(len);
1347 }
1348 if(wValue==0x0301) {
1349 len = min_t(unsigned int,
1350 leni,
1351 min_t(unsigned int,
1352 sizeof (root_hub_str_index1),
1353 wLength));
1354 data_buf = root_hub_str_index1;
1355 OK(len);
1356 }
1357 default:
1358 stat = USB_ST_STALLED;
1359 }
1360 break;
1361
1362 case RH_GET_DESCRIPTOR | RH_CLASS:
1363 {
1364 __u32 temp = roothub_a (&gohci);
1365
1366 data_buf [0] = 9; /* min length; */
1367 data_buf [1] = 0x29;
1368 data_buf [2] = temp & RH_A_NDP;
1369#ifdef CONFIG_AT91C_PQFP_UHPBUG
1370 data_buf [2] = (data_buf [2] == 2) ? 1:0;
1371#endif
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001372 data_buf [3] = 0;
1373 if (temp & RH_A_PSM) /* per-port power switching? */
1374 data_buf [3] |= 0x1;
1375 if (temp & RH_A_NOCP) /* no overcurrent reporting? */
1376 data_buf [3] |= 0x10;
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001377 else if (temp & RH_A_OCPM) /* per-port overcurrent reporting? */
1378 data_buf [3] |= 0x8;
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001379
1380 /* corresponds to data_buf[4-7] */
1381 datab [1] = 0;
1382 data_buf [5] = (temp & RH_A_POTPGT) >> 24;
1383 temp = roothub_b (&gohci);
1384 data_buf [7] = temp & RH_B_DR;
1385 if (data_buf [2] < 7) {
1386 data_buf [8] = 0xff;
1387 } else {
1388 data_buf [0] += 2;
1389 data_buf [8] = (temp & RH_B_DR) >> 8;
1390 data_buf [10] = data_buf [9] = 0xff;
1391 }
1392
1393 len = min_t(unsigned int, leni,
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001394 min_t(unsigned int, data_buf [0], wLength));
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001395 OK (len);
1396 }
1397
1398 case RH_GET_CONFIGURATION: *(__u8 *) data_buf = 0x01; OK (1);
1399
1400 case RH_SET_CONFIGURATION: WR_RH_STAT (0x10000); OK (0);
1401
1402 default:
1403 dbg ("unsupported root hub command");
1404 stat = USB_ST_STALLED;
1405 }
1406
1407#ifdef DEBUG
1408 ohci_dump_roothub (&gohci, 1);
1409#else
1410 wait_ms(1);
1411#endif
1412
1413 len = min_t(int, len, leni);
1414 if (data != data_buf)
1415 memcpy (data, data_buf, len);
1416 dev->act_len = len;
1417 dev->status = stat;
1418
1419#ifdef DEBUG
Zhang Wei8d15efa2007-06-06 10:08:14 +02001420 pkt_print(NULL, dev, pipe, buffer, transfer_len, cmd, "RET(rh)", 0/*usb_pipein(pipe)*/);
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001421#else
1422 wait_ms(1);
1423#endif
1424
1425 return stat;
1426}
1427
1428/*-------------------------------------------------------------------------*/
1429
1430/* common code for handling submit messages - used for all but root hub */
1431/* accesses. */
1432int submit_common_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1433 int transfer_len, struct devrequest *setup, int interval)
1434{
1435 int stat = 0;
1436 int maxsize = usb_maxpacket(dev, pipe);
1437 int timeout;
Zhang Wei8d15efa2007-06-06 10:08:14 +02001438 urb_priv_t *urb;
1439
1440 urb = malloc(sizeof(urb_priv_t));
1441 memset(urb, 0, sizeof(urb_priv_t));
1442
1443 urb->dev = dev;
1444 urb->pipe = pipe;
1445 urb->transfer_buffer = buffer;
1446 urb->transfer_buffer_length = transfer_len;
1447 urb->interval = interval;
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001448
1449 /* device pulled? Shortcut the action. */
1450 if (devgone == dev) {
1451 dev->status = USB_ST_CRC_ERR;
1452 return 0;
1453 }
1454
1455#ifdef DEBUG
Zhang Wei8d15efa2007-06-06 10:08:14 +02001456 urb->actual_length = 0;
1457 pkt_print(urb, dev, pipe, buffer, transfer_len, setup, "SUB", usb_pipein(pipe));
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001458#else
1459 wait_ms(1);
1460#endif
1461 if (!maxsize) {
1462 err("submit_common_message: pipesize for pipe %lx is zero",
1463 pipe);
1464 return -1;
1465 }
1466
Zhang Wei8d15efa2007-06-06 10:08:14 +02001467 if (sohci_submit_job(urb, setup) < 0) {
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001468 err("sohci_submit_job failed");
1469 return -1;
1470 }
1471
Markus Klotzbuecherd209de62006-11-27 11:46:46 +01001472#if 0
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001473 wait_ms(10);
1474 /* ohci_dump_status(&gohci); */
Markus Klotzbuecherd209de62006-11-27 11:46:46 +01001475#endif
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001476
1477 /* allow more time for a BULK device to react - some are slow */
1478#define BULK_TO 5000 /* timeout in milliseconds */
1479 if (usb_pipetype (pipe) == PIPE_BULK)
1480 timeout = BULK_TO;
1481 else
1482 timeout = 100;
1483
1484 /* wait for it to complete */
1485 for (;;) {
1486 /* check whether the controller is done */
1487 stat = hc_interrupt();
1488 if (stat < 0) {
1489 stat = USB_ST_CRC_ERR;
1490 break;
1491 }
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001492
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001493 /* NOTE: since we are not interrupt driven in U-Boot and always
1494 * handle only one URB at a time, we cannot assume the
1495 * transaction finished on the first successful return from
1496 * hc_interrupt().. unless the flag for current URB is set,
1497 * meaning that all TD's to/from device got actually
1498 * transferred and processed. If the current URB is not
1499 * finished we need to re-iterate this loop so as
1500 * hc_interrupt() gets called again as there needs to be some
1501 * more TD's to process still */
Zhang Wei8d15efa2007-06-06 10:08:14 +02001502 if ((stat >= 0) && (stat != 0xff) && (urb->finished)) {
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001503 /* 0xff is returned for an SF-interrupt */
1504 break;
1505 }
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001506
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001507 if (--timeout) {
1508 wait_ms(1);
Zhang Wei8d15efa2007-06-06 10:08:14 +02001509 if (!urb->finished)
1510 dbg("\%");
1511
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001512 } else {
1513 err("CTL:TIMEOUT ");
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001514 dbg("submit_common_msg: TO status %x\n", stat);
Zhang Wei8d15efa2007-06-06 10:08:14 +02001515 urb->finished = 1;
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001516 stat = USB_ST_CRC_ERR;
1517 break;
1518 }
1519 }
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001520
1521 dev->status = stat;
1522 dev->act_len = transfer_len;
1523
1524#ifdef DEBUG
Zhang Wei8d15efa2007-06-06 10:08:14 +02001525 pkt_print(urb, dev, pipe, buffer, transfer_len, setup, "RET(ctlr)", usb_pipein(pipe));
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001526#else
1527 wait_ms(1);
1528#endif
1529
1530 /* free TDs in urb_priv */
Zhang Wei8d15efa2007-06-06 10:08:14 +02001531 if (usb_pipetype (pipe) != PIPE_INTERRUPT)
1532 urb_free_priv (urb);
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001533 return 0;
1534}
1535
1536/* submit routines called from usb.c */
1537int submit_bulk_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1538 int transfer_len)
1539{
1540 info("submit_bulk_msg");
1541 return submit_common_msg(dev, pipe, buffer, transfer_len, NULL, 0);
1542}
1543
1544int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1545 int transfer_len, struct devrequest *setup)
1546{
1547 int maxsize = usb_maxpacket(dev, pipe);
1548
1549 info("submit_control_msg");
1550#ifdef DEBUG
Zhang Wei8d15efa2007-06-06 10:08:14 +02001551 pkt_print(NULL, dev, pipe, buffer, transfer_len, setup, "SUB", usb_pipein(pipe));
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001552#else
1553 wait_ms(1);
1554#endif
1555 if (!maxsize) {
1556 err("submit_control_message: pipesize for pipe %lx is zero",
1557 pipe);
1558 return -1;
1559 }
1560 if (((pipe >> 8) & 0x7f) == gohci.rh.devnum) {
1561 gohci.rh.dev = dev;
1562 /* root hub - redirect */
1563 return ohci_submit_rh_msg(dev, pipe, buffer, transfer_len,
1564 setup);
1565 }
1566
1567 return submit_common_msg(dev, pipe, buffer, transfer_len, setup, 0);
1568}
1569
1570int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1571 int transfer_len, int interval)
1572{
1573 info("submit_int_msg");
Zhang Wei8d15efa2007-06-06 10:08:14 +02001574 return submit_common_msg(dev, pipe, buffer, transfer_len, NULL,
1575 interval);
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001576}
1577
1578/*-------------------------------------------------------------------------*
1579 * HC functions
1580 *-------------------------------------------------------------------------*/
1581
1582/* reset the HC and BUS */
1583
1584static int hc_reset (ohci_t *ohci)
1585{
1586 int timeout = 30;
1587 int smm_timeout = 50; /* 0,5 sec */
1588
1589 dbg("%s\n", __FUNCTION__);
1590
1591 if (readl (&ohci->regs->control) & OHCI_CTRL_IR) { /* SMM owns the HC */
1592 writel (OHCI_OCR, &ohci->regs->cmdstatus); /* request ownership */
1593 info("USB HC TakeOver from SMM");
1594 while (readl (&ohci->regs->control) & OHCI_CTRL_IR) {
1595 wait_ms (10);
1596 if (--smm_timeout == 0) {
1597 err("USB HC TakeOver failed!");
1598 return -1;
1599 }
1600 }
1601 }
1602
1603 /* Disable HC interrupts */
1604 writel (OHCI_INTR_MIE, &ohci->regs->intrdisable);
1605
1606 dbg("USB HC reset_hc usb-%s: ctrl = 0x%X ;\n",
1607 ohci->slot_name,
1608 readl(&ohci->regs->control));
1609
1610 /* Reset USB (needed by some controllers) */
Markus Klotzbuecher661ffe52006-11-27 11:43:09 +01001611 ohci->hc_control = 0;
1612 writel (ohci->hc_control, &ohci->regs->control);
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001613
1614 /* HC Reset requires max 10 us delay */
1615 writel (OHCI_HCR, &ohci->regs->cmdstatus);
1616 while ((readl (&ohci->regs->cmdstatus) & OHCI_HCR) != 0) {
1617 if (--timeout == 0) {
1618 err("USB HC reset timed out!");
1619 return -1;
1620 }
1621 udelay (1);
1622 }
1623 return 0;
1624}
1625
1626/*-------------------------------------------------------------------------*/
1627
1628/* Start an OHCI controller, set the BUS operational
1629 * enable interrupts
1630 * connect the virtual root hub */
1631
1632static int hc_start (ohci_t * ohci)
1633{
1634 __u32 mask;
1635 unsigned int fminterval;
1636
1637 ohci->disabled = 1;
1638
1639 /* Tell the controller where the control and bulk lists are
1640 * The lists are empty now. */
1641
1642 writel (0, &ohci->regs->ed_controlhead);
1643 writel (0, &ohci->regs->ed_bulkhead);
1644
1645 writel ((__u32)ohci->hcca, &ohci->regs->hcca); /* a reset clears this */
1646
1647 fminterval = 0x2edf;
1648 writel ((fminterval * 9) / 10, &ohci->regs->periodicstart);
1649 fminterval |= ((((fminterval - 210) * 6) / 7) << 16);
1650 writel (fminterval, &ohci->regs->fminterval);
1651 writel (0x628, &ohci->regs->lsthresh);
1652
1653 /* start controller operations */
1654 ohci->hc_control = OHCI_CONTROL_INIT | OHCI_USB_OPER;
1655 ohci->disabled = 0;
1656 writel (ohci->hc_control, &ohci->regs->control);
1657
1658 /* disable all interrupts */
1659 mask = (OHCI_INTR_SO | OHCI_INTR_WDH | OHCI_INTR_SF | OHCI_INTR_RD |
1660 OHCI_INTR_UE | OHCI_INTR_FNO | OHCI_INTR_RHSC |
1661 OHCI_INTR_OC | OHCI_INTR_MIE);
1662 writel (mask, &ohci->regs->intrdisable);
1663 /* clear all interrupts */
1664 mask &= ~OHCI_INTR_MIE;
1665 writel (mask, &ohci->regs->intrstatus);
1666 /* Choose the interrupts we care about now - but w/o MIE */
1667 mask = OHCI_INTR_RHSC | OHCI_INTR_UE | OHCI_INTR_WDH | OHCI_INTR_SO;
1668 writel (mask, &ohci->regs->intrenable);
1669
1670#ifdef OHCI_USE_NPS
1671 /* required for AMD-756 and some Mac platforms */
1672 writel ((roothub_a (ohci) | RH_A_NPS) & ~RH_A_PSM,
1673 &ohci->regs->roothub.a);
1674 writel (RH_HS_LPSC, &ohci->regs->roothub.status);
1675#endif /* OHCI_USE_NPS */
1676
1677#define mdelay(n) ({unsigned long msec=(n); while (msec--) udelay(1000);})
1678 /* POTPGT delay is bits 24-31, in 2 ms units. */
1679 mdelay ((roothub_a (ohci) >> 23) & 0x1fe);
1680
1681 /* connect the virtual root hub */
1682 ohci->rh.devnum = 0;
1683
1684 return 0;
1685}
1686
1687/*-------------------------------------------------------------------------*/
1688
Zhang Wei8d15efa2007-06-06 10:08:14 +02001689/* Poll USB interrupt. */
1690void usb_event_poll(void)
1691{
1692 hc_interrupt();
1693}
1694
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001695/* an interrupt happens */
1696
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001697static int hc_interrupt (void)
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001698{
1699 ohci_t *ohci = &gohci;
1700 struct ohci_regs *regs = ohci->regs;
1701 int ints;
1702 int stat = -1;
1703
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001704 if ((ohci->hcca->done_head != 0) &&
1705 !(m32_swap (ohci->hcca->done_head) & 0x01)) {
1706 ints = OHCI_INTR_WDH;
1707 } else if ((ints = readl (&regs->intrstatus)) == ~(u32)0) {
1708 ohci->disabled++;
1709 err ("%s device removed!", ohci->slot_name);
1710 return -1;
1711 } else if ((ints &= readl (&regs->intrenable)) == 0) {
1712 dbg("hc_interrupt: returning..\n");
1713 return 0xff;
1714 }
Markus Klotzbuechere3af6d52007-03-26 11:21:05 +02001715
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001716 /* dbg("Interrupt: %x frame: %x", ints, le16_to_cpu (ohci->hcca->frame_no)); */
1717
1718 if (ints & OHCI_INTR_RHSC) {
1719 got_rhsc = 1;
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001720 stat = 0xff;
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001721 }
1722
1723 if (ints & OHCI_INTR_UE) {
1724 ohci->disabled++;
1725 err ("OHCI Unrecoverable Error, controller usb-%s disabled",
1726 ohci->slot_name);
1727 /* e.g. due to PCI Master/Target Abort */
1728
1729#ifdef DEBUG
1730 ohci_dump (ohci, 1);
1731#else
1732 wait_ms(1);
1733#endif
1734 /* FIXME: be optimistic, hope that bug won't repeat often. */
1735 /* Make some non-interrupt context restart the controller. */
1736 /* Count and limit the retries though; either hardware or */
1737 /* software errors can go forever... */
1738 hc_reset (ohci);
1739 return -1;
1740 }
1741
1742 if (ints & OHCI_INTR_WDH) {
1743 wait_ms(1);
1744 writel (OHCI_INTR_WDH, &regs->intrdisable);
Zhang Wei8d15efa2007-06-06 10:08:14 +02001745 (void)readl (&regs->intrdisable); /* flush */
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001746 stat = dl_done_list (&gohci, dl_reverse_done_list (&gohci));
1747 writel (OHCI_INTR_WDH, &regs->intrenable);
Zhang Wei8d15efa2007-06-06 10:08:14 +02001748 (void)readl (&regs->intrdisable); /* flush */
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001749 }
1750
1751 if (ints & OHCI_INTR_SO) {
1752 dbg("USB Schedule overrun\n");
1753 writel (OHCI_INTR_SO, &regs->intrenable);
1754 stat = -1;
1755 }
1756
1757 /* FIXME: this assumes SOF (1/ms) interrupts don't get lost... */
1758 if (ints & OHCI_INTR_SF) {
1759 unsigned int frame = m16_swap (ohci->hcca->frame_no) & 1;
1760 wait_ms(1);
1761 writel (OHCI_INTR_SF, &regs->intrdisable);
1762 if (ohci->ed_rm_list[frame] != NULL)
1763 writel (OHCI_INTR_SF, &regs->intrenable);
1764 stat = 0xff;
1765 }
1766
1767 writel (ints, &regs->intrstatus);
1768 return stat;
1769}
1770
1771/*-------------------------------------------------------------------------*/
1772
1773/*-------------------------------------------------------------------------*/
1774
1775/* De-allocate all resources.. */
1776
1777static void hc_release_ohci (ohci_t *ohci)
1778{
1779 dbg ("USB HC release ohci usb-%s", ohci->slot_name);
1780
1781 if (!ohci->disabled)
1782 hc_reset (ohci);
1783}
1784
1785/*-------------------------------------------------------------------------*/
1786
1787/*
1788 * low level initalisation routine, called from usb.c
1789 */
1790static char ohci_inited = 0;
1791
1792int usb_lowlevel_init(void)
1793{
Zhang Wei8d15efa2007-06-06 10:08:14 +02001794#ifdef CONFIG_PCI_OHCI
1795 pci_dev_t pdev;
1796#endif
Markus Klotzbuecher98095512006-05-23 10:33:11 +02001797
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001798#ifdef CFG_USB_OHCI_CPU_INIT
Markus Klotzbuecher98095512006-05-23 10:33:11 +02001799 /* cpu dependant init */
1800 if(usb_cpu_init())
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001801 return -1;
Markus Klotzbuecher98095512006-05-23 10:33:11 +02001802#endif
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001803
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001804#ifdef CFG_USB_OHCI_BOARD_INIT
Markus Klotzbuecher98095512006-05-23 10:33:11 +02001805 /* board dependant init */
1806 if(usb_board_init())
1807 return -1;
1808#endif
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001809 memset (&gohci, 0, sizeof (ohci_t));
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001810
1811 /* align the storage */
1812 if ((__u32)&ghcca[0] & 0xff) {
1813 err("HCCA not aligned!!");
1814 return -1;
1815 }
1816 phcca = &ghcca[0];
1817 info("aligned ghcca %p", phcca);
1818 memset(&ohci_dev, 0, sizeof(struct ohci_device));
1819 if ((__u32)&ohci_dev.ed[0] & 0x7) {
1820 err("EDs not aligned!!");
1821 return -1;
1822 }
1823 memset(gtd, 0, sizeof(td_t) * (NUM_TD + 1));
1824 if ((__u32)gtd & 0x7) {
1825 err("TDs not aligned!!");
1826 return -1;
1827 }
1828 ptd = gtd;
1829 gohci.hcca = phcca;
1830 memset (phcca, 0, sizeof (struct ohci_hcca));
1831
1832 gohci.disabled = 1;
1833 gohci.sleeping = 0;
1834 gohci.irq = -1;
Zhang Wei8d15efa2007-06-06 10:08:14 +02001835#ifdef CONFIG_PCI_OHCI
1836 pdev = pci_find_devices(ohci_pci_ids, 0);
1837
1838 if (pdev != -1) {
1839 u16 vid, did;
1840 u32 base;
1841 pci_read_config_word(pdev, PCI_VENDOR_ID, &vid);
1842 pci_read_config_word(pdev, PCI_DEVICE_ID, &did);
1843 printf("OHCI pci controller (%04x, %04x) found @(%d:%d:%d)\n",
1844 vid, did, (pdev >> 16) & 0xff,
1845 (pdev >> 11) & 0x1f, (pdev >> 8) & 0x7);
1846 pci_read_config_dword(pdev, PCI_BASE_ADDRESS_0, &base);
1847 printf("OHCI regs address 0x%08x\n", base);
1848 gohci.regs = (struct ohci_regs *)base;
1849 } else
1850 return -1;
1851#else
Markus Klotzbuecher98095512006-05-23 10:33:11 +02001852 gohci.regs = (struct ohci_regs *)CFG_USB_OHCI_REGS_BASE;
Zhang Wei8d15efa2007-06-06 10:08:14 +02001853#endif
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001854
1855 gohci.flags = 0;
Markus Klotzbuecherd0a38782006-05-23 13:38:35 +02001856 gohci.slot_name = CFG_USB_OHCI_SLOT_NAME;
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001857
1858 if (hc_reset (&gohci) < 0) {
1859 hc_release_ohci (&gohci);
1860 err ("can't reset usb-%s", gohci.slot_name);
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001861#ifdef CFG_USB_OHCI_BOARD_INIT
Markus Klotzbuecher98095512006-05-23 10:33:11 +02001862 /* board dependant cleanup */
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001863 usb_board_init_fail();
Markus Klotzbuecher98095512006-05-23 10:33:11 +02001864#endif
1865
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001866#ifdef CFG_USB_OHCI_CPU_INIT
Markus Klotzbuecher98095512006-05-23 10:33:11 +02001867 /* cpu dependant cleanup */
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001868 usb_cpu_init_fail();
Markus Klotzbuecher98095512006-05-23 10:33:11 +02001869#endif
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001870 return -1;
1871 }
1872
1873 /* FIXME this is a second HC reset; why?? */
1874 /* writel(gohci.hc_control = OHCI_USB_RESET, &gohci.regs->control);
1875 wait_ms(10); */
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001876 if (hc_start (&gohci) < 0) {
1877 err ("can't start usb-%s", gohci.slot_name);
1878 hc_release_ohci (&gohci);
1879 /* Initialization failed */
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001880#ifdef CFG_USB_OHCI_BOARD_INIT
Markus Klotzbuecher98095512006-05-23 10:33:11 +02001881 /* board dependant cleanup */
1882 usb_board_stop();
1883#endif
1884
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001885#ifdef CFG_USB_OHCI_CPU_INIT
Markus Klotzbuecher98095512006-05-23 10:33:11 +02001886 /* cpu dependant cleanup */
1887 usb_cpu_stop();
1888#endif
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001889 return -1;
1890 }
1891
1892#ifdef DEBUG
1893 ohci_dump (&gohci, 1);
1894#else
1895 wait_ms(1);
1896#endif
1897 ohci_inited = 1;
1898 return 0;
1899}
1900
1901int usb_lowlevel_stop(void)
1902{
1903 /* this gets called really early - before the controller has */
1904 /* even been initialized! */
1905 if (!ohci_inited)
1906 return 0;
1907 /* TODO release any interrupts, etc. */
1908 /* call hc_release_ohci() here ? */
1909 hc_reset (&gohci);
1910
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001911#ifdef CFG_USB_OHCI_BOARD_INIT
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001912 /* board dependant cleanup */
1913 if(usb_board_stop())
1914 return -1;
Markus Klotzbuecher98095512006-05-23 10:33:11 +02001915#endif
1916
Markus Klotzbuecheraa219212006-05-30 16:56:14 +02001917#ifdef CFG_USB_OHCI_CPU_INIT
Markus Klotzbuecher98095512006-05-23 10:33:11 +02001918 /* cpu dependant cleanup */
1919 if(usb_cpu_stop())
1920 return -1;
1921#endif
Markus Klotzbuecherd8d023f2006-05-22 16:33:54 +02001922
1923 return 0;
1924}
Markus Klotzbuecher43c8b312006-11-27 11:44:58 +01001925#endif /* CONFIG_USB_OHCI_NEW */