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