blob: 3744658e40d3388113d4958b9f2cd2c58647dcdb [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
Hans de Goede8d005ef2015-05-05 23:56:13 +0200106#ifdef CONFIG_DM_USB
107/*
108 * We really should do proper cache flushing everywhere, but for now we only
109 * do it for new (driver-model) usb code to avoid regressions.
110 */
111#define flush_dcache_buffer(addr, size) \
112 flush_dcache_range((unsigned long)(addr), \
113 ALIGN((unsigned long)(addr) + size, ARCH_DMA_MINALIGN))
114#define invalidate_dcache_buffer(addr, size) \
115 invalidate_dcache_range((unsigned long)(addr), \
116 ALIGN((unsigned long)(addr) + size, ARCH_DMA_MINALIGN))
117#else
118#define flush_dcache_buffer(addr, size)
119#define invalidate_dcache_buffer(addr, size)
120#endif
121
122/* Do not use sizeof(ed / td) as our ed / td structs contain extra members */
123#define flush_dcache_ed(addr) flush_dcache_buffer(addr, 16)
124#define flush_dcache_td(addr) flush_dcache_buffer(addr, 16)
125#define flush_dcache_iso_td(addr) flush_dcache_buffer(addr, 32)
126#define flush_dcache_hcca(addr) flush_dcache_buffer(addr, 256)
127#define invalidate_dcache_ed(addr) invalidate_dcache_buffer(addr, 16)
128#define invalidate_dcache_td(addr) invalidate_dcache_buffer(addr, 16)
129#define invalidate_dcache_iso_td(addr) invalidate_dcache_buffer(addr, 32)
130#define invalidate_dcache_hcca(addr) invalidate_dcache_buffer(addr, 256)
131
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200132/* global ohci_t */
133static ohci_t gohci;
134/* this must be aligned to a 256 byte boundary */
135struct ohci_hcca ghcca[1];
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200136
Hans de Goede6651c142015-05-05 23:56:11 +0200137/* mapping of the OHCI CC status to error codes */
138static int cc_to_error[16] = {
139 /* No Error */ 0,
140 /* CRC Error */ USB_ST_CRC_ERR,
141 /* Bit Stuff */ USB_ST_BIT_ERR,
142 /* Data Togg */ USB_ST_CRC_ERR,
143 /* Stall */ USB_ST_STALLED,
144 /* DevNotResp */ -1,
145 /* PIDCheck */ USB_ST_BIT_ERR,
146 /* UnExpPID */ USB_ST_BIT_ERR,
147 /* DataOver */ USB_ST_BUF_ERR,
148 /* DataUnder */ USB_ST_BUF_ERR,
149 /* reservd */ -1,
150 /* reservd */ -1,
151 /* BufferOver */ USB_ST_BUF_ERR,
152 /* BuffUnder */ USB_ST_BUF_ERR,
153 /* Not Access */ -1,
154 /* Not Access */ -1
155};
156
157static const char *cc_to_string[16] = {
158 "No Error",
159 "CRC: Last data packet from endpoint contained a CRC error.",
160 "BITSTUFFING: Last data packet from endpoint contained a bit " \
161 "stuffing violation",
162 "DATATOGGLEMISMATCH: Last packet from endpoint had data toggle PID\n" \
163 "that did not match the expected value.",
164 "STALL: TD was moved to the Done Queue because the endpoint returned" \
165 " a STALL PID",
166 "DEVICENOTRESPONDING: Device did not respond to token (IN) or did\n" \
167 "not provide a handshake (OUT)",
168 "PIDCHECKFAILURE: Check bits on PID from endpoint failed on data PID\n"\
169 "(IN) or handshake (OUT)",
170 "UNEXPECTEDPID: Receive PID was not valid when encountered or PID\n" \
171 "value is not defined.",
172 "DATAOVERRUN: The amount of data returned by the endpoint exceeded\n" \
173 "either the size of the maximum data packet allowed\n" \
174 "from the endpoint (found in MaximumPacketSize field\n" \
175 "of ED) or the remaining buffer size.",
176 "DATAUNDERRUN: The endpoint returned less than MaximumPacketSize\n" \
177 "and that amount was not sufficient to fill the\n" \
178 "specified buffer",
179 "reserved1",
180 "reserved2",
181 "BUFFEROVERRUN: During an IN, HC received data from endpoint faster\n" \
182 "than it could be written to system memory",
183 "BUFFERUNDERRUN: During an OUT, HC could not retrieve data from\n" \
184 "system memory fast enough to keep up with data USB " \
185 "data rate.",
186 "NOT ACCESSED: This code is set by software before the TD is placed" \
187 "on a list to be processed by the HC.(1)",
188 "NOT ACCESSED: This code is set by software before the TD is placed" \
189 "on a list to be processed by the HC.(2)",
190};
191
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200192static inline u32 roothub_a(struct ohci *hc)
Becky Brucea5496a12010-06-30 13:05:44 -0500193 { return ohci_readl(&hc->regs->roothub.a); }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200194static inline u32 roothub_b(struct ohci *hc)
Becky Brucea5496a12010-06-30 13:05:44 -0500195 { return ohci_readl(&hc->regs->roothub.b); }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200196static inline u32 roothub_status(struct ohci *hc)
Becky Brucea5496a12010-06-30 13:05:44 -0500197 { return ohci_readl(&hc->regs->roothub.status); }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200198static inline u32 roothub_portstatus(struct ohci *hc, int i)
Becky Brucea5496a12010-06-30 13:05:44 -0500199 { return ohci_readl(&hc->regs->roothub.portstatus[i]); }
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200200
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200201/* forward declaration */
Hans de Goedec5613df2015-05-05 23:56:07 +0200202static int hc_interrupt(ohci_t *ohci);
203static void td_submit_job(ohci_t *ohci, struct usb_device *dev,
204 unsigned long pipe, void *buffer, int transfer_len,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200205 struct devrequest *setup, urb_priv_t *urb,
206 int interval);
Hans de Goede6651c142015-05-05 23:56:11 +0200207static int ep_link(ohci_t * ohci, ed_t * ed);
208static int ep_unlink(ohci_t * ohci, ed_t * ed);
209static ed_t *ep_add_ed(ohci_dev_t *ohci_dev, struct usb_device *usb_dev,
210 unsigned long pipe, int interval, int load);
211
212/*-------------------------------------------------------------------------*/
213
214/* TDs ... */
215static struct td *td_alloc(ohci_dev_t *ohci_dev, struct usb_device *usb_dev)
216{
217 int i;
218 struct td *td;
219
220 td = NULL;
221 for (i = 0; i < NUM_TD; i++)
222 {
223 if (ohci_dev->tds[i].usb_dev == NULL)
224 {
225 td = &ohci_dev->tds[i];
226 td->usb_dev = usb_dev;
227 break;
228 }
229 }
230
231 return td;
232}
233
234static inline void ed_free(struct ed *ed)
235{
236 ed->usb_dev = NULL;
237}
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200238
239/*-------------------------------------------------------------------------*
240 * URB support functions
241 *-------------------------------------------------------------------------*/
242
243/* free HCD-private data associated with this URB */
244
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200245static void urb_free_priv(urb_priv_t *urb)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200246{
247 int i;
248 int last;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200249 struct td *td;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200250
251 last = urb->length - 1;
252 if (last >= 0) {
253 for (i = 0; i <= last; i++) {
254 td = urb->td[i];
255 if (td) {
256 td->usb_dev = NULL;
257 urb->td[i] = NULL;
258 }
259 }
260 }
Zhang Wei4dae14c2007-06-06 10:08:14 +0200261 free(urb);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200262}
263
264/*-------------------------------------------------------------------------*/
265
266#ifdef DEBUG
Hans de Goedec5613df2015-05-05 23:56:07 +0200267static int sohci_get_current_frame_number(ohci_t *ohci);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200268
269/* debug| print the main components of an URB
270 * small: 0) header + data packets 1) just header */
271
Hans de Goedec5613df2015-05-05 23:56:07 +0200272static void pkt_print(ohci_t *ohci, urb_priv_t *purb, struct usb_device *dev,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200273 unsigned long pipe, void *buffer, int transfer_len,
274 struct devrequest *setup, char *str, int small)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200275{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200276 dbg("%s URB:[%4x] dev:%2lu,ep:%2lu-%c,type:%s,len:%d/%d stat:%#lx",
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200277 str,
Hans de Goedec5613df2015-05-05 23:56:07 +0200278 sohci_get_current_frame_number(ohci),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200279 usb_pipedevice(pipe),
280 usb_pipeendpoint(pipe),
281 usb_pipeout(pipe)? 'O': 'I',
282 usb_pipetype(pipe) < 2 ? \
283 (usb_pipeint(pipe)? "INTR": "ISOC"): \
284 (usb_pipecontrol(pipe)? "CTRL": "BULK"),
Zhang Wei4dae14c2007-06-06 10:08:14 +0200285 (purb ? purb->actual_length : 0),
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200286 transfer_len, dev->status);
287#ifdef OHCI_VERBOSE_DEBUG
288 if (!small) {
289 int i, len;
290
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200291 if (usb_pipecontrol(pipe)) {
292 printf(__FILE__ ": cmd(8):");
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200293 for (i = 0; i < 8 ; i++)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200294 printf(" %02x", ((__u8 *) setup) [i]);
295 printf("\n");
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200296 }
297 if (transfer_len > 0 && buffer) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200298 printf(__FILE__ ": data(%d/%d):",
Zhang Wei4dae14c2007-06-06 10:08:14 +0200299 (purb ? purb->actual_length : 0),
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200300 transfer_len);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200301 len = usb_pipeout(pipe)? transfer_len:
Zhang Wei4dae14c2007-06-06 10:08:14 +0200302 (purb ? purb->actual_length : 0);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200303 for (i = 0; i < 16 && i < len; i++)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200304 printf(" %02x", ((__u8 *) buffer) [i]);
305 printf("%s\n", i < len? "...": "");
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200306 }
307 }
308#endif
309}
310
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200311/* just for debugging; prints non-empty branches of the int ed tree
312 * inclusive iso eds */
313void ep_print_int_eds(ohci_t *ohci, char *str)
314{
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200315 int i, j;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200316 __u32 *ed_p;
317 for (i = 0; i < 32; i++) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200318 j = 5;
319 ed_p = &(ohci->hcca->int_table [i]);
320 if (*ed_p == 0)
321 continue;
Hans de Goede8d005ef2015-05-05 23:56:13 +0200322 invalidate_dcache_ed(ed_p);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200323 printf(__FILE__ ": %s branch int %2d(%2x):", str, i, i);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200324 while (*ed_p != 0 && j--) {
325 ed_t *ed = (ed_t *)m32_swap(ed_p);
Hans de Goede8d005ef2015-05-05 23:56:13 +0200326 invalidate_dcache_ed(ed);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200327 printf(" ed: %4x;", ed->hwINFO);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200328 ed_p = &ed->hwNextED;
329 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200330 printf("\n");
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200331 }
332}
333
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200334static void ohci_dump_intr_mask(char *label, __u32 mask)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200335{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200336 dbg("%s: 0x%08x%s%s%s%s%s%s%s%s%s",
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200337 label,
338 mask,
339 (mask & OHCI_INTR_MIE) ? " MIE" : "",
340 (mask & OHCI_INTR_OC) ? " OC" : "",
341 (mask & OHCI_INTR_RHSC) ? " RHSC" : "",
342 (mask & OHCI_INTR_FNO) ? " FNO" : "",
343 (mask & OHCI_INTR_UE) ? " UE" : "",
344 (mask & OHCI_INTR_RD) ? " RD" : "",
345 (mask & OHCI_INTR_SF) ? " SF" : "",
346 (mask & OHCI_INTR_WDH) ? " WDH" : "",
347 (mask & OHCI_INTR_SO) ? " SO" : ""
348 );
349}
350
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200351static void maybe_print_eds(char *label, __u32 value)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200352{
353 ed_t *edp = (ed_t *)value;
354
355 if (value) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200356 dbg("%s %08x", label, value);
Hans de Goede8d005ef2015-05-05 23:56:13 +0200357 invalidate_dcache_ed(edp);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200358 dbg("%08x", edp->hwINFO);
359 dbg("%08x", edp->hwTailP);
360 dbg("%08x", edp->hwHeadP);
361 dbg("%08x", edp->hwNextED);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200362 }
363}
364
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200365static char *hcfs2string(int state)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200366{
367 switch (state) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200368 case OHCI_USB_RESET: return "reset";
369 case OHCI_USB_RESUME: return "resume";
370 case OHCI_USB_OPER: return "operational";
371 case OHCI_USB_SUSPEND: return "suspend";
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200372 }
373 return "?";
374}
375
376/* dump control and status registers */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200377static void ohci_dump_status(ohci_t *controller)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200378{
379 struct ohci_regs *regs = controller->regs;
380 __u32 temp;
381
Becky Brucea5496a12010-06-30 13:05:44 -0500382 temp = ohci_readl(&regs->revision) & 0xff;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200383 if (temp != 0x10)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200384 dbg("spec %d.%d", (temp >> 4), (temp & 0x0f));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200385
Becky Brucea5496a12010-06-30 13:05:44 -0500386 temp = ohci_readl(&regs->control);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200387 dbg("control: 0x%08x%s%s%s HCFS=%s%s%s%s%s CBSR=%d", temp,
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200388 (temp & OHCI_CTRL_RWE) ? " RWE" : "",
389 (temp & OHCI_CTRL_RWC) ? " RWC" : "",
390 (temp & OHCI_CTRL_IR) ? " IR" : "",
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200391 hcfs2string(temp & OHCI_CTRL_HCFS),
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200392 (temp & OHCI_CTRL_BLE) ? " BLE" : "",
393 (temp & OHCI_CTRL_CLE) ? " CLE" : "",
394 (temp & OHCI_CTRL_IE) ? " IE" : "",
395 (temp & OHCI_CTRL_PLE) ? " PLE" : "",
396 temp & OHCI_CTRL_CBSR
397 );
398
Becky Brucea5496a12010-06-30 13:05:44 -0500399 temp = ohci_readl(&regs->cmdstatus);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200400 dbg("cmdstatus: 0x%08x SOC=%d%s%s%s%s", temp,
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200401 (temp & OHCI_SOC) >> 16,
402 (temp & OHCI_OCR) ? " OCR" : "",
403 (temp & OHCI_BLF) ? " BLF" : "",
404 (temp & OHCI_CLF) ? " CLF" : "",
405 (temp & OHCI_HCR) ? " HCR" : ""
406 );
407
Becky Brucea5496a12010-06-30 13:05:44 -0500408 ohci_dump_intr_mask("intrstatus", ohci_readl(&regs->intrstatus));
409 ohci_dump_intr_mask("intrenable", ohci_readl(&regs->intrenable));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200410
Becky Brucea5496a12010-06-30 13:05:44 -0500411 maybe_print_eds("ed_periodcurrent",
412 ohci_readl(&regs->ed_periodcurrent));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200413
Becky Brucea5496a12010-06-30 13:05:44 -0500414 maybe_print_eds("ed_controlhead", ohci_readl(&regs->ed_controlhead));
415 maybe_print_eds("ed_controlcurrent",
416 ohci_readl(&regs->ed_controlcurrent));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200417
Becky Brucea5496a12010-06-30 13:05:44 -0500418 maybe_print_eds("ed_bulkhead", ohci_readl(&regs->ed_bulkhead));
419 maybe_print_eds("ed_bulkcurrent", ohci_readl(&regs->ed_bulkcurrent));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200420
Becky Brucea5496a12010-06-30 13:05:44 -0500421 maybe_print_eds("donehead", ohci_readl(&regs->donehead));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200422}
423
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200424static void ohci_dump_roothub(ohci_t *controller, int verbose)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200425{
426 __u32 temp, ndp, i;
427
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200428 temp = roothub_a(controller);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200429 ndp = (temp & RH_A_NDP);
430#ifdef CONFIG_AT91C_PQFP_UHPBUG
431 ndp = (ndp == 2) ? 1:0;
432#endif
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200433 if (verbose) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200434 dbg("roothub.a: %08x POTPGT=%d%s%s%s%s%s NDP=%d", temp,
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200435 ((temp & RH_A_POTPGT) >> 24) & 0xff,
436 (temp & RH_A_NOCP) ? " NOCP" : "",
437 (temp & RH_A_OCPM) ? " OCPM" : "",
438 (temp & RH_A_DT) ? " DT" : "",
439 (temp & RH_A_NPS) ? " NPS" : "",
440 (temp & RH_A_PSM) ? " PSM" : "",
441 ndp
442 );
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200443 temp = roothub_b(controller);
444 dbg("roothub.b: %08x PPCM=%04x DR=%04x",
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200445 temp,
446 (temp & RH_B_PPCM) >> 16,
447 (temp & RH_B_DR)
448 );
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200449 temp = roothub_status(controller);
450 dbg("roothub.status: %08x%s%s%s%s%s%s",
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200451 temp,
452 (temp & RH_HS_CRWE) ? " CRWE" : "",
453 (temp & RH_HS_OCIC) ? " OCIC" : "",
454 (temp & RH_HS_LPSC) ? " LPSC" : "",
455 (temp & RH_HS_DRWE) ? " DRWE" : "",
456 (temp & RH_HS_OCI) ? " OCI" : "",
457 (temp & RH_HS_LPS) ? " LPS" : ""
458 );
459 }
460
461 for (i = 0; i < ndp; i++) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200462 temp = roothub_portstatus(controller, i);
463 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 +0200464 i,
465 temp,
466 (temp & RH_PS_PRSC) ? " PRSC" : "",
467 (temp & RH_PS_OCIC) ? " OCIC" : "",
468 (temp & RH_PS_PSSC) ? " PSSC" : "",
469 (temp & RH_PS_PESC) ? " PESC" : "",
470 (temp & RH_PS_CSC) ? " CSC" : "",
471
472 (temp & RH_PS_LSDA) ? " LSDA" : "",
473 (temp & RH_PS_PPS) ? " PPS" : "",
474 (temp & RH_PS_PRS) ? " PRS" : "",
475 (temp & RH_PS_POCI) ? " POCI" : "",
476 (temp & RH_PS_PSS) ? " PSS" : "",
477
478 (temp & RH_PS_PES) ? " PES" : "",
479 (temp & RH_PS_CCS) ? " CCS" : ""
480 );
481 }
482}
483
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200484static void ohci_dump(ohci_t *controller, int verbose)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200485{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200486 dbg("OHCI controller usb-%s state", controller->slot_name);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200487
488 /* dumps some of the state we know about */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200489 ohci_dump_status(controller);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200490 if (verbose)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200491 ep_print_int_eds(controller, "hcca");
Hans de Goede8d005ef2015-05-05 23:56:13 +0200492 invalidate_dcache_hcca(controller->hcca);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200493 dbg("hcca frame #%04x", controller->hcca->frame_no);
494 ohci_dump_roothub(controller, 1);
Stefan Roese2596f5b2008-03-05 12:29:32 +0100495}
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200496#endif /* DEBUG */
497
498/*-------------------------------------------------------------------------*
499 * Interface functions (URB)
500 *-------------------------------------------------------------------------*/
501
502/* get a transfer request */
503
Hans de Goede19d95d52015-05-05 23:56:08 +0200504int sohci_submit_job(ohci_t *ohci, ohci_dev_t *ohci_dev, urb_priv_t *urb,
505 struct devrequest *setup)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200506{
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200507 ed_t *ed;
Zhang Wei4dae14c2007-06-06 10:08:14 +0200508 urb_priv_t *purb_priv = urb;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200509 int i, size = 0;
Zhang Wei4dae14c2007-06-06 10:08:14 +0200510 struct usb_device *dev = urb->dev;
511 unsigned long pipe = urb->pipe;
512 void *buffer = urb->transfer_buffer;
513 int transfer_len = urb->transfer_buffer_length;
514 int interval = urb->interval;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200515
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200516 /* when controller's hung, permit only roothub cleanup attempts
517 * such as powering down ports */
518 if (ohci->disabled) {
519 err("sohci_submit_job: EPIPE");
520 return -1;
521 }
Markus Klotzbuecherae79f602007-03-26 11:21:05 +0200522
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200523 /* we're about to begin a new transaction here so mark the
524 * URB unfinished */
Zhang Wei4dae14c2007-06-06 10:08:14 +0200525 urb->finished = 0;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200526
527 /* every endpoint has a ed, locate and fill it */
Hans de Goede19d95d52015-05-05 23:56:08 +0200528 ed = ep_add_ed(ohci_dev, dev, pipe, interval, 1);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200529 if (!ed) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200530 err("sohci_submit_job: ENOMEM");
531 return -1;
532 }
533
534 /* for the private part of the URB we need the number of TDs (size) */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200535 switch (usb_pipetype(pipe)) {
536 case PIPE_BULK: /* one TD for every 4096 Byte */
537 size = (transfer_len - 1) / 4096 + 1;
538 break;
539 case PIPE_CONTROL:/* 1 TD for setup, 1 for ACK and 1 for every 4096 B */
540 size = (transfer_len == 0)? 2:
541 (transfer_len - 1) / 4096 + 3;
542 break;
543 case PIPE_INTERRUPT: /* 1 TD */
544 size = 1;
545 break;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200546 }
547
Zhang Wei4dae14c2007-06-06 10:08:14 +0200548 ed->purb = urb;
549
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200550 if (size >= (N_URB_TD - 1)) {
551 err("need %d TDs, only have %d", size, N_URB_TD);
552 return -1;
553 }
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200554 purb_priv->pipe = pipe;
555
556 /* fill the private part of the URB */
557 purb_priv->length = size;
558 purb_priv->ed = ed;
559 purb_priv->actual_length = 0;
560
561 /* allocate the TDs */
562 /* note that td[0] was allocated in ep_add_ed */
563 for (i = 0; i < size; i++) {
Hans de Goede3c5497d2015-05-05 23:56:09 +0200564 purb_priv->td[i] = td_alloc(ohci_dev, dev);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200565 if (!purb_priv->td[i]) {
566 purb_priv->length = i;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200567 urb_free_priv(purb_priv);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200568 err("sohci_submit_job: ENOMEM");
569 return -1;
570 }
571 }
572
573 if (ed->state == ED_NEW || (ed->state & ED_DEL)) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200574 urb_free_priv(purb_priv);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200575 err("sohci_submit_job: EINVAL");
576 return -1;
577 }
578
579 /* link the ed into a chain if is not already */
580 if (ed->state != ED_OPER)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200581 ep_link(ohci, ed);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200582
583 /* fill the TDs and link it to the ed */
Hans de Goedec5613df2015-05-05 23:56:07 +0200584 td_submit_job(ohci, dev, pipe, buffer, transfer_len,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200585 setup, purb_priv, interval);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200586
587 return 0;
588}
589
Zhang Wei4dae14c2007-06-06 10:08:14 +0200590static inline int sohci_return_job(struct ohci *hc, urb_priv_t *urb)
591{
592 struct ohci_regs *regs = hc->regs;
593
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200594 switch (usb_pipetype(urb->pipe)) {
Zhang Wei4dae14c2007-06-06 10:08:14 +0200595 case PIPE_INTERRUPT:
596 /* implicitly requeued */
597 if (urb->dev->irq_handle &&
598 (urb->dev->irq_act_len = urb->actual_length)) {
Becky Brucea5496a12010-06-30 13:05:44 -0500599 ohci_writel(OHCI_INTR_WDH, &regs->intrenable);
600 ohci_readl(&regs->intrenable); /* PCI posting flush */
Zhang Wei4dae14c2007-06-06 10:08:14 +0200601 urb->dev->irq_handle(urb->dev);
Becky Brucea5496a12010-06-30 13:05:44 -0500602 ohci_writel(OHCI_INTR_WDH, &regs->intrdisable);
603 ohci_readl(&regs->intrdisable); /* PCI posting flush */
Zhang Wei4dae14c2007-06-06 10:08:14 +0200604 }
605 urb->actual_length = 0;
Hans de Goedec5613df2015-05-05 23:56:07 +0200606 td_submit_job( hc,
Zhang Wei4dae14c2007-06-06 10:08:14 +0200607 urb->dev,
608 urb->pipe,
609 urb->transfer_buffer,
610 urb->transfer_buffer_length,
611 NULL,
612 urb,
613 urb->interval);
614 break;
615 case PIPE_CONTROL:
616 case PIPE_BULK:
617 break;
618 default:
619 return 0;
620 }
621 return 1;
622}
623
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200624/*-------------------------------------------------------------------------*/
625
626#ifdef DEBUG
627/* tell us the current USB frame number */
Hans de Goedec5613df2015-05-05 23:56:07 +0200628static int sohci_get_current_frame_number(ohci_t *ohci)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200629{
Hans de Goede8d005ef2015-05-05 23:56:13 +0200630 invalidate_dcache_hcca(ohci->hcca);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200631 return m16_swap(ohci->hcca->frame_no);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200632}
633#endif
634
635/*-------------------------------------------------------------------------*
636 * ED handling functions
637 *-------------------------------------------------------------------------*/
638
Zhang Wei4dae14c2007-06-06 10:08:14 +0200639/* search for the right branch to insert an interrupt ed into the int tree
640 * do some load ballancing;
641 * returns the branch and
642 * sets the interval to interval = 2^integer (ld (interval)) */
643
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200644static int ep_int_ballance(ohci_t *ohci, int interval, int load)
Zhang Wei4dae14c2007-06-06 10:08:14 +0200645{
646 int i, branch = 0;
647
648 /* search for the least loaded interrupt endpoint
649 * branch of all 32 branches
650 */
651 for (i = 0; i < 32; i++)
652 if (ohci->ohci_int_load [branch] > ohci->ohci_int_load [i])
653 branch = i;
654
655 branch = branch % interval;
656 for (i = branch; i < 32; i += interval)
657 ohci->ohci_int_load [i] += load;
658
659 return branch;
660}
661
662/*-------------------------------------------------------------------------*/
663
664/* 2^int( ld (inter)) */
665
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200666static int ep_2_n_interval(int inter)
Zhang Wei4dae14c2007-06-06 10:08:14 +0200667{
668 int i;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200669 for (i = 0; ((inter >> i) > 1) && (i < 5); i++);
Zhang Wei4dae14c2007-06-06 10:08:14 +0200670 return 1 << i;
671}
672
673/*-------------------------------------------------------------------------*/
674
675/* the int tree is a binary tree
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200676 * in order to process it sequentially the indexes of the branches have to
677 * be mapped the mapping reverses the bits of a word of num_bits length */
678static int ep_rev(int num_bits, int word)
Zhang Wei4dae14c2007-06-06 10:08:14 +0200679{
680 int i, wout = 0;
681
682 for (i = 0; i < num_bits; i++)
683 wout |= (((word >> i) & 1) << (num_bits - i - 1));
684 return wout;
685}
686
687/*-------------------------------------------------------------------------*
688 * ED handling functions
689 *-------------------------------------------------------------------------*/
690
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200691/* link an ed into one of the HC chains */
692
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200693static int ep_link(ohci_t *ohci, ed_t *edi)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200694{
695 volatile ed_t *ed = edi;
Zhang Wei4dae14c2007-06-06 10:08:14 +0200696 int int_branch;
697 int i;
698 int inter;
699 int interval;
700 int load;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200701 __u32 *ed_p;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200702
703 ed->state = ED_OPER;
Zhang Wei4dae14c2007-06-06 10:08:14 +0200704 ed->int_interval = 0;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200705
706 switch (ed->type) {
707 case PIPE_CONTROL:
708 ed->hwNextED = 0;
Hans de Goede8d005ef2015-05-05 23:56:13 +0200709 flush_dcache_ed(ed);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200710 if (ohci->ed_controltail == NULL)
Becky Brucea5496a12010-06-30 13:05:44 -0500711 ohci_writel(ed, &ohci->regs->ed_controlhead);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200712 else
713 ohci->ed_controltail->hwNextED =
714 m32_swap((unsigned long)ed);
715
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200716 ed->ed_prev = ohci->ed_controltail;
717 if (!ohci->ed_controltail && !ohci->ed_rm_list[0] &&
718 !ohci->ed_rm_list[1] && !ohci->sleeping) {
719 ohci->hc_control |= OHCI_CTRL_CLE;
Becky Brucea5496a12010-06-30 13:05:44 -0500720 ohci_writel(ohci->hc_control, &ohci->regs->control);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200721 }
722 ohci->ed_controltail = edi;
723 break;
724
725 case PIPE_BULK:
726 ed->hwNextED = 0;
Hans de Goede8d005ef2015-05-05 23:56:13 +0200727 flush_dcache_ed(ed);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200728 if (ohci->ed_bulktail == NULL)
Becky Brucea5496a12010-06-30 13:05:44 -0500729 ohci_writel(ed, &ohci->regs->ed_bulkhead);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200730 else
731 ohci->ed_bulktail->hwNextED =
732 m32_swap((unsigned long)ed);
733
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200734 ed->ed_prev = ohci->ed_bulktail;
735 if (!ohci->ed_bulktail && !ohci->ed_rm_list[0] &&
736 !ohci->ed_rm_list[1] && !ohci->sleeping) {
737 ohci->hc_control |= OHCI_CTRL_BLE;
Becky Brucea5496a12010-06-30 13:05:44 -0500738 ohci_writel(ohci->hc_control, &ohci->regs->control);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200739 }
740 ohci->ed_bulktail = edi;
741 break;
Zhang Wei4dae14c2007-06-06 10:08:14 +0200742
743 case PIPE_INTERRUPT:
744 load = ed->int_load;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200745 interval = ep_2_n_interval(ed->int_period);
Zhang Wei4dae14c2007-06-06 10:08:14 +0200746 ed->int_interval = interval;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200747 int_branch = ep_int_ballance(ohci, interval, load);
Zhang Wei4dae14c2007-06-06 10:08:14 +0200748 ed->int_branch = int_branch;
749
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200750 for (i = 0; i < ep_rev(6, interval); i += inter) {
Zhang Wei4dae14c2007-06-06 10:08:14 +0200751 inter = 1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200752 for (ed_p = &(ohci->hcca->int_table[\
753 ep_rev(5, i) + int_branch]);
754 (*ed_p != 0) &&
755 (((ed_t *)ed_p)->int_interval >= interval);
Zhang Wei4dae14c2007-06-06 10:08:14 +0200756 ed_p = &(((ed_t *)ed_p)->hwNextED))
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200757 inter = ep_rev(6,
758 ((ed_t *)ed_p)->int_interval);
Zhang Wei4dae14c2007-06-06 10:08:14 +0200759 ed->hwNextED = *ed_p;
Hans de Goede8d005ef2015-05-05 23:56:13 +0200760 flush_dcache_ed(ed);
Martin Krause4a8527e2007-08-21 12:40:34 +0200761 *ed_p = m32_swap((unsigned long)ed);
Hans de Goede8d005ef2015-05-05 23:56:13 +0200762 flush_dcache_hcca(ohci->hcca);
Zhang Wei4dae14c2007-06-06 10:08:14 +0200763 }
764 break;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200765 }
766 return 0;
767}
768
769/*-------------------------------------------------------------------------*/
770
Zhang Wei4dae14c2007-06-06 10:08:14 +0200771/* scan the periodic table to find and unlink this ED */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200772static void periodic_unlink(struct ohci *ohci, volatile struct ed *ed,
773 unsigned index, unsigned period)
Zhang Wei4dae14c2007-06-06 10:08:14 +0200774{
Hans de Goede8d005ef2015-05-05 23:56:13 +0200775 __maybe_unused unsigned long aligned_ed_p;
776
Zhang Wei4dae14c2007-06-06 10:08:14 +0200777 for (; index < NUM_INTS; index += period) {
778 __u32 *ed_p = &ohci->hcca->int_table [index];
779
780 /* ED might have been unlinked through another path */
781 while (*ed_p != 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200782 if (((struct ed *)
783 m32_swap((unsigned long)ed_p)) == ed) {
Zhang Wei4dae14c2007-06-06 10:08:14 +0200784 *ed_p = ed->hwNextED;
Hans de Goede8d005ef2015-05-05 23:56:13 +0200785#ifdef CONFIG_DM_USB
786 aligned_ed_p = (unsigned long)ed_p;
787 aligned_ed_p &= ~(ARCH_DMA_MINALIGN - 1);
788 flush_dcache_range(aligned_ed_p,
789 aligned_ed_p + ARCH_DMA_MINALIGN);
790#endif
Zhang Wei4dae14c2007-06-06 10:08:14 +0200791 break;
792 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200793 ed_p = &(((struct ed *)
794 m32_swap((unsigned long)ed_p))->hwNextED);
Zhang Wei4dae14c2007-06-06 10:08:14 +0200795 }
796 }
797}
798
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200799/* unlink an ed from one of the HC chains.
800 * just the link to the ed is unlinked.
801 * the link from the ed still points to another operational ed or 0
802 * so the HC can eventually finish the processing of the unlinked ed */
803
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200804static int ep_unlink(ohci_t *ohci, ed_t *edi)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200805{
Markus Klotzbuecher53e336e2006-11-27 11:43:09 +0100806 volatile ed_t *ed = edi;
Zhang Wei4dae14c2007-06-06 10:08:14 +0200807 int i;
Markus Klotzbuecher53e336e2006-11-27 11:43:09 +0100808
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200809 ed->hwINFO |= m32_swap(OHCI_ED_SKIP);
Hans de Goede8d005ef2015-05-05 23:56:13 +0200810 flush_dcache_ed(ed);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200811
812 switch (ed->type) {
813 case PIPE_CONTROL:
814 if (ed->ed_prev == NULL) {
815 if (!ed->hwNextED) {
816 ohci->hc_control &= ~OHCI_CTRL_CLE;
Becky Brucea5496a12010-06-30 13:05:44 -0500817 ohci_writel(ohci->hc_control,
818 &ohci->regs->control);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200819 }
Becky Brucea5496a12010-06-30 13:05:44 -0500820 ohci_writel(m32_swap(*((__u32 *)&ed->hwNextED)),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200821 &ohci->regs->ed_controlhead);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200822 } else {
823 ed->ed_prev->hwNextED = ed->hwNextED;
Hans de Goede8d005ef2015-05-05 23:56:13 +0200824 flush_dcache_ed(ed->ed_prev);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200825 }
826 if (ohci->ed_controltail == ed) {
827 ohci->ed_controltail = ed->ed_prev;
828 } else {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200829 ((ed_t *)m32_swap(
830 *((__u32 *)&ed->hwNextED)))->ed_prev = ed->ed_prev;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200831 }
832 break;
833
834 case PIPE_BULK:
835 if (ed->ed_prev == NULL) {
836 if (!ed->hwNextED) {
837 ohci->hc_control &= ~OHCI_CTRL_BLE;
Becky Brucea5496a12010-06-30 13:05:44 -0500838 ohci_writel(ohci->hc_control,
839 &ohci->regs->control);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200840 }
Becky Brucea5496a12010-06-30 13:05:44 -0500841 ohci_writel(m32_swap(*((__u32 *)&ed->hwNextED)),
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200842 &ohci->regs->ed_bulkhead);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200843 } else {
844 ed->ed_prev->hwNextED = ed->hwNextED;
Hans de Goede8d005ef2015-05-05 23:56:13 +0200845 flush_dcache_ed(ed->ed_prev);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200846 }
847 if (ohci->ed_bulktail == ed) {
848 ohci->ed_bulktail = ed->ed_prev;
849 } else {
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200850 ((ed_t *)m32_swap(
851 *((__u32 *)&ed->hwNextED)))->ed_prev = ed->ed_prev;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200852 }
853 break;
Zhang Wei4dae14c2007-06-06 10:08:14 +0200854
855 case PIPE_INTERRUPT:
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200856 periodic_unlink(ohci, ed, 0, 1);
Zhang Wei4dae14c2007-06-06 10:08:14 +0200857 for (i = ed->int_branch; i < 32; i += ed->int_interval)
858 ohci->ohci_int_load[i] -= ed->int_load;
859 break;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200860 }
861 ed->state = ED_UNLINK;
862 return 0;
863}
864
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200865/*-------------------------------------------------------------------------*/
866
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +0200867/* add/reinit an endpoint; this should be done once at the
868 * usb_set_configuration command, but the USB stack is a little bit
869 * stateless so we do it at every transaction if the state of the ed
870 * is ED_NEW then a dummy td is added and the state is changed to
871 * ED_UNLINK in all other cases the state is left unchanged the ed
872 * info fields are setted anyway even though most of them should not
873 * change
874 */
Hans de Goede19d95d52015-05-05 23:56:08 +0200875static ed_t *ep_add_ed(ohci_dev_t *ohci_dev, struct usb_device *usb_dev,
876 unsigned long pipe, int interval, int load)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200877{
878 td_t *td;
879 ed_t *ed_ret;
880 volatile ed_t *ed;
881
Hans de Goede19d95d52015-05-05 23:56:08 +0200882 ed = ed_ret = &ohci_dev->ed[(usb_pipeendpoint(pipe) << 1) |
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200883 (usb_pipecontrol(pipe)? 0: usb_pipeout(pipe))];
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200884
885 if ((ed->state & ED_DEL) || (ed->state & ED_URB_DEL)) {
886 err("ep_add_ed: pending delete");
887 /* pending delete request */
888 return NULL;
889 }
890
891 if (ed->state == ED_NEW) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200892 /* dummy td; end of td list for ed */
Hans de Goede3c5497d2015-05-05 23:56:09 +0200893 td = td_alloc(ohci_dev, usb_dev);
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200894 ed->hwTailP = m32_swap((unsigned long)td);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200895 ed->hwHeadP = ed->hwTailP;
896 ed->state = ED_UNLINK;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200897 ed->type = usb_pipetype(pipe);
Hans de Goede19d95d52015-05-05 23:56:08 +0200898 ohci_dev->ed_cnt++;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200899 }
900
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200901 ed->hwINFO = m32_swap(usb_pipedevice(pipe)
902 | usb_pipeendpoint(pipe) << 7
903 | (usb_pipeisoc(pipe)? 0x8000: 0)
904 | (usb_pipecontrol(pipe)? 0: \
905 (usb_pipeout(pipe)? 0x800: 0x1000))
Ilya Yanokc60795f2012-11-06 13:48:20 +0000906 | (usb_dev->speed == USB_SPEED_LOW) << 13
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200907 | usb_maxpacket(usb_dev, pipe) << 16);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200908
Zhang Wei4dae14c2007-06-06 10:08:14 +0200909 if (ed->type == PIPE_INTERRUPT && ed->state == ED_UNLINK) {
910 ed->int_period = interval;
911 ed->int_load = load;
912 }
913
Hans de Goede8d005ef2015-05-05 23:56:13 +0200914 flush_dcache_ed(ed);
915
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200916 return ed_ret;
917}
918
919/*-------------------------------------------------------------------------*
920 * TD handling functions
921 *-------------------------------------------------------------------------*/
922
923/* enqueue next TD for this URB (OHCI spec 5.2.8.2) */
924
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200925static void td_fill(ohci_t *ohci, unsigned int info,
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200926 void *data, int len,
927 struct usb_device *dev, int index, urb_priv_t *urb_priv)
928{
929 volatile td_t *td, *td_pt;
930#ifdef OHCI_FILL_TRACE
931 int i;
932#endif
933
934 if (index > urb_priv->length) {
935 err("index > length");
936 return;
937 }
938 /* use this td as the next dummy */
939 td_pt = urb_priv->td [index];
940 td_pt->hwNextTD = 0;
Hans de Goede8d005ef2015-05-05 23:56:13 +0200941 flush_dcache_td(td_pt);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200942
943 /* fill the old dummy TD */
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200944 td = urb_priv->td [index] =
945 (td_t *)(m32_swap(urb_priv->ed->hwTailP) & ~0xf);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200946
947 td->ed = urb_priv->ed;
948 td->next_dl_td = NULL;
949 td->index = index;
950 td->data = (__u32)data;
951#ifdef OHCI_FILL_TRACE
Remy Bohmer48867202008-10-10 10:23:21 +0200952 if (usb_pipebulk(urb_priv->pipe) && usb_pipeout(urb_priv->pipe)) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200953 for (i = 0; i < len; i++)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200954 printf("td->data[%d] %#2x ", i, ((unsigned char *)td->data)[i]);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200955 printf("\n");
956 }
957#endif
958 if (!len)
959 data = 0;
960
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200961 td->hwINFO = m32_swap(info);
962 td->hwCBP = m32_swap((unsigned long)data);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200963 if (data)
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200964 td->hwBE = m32_swap((unsigned long)(data + len - 1));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200965 else
966 td->hwBE = 0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200967
968 td->hwNextTD = m32_swap((unsigned long)td_pt);
Hans de Goede8d005ef2015-05-05 23:56:13 +0200969 flush_dcache_td(td);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200970
971 /* append to queue */
972 td->ed->hwTailP = td->hwNextTD;
Hans de Goede8d005ef2015-05-05 23:56:13 +0200973 flush_dcache_ed(td->ed);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200974}
975
976/*-------------------------------------------------------------------------*/
977
978/* prepare all TDs of a transfer */
979
Hans de Goedec5613df2015-05-05 23:56:07 +0200980static void td_submit_job(ohci_t *ohci, struct usb_device *dev,
981 unsigned long pipe, void *buffer, int transfer_len,
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200982 struct devrequest *setup, urb_priv_t *urb,
983 int interval)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200984{
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200985 int data_len = transfer_len;
986 void *data;
987 int cnt = 0;
988 __u32 info = 0;
989 unsigned int toggle = 0;
990
Hans de Goede8d005ef2015-05-05 23:56:13 +0200991 flush_dcache_buffer(buffer, data_len);
992
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200993 /* OHCI handles the DATA-toggles itself, we just use the USB-toggle
994 * bits for reseting */
995 if (usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe))) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +0200996 toggle = TD_T_TOGGLE;
997 } else {
998 toggle = TD_T_DATA0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +0200999 usb_settoggle(dev, usb_pipeendpoint(pipe),
1000 usb_pipeout(pipe), 1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001001 }
1002 urb->td_cnt = 0;
1003 if (data_len)
1004 data = buffer;
1005 else
1006 data = 0;
1007
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001008 switch (usb_pipetype(pipe)) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001009 case PIPE_BULK:
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001010 info = usb_pipeout(pipe)?
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001011 TD_CC | TD_DP_OUT : TD_CC | TD_DP_IN ;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001012 while (data_len > 4096) {
1013 td_fill(ohci, info | (cnt? TD_T_TOGGLE:toggle),
1014 data, 4096, dev, cnt, urb);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001015 data += 4096; data_len -= 4096; cnt++;
1016 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001017 info = usb_pipeout(pipe)?
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001018 TD_CC | TD_DP_OUT : TD_CC | TD_R | TD_DP_IN ;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001019 td_fill(ohci, info | (cnt? TD_T_TOGGLE:toggle), data,
1020 data_len, dev, cnt, urb);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001021 cnt++;
1022
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001023 if (!ohci->sleeping) {
1024 /* start bulk list */
Becky Brucea5496a12010-06-30 13:05:44 -05001025 ohci_writel(OHCI_BLF, &ohci->regs->cmdstatus);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001026 }
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001027 break;
1028
1029 case PIPE_CONTROL:
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001030 /* Setup phase */
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001031 info = TD_CC | TD_DP_SETUP | TD_T_DATA0;
Hans de Goede8d005ef2015-05-05 23:56:13 +02001032 flush_dcache_buffer(setup, 8);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001033 td_fill(ohci, info, setup, 8, dev, cnt++, urb);
1034
1035 /* Optional Data phase */
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001036 if (data_len > 0) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001037 info = usb_pipeout(pipe)?
1038 TD_CC | TD_R | TD_DP_OUT | TD_T_DATA1 :
1039 TD_CC | TD_R | TD_DP_IN | TD_T_DATA1;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001040 /* NOTE: mishandles transfers >8K, some >4K */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001041 td_fill(ohci, info, data, data_len, dev, cnt++, urb);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001042 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001043
1044 /* Status phase */
Hans de Goedecae01cb2015-05-05 23:56:12 +02001045 info = (usb_pipeout(pipe) || data_len == 0) ?
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001046 TD_CC | TD_DP_IN | TD_T_DATA1:
1047 TD_CC | TD_DP_OUT | TD_T_DATA1;
1048 td_fill(ohci, info, data, 0, dev, cnt++, urb);
1049
1050 if (!ohci->sleeping) {
1051 /* start Control list */
Becky Brucea5496a12010-06-30 13:05:44 -05001052 ohci_writel(OHCI_CLF, &ohci->regs->cmdstatus);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001053 }
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001054 break;
Zhang Wei4dae14c2007-06-06 10:08:14 +02001055
1056 case PIPE_INTERRUPT:
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001057 info = usb_pipeout(urb->pipe)?
Zhang Wei4dae14c2007-06-06 10:08:14 +02001058 TD_CC | TD_DP_OUT | toggle:
1059 TD_CC | TD_R | TD_DP_IN | toggle;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001060 td_fill(ohci, info, data, data_len, dev, cnt++, urb);
Zhang Wei4dae14c2007-06-06 10:08:14 +02001061 break;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001062 }
1063 if (urb->length != cnt)
1064 dbg("TD LENGTH %d != CNT %d", urb->length, cnt);
1065}
1066
1067/*-------------------------------------------------------------------------*
1068 * Done List handling functions
1069 *-------------------------------------------------------------------------*/
1070
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001071/* calculate the transfer length and update the urb */
1072
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001073static void dl_transfer_length(td_t *td)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001074{
Wolfgang Denk6bc52ef2011-10-05 23:03:43 +02001075 __u32 tdBE, tdCBP;
Zhang Wei4dae14c2007-06-06 10:08:14 +02001076 urb_priv_t *lurb_priv = td->ed->purb;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001077
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001078 tdBE = m32_swap(td->hwBE);
1079 tdCBP = m32_swap(td->hwCBP);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001080
Remy Bohmer48867202008-10-10 10:23:21 +02001081 if (!(usb_pipecontrol(lurb_priv->pipe) &&
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001082 ((td->index == 0) || (td->index == lurb_priv->length - 1)))) {
1083 if (tdBE != 0) {
1084 if (td->hwCBP == 0)
1085 lurb_priv->actual_length += tdBE - td->data + 1;
1086 else
1087 lurb_priv->actual_length += tdCBP - td->data;
1088 }
1089 }
1090}
1091
1092/*-------------------------------------------------------------------------*/
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001093static void check_status(td_t *td_list)
1094{
1095 urb_priv_t *lurb_priv = td_list->ed->purb;
1096 int urb_len = lurb_priv->length;
1097 __u32 *phwHeadP = &td_list->ed->hwHeadP;
1098 int cc;
1099
1100 cc = TD_CC_GET(m32_swap(td_list->hwINFO));
1101 if (cc) {
1102 err(" USB-error: %s (%x)", cc_to_string[cc], cc);
1103
Hans de Goede8d005ef2015-05-05 23:56:13 +02001104 invalidate_dcache_ed(td_list->ed);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001105 if (*phwHeadP & m32_swap(0x1)) {
1106 if (lurb_priv &&
1107 ((td_list->index + 1) < urb_len)) {
1108 *phwHeadP =
1109 (lurb_priv->td[urb_len - 1]->hwNextTD &\
1110 m32_swap(0xfffffff0)) |
1111 (*phwHeadP & m32_swap(0x2));
1112
1113 lurb_priv->td_cnt += urb_len -
1114 td_list->index - 1;
1115 } else
1116 *phwHeadP &= m32_swap(0xfffffff2);
Hans de Goede8d005ef2015-05-05 23:56:13 +02001117 flush_dcache_ed(td_list->ed);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001118 }
1119#ifdef CONFIG_MPC5200
1120 td_list->hwNextTD = 0;
Hans de Goede8d005ef2015-05-05 23:56:13 +02001121 flush_dcache_td(td_list);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001122#endif
1123 }
1124}
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001125
1126/* replies to the request have to be on a FIFO basis so
1127 * we reverse the reversed done-list */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001128static td_t *dl_reverse_done_list(ohci_t *ohci)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001129{
1130 __u32 td_list_hc;
1131 td_t *td_rev = NULL;
1132 td_t *td_list = NULL;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001133
Hans de Goede8d005ef2015-05-05 23:56:13 +02001134 invalidate_dcache_hcca(ohci->hcca);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001135 td_list_hc = m32_swap(ohci->hcca->done_head) & 0xfffffff0;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001136 ohci->hcca->done_head = 0;
Hans de Goede8d005ef2015-05-05 23:56:13 +02001137 flush_dcache_hcca(ohci->hcca);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001138
1139 while (td_list_hc) {
1140 td_list = (td_t *)td_list_hc;
Hans de Goede8d005ef2015-05-05 23:56:13 +02001141 invalidate_dcache_td(td_list);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001142 check_status(td_list);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001143 td_list->next_dl_td = td_rev;
1144 td_rev = td_list;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001145 td_list_hc = m32_swap(td_list->hwNextTD) & 0xfffffff0;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001146 }
1147 return td_list;
1148}
1149
1150/*-------------------------------------------------------------------------*/
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001151/*-------------------------------------------------------------------------*/
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001152
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001153static void finish_urb(ohci_t *ohci, urb_priv_t *urb, int status)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001154{
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001155 if ((status & (ED_OPER | ED_UNLINK)) && (urb->state != URB_DEL))
1156 urb->finished = sohci_return_job(ohci, urb);
1157 else
1158 dbg("finish_urb: strange.., ED state %x, \n", status);
1159}
1160
1161/*
1162 * Used to take back a TD from the host controller. This would normally be
1163 * called from within dl_done_list, however it may be called directly if the
1164 * HC no longer sees the TD and it has not appeared on the donelist (after
1165 * two frames). This bug has been observed on ZF Micro systems.
1166 */
1167static int takeback_td(ohci_t *ohci, td_t *td_list)
1168{
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001169 ed_t *ed;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001170 int cc;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001171 int stat = 0;
1172 /* urb_t *urb; */
1173 urb_priv_t *lurb_priv;
1174 __u32 tdINFO, edHeadP, edTailP;
1175
Hans de Goede8d005ef2015-05-05 23:56:13 +02001176 invalidate_dcache_td(td_list);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001177 tdINFO = m32_swap(td_list->hwINFO);
1178
1179 ed = td_list->ed;
1180 lurb_priv = ed->purb;
1181
1182 dl_transfer_length(td_list);
1183
1184 lurb_priv->td_cnt++;
1185
1186 /* error code of transfer */
1187 cc = TD_CC_GET(tdINFO);
1188 if (cc) {
1189 err("USB-error: %s (%x)", cc_to_string[cc], cc);
1190 stat = cc_to_error[cc];
1191 }
1192
1193 /* see if this done list makes for all TD's of current URB,
1194 * and mark the URB finished if so */
1195 if (lurb_priv->td_cnt == lurb_priv->length)
1196 finish_urb(ohci, lurb_priv, ed->state);
1197
1198 dbg("dl_done_list: processing TD %x, len %x\n",
1199 lurb_priv->td_cnt, lurb_priv->length);
1200
Remy Bohmer48867202008-10-10 10:23:21 +02001201 if (ed->state != ED_NEW && (!usb_pipeint(lurb_priv->pipe))) {
Hans de Goede8d005ef2015-05-05 23:56:13 +02001202 invalidate_dcache_ed(ed);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001203 edHeadP = m32_swap(ed->hwHeadP) & 0xfffffff0;
1204 edTailP = m32_swap(ed->hwTailP);
1205
1206 /* unlink eds if they are not busy */
1207 if ((edHeadP == edTailP) && (ed->state == ED_OPER))
1208 ep_unlink(ohci, ed);
1209 }
1210 return stat;
1211}
1212
1213static int dl_done_list(ohci_t *ohci)
1214{
1215 int stat = 0;
1216 td_t *td_list = dl_reverse_done_list(ohci);
1217
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001218 while (td_list) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001219 td_t *td_next = td_list->next_dl_td;
1220 stat = takeback_td(ohci, td_list);
1221 td_list = td_next;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001222 }
1223 return stat;
1224}
1225
1226/*-------------------------------------------------------------------------*
1227 * Virtual Root Hub
1228 *-------------------------------------------------------------------------*/
1229
Stephen Warreneb838e72014-02-13 21:15:18 -07001230#include <usbroothubdes.h>
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001231
1232/* Hub class-specific descriptor is constructed dynamically */
1233
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001234/*-------------------------------------------------------------------------*/
1235
1236#define OK(x) len = (x); break
1237#ifdef DEBUG
Becky Brucea5496a12010-06-30 13:05:44 -05001238#define WR_RH_STAT(x) {info("WR:status %#8x", (x)); ohci_writel((x), \
Hans de Goedec5613df2015-05-05 23:56:07 +02001239 &ohci->regs->roothub.status); }
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001240#define WR_RH_PORTSTAT(x) {info("WR:portstatus[%d] %#8x", wIndex-1, \
Hans de Goedec5613df2015-05-05 23:56:07 +02001241 (x)); ohci_writel((x), &ohci->regs->roothub.portstatus[wIndex-1]); }
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001242#else
Hans de Goedec5613df2015-05-05 23:56:07 +02001243#define WR_RH_STAT(x) ohci_writel((x), &ohci->regs->roothub.status)
Becky Brucea5496a12010-06-30 13:05:44 -05001244#define WR_RH_PORTSTAT(x) ohci_writel((x), \
Hans de Goedec5613df2015-05-05 23:56:07 +02001245 &ohci->regs->roothub.portstatus[wIndex-1])
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001246#endif
Hans de Goedec5613df2015-05-05 23:56:07 +02001247#define RD_RH_STAT roothub_status(ohci)
1248#define RD_RH_PORTSTAT roothub_portstatus(ohci, wIndex-1)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001249
1250/* request to virtual root hub */
1251
1252int rh_check_port_status(ohci_t *controller)
1253{
1254 __u32 temp, ndp, i;
1255 int res;
1256
1257 res = -1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001258 temp = roothub_a(controller);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001259 ndp = (temp & RH_A_NDP);
1260#ifdef CONFIG_AT91C_PQFP_UHPBUG
1261 ndp = (ndp == 2) ? 1:0;
1262#endif
1263 for (i = 0; i < ndp; i++) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001264 temp = roothub_portstatus(controller, i);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001265 /* check for a device disconnect */
1266 if (((temp & (RH_PS_PESC | RH_PS_CSC)) ==
1267 (RH_PS_PESC | RH_PS_CSC)) &&
1268 ((temp & RH_PS_CCS) == 0)) {
1269 res = i;
1270 break;
1271 }
1272 }
1273 return res;
1274}
1275
Hans de Goedec5613df2015-05-05 23:56:07 +02001276static int ohci_submit_rh_msg(ohci_t *ohci, struct usb_device *dev,
1277 unsigned long pipe, void *buffer, int transfer_len,
1278 struct devrequest *cmd)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001279{
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001280 void *data = buffer;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001281 int leni = transfer_len;
1282 int len = 0;
1283 int stat = 0;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001284 __u16 bmRType_bReq;
1285 __u16 wValue;
1286 __u16 wIndex;
1287 __u16 wLength;
Troy Kiskyf1273f12012-08-11 14:49:09 -07001288 ALLOC_ALIGN_BUFFER(__u8, databuf, 16, sizeof(u32));
Marek Vasut5f6aa032011-10-07 02:00:13 +02001289
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001290#ifdef DEBUG
Hans de Goedec5613df2015-05-05 23:56:07 +02001291pkt_print(ohci, NULL, dev, pipe, buffer, transfer_len,
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001292 cmd, "SUB(rh)", usb_pipein(pipe));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001293#else
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001294 mdelay(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001295#endif
Remy Bohmer48867202008-10-10 10:23:21 +02001296 if (usb_pipeint(pipe)) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001297 info("Root-Hub submit IRQ: NOT implemented");
1298 return 0;
1299 }
1300
1301 bmRType_bReq = cmd->requesttype | (cmd->request << 8);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001302 wValue = le16_to_cpu(cmd->value);
1303 wIndex = le16_to_cpu(cmd->index);
1304 wLength = le16_to_cpu(cmd->length);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001305
1306 info("Root-Hub: adr: %2x cmd(%1x): %08x %04x %04x %04x",
1307 dev->devnum, 8, bmRType_bReq, wValue, wIndex, wLength);
1308
1309 switch (bmRType_bReq) {
1310 /* Request Destination:
1311 without flags: Device,
1312 RH_INTERFACE: interface,
1313 RH_ENDPOINT: endpoint,
1314 RH_CLASS means HUB here,
1315 RH_OTHER | RH_CLASS almost ever means HUB_PORT here
1316 */
1317
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +01001318 case RH_GET_STATUS:
Troy Kiskyf1273f12012-08-11 14:49:09 -07001319 *(u16 *)databuf = cpu_to_le16(1);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001320 OK(2);
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +01001321 case RH_GET_STATUS | RH_INTERFACE:
Troy Kiskyf1273f12012-08-11 14:49:09 -07001322 *(u16 *)databuf = cpu_to_le16(0);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001323 OK(2);
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +01001324 case RH_GET_STATUS | RH_ENDPOINT:
Troy Kiskyf1273f12012-08-11 14:49:09 -07001325 *(u16 *)databuf = cpu_to_le16(0);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001326 OK(2);
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +01001327 case RH_GET_STATUS | RH_CLASS:
Troy Kiskyf1273f12012-08-11 14:49:09 -07001328 *(u32 *)databuf = cpu_to_le32(
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +01001329 RD_RH_STAT & ~(RH_HS_CRWE | RH_HS_DRWE));
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001330 OK(4);
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +01001331 case RH_GET_STATUS | RH_OTHER | RH_CLASS:
Troy Kiskyf1273f12012-08-11 14:49:09 -07001332 *(u32 *)databuf = cpu_to_le32(RD_RH_PORTSTAT);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001333 OK(4);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001334
1335 case RH_CLEAR_FEATURE | RH_ENDPOINT:
1336 switch (wValue) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001337 case (RH_ENDPOINT_STALL):
1338 OK(0);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001339 }
1340 break;
1341
1342 case RH_CLEAR_FEATURE | RH_CLASS:
1343 switch (wValue) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001344 case RH_C_HUB_LOCAL_POWER:
1345 OK(0);
1346 case (RH_C_HUB_OVER_CURRENT):
1347 WR_RH_STAT(RH_HS_OCIC);
1348 OK(0);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001349 }
1350 break;
1351
1352 case RH_CLEAR_FEATURE | RH_OTHER | RH_CLASS:
1353 switch (wValue) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001354 case (RH_PORT_ENABLE): WR_RH_PORTSTAT(RH_PS_CCS); OK(0);
1355 case (RH_PORT_SUSPEND): WR_RH_PORTSTAT(RH_PS_POCI); OK(0);
1356 case (RH_PORT_POWER): WR_RH_PORTSTAT(RH_PS_LSDA); OK(0);
1357 case (RH_C_PORT_CONNECTION): WR_RH_PORTSTAT(RH_PS_CSC); OK(0);
1358 case (RH_C_PORT_ENABLE): WR_RH_PORTSTAT(RH_PS_PESC); OK(0);
1359 case (RH_C_PORT_SUSPEND): WR_RH_PORTSTAT(RH_PS_PSSC); OK(0);
1360 case (RH_C_PORT_OVER_CURRENT):WR_RH_PORTSTAT(RH_PS_OCIC); OK(0);
1361 case (RH_C_PORT_RESET): WR_RH_PORTSTAT(RH_PS_PRSC); OK(0);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001362 }
1363 break;
1364
1365 case RH_SET_FEATURE | RH_OTHER | RH_CLASS:
1366 switch (wValue) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001367 case (RH_PORT_SUSPEND):
1368 WR_RH_PORTSTAT(RH_PS_PSS); OK(0);
1369 case (RH_PORT_RESET): /* BUG IN HUP CODE *********/
1370 if (RD_RH_PORTSTAT & RH_PS_CCS)
1371 WR_RH_PORTSTAT(RH_PS_PRS);
1372 OK(0);
1373 case (RH_PORT_POWER):
1374 WR_RH_PORTSTAT(RH_PS_PPS);
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001375 mdelay(100);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001376 OK(0);
1377 case (RH_PORT_ENABLE): /* BUG IN HUP CODE *********/
1378 if (RD_RH_PORTSTAT & RH_PS_CCS)
1379 WR_RH_PORTSTAT(RH_PS_PES);
1380 OK(0);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001381 }
1382 break;
1383
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001384 case RH_SET_ADDRESS:
Hans de Goedec5613df2015-05-05 23:56:07 +02001385 ohci->rh.devnum = wValue;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001386 OK(0);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001387
1388 case RH_GET_DESCRIPTOR:
1389 switch ((wValue & 0xff00) >> 8) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001390 case (0x01): /* device descriptor */
1391 len = min_t(unsigned int,
1392 leni,
1393 min_t(unsigned int,
1394 sizeof(root_hub_dev_des),
1395 wLength));
Troy Kiskyf1273f12012-08-11 14:49:09 -07001396 databuf = root_hub_dev_des; OK(len);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001397 case (0x02): /* configuration descriptor */
1398 len = min_t(unsigned int,
1399 leni,
1400 min_t(unsigned int,
1401 sizeof(root_hub_config_des),
1402 wLength));
Troy Kiskyf1273f12012-08-11 14:49:09 -07001403 databuf = root_hub_config_des; OK(len);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001404 case (0x03): /* string descriptors */
1405 if (wValue == 0x0300) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001406 len = min_t(unsigned int,
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001407 leni,
1408 min_t(unsigned int,
1409 sizeof(root_hub_str_index0),
1410 wLength));
Troy Kiskyf1273f12012-08-11 14:49:09 -07001411 databuf = root_hub_str_index0;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001412 OK(len);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001413 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001414 if (wValue == 0x0301) {
1415 len = min_t(unsigned int,
1416 leni,
1417 min_t(unsigned int,
1418 sizeof(root_hub_str_index1),
1419 wLength));
Troy Kiskyf1273f12012-08-11 14:49:09 -07001420 databuf = root_hub_str_index1;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001421 OK(len);
1422 }
1423 default:
1424 stat = USB_ST_STALLED;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001425 }
1426 break;
1427
1428 case RH_GET_DESCRIPTOR | RH_CLASS:
1429 {
Hans de Goedec5613df2015-05-05 23:56:07 +02001430 __u32 temp = roothub_a(ohci);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001431
Troy Kiskyf1273f12012-08-11 14:49:09 -07001432 databuf[0] = 9; /* min length; */
1433 databuf[1] = 0x29;
1434 databuf[2] = temp & RH_A_NDP;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001435#ifdef CONFIG_AT91C_PQFP_UHPBUG
Troy Kiskyf1273f12012-08-11 14:49:09 -07001436 databuf[2] = (databuf[2] == 2) ? 1 : 0;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001437#endif
Troy Kiskyf1273f12012-08-11 14:49:09 -07001438 databuf[3] = 0;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001439 if (temp & RH_A_PSM) /* per-port power switching? */
Troy Kiskyf1273f12012-08-11 14:49:09 -07001440 databuf[3] |= 0x1;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001441 if (temp & RH_A_NOCP) /* no overcurrent reporting? */
Troy Kiskyf1273f12012-08-11 14:49:09 -07001442 databuf[3] |= 0x10;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001443 else if (temp & RH_A_OCPM)/* per-port overcurrent reporting? */
Troy Kiskyf1273f12012-08-11 14:49:09 -07001444 databuf[3] |= 0x8;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001445
Troy Kiskyf1273f12012-08-11 14:49:09 -07001446 databuf[4] = 0;
1447 databuf[5] = (temp & RH_A_POTPGT) >> 24;
1448 databuf[6] = 0;
Hans de Goedec5613df2015-05-05 23:56:07 +02001449 temp = roothub_b(ohci);
Troy Kiskyf1273f12012-08-11 14:49:09 -07001450 databuf[7] = temp & RH_B_DR;
1451 if (databuf[2] < 7) {
1452 databuf[8] = 0xff;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001453 } else {
Troy Kiskyf1273f12012-08-11 14:49:09 -07001454 databuf[0] += 2;
1455 databuf[8] = (temp & RH_B_DR) >> 8;
1456 databuf[10] = databuf[9] = 0xff;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001457 }
1458
1459 len = min_t(unsigned int, leni,
Troy Kiskyf1273f12012-08-11 14:49:09 -07001460 min_t(unsigned int, databuf[0], wLength));
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001461 OK(len);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001462 }
1463
Marek Vasut5f6aa032011-10-07 02:00:13 +02001464 case RH_GET_CONFIGURATION:
Troy Kiskyf1273f12012-08-11 14:49:09 -07001465 databuf[0] = 0x01;
Marek Vasut5f6aa032011-10-07 02:00:13 +02001466 OK(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001467
Marek Vasut5f6aa032011-10-07 02:00:13 +02001468 case RH_SET_CONFIGURATION:
1469 WR_RH_STAT(0x10000);
1470 OK(0);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001471
1472 default:
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001473 dbg("unsupported root hub command");
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001474 stat = USB_ST_STALLED;
1475 }
1476
1477#ifdef DEBUG
Hans de Goedec5613df2015-05-05 23:56:07 +02001478 ohci_dump_roothub(ohci, 1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001479#else
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001480 mdelay(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001481#endif
1482
1483 len = min_t(int, len, leni);
Troy Kiskyf1273f12012-08-11 14:49:09 -07001484 if (data != databuf)
1485 memcpy(data, databuf, len);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001486 dev->act_len = len;
1487 dev->status = stat;
1488
1489#ifdef DEBUG
Hans de Goedec5613df2015-05-05 23:56:07 +02001490 pkt_print(ohci, NULL, dev, pipe, buffer,
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001491 transfer_len, cmd, "RET(rh)", 0/*usb_pipein(pipe)*/);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001492#else
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001493 mdelay(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001494#endif
1495
1496 return stat;
1497}
1498
1499/*-------------------------------------------------------------------------*/
1500
1501/* common code for handling submit messages - used for all but root hub */
1502/* accesses. */
Hans de Goedec5613df2015-05-05 23:56:07 +02001503static int submit_common_msg(ohci_t *ohci, struct usb_device *dev,
1504 unsigned long pipe, void *buffer, int transfer_len,
1505 struct devrequest *setup, int interval)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001506{
1507 int stat = 0;
1508 int maxsize = usb_maxpacket(dev, pipe);
1509 int timeout;
Zhang Wei4dae14c2007-06-06 10:08:14 +02001510 urb_priv_t *urb;
1511
1512 urb = malloc(sizeof(urb_priv_t));
1513 memset(urb, 0, sizeof(urb_priv_t));
1514
1515 urb->dev = dev;
1516 urb->pipe = pipe;
1517 urb->transfer_buffer = buffer;
1518 urb->transfer_buffer_length = transfer_len;
1519 urb->interval = interval;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001520
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001521#ifdef DEBUG
Zhang Wei4dae14c2007-06-06 10:08:14 +02001522 urb->actual_length = 0;
Hans de Goedec5613df2015-05-05 23:56:07 +02001523 pkt_print(ohci, urb, dev, pipe, buffer, transfer_len,
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001524 setup, "SUB", usb_pipein(pipe));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001525#else
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001526 mdelay(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001527#endif
1528 if (!maxsize) {
1529 err("submit_common_message: pipesize for pipe %lx is zero",
1530 pipe);
1531 return -1;
1532 }
1533
Hans de Goede19d95d52015-05-05 23:56:08 +02001534 if (sohci_submit_job(ohci, &ohci->ohci_dev, urb, setup) < 0) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001535 err("sohci_submit_job failed");
1536 return -1;
1537 }
1538
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +01001539#if 0
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001540 mdelay(10);
Hans de Goedec5613df2015-05-05 23:56:07 +02001541 /* ohci_dump_status(ohci); */
Markus Klotzbuecherae3b7702006-11-27 11:46:46 +01001542#endif
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001543
Simon Glass96820a32011-02-07 14:42:16 -08001544 timeout = USB_TIMEOUT_MS(pipe);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001545
1546 /* wait for it to complete */
1547 for (;;) {
1548 /* check whether the controller is done */
Hans de Goedec5613df2015-05-05 23:56:07 +02001549 stat = hc_interrupt(ohci);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001550 if (stat < 0) {
1551 stat = USB_ST_CRC_ERR;
1552 break;
1553 }
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +02001554
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +02001555 /* NOTE: since we are not interrupt driven in U-Boot and always
1556 * handle only one URB at a time, we cannot assume the
1557 * transaction finished on the first successful return from
1558 * hc_interrupt().. unless the flag for current URB is set,
1559 * meaning that all TD's to/from device got actually
1560 * transferred and processed. If the current URB is not
1561 * finished we need to re-iterate this loop so as
1562 * hc_interrupt() gets called again as there needs to be some
1563 * more TD's to process still */
Zhang Wei4dae14c2007-06-06 10:08:14 +02001564 if ((stat >= 0) && (stat != 0xff) && (urb->finished)) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001565 /* 0xff is returned for an SF-interrupt */
1566 break;
1567 }
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +02001568
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001569 if (--timeout) {
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001570 mdelay(1);
Zhang Wei4dae14c2007-06-06 10:08:14 +02001571 if (!urb->finished)
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001572 dbg("*");
Zhang Wei4dae14c2007-06-06 10:08:14 +02001573
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001574 } else {
1575 err("CTL:TIMEOUT ");
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +02001576 dbg("submit_common_msg: TO status %x\n", stat);
Zhang Wei4dae14c2007-06-06 10:08:14 +02001577 urb->finished = 1;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001578 stat = USB_ST_CRC_ERR;
1579 break;
1580 }
1581 }
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001582
1583 dev->status = stat;
Mateusz Kulikowski522c9562013-10-23 20:26:27 +02001584 dev->act_len = urb->actual_length;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001585
Hans de Goede8d005ef2015-05-05 23:56:13 +02001586 if (usb_pipein(pipe) && dev->status == 0 && dev->act_len)
1587 invalidate_dcache_buffer(buffer, dev->act_len);
1588
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001589#ifdef DEBUG
Hans de Goedec5613df2015-05-05 23:56:07 +02001590 pkt_print(ohci, urb, dev, pipe, buffer, transfer_len,
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001591 setup, "RET(ctlr)", usb_pipein(pipe));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001592#else
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001593 mdelay(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001594#endif
1595
1596 /* free TDs in urb_priv */
Remy Bohmer48867202008-10-10 10:23:21 +02001597 if (!usb_pipeint(pipe))
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001598 urb_free_priv(urb);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001599 return 0;
1600}
1601
1602/* submit routines called from usb.c */
1603int submit_bulk_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1604 int transfer_len)
1605{
1606 info("submit_bulk_msg");
Hans de Goedec5613df2015-05-05 23:56:07 +02001607 return submit_common_msg(&gohci, dev, pipe, buffer, transfer_len,
1608 NULL, 0);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001609}
1610
Hans de Goedec5613df2015-05-05 23:56:07 +02001611int submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1612 int transfer_len, int interval)
1613{
1614 info("submit_int_msg");
1615 return submit_common_msg(&gohci, dev, pipe, buffer, transfer_len, NULL,
1616 interval);
1617}
1618
1619static int _ohci_submit_control_msg(ohci_t *ohci, struct usb_device *dev,
1620 unsigned long pipe, void *buffer, int transfer_len,
1621 struct devrequest *setup)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001622{
1623 int maxsize = usb_maxpacket(dev, pipe);
1624
1625 info("submit_control_msg");
1626#ifdef DEBUG
Hans de Goedec5613df2015-05-05 23:56:07 +02001627 pkt_print(ohci, NULL, dev, pipe, buffer, transfer_len,
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001628 setup, "SUB", usb_pipein(pipe));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001629#else
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001630 mdelay(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001631#endif
1632 if (!maxsize) {
1633 err("submit_control_message: pipesize for pipe %lx is zero",
1634 pipe);
1635 return -1;
1636 }
Hans de Goedec5613df2015-05-05 23:56:07 +02001637 if (((pipe >> 8) & 0x7f) == ohci->rh.devnum) {
1638 ohci->rh.dev = dev;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001639 /* root hub - redirect */
Hans de Goedec5613df2015-05-05 23:56:07 +02001640 return ohci_submit_rh_msg(ohci, dev, pipe, buffer,
1641 transfer_len, setup);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001642 }
1643
Hans de Goedec5613df2015-05-05 23:56:07 +02001644 return submit_common_msg(ohci, dev, pipe, buffer, transfer_len,
1645 setup, 0);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001646}
1647
1648/*-------------------------------------------------------------------------*
1649 * HC functions
1650 *-------------------------------------------------------------------------*/
1651
1652/* reset the HC and BUS */
1653
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001654static int hc_reset(ohci_t *ohci)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001655{
Yuri Tikhonove90fb6a2008-09-04 11:19:05 +02001656#ifdef CONFIG_PCI_EHCI_DEVNO
1657 pci_dev_t pdev;
1658#endif
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001659 int timeout = 30;
1660 int smm_timeout = 50; /* 0,5 sec */
1661
1662 dbg("%s\n", __FUNCTION__);
1663
Yuri Tikhonove90fb6a2008-09-04 11:19:05 +02001664#ifdef CONFIG_PCI_EHCI_DEVNO
1665 /*
1666 * Some multi-function controllers (e.g. ISP1562) allow root hub
1667 * resetting via EHCI registers only.
1668 */
1669 pdev = pci_find_devices(ehci_pci_ids, CONFIG_PCI_EHCI_DEVNO);
1670 if (pdev != -1) {
1671 u32 base;
1672 int timeout = 1000;
1673
1674 pci_read_config_dword(pdev, PCI_BASE_ADDRESS_0, &base);
Becky Brucea5496a12010-06-30 13:05:44 -05001675 base += EHCI_USBCMD_OFF;
1676 ohci_writel(ohci_readl(base) | EHCI_USBCMD_HCRESET, base);
Yuri Tikhonove90fb6a2008-09-04 11:19:05 +02001677
Becky Brucea5496a12010-06-30 13:05:44 -05001678 while (ohci_readl(base) & EHCI_USBCMD_HCRESET) {
Yuri Tikhonove90fb6a2008-09-04 11:19:05 +02001679 if (timeout-- <= 0) {
1680 printf("USB RootHub reset timed out!");
1681 break;
1682 }
1683 udelay(1);
1684 }
1685 } else
1686 printf("No EHCI func at %d index!\n", CONFIG_PCI_EHCI_DEVNO);
1687#endif
Becky Brucea5496a12010-06-30 13:05:44 -05001688 if (ohci_readl(&ohci->regs->control) & OHCI_CTRL_IR) {
1689 /* SMM owns the HC, request ownership */
1690 ohci_writel(OHCI_OCR, &ohci->regs->cmdstatus);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001691 info("USB HC TakeOver from SMM");
Becky Brucea5496a12010-06-30 13:05:44 -05001692 while (ohci_readl(&ohci->regs->control) & OHCI_CTRL_IR) {
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001693 mdelay(10);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001694 if (--smm_timeout == 0) {
1695 err("USB HC TakeOver failed!");
1696 return -1;
1697 }
1698 }
1699 }
1700
1701 /* Disable HC interrupts */
Becky Brucea5496a12010-06-30 13:05:44 -05001702 ohci_writel(OHCI_INTR_MIE, &ohci->regs->intrdisable);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001703
1704 dbg("USB HC reset_hc usb-%s: ctrl = 0x%X ;\n",
1705 ohci->slot_name,
Becky Brucea5496a12010-06-30 13:05:44 -05001706 ohci_readl(&ohci->regs->control));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001707
1708 /* Reset USB (needed by some controllers) */
Markus Klotzbuecher53e336e2006-11-27 11:43:09 +01001709 ohci->hc_control = 0;
Becky Brucea5496a12010-06-30 13:05:44 -05001710 ohci_writel(ohci->hc_control, &ohci->regs->control);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001711
1712 /* HC Reset requires max 10 us delay */
Becky Brucea5496a12010-06-30 13:05:44 -05001713 ohci_writel(OHCI_HCR, &ohci->regs->cmdstatus);
1714 while ((ohci_readl(&ohci->regs->cmdstatus) & OHCI_HCR) != 0) {
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001715 if (--timeout == 0) {
1716 err("USB HC reset timed out!");
1717 return -1;
1718 }
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001719 udelay(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001720 }
1721 return 0;
1722}
1723
1724/*-------------------------------------------------------------------------*/
1725
1726/* Start an OHCI controller, set the BUS operational
1727 * enable interrupts
1728 * connect the virtual root hub */
1729
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001730static int hc_start(ohci_t *ohci)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001731{
1732 __u32 mask;
1733 unsigned int fminterval;
1734
1735 ohci->disabled = 1;
1736
1737 /* Tell the controller where the control and bulk lists are
1738 * The lists are empty now. */
1739
Becky Brucea5496a12010-06-30 13:05:44 -05001740 ohci_writel(0, &ohci->regs->ed_controlhead);
1741 ohci_writel(0, &ohci->regs->ed_bulkhead);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001742
Becky Brucea5496a12010-06-30 13:05:44 -05001743 ohci_writel((__u32)ohci->hcca,
1744 &ohci->regs->hcca); /* reset clears this */
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001745
1746 fminterval = 0x2edf;
Becky Brucea5496a12010-06-30 13:05:44 -05001747 ohci_writel((fminterval * 9) / 10, &ohci->regs->periodicstart);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001748 fminterval |= ((((fminterval - 210) * 6) / 7) << 16);
Becky Brucea5496a12010-06-30 13:05:44 -05001749 ohci_writel(fminterval, &ohci->regs->fminterval);
1750 ohci_writel(0x628, &ohci->regs->lsthresh);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001751
1752 /* start controller operations */
1753 ohci->hc_control = OHCI_CONTROL_INIT | OHCI_USB_OPER;
1754 ohci->disabled = 0;
Becky Brucea5496a12010-06-30 13:05:44 -05001755 ohci_writel(ohci->hc_control, &ohci->regs->control);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001756
1757 /* disable all interrupts */
1758 mask = (OHCI_INTR_SO | OHCI_INTR_WDH | OHCI_INTR_SF | OHCI_INTR_RD |
1759 OHCI_INTR_UE | OHCI_INTR_FNO | OHCI_INTR_RHSC |
1760 OHCI_INTR_OC | OHCI_INTR_MIE);
Becky Brucea5496a12010-06-30 13:05:44 -05001761 ohci_writel(mask, &ohci->regs->intrdisable);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001762 /* clear all interrupts */
1763 mask &= ~OHCI_INTR_MIE;
Becky Brucea5496a12010-06-30 13:05:44 -05001764 ohci_writel(mask, &ohci->regs->intrstatus);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001765 /* Choose the interrupts we care about now - but w/o MIE */
1766 mask = OHCI_INTR_RHSC | OHCI_INTR_UE | OHCI_INTR_WDH | OHCI_INTR_SO;
Becky Brucea5496a12010-06-30 13:05:44 -05001767 ohci_writel(mask, &ohci->regs->intrenable);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001768
1769#ifdef OHCI_USE_NPS
1770 /* required for AMD-756 and some Mac platforms */
Becky Brucea5496a12010-06-30 13:05:44 -05001771 ohci_writel((roothub_a(ohci) | RH_A_NPS) & ~RH_A_PSM,
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001772 &ohci->regs->roothub.a);
Becky Brucea5496a12010-06-30 13:05:44 -05001773 ohci_writel(RH_HS_LPSC, &ohci->regs->roothub.status);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001774#endif /* OHCI_USE_NPS */
1775
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001776 /* POTPGT delay is bits 24-31, in 2 ms units. */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001777 mdelay((roothub_a(ohci) >> 23) & 0x1fe);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001778
1779 /* connect the virtual root hub */
1780 ohci->rh.devnum = 0;
1781
1782 return 0;
1783}
1784
1785/*-------------------------------------------------------------------------*/
1786
1787/* an interrupt happens */
1788
Hans de Goedec5613df2015-05-05 23:56:07 +02001789static int hc_interrupt(ohci_t *ohci)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001790{
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001791 struct ohci_regs *regs = ohci->regs;
1792 int ints;
1793 int stat = -1;
1794
Hans de Goede8d005ef2015-05-05 23:56:13 +02001795 invalidate_dcache_hcca(ohci->hcca);
1796
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +02001797 if ((ohci->hcca->done_head != 0) &&
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001798 !(m32_swap(ohci->hcca->done_head) & 0x01)) {
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +02001799 ints = OHCI_INTR_WDH;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001800 } else {
Becky Brucea5496a12010-06-30 13:05:44 -05001801 ints = ohci_readl(&regs->intrstatus);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001802 if (ints == ~(u32)0) {
1803 ohci->disabled++;
1804 err("%s device removed!", ohci->slot_name);
1805 return -1;
1806 } else {
Becky Brucea5496a12010-06-30 13:05:44 -05001807 ints &= ohci_readl(&regs->intrenable);
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001808 if (ints == 0) {
1809 dbg("hc_interrupt: returning..\n");
1810 return 0xff;
1811 }
1812 }
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +02001813 }
Markus Klotzbuecherae79f602007-03-26 11:21:05 +02001814
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001815 /* dbg("Interrupt: %x frame: %x", ints,
1816 le16_to_cpu(ohci->hcca->frame_no)); */
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001817
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001818 if (ints & OHCI_INTR_RHSC)
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +02001819 stat = 0xff;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001820
1821 if (ints & OHCI_INTR_UE) {
1822 ohci->disabled++;
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001823 err("OHCI Unrecoverable Error, controller usb-%s disabled",
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001824 ohci->slot_name);
1825 /* e.g. due to PCI Master/Target Abort */
1826
1827#ifdef DEBUG
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001828 ohci_dump(ohci, 1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001829#else
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001830 mdelay(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001831#endif
1832 /* FIXME: be optimistic, hope that bug won't repeat often. */
1833 /* Make some non-interrupt context restart the controller. */
1834 /* Count and limit the retries though; either hardware or */
1835 /* software errors can go forever... */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001836 hc_reset(ohci);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001837 return -1;
1838 }
1839
1840 if (ints & OHCI_INTR_WDH) {
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001841 mdelay(1);
Becky Brucea5496a12010-06-30 13:05:44 -05001842 ohci_writel(OHCI_INTR_WDH, &regs->intrdisable);
1843 (void)ohci_readl(&regs->intrdisable); /* flush */
Hans de Goedec5613df2015-05-05 23:56:07 +02001844 stat = dl_done_list(ohci);
Becky Brucea5496a12010-06-30 13:05:44 -05001845 ohci_writel(OHCI_INTR_WDH, &regs->intrenable);
1846 (void)ohci_readl(&regs->intrdisable); /* flush */
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001847 }
1848
1849 if (ints & OHCI_INTR_SO) {
1850 dbg("USB Schedule overrun\n");
Becky Brucea5496a12010-06-30 13:05:44 -05001851 ohci_writel(OHCI_INTR_SO, &regs->intrenable);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001852 stat = -1;
1853 }
1854
1855 /* FIXME: this assumes SOF (1/ms) interrupts don't get lost... */
1856 if (ints & OHCI_INTR_SF) {
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001857 unsigned int frame = m16_swap(ohci->hcca->frame_no) & 1;
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001858 mdelay(1);
Becky Brucea5496a12010-06-30 13:05:44 -05001859 ohci_writel(OHCI_INTR_SF, &regs->intrdisable);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001860 if (ohci->ed_rm_list[frame] != NULL)
Becky Brucea5496a12010-06-30 13:05:44 -05001861 ohci_writel(OHCI_INTR_SF, &regs->intrenable);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001862 stat = 0xff;
1863 }
1864
Becky Brucea5496a12010-06-30 13:05:44 -05001865 ohci_writel(ints, &regs->intrstatus);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001866 return stat;
1867}
1868
1869/*-------------------------------------------------------------------------*/
1870
1871/*-------------------------------------------------------------------------*/
1872
1873/* De-allocate all resources.. */
1874
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001875static void hc_release_ohci(ohci_t *ohci)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001876{
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001877 dbg("USB HC release ohci usb-%s", ohci->slot_name);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001878
1879 if (!ohci->disabled)
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001880 hc_reset(ohci);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001881}
1882
1883/*-------------------------------------------------------------------------*/
1884
1885/*
1886 * low level initalisation routine, called from usb.c
1887 */
1888static char ohci_inited = 0;
1889
Troy Kisky06d513e2013-10-10 15:27:56 -07001890int usb_lowlevel_init(int index, enum usb_init_type init, void **controller)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001891{
Zhang Wei4dae14c2007-06-06 10:08:14 +02001892#ifdef CONFIG_PCI_OHCI
1893 pci_dev_t pdev;
1894#endif
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001895
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001896#ifdef CONFIG_SYS_USB_OHCI_CPU_INIT
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001897 /* cpu dependant init */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001898 if (usb_cpu_init())
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001899 return -1;
1900#endif
1901
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001902#ifdef CONFIG_SYS_USB_OHCI_BOARD_INIT
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001903 /* board dependant init */
Mateusz Zalega16297cf2013-10-04 19:22:26 +02001904 if (board_usb_init(index, USB_INIT_HOST))
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001905 return -1;
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001906#endif
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001907 memset(&gohci, 0, sizeof(ohci_t));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001908
1909 /* align the storage */
1910 if ((__u32)&ghcca[0] & 0xff) {
1911 err("HCCA not aligned!!");
1912 return -1;
1913 }
Hans de Goede26548bb2015-05-05 23:56:10 +02001914 gohci.hcca = &ghcca[0];
1915 info("aligned ghcca %p", gohci.hcca);
1916 memset(gohci.hcca, 0, sizeof(struct ohci_hcca));
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001917
1918 gohci.disabled = 1;
1919 gohci.sleeping = 0;
1920 gohci.irq = -1;
Zhang Wei4dae14c2007-06-06 10:08:14 +02001921#ifdef CONFIG_PCI_OHCI
Sergei Poselenov477434c2008-05-22 01:15:53 +02001922 pdev = pci_find_devices(ohci_pci_ids, CONFIG_PCI_OHCI_DEVNO);
Zhang Wei4dae14c2007-06-06 10:08:14 +02001923
1924 if (pdev != -1) {
1925 u16 vid, did;
1926 u32 base;
1927 pci_read_config_word(pdev, PCI_VENDOR_ID, &vid);
1928 pci_read_config_word(pdev, PCI_DEVICE_ID, &did);
1929 printf("OHCI pci controller (%04x, %04x) found @(%d:%d:%d)\n",
1930 vid, did, (pdev >> 16) & 0xff,
1931 (pdev >> 11) & 0x1f, (pdev >> 8) & 0x7);
1932 pci_read_config_dword(pdev, PCI_BASE_ADDRESS_0, &base);
1933 printf("OHCI regs address 0x%08x\n", base);
1934 gohci.regs = (struct ohci_regs *)base;
1935 } else
1936 return -1;
1937#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001938 gohci.regs = (struct ohci_regs *)CONFIG_SYS_USB_OHCI_REGS_BASE;
Zhang Wei4dae14c2007-06-06 10:08:14 +02001939#endif
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001940
1941 gohci.flags = 0;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001942 gohci.slot_name = CONFIG_SYS_USB_OHCI_SLOT_NAME;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001943
1944 if (hc_reset (&gohci) < 0) {
1945 hc_release_ohci (&gohci);
1946 err ("can't reset usb-%s", gohci.slot_name);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001947#ifdef CONFIG_SYS_USB_OHCI_BOARD_INIT
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001948 /* board dependant cleanup */
Mateusz Zalega16297cf2013-10-04 19:22:26 +02001949 board_usb_cleanup(index, USB_INIT_HOST);
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001950#endif
1951
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001952#ifdef CONFIG_SYS_USB_OHCI_CPU_INIT
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001953 /* cpu dependant cleanup */
Markus Klotzbuecherddf83a22006-05-30 16:56:14 +02001954 usb_cpu_init_fail();
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001955#endif
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001956 return -1;
1957 }
1958
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001959 if (hc_start(&gohci) < 0) {
1960 err("can't start usb-%s", gohci.slot_name);
1961 hc_release_ohci(&gohci);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001962 /* Initialization failed */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001963#ifdef CONFIG_SYS_USB_OHCI_BOARD_INIT
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001964 /* board dependant cleanup */
1965 usb_board_stop();
1966#endif
1967
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001968#ifdef CONFIG_SYS_USB_OHCI_CPU_INIT
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001969 /* cpu dependant cleanup */
1970 usb_cpu_stop();
1971#endif
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001972 return -1;
1973 }
1974
1975#ifdef DEBUG
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001976 ohci_dump(&gohci, 1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001977#else
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001978 mdelay(1);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001979#endif
1980 ohci_inited = 1;
1981 return 0;
1982}
1983
Lucas Stachc7e3b2b2012-09-26 00:14:34 +02001984int usb_lowlevel_stop(int index)
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001985{
1986 /* this gets called really early - before the controller has */
1987 /* even been initialized! */
1988 if (!ohci_inited)
1989 return 0;
1990 /* TODO release any interrupts, etc. */
1991 /* call hc_release_ohci() here ? */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001992 hc_reset(&gohci);
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001993
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001994#ifdef CONFIG_SYS_USB_OHCI_BOARD_INIT
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001995 /* board dependant cleanup */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02001996 if (usb_board_stop())
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02001997 return -1;
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02001998#endif
1999
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02002000#ifdef CONFIG_SYS_USB_OHCI_CPU_INIT
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02002001 /* cpu dependant cleanup */
Remy Bohmer6f5794a2008-09-16 14:55:43 +02002002 if (usb_cpu_stop())
Markus Klotzbuecher24e37642006-05-23 10:33:11 +02002003 return -1;
2004#endif
Remy Bohmereba1f2f2008-08-20 11:22:02 +02002005 /* This driver is no longer initialised. It needs a new low-level
2006 * init (board/cpu) before it can be used again. */
2007 ohci_inited = 0;
Markus Klotzbuecher3e326ec2006-05-22 16:33:54 +02002008 return 0;
2009}
Hans de Goedec5613df2015-05-05 23:56:07 +02002010
2011int submit_control_msg(struct usb_device *dev, unsigned long pipe,
2012 void *buffer, int transfer_len, struct devrequest *setup)
2013{
2014 return _ohci_submit_control_msg(&gohci, dev, pipe, buffer,
2015 transfer_len, setup);
2016}