]> Git Repo - qemu.git/blame - hw/usb/hcd-ohci.c
usb: Move short-not-ok handling to the core
[qemu.git] / hw / usb / hcd-ohci.c
CommitLineData
0d92ed30
PB
1/*
2 * QEMU USB OHCI Emulation
3 * Copyright (c) 2004 Gianni Tedesco
4 * Copyright (c) 2006 CodeSourcery
e24ad6f1 5 * Copyright (c) 2006 Openedhand Ltd.
0d92ed30
PB
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
8167ee88 18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
0d92ed30
PB
19 *
20 * TODO:
21 * o Isochronous transfers
22 * o Allocate bandwidth in frames properly
23 * o Disable timers when nothing needs to be done, or remove timer usage
24 * all together.
25 * o Handle unrecoverable errors properly
26 * o BIOS work to boot from USB storage
27*/
28
f1ae32a1 29#include "hw/hw.h"
87ecb68b 30#include "qemu-timer.h"
f1ae32a1
GH
31#include "hw/usb.h"
32#include "hw/pci.h"
f1ae32a1 33#include "hw/sysbus.h"
9ac6a217 34#include "hw/qdev-dma.h"
0d92ed30
PB
35
36//#define DEBUG_OHCI
37/* Dump packet contents. */
38//#define DEBUG_PACKET
7bfe5777 39//#define DEBUG_ISOCH
0d92ed30
PB
40/* This causes frames to occur 1000x slower */
41//#define OHCI_TIME_WARP 1
42
43#ifdef DEBUG_OHCI
d0f2c4c6 44#define DPRINTF printf
0d92ed30 45#else
d0f2c4c6 46#define DPRINTF(...)
0d92ed30
PB
47#endif
48
49/* Number of Downstream Ports on the root hub. */
50
51#define OHCI_MAX_PORTS 15
52
53static int64_t usb_frame_time;
54static int64_t usb_bit_time;
55
56typedef struct OHCIPort {
57 USBPort port;
58 uint32_t ctrl;
59} OHCIPort;
60
61typedef struct {
b2317837 62 USBBus bus;
d537cf6c 63 qemu_irq irq;
6da48311 64 MemoryRegion mem;
9ac6a217 65 DMAContext *dma;
0d92ed30 66 int num_ports;
e24ad6f1 67 const char *name;
0d92ed30
PB
68
69 QEMUTimer *eof_timer;
70 int64_t sof_time;
71
72 /* OHCI state */
73 /* Control partition */
74 uint32_t ctl, status;
75 uint32_t intr_status;
76 uint32_t intr;
77
78 /* memory pointer partition */
79 uint32_t hcca;
80 uint32_t ctrl_head, ctrl_cur;
81 uint32_t bulk_head, bulk_cur;
82 uint32_t per_cur;
83 uint32_t done;
84 int done_count;
85
86 /* Frame counter partition */
87 uint32_t fsmps:15;
88 uint32_t fit:1;
89 uint32_t fi:14;
90 uint32_t frt:1;
91 uint16_t frame_number;
92 uint16_t padding;
93 uint32_t pstart;
94 uint32_t lst;
95
96 /* Root Hub partition */
97 uint32_t rhdesc_a, rhdesc_b;
98 uint32_t rhstatus;
99 OHCIPort rhport[OHCI_MAX_PORTS];
4d611c9a 100
e24ad6f1
PB
101 /* PXA27x Non-OHCI events */
102 uint32_t hstatus;
103 uint32_t hmask;
104 uint32_t hreset;
105 uint32_t htest;
106
ac611340 107 /* SM501 local memory offset */
9ac6a217 108 dma_addr_t localmem_base;
ac611340 109
4d611c9a
PB
110 /* Active packets. */
111 uint32_t old_ctl;
112 USBPacket usb_packet;
113 uint8_t usb_buf[8192];
114 uint32_t async_td;
115 int async_complete;
116
0d92ed30
PB
117} OHCIState;
118
119/* Host Controller Communications Area */
120struct ohci_hcca {
121 uint32_t intr[32];
122 uint16_t frame, pad;
123 uint32_t done;
124};
86e18cae
WY
125#define HCCA_WRITEBACK_OFFSET offsetof(struct ohci_hcca, frame)
126#define HCCA_WRITEBACK_SIZE 8 /* frame, pad, done */
127
128#define ED_WBACK_OFFSET offsetof(struct ohci_ed, head)
129#define ED_WBACK_SIZE 4
0d92ed30 130
73221b12 131static void ohci_bus_stop(OHCIState *ohci);
4706ab6c 132static void ohci_async_cancel_device(OHCIState *ohci, USBDevice *dev);
73221b12 133
0d92ed30
PB
134/* Bitfields for the first word of an Endpoint Desciptor. */
135#define OHCI_ED_FA_SHIFT 0
136#define OHCI_ED_FA_MASK (0x7f<<OHCI_ED_FA_SHIFT)
137#define OHCI_ED_EN_SHIFT 7
138#define OHCI_ED_EN_MASK (0xf<<OHCI_ED_EN_SHIFT)
139#define OHCI_ED_D_SHIFT 11
140#define OHCI_ED_D_MASK (3<<OHCI_ED_D_SHIFT)
141#define OHCI_ED_S (1<<13)
142#define OHCI_ED_K (1<<14)
143#define OHCI_ED_F (1<<15)
7bfe5777
AZ
144#define OHCI_ED_MPS_SHIFT 16
145#define OHCI_ED_MPS_MASK (0x7ff<<OHCI_ED_MPS_SHIFT)
0d92ed30
PB
146
147/* Flags in the head field of an Endpoint Desciptor. */
148#define OHCI_ED_H 1
149#define OHCI_ED_C 2
150
151/* Bitfields for the first word of a Transfer Desciptor. */
152#define OHCI_TD_R (1<<18)
153#define OHCI_TD_DP_SHIFT 19
154#define OHCI_TD_DP_MASK (3<<OHCI_TD_DP_SHIFT)
155#define OHCI_TD_DI_SHIFT 21
156#define OHCI_TD_DI_MASK (7<<OHCI_TD_DI_SHIFT)
157#define OHCI_TD_T0 (1<<24)
8d11b78c 158#define OHCI_TD_T1 (1<<25)
0d92ed30
PB
159#define OHCI_TD_EC_SHIFT 26
160#define OHCI_TD_EC_MASK (3<<OHCI_TD_EC_SHIFT)
161#define OHCI_TD_CC_SHIFT 28
162#define OHCI_TD_CC_MASK (0xf<<OHCI_TD_CC_SHIFT)
163
7bfe5777
AZ
164/* Bitfields for the first word of an Isochronous Transfer Desciptor. */
165/* CC & DI - same as in the General Transfer Desciptor */
166#define OHCI_TD_SF_SHIFT 0
167#define OHCI_TD_SF_MASK (0xffff<<OHCI_TD_SF_SHIFT)
168#define OHCI_TD_FC_SHIFT 24
169#define OHCI_TD_FC_MASK (7<<OHCI_TD_FC_SHIFT)
170
171/* Isochronous Transfer Desciptor - Offset / PacketStatusWord */
172#define OHCI_TD_PSW_CC_SHIFT 12
173#define OHCI_TD_PSW_CC_MASK (0xf<<OHCI_TD_PSW_CC_SHIFT)
174#define OHCI_TD_PSW_SIZE_SHIFT 0
175#define OHCI_TD_PSW_SIZE_MASK (0xfff<<OHCI_TD_PSW_SIZE_SHIFT)
176
177#define OHCI_PAGE_MASK 0xfffff000
178#define OHCI_OFFSET_MASK 0xfff
179
0d92ed30
PB
180#define OHCI_DPTR_MASK 0xfffffff0
181
182#define OHCI_BM(val, field) \
183 (((val) & OHCI_##field##_MASK) >> OHCI_##field##_SHIFT)
184
185#define OHCI_SET_BM(val, field, newval) do { \
186 val &= ~OHCI_##field##_MASK; \
187 val |= ((newval) << OHCI_##field##_SHIFT) & OHCI_##field##_MASK; \
188 } while(0)
189
190/* endpoint descriptor */
191struct ohci_ed {
192 uint32_t flags;
193 uint32_t tail;
194 uint32_t head;
195 uint32_t next;
196};
197
198/* General transfer descriptor */
199struct ohci_td {
200 uint32_t flags;
201 uint32_t cbp;
202 uint32_t next;
203 uint32_t be;
204};
205
7bfe5777
AZ
206/* Isochronous transfer descriptor */
207struct ohci_iso_td {
208 uint32_t flags;
209 uint32_t bp;
210 uint32_t next;
211 uint32_t be;
212 uint16_t offset[8];
213};
214
0d92ed30
PB
215#define USB_HZ 12000000
216
217/* OHCI Local stuff */
218#define OHCI_CTL_CBSR ((1<<0)|(1<<1))
219#define OHCI_CTL_PLE (1<<2)
220#define OHCI_CTL_IE (1<<3)
221#define OHCI_CTL_CLE (1<<4)
222#define OHCI_CTL_BLE (1<<5)
223#define OHCI_CTL_HCFS ((1<<6)|(1<<7))
224#define OHCI_USB_RESET 0x00
225#define OHCI_USB_RESUME 0x40
226#define OHCI_USB_OPERATIONAL 0x80
227#define OHCI_USB_SUSPEND 0xc0
228#define OHCI_CTL_IR (1<<8)
229#define OHCI_CTL_RWC (1<<9)
230#define OHCI_CTL_RWE (1<<10)
231
232#define OHCI_STATUS_HCR (1<<0)
233#define OHCI_STATUS_CLF (1<<1)
234#define OHCI_STATUS_BLF (1<<2)
235#define OHCI_STATUS_OCR (1<<3)
236#define OHCI_STATUS_SOC ((1<<6)|(1<<7))
237
238#define OHCI_INTR_SO (1<<0) /* Scheduling overrun */
239#define OHCI_INTR_WD (1<<1) /* HcDoneHead writeback */
240#define OHCI_INTR_SF (1<<2) /* Start of frame */
241#define OHCI_INTR_RD (1<<3) /* Resume detect */
242#define OHCI_INTR_UE (1<<4) /* Unrecoverable error */
243#define OHCI_INTR_FNO (1<<5) /* Frame number overflow */
244#define OHCI_INTR_RHSC (1<<6) /* Root hub status change */
245#define OHCI_INTR_OC (1<<30) /* Ownership change */
246#define OHCI_INTR_MIE (1<<31) /* Master Interrupt Enable */
247
248#define OHCI_HCCA_SIZE 0x100
249#define OHCI_HCCA_MASK 0xffffff00
250
251#define OHCI_EDPTR_MASK 0xfffffff0
252
253#define OHCI_FMI_FI 0x00003fff
254#define OHCI_FMI_FSMPS 0xffff0000
255#define OHCI_FMI_FIT 0x80000000
256
257#define OHCI_FR_RT (1<<31)
258
259#define OHCI_LS_THRESH 0x628
260
261#define OHCI_RHA_RW_MASK 0x00000000 /* Mask of supported features. */
262#define OHCI_RHA_PSM (1<<8)
263#define OHCI_RHA_NPS (1<<9)
264#define OHCI_RHA_DT (1<<10)
265#define OHCI_RHA_OCPM (1<<11)
266#define OHCI_RHA_NOCP (1<<12)
267#define OHCI_RHA_POTPGT_MASK 0xff000000
268
269#define OHCI_RHS_LPS (1<<0)
270#define OHCI_RHS_OCI (1<<1)
271#define OHCI_RHS_DRWE (1<<15)
272#define OHCI_RHS_LPSC (1<<16)
273#define OHCI_RHS_OCIC (1<<17)
274#define OHCI_RHS_CRWE (1<<31)
275
276#define OHCI_PORT_CCS (1<<0)
277#define OHCI_PORT_PES (1<<1)
278#define OHCI_PORT_PSS (1<<2)
279#define OHCI_PORT_POCI (1<<3)
280#define OHCI_PORT_PRS (1<<4)
281#define OHCI_PORT_PPS (1<<8)
282#define OHCI_PORT_LSDA (1<<9)
283#define OHCI_PORT_CSC (1<<16)
284#define OHCI_PORT_PESC (1<<17)
285#define OHCI_PORT_PSSC (1<<18)
286#define OHCI_PORT_OCIC (1<<19)
287#define OHCI_PORT_PRSC (1<<20)
288#define OHCI_PORT_WTC (OHCI_PORT_CSC|OHCI_PORT_PESC|OHCI_PORT_PSSC \
289 |OHCI_PORT_OCIC|OHCI_PORT_PRSC)
290
291#define OHCI_TD_DIR_SETUP 0x0
292#define OHCI_TD_DIR_OUT 0x1
293#define OHCI_TD_DIR_IN 0x2
294#define OHCI_TD_DIR_RESERVED 0x3
295
296#define OHCI_CC_NOERROR 0x0
297#define OHCI_CC_CRC 0x1
298#define OHCI_CC_BITSTUFFING 0x2
299#define OHCI_CC_DATATOGGLEMISMATCH 0x3
300#define OHCI_CC_STALL 0x4
301#define OHCI_CC_DEVICENOTRESPONDING 0x5
302#define OHCI_CC_PIDCHECKFAILURE 0x6
303#define OHCI_CC_UNDEXPETEDPID 0x7
304#define OHCI_CC_DATAOVERRUN 0x8
305#define OHCI_CC_DATAUNDERRUN 0x9
306#define OHCI_CC_BUFFEROVERRUN 0xc
307#define OHCI_CC_BUFFERUNDERRUN 0xd
308
e24ad6f1
PB
309#define OHCI_HRESET_FSBIR (1 << 0)
310
61064870
PB
311/* Update IRQ levels */
312static inline void ohci_intr_update(OHCIState *ohci)
313{
314 int level = 0;
315
316 if ((ohci->intr & OHCI_INTR_MIE) &&
317 (ohci->intr_status & ohci->intr))
318 level = 1;
319
d537cf6c 320 qemu_set_irq(ohci->irq, level);
61064870
PB
321}
322
323/* Set an interrupt */
324static inline void ohci_set_interrupt(OHCIState *ohci, uint32_t intr)
325{
326 ohci->intr_status |= intr;
327 ohci_intr_update(ohci);
328}
329
330/* Attach or detach a device on a root hub port. */
618c169b 331static void ohci_attach(USBPort *port1)
0d92ed30
PB
332{
333 OHCIState *s = port1->opaque;
334 OHCIPort *port = &s->rhport[port1->index];
3dc345d5 335 uint32_t old_state = port->ctrl;
0d92ed30 336
618c169b
GH
337 /* set connect status */
338 port->ctrl |= OHCI_PORT_CCS | OHCI_PORT_CSC;
339
340 /* update speed */
341 if (port->port.dev->speed == USB_SPEED_LOW) {
342 port->ctrl |= OHCI_PORT_LSDA;
0d92ed30 343 } else {
618c169b
GH
344 port->ctrl &= ~OHCI_PORT_LSDA;
345 }
346
347 /* notify of remote-wakeup */
348 if ((s->ctl & OHCI_CTL_HCFS) == OHCI_USB_SUSPEND) {
349 ohci_set_interrupt(s, OHCI_INTR_RD);
350 }
351
352 DPRINTF("usb-ohci: Attached port %d\n", port1->index);
3dc345d5
GH
353
354 if (old_state != port->ctrl) {
355 ohci_set_interrupt(s, OHCI_INTR_RHSC);
356 }
618c169b
GH
357}
358
359static void ohci_detach(USBPort *port1)
360{
361 OHCIState *s = port1->opaque;
362 OHCIPort *port = &s->rhport[port1->index];
363 uint32_t old_state = port->ctrl;
364
4706ab6c
HG
365 ohci_async_cancel_device(s, port1->dev);
366
618c169b
GH
367 /* set connect status */
368 if (port->ctrl & OHCI_PORT_CCS) {
369 port->ctrl &= ~OHCI_PORT_CCS;
370 port->ctrl |= OHCI_PORT_CSC;
371 }
372 /* disable port */
373 if (port->ctrl & OHCI_PORT_PES) {
374 port->ctrl &= ~OHCI_PORT_PES;
375 port->ctrl |= OHCI_PORT_PESC;
0d92ed30 376 }
618c169b 377 DPRINTF("usb-ohci: Detached port %d\n", port1->index);
61064870 378
3dc345d5 379 if (old_state != port->ctrl) {
61064870 380 ohci_set_interrupt(s, OHCI_INTR_RHSC);
3dc345d5 381 }
0d92ed30
PB
382}
383
d47e59b8 384static void ohci_wakeup(USBPort *port1)
9bba1eb1 385{
d47e59b8
HG
386 OHCIState *s = port1->opaque;
387 OHCIPort *port = &s->rhport[port1->index];
f3dc0051 388 uint32_t intr = 0;
9bba1eb1 389 if (port->ctrl & OHCI_PORT_PSS) {
d47e59b8 390 DPRINTF("usb-ohci: port %d: wakeup\n", port1->index);
9bba1eb1
PM
391 port->ctrl |= OHCI_PORT_PSSC;
392 port->ctrl &= ~OHCI_PORT_PSS;
f3dc0051 393 intr = OHCI_INTR_RHSC;
9bba1eb1 394 }
f3dc0051
PM
395 /* Note that the controller can be suspended even if this port is not */
396 if ((s->ctl & OHCI_CTL_HCFS) == OHCI_USB_SUSPEND) {
397 DPRINTF("usb-ohci: remote-wakeup: SUSPEND->RESUME\n");
398 /* This is the one state transition the controller can do by itself */
399 s->ctl &= ~OHCI_CTL_HCFS;
400 s->ctl |= OHCI_USB_RESUME;
401 /* In suspend mode only ResumeDetected is possible, not RHSC:
402 * see the OHCI spec 5.1.2.3.
403 */
404 intr = OHCI_INTR_RD;
405 }
406 ohci_set_interrupt(s, intr);
9bba1eb1
PM
407}
408
4706ab6c
HG
409static void ohci_child_detach(USBPort *port1, USBDevice *child)
410{
411 OHCIState *s = port1->opaque;
412
413 ohci_async_cancel_device(s, child);
414}
415
993048bb
GH
416static USBDevice *ohci_find_device(OHCIState *ohci, uint8_t addr)
417{
418 USBDevice *dev;
419 int i;
420
421 for (i = 0; i < ohci->num_ports; i++) {
422 if ((ohci->rhport[i].ctrl & OHCI_PORT_PES) == 0) {
423 continue;
424 }
425 dev = usb_find_device(&ohci->rhport[i].port, addr);
426 if (dev != NULL) {
427 return dev;
428 }
429 }
430 return NULL;
431}
432
0d92ed30 433/* Reset the controller */
73221b12 434static void ohci_reset(void *opaque)
0d92ed30 435{
73221b12 436 OHCIState *ohci = opaque;
0d92ed30
PB
437 OHCIPort *port;
438 int i;
439
73221b12 440 ohci_bus_stop(ohci);
0d92ed30 441 ohci->ctl = 0;
4d611c9a 442 ohci->old_ctl = 0;
0d92ed30
PB
443 ohci->status = 0;
444 ohci->intr_status = 0;
445 ohci->intr = OHCI_INTR_MIE;
446
447 ohci->hcca = 0;
448 ohci->ctrl_head = ohci->ctrl_cur = 0;
449 ohci->bulk_head = ohci->bulk_cur = 0;
450 ohci->per_cur = 0;
451 ohci->done = 0;
452 ohci->done_count = 7;
453
454 /* FSMPS is marked TBD in OCHI 1.0, what gives ffs?
455 * I took the value linux sets ...
456 */
457 ohci->fsmps = 0x2778;
458 ohci->fi = 0x2edf;
459 ohci->fit = 0;
460 ohci->frt = 0;
461 ohci->frame_number = 0;
462 ohci->pstart = 0;
463 ohci->lst = OHCI_LS_THRESH;
464
465 ohci->rhdesc_a = OHCI_RHA_NPS | ohci->num_ports;
466 ohci->rhdesc_b = 0x0; /* Impl. specific */
467 ohci->rhstatus = 0;
468
469 for (i = 0; i < ohci->num_ports; i++)
470 {
471 port = &ohci->rhport[i];
472 port->ctrl = 0;
891fb2cd 473 if (port->port.dev && port->port.dev->attached) {
d28f4e2d 474 usb_port_reset(&port->port);
618c169b 475 }
0d92ed30 476 }
4d611c9a
PB
477 if (ohci->async_td) {
478 usb_cancel_packet(&ohci->usb_packet);
479 ohci->async_td = 0;
480 }
d0f2c4c6 481 DPRINTF("usb-ohci: Reset %s\n", ohci->name);
0d92ed30
PB
482}
483
0d92ed30 484/* Get an array of dwords from main memory */
ac611340 485static inline int get_dwords(OHCIState *ohci,
9ac6a217 486 dma_addr_t addr, uint32_t *buf, int num)
0d92ed30
PB
487{
488 int i;
489
ac611340
AJ
490 addr += ohci->localmem_base;
491
0d92ed30 492 for (i = 0; i < num; i++, buf++, addr += sizeof(*buf)) {
9ac6a217 493 dma_memory_read(ohci->dma, addr, buf, sizeof(*buf));
0d92ed30
PB
494 *buf = le32_to_cpu(*buf);
495 }
496
497 return 1;
498}
499
500/* Put an array of dwords in to main memory */
ac611340 501static inline int put_dwords(OHCIState *ohci,
9ac6a217 502 dma_addr_t addr, uint32_t *buf, int num)
0d92ed30
PB
503{
504 int i;
505
ac611340
AJ
506 addr += ohci->localmem_base;
507
0d92ed30
PB
508 for (i = 0; i < num; i++, buf++, addr += sizeof(*buf)) {
509 uint32_t tmp = cpu_to_le32(*buf);
9ac6a217 510 dma_memory_write(ohci->dma, addr, &tmp, sizeof(tmp));
0d92ed30
PB
511 }
512
513 return 1;
514}
515
7bfe5777 516/* Get an array of words from main memory */
ac611340 517static inline int get_words(OHCIState *ohci,
9ac6a217 518 dma_addr_t addr, uint16_t *buf, int num)
7bfe5777
AZ
519{
520 int i;
521
ac611340
AJ
522 addr += ohci->localmem_base;
523
7bfe5777 524 for (i = 0; i < num; i++, buf++, addr += sizeof(*buf)) {
9ac6a217 525 dma_memory_read(ohci->dma, addr, buf, sizeof(*buf));
7bfe5777
AZ
526 *buf = le16_to_cpu(*buf);
527 }
528
529 return 1;
530}
531
532/* Put an array of words in to main memory */
ac611340 533static inline int put_words(OHCIState *ohci,
9ac6a217 534 dma_addr_t addr, uint16_t *buf, int num)
7bfe5777
AZ
535{
536 int i;
537
ac611340
AJ
538 addr += ohci->localmem_base;
539
7bfe5777
AZ
540 for (i = 0; i < num; i++, buf++, addr += sizeof(*buf)) {
541 uint16_t tmp = cpu_to_le16(*buf);
9ac6a217 542 dma_memory_write(ohci->dma, addr, &tmp, sizeof(tmp));
7bfe5777
AZ
543 }
544
545 return 1;
546}
547
ac611340 548static inline int ohci_read_ed(OHCIState *ohci,
9ac6a217 549 dma_addr_t addr, struct ohci_ed *ed)
0d92ed30 550{
ac611340 551 return get_dwords(ohci, addr, (uint32_t *)ed, sizeof(*ed) >> 2);
0d92ed30
PB
552}
553
ac611340 554static inline int ohci_read_td(OHCIState *ohci,
9ac6a217 555 dma_addr_t addr, struct ohci_td *td)
0d92ed30 556{
ac611340 557 return get_dwords(ohci, addr, (uint32_t *)td, sizeof(*td) >> 2);
0d92ed30
PB
558}
559
ac611340 560static inline int ohci_read_iso_td(OHCIState *ohci,
9ac6a217 561 dma_addr_t addr, struct ohci_iso_td *td)
7bfe5777 562{
ac611340
AJ
563 return (get_dwords(ohci, addr, (uint32_t *)td, 4) &&
564 get_words(ohci, addr + 16, td->offset, 8));
7bfe5777
AZ
565}
566
ac611340 567static inline int ohci_read_hcca(OHCIState *ohci,
9ac6a217 568 dma_addr_t addr, struct ohci_hcca *hcca)
0d92ed30 569{
9ac6a217 570 dma_memory_read(ohci->dma, addr + ohci->localmem_base, hcca, sizeof(*hcca));
ac611340 571 return 1;
0d92ed30
PB
572}
573
ac611340 574static inline int ohci_put_ed(OHCIState *ohci,
9ac6a217 575 dma_addr_t addr, struct ohci_ed *ed)
0d92ed30 576{
86e18cae
WY
577 /* ed->tail is under control of the HCD.
578 * Since just ed->head is changed by HC, just write back this
579 */
580
581 return put_dwords(ohci, addr + ED_WBACK_OFFSET,
582 (uint32_t *)((char *)ed + ED_WBACK_OFFSET),
583 ED_WBACK_SIZE >> 2);
0d92ed30
PB
584}
585
ac611340 586static inline int ohci_put_td(OHCIState *ohci,
9ac6a217 587 dma_addr_t addr, struct ohci_td *td)
7bfe5777 588{
ac611340
AJ
589 return put_dwords(ohci, addr, (uint32_t *)td, sizeof(*td) >> 2);
590}
591
592static inline int ohci_put_iso_td(OHCIState *ohci,
9ac6a217 593 dma_addr_t addr, struct ohci_iso_td *td)
ac611340
AJ
594{
595 return (put_dwords(ohci, addr, (uint32_t *)td, 4) &&
596 put_words(ohci, addr + 16, td->offset, 8));
597}
598
599static inline int ohci_put_hcca(OHCIState *ohci,
9ac6a217 600 dma_addr_t addr, struct ohci_hcca *hcca)
ac611340 601{
9ac6a217
DG
602 dma_memory_write(ohci->dma,
603 addr + ohci->localmem_base + HCCA_WRITEBACK_OFFSET,
604 (char *)hcca + HCCA_WRITEBACK_OFFSET,
605 HCCA_WRITEBACK_SIZE);
ac611340 606 return 1;
7bfe5777
AZ
607}
608
0d92ed30 609/* Read/Write the contents of a TD from/to main memory. */
ac611340 610static void ohci_copy_td(OHCIState *ohci, struct ohci_td *td,
9ac6a217 611 uint8_t *buf, int len, DMADirection dir)
0d92ed30 612{
9ac6a217 613 dma_addr_t ptr, n;
0d92ed30
PB
614
615 ptr = td->cbp;
616 n = 0x1000 - (ptr & 0xfff);
617 if (n > len)
618 n = len;
9ac6a217 619 dma_memory_rw(ohci->dma, ptr + ohci->localmem_base, buf, n, dir);
0d92ed30
PB
620 if (n == len)
621 return;
622 ptr = td->be & ~0xfffu;
e6f3e5e0 623 buf += n;
9ac6a217 624 dma_memory_rw(ohci->dma, ptr + ohci->localmem_base, buf, len - n, dir);
0d92ed30
PB
625}
626
7bfe5777 627/* Read/Write the contents of an ISO TD from/to main memory. */
ac611340
AJ
628static void ohci_copy_iso_td(OHCIState *ohci,
629 uint32_t start_addr, uint32_t end_addr,
9ac6a217 630 uint8_t *buf, int len, DMADirection dir)
7bfe5777 631{
9ac6a217 632 dma_addr_t ptr, n;
4d611c9a 633
7bfe5777
AZ
634 ptr = start_addr;
635 n = 0x1000 - (ptr & 0xfff);
636 if (n > len)
637 n = len;
9ac6a217 638 dma_memory_rw(ohci->dma, ptr + ohci->localmem_base, buf, n, dir);
7bfe5777
AZ
639 if (n == len)
640 return;
641 ptr = end_addr & ~0xfffu;
642 buf += n;
9ac6a217 643 dma_memory_rw(ohci->dma, ptr + ohci->localmem_base, buf, len - n, dir);
7bfe5777
AZ
644}
645
646static void ohci_process_lists(OHCIState *ohci, int completion);
647
d47e59b8 648static void ohci_async_complete_packet(USBPort *port, USBPacket *packet)
4d611c9a 649{
9066df13 650 OHCIState *ohci = container_of(packet, OHCIState, usb_packet);
4d611c9a 651#ifdef DEBUG_PACKET
d0f2c4c6 652 DPRINTF("Async packet complete\n");
4d611c9a
PB
653#endif
654 ohci->async_complete = 1;
7bfe5777
AZ
655 ohci_process_lists(ohci, 1);
656}
657
658#define USUB(a, b) ((int16_t)((uint16_t)(a) - (uint16_t)(b)))
659
660static int ohci_service_iso_td(OHCIState *ohci, struct ohci_ed *ed,
661 int completion)
662{
663 int dir;
664 size_t len = 0;
d4c4e6fd 665#ifdef DEBUG_ISOCH
7ccfb2eb 666 const char *str = NULL;
d4c4e6fd 667#endif
7bfe5777
AZ
668 int pid;
669 int ret;
670 int i;
671 USBDevice *dev;
079d0b7f 672 USBEndpoint *ep;
7bfe5777
AZ
673 struct ohci_iso_td iso_td;
674 uint32_t addr;
675 uint16_t starting_frame;
676 int16_t relative_frame_number;
677 int frame_count;
678 uint32_t start_offset, next_offset, end_offset = 0;
679 uint32_t start_addr, end_addr;
680
681 addr = ed->head & OHCI_DPTR_MASK;
682
ac611340 683 if (!ohci_read_iso_td(ohci, addr, &iso_td)) {
7bfe5777
AZ
684 printf("usb-ohci: ISO_TD read error at %x\n", addr);
685 return 0;
686 }
687
688 starting_frame = OHCI_BM(iso_td.flags, TD_SF);
689 frame_count = OHCI_BM(iso_td.flags, TD_FC);
690 relative_frame_number = USUB(ohci->frame_number, starting_frame);
691
692#ifdef DEBUG_ISOCH
693 printf("--- ISO_TD ED head 0x%.8x tailp 0x%.8x\n"
694 "0x%.8x 0x%.8x 0x%.8x 0x%.8x\n"
695 "0x%.8x 0x%.8x 0x%.8x 0x%.8x\n"
696 "0x%.8x 0x%.8x 0x%.8x 0x%.8x\n"
697 "frame_number 0x%.8x starting_frame 0x%.8x\n"
698 "frame_count 0x%.8x relative %d\n"
699 "di 0x%.8x cc 0x%.8x\n",
700 ed->head & OHCI_DPTR_MASK, ed->tail & OHCI_DPTR_MASK,
701 iso_td.flags, iso_td.bp, iso_td.next, iso_td.be,
702 iso_td.offset[0], iso_td.offset[1], iso_td.offset[2], iso_td.offset[3],
703 iso_td.offset[4], iso_td.offset[5], iso_td.offset[6], iso_td.offset[7],
704 ohci->frame_number, starting_frame,
705 frame_count, relative_frame_number,
706 OHCI_BM(iso_td.flags, TD_DI), OHCI_BM(iso_td.flags, TD_CC));
707#endif
708
709 if (relative_frame_number < 0) {
d0f2c4c6 710 DPRINTF("usb-ohci: ISO_TD R=%d < 0\n", relative_frame_number);
7bfe5777
AZ
711 return 1;
712 } else if (relative_frame_number > frame_count) {
713 /* ISO TD expired - retire the TD to the Done Queue and continue with
714 the next ISO TD of the same ED */
d0f2c4c6 715 DPRINTF("usb-ohci: ISO_TD R=%d > FC=%d\n", relative_frame_number,
7bfe5777
AZ
716 frame_count);
717 OHCI_SET_BM(iso_td.flags, TD_CC, OHCI_CC_DATAOVERRUN);
718 ed->head &= ~OHCI_DPTR_MASK;
719 ed->head |= (iso_td.next & OHCI_DPTR_MASK);
720 iso_td.next = ohci->done;
721 ohci->done = addr;
722 i = OHCI_BM(iso_td.flags, TD_DI);
723 if (i < ohci->done_count)
724 ohci->done_count = i;
ac611340 725 ohci_put_iso_td(ohci, addr, &iso_td);
7bfe5777
AZ
726 return 0;
727 }
728
729 dir = OHCI_BM(ed->flags, ED_D);
730 switch (dir) {
731 case OHCI_TD_DIR_IN:
d4c4e6fd 732#ifdef DEBUG_ISOCH
7bfe5777 733 str = "in";
d4c4e6fd 734#endif
7bfe5777
AZ
735 pid = USB_TOKEN_IN;
736 break;
737 case OHCI_TD_DIR_OUT:
d4c4e6fd 738#ifdef DEBUG_ISOCH
7bfe5777 739 str = "out";
d4c4e6fd 740#endif
7bfe5777
AZ
741 pid = USB_TOKEN_OUT;
742 break;
743 case OHCI_TD_DIR_SETUP:
d4c4e6fd 744#ifdef DEBUG_ISOCH
7bfe5777 745 str = "setup";
d4c4e6fd 746#endif
7bfe5777
AZ
747 pid = USB_TOKEN_SETUP;
748 break;
749 default:
750 printf("usb-ohci: Bad direction %d\n", dir);
751 return 1;
752 }
753
754 if (!iso_td.bp || !iso_td.be) {
755 printf("usb-ohci: ISO_TD bp 0x%.8x be 0x%.8x\n", iso_td.bp, iso_td.be);
756 return 1;
757 }
758
759 start_offset = iso_td.offset[relative_frame_number];
760 next_offset = iso_td.offset[relative_frame_number + 1];
761
762 if (!(OHCI_BM(start_offset, TD_PSW_CC) & 0xe) ||
763 ((relative_frame_number < frame_count) &&
764 !(OHCI_BM(next_offset, TD_PSW_CC) & 0xe))) {
765 printf("usb-ohci: ISO_TD cc != not accessed 0x%.8x 0x%.8x\n",
766 start_offset, next_offset);
767 return 1;
768 }
769
770 if ((relative_frame_number < frame_count) && (start_offset > next_offset)) {
771 printf("usb-ohci: ISO_TD start_offset=0x%.8x > next_offset=0x%.8x\n",
772 start_offset, next_offset);
773 return 1;
774 }
775
776 if ((start_offset & 0x1000) == 0) {
777 start_addr = (iso_td.bp & OHCI_PAGE_MASK) |
778 (start_offset & OHCI_OFFSET_MASK);
779 } else {
780 start_addr = (iso_td.be & OHCI_PAGE_MASK) |
781 (start_offset & OHCI_OFFSET_MASK);
782 }
783
784 if (relative_frame_number < frame_count) {
785 end_offset = next_offset - 1;
786 if ((end_offset & 0x1000) == 0) {
787 end_addr = (iso_td.bp & OHCI_PAGE_MASK) |
788 (end_offset & OHCI_OFFSET_MASK);
789 } else {
790 end_addr = (iso_td.be & OHCI_PAGE_MASK) |
791 (end_offset & OHCI_OFFSET_MASK);
792 }
793 } else {
794 /* Last packet in the ISO TD */
795 end_addr = iso_td.be;
796 }
797
798 if ((start_addr & OHCI_PAGE_MASK) != (end_addr & OHCI_PAGE_MASK)) {
799 len = (end_addr & OHCI_OFFSET_MASK) + 0x1001
800 - (start_addr & OHCI_OFFSET_MASK);
801 } else {
802 len = end_addr - start_addr + 1;
803 }
804
805 if (len && dir != OHCI_TD_DIR_IN) {
9ac6a217
DG
806 ohci_copy_iso_td(ohci, start_addr, end_addr, ohci->usb_buf, len,
807 DMA_DIRECTION_TO_DEVICE);
7bfe5777
AZ
808 }
809
810 if (completion) {
4f4321c1 811 ret = ohci->usb_packet.result;
7bfe5777 812 } else {
079d0b7f
GH
813 dev = ohci_find_device(ohci, OHCI_BM(ed->flags, ED_FA));
814 ep = usb_ep_get(dev, pid, OHCI_BM(ed->flags, ED_EN));
6ba43f1f 815 usb_packet_setup(&ohci->usb_packet, pid, ep, addr, false);
993048bb 816 usb_packet_addbuf(&ohci->usb_packet, ohci->usb_buf, len);
993048bb 817 ret = usb_handle_packet(dev, &ohci->usb_packet);
7bfe5777 818 if (ret == USB_RET_ASYNC) {
36dfe324 819 usb_device_flush_ep_queue(dev, ep);
7bfe5777
AZ
820 return 1;
821 }
822 }
823
824#ifdef DEBUG_ISOCH
825 printf("so 0x%.8x eo 0x%.8x\nsa 0x%.8x ea 0x%.8x\ndir %s len %zu ret %d\n",
826 start_offset, end_offset, start_addr, end_addr, str, len, ret);
827#endif
828
829 /* Writeback */
830 if (dir == OHCI_TD_DIR_IN && ret >= 0 && ret <= len) {
831 /* IN transfer succeeded */
9ac6a217
DG
832 ohci_copy_iso_td(ohci, start_addr, end_addr, ohci->usb_buf, ret,
833 DMA_DIRECTION_FROM_DEVICE);
7bfe5777
AZ
834 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_CC,
835 OHCI_CC_NOERROR);
836 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_SIZE, ret);
837 } else if (dir == OHCI_TD_DIR_OUT && ret == len) {
838 /* OUT transfer succeeded */
839 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_CC,
840 OHCI_CC_NOERROR);
841 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_SIZE, 0);
842 } else {
87283515 843 if (ret > (ssize_t) len) {
7bfe5777
AZ
844 printf("usb-ohci: DataOverrun %d > %zu\n", ret, len);
845 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_CC,
846 OHCI_CC_DATAOVERRUN);
847 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_SIZE,
848 len);
849 } else if (ret >= 0) {
850 printf("usb-ohci: DataUnderrun %d\n", ret);
851 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_CC,
852 OHCI_CC_DATAUNDERRUN);
853 } else {
854 switch (ret) {
d61000a8 855 case USB_RET_IOERROR:
7bfe5777
AZ
856 case USB_RET_NODEV:
857 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_CC,
858 OHCI_CC_DEVICENOTRESPONDING);
859 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_SIZE,
860 0);
861 break;
862 case USB_RET_NAK:
863 case USB_RET_STALL:
864 printf("usb-ohci: got NAK/STALL %d\n", ret);
865 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_CC,
866 OHCI_CC_STALL);
867 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_SIZE,
868 0);
869 break;
870 default:
871 printf("usb-ohci: Bad device response %d\n", ret);
872 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_CC,
873 OHCI_CC_UNDEXPETEDPID);
874 break;
875 }
876 }
877 }
878
879 if (relative_frame_number == frame_count) {
880 /* Last data packet of ISO TD - retire the TD to the Done Queue */
881 OHCI_SET_BM(iso_td.flags, TD_CC, OHCI_CC_NOERROR);
882 ed->head &= ~OHCI_DPTR_MASK;
883 ed->head |= (iso_td.next & OHCI_DPTR_MASK);
884 iso_td.next = ohci->done;
885 ohci->done = addr;
886 i = OHCI_BM(iso_td.flags, TD_DI);
887 if (i < ohci->done_count)
888 ohci->done_count = i;
889 }
ac611340 890 ohci_put_iso_td(ohci, addr, &iso_td);
7bfe5777 891 return 1;
4d611c9a
PB
892}
893
0d92ed30
PB
894/* Service a transport descriptor.
895 Returns nonzero to terminate processing of this endpoint. */
896
897static int ohci_service_td(OHCIState *ohci, struct ohci_ed *ed)
898{
899 int dir;
905fb034 900 size_t len = 0, pktlen = 0;
d4c4e6fd 901#ifdef DEBUG_PACKET
7ccfb2eb 902 const char *str = NULL;
d4c4e6fd 903#endif
0d92ed30
PB
904 int pid;
905 int ret;
906 int i;
907 USBDevice *dev;
079d0b7f 908 USBEndpoint *ep;
0d92ed30
PB
909 struct ohci_td td;
910 uint32_t addr;
911 int flag_r;
4d611c9a 912 int completion;
0d92ed30
PB
913
914 addr = ed->head & OHCI_DPTR_MASK;
4d611c9a
PB
915 /* See if this TD has already been submitted to the device. */
916 completion = (addr == ohci->async_td);
917 if (completion && !ohci->async_complete) {
918#ifdef DEBUG_PACKET
d0f2c4c6 919 DPRINTF("Skipping async TD\n");
4d611c9a
PB
920#endif
921 return 1;
922 }
ac611340 923 if (!ohci_read_td(ohci, addr, &td)) {
0d92ed30
PB
924 fprintf(stderr, "usb-ohci: TD read error at %x\n", addr);
925 return 0;
926 }
927
928 dir = OHCI_BM(ed->flags, ED_D);
929 switch (dir) {
930 case OHCI_TD_DIR_OUT:
931 case OHCI_TD_DIR_IN:
932 /* Same value. */
933 break;
934 default:
935 dir = OHCI_BM(td.flags, TD_DP);
936 break;
937 }
938
939 switch (dir) {
940 case OHCI_TD_DIR_IN:
d4c4e6fd 941#ifdef DEBUG_PACKET
0d92ed30 942 str = "in";
d4c4e6fd 943#endif
0d92ed30
PB
944 pid = USB_TOKEN_IN;
945 break;
946 case OHCI_TD_DIR_OUT:
d4c4e6fd 947#ifdef DEBUG_PACKET
0d92ed30 948 str = "out";
d4c4e6fd 949#endif
0d92ed30
PB
950 pid = USB_TOKEN_OUT;
951 break;
952 case OHCI_TD_DIR_SETUP:
d4c4e6fd 953#ifdef DEBUG_PACKET
0d92ed30 954 str = "setup";
d4c4e6fd 955#endif
0d92ed30
PB
956 pid = USB_TOKEN_SETUP;
957 break;
958 default:
959 fprintf(stderr, "usb-ohci: Bad direction\n");
960 return 1;
961 }
962 if (td.cbp && td.be) {
e6f3e5e0
PB
963 if ((td.cbp & 0xfffff000) != (td.be & 0xfffff000)) {
964 len = (td.be & 0xfff) + 0x1001 - (td.cbp & 0xfff);
965 } else {
966 len = (td.be - td.cbp) + 1;
967 }
968
905fb034
PM
969 pktlen = len;
970 if (len && dir != OHCI_TD_DIR_IN) {
971 /* The endpoint may not allow us to transfer it all now */
972 pktlen = (ed->flags & OHCI_ED_MPS_MASK) >> OHCI_ED_MPS_SHIFT;
973 if (pktlen > len) {
974 pktlen = len;
975 }
976 if (!completion) {
9ac6a217
DG
977 ohci_copy_td(ohci, &td, ohci->usb_buf, pktlen,
978 DMA_DIRECTION_TO_DEVICE);
905fb034 979 }
0d92ed30
PB
980 }
981 }
982
983 flag_r = (td.flags & OHCI_TD_R) != 0;
984#ifdef DEBUG_PACKET
905fb034
PM
985 DPRINTF(" TD @ 0x%.8x %" PRId64 " of %" PRId64
986 " bytes %s r=%d cbp=0x%.8x be=0x%.8x\n",
987 addr, (int64_t)pktlen, (int64_t)len, str, flag_r, td.cbp, td.be);
0d92ed30 988
905fb034 989 if (pktlen > 0 && dir != OHCI_TD_DIR_IN) {
d0f2c4c6 990 DPRINTF(" data:");
905fb034 991 for (i = 0; i < pktlen; i++) {
4d611c9a 992 printf(" %.2x", ohci->usb_buf[i]);
905fb034 993 }
d0f2c4c6 994 DPRINTF("\n");
0d92ed30
PB
995 }
996#endif
4d611c9a 997 if (completion) {
4f4321c1 998 ret = ohci->usb_packet.result;
4d611c9a
PB
999 ohci->async_td = 0;
1000 ohci->async_complete = 0;
1001 } else {
993048bb
GH
1002 if (ohci->async_td) {
1003 /* ??? The hardware should allow one active packet per
1004 endpoint. We only allow one active packet per controller.
1005 This should be sufficient as long as devices respond in a
1006 timely manner.
1007 */
0d92ed30 1008#ifdef DEBUG_PACKET
993048bb 1009 DPRINTF("Too many pending packets\n");
0d92ed30 1010#endif
993048bb 1011 return 1;
4d611c9a 1012 }
079d0b7f
GH
1013 dev = ohci_find_device(ohci, OHCI_BM(ed->flags, ED_FA));
1014 ep = usb_ep_get(dev, pid, OHCI_BM(ed->flags, ED_EN));
6ba43f1f 1015 usb_packet_setup(&ohci->usb_packet, pid, ep, addr, !flag_r);
993048bb 1016 usb_packet_addbuf(&ohci->usb_packet, ohci->usb_buf, pktlen);
993048bb 1017 ret = usb_handle_packet(dev, &ohci->usb_packet);
4d611c9a 1018#ifdef DEBUG_PACKET
d0f2c4c6 1019 DPRINTF("ret=%d\n", ret);
4d611c9a
PB
1020#endif
1021 if (ret == USB_RET_ASYNC) {
36dfe324 1022 usb_device_flush_ep_queue(dev, ep);
4d611c9a
PB
1023 ohci->async_td = addr;
1024 return 1;
1025 }
1026 }
0d92ed30
PB
1027 if (ret >= 0) {
1028 if (dir == OHCI_TD_DIR_IN) {
9ac6a217
DG
1029 ohci_copy_td(ohci, &td, ohci->usb_buf, ret,
1030 DMA_DIRECTION_FROM_DEVICE);
0d92ed30 1031#ifdef DEBUG_PACKET
d0f2c4c6 1032 DPRINTF(" data:");
0d92ed30 1033 for (i = 0; i < ret; i++)
4d611c9a 1034 printf(" %.2x", ohci->usb_buf[i]);
d0f2c4c6 1035 DPRINTF("\n");
0d92ed30
PB
1036#endif
1037 } else {
905fb034 1038 ret = pktlen;
0d92ed30
PB
1039 }
1040 }
1041
1042 /* Writeback */
905fb034 1043 if (ret == pktlen || (dir == OHCI_TD_DIR_IN && ret >= 0 && flag_r)) {
0d92ed30
PB
1044 /* Transmission succeeded. */
1045 if (ret == len) {
1046 td.cbp = 0;
1047 } else {
0d92ed30 1048 if ((td.cbp & 0xfff) + ret > 0xfff) {
fd891c93
AG
1049 td.cbp = (td.be & ~0xfff) + ((td.cbp + ret) & 0xfff);
1050 } else {
1051 td.cbp += ret;
0d92ed30
PB
1052 }
1053 }
1054 td.flags |= OHCI_TD_T1;
1055 td.flags ^= OHCI_TD_T0;
1056 OHCI_SET_BM(td.flags, TD_CC, OHCI_CC_NOERROR);
1057 OHCI_SET_BM(td.flags, TD_EC, 0);
1058
905fb034
PM
1059 if ((dir != OHCI_TD_DIR_IN) && (ret != len)) {
1060 /* Partial packet transfer: TD not ready to retire yet */
1061 goto exit_no_retire;
1062 }
1063
1064 /* Setting ED_C is part of the TD retirement process */
0d92ed30
PB
1065 ed->head &= ~OHCI_ED_C;
1066 if (td.flags & OHCI_TD_T0)
1067 ed->head |= OHCI_ED_C;
1068 } else {
1069 if (ret >= 0) {
d0f2c4c6 1070 DPRINTF("usb-ohci: Underrun\n");
0d92ed30
PB
1071 OHCI_SET_BM(td.flags, TD_CC, OHCI_CC_DATAUNDERRUN);
1072 } else {
1073 switch (ret) {
d61000a8 1074 case USB_RET_IOERROR:
0d92ed30
PB
1075 case USB_RET_NODEV:
1076 OHCI_SET_BM(td.flags, TD_CC, OHCI_CC_DEVICENOTRESPONDING);
1077 case USB_RET_NAK:
d0f2c4c6 1078 DPRINTF("usb-ohci: got NAK\n");
0d92ed30
PB
1079 return 1;
1080 case USB_RET_STALL:
d0f2c4c6 1081 DPRINTF("usb-ohci: got STALL\n");
0d92ed30
PB
1082 OHCI_SET_BM(td.flags, TD_CC, OHCI_CC_STALL);
1083 break;
1084 case USB_RET_BABBLE:
d0f2c4c6 1085 DPRINTF("usb-ohci: got BABBLE\n");
0d92ed30
PB
1086 OHCI_SET_BM(td.flags, TD_CC, OHCI_CC_DATAOVERRUN);
1087 break;
1088 default:
1089 fprintf(stderr, "usb-ohci: Bad device response %d\n", ret);
1090 OHCI_SET_BM(td.flags, TD_CC, OHCI_CC_UNDEXPETEDPID);
1091 OHCI_SET_BM(td.flags, TD_EC, 3);
1092 break;
1093 }
1094 }
1095 ed->head |= OHCI_ED_H;
1096 }
1097
1098 /* Retire this TD */
1099 ed->head &= ~OHCI_DPTR_MASK;
1100 ed->head |= td.next & OHCI_DPTR_MASK;
1101 td.next = ohci->done;
1102 ohci->done = addr;
1103 i = OHCI_BM(td.flags, TD_DI);
1104 if (i < ohci->done_count)
1105 ohci->done_count = i;
905fb034 1106exit_no_retire:
ac611340 1107 ohci_put_td(ohci, addr, &td);
0d92ed30
PB
1108 return OHCI_BM(td.flags, TD_CC) != OHCI_CC_NOERROR;
1109}
1110
1111/* Service an endpoint list. Returns nonzero if active TD were found. */
7bfe5777 1112static int ohci_service_ed_list(OHCIState *ohci, uint32_t head, int completion)
0d92ed30
PB
1113{
1114 struct ohci_ed ed;
1115 uint32_t next_ed;
1116 uint32_t cur;
1117 int active;
1118
1119 active = 0;
1120
1121 if (head == 0)
1122 return 0;
1123
1124 for (cur = head; cur; cur = next_ed) {
ac611340 1125 if (!ohci_read_ed(ohci, cur, &ed)) {
0d92ed30
PB
1126 fprintf(stderr, "usb-ohci: ED read error at %x\n", cur);
1127 return 0;
1128 }
1129
1130 next_ed = ed.next & OHCI_DPTR_MASK;
1131
4d611c9a
PB
1132 if ((ed.head & OHCI_ED_H) || (ed.flags & OHCI_ED_K)) {
1133 uint32_t addr;
1134 /* Cancel pending packets for ED that have been paused. */
1135 addr = ed.head & OHCI_DPTR_MASK;
1136 if (ohci->async_td && addr == ohci->async_td) {
1137 usb_cancel_packet(&ohci->usb_packet);
1138 ohci->async_td = 0;
1139 }
0d92ed30 1140 continue;
4d611c9a 1141 }
0d92ed30 1142
0d92ed30
PB
1143 while ((ed.head & OHCI_DPTR_MASK) != ed.tail) {
1144#ifdef DEBUG_PACKET
d0f2c4c6 1145 DPRINTF("ED @ 0x%.8x fa=%u en=%u d=%u s=%u k=%u f=%u mps=%u "
0d92ed30
PB
1146 "h=%u c=%u\n head=0x%.8x tailp=0x%.8x next=0x%.8x\n", cur,
1147 OHCI_BM(ed.flags, ED_FA), OHCI_BM(ed.flags, ED_EN),
1148 OHCI_BM(ed.flags, ED_D), (ed.flags & OHCI_ED_S)!= 0,
1149 (ed.flags & OHCI_ED_K) != 0, (ed.flags & OHCI_ED_F) != 0,
1150 OHCI_BM(ed.flags, ED_MPS), (ed.head & OHCI_ED_H) != 0,
1151 (ed.head & OHCI_ED_C) != 0, ed.head & OHCI_DPTR_MASK,
1152 ed.tail & OHCI_DPTR_MASK, ed.next & OHCI_DPTR_MASK);
1153#endif
1154 active = 1;
1155
7bfe5777
AZ
1156 if ((ed.flags & OHCI_ED_F) == 0) {
1157 if (ohci_service_td(ohci, &ed))
1158 break;
1159 } else {
1160 /* Handle isochronous endpoints */
1161 if (ohci_service_iso_td(ohci, &ed, completion))
1162 break;
1163 }
0d92ed30
PB
1164 }
1165
ac611340 1166 ohci_put_ed(ohci, cur, &ed);
0d92ed30
PB
1167 }
1168
1169 return active;
1170}
1171
1172/* Generate a SOF event, and set a timer for EOF */
1173static void ohci_sof(OHCIState *ohci)
1174{
74475455 1175 ohci->sof_time = qemu_get_clock_ns(vm_clock);
0d92ed30
PB
1176 qemu_mod_timer(ohci->eof_timer, ohci->sof_time + usb_frame_time);
1177 ohci_set_interrupt(ohci, OHCI_INTR_SF);
1178}
1179
4d611c9a 1180/* Process Control and Bulk lists. */
7bfe5777 1181static void ohci_process_lists(OHCIState *ohci, int completion)
4d611c9a
PB
1182{
1183 if ((ohci->ctl & OHCI_CTL_CLE) && (ohci->status & OHCI_STATUS_CLF)) {
6ad6135d
BS
1184 if (ohci->ctrl_cur && ohci->ctrl_cur != ohci->ctrl_head) {
1185 DPRINTF("usb-ohci: head %x, cur %x\n",
1186 ohci->ctrl_head, ohci->ctrl_cur);
1187 }
7bfe5777 1188 if (!ohci_service_ed_list(ohci, ohci->ctrl_head, completion)) {
4d611c9a
PB
1189 ohci->ctrl_cur = 0;
1190 ohci->status &= ~OHCI_STATUS_CLF;
1191 }
1192 }
1193
1194 if ((ohci->ctl & OHCI_CTL_BLE) && (ohci->status & OHCI_STATUS_BLF)) {
7bfe5777 1195 if (!ohci_service_ed_list(ohci, ohci->bulk_head, completion)) {
4d611c9a
PB
1196 ohci->bulk_cur = 0;
1197 ohci->status &= ~OHCI_STATUS_BLF;
1198 }
1199 }
1200}
1201
0d92ed30
PB
1202/* Do frame processing on frame boundary */
1203static void ohci_frame_boundary(void *opaque)
1204{
1205 OHCIState *ohci = opaque;
1206 struct ohci_hcca hcca;
1207
ac611340 1208 ohci_read_hcca(ohci, ohci->hcca, &hcca);
0d92ed30
PB
1209
1210 /* Process all the lists at the end of the frame */
1211 if (ohci->ctl & OHCI_CTL_PLE) {
1212 int n;
1213
1214 n = ohci->frame_number & 0x1f;
7bfe5777 1215 ohci_service_ed_list(ohci, le32_to_cpu(hcca.intr[n]), 0);
0d92ed30 1216 }
0d92ed30 1217
4d611c9a
PB
1218 /* Cancel all pending packets if either of the lists has been disabled. */
1219 if (ohci->async_td &&
1220 ohci->old_ctl & (~ohci->ctl) & (OHCI_CTL_BLE | OHCI_CTL_CLE)) {
1221 usb_cancel_packet(&ohci->usb_packet);
1222 ohci->async_td = 0;
0d92ed30 1223 }
4d611c9a 1224 ohci->old_ctl = ohci->ctl;
7bfe5777 1225 ohci_process_lists(ohci, 0);
0d92ed30
PB
1226
1227 /* Frame boundary, so do EOF stuf here */
1228 ohci->frt = ohci->fit;
1229
1fa63e43 1230 /* Increment frame number and take care of endianness. */
0d92ed30 1231 ohci->frame_number = (ohci->frame_number + 1) & 0xffff;
1fa63e43 1232 hcca.frame = cpu_to_le16(ohci->frame_number);
0d92ed30
PB
1233
1234 if (ohci->done_count == 0 && !(ohci->intr_status & OHCI_INTR_WD)) {
1235 if (!ohci->done)
1236 abort();
1237 if (ohci->intr & ohci->intr_status)
1238 ohci->done |= 1;
1239 hcca.done = cpu_to_le32(ohci->done);
1240 ohci->done = 0;
1241 ohci->done_count = 7;
1242 ohci_set_interrupt(ohci, OHCI_INTR_WD);
1243 }
1244
1245 if (ohci->done_count != 7 && ohci->done_count != 0)
1246 ohci->done_count--;
1247
1248 /* Do SOF stuff here */
1249 ohci_sof(ohci);
1250
1251 /* Writeback HCCA */
ac611340 1252 ohci_put_hcca(ohci, ohci->hcca, &hcca);
0d92ed30
PB
1253}
1254
1255/* Start sending SOF tokens across the USB bus, lists are processed in
1256 * next frame
1257 */
1258static int ohci_bus_start(OHCIState *ohci)
1259{
74475455 1260 ohci->eof_timer = qemu_new_timer_ns(vm_clock,
0d92ed30
PB
1261 ohci_frame_boundary,
1262 ohci);
1263
1264 if (ohci->eof_timer == NULL) {
74475455 1265 fprintf(stderr, "usb-ohci: %s: qemu_new_timer_ns failed\n", ohci->name);
0d92ed30
PB
1266 /* TODO: Signal unrecoverable error */
1267 return 0;
1268 }
1269
d0f2c4c6 1270 DPRINTF("usb-ohci: %s: USB Operational\n", ohci->name);
0d92ed30
PB
1271
1272 ohci_sof(ohci);
1273
1274 return 1;
1275}
1276
1277/* Stop sending SOF tokens on the bus */
1278static void ohci_bus_stop(OHCIState *ohci)
1279{
1280 if (ohci->eof_timer)
1281 qemu_del_timer(ohci->eof_timer);
73221b12 1282 ohci->eof_timer = NULL;
0d92ed30
PB
1283}
1284
1285/* Sets a flag in a port status register but only set it if the port is
1286 * connected, if not set ConnectStatusChange flag. If flag is enabled
1287 * return 1.
1288 */
1289static int ohci_port_set_if_connected(OHCIState *ohci, int i, uint32_t val)
1290{
1291 int ret = 1;
1292
1293 /* writing a 0 has no effect */
1294 if (val == 0)
1295 return 0;
1296
1297 /* If CurrentConnectStatus is cleared we set
1298 * ConnectStatusChange
1299 */
1300 if (!(ohci->rhport[i].ctrl & OHCI_PORT_CCS)) {
1301 ohci->rhport[i].ctrl |= OHCI_PORT_CSC;
1302 if (ohci->rhstatus & OHCI_RHS_DRWE) {
1303 /* TODO: CSC is a wakeup event */
1304 }
1305 return 0;
1306 }
1307
1308 if (ohci->rhport[i].ctrl & val)
1309 ret = 0;
1310
1311 /* set the bit */
1312 ohci->rhport[i].ctrl |= val;
1313
1314 return ret;
1315}
1316
1317/* Set the frame interval - frame interval toggle is manipulated by the hcd only */
1318static void ohci_set_frame_interval(OHCIState *ohci, uint16_t val)
1319{
1320 val &= OHCI_FMI_FI;
1321
1322 if (val != ohci->fi) {
d0f2c4c6 1323 DPRINTF("usb-ohci: %s: FrameInterval = 0x%x (%u)\n",
e24ad6f1 1324 ohci->name, ohci->fi, ohci->fi);
0d92ed30
PB
1325 }
1326
1327 ohci->fi = val;
1328}
1329
1330static void ohci_port_power(OHCIState *ohci, int i, int p)
1331{
1332 if (p) {
1333 ohci->rhport[i].ctrl |= OHCI_PORT_PPS;
1334 } else {
1335 ohci->rhport[i].ctrl &= ~(OHCI_PORT_PPS|
1336 OHCI_PORT_CCS|
1337 OHCI_PORT_PSS|
1338 OHCI_PORT_PRS);
1339 }
1340}
1341
1342/* Set HcControlRegister */
1343static void ohci_set_ctl(OHCIState *ohci, uint32_t val)
1344{
1345 uint32_t old_state;
1346 uint32_t new_state;
1347
1348 old_state = ohci->ctl & OHCI_CTL_HCFS;
1349 ohci->ctl = val;
1350 new_state = ohci->ctl & OHCI_CTL_HCFS;
1351
1352 /* no state change */
1353 if (old_state == new_state)
1354 return;
1355
1356 switch (new_state) {
1357 case OHCI_USB_OPERATIONAL:
1358 ohci_bus_start(ohci);
1359 break;
1360 case OHCI_USB_SUSPEND:
1361 ohci_bus_stop(ohci);
d0f2c4c6 1362 DPRINTF("usb-ohci: %s: USB Suspended\n", ohci->name);
0d92ed30
PB
1363 break;
1364 case OHCI_USB_RESUME:
d0f2c4c6 1365 DPRINTF("usb-ohci: %s: USB Resume\n", ohci->name);
0d92ed30
PB
1366 break;
1367 case OHCI_USB_RESET:
73221b12 1368 ohci_reset(ohci);
d0f2c4c6 1369 DPRINTF("usb-ohci: %s: USB Reset\n", ohci->name);
0d92ed30
PB
1370 break;
1371 }
1372}
1373
1374static uint32_t ohci_get_frame_remaining(OHCIState *ohci)
1375{
1376 uint16_t fr;
1377 int64_t tks;
1378
1379 if ((ohci->ctl & OHCI_CTL_HCFS) != OHCI_USB_OPERATIONAL)
1380 return (ohci->frt << 31);
1381
1382 /* Being in USB operational state guarnatees sof_time was
1383 * set already.
1384 */
74475455 1385 tks = qemu_get_clock_ns(vm_clock) - ohci->sof_time;
0d92ed30
PB
1386
1387 /* avoid muldiv if possible */
1388 if (tks >= usb_frame_time)
1389 return (ohci->frt << 31);
1390
1391 tks = muldiv64(1, tks, usb_bit_time);
1392 fr = (uint16_t)(ohci->fi - tks);
1393
1394 return (ohci->frt << 31) | fr;
1395}
1396
1397
1398/* Set root hub status */
1399static void ohci_set_hub_status(OHCIState *ohci, uint32_t val)
1400{
1401 uint32_t old_state;
1402
1403 old_state = ohci->rhstatus;
1404
1405 /* write 1 to clear OCIC */
1406 if (val & OHCI_RHS_OCIC)
1407 ohci->rhstatus &= ~OHCI_RHS_OCIC;
1408
1409 if (val & OHCI_RHS_LPS) {
1410 int i;
1411
1412 for (i = 0; i < ohci->num_ports; i++)
1413 ohci_port_power(ohci, i, 0);
d0f2c4c6 1414 DPRINTF("usb-ohci: powered down all ports\n");
0d92ed30
PB
1415 }
1416
1417 if (val & OHCI_RHS_LPSC) {
1418 int i;
1419
1420 for (i = 0; i < ohci->num_ports; i++)
1421 ohci_port_power(ohci, i, 1);
d0f2c4c6 1422 DPRINTF("usb-ohci: powered up all ports\n");
0d92ed30
PB
1423 }
1424
1425 if (val & OHCI_RHS_DRWE)
1426 ohci->rhstatus |= OHCI_RHS_DRWE;
1427
1428 if (val & OHCI_RHS_CRWE)
1429 ohci->rhstatus &= ~OHCI_RHS_DRWE;
1430
1431 if (old_state != ohci->rhstatus)
1432 ohci_set_interrupt(ohci, OHCI_INTR_RHSC);
1433}
1434
1435/* Set root hub port status */
1436static void ohci_port_set_status(OHCIState *ohci, int portnum, uint32_t val)
1437{
1438 uint32_t old_state;
1439 OHCIPort *port;
1440
1441 port = &ohci->rhport[portnum];
1442 old_state = port->ctrl;
1443
1444 /* Write to clear CSC, PESC, PSSC, OCIC, PRSC */
1445 if (val & OHCI_PORT_WTC)
1446 port->ctrl &= ~(val & OHCI_PORT_WTC);
1447
1448 if (val & OHCI_PORT_CCS)
1449 port->ctrl &= ~OHCI_PORT_PES;
1450
1451 ohci_port_set_if_connected(ohci, portnum, val & OHCI_PORT_PES);
1452
6ad6135d 1453 if (ohci_port_set_if_connected(ohci, portnum, val & OHCI_PORT_PSS)) {
d0f2c4c6 1454 DPRINTF("usb-ohci: port %d: SUSPEND\n", portnum);
6ad6135d 1455 }
0d92ed30
PB
1456
1457 if (ohci_port_set_if_connected(ohci, portnum, val & OHCI_PORT_PRS)) {
d0f2c4c6 1458 DPRINTF("usb-ohci: port %d: RESET\n", portnum);
d28f4e2d 1459 usb_device_reset(port->port.dev);
0d92ed30
PB
1460 port->ctrl &= ~OHCI_PORT_PRS;
1461 /* ??? Should this also set OHCI_PORT_PESC. */
1462 port->ctrl |= OHCI_PORT_PES | OHCI_PORT_PRSC;
1463 }
1464
1465 /* Invert order here to ensure in ambiguous case, device is
1466 * powered up...
1467 */
1468 if (val & OHCI_PORT_LSDA)
1469 ohci_port_power(ohci, portnum, 0);
1470 if (val & OHCI_PORT_PPS)
1471 ohci_port_power(ohci, portnum, 1);
1472
1473 if (old_state != port->ctrl)
1474 ohci_set_interrupt(ohci, OHCI_INTR_RHSC);
0d92ed30
PB
1475}
1476
6da48311 1477static uint64_t ohci_mem_read(void *opaque,
a8170e5e 1478 hwaddr addr,
6da48311 1479 unsigned size)
0d92ed30 1480{
6da48311 1481 OHCIState *ohci = opaque;
65e1d81b 1482 uint32_t retval;
0d92ed30 1483
0d92ed30
PB
1484 /* Only aligned reads are allowed on OHCI */
1485 if (addr & 3) {
1486 fprintf(stderr, "usb-ohci: Mis-aligned read\n");
1487 return 0xffffffff;
65e1d81b 1488 } else if (addr >= 0x54 && addr < 0x54 + ohci->num_ports * 4) {
0d92ed30 1489 /* HcRhPortStatus */
65e1d81b
AJ
1490 retval = ohci->rhport[(addr - 0x54) >> 2].ctrl | OHCI_PORT_PPS;
1491 } else {
1492 switch (addr >> 2) {
1493 case 0: /* HcRevision */
1494 retval = 0x10;
1495 break;
1496
1497 case 1: /* HcControl */
1498 retval = ohci->ctl;
1499 break;
1500
1501 case 2: /* HcCommandStatus */
1502 retval = ohci->status;
1503 break;
1504
1505 case 3: /* HcInterruptStatus */
1506 retval = ohci->intr_status;
1507 break;
1508
1509 case 4: /* HcInterruptEnable */
1510 case 5: /* HcInterruptDisable */
1511 retval = ohci->intr;
1512 break;
1513
1514 case 6: /* HcHCCA */
1515 retval = ohci->hcca;
1516 break;
1517
1518 case 7: /* HcPeriodCurrentED */
1519 retval = ohci->per_cur;
1520 break;
1521
1522 case 8: /* HcControlHeadED */
1523 retval = ohci->ctrl_head;
1524 break;
1525
1526 case 9: /* HcControlCurrentED */
1527 retval = ohci->ctrl_cur;
1528 break;
1529
1530 case 10: /* HcBulkHeadED */
1531 retval = ohci->bulk_head;
1532 break;
1533
1534 case 11: /* HcBulkCurrentED */
1535 retval = ohci->bulk_cur;
1536 break;
1537
1538 case 12: /* HcDoneHead */
1539 retval = ohci->done;
1540 break;
1541
1542 case 13: /* HcFmInterretval */
1543 retval = (ohci->fit << 31) | (ohci->fsmps << 16) | (ohci->fi);
1544 break;
1545
1546 case 14: /* HcFmRemaining */
1547 retval = ohci_get_frame_remaining(ohci);
1548 break;
1549
1550 case 15: /* HcFmNumber */
1551 retval = ohci->frame_number;
1552 break;
1553
1554 case 16: /* HcPeriodicStart */
1555 retval = ohci->pstart;
1556 break;
1557
1558 case 17: /* HcLSThreshold */
1559 retval = ohci->lst;
1560 break;
1561
1562 case 18: /* HcRhDescriptorA */
1563 retval = ohci->rhdesc_a;
1564 break;
1565
1566 case 19: /* HcRhDescriptorB */
1567 retval = ohci->rhdesc_b;
1568 break;
1569
1570 case 20: /* HcRhStatus */
1571 retval = ohci->rhstatus;
1572 break;
1573
1574 /* PXA27x specific registers */
1575 case 24: /* HcStatus */
1576 retval = ohci->hstatus & ohci->hmask;
1577 break;
1578
1579 case 25: /* HcHReset */
1580 retval = ohci->hreset;
1581 break;
1582
1583 case 26: /* HcHInterruptEnable */
1584 retval = ohci->hmask;
1585 break;
1586
1587 case 27: /* HcHInterruptTest */
1588 retval = ohci->htest;
1589 break;
1590
1591 default:
1592 fprintf(stderr, "ohci_read: Bad offset %x\n", (int)addr);
1593 retval = 0xffffffff;
1594 }
0d92ed30
PB
1595 }
1596
65e1d81b 1597 return retval;
0d92ed30
PB
1598}
1599
6da48311 1600static void ohci_mem_write(void *opaque,
a8170e5e 1601 hwaddr addr,
6da48311
AK
1602 uint64_t val,
1603 unsigned size)
0d92ed30 1604{
6da48311 1605 OHCIState *ohci = opaque;
09564574 1606
0d92ed30
PB
1607 /* Only aligned reads are allowed on OHCI */
1608 if (addr & 3) {
1609 fprintf(stderr, "usb-ohci: Mis-aligned write\n");
1610 return;
1611 }
1612
1613 if (addr >= 0x54 && addr < 0x54 + ohci->num_ports * 4) {
1614 /* HcRhPortStatus */
1615 ohci_port_set_status(ohci, (addr - 0x54) >> 2, val);
1616 return;
1617 }
1618
1619 switch (addr >> 2) {
1620 case 1: /* HcControl */
1621 ohci_set_ctl(ohci, val);
1622 break;
1623
1624 case 2: /* HcCommandStatus */
1625 /* SOC is read-only */
1626 val = (val & ~OHCI_STATUS_SOC);
1627
1628 /* Bits written as '0' remain unchanged in the register */
1629 ohci->status |= val;
1630
1631 if (ohci->status & OHCI_STATUS_HCR)
1632 ohci_reset(ohci);
1633 break;
1634
1635 case 3: /* HcInterruptStatus */
1636 ohci->intr_status &= ~val;
1637 ohci_intr_update(ohci);
1638 break;
1639
1640 case 4: /* HcInterruptEnable */
1641 ohci->intr |= val;
1642 ohci_intr_update(ohci);
1643 break;
1644
1645 case 5: /* HcInterruptDisable */
1646 ohci->intr &= ~val;
1647 ohci_intr_update(ohci);
1648 break;
1649
1650 case 6: /* HcHCCA */
1651 ohci->hcca = val & OHCI_HCCA_MASK;
1652 break;
1653
4b0315d7
PM
1654 case 7: /* HcPeriodCurrentED */
1655 /* Ignore writes to this read-only register, Linux does them */
1656 break;
1657
0d92ed30
PB
1658 case 8: /* HcControlHeadED */
1659 ohci->ctrl_head = val & OHCI_EDPTR_MASK;
1660 break;
1661
1662 case 9: /* HcControlCurrentED */
1663 ohci->ctrl_cur = val & OHCI_EDPTR_MASK;
1664 break;
1665
1666 case 10: /* HcBulkHeadED */
1667 ohci->bulk_head = val & OHCI_EDPTR_MASK;
1668 break;
1669
1670 case 11: /* HcBulkCurrentED */
1671 ohci->bulk_cur = val & OHCI_EDPTR_MASK;
1672 break;
1673
1674 case 13: /* HcFmInterval */
1675 ohci->fsmps = (val & OHCI_FMI_FSMPS) >> 16;
1676 ohci->fit = (val & OHCI_FMI_FIT) >> 31;
1677 ohci_set_frame_interval(ohci, val);
1678 break;
1679
7bfe5777
AZ
1680 case 15: /* HcFmNumber */
1681 break;
1682
0d92ed30
PB
1683 case 16: /* HcPeriodicStart */
1684 ohci->pstart = val & 0xffff;
1685 break;
1686
1687 case 17: /* HcLSThreshold */
1688 ohci->lst = val & 0xffff;
1689 break;
1690
1691 case 18: /* HcRhDescriptorA */
1692 ohci->rhdesc_a &= ~OHCI_RHA_RW_MASK;
1693 ohci->rhdesc_a |= val & OHCI_RHA_RW_MASK;
1694 break;
1695
1696 case 19: /* HcRhDescriptorB */
1697 break;
1698
1699 case 20: /* HcRhStatus */
1700 ohci_set_hub_status(ohci, val);
1701 break;
1702
e24ad6f1
PB
1703 /* PXA27x specific registers */
1704 case 24: /* HcStatus */
1705 ohci->hstatus &= ~(val & ohci->hmask);
1706
1707 case 25: /* HcHReset */
1708 ohci->hreset = val & ~OHCI_HRESET_FSBIR;
1709 if (val & OHCI_HRESET_FSBIR)
1710 ohci_reset(ohci);
1711 break;
1712
1713 case 26: /* HcHInterruptEnable */
1714 ohci->hmask = val;
1715 break;
1716
1717 case 27: /* HcHInterruptTest */
1718 ohci->htest = val;
1719 break;
1720
0d92ed30
PB
1721 default:
1722 fprintf(stderr, "ohci_write: Bad offset %x\n", (int)addr);
1723 break;
1724 }
1725}
1726
4706ab6c 1727static void ohci_async_cancel_device(OHCIState *ohci, USBDevice *dev)
07771f6f 1728{
25d5de7d 1729 if (ohci->async_td &&
f53c398a
GH
1730 usb_packet_is_inflight(&ohci->usb_packet) &&
1731 ohci->usb_packet.ep->dev == dev) {
07771f6f
GH
1732 usb_cancel_packet(&ohci->usb_packet);
1733 ohci->async_td = 0;
1734 }
1735}
1736
6da48311
AK
1737static const MemoryRegionOps ohci_mem_ops = {
1738 .read = ohci_mem_read,
1739 .write = ohci_mem_write,
1740 .endianness = DEVICE_LITTLE_ENDIAN,
0d92ed30
PB
1741};
1742
0d86d2be
GH
1743static USBPortOps ohci_port_ops = {
1744 .attach = ohci_attach,
618c169b 1745 .detach = ohci_detach,
4706ab6c 1746 .child_detach = ohci_child_detach,
9bba1eb1 1747 .wakeup = ohci_wakeup,
13a9a0d3 1748 .complete = ohci_async_complete_packet,
0d86d2be
GH
1749};
1750
07771f6f 1751static USBBusOps ohci_bus_ops = {
07771f6f
GH
1752};
1753
9c9fc334 1754static int usb_ohci_init(OHCIState *ohci, DeviceState *dev,
9ac6a217
DG
1755 int num_ports, dma_addr_t localmem_base,
1756 char *masterbus, uint32_t firstport,
1757 DMAContext *dma)
0d92ed30 1758{
0d92ed30
PB
1759 int i;
1760
9ac6a217
DG
1761 ohci->dma = dma;
1762
0d92ed30 1763 if (usb_frame_time == 0) {
eb38c52c 1764#ifdef OHCI_TIME_WARP
6ee093c9
JQ
1765 usb_frame_time = get_ticks_per_sec();
1766 usb_bit_time = muldiv64(1, get_ticks_per_sec(), USB_HZ/1000);
0d92ed30 1767#else
6ee093c9
JQ
1768 usb_frame_time = muldiv64(1, get_ticks_per_sec(), 1000);
1769 if (get_ticks_per_sec() >= USB_HZ) {
1770 usb_bit_time = muldiv64(1, get_ticks_per_sec(), USB_HZ);
0d92ed30
PB
1771 } else {
1772 usb_bit_time = 1;
1773 }
1774#endif
d0f2c4c6 1775 DPRINTF("usb-ohci: usb_bit_time=%" PRId64 " usb_frame_time=%" PRId64 "\n",
0d92ed30
PB
1776 usb_frame_time, usb_bit_time);
1777 }
1778
9c9fc334
HG
1779 ohci->num_ports = num_ports;
1780 if (masterbus) {
1781 USBPort *ports[OHCI_MAX_PORTS];
1782 for(i = 0; i < num_ports; i++) {
1783 ports[i] = &ohci->rhport[i].port;
1784 }
1785 if (usb_register_companion(masterbus, ports, num_ports,
1786 firstport, ohci, &ohci_port_ops,
1787 USB_SPEED_MASK_LOW | USB_SPEED_MASK_FULL) != 0) {
1788 return -1;
1789 }
1790 } else {
1791 usb_bus_new(&ohci->bus, &ohci_bus_ops, dev);
1792 for (i = 0; i < num_ports; i++) {
1793 usb_register_port(&ohci->bus, &ohci->rhport[i].port,
1794 ohci, i, &ohci_port_ops,
1795 USB_SPEED_MASK_LOW | USB_SPEED_MASK_FULL);
1796 }
1797 }
1798
6da48311 1799 memory_region_init_io(&ohci->mem, &ohci_mem_ops, ohci, "ohci", 256);
ac611340 1800 ohci->localmem_base = localmem_base;
e24ad6f1 1801
f79f2bfc 1802 ohci->name = object_get_typename(OBJECT(dev));
4f4321c1 1803 usb_packet_init(&ohci->usb_packet);
e24ad6f1 1804
e24ad6f1 1805 ohci->async_td = 0;
a08d4367 1806 qemu_register_reset(ohci_reset, ohci);
9c9fc334
HG
1807
1808 return 0;
e24ad6f1
PB
1809}
1810
1811typedef struct {
1812 PCIDevice pci_dev;
1813 OHCIState state;
9c9fc334
HG
1814 char *masterbus;
1815 uint32_t num_ports;
1816 uint32_t firstport;
e24ad6f1
PB
1817} OHCIPCIState;
1818
5b19d9a2 1819static int usb_ohci_initfn_pci(struct PCIDevice *dev)
e24ad6f1 1820{
5b19d9a2 1821 OHCIPCIState *ohci = DO_UPCAST(OHCIPCIState, pci_dev, dev);
0d92ed30 1822
d74dbb94 1823 ohci->pci_dev.config[PCI_CLASS_PROG] = 0x10; /* OHCI */
817e0b6f 1824 ohci->pci_dev.config[PCI_INTERRUPT_PIN] = 0x01; /* interrupt pin A */
0d92ed30 1825
9c9fc334 1826 if (usb_ohci_init(&ohci->state, &dev->qdev, ohci->num_ports, 0,
9ac6a217
DG
1827 ohci->masterbus, ohci->firstport,
1828 pci_dma_context(dev)) != 0) {
9c9fc334
HG
1829 return -1;
1830 }
61d3cf93 1831 ohci->state.irq = ohci->pci_dev.irq[0];
0d92ed30 1832
d74dbb94 1833 /* TODO: avoid cast below by using dev */
e824b2cc 1834 pci_register_bar(&ohci->pci_dev, 0, 0, &ohci->state.mem);
5b19d9a2
GH
1835 return 0;
1836}
1837
61d3cf93
PB
1838typedef struct {
1839 SysBusDevice busdev;
1840 OHCIState ohci;
1841 uint32_t num_ports;
9ac6a217 1842 dma_addr_t dma_offset;
61d3cf93 1843} OHCISysBusState;
ac611340 1844
61d3cf93 1845static int ohci_init_pxa(SysBusDevice *dev)
ac611340 1846{
61d3cf93 1847 OHCISysBusState *s = FROM_SYSBUS(OHCISysBusState, dev);
ac611340 1848
9c9fc334 1849 /* Cannot fail as we pass NULL for masterbus */
9ac6a217
DG
1850 usb_ohci_init(&s->ohci, &dev->qdev, s->num_ports, s->dma_offset, NULL, 0,
1851 NULL);
61d3cf93 1852 sysbus_init_irq(dev, &s->ohci.irq);
750ecd44 1853 sysbus_init_mmio(dev, &s->ohci.mem);
ac611340 1854
61d3cf93 1855 return 0;
ac611340
AJ
1856}
1857
40021f08
AL
1858static Property ohci_pci_properties[] = {
1859 DEFINE_PROP_STRING("masterbus", OHCIPCIState, masterbus),
1860 DEFINE_PROP_UINT32("num-ports", OHCIPCIState, num_ports, 3),
1861 DEFINE_PROP_UINT32("firstport", OHCIPCIState, firstport, 0),
1862 DEFINE_PROP_END_OF_LIST(),
1863};
1864
1865static void ohci_pci_class_init(ObjectClass *klass, void *data)
1866{
39bffca2 1867 DeviceClass *dc = DEVICE_CLASS(klass);
40021f08
AL
1868 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
1869
1870 k->init = usb_ohci_initfn_pci;
1871 k->vendor_id = PCI_VENDOR_ID_APPLE;
1872 k->device_id = PCI_DEVICE_ID_APPLE_IPID_USB;
1873 k->class_id = PCI_CLASS_SERIAL_USB;
39bffca2
AL
1874 dc->desc = "Apple USB Controller";
1875 dc->props = ohci_pci_properties;
40021f08
AL
1876}
1877
39bffca2
AL
1878static TypeInfo ohci_pci_info = {
1879 .name = "pci-ohci",
1880 .parent = TYPE_PCI_DEVICE,
1881 .instance_size = sizeof(OHCIPCIState),
1882 .class_init = ohci_pci_class_init,
1883};
1884
1885static Property ohci_sysbus_properties[] = {
1886 DEFINE_PROP_UINT32("num-ports", OHCISysBusState, num_ports, 3),
9ac6a217 1887 DEFINE_PROP_DMAADDR("dma-offset", OHCISysBusState, dma_offset, 3),
39bffca2 1888 DEFINE_PROP_END_OF_LIST(),
5b19d9a2
GH
1889};
1890
999e12bb
AL
1891static void ohci_sysbus_class_init(ObjectClass *klass, void *data)
1892{
39bffca2 1893 DeviceClass *dc = DEVICE_CLASS(klass);
999e12bb
AL
1894 SysBusDeviceClass *sbc = SYS_BUS_DEVICE_CLASS(klass);
1895
1896 sbc->init = ohci_init_pxa;
39bffca2
AL
1897 dc->desc = "OHCI USB Controller";
1898 dc->props = ohci_sysbus_properties;
999e12bb
AL
1899}
1900
39bffca2
AL
1901static TypeInfo ohci_sysbus_info = {
1902 .name = "sysbus-ohci",
1903 .parent = TYPE_SYS_BUS_DEVICE,
1904 .instance_size = sizeof(OHCISysBusState),
1905 .class_init = ohci_sysbus_class_init,
61d3cf93
PB
1906};
1907
83f7d43a 1908static void ohci_register_types(void)
5b19d9a2 1909{
39bffca2
AL
1910 type_register_static(&ohci_pci_info);
1911 type_register_static(&ohci_sysbus_info);
5b19d9a2 1912}
83f7d43a
AF
1913
1914type_init(ohci_register_types)
This page took 1.075482 seconds and 4 git commands to generate.