blob: 81ef8efcbcd32a0c9eaa6a115d3ea87addca9403 [file] [log] [blame]
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001/*
Zhang Wei4dae14c2007-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 Klotzbuecher3e326ec2006-05-22 16:33:54 +02009 *
10 * (C) Copyright 2003
Detlev Zundel792a09e2009-05-13 10:54:10 +020011 * Gary Jennejohn, DENX Software Engineering <garyj@denx.de>
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +020012 *
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 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020020 * SPDX-License-Identifier: GPL-2.0+
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +020021 */
22/*
23 * IMPORTANT NOTES
Markus Klotzbuecherfc43be42007-06-06 11:49:35 +020024 * 1 - Read doc/README.generic_usb_ohci
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +020025 * 2 - this driver is intended for use with USB Mass Storage Devices
Zhang Wei4dae14c2007-06-06 10:08:14 +020026 * (BBB) and USB keyboard. There is NO support for Isochronous pipes!
Markus Klotzbuecherfc43be42007-06-06 11:49:35 +020027 * 2 - when running on a PQFP208 AT91RM9200, define CONFIG_AT91C_PQFP_UHPBUG
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +020028 * to activate workaround for bug #41 or this driver will NOT work!
29 */
30
31#include <common.h>
Markus Klotzbuecherfc43be42007-06-06 11:49:35 +020032#include <asm/byteorder.h>
33
34#if defined(CONFIG_PCI_OHCI)
Zhang Wei4dae14c2007-06-06 10:08:14 +020035# include <pci.h>
Sergei Poselenov477434c2008-05-22 01:15:53 +020036#if !defined(CONFIG_PCI_OHCI_DEVNO)
37#define CONFIG_PCI_OHCI_DEVNO 0
38#endif
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +020039#endif
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +020040
41#include <malloc.h>
42#include <usb.h>
Jean-Christophe PLAGNIOL-VILLARD2731b9a2009-04-03 12:46:58 +020043
44#include "ohci.h"
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +020045
Wolfgang Denke8da58f2007-11-19 12:59:14 +010046#ifdef CONFIG_AT91RM9200
47#include <asm/arch/hardware.h> /* needed for AT91_USB_HOST_BASE */
48#endif
49
Masahiro Yamadaf2168442014-11-06 14:59:35 +090050#if defined(CONFIG_CPU_ARM920T) || \
kevin.morfitt@fearnside-systems.co.ukac678042009-11-17 18:30:34 +090051 defined(CONFIG_S3C24X0) || \
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +010052 defined(CONFIG_440EP) || \
Zhang Wei4dae14c2007-06-06 10:08:14 +020053 defined(CONFIG_PCI_OHCI) || \
Stefan Roese2596f5b2008-03-05 12:29:32 +010054 defined(CONFIG_MPC5200) || \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020055 defined(CONFIG_SYS_OHCI_USE_NPS)
Markus Klotzbuecher24e37642006-05-23 10:33:11 +020056# define OHCI_USE_NPS /* force NoPowerSwitching mode */
57#endif
58
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +020059#undef OHCI_VERBOSE_DEBUG /* not always helpful */
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +010060#undef DEBUG
61#undef SHOW_INFO
62#undef OHCI_FILL_TRACE
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +020063
64/* For initializing controller (mask in an HCFS mode too) */
65#define OHCI_CONTROL_INIT \
66 (OHCI_CTRL_CBSR & 0x3) | OHCI_CTRL_IE | OHCI_CTRL_PLE
67
Zhang Wei4dae14c2007-06-06 10:08:14 +020068#ifdef CONFIG_PCI_OHCI
69static struct pci_device_id ohci_pci_ids[] = {
70 {0x10b9, 0x5237}, /* ULI1575 PCI OHCI module ids */
David Saada97213f32007-09-17 17:04:47 +020071 {0x1033, 0x0035}, /* NEC PCI OHCI module ids */
TsiChung Liew3afac792008-01-11 20:42:58 -060072 {0x1131, 0x1561}, /* Philips 1561 PCI OHCI module ids */
Zhang Wei4dae14c2007-06-06 10:08:14 +020073 /* Please add supported PCI OHCI controller ids here */
74 {0, 0}
75};
76#endif
77
Yuri Tikhonove90fb6a2008-09-04 11:19:05 +020078#ifdef CONFIG_PCI_EHCI_DEVNO
79static struct pci_device_id ehci_pci_ids[] = {
80 {0x1131, 0x1562}, /* Philips 1562 PCI EHCI module ids */
81 /* Please add supported PCI EHCI controller ids here */
82 {0, 0}
83};
84#endif
85
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +020086#ifdef DEBUG
87#define dbg(format, arg...) printf("DEBUG: " format "\n", ## arg)
88#else
Remy Bohmer6f5794a2008-09-16 14:55:43 +020089#define dbg(format, arg...) do {} while (0)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +020090#endif /* DEBUG */
91#define err(format, arg...) printf("ERROR: " format "\n", ## arg)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +020092#ifdef SHOW_INFO
93#define info(format, arg...) printf("INFO: " format "\n", ## arg)
94#else
Remy Bohmer6f5794a2008-09-16 14:55:43 +020095#define info(format, arg...) do {} while (0)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +020096#endif
97
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020098#ifdef CONFIG_SYS_OHCI_BE_CONTROLLER
Markus Klotzbuecherfc43be42007-06-06 11:49:35 +020099# define m16_swap(x) cpu_to_be16(x)
100# define m32_swap(x) cpu_to_be32(x)
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +0100101#else
Markus Klotzbuecherfc43be42007-06-06 11:49:35 +0200102# define m16_swap(x) cpu_to_le16(x)
103# define m32_swap(x) cpu_to_le32(x)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200104#endif /* CONFIG_SYS_OHCI_BE_CONTROLLER */
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200105
106/* global ohci_t */
107static ohci_t gohci;
108/* this must be aligned to a 256 byte boundary */
109struct ohci_hcca ghcca[1];
110/* a pointer to the aligned storage */
111struct ohci_hcca *phcca;
112/* this allocates EDs for all possible endpoints */
113struct ohci_device ohci_dev;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200114
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200115static inline u32 roothub_a(struct ohci *hc)
Becky Brucea5496a12010-06-30 13:05:44 -0500116 { return ohci_readl(&hc->regs->roothub.a); }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200117static inline u32 roothub_b(struct ohci *hc)
Becky Brucea5496a12010-06-30 13:05:44 -0500118 { return ohci_readl(&hc->regs->roothub.b); }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200119static inline u32 roothub_status(struct ohci *hc)
Becky Brucea5496a12010-06-30 13:05:44 -0500120 { return ohci_readl(&hc->regs->roothub.status); }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200121static inline u32 roothub_portstatus(struct ohci *hc, int i)
Becky Brucea5496a12010-06-30 13:05:44 -0500122 { return ohci_readl(&hc->regs->roothub.portstatus[i]); }
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200123
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200124/* forward declaration */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200125static int hc_interrupt(void);
126static void td_submit_job(struct usb_device *dev, unsigned long pipe,
127 void *buffer, int transfer_len,
128 struct devrequest *setup, urb_priv_t *urb,
129 int interval);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200130
131/*-------------------------------------------------------------------------*
132 * URB support functions
133 *-------------------------------------------------------------------------*/
134
135/* free HCD-private data associated with this URB */
136
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200137static void urb_free_priv(urb_priv_t *urb)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200138{
139 int i;
140 int last;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200141 struct td *td;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200142
143 last = urb->length - 1;
144 if (last >= 0) {
145 for (i = 0; i <= last; i++) {
146 td = urb->td[i];
147 if (td) {
148 td->usb_dev = NULL;
149 urb->td[i] = NULL;
150 }
151 }
152 }
Zhang Wei4dae14c2007-06-06 10:08:14 +0200153 free(urb);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200154}
155
156/*-------------------------------------------------------------------------*/
157
158#ifdef DEBUG
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200159static int sohci_get_current_frame_number(struct usb_device *dev);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200160
161/* debug| print the main components of an URB
162 * small: 0) header + data packets 1) just header */
163
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200164static void pkt_print(urb_priv_t *purb, struct usb_device *dev,
165 unsigned long pipe, void *buffer, int transfer_len,
166 struct devrequest *setup, char *str, int small)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200167{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200168 dbg("%s URB:[%4x] dev:%2lu,ep:%2lu-%c,type:%s,len:%d/%d stat:%#lx",
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200169 str,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200170 sohci_get_current_frame_number(dev),
171 usb_pipedevice(pipe),
172 usb_pipeendpoint(pipe),
173 usb_pipeout(pipe)? 'O': 'I',
174 usb_pipetype(pipe) < 2 ? \
175 (usb_pipeint(pipe)? "INTR": "ISOC"): \
176 (usb_pipecontrol(pipe)? "CTRL": "BULK"),
Zhang Wei4dae14c2007-06-06 10:08:14 +0200177 (purb ? purb->actual_length : 0),
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200178 transfer_len, dev->status);
179#ifdef OHCI_VERBOSE_DEBUG
180 if (!small) {
181 int i, len;
182
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200183 if (usb_pipecontrol(pipe)) {
184 printf(__FILE__ ": cmd(8):");
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200185 for (i = 0; i < 8 ; i++)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200186 printf(" %02x", ((__u8 *) setup) [i]);
187 printf("\n");
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200188 }
189 if (transfer_len > 0 && buffer) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200190 printf(__FILE__ ": data(%d/%d):",
Zhang Wei4dae14c2007-06-06 10:08:14 +0200191 (purb ? purb->actual_length : 0),
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200192 transfer_len);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200193 len = usb_pipeout(pipe)? transfer_len:
Zhang Wei4dae14c2007-06-06 10:08:14 +0200194 (purb ? purb->actual_length : 0);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200195 for (i = 0; i < 16 && i < len; i++)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200196 printf(" %02x", ((__u8 *) buffer) [i]);
197 printf("%s\n", i < len? "...": "");
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200198 }
199 }
200#endif
201}
202
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200203/* just for debugging; prints non-empty branches of the int ed tree
204 * inclusive iso eds */
205void ep_print_int_eds(ohci_t *ohci, char *str)
206{
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200207 int i, j;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200208 __u32 *ed_p;
209 for (i = 0; i < 32; i++) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200210 j = 5;
211 ed_p = &(ohci->hcca->int_table [i]);
212 if (*ed_p == 0)
213 continue;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200214 printf(__FILE__ ": %s branch int %2d(%2x):", str, i, i);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200215 while (*ed_p != 0 && j--) {
216 ed_t *ed = (ed_t *)m32_swap(ed_p);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200217 printf(" ed: %4x;", ed->hwINFO);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200218 ed_p = &ed->hwNextED;
219 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200220 printf("\n");
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200221 }
222}
223
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200224static void ohci_dump_intr_mask(char *label, __u32 mask)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200225{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200226 dbg("%s: 0x%08x%s%s%s%s%s%s%s%s%s",
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200227 label,
228 mask,
229 (mask & OHCI_INTR_MIE) ? " MIE" : "",
230 (mask & OHCI_INTR_OC) ? " OC" : "",
231 (mask & OHCI_INTR_RHSC) ? " RHSC" : "",
232 (mask & OHCI_INTR_FNO) ? " FNO" : "",
233 (mask & OHCI_INTR_UE) ? " UE" : "",
234 (mask & OHCI_INTR_RD) ? " RD" : "",
235 (mask & OHCI_INTR_SF) ? " SF" : "",
236 (mask & OHCI_INTR_WDH) ? " WDH" : "",
237 (mask & OHCI_INTR_SO) ? " SO" : ""
238 );
239}
240
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200241static void maybe_print_eds(char *label, __u32 value)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200242{
243 ed_t *edp = (ed_t *)value;
244
245 if (value) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200246 dbg("%s %08x", label, value);
247 dbg("%08x", edp->hwINFO);
248 dbg("%08x", edp->hwTailP);
249 dbg("%08x", edp->hwHeadP);
250 dbg("%08x", edp->hwNextED);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200251 }
252}
253
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200254static char *hcfs2string(int state)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200255{
256 switch (state) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200257 case OHCI_USB_RESET: return "reset";
258 case OHCI_USB_RESUME: return "resume";
259 case OHCI_USB_OPER: return "operational";
260 case OHCI_USB_SUSPEND: return "suspend";
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200261 }
262 return "?";
263}
264
265/* dump control and status registers */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200266static void ohci_dump_status(ohci_t *controller)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200267{
268 struct ohci_regs *regs = controller->regs;
269 __u32 temp;
270
Becky Brucea5496a12010-06-30 13:05:44 -0500271 temp = ohci_readl(&regs->revision) & 0xff;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200272 if (temp != 0x10)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200273 dbg("spec %d.%d", (temp >> 4), (temp & 0x0f));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200274
Becky Brucea5496a12010-06-30 13:05:44 -0500275 temp = ohci_readl(&regs->control);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200276 dbg("control: 0x%08x%s%s%s HCFS=%s%s%s%s%s CBSR=%d", temp,
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200277 (temp & OHCI_CTRL_RWE) ? " RWE" : "",
278 (temp & OHCI_CTRL_RWC) ? " RWC" : "",
279 (temp & OHCI_CTRL_IR) ? " IR" : "",
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200280 hcfs2string(temp & OHCI_CTRL_HCFS),
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200281 (temp & OHCI_CTRL_BLE) ? " BLE" : "",
282 (temp & OHCI_CTRL_CLE) ? " CLE" : "",
283 (temp & OHCI_CTRL_IE) ? " IE" : "",
284 (temp & OHCI_CTRL_PLE) ? " PLE" : "",
285 temp & OHCI_CTRL_CBSR
286 );
287
Becky Brucea5496a12010-06-30 13:05:44 -0500288 temp = ohci_readl(&regs->cmdstatus);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200289 dbg("cmdstatus: 0x%08x SOC=%d%s%s%s%s", temp,
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200290 (temp & OHCI_SOC) >> 16,
291 (temp & OHCI_OCR) ? " OCR" : "",
292 (temp & OHCI_BLF) ? " BLF" : "",
293 (temp & OHCI_CLF) ? " CLF" : "",
294 (temp & OHCI_HCR) ? " HCR" : ""
295 );
296
Becky Brucea5496a12010-06-30 13:05:44 -0500297 ohci_dump_intr_mask("intrstatus", ohci_readl(&regs->intrstatus));
298 ohci_dump_intr_mask("intrenable", ohci_readl(&regs->intrenable));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200299
Becky Brucea5496a12010-06-30 13:05:44 -0500300 maybe_print_eds("ed_periodcurrent",
301 ohci_readl(&regs->ed_periodcurrent));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200302
Becky Brucea5496a12010-06-30 13:05:44 -0500303 maybe_print_eds("ed_controlhead", ohci_readl(&regs->ed_controlhead));
304 maybe_print_eds("ed_controlcurrent",
305 ohci_readl(&regs->ed_controlcurrent));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200306
Becky Brucea5496a12010-06-30 13:05:44 -0500307 maybe_print_eds("ed_bulkhead", ohci_readl(&regs->ed_bulkhead));
308 maybe_print_eds("ed_bulkcurrent", ohci_readl(&regs->ed_bulkcurrent));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200309
Becky Brucea5496a12010-06-30 13:05:44 -0500310 maybe_print_eds("donehead", ohci_readl(&regs->donehead));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200311}
312
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200313static void ohci_dump_roothub(ohci_t *controller, int verbose)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200314{
315 __u32 temp, ndp, i;
316
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200317 temp = roothub_a(controller);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200318 ndp = (temp & RH_A_NDP);
319#ifdef CONFIG_AT91C_PQFP_UHPBUG
320 ndp = (ndp == 2) ? 1:0;
321#endif
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200322 if (verbose) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200323 dbg("roothub.a: %08x POTPGT=%d%s%s%s%s%s NDP=%d", temp,
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200324 ((temp & RH_A_POTPGT) >> 24) & 0xff,
325 (temp & RH_A_NOCP) ? " NOCP" : "",
326 (temp & RH_A_OCPM) ? " OCPM" : "",
327 (temp & RH_A_DT) ? " DT" : "",
328 (temp & RH_A_NPS) ? " NPS" : "",
329 (temp & RH_A_PSM) ? " PSM" : "",
330 ndp
331 );
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200332 temp = roothub_b(controller);
333 dbg("roothub.b: %08x PPCM=%04x DR=%04x",
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200334 temp,
335 (temp & RH_B_PPCM) >> 16,
336 (temp & RH_B_DR)
337 );
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200338 temp = roothub_status(controller);
339 dbg("roothub.status: %08x%s%s%s%s%s%s",
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200340 temp,
341 (temp & RH_HS_CRWE) ? " CRWE" : "",
342 (temp & RH_HS_OCIC) ? " OCIC" : "",
343 (temp & RH_HS_LPSC) ? " LPSC" : "",
344 (temp & RH_HS_DRWE) ? " DRWE" : "",
345 (temp & RH_HS_OCI) ? " OCI" : "",
346 (temp & RH_HS_LPS) ? " LPS" : ""
347 );
348 }
349
350 for (i = 0; i < ndp; i++) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200351 temp = roothub_portstatus(controller, i);
352 dbg("roothub.portstatus [%d] = 0x%08x%s%s%s%s%s%s%s%s%s%s%s%s",
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200353 i,
354 temp,
355 (temp & RH_PS_PRSC) ? " PRSC" : "",
356 (temp & RH_PS_OCIC) ? " OCIC" : "",
357 (temp & RH_PS_PSSC) ? " PSSC" : "",
358 (temp & RH_PS_PESC) ? " PESC" : "",
359 (temp & RH_PS_CSC) ? " CSC" : "",
360
361 (temp & RH_PS_LSDA) ? " LSDA" : "",
362 (temp & RH_PS_PPS) ? " PPS" : "",
363 (temp & RH_PS_PRS) ? " PRS" : "",
364 (temp & RH_PS_POCI) ? " POCI" : "",
365 (temp & RH_PS_PSS) ? " PSS" : "",
366
367 (temp & RH_PS_PES) ? " PES" : "",
368 (temp & RH_PS_CCS) ? " CCS" : ""
369 );
370 }
371}
372
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200373static void ohci_dump(ohci_t *controller, int verbose)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200374{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200375 dbg("OHCI controller usb-%s state", controller->slot_name);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200376
377 /* dumps some of the state we know about */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200378 ohci_dump_status(controller);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200379 if (verbose)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200380 ep_print_int_eds(controller, "hcca");
381 dbg("hcca frame #%04x", controller->hcca->frame_no);
382 ohci_dump_roothub(controller, 1);
Stefan Roese2596f5b2008-03-05 12:29:32 +0100383}
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200384#endif /* DEBUG */
385
386/*-------------------------------------------------------------------------*
387 * Interface functions (URB)
388 *-------------------------------------------------------------------------*/
389
390/* get a transfer request */
391
Zhang Wei4dae14c2007-06-06 10:08:14 +0200392int sohci_submit_job(urb_priv_t *urb, struct devrequest *setup)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200393{
394 ohci_t *ohci;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200395 ed_t *ed;
Zhang Wei4dae14c2007-06-06 10:08:14 +0200396 urb_priv_t *purb_priv = urb;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200397 int i, size = 0;
Zhang Wei4dae14c2007-06-06 10:08:14 +0200398 struct usb_device *dev = urb->dev;
399 unsigned long pipe = urb->pipe;
400 void *buffer = urb->transfer_buffer;
401 int transfer_len = urb->transfer_buffer_length;
402 int interval = urb->interval;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200403
404 ohci = &gohci;
405
406 /* when controller's hung, permit only roothub cleanup attempts
407 * such as powering down ports */
408 if (ohci->disabled) {
409 err("sohci_submit_job: EPIPE");
410 return -1;
411 }
Markus Klotzbuecherae79f602007-03-26 11:21:05 +0200412
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200413 /* we're about to begin a new transaction here so mark the
414 * URB unfinished */
Zhang Wei4dae14c2007-06-06 10:08:14 +0200415 urb->finished = 0;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200416
417 /* every endpoint has a ed, locate and fill it */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200418 ed = ep_add_ed(dev, pipe, interval, 1);
419 if (!ed) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200420 err("sohci_submit_job: ENOMEM");
421 return -1;
422 }
423
424 /* for the private part of the URB we need the number of TDs (size) */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200425 switch (usb_pipetype(pipe)) {
426 case PIPE_BULK: /* one TD for every 4096 Byte */
427 size = (transfer_len - 1) / 4096 + 1;
428 break;
429 case PIPE_CONTROL:/* 1 TD for setup, 1 for ACK and 1 for every 4096 B */
430 size = (transfer_len == 0)? 2:
431 (transfer_len - 1) / 4096 + 3;
432 break;
433 case PIPE_INTERRUPT: /* 1 TD */
434 size = 1;
435 break;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200436 }
437
Zhang Wei4dae14c2007-06-06 10:08:14 +0200438 ed->purb = urb;
439
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200440 if (size >= (N_URB_TD - 1)) {
441 err("need %d TDs, only have %d", size, N_URB_TD);
442 return -1;
443 }
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200444 purb_priv->pipe = pipe;
445
446 /* fill the private part of the URB */
447 purb_priv->length = size;
448 purb_priv->ed = ed;
449 purb_priv->actual_length = 0;
450
451 /* allocate the TDs */
452 /* note that td[0] was allocated in ep_add_ed */
453 for (i = 0; i < size; i++) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200454 purb_priv->td[i] = td_alloc(dev);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200455 if (!purb_priv->td[i]) {
456 purb_priv->length = i;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200457 urb_free_priv(purb_priv);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200458 err("sohci_submit_job: ENOMEM");
459 return -1;
460 }
461 }
462
463 if (ed->state == ED_NEW || (ed->state & ED_DEL)) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200464 urb_free_priv(purb_priv);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200465 err("sohci_submit_job: EINVAL");
466 return -1;
467 }
468
469 /* link the ed into a chain if is not already */
470 if (ed->state != ED_OPER)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200471 ep_link(ohci, ed);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200472
473 /* fill the TDs and link it to the ed */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200474 td_submit_job(dev, pipe, buffer, transfer_len,
475 setup, purb_priv, interval);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200476
477 return 0;
478}
479
Zhang Wei4dae14c2007-06-06 10:08:14 +0200480static inline int sohci_return_job(struct ohci *hc, urb_priv_t *urb)
481{
482 struct ohci_regs *regs = hc->regs;
483
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200484 switch (usb_pipetype(urb->pipe)) {
Zhang Wei4dae14c2007-06-06 10:08:14 +0200485 case PIPE_INTERRUPT:
486 /* implicitly requeued */
487 if (urb->dev->irq_handle &&
488 (urb->dev->irq_act_len = urb->actual_length)) {
Becky Brucea5496a12010-06-30 13:05:44 -0500489 ohci_writel(OHCI_INTR_WDH, &regs->intrenable);
490 ohci_readl(&regs->intrenable); /* PCI posting flush */
Zhang Wei4dae14c2007-06-06 10:08:14 +0200491 urb->dev->irq_handle(urb->dev);
Becky Brucea5496a12010-06-30 13:05:44 -0500492 ohci_writel(OHCI_INTR_WDH, &regs->intrdisable);
493 ohci_readl(&regs->intrdisable); /* PCI posting flush */
Zhang Wei4dae14c2007-06-06 10:08:14 +0200494 }
495 urb->actual_length = 0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200496 td_submit_job(
Zhang Wei4dae14c2007-06-06 10:08:14 +0200497 urb->dev,
498 urb->pipe,
499 urb->transfer_buffer,
500 urb->transfer_buffer_length,
501 NULL,
502 urb,
503 urb->interval);
504 break;
505 case PIPE_CONTROL:
506 case PIPE_BULK:
507 break;
508 default:
509 return 0;
510 }
511 return 1;
512}
513
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200514/*-------------------------------------------------------------------------*/
515
516#ifdef DEBUG
517/* tell us the current USB frame number */
518
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200519static int sohci_get_current_frame_number(struct usb_device *usb_dev)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200520{
521 ohci_t *ohci = &gohci;
522
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200523 return m16_swap(ohci->hcca->frame_no);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200524}
525#endif
526
527/*-------------------------------------------------------------------------*
528 * ED handling functions
529 *-------------------------------------------------------------------------*/
530
Zhang Wei4dae14c2007-06-06 10:08:14 +0200531/* search for the right branch to insert an interrupt ed into the int tree
532 * do some load ballancing;
533 * returns the branch and
534 * sets the interval to interval = 2^integer (ld (interval)) */
535
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200536static int ep_int_ballance(ohci_t *ohci, int interval, int load)
Zhang Wei4dae14c2007-06-06 10:08:14 +0200537{
538 int i, branch = 0;
539
540 /* search for the least loaded interrupt endpoint
541 * branch of all 32 branches
542 */
543 for (i = 0; i < 32; i++)
544 if (ohci->ohci_int_load [branch] > ohci->ohci_int_load [i])
545 branch = i;
546
547 branch = branch % interval;
548 for (i = branch; i < 32; i += interval)
549 ohci->ohci_int_load [i] += load;
550
551 return branch;
552}
553
554/*-------------------------------------------------------------------------*/
555
556/* 2^int( ld (inter)) */
557
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200558static int ep_2_n_interval(int inter)
Zhang Wei4dae14c2007-06-06 10:08:14 +0200559{
560 int i;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200561 for (i = 0; ((inter >> i) > 1) && (i < 5); i++);
Zhang Wei4dae14c2007-06-06 10:08:14 +0200562 return 1 << i;
563}
564
565/*-------------------------------------------------------------------------*/
566
567/* the int tree is a binary tree
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200568 * in order to process it sequentially the indexes of the branches have to
569 * be mapped the mapping reverses the bits of a word of num_bits length */
570static int ep_rev(int num_bits, int word)
Zhang Wei4dae14c2007-06-06 10:08:14 +0200571{
572 int i, wout = 0;
573
574 for (i = 0; i < num_bits; i++)
575 wout |= (((word >> i) & 1) << (num_bits - i - 1));
576 return wout;
577}
578
579/*-------------------------------------------------------------------------*
580 * ED handling functions
581 *-------------------------------------------------------------------------*/
582
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200583/* link an ed into one of the HC chains */
584
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200585static int ep_link(ohci_t *ohci, ed_t *edi)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200586{
587 volatile ed_t *ed = edi;
Zhang Wei4dae14c2007-06-06 10:08:14 +0200588 int int_branch;
589 int i;
590 int inter;
591 int interval;
592 int load;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200593 __u32 *ed_p;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200594
595 ed->state = ED_OPER;
Zhang Wei4dae14c2007-06-06 10:08:14 +0200596 ed->int_interval = 0;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200597
598 switch (ed->type) {
599 case PIPE_CONTROL:
600 ed->hwNextED = 0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200601 if (ohci->ed_controltail == NULL)
Becky Brucea5496a12010-06-30 13:05:44 -0500602 ohci_writel(ed, &ohci->regs->ed_controlhead);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200603 else
604 ohci->ed_controltail->hwNextED =
605 m32_swap((unsigned long)ed);
606
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200607 ed->ed_prev = ohci->ed_controltail;
608 if (!ohci->ed_controltail && !ohci->ed_rm_list[0] &&
609 !ohci->ed_rm_list[1] && !ohci->sleeping) {
610 ohci->hc_control |= OHCI_CTRL_CLE;
Becky Brucea5496a12010-06-30 13:05:44 -0500611 ohci_writel(ohci->hc_control, &ohci->regs->control);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200612 }
613 ohci->ed_controltail = edi;
614 break;
615
616 case PIPE_BULK:
617 ed->hwNextED = 0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200618 if (ohci->ed_bulktail == NULL)
Becky Brucea5496a12010-06-30 13:05:44 -0500619 ohci_writel(ed, &ohci->regs->ed_bulkhead);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200620 else
621 ohci->ed_bulktail->hwNextED =
622 m32_swap((unsigned long)ed);
623
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200624 ed->ed_prev = ohci->ed_bulktail;
625 if (!ohci->ed_bulktail && !ohci->ed_rm_list[0] &&
626 !ohci->ed_rm_list[1] && !ohci->sleeping) {
627 ohci->hc_control |= OHCI_CTRL_BLE;
Becky Brucea5496a12010-06-30 13:05:44 -0500628 ohci_writel(ohci->hc_control, &ohci->regs->control);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200629 }
630 ohci->ed_bulktail = edi;
631 break;
Zhang Wei4dae14c2007-06-06 10:08:14 +0200632
633 case PIPE_INTERRUPT:
634 load = ed->int_load;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200635 interval = ep_2_n_interval(ed->int_period);
Zhang Wei4dae14c2007-06-06 10:08:14 +0200636 ed->int_interval = interval;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200637 int_branch = ep_int_ballance(ohci, interval, load);
Zhang Wei4dae14c2007-06-06 10:08:14 +0200638 ed->int_branch = int_branch;
639
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200640 for (i = 0; i < ep_rev(6, interval); i += inter) {
Zhang Wei4dae14c2007-06-06 10:08:14 +0200641 inter = 1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200642 for (ed_p = &(ohci->hcca->int_table[\
643 ep_rev(5, i) + int_branch]);
644 (*ed_p != 0) &&
645 (((ed_t *)ed_p)->int_interval >= interval);
Zhang Wei4dae14c2007-06-06 10:08:14 +0200646 ed_p = &(((ed_t *)ed_p)->hwNextED))
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200647 inter = ep_rev(6,
648 ((ed_t *)ed_p)->int_interval);
Zhang Wei4dae14c2007-06-06 10:08:14 +0200649 ed->hwNextED = *ed_p;
Martin Krause4a8527e2007-08-21 12:40:34 +0200650 *ed_p = m32_swap((unsigned long)ed);
Zhang Wei4dae14c2007-06-06 10:08:14 +0200651 }
652 break;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200653 }
654 return 0;
655}
656
657/*-------------------------------------------------------------------------*/
658
Zhang Wei4dae14c2007-06-06 10:08:14 +0200659/* scan the periodic table to find and unlink this ED */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200660static void periodic_unlink(struct ohci *ohci, volatile struct ed *ed,
661 unsigned index, unsigned period)
Zhang Wei4dae14c2007-06-06 10:08:14 +0200662{
663 for (; index < NUM_INTS; index += period) {
664 __u32 *ed_p = &ohci->hcca->int_table [index];
665
666 /* ED might have been unlinked through another path */
667 while (*ed_p != 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200668 if (((struct ed *)
669 m32_swap((unsigned long)ed_p)) == ed) {
Zhang Wei4dae14c2007-06-06 10:08:14 +0200670 *ed_p = ed->hwNextED;
671 break;
672 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200673 ed_p = &(((struct ed *)
674 m32_swap((unsigned long)ed_p))->hwNextED);
Zhang Wei4dae14c2007-06-06 10:08:14 +0200675 }
676 }
677}
678
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200679/* unlink an ed from one of the HC chains.
680 * just the link to the ed is unlinked.
681 * the link from the ed still points to another operational ed or 0
682 * so the HC can eventually finish the processing of the unlinked ed */
683
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200684static int ep_unlink(ohci_t *ohci, ed_t *edi)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200685{
Markus Klotzbuecher53e336e2006-11-27 11:43:09 +0100686 volatile ed_t *ed = edi;
Zhang Wei4dae14c2007-06-06 10:08:14 +0200687 int i;
Markus Klotzbuecher53e336e2006-11-27 11:43:09 +0100688
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200689 ed->hwINFO |= m32_swap(OHCI_ED_SKIP);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200690
691 switch (ed->type) {
692 case PIPE_CONTROL:
693 if (ed->ed_prev == NULL) {
694 if (!ed->hwNextED) {
695 ohci->hc_control &= ~OHCI_CTRL_CLE;
Becky Brucea5496a12010-06-30 13:05:44 -0500696 ohci_writel(ohci->hc_control,
697 &ohci->regs->control);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200698 }
Becky Brucea5496a12010-06-30 13:05:44 -0500699 ohci_writel(m32_swap(*((__u32 *)&ed->hwNextED)),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200700 &ohci->regs->ed_controlhead);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200701 } else {
702 ed->ed_prev->hwNextED = ed->hwNextED;
703 }
704 if (ohci->ed_controltail == ed) {
705 ohci->ed_controltail = ed->ed_prev;
706 } else {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200707 ((ed_t *)m32_swap(
708 *((__u32 *)&ed->hwNextED)))->ed_prev = ed->ed_prev;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200709 }
710 break;
711
712 case PIPE_BULK:
713 if (ed->ed_prev == NULL) {
714 if (!ed->hwNextED) {
715 ohci->hc_control &= ~OHCI_CTRL_BLE;
Becky Brucea5496a12010-06-30 13:05:44 -0500716 ohci_writel(ohci->hc_control,
717 &ohci->regs->control);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200718 }
Becky Brucea5496a12010-06-30 13:05:44 -0500719 ohci_writel(m32_swap(*((__u32 *)&ed->hwNextED)),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200720 &ohci->regs->ed_bulkhead);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200721 } else {
722 ed->ed_prev->hwNextED = ed->hwNextED;
723 }
724 if (ohci->ed_bulktail == ed) {
725 ohci->ed_bulktail = ed->ed_prev;
726 } else {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200727 ((ed_t *)m32_swap(
728 *((__u32 *)&ed->hwNextED)))->ed_prev = ed->ed_prev;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200729 }
730 break;
Zhang Wei4dae14c2007-06-06 10:08:14 +0200731
732 case PIPE_INTERRUPT:
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200733 periodic_unlink(ohci, ed, 0, 1);
Zhang Wei4dae14c2007-06-06 10:08:14 +0200734 for (i = ed->int_branch; i < 32; i += ed->int_interval)
735 ohci->ohci_int_load[i] -= ed->int_load;
736 break;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200737 }
738 ed->state = ED_UNLINK;
739 return 0;
740}
741
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200742/*-------------------------------------------------------------------------*/
743
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +0200744/* add/reinit an endpoint; this should be done once at the
745 * usb_set_configuration command, but the USB stack is a little bit
746 * stateless so we do it at every transaction if the state of the ed
747 * is ED_NEW then a dummy td is added and the state is changed to
748 * ED_UNLINK in all other cases the state is left unchanged the ed
749 * info fields are setted anyway even though most of them should not
750 * change
751 */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200752static ed_t *ep_add_ed(struct usb_device *usb_dev, unsigned long pipe,
753 int interval, int load)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200754{
755 td_t *td;
756 ed_t *ed_ret;
757 volatile ed_t *ed;
758
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200759 ed = ed_ret = &ohci_dev.ed[(usb_pipeendpoint(pipe) << 1) |
760 (usb_pipecontrol(pipe)? 0: usb_pipeout(pipe))];
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200761
762 if ((ed->state & ED_DEL) || (ed->state & ED_URB_DEL)) {
763 err("ep_add_ed: pending delete");
764 /* pending delete request */
765 return NULL;
766 }
767
768 if (ed->state == ED_NEW) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200769 /* dummy td; end of td list for ed */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200770 td = td_alloc(usb_dev);
771 ed->hwTailP = m32_swap((unsigned long)td);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200772 ed->hwHeadP = ed->hwTailP;
773 ed->state = ED_UNLINK;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200774 ed->type = usb_pipetype(pipe);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200775 ohci_dev.ed_cnt++;
776 }
777
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200778 ed->hwINFO = m32_swap(usb_pipedevice(pipe)
779 | usb_pipeendpoint(pipe) << 7
780 | (usb_pipeisoc(pipe)? 0x8000: 0)
781 | (usb_pipecontrol(pipe)? 0: \
782 (usb_pipeout(pipe)? 0x800: 0x1000))
Ilya Yanokc60795f2012-11-06 13:48:20 +0000783 | (usb_dev->speed == USB_SPEED_LOW) << 13
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200784 | usb_maxpacket(usb_dev, pipe) << 16);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200785
Zhang Wei4dae14c2007-06-06 10:08:14 +0200786 if (ed->type == PIPE_INTERRUPT && ed->state == ED_UNLINK) {
787 ed->int_period = interval;
788 ed->int_load = load;
789 }
790
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200791 return ed_ret;
792}
793
794/*-------------------------------------------------------------------------*
795 * TD handling functions
796 *-------------------------------------------------------------------------*/
797
798/* enqueue next TD for this URB (OHCI spec 5.2.8.2) */
799
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200800static void td_fill(ohci_t *ohci, unsigned int info,
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200801 void *data, int len,
802 struct usb_device *dev, int index, urb_priv_t *urb_priv)
803{
804 volatile td_t *td, *td_pt;
805#ifdef OHCI_FILL_TRACE
806 int i;
807#endif
808
809 if (index > urb_priv->length) {
810 err("index > length");
811 return;
812 }
813 /* use this td as the next dummy */
814 td_pt = urb_priv->td [index];
815 td_pt->hwNextTD = 0;
816
817 /* fill the old dummy TD */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200818 td = urb_priv->td [index] =
819 (td_t *)(m32_swap(urb_priv->ed->hwTailP) & ~0xf);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200820
821 td->ed = urb_priv->ed;
822 td->next_dl_td = NULL;
823 td->index = index;
824 td->data = (__u32)data;
825#ifdef OHCI_FILL_TRACE
Remy Bohmer48867202008-10-10 10:23:21 +0200826 if (usb_pipebulk(urb_priv->pipe) && usb_pipeout(urb_priv->pipe)) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200827 for (i = 0; i < len; i++)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200828 printf("td->data[%d] %#2x ", i, ((unsigned char *)td->data)[i]);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200829 printf("\n");
830 }
831#endif
832 if (!len)
833 data = 0;
834
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200835 td->hwINFO = m32_swap(info);
836 td->hwCBP = m32_swap((unsigned long)data);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200837 if (data)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200838 td->hwBE = m32_swap((unsigned long)(data + len - 1));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200839 else
840 td->hwBE = 0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200841
842 td->hwNextTD = m32_swap((unsigned long)td_pt);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200843
844 /* append to queue */
845 td->ed->hwTailP = td->hwNextTD;
846}
847
848/*-------------------------------------------------------------------------*/
849
850/* prepare all TDs of a transfer */
851
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200852static void td_submit_job(struct usb_device *dev, unsigned long pipe,
853 void *buffer, int transfer_len,
854 struct devrequest *setup, urb_priv_t *urb,
855 int interval)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200856{
857 ohci_t *ohci = &gohci;
858 int data_len = transfer_len;
859 void *data;
860 int cnt = 0;
861 __u32 info = 0;
862 unsigned int toggle = 0;
863
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200864 /* OHCI handles the DATA-toggles itself, we just use the USB-toggle
865 * bits for reseting */
866 if (usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe))) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200867 toggle = TD_T_TOGGLE;
868 } else {
869 toggle = TD_T_DATA0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200870 usb_settoggle(dev, usb_pipeendpoint(pipe),
871 usb_pipeout(pipe), 1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200872 }
873 urb->td_cnt = 0;
874 if (data_len)
875 data = buffer;
876 else
877 data = 0;
878
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200879 switch (usb_pipetype(pipe)) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200880 case PIPE_BULK:
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200881 info = usb_pipeout(pipe)?
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200882 TD_CC | TD_DP_OUT : TD_CC | TD_DP_IN ;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200883 while (data_len > 4096) {
884 td_fill(ohci, info | (cnt? TD_T_TOGGLE:toggle),
885 data, 4096, dev, cnt, urb);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200886 data += 4096; data_len -= 4096; cnt++;
887 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200888 info = usb_pipeout(pipe)?
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200889 TD_CC | TD_DP_OUT : TD_CC | TD_R | TD_DP_IN ;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200890 td_fill(ohci, info | (cnt? TD_T_TOGGLE:toggle), data,
891 data_len, dev, cnt, urb);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200892 cnt++;
893
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200894 if (!ohci->sleeping) {
895 /* start bulk list */
Becky Brucea5496a12010-06-30 13:05:44 -0500896 ohci_writel(OHCI_BLF, &ohci->regs->cmdstatus);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200897 }
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200898 break;
899
900 case PIPE_CONTROL:
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200901 /* Setup phase */
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200902 info = TD_CC | TD_DP_SETUP | TD_T_DATA0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200903 td_fill(ohci, info, setup, 8, dev, cnt++, urb);
904
905 /* Optional Data phase */
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200906 if (data_len > 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200907 info = usb_pipeout(pipe)?
908 TD_CC | TD_R | TD_DP_OUT | TD_T_DATA1 :
909 TD_CC | TD_R | TD_DP_IN | TD_T_DATA1;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200910 /* NOTE: mishandles transfers >8K, some >4K */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200911 td_fill(ohci, info, data, data_len, dev, cnt++, urb);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200912 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200913
914 /* Status phase */
915 info = usb_pipeout(pipe)?
916 TD_CC | TD_DP_IN | TD_T_DATA1:
917 TD_CC | TD_DP_OUT | TD_T_DATA1;
918 td_fill(ohci, info, data, 0, dev, cnt++, urb);
919
920 if (!ohci->sleeping) {
921 /* start Control list */
Becky Brucea5496a12010-06-30 13:05:44 -0500922 ohci_writel(OHCI_CLF, &ohci->regs->cmdstatus);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200923 }
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200924 break;
Zhang Wei4dae14c2007-06-06 10:08:14 +0200925
926 case PIPE_INTERRUPT:
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200927 info = usb_pipeout(urb->pipe)?
Zhang Wei4dae14c2007-06-06 10:08:14 +0200928 TD_CC | TD_DP_OUT | toggle:
929 TD_CC | TD_R | TD_DP_IN | toggle;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200930 td_fill(ohci, info, data, data_len, dev, cnt++, urb);
Zhang Wei4dae14c2007-06-06 10:08:14 +0200931 break;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200932 }
933 if (urb->length != cnt)
934 dbg("TD LENGTH %d != CNT %d", urb->length, cnt);
935}
936
937/*-------------------------------------------------------------------------*
938 * Done List handling functions
939 *-------------------------------------------------------------------------*/
940
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200941/* calculate the transfer length and update the urb */
942
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200943static void dl_transfer_length(td_t *td)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200944{
Wolfgang Denk6bc52ef2011-10-05 23:03:43 +0200945 __u32 tdBE, tdCBP;
Zhang Wei4dae14c2007-06-06 10:08:14 +0200946 urb_priv_t *lurb_priv = td->ed->purb;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200947
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200948 tdBE = m32_swap(td->hwBE);
949 tdCBP = m32_swap(td->hwCBP);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200950
Remy Bohmer48867202008-10-10 10:23:21 +0200951 if (!(usb_pipecontrol(lurb_priv->pipe) &&
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200952 ((td->index == 0) || (td->index == lurb_priv->length - 1)))) {
953 if (tdBE != 0) {
954 if (td->hwCBP == 0)
955 lurb_priv->actual_length += tdBE - td->data + 1;
956 else
957 lurb_priv->actual_length += tdCBP - td->data;
958 }
959 }
960}
961
962/*-------------------------------------------------------------------------*/
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200963static void check_status(td_t *td_list)
964{
965 urb_priv_t *lurb_priv = td_list->ed->purb;
966 int urb_len = lurb_priv->length;
967 __u32 *phwHeadP = &td_list->ed->hwHeadP;
968 int cc;
969
970 cc = TD_CC_GET(m32_swap(td_list->hwINFO));
971 if (cc) {
972 err(" USB-error: %s (%x)", cc_to_string[cc], cc);
973
974 if (*phwHeadP & m32_swap(0x1)) {
975 if (lurb_priv &&
976 ((td_list->index + 1) < urb_len)) {
977 *phwHeadP =
978 (lurb_priv->td[urb_len - 1]->hwNextTD &\
979 m32_swap(0xfffffff0)) |
980 (*phwHeadP & m32_swap(0x2));
981
982 lurb_priv->td_cnt += urb_len -
983 td_list->index - 1;
984 } else
985 *phwHeadP &= m32_swap(0xfffffff2);
986 }
987#ifdef CONFIG_MPC5200
988 td_list->hwNextTD = 0;
989#endif
990 }
991}
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200992
993/* replies to the request have to be on a FIFO basis so
994 * we reverse the reversed done-list */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200995static td_t *dl_reverse_done_list(ohci_t *ohci)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200996{
997 __u32 td_list_hc;
998 td_t *td_rev = NULL;
999 td_t *td_list = NULL;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001000
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001001 td_list_hc = m32_swap(ohci->hcca->done_head) & 0xfffffff0;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001002 ohci->hcca->done_head = 0;
1003
1004 while (td_list_hc) {
1005 td_list = (td_t *)td_list_hc;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001006 check_status(td_list);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001007 td_list->next_dl_td = td_rev;
1008 td_rev = td_list;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001009 td_list_hc = m32_swap(td_list->hwNextTD) & 0xfffffff0;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001010 }
1011 return td_list;
1012}
1013
1014/*-------------------------------------------------------------------------*/
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001015/*-------------------------------------------------------------------------*/
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001016
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001017static void finish_urb(ohci_t *ohci, urb_priv_t *urb, int status)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001018{
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001019 if ((status & (ED_OPER | ED_UNLINK)) && (urb->state != URB_DEL))
1020 urb->finished = sohci_return_job(ohci, urb);
1021 else
1022 dbg("finish_urb: strange.., ED state %x, \n", status);
1023}
1024
1025/*
1026 * Used to take back a TD from the host controller. This would normally be
1027 * called from within dl_done_list, however it may be called directly if the
1028 * HC no longer sees the TD and it has not appeared on the donelist (after
1029 * two frames). This bug has been observed on ZF Micro systems.
1030 */
1031static int takeback_td(ohci_t *ohci, td_t *td_list)
1032{
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001033 ed_t *ed;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001034 int cc;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001035 int stat = 0;
1036 /* urb_t *urb; */
1037 urb_priv_t *lurb_priv;
1038 __u32 tdINFO, edHeadP, edTailP;
1039
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001040 tdINFO = m32_swap(td_list->hwINFO);
1041
1042 ed = td_list->ed;
1043 lurb_priv = ed->purb;
1044
1045 dl_transfer_length(td_list);
1046
1047 lurb_priv->td_cnt++;
1048
1049 /* error code of transfer */
1050 cc = TD_CC_GET(tdINFO);
1051 if (cc) {
1052 err("USB-error: %s (%x)", cc_to_string[cc], cc);
1053 stat = cc_to_error[cc];
1054 }
1055
1056 /* see if this done list makes for all TD's of current URB,
1057 * and mark the URB finished if so */
1058 if (lurb_priv->td_cnt == lurb_priv->length)
1059 finish_urb(ohci, lurb_priv, ed->state);
1060
1061 dbg("dl_done_list: processing TD %x, len %x\n",
1062 lurb_priv->td_cnt, lurb_priv->length);
1063
Remy Bohmer48867202008-10-10 10:23:21 +02001064 if (ed->state != ED_NEW && (!usb_pipeint(lurb_priv->pipe))) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001065 edHeadP = m32_swap(ed->hwHeadP) & 0xfffffff0;
1066 edTailP = m32_swap(ed->hwTailP);
1067
1068 /* unlink eds if they are not busy */
1069 if ((edHeadP == edTailP) && (ed->state == ED_OPER))
1070 ep_unlink(ohci, ed);
1071 }
1072 return stat;
1073}
1074
1075static int dl_done_list(ohci_t *ohci)
1076{
1077 int stat = 0;
1078 td_t *td_list = dl_reverse_done_list(ohci);
1079
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001080 while (td_list) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001081 td_t *td_next = td_list->next_dl_td;
1082 stat = takeback_td(ohci, td_list);
1083 td_list = td_next;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001084 }
1085 return stat;
1086}
1087
1088/*-------------------------------------------------------------------------*
1089 * Virtual Root Hub
1090 *-------------------------------------------------------------------------*/
1091
Stephen Warreneb838e72014-02-13 21:15:18 -07001092#include <usbroothubdes.h>
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001093
1094/* Hub class-specific descriptor is constructed dynamically */
1095
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001096/*-------------------------------------------------------------------------*/
1097
1098#define OK(x) len = (x); break
1099#ifdef DEBUG
Becky Brucea5496a12010-06-30 13:05:44 -05001100#define WR_RH_STAT(x) {info("WR:status %#8x", (x)); ohci_writel((x), \
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001101 &gohci.regs->roothub.status); }
1102#define WR_RH_PORTSTAT(x) {info("WR:portstatus[%d] %#8x", wIndex-1, \
Becky Brucea5496a12010-06-30 13:05:44 -05001103 (x)); ohci_writel((x), &gohci.regs->roothub.portstatus[wIndex-1]); }
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001104#else
Becky Brucea5496a12010-06-30 13:05:44 -05001105#define WR_RH_STAT(x) ohci_writel((x), &gohci.regs->roothub.status)
1106#define WR_RH_PORTSTAT(x) ohci_writel((x), \
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001107 &gohci.regs->roothub.portstatus[wIndex-1])
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001108#endif
1109#define RD_RH_STAT roothub_status(&gohci)
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001110#define RD_RH_PORTSTAT roothub_portstatus(&gohci, wIndex-1)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001111
1112/* request to virtual root hub */
1113
1114int rh_check_port_status(ohci_t *controller)
1115{
1116 __u32 temp, ndp, i;
1117 int res;
1118
1119 res = -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001120 temp = roothub_a(controller);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001121 ndp = (temp & RH_A_NDP);
1122#ifdef CONFIG_AT91C_PQFP_UHPBUG
1123 ndp = (ndp == 2) ? 1:0;
1124#endif
1125 for (i = 0; i < ndp; i++) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001126 temp = roothub_portstatus(controller, i);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001127 /* check for a device disconnect */
1128 if (((temp & (RH_PS_PESC | RH_PS_CSC)) ==
1129 (RH_PS_PESC | RH_PS_CSC)) &&
1130 ((temp & RH_PS_CCS) == 0)) {
1131 res = i;
1132 break;
1133 }
1134 }
1135 return res;
1136}
1137
1138static int ohci_submit_rh_msg(struct usb_device *dev, unsigned long pipe,
1139 void *buffer, int transfer_len, struct devrequest *cmd)
1140{
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001141 void *data = buffer;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001142 int leni = transfer_len;
1143 int len = 0;
1144 int stat = 0;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001145 __u16 bmRType_bReq;
1146 __u16 wValue;
1147 __u16 wIndex;
1148 __u16 wLength;
Troy Kiskyf1273f12012-08-11 14:49:09 -07001149 ALLOC_ALIGN_BUFFER(__u8, databuf, 16, sizeof(u32));
Marek Vasut5f6aa032011-10-07 02:00:13 +02001150
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001151#ifdef DEBUG
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001152pkt_print(NULL, dev, pipe, buffer, transfer_len,
1153 cmd, "SUB(rh)", usb_pipein(pipe));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001154#else
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001155 mdelay(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001156#endif
Remy Bohmer48867202008-10-10 10:23:21 +02001157 if (usb_pipeint(pipe)) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001158 info("Root-Hub submit IRQ: NOT implemented");
1159 return 0;
1160 }
1161
1162 bmRType_bReq = cmd->requesttype | (cmd->request << 8);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001163 wValue = le16_to_cpu(cmd->value);
1164 wIndex = le16_to_cpu(cmd->index);
1165 wLength = le16_to_cpu(cmd->length);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001166
1167 info("Root-Hub: adr: %2x cmd(%1x): %08x %04x %04x %04x",
1168 dev->devnum, 8, bmRType_bReq, wValue, wIndex, wLength);
1169
1170 switch (bmRType_bReq) {
1171 /* Request Destination:
1172 without flags: Device,
1173 RH_INTERFACE: interface,
1174 RH_ENDPOINT: endpoint,
1175 RH_CLASS means HUB here,
1176 RH_OTHER | RH_CLASS almost ever means HUB_PORT here
1177 */
1178
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +01001179 case RH_GET_STATUS:
Troy Kiskyf1273f12012-08-11 14:49:09 -07001180 *(u16 *)databuf = cpu_to_le16(1);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001181 OK(2);
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +01001182 case RH_GET_STATUS | RH_INTERFACE:
Troy Kiskyf1273f12012-08-11 14:49:09 -07001183 *(u16 *)databuf = cpu_to_le16(0);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001184 OK(2);
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +01001185 case RH_GET_STATUS | RH_ENDPOINT:
Troy Kiskyf1273f12012-08-11 14:49:09 -07001186 *(u16 *)databuf = cpu_to_le16(0);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001187 OK(2);
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +01001188 case RH_GET_STATUS | RH_CLASS:
Troy Kiskyf1273f12012-08-11 14:49:09 -07001189 *(u32 *)databuf = cpu_to_le32(
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +01001190 RD_RH_STAT & ~(RH_HS_CRWE | RH_HS_DRWE));
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001191 OK(4);
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +01001192 case RH_GET_STATUS | RH_OTHER | RH_CLASS:
Troy Kiskyf1273f12012-08-11 14:49:09 -07001193 *(u32 *)databuf = cpu_to_le32(RD_RH_PORTSTAT);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001194 OK(4);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001195
1196 case RH_CLEAR_FEATURE | RH_ENDPOINT:
1197 switch (wValue) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001198 case (RH_ENDPOINT_STALL):
1199 OK(0);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001200 }
1201 break;
1202
1203 case RH_CLEAR_FEATURE | RH_CLASS:
1204 switch (wValue) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001205 case RH_C_HUB_LOCAL_POWER:
1206 OK(0);
1207 case (RH_C_HUB_OVER_CURRENT):
1208 WR_RH_STAT(RH_HS_OCIC);
1209 OK(0);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001210 }
1211 break;
1212
1213 case RH_CLEAR_FEATURE | RH_OTHER | RH_CLASS:
1214 switch (wValue) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001215 case (RH_PORT_ENABLE): WR_RH_PORTSTAT(RH_PS_CCS); OK(0);
1216 case (RH_PORT_SUSPEND): WR_RH_PORTSTAT(RH_PS_POCI); OK(0);
1217 case (RH_PORT_POWER): WR_RH_PORTSTAT(RH_PS_LSDA); OK(0);
1218 case (RH_C_PORT_CONNECTION): WR_RH_PORTSTAT(RH_PS_CSC); OK(0);
1219 case (RH_C_PORT_ENABLE): WR_RH_PORTSTAT(RH_PS_PESC); OK(0);
1220 case (RH_C_PORT_SUSPEND): WR_RH_PORTSTAT(RH_PS_PSSC); OK(0);
1221 case (RH_C_PORT_OVER_CURRENT):WR_RH_PORTSTAT(RH_PS_OCIC); OK(0);
1222 case (RH_C_PORT_RESET): WR_RH_PORTSTAT(RH_PS_PRSC); OK(0);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001223 }
1224 break;
1225
1226 case RH_SET_FEATURE | RH_OTHER | RH_CLASS:
1227 switch (wValue) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001228 case (RH_PORT_SUSPEND):
1229 WR_RH_PORTSTAT(RH_PS_PSS); OK(0);
1230 case (RH_PORT_RESET): /* BUG IN HUP CODE *********/
1231 if (RD_RH_PORTSTAT & RH_PS_CCS)
1232 WR_RH_PORTSTAT(RH_PS_PRS);
1233 OK(0);
1234 case (RH_PORT_POWER):
1235 WR_RH_PORTSTAT(RH_PS_PPS);
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001236 mdelay(100);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001237 OK(0);
1238 case (RH_PORT_ENABLE): /* BUG IN HUP CODE *********/
1239 if (RD_RH_PORTSTAT & RH_PS_CCS)
1240 WR_RH_PORTSTAT(RH_PS_PES);
1241 OK(0);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001242 }
1243 break;
1244
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001245 case RH_SET_ADDRESS:
1246 gohci.rh.devnum = wValue;
1247 OK(0);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001248
1249 case RH_GET_DESCRIPTOR:
1250 switch ((wValue & 0xff00) >> 8) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001251 case (0x01): /* device descriptor */
1252 len = min_t(unsigned int,
1253 leni,
1254 min_t(unsigned int,
1255 sizeof(root_hub_dev_des),
1256 wLength));
Troy Kiskyf1273f12012-08-11 14:49:09 -07001257 databuf = root_hub_dev_des; OK(len);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001258 case (0x02): /* configuration descriptor */
1259 len = min_t(unsigned int,
1260 leni,
1261 min_t(unsigned int,
1262 sizeof(root_hub_config_des),
1263 wLength));
Troy Kiskyf1273f12012-08-11 14:49:09 -07001264 databuf = root_hub_config_des; OK(len);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001265 case (0x03): /* string descriptors */
1266 if (wValue == 0x0300) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001267 len = min_t(unsigned int,
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001268 leni,
1269 min_t(unsigned int,
1270 sizeof(root_hub_str_index0),
1271 wLength));
Troy Kiskyf1273f12012-08-11 14:49:09 -07001272 databuf = root_hub_str_index0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001273 OK(len);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001274 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001275 if (wValue == 0x0301) {
1276 len = min_t(unsigned int,
1277 leni,
1278 min_t(unsigned int,
1279 sizeof(root_hub_str_index1),
1280 wLength));
Troy Kiskyf1273f12012-08-11 14:49:09 -07001281 databuf = root_hub_str_index1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001282 OK(len);
1283 }
1284 default:
1285 stat = USB_ST_STALLED;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001286 }
1287 break;
1288
1289 case RH_GET_DESCRIPTOR | RH_CLASS:
1290 {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001291 __u32 temp = roothub_a(&gohci);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001292
Troy Kiskyf1273f12012-08-11 14:49:09 -07001293 databuf[0] = 9; /* min length; */
1294 databuf[1] = 0x29;
1295 databuf[2] = temp & RH_A_NDP;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001296#ifdef CONFIG_AT91C_PQFP_UHPBUG
Troy Kiskyf1273f12012-08-11 14:49:09 -07001297 databuf[2] = (databuf[2] == 2) ? 1 : 0;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001298#endif
Troy Kiskyf1273f12012-08-11 14:49:09 -07001299 databuf[3] = 0;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001300 if (temp & RH_A_PSM) /* per-port power switching? */
Troy Kiskyf1273f12012-08-11 14:49:09 -07001301 databuf[3] |= 0x1;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001302 if (temp & RH_A_NOCP) /* no overcurrent reporting? */
Troy Kiskyf1273f12012-08-11 14:49:09 -07001303 databuf[3] |= 0x10;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001304 else if (temp & RH_A_OCPM)/* per-port overcurrent reporting? */
Troy Kiskyf1273f12012-08-11 14:49:09 -07001305 databuf[3] |= 0x8;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001306
Troy Kiskyf1273f12012-08-11 14:49:09 -07001307 databuf[4] = 0;
1308 databuf[5] = (temp & RH_A_POTPGT) >> 24;
1309 databuf[6] = 0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001310 temp = roothub_b(&gohci);
Troy Kiskyf1273f12012-08-11 14:49:09 -07001311 databuf[7] = temp & RH_B_DR;
1312 if (databuf[2] < 7) {
1313 databuf[8] = 0xff;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001314 } else {
Troy Kiskyf1273f12012-08-11 14:49:09 -07001315 databuf[0] += 2;
1316 databuf[8] = (temp & RH_B_DR) >> 8;
1317 databuf[10] = databuf[9] = 0xff;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001318 }
1319
1320 len = min_t(unsigned int, leni,
Troy Kiskyf1273f12012-08-11 14:49:09 -07001321 min_t(unsigned int, databuf[0], wLength));
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001322 OK(len);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001323 }
1324
Marek Vasut5f6aa032011-10-07 02:00:13 +02001325 case RH_GET_CONFIGURATION:
Troy Kiskyf1273f12012-08-11 14:49:09 -07001326 databuf[0] = 0x01;
Marek Vasut5f6aa032011-10-07 02:00:13 +02001327 OK(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001328
Marek Vasut5f6aa032011-10-07 02:00:13 +02001329 case RH_SET_CONFIGURATION:
1330 WR_RH_STAT(0x10000);
1331 OK(0);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001332
1333 default:
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001334 dbg("unsupported root hub command");
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001335 stat = USB_ST_STALLED;
1336 }
1337
1338#ifdef DEBUG
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001339 ohci_dump_roothub(&gohci, 1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001340#else
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001341 mdelay(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001342#endif
1343
1344 len = min_t(int, len, leni);
Troy Kiskyf1273f12012-08-11 14:49:09 -07001345 if (data != databuf)
1346 memcpy(data, databuf, len);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001347 dev->act_len = len;
1348 dev->status = stat;
1349
1350#ifdef DEBUG
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001351 pkt_print(NULL, dev, pipe, buffer,
1352 transfer_len, cmd, "RET(rh)", 0/*usb_pipein(pipe)*/);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001353#else
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001354 mdelay(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001355#endif
1356
1357 return stat;
1358}
1359
1360/*-------------------------------------------------------------------------*/
1361
1362/* common code for handling submit messages - used for all but root hub */
1363/* accesses. */
1364int submit_common_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1365 int transfer_len, struct devrequest *setup, int interval)
1366{
1367 int stat = 0;
1368 int maxsize = usb_maxpacket(dev, pipe);
1369 int timeout;
Zhang Wei4dae14c2007-06-06 10:08:14 +02001370 urb_priv_t *urb;
1371
1372 urb = malloc(sizeof(urb_priv_t));
1373 memset(urb, 0, sizeof(urb_priv_t));
1374
1375 urb->dev = dev;
1376 urb->pipe = pipe;
1377 urb->transfer_buffer = buffer;
1378 urb->transfer_buffer_length = transfer_len;
1379 urb->interval = interval;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001380
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001381#ifdef DEBUG
Zhang Wei4dae14c2007-06-06 10:08:14 +02001382 urb->actual_length = 0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001383 pkt_print(urb, dev, pipe, buffer, transfer_len,
1384 setup, "SUB", usb_pipein(pipe));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001385#else
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001386 mdelay(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001387#endif
1388 if (!maxsize) {
1389 err("submit_common_message: pipesize for pipe %lx is zero",
1390 pipe);
1391 return -1;
1392 }
1393
Zhang Wei4dae14c2007-06-06 10:08:14 +02001394 if (sohci_submit_job(urb, setup) < 0) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001395 err("sohci_submit_job failed");
1396 return -1;
1397 }
1398
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +01001399#if 0
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001400 mdelay(10);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001401 /* ohci_dump_status(&gohci); */
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +01001402#endif
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001403
Simon Glass96820a32011-02-07 14:42:16 -08001404 timeout = USB_TIMEOUT_MS(pipe);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001405
1406 /* wait for it to complete */
1407 for (;;) {
1408 /* check whether the controller is done */
1409 stat = hc_interrupt();
1410 if (stat < 0) {
1411 stat = USB_ST_CRC_ERR;
1412 break;
1413 }
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +02001414
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +02001415 /* NOTE: since we are not interrupt driven in U-Boot and always
1416 * handle only one URB at a time, we cannot assume the
1417 * transaction finished on the first successful return from
1418 * hc_interrupt().. unless the flag for current URB is set,
1419 * meaning that all TD's to/from device got actually
1420 * transferred and processed. If the current URB is not
1421 * finished we need to re-iterate this loop so as
1422 * hc_interrupt() gets called again as there needs to be some
1423 * more TD's to process still */
Zhang Wei4dae14c2007-06-06 10:08:14 +02001424 if ((stat >= 0) && (stat != 0xff) && (urb->finished)) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001425 /* 0xff is returned for an SF-interrupt */
1426 break;
1427 }
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +02001428
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001429 if (--timeout) {
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001430 mdelay(1);
Zhang Wei4dae14c2007-06-06 10:08:14 +02001431 if (!urb->finished)
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001432 dbg("*");
Zhang Wei4dae14c2007-06-06 10:08:14 +02001433
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001434 } else {
1435 err("CTL:TIMEOUT ");
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +02001436 dbg("submit_common_msg: TO status %x\n", stat);
Zhang Wei4dae14c2007-06-06 10:08:14 +02001437 urb->finished = 1;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001438 stat = USB_ST_CRC_ERR;
1439 break;
1440 }
1441 }
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001442
1443 dev->status = stat;
Mateusz Kulikowski522c9562013-10-23 20:26:27 +02001444 dev->act_len = urb->actual_length;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001445
1446#ifdef DEBUG
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001447 pkt_print(urb, dev, pipe, buffer, transfer_len,
1448 setup, "RET(ctlr)", usb_pipein(pipe));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001449#else
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001450 mdelay(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001451#endif
1452
1453 /* free TDs in urb_priv */
Remy Bohmer48867202008-10-10 10:23:21 +02001454 if (!usb_pipeint(pipe))
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001455 urb_free_priv(urb);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001456 return 0;
1457}
1458
1459/* submit routines called from usb.c */
1460int submit_bulk_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1461 int transfer_len)
1462{
1463 info("submit_bulk_msg");
1464 return submit_common_msg(dev, pipe, buffer, transfer_len, NULL, 0);
1465}
1466
1467int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1468 int transfer_len, struct devrequest *setup)
1469{
1470 int maxsize = usb_maxpacket(dev, pipe);
1471
1472 info("submit_control_msg");
1473#ifdef DEBUG
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001474 pkt_print(NULL, dev, pipe, buffer, transfer_len,
1475 setup, "SUB", usb_pipein(pipe));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001476#else
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001477 mdelay(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001478#endif
1479 if (!maxsize) {
1480 err("submit_control_message: pipesize for pipe %lx is zero",
1481 pipe);
1482 return -1;
1483 }
1484 if (((pipe >> 8) & 0x7f) == gohci.rh.devnum) {
1485 gohci.rh.dev = dev;
1486 /* root hub - redirect */
1487 return ohci_submit_rh_msg(dev, pipe, buffer, transfer_len,
1488 setup);
1489 }
1490
1491 return submit_common_msg(dev, pipe, buffer, transfer_len, setup, 0);
1492}
1493
1494int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1495 int transfer_len, int interval)
1496{
1497 info("submit_int_msg");
Zhang Wei4dae14c2007-06-06 10:08:14 +02001498 return submit_common_msg(dev, pipe, buffer, transfer_len, NULL,
1499 interval);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001500}
1501
1502/*-------------------------------------------------------------------------*
1503 * HC functions
1504 *-------------------------------------------------------------------------*/
1505
1506/* reset the HC and BUS */
1507
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001508static int hc_reset(ohci_t *ohci)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001509{
Yuri Tikhonove90fb6a2008-09-04 11:19:05 +02001510#ifdef CONFIG_PCI_EHCI_DEVNO
1511 pci_dev_t pdev;
1512#endif
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001513 int timeout = 30;
1514 int smm_timeout = 50; /* 0,5 sec */
1515
1516 dbg("%s\n", __FUNCTION__);
1517
Yuri Tikhonove90fb6a2008-09-04 11:19:05 +02001518#ifdef CONFIG_PCI_EHCI_DEVNO
1519 /*
1520 * Some multi-function controllers (e.g. ISP1562) allow root hub
1521 * resetting via EHCI registers only.
1522 */
1523 pdev = pci_find_devices(ehci_pci_ids, CONFIG_PCI_EHCI_DEVNO);
1524 if (pdev != -1) {
1525 u32 base;
1526 int timeout = 1000;
1527
1528 pci_read_config_dword(pdev, PCI_BASE_ADDRESS_0, &base);
Becky Brucea5496a12010-06-30 13:05:44 -05001529 base += EHCI_USBCMD_OFF;
1530 ohci_writel(ohci_readl(base) | EHCI_USBCMD_HCRESET, base);
Yuri Tikhonove90fb6a2008-09-04 11:19:05 +02001531
Becky Brucea5496a12010-06-30 13:05:44 -05001532 while (ohci_readl(base) & EHCI_USBCMD_HCRESET) {
Yuri Tikhonove90fb6a2008-09-04 11:19:05 +02001533 if (timeout-- <= 0) {
1534 printf("USB RootHub reset timed out!");
1535 break;
1536 }
1537 udelay(1);
1538 }
1539 } else
1540 printf("No EHCI func at %d index!\n", CONFIG_PCI_EHCI_DEVNO);
1541#endif
Becky Brucea5496a12010-06-30 13:05:44 -05001542 if (ohci_readl(&ohci->regs->control) & OHCI_CTRL_IR) {
1543 /* SMM owns the HC, request ownership */
1544 ohci_writel(OHCI_OCR, &ohci->regs->cmdstatus);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001545 info("USB HC TakeOver from SMM");
Becky Brucea5496a12010-06-30 13:05:44 -05001546 while (ohci_readl(&ohci->regs->control) & OHCI_CTRL_IR) {
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001547 mdelay(10);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001548 if (--smm_timeout == 0) {
1549 err("USB HC TakeOver failed!");
1550 return -1;
1551 }
1552 }
1553 }
1554
1555 /* Disable HC interrupts */
Becky Brucea5496a12010-06-30 13:05:44 -05001556 ohci_writel(OHCI_INTR_MIE, &ohci->regs->intrdisable);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001557
1558 dbg("USB HC reset_hc usb-%s: ctrl = 0x%X ;\n",
1559 ohci->slot_name,
Becky Brucea5496a12010-06-30 13:05:44 -05001560 ohci_readl(&ohci->regs->control));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001561
1562 /* Reset USB (needed by some controllers) */
Markus Klotzbuecher53e336e2006-11-27 11:43:09 +01001563 ohci->hc_control = 0;
Becky Brucea5496a12010-06-30 13:05:44 -05001564 ohci_writel(ohci->hc_control, &ohci->regs->control);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001565
1566 /* HC Reset requires max 10 us delay */
Becky Brucea5496a12010-06-30 13:05:44 -05001567 ohci_writel(OHCI_HCR, &ohci->regs->cmdstatus);
1568 while ((ohci_readl(&ohci->regs->cmdstatus) & OHCI_HCR) != 0) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001569 if (--timeout == 0) {
1570 err("USB HC reset timed out!");
1571 return -1;
1572 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001573 udelay(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001574 }
1575 return 0;
1576}
1577
1578/*-------------------------------------------------------------------------*/
1579
1580/* Start an OHCI controller, set the BUS operational
1581 * enable interrupts
1582 * connect the virtual root hub */
1583
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001584static int hc_start(ohci_t *ohci)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001585{
1586 __u32 mask;
1587 unsigned int fminterval;
1588
1589 ohci->disabled = 1;
1590
1591 /* Tell the controller where the control and bulk lists are
1592 * The lists are empty now. */
1593
Becky Brucea5496a12010-06-30 13:05:44 -05001594 ohci_writel(0, &ohci->regs->ed_controlhead);
1595 ohci_writel(0, &ohci->regs->ed_bulkhead);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001596
Becky Brucea5496a12010-06-30 13:05:44 -05001597 ohci_writel((__u32)ohci->hcca,
1598 &ohci->regs->hcca); /* reset clears this */
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001599
1600 fminterval = 0x2edf;
Becky Brucea5496a12010-06-30 13:05:44 -05001601 ohci_writel((fminterval * 9) / 10, &ohci->regs->periodicstart);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001602 fminterval |= ((((fminterval - 210) * 6) / 7) << 16);
Becky Brucea5496a12010-06-30 13:05:44 -05001603 ohci_writel(fminterval, &ohci->regs->fminterval);
1604 ohci_writel(0x628, &ohci->regs->lsthresh);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001605
1606 /* start controller operations */
1607 ohci->hc_control = OHCI_CONTROL_INIT | OHCI_USB_OPER;
1608 ohci->disabled = 0;
Becky Brucea5496a12010-06-30 13:05:44 -05001609 ohci_writel(ohci->hc_control, &ohci->regs->control);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001610
1611 /* disable all interrupts */
1612 mask = (OHCI_INTR_SO | OHCI_INTR_WDH | OHCI_INTR_SF | OHCI_INTR_RD |
1613 OHCI_INTR_UE | OHCI_INTR_FNO | OHCI_INTR_RHSC |
1614 OHCI_INTR_OC | OHCI_INTR_MIE);
Becky Brucea5496a12010-06-30 13:05:44 -05001615 ohci_writel(mask, &ohci->regs->intrdisable);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001616 /* clear all interrupts */
1617 mask &= ~OHCI_INTR_MIE;
Becky Brucea5496a12010-06-30 13:05:44 -05001618 ohci_writel(mask, &ohci->regs->intrstatus);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001619 /* Choose the interrupts we care about now - but w/o MIE */
1620 mask = OHCI_INTR_RHSC | OHCI_INTR_UE | OHCI_INTR_WDH | OHCI_INTR_SO;
Becky Brucea5496a12010-06-30 13:05:44 -05001621 ohci_writel(mask, &ohci->regs->intrenable);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001622
1623#ifdef OHCI_USE_NPS
1624 /* required for AMD-756 and some Mac platforms */
Becky Brucea5496a12010-06-30 13:05:44 -05001625 ohci_writel((roothub_a(ohci) | RH_A_NPS) & ~RH_A_PSM,
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001626 &ohci->regs->roothub.a);
Becky Brucea5496a12010-06-30 13:05:44 -05001627 ohci_writel(RH_HS_LPSC, &ohci->regs->roothub.status);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001628#endif /* OHCI_USE_NPS */
1629
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001630 /* POTPGT delay is bits 24-31, in 2 ms units. */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001631 mdelay((roothub_a(ohci) >> 23) & 0x1fe);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001632
1633 /* connect the virtual root hub */
1634 ohci->rh.devnum = 0;
1635
1636 return 0;
1637}
1638
1639/*-------------------------------------------------------------------------*/
1640
1641/* an interrupt happens */
1642
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001643static int hc_interrupt(void)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001644{
1645 ohci_t *ohci = &gohci;
1646 struct ohci_regs *regs = ohci->regs;
1647 int ints;
1648 int stat = -1;
1649
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +02001650 if ((ohci->hcca->done_head != 0) &&
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001651 !(m32_swap(ohci->hcca->done_head) & 0x01)) {
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +02001652 ints = OHCI_INTR_WDH;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001653 } else {
Becky Brucea5496a12010-06-30 13:05:44 -05001654 ints = ohci_readl(&regs->intrstatus);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001655 if (ints == ~(u32)0) {
1656 ohci->disabled++;
1657 err("%s device removed!", ohci->slot_name);
1658 return -1;
1659 } else {
Becky Brucea5496a12010-06-30 13:05:44 -05001660 ints &= ohci_readl(&regs->intrenable);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001661 if (ints == 0) {
1662 dbg("hc_interrupt: returning..\n");
1663 return 0xff;
1664 }
1665 }
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +02001666 }
Markus Klotzbuecherae79f602007-03-26 11:21:05 +02001667
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001668 /* dbg("Interrupt: %x frame: %x", ints,
1669 le16_to_cpu(ohci->hcca->frame_no)); */
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001670
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001671 if (ints & OHCI_INTR_RHSC)
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +02001672 stat = 0xff;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001673
1674 if (ints & OHCI_INTR_UE) {
1675 ohci->disabled++;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001676 err("OHCI Unrecoverable Error, controller usb-%s disabled",
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001677 ohci->slot_name);
1678 /* e.g. due to PCI Master/Target Abort */
1679
1680#ifdef DEBUG
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001681 ohci_dump(ohci, 1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001682#else
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001683 mdelay(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001684#endif
1685 /* FIXME: be optimistic, hope that bug won't repeat often. */
1686 /* Make some non-interrupt context restart the controller. */
1687 /* Count and limit the retries though; either hardware or */
1688 /* software errors can go forever... */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001689 hc_reset(ohci);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001690 return -1;
1691 }
1692
1693 if (ints & OHCI_INTR_WDH) {
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001694 mdelay(1);
Becky Brucea5496a12010-06-30 13:05:44 -05001695 ohci_writel(OHCI_INTR_WDH, &regs->intrdisable);
1696 (void)ohci_readl(&regs->intrdisable); /* flush */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001697 stat = dl_done_list(&gohci);
Becky Brucea5496a12010-06-30 13:05:44 -05001698 ohci_writel(OHCI_INTR_WDH, &regs->intrenable);
1699 (void)ohci_readl(&regs->intrdisable); /* flush */
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001700 }
1701
1702 if (ints & OHCI_INTR_SO) {
1703 dbg("USB Schedule overrun\n");
Becky Brucea5496a12010-06-30 13:05:44 -05001704 ohci_writel(OHCI_INTR_SO, &regs->intrenable);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001705 stat = -1;
1706 }
1707
1708 /* FIXME: this assumes SOF (1/ms) interrupts don't get lost... */
1709 if (ints & OHCI_INTR_SF) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001710 unsigned int frame = m16_swap(ohci->hcca->frame_no) & 1;
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001711 mdelay(1);
Becky Brucea5496a12010-06-30 13:05:44 -05001712 ohci_writel(OHCI_INTR_SF, &regs->intrdisable);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001713 if (ohci->ed_rm_list[frame] != NULL)
Becky Brucea5496a12010-06-30 13:05:44 -05001714 ohci_writel(OHCI_INTR_SF, &regs->intrenable);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001715 stat = 0xff;
1716 }
1717
Becky Brucea5496a12010-06-30 13:05:44 -05001718 ohci_writel(ints, &regs->intrstatus);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001719 return stat;
1720}
1721
1722/*-------------------------------------------------------------------------*/
1723
1724/*-------------------------------------------------------------------------*/
1725
1726/* De-allocate all resources.. */
1727
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001728static void hc_release_ohci(ohci_t *ohci)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001729{
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001730 dbg("USB HC release ohci usb-%s", ohci->slot_name);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001731
1732 if (!ohci->disabled)
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001733 hc_reset(ohci);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001734}
1735
1736/*-------------------------------------------------------------------------*/
1737
1738/*
1739 * low level initalisation routine, called from usb.c
1740 */
1741static char ohci_inited = 0;
1742
Troy Kisky06d513e2013-10-10 15:27:56 -07001743int usb_lowlevel_init(int index, enum usb_init_type init, void **controller)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001744{
Zhang Wei4dae14c2007-06-06 10:08:14 +02001745#ifdef CONFIG_PCI_OHCI
1746 pci_dev_t pdev;
1747#endif
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001748
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001749#ifdef CONFIG_SYS_USB_OHCI_CPU_INIT
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001750 /* cpu dependant init */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001751 if (usb_cpu_init())
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001752 return -1;
1753#endif
1754
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001755#ifdef CONFIG_SYS_USB_OHCI_BOARD_INIT
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001756 /* board dependant init */
Mateusz Zalega16297cf2013-10-04 19:22:26 +02001757 if (board_usb_init(index, USB_INIT_HOST))
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001758 return -1;
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001759#endif
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001760 memset(&gohci, 0, sizeof(ohci_t));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001761
1762 /* align the storage */
1763 if ((__u32)&ghcca[0] & 0xff) {
1764 err("HCCA not aligned!!");
1765 return -1;
1766 }
1767 phcca = &ghcca[0];
1768 info("aligned ghcca %p", phcca);
1769 memset(&ohci_dev, 0, sizeof(struct ohci_device));
1770 if ((__u32)&ohci_dev.ed[0] & 0x7) {
1771 err("EDs not aligned!!");
1772 return -1;
1773 }
1774 memset(gtd, 0, sizeof(td_t) * (NUM_TD + 1));
1775 if ((__u32)gtd & 0x7) {
1776 err("TDs not aligned!!");
1777 return -1;
1778 }
1779 ptd = gtd;
1780 gohci.hcca = phcca;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001781 memset(phcca, 0, sizeof(struct ohci_hcca));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001782
1783 gohci.disabled = 1;
1784 gohci.sleeping = 0;
1785 gohci.irq = -1;
Zhang Wei4dae14c2007-06-06 10:08:14 +02001786#ifdef CONFIG_PCI_OHCI
Sergei Poselenov477434c2008-05-22 01:15:53 +02001787 pdev = pci_find_devices(ohci_pci_ids, CONFIG_PCI_OHCI_DEVNO);
Zhang Wei4dae14c2007-06-06 10:08:14 +02001788
1789 if (pdev != -1) {
1790 u16 vid, did;
1791 u32 base;
1792 pci_read_config_word(pdev, PCI_VENDOR_ID, &vid);
1793 pci_read_config_word(pdev, PCI_DEVICE_ID, &did);
1794 printf("OHCI pci controller (%04x, %04x) found @(%d:%d:%d)\n",
1795 vid, did, (pdev >> 16) & 0xff,
1796 (pdev >> 11) & 0x1f, (pdev >> 8) & 0x7);
1797 pci_read_config_dword(pdev, PCI_BASE_ADDRESS_0, &base);
1798 printf("OHCI regs address 0x%08x\n", base);
1799 gohci.regs = (struct ohci_regs *)base;
1800 } else
1801 return -1;
1802#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001803 gohci.regs = (struct ohci_regs *)CONFIG_SYS_USB_OHCI_REGS_BASE;
Zhang Wei4dae14c2007-06-06 10:08:14 +02001804#endif
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001805
1806 gohci.flags = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001807 gohci.slot_name = CONFIG_SYS_USB_OHCI_SLOT_NAME;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001808
1809 if (hc_reset (&gohci) < 0) {
1810 hc_release_ohci (&gohci);
1811 err ("can't reset usb-%s", gohci.slot_name);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001812#ifdef CONFIG_SYS_USB_OHCI_BOARD_INIT
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001813 /* board dependant cleanup */
Mateusz Zalega16297cf2013-10-04 19:22:26 +02001814 board_usb_cleanup(index, USB_INIT_HOST);
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001815#endif
1816
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001817#ifdef CONFIG_SYS_USB_OHCI_CPU_INIT
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001818 /* cpu dependant cleanup */
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +02001819 usb_cpu_init_fail();
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001820#endif
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001821 return -1;
1822 }
1823
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001824 if (hc_start(&gohci) < 0) {
1825 err("can't start usb-%s", gohci.slot_name);
1826 hc_release_ohci(&gohci);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001827 /* Initialization failed */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001828#ifdef CONFIG_SYS_USB_OHCI_BOARD_INIT
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001829 /* board dependant cleanup */
1830 usb_board_stop();
1831#endif
1832
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001833#ifdef CONFIG_SYS_USB_OHCI_CPU_INIT
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001834 /* cpu dependant cleanup */
1835 usb_cpu_stop();
1836#endif
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001837 return -1;
1838 }
1839
1840#ifdef DEBUG
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001841 ohci_dump(&gohci, 1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001842#else
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001843 mdelay(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001844#endif
1845 ohci_inited = 1;
1846 return 0;
1847}
1848
Lucas Stachc7e3b2b2012-09-26 00:14:34 +02001849int usb_lowlevel_stop(int index)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001850{
1851 /* this gets called really early - before the controller has */
1852 /* even been initialized! */
1853 if (!ohci_inited)
1854 return 0;
1855 /* TODO release any interrupts, etc. */
1856 /* call hc_release_ohci() here ? */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001857 hc_reset(&gohci);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001858
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001859#ifdef CONFIG_SYS_USB_OHCI_BOARD_INIT
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001860 /* board dependant cleanup */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001861 if (usb_board_stop())
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001862 return -1;
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001863#endif
1864
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001865#ifdef CONFIG_SYS_USB_OHCI_CPU_INIT
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001866 /* cpu dependant cleanup */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001867 if (usb_cpu_stop())
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001868 return -1;
1869#endif
Remy Bohmereba1f2f2008-08-20 11:22:02 +02001870 /* This driver is no longer initialised. It needs a new low-level
1871 * init (board/cpu) before it can be used again. */
1872 ohci_inited = 0;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001873 return 0;
1874}