blob: 84b461a466b259815b28bc3b1255ec282aced2d4 [file] [log] [blame]
Patrick Georgid21f68b2008-09-02 16:06:22 +00001/*
2 * This file is part of the libpayload project.
3 *
Stefan Reinauerb56f2d02010-03-25 22:17:36 +00004 * Copyright (C) 2008-2010 coresystems GmbH
Patrick Georgid21f68b2008-09-02 16:06:22 +00005 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
Stefan Reinauerb56f2d02010-03-25 22:17:36 +000030//#define USB_DEBUG
31
Patrick Georgid78691d2010-06-07 13:58:17 +000032#include <arch/virtual.h>
Jordan Crouse29061a52008-09-11 17:29:00 +000033#include <usb/usb.h>
Patrick Georgid21f68b2008-09-02 16:06:22 +000034#include "uhci.h"
Patrick Georgid78691d2010-06-07 13:58:17 +000035#include "uhci_private.h"
Patrick Georgid21f68b2008-09-02 16:06:22 +000036
37static void uhci_start (hci_t *controller);
38static void uhci_stop (hci_t *controller);
39static void uhci_reset (hci_t *controller);
40static void uhci_shutdown (hci_t *controller);
Patrick Georgid21f68b2008-09-02 16:06:22 +000041static int uhci_bulk (endpoint_t *ep, int size, u8 *data, int finalize);
Patrick Georgid78691d2010-06-07 13:58:17 +000042static int uhci_control (usbdev_t *dev, direction_t dir, int drlen, void *devreq,
Patrick Georgid21f68b2008-09-02 16:06:22 +000043 int dalen, u8 *data);
Patrick Georgi4727c072008-10-16 19:20:51 +000044static void* uhci_create_intr_queue (endpoint_t *ep, int reqsize, int reqcount, int reqtiming);
45static void uhci_destroy_intr_queue (endpoint_t *ep, void *queue);
46static u8* uhci_poll_intr_queue (void *queue);
Patrick Georgid21f68b2008-09-02 16:06:22 +000047
48#if 0
49/* dump uhci */
50static void
51uhci_dump (hci_t *controller)
52{
Mathias Krausec4716b42011-06-08 15:36:55 +020053 debug ("dump:\nUSBCMD: %x\n", uhci_reg_read16 (controller, USBCMD));
54 debug ("USBSTS: %x\n", uhci_reg_read16 (controller, USBSTS));
55 debug ("USBINTR: %x\n", uhci_reg_read16 (controller, USBINTR));
56 debug ("FRNUM: %x\n", uhci_reg_read16 (controller, FRNUM));
57 debug ("FLBASEADD: %x\n", uhci_reg_read32 (controller, FLBASEADD));
58 debug ("SOFMOD: %x\n", uhci_reg_read8 (controller, SOFMOD));
59 debug ("PORTSC1: %x\n", uhci_reg_read16 (controller, PORTSC1));
60 debug ("PORTSC2: %x\n", uhci_reg_read16 (controller, PORTSC2));
Patrick Georgid21f68b2008-09-02 16:06:22 +000061}
62#endif
63
64static void
65td_dump (td_t *td)
66{
Stefan Reinauerd233f362009-04-30 16:46:12 +000067 char td_value[3];
Patrick Georgi7f965832011-04-21 18:57:16 +020068 const char *td_type;
Patrick Georgib0b4a522011-11-24 11:55:46 +010069 switch (td->token & TD_PID_MASK) {
Patrick Georgid78691d2010-06-07 13:58:17 +000070 case UHCI_SETUP:
Stefan Reinauerd233f362009-04-30 16:46:12 +000071 td_type="SETUP";
72 break;
Patrick Georgid78691d2010-06-07 13:58:17 +000073 case UHCI_IN:
Stefan Reinauerd233f362009-04-30 16:46:12 +000074 td_type="IN";
75 break;
Patrick Georgid78691d2010-06-07 13:58:17 +000076 case UHCI_OUT:
Stefan Reinauerd233f362009-04-30 16:46:12 +000077 td_type="OUT";
78 break;
79 default:
Patrick Georgib0b4a522011-11-24 11:55:46 +010080 sprintf(td_value, "%x", td->token & TD_PID_MASK);
Stefan Reinauerd233f362009-04-30 16:46:12 +000081 td_type=td_value;
82 }
Mathias Krausec4716b42011-06-08 15:36:55 +020083 debug ("%s packet (at %lx) to %x.%x failed\n", td_type,
Patrick Georgib0b4a522011-11-24 11:55:46 +010084 virt_to_phys (td), (td->token & TD_DEVADDR_MASK) >> TD_DEVADDR_SHIFT,
85 (td->token & TD_EP_MASK) >> TD_EP_SHIFT);
86 debug ("td (counter at %x) returns: ", td->ctrlsts >> TD_COUNTER_SHIFT);
87 debug (" bitstuff err: %x, ", !!(td->ctrlsts & TD_STATUS_BITSTUFF_ERR));
88 debug (" CRC err: %x, ", !!(td->ctrlsts & TD_STATUS_CRC_ERR));
89 debug (" NAK rcvd: %x, ", !!(td->ctrlsts & TD_STATUS_NAK_RCVD));
90 debug (" Babble: %x, ", !!(td->ctrlsts & TD_STATUS_BABBLE));
91 debug (" Data Buffer err: %x, ", !!(td->ctrlsts & TD_STATUS_DATABUF_ERR));
92 debug (" Stalled: %x, ", !!(td->ctrlsts & TD_STATUS_STALLED));
93 debug (" Active: %x\n", !!(td->ctrlsts & TD_STATUS_ACTIVE));
94 if (td->ctrlsts & TD_STATUS_BABBLE)
Mathias Krausec4716b42011-06-08 15:36:55 +020095 debug (" Babble because of %s\n",
Patrick Georgib0b4a522011-11-24 11:55:46 +010096 (td->ctrlsts & TD_STATUS_BITSTUFF_ERR) ? "host" : "device");
97 if (td->ctrlsts & TD_STATUS_ACTIVE)
Mathias Krausec4716b42011-06-08 15:36:55 +020098 debug (" still active - timeout?\n");
Patrick Georgid21f68b2008-09-02 16:06:22 +000099}
100
101static void
102uhci_reset (hci_t *controller)
103{
104 /* reset */
Nico Huberbb1c42b2012-05-21 14:23:03 +0200105 uhci_reg_write16 (controller, USBCMD, 4); /* Global Reset */
106 mdelay (50); /* uhci spec 2.1.1: at least 10ms */
Patrick Georgid21f68b2008-09-02 16:06:22 +0000107 uhci_reg_write16 (controller, USBCMD, 0);
108 mdelay (10);
Nico Huberbb1c42b2012-05-21 14:23:03 +0200109 uhci_reg_write16 (controller, USBCMD, 2); /* Host Controller Reset */
110 /* wait for controller to finish reset */
111 /* TOTEST: how long to wait? 100ms for now */
112 int timeout = 200; /* time out after 200 * 500us == 100ms */
113 while (((uhci_reg_read16 (controller, USBCMD) & 2) != 0) && timeout--)
114 udelay (500);
115 if (timeout < 0)
116 debug ("Warning: uhci: host controller reset timed out.\n");
Patrick Georgid21f68b2008-09-02 16:06:22 +0000117
118 uhci_reg_write32 (controller, FLBASEADD,
119 (u32) virt_to_phys (UHCI_INST (controller)->
120 framelistptr));
Mathias Krausec4716b42011-06-08 15:36:55 +0200121 //debug ("framelist at %p\n",UHCI_INST(controller)->framelistptr);
Patrick Georgid21f68b2008-09-02 16:06:22 +0000122
123 /* disable irqs */
124 uhci_reg_write16 (controller, USBINTR, 0);
125
126 /* reset framelist index */
127 uhci_reg_write16 (controller, FRNUM, 0);
128
Patrick Georgif42fdab2011-11-18 14:44:16 +0100129 uhci_reg_write16(controller, USBCMD,
130 uhci_reg_read16(controller, USBCMD) | 0xc0); // max packets, configure flag
Patrick Georgid21f68b2008-09-02 16:06:22 +0000131
132 uhci_start (controller);
133}
134
135hci_t *
136uhci_init (pcidev_t addr)
137{
138 int i;
Stefan Reinauerb56f2d02010-03-25 22:17:36 +0000139 u16 reg16;
140
Patrick Georgid21f68b2008-09-02 16:06:22 +0000141 hci_t *controller = new_controller ();
142
Stefan Reinauer5fe6e232009-07-31 11:39:55 +0000143 if (!controller)
Patrick Georgi2e768e72011-11-04 11:50:03 +0100144 fatal("Could not create USB controller instance.\n");
Stefan Reinauer5fe6e232009-07-31 11:39:55 +0000145
Patrick Georgid21f68b2008-09-02 16:06:22 +0000146 controller->instance = malloc (sizeof (uhci_t));
Stefan Reinauer5fe6e232009-07-31 11:39:55 +0000147 if(!controller->instance)
Patrick Georgi2e768e72011-11-04 11:50:03 +0100148 fatal("Not enough memory creating USB controller instance.\n");
Stefan Reinauer5fe6e232009-07-31 11:39:55 +0000149
Anton Kochkov1c36ead2012-06-28 08:30:15 +0400150 controller->type = UHCI;
151
Patrick Georgid21f68b2008-09-02 16:06:22 +0000152 controller->start = uhci_start;
153 controller->stop = uhci_stop;
154 controller->reset = uhci_reset;
155 controller->shutdown = uhci_shutdown;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000156 controller->bulk = uhci_bulk;
157 controller->control = uhci_control;
Patrick Georgi4727c072008-10-16 19:20:51 +0000158 controller->create_intr_queue = uhci_create_intr_queue;
159 controller->destroy_intr_queue = uhci_destroy_intr_queue;
160 controller->poll_intr_queue = uhci_poll_intr_queue;
Stefan Reinauer219cece2009-07-18 15:17:40 +0000161 for (i = 0; i < 128; i++) {
Patrick Georgi4727c072008-10-16 19:20:51 +0000162 controller->devices[i] = 0;
163 }
164 init_device_entry (controller, 0);
165 UHCI_INST (controller)->roothub = controller->devices[0];
Patrick Georgid21f68b2008-09-02 16:06:22 +0000166
167 controller->bus_address = addr;
168 controller->reg_base = pci_read_config32 (controller->bus_address, 0x20) & ~1; /* ~1 clears the register type indicator that is set to 1 for IO space */
169
170 /* kill legacy support handler */
171 uhci_stop (controller);
172 mdelay (1);
173 uhci_reg_write16 (controller, USBSTS, 0x3f);
Stefan Reinauerb56f2d02010-03-25 22:17:36 +0000174 reg16 = pci_read_config16(controller->bus_address, 0xc0);
175 reg16 &= 0xdf80;
176 pci_write_config16 (controller->bus_address, 0xc0, reg16);
Patrick Georgid21f68b2008-09-02 16:06:22 +0000177
178 UHCI_INST (controller)->framelistptr = memalign (0x1000, 1024 * sizeof (flistp_t *)); /* 4kb aligned to 4kb */
Stefan Reinauer5fe6e232009-07-31 11:39:55 +0000179 if (! UHCI_INST (controller)->framelistptr)
Patrick Georgi2e768e72011-11-04 11:50:03 +0100180 fatal("Not enough memory for USB frame list pointer.\n");
Stefan Reinauer5fe6e232009-07-31 11:39:55 +0000181
Patrick Georgid21f68b2008-09-02 16:06:22 +0000182 memset (UHCI_INST (controller)->framelistptr, 0,
183 1024 * sizeof (flistp_t));
184
Patrick Georgi4727c072008-10-16 19:20:51 +0000185 /* According to the *BSD UHCI code, this one is needed on some
186 PIIX chips, because otherwise they misbehave. It must be
187 added to the last chain.
188
189 FIXME: this leaks, if the driver should ever be reinited
190 for some reason. Not a problem now.
191 */
192 td_t *antiberserk = memalign(16, sizeof(td_t));
Stefan Reinauer5fe6e232009-07-31 11:39:55 +0000193 if (!antiberserk)
Patrick Georgi2e768e72011-11-04 11:50:03 +0100194 fatal("Not enough memory for chipset workaround.\n");
Patrick Georgi4727c072008-10-16 19:20:51 +0000195 memset(antiberserk, 0, sizeof(td_t));
196
197 UHCI_INST (controller)->qh_prei = memalign (16, sizeof (qh_t));
Patrick Georgid21f68b2008-09-02 16:06:22 +0000198 UHCI_INST (controller)->qh_intr = memalign (16, sizeof (qh_t));
199 UHCI_INST (controller)->qh_data = memalign (16, sizeof (qh_t));
200 UHCI_INST (controller)->qh_last = memalign (16, sizeof (qh_t));
201
Stefan Reinauer5fe6e232009-07-31 11:39:55 +0000202 if (! UHCI_INST (controller)->qh_prei ||
203 ! UHCI_INST (controller)->qh_intr ||
204 ! UHCI_INST (controller)->qh_data ||
205 ! UHCI_INST (controller)->qh_last)
Patrick Georgi2e768e72011-11-04 11:50:03 +0100206 fatal("Not enough memory for USB controller queues.\n");
Stefan Reinauer5fe6e232009-07-31 11:39:55 +0000207
Patrick Georgib0b4a522011-11-24 11:55:46 +0100208 UHCI_INST (controller)->qh_prei->headlinkptr =
209 virt_to_phys (UHCI_INST (controller)->qh_intr) | FLISTP_QH;
210 UHCI_INST (controller)->qh_prei->elementlinkptr = 0 | FLISTP_TERMINATE;
Patrick Georgi4727c072008-10-16 19:20:51 +0000211
Patrick Georgib0b4a522011-11-24 11:55:46 +0100212 UHCI_INST (controller)->qh_intr->headlinkptr =
213 virt_to_phys (UHCI_INST (controller)->qh_data) | FLISTP_QH;
214 UHCI_INST (controller)->qh_intr->elementlinkptr = 0 | FLISTP_TERMINATE;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000215
Patrick Georgib0b4a522011-11-24 11:55:46 +0100216 UHCI_INST (controller)->qh_data->headlinkptr =
217 virt_to_phys (UHCI_INST (controller)->qh_last) | FLISTP_QH;
218 UHCI_INST (controller)->qh_data->elementlinkptr = 0 | FLISTP_TERMINATE;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000219
Patrick Georgib0b4a522011-11-24 11:55:46 +0100220 UHCI_INST (controller)->qh_last->headlinkptr = virt_to_phys (UHCI_INST (controller)->qh_data) | FLISTP_TERMINATE;
221 UHCI_INST (controller)->qh_last->elementlinkptr = virt_to_phys (antiberserk) | FLISTP_TERMINATE;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000222
223 for (i = 0; i < 1024; i++) {
Patrick Georgib0b4a522011-11-24 11:55:46 +0100224 UHCI_INST (controller)->framelistptr[i] =
225 virt_to_phys (UHCI_INST (controller)->qh_prei) | FLISTP_QH;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000226 }
Patrick Georgi4727c072008-10-16 19:20:51 +0000227 controller->devices[0]->controller = controller;
228 controller->devices[0]->init = uhci_rh_init;
229 controller->devices[0]->init (controller->devices[0]);
Patrick Georgid21f68b2008-09-02 16:06:22 +0000230 uhci_reset (controller);
231 return controller;
232}
233
234static void
235uhci_shutdown (hci_t *controller)
236{
237 if (controller == 0)
238 return;
239 detach_controller (controller);
240 UHCI_INST (controller)->roothub->destroy (UHCI_INST (controller)->
241 roothub);
Patrick Georgif42fdab2011-11-18 14:44:16 +0100242 uhci_reg_write16(controller, USBCMD,
243 uhci_reg_read16(controller, USBCMD) & 0); // stop work
Patrick Georgid21f68b2008-09-02 16:06:22 +0000244 free (UHCI_INST (controller)->framelistptr);
Patrick Georgi4727c072008-10-16 19:20:51 +0000245 free (UHCI_INST (controller)->qh_prei);
Patrick Georgid21f68b2008-09-02 16:06:22 +0000246 free (UHCI_INST (controller)->qh_intr);
247 free (UHCI_INST (controller)->qh_data);
248 free (UHCI_INST (controller)->qh_last);
249 free (UHCI_INST (controller));
250 free (controller);
251}
252
253static void
254uhci_start (hci_t *controller)
255{
Patrick Georgif42fdab2011-11-18 14:44:16 +0100256 uhci_reg_write16(controller, USBCMD,
257 uhci_reg_read16(controller, USBCMD) | 1); // start work on schedule
Patrick Georgid21f68b2008-09-02 16:06:22 +0000258}
259
260static void
261uhci_stop (hci_t *controller)
262{
Patrick Georgif42fdab2011-11-18 14:44:16 +0100263 uhci_reg_write16(controller, USBCMD,
264 uhci_reg_read16(controller, USBCMD) & ~1); // stop work on schedule
Patrick Georgid21f68b2008-09-02 16:06:22 +0000265}
266
267#define GET_TD(x) ((void*)(((unsigned int)(x))&~0xf))
268
269static td_t *
270wait_for_completed_qh (hci_t *controller, qh_t *qh)
271{
Mathias Krause7b7b5662012-05-29 16:19:19 +0200272 int timeout = 1000; /* max 30 ms. */
Patrick Georgib0b4a522011-11-24 11:55:46 +0100273 void *current = GET_TD (qh->elementlinkptr);
274 while (((qh->elementlinkptr & FLISTP_TERMINATE) == 0) && (timeout-- > 0)) {
275 if (current != GET_TD (qh->elementlinkptr)) {
276 current = GET_TD (qh->elementlinkptr);
Mathias Krause7b7b5662012-05-29 16:19:19 +0200277 timeout = 1000;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000278 }
Patrick Georgif42fdab2011-11-18 14:44:16 +0100279 uhci_reg_write16(controller, USBSTS,
280 uhci_reg_read16(controller, USBSTS) | 0); // clear resettable registers
Patrick Georgid21f68b2008-09-02 16:06:22 +0000281 udelay (30);
282 }
Patrick Georgib0b4a522011-11-24 11:55:46 +0100283 return (GET_TD (qh->elementlinkptr) ==
284 0) ? 0 : GET_TD (phys_to_virt (qh->elementlinkptr));
Patrick Georgid21f68b2008-09-02 16:06:22 +0000285}
286
Patrick Georgid21f68b2008-09-02 16:06:22 +0000287static int
288maxlen (int size)
289{
290 return (size - 1) & 0x7ff;
291}
292
293static int
294min (int a, int b)
295{
296 if (a < b)
297 return a;
298 else
299 return b;
300}
301
302static int
Patrick Georgid78691d2010-06-07 13:58:17 +0000303uhci_control (usbdev_t *dev, direction_t dir, int drlen, void *devreq, int dalen,
Patrick Georgid21f68b2008-09-02 16:06:22 +0000304 unsigned char *data)
305{
306 int endp = 0; /* this is control: always 0 */
307 int mlen = dev->endpoints[0].maxpacketsize;
308 int count = (2 + (dalen + mlen - 1) / mlen);
309 unsigned short req = ((unsigned short *) devreq)[0];
310 int i;
311 td_t *tds = memalign (16, sizeof (td_t) * count);
312 memset (tds, 0, sizeof (td_t) * count);
313 count--; /* to compensate for 0-indexed array */
314 for (i = 0; i < count; i++) {
Patrick Georgib0b4a522011-11-24 11:55:46 +0100315 tds[i].ptr = virt_to_phys (&tds[i + 1]) | TD_DEPTH_FIRST;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000316 }
Patrick Georgib0b4a522011-11-24 11:55:46 +0100317 tds[count].ptr = 0 | TD_DEPTH_FIRST | TD_TERMINATE;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000318
Patrick Georgib0b4a522011-11-24 11:55:46 +0100319 tds[0].token = UHCI_SETUP |
320 dev->address << TD_DEVADDR_SHIFT |
321 endp << TD_EP_SHIFT |
322 TD_TOGGLE_DATA0 |
323 maxlen(drlen) << TD_MAXLEN_SHIFT;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000324 tds[0].bufptr = virt_to_phys (devreq);
Patrick Georgib0b4a522011-11-24 11:55:46 +0100325 tds[0].ctrlsts = (3 << TD_COUNTER_SHIFT) |
326 (dev->speed?TD_LOWSPEED:0) |
327 TD_STATUS_ACTIVE;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000328
329 int toggle = 1;
330 for (i = 1; i < count; i++) {
Patrick Georgid78691d2010-06-07 13:58:17 +0000331 switch (dir) {
Patrick Georgib0b4a522011-11-24 11:55:46 +0100332 case SETUP: tds[i].token = UHCI_SETUP; break;
333 case IN: tds[i].token = UHCI_IN; break;
334 case OUT: tds[i].token = UHCI_OUT; break;
Patrick Georgid78691d2010-06-07 13:58:17 +0000335 }
Patrick Georgib0b4a522011-11-24 11:55:46 +0100336 tds[i].token |= dev->address << TD_DEVADDR_SHIFT |
337 endp << TD_EP_SHIFT |
338 maxlen (min (mlen, dalen)) << TD_MAXLEN_SHIFT |
339 toggle << TD_TOGGLE_SHIFT;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000340 tds[i].bufptr = virt_to_phys (data);
Patrick Georgib0b4a522011-11-24 11:55:46 +0100341 tds[i].ctrlsts = (3 << TD_COUNTER_SHIFT) |
342 (dev->speed?TD_LOWSPEED:0) |
343 TD_STATUS_ACTIVE;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000344 toggle ^= 1;
345 dalen -= mlen;
346 data += mlen;
347 }
348
Nico Hubercefec0e2012-05-16 15:04:27 +0200349 tds[count].token = ((dir == OUT) ? UHCI_IN : UHCI_OUT) |
Patrick Georgib0b4a522011-11-24 11:55:46 +0100350 dev->address << TD_DEVADDR_SHIFT |
351 endp << TD_EP_SHIFT |
352 maxlen(0) << TD_MAXLEN_SHIFT |
353 TD_TOGGLE_DATA1;
Stefan Reinauerb56f2d02010-03-25 22:17:36 +0000354 tds[count].bufptr = 0;
Nico Hubercefec0e2012-05-16 15:04:27 +0200355 tds[count].ctrlsts = (0 << TD_COUNTER_SHIFT) | /* as Linux 2.4.10 does */
Patrick Georgib0b4a522011-11-24 11:55:46 +0100356 (dev->speed?TD_LOWSPEED:0) |
357 TD_STATUS_ACTIVE;
358 UHCI_INST (dev->controller)->qh_data->elementlinkptr =
359 virt_to_phys (tds) & ~(FLISTP_QH | FLISTP_TERMINATE);
Patrick Georgid21f68b2008-09-02 16:06:22 +0000360 td_t *td = wait_for_completed_qh (dev->controller,
361 UHCI_INST (dev->controller)->
362 qh_data);
363 int result;
364 if (td == 0) {
365 result = 0;
366 } else {
Mathias Krausec4716b42011-06-08 15:36:55 +0200367 debug ("control packet, req %x\n", req);
Patrick Georgid21f68b2008-09-02 16:06:22 +0000368 td_dump (td);
369 result = 1;
370 }
371 free (tds);
372 return result;
373}
374
Patrick Georgid21f68b2008-09-02 16:06:22 +0000375static td_t *
376create_schedule (int numpackets)
377{
378 if (numpackets == 0)
379 return 0;
380 td_t *tds = memalign (16, sizeof (td_t) * numpackets);
381 memset (tds, 0, sizeof (td_t) * numpackets);
382 int i;
383 for (i = 0; i < numpackets; i++) {
Patrick Georgib0b4a522011-11-24 11:55:46 +0100384 tds[i].ptr = virt_to_phys (&tds[i + 1]) | TD_DEPTH_FIRST;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000385 }
Patrick Georgib0b4a522011-11-24 11:55:46 +0100386 tds[numpackets - 1].ptr = 0 | TD_TERMINATE;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000387 return tds;
388}
389
390static void
391fill_schedule (td_t *td, endpoint_t *ep, int length, unsigned char *data,
392 int *toggle)
393{
Patrick Georgicfaa0812010-06-11 14:25:40 +0000394 switch (ep->direction) {
Patrick Georgib0b4a522011-11-24 11:55:46 +0100395 case IN: td->token = UHCI_IN; break;
396 case OUT: td->token = UHCI_OUT; break;
397 case SETUP: td->token = UHCI_SETUP; break;
Patrick Georgicfaa0812010-06-11 14:25:40 +0000398 }
Patrick Georgib0b4a522011-11-24 11:55:46 +0100399 td->token |= ep->dev->address << TD_DEVADDR_SHIFT |
400 (ep->endpoint & 0xf) << TD_EP_SHIFT |
401 maxlen (length) << TD_MAXLEN_SHIFT |
402 (*toggle & 1) << TD_TOGGLE_SHIFT;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000403 td->bufptr = virt_to_phys (data);
Patrick Georgib0b4a522011-11-24 11:55:46 +0100404 td->ctrlsts = ((ep->direction == SETUP?3:0) << TD_COUNTER_SHIFT) |
Nico Hubercefec0e2012-05-16 15:04:27 +0200405 (ep->dev->speed?TD_LOWSPEED:0) |
Patrick Georgib0b4a522011-11-24 11:55:46 +0100406 TD_STATUS_ACTIVE;
Patrick Georgid21f68b2008-09-02 16:06:22 +0000407 *toggle ^= 1;
408}
409
410static int
411run_schedule (usbdev_t *dev, td_t *td)
412{
Patrick Georgib0b4a522011-11-24 11:55:46 +0100413 UHCI_INST (dev->controller)->qh_data->elementlinkptr =
414 virt_to_phys (td) | ~(FLISTP_QH | FLISTP_TERMINATE);
Patrick Georgid21f68b2008-09-02 16:06:22 +0000415 td = wait_for_completed_qh (dev->controller,
416 UHCI_INST (dev->controller)->qh_data);
417 if (td == 0) {
418 return 0;
419 } else {
420 td_dump (td);
421 return 1;
422 }
423}
424
425/* finalize == 1: if data is of packet aligned size, add a zero length packet */
426static int
427uhci_bulk (endpoint_t *ep, int size, u8 *data, int finalize)
428{
429 int maxpsize = ep->maxpacketsize;
430 if (maxpsize == 0)
Patrick Georgi2e768e72011-11-04 11:50:03 +0100431 fatal("MaxPacketSize == 0!!!");
Patrick Georgid21f68b2008-09-02 16:06:22 +0000432 int numpackets = (size + maxpsize - 1 + finalize) / maxpsize;
433 if (numpackets == 0)
434 return 0;
435 td_t *tds = create_schedule (numpackets);
436 int i = 0, toggle = ep->toggle;
437 while ((size > 0) || ((size == 0) && (finalize != 0))) {
438 fill_schedule (&tds[i], ep, min (size, maxpsize), data,
439 &toggle);
440 i++;
441 data += maxpsize;
442 size -= maxpsize;
443 }
444 if (run_schedule (ep->dev, tds) == 1) {
Stefan Reinauerb56f2d02010-03-25 22:17:36 +0000445 debug("Stalled. Trying to clean up.\n");
Patrick Georgid21f68b2008-09-02 16:06:22 +0000446 clear_stall (ep);
447 free (tds);
448 return 1;
449 }
450 ep->toggle = toggle;
451 free (tds);
452 return 0;
453}
454
Patrick Georgi4727c072008-10-16 19:20:51 +0000455typedef struct {
456 qh_t *qh;
457 td_t *tds;
458 td_t *last_td;
459 u8 *data;
460 int lastread;
461 int total;
462 int reqsize;
463} intr_q;
464
465/* create and hook-up an intr queue into device schedule */
466static void*
467uhci_create_intr_queue (endpoint_t *ep, int reqsize, int reqcount, int reqtiming)
468{
469 u8 *data = malloc(reqsize*reqcount);
470 td_t *tds = memalign(16, sizeof(td_t) * reqcount);
471 qh_t *qh = memalign(16, sizeof(qh_t));
472
Stefan Reinauer5fe6e232009-07-31 11:39:55 +0000473 if (!data || !tds || !qh)
Patrick Georgi2e768e72011-11-04 11:50:03 +0100474 fatal("Not enough memory to create USB intr queue prerequisites.\n");
Stefan Reinauer5fe6e232009-07-31 11:39:55 +0000475
Patrick Georgib0b4a522011-11-24 11:55:46 +0100476 qh->elementlinkptr = virt_to_phys(tds);
Patrick Georgi4727c072008-10-16 19:20:51 +0000477
478 intr_q *q = malloc(sizeof(intr_q));
Stefan Reinauer5fe6e232009-07-31 11:39:55 +0000479 if (!q)
Patrick Georgi2e768e72011-11-04 11:50:03 +0100480 fatal("Not enough memory to create USB intr queue.\n");
Patrick Georgi4727c072008-10-16 19:20:51 +0000481 q->qh = qh;
482 q->tds = tds;
483 q->data = data;
484 q->lastread = 0;
485 q->total = reqcount;
486 q->reqsize = reqsize;
487 q->last_td = &tds[reqcount - 1];
488
489 memset (tds, 0, sizeof (td_t) * reqcount);
490 int i;
491 for (i = 0; i < reqcount; i++) {
492 tds[i].ptr = virt_to_phys (&tds[i + 1]);
Patrick Georgi4727c072008-10-16 19:20:51 +0000493
Patrick Georgicfaa0812010-06-11 14:25:40 +0000494 switch (ep->direction) {
Patrick Georgib0b4a522011-11-24 11:55:46 +0100495 case IN: tds[i].token = UHCI_IN; break;
496 case OUT: tds[i].token = UHCI_OUT; break;
497 case SETUP: tds[i].token = UHCI_SETUP; break;
Patrick Georgicfaa0812010-06-11 14:25:40 +0000498 }
Patrick Georgib0b4a522011-11-24 11:55:46 +0100499 tds[i].token |= ep->dev->address << TD_DEVADDR_SHIFT |
500 (ep->endpoint & 0xf) << TD_EP_SHIFT |
501 maxlen (reqsize) << TD_MAXLEN_SHIFT |
502 (ep->toggle & 1) << TD_TOGGLE_SHIFT;
Patrick Georgi4727c072008-10-16 19:20:51 +0000503 tds[i].bufptr = virt_to_phys (data);
Patrick Georgib0b4a522011-11-24 11:55:46 +0100504 tds[i].ctrlsts = (0 << TD_COUNTER_SHIFT) |
Nico Hubercefec0e2012-05-16 15:04:27 +0200505 (ep->dev->speed?TD_LOWSPEED:0) |
Patrick Georgib0b4a522011-11-24 11:55:46 +0100506 TD_STATUS_ACTIVE;
Patrick Georgi4727c072008-10-16 19:20:51 +0000507 ep->toggle ^= 1;
508 data += reqsize;
509 }
Patrick Georgib0b4a522011-11-24 11:55:46 +0100510 tds[reqcount - 1].ptr = 0 | TD_TERMINATE;
Patrick Georgi4727c072008-10-16 19:20:51 +0000511 for (i = reqtiming; i < 1024; i += reqtiming) {
512 /* FIXME: wrap in another qh, one for each occurance of the qh in the framelist */
Patrick Georgib0b4a522011-11-24 11:55:46 +0100513 qh->headlinkptr = UHCI_INST (ep->dev->controller)->framelistptr[i] & ~FLISTP_TERMINATE;
514 UHCI_INST (ep->dev->controller)->framelistptr[i] = virt_to_phys(qh) | FLISTP_QH;
Patrick Georgi4727c072008-10-16 19:20:51 +0000515 }
516 return q;
517}
518
519/* remove queue from device schedule, dropping all data that came in */
520static void
521uhci_destroy_intr_queue (endpoint_t *ep, void *q_)
522{
523 intr_q *q = (intr_q*)q_;
524 u32 val = virt_to_phys (q->qh);
525 u32 end = virt_to_phys (UHCI_INST (ep->dev->controller)->qh_intr);
526 int i;
527 for (i=0; i<1024; i++) {
528 u32 oldptr = 0;
Patrick Georgib0b4a522011-11-24 11:55:46 +0100529 u32 ptr = UHCI_INST (ep->dev->controller)->framelistptr[i];
Patrick Georgi4727c072008-10-16 19:20:51 +0000530 while (ptr != end) {
Patrick Georgib0b4a522011-11-24 11:55:46 +0100531 if (((qh_t*)phys_to_virt(ptr))->elementlinkptr == val) {
532 ((qh_t*)phys_to_virt(oldptr))->headlinkptr = ((qh_t*)phys_to_virt(ptr))->headlinkptr;
Patrick Georgi4727c072008-10-16 19:20:51 +0000533 free(phys_to_virt(ptr));
534 break;
535 }
536 oldptr = ptr;
Patrick Georgib0b4a522011-11-24 11:55:46 +0100537 ptr = ((qh_t*)phys_to_virt(ptr))->headlinkptr;
Patrick Georgi4727c072008-10-16 19:20:51 +0000538 }
539 }
540 free(q->data);
541 free(q->tds);
542 free(q->qh);
543 free(q);
544}
545
546/* read one intr-packet from queue, if available. extend the queue for new input.
547 return NULL if nothing new available.
548 Recommended use: while (data=poll_intr_queue(q)) process(data);
549 */
550static u8*
551uhci_poll_intr_queue (void *q_)
552{
553 intr_q *q = (intr_q*)q_;
Patrick Georgib0b4a522011-11-24 11:55:46 +0100554 if ((q->tds[q->lastread].ctrlsts & TD_STATUS_ACTIVE) == 0) {
Patrick Georgi4727c072008-10-16 19:20:51 +0000555 /* FIXME: handle errors */
556 int current = q->lastread;
557 int previous;
558 if (q->lastread == 0) {
559 previous = q->total - 1;
560 } else {
561 previous = q->lastread - 1;
562 }
Patrick Georgib0b4a522011-11-24 11:55:46 +0100563 q->tds[previous].ctrlsts &= ~TD_STATUS_MASK;
564 q->tds[previous].ptr = 0 | TD_TERMINATE;
Patrick Georgi4727c072008-10-16 19:20:51 +0000565 if (q->last_td != &q->tds[previous]) {
Patrick Georgib0b4a522011-11-24 11:55:46 +0100566 q->last_td->ptr = virt_to_phys(&q->tds[previous]) & ~TD_TERMINATE;
Patrick Georgi4727c072008-10-16 19:20:51 +0000567 q->last_td = &q->tds[previous];
568 }
Patrick Georgib0b4a522011-11-24 11:55:46 +0100569 q->tds[previous].ctrlsts |= TD_STATUS_ACTIVE;
Patrick Georgi4727c072008-10-16 19:20:51 +0000570 q->lastread = (q->lastread + 1) % q->total;
571 return &q->data[current*q->reqsize];
572 }
573 return NULL;
574}
575
Patrick Georgid21f68b2008-09-02 16:06:22 +0000576void
577uhci_reg_write32 (hci_t *ctrl, usbreg reg, u32 value)
578{
579 outl (value, ctrl->reg_base + reg);
580}
581
582u32
583uhci_reg_read32 (hci_t *ctrl, usbreg reg)
584{
585 return inl (ctrl->reg_base + reg);
586}
587
588void
589uhci_reg_write16 (hci_t *ctrl, usbreg reg, u16 value)
590{
591 outw (value, ctrl->reg_base + reg);
592}
593
594u16
595uhci_reg_read16 (hci_t *ctrl, usbreg reg)
596{
597 return inw (ctrl->reg_base + reg);
598}
599
600void
601uhci_reg_write8 (hci_t *ctrl, usbreg reg, u8 value)
602{
603 outb (value, ctrl->reg_base + reg);
604}
605
606u8
607uhci_reg_read8 (hci_t *ctrl, usbreg reg)
608{
609 return inb (ctrl->reg_base + reg);
610}