2 * QEMU USB OHCI Emulation
3 * Copyright (c) 2004 Gianni Tedesco
4 * Copyright (c) 2006 CodeSourcery
5 * Copyright (c) 2006 Openedhand Ltd.
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.
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.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
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
25 * o Handle unrecoverable errors properly
26 * o BIOS work to boot from USB storage
30 #include "qemu-timer.h"
35 #include "qdev-addr.h"
38 /* Dump packet contents. */
39 //#define DEBUG_PACKET
41 /* This causes frames to occur 1000x slower */
42 //#define OHCI_TIME_WARP 1
45 #define DPRINTF printf
50 /* Number of Downstream Ports on the root hub. */
52 #define OHCI_MAX_PORTS 15
54 static int64_t usb_frame_time;
55 static int64_t usb_bit_time;
57 typedef struct OHCIPort {
73 /* Control partition */
78 /* memory pointer partition */
80 uint32_t ctrl_head, ctrl_cur;
81 uint32_t bulk_head, bulk_cur;
86 /* Frame counter partition */
91 uint16_t frame_number;
96 /* Root Hub partition */
97 uint32_t rhdesc_a, rhdesc_b;
99 OHCIPort rhport[OHCI_MAX_PORTS];
101 /* PXA27x Non-OHCI events */
107 /* SM501 local memory offset */
108 target_phys_addr_t localmem_base;
110 /* Active packets. */
112 USBPacket usb_packet;
113 uint8_t usb_buf[8192];
119 /* Host Controller Communications Area */
126 static void ohci_bus_stop(OHCIState *ohci);
128 /* Bitfields for the first word of an Endpoint Desciptor. */
129 #define OHCI_ED_FA_SHIFT 0
130 #define OHCI_ED_FA_MASK (0x7f<<OHCI_ED_FA_SHIFT)
131 #define OHCI_ED_EN_SHIFT 7
132 #define OHCI_ED_EN_MASK (0xf<<OHCI_ED_EN_SHIFT)
133 #define OHCI_ED_D_SHIFT 11
134 #define OHCI_ED_D_MASK (3<<OHCI_ED_D_SHIFT)
135 #define OHCI_ED_S (1<<13)
136 #define OHCI_ED_K (1<<14)
137 #define OHCI_ED_F (1<<15)
138 #define OHCI_ED_MPS_SHIFT 16
139 #define OHCI_ED_MPS_MASK (0x7ff<<OHCI_ED_MPS_SHIFT)
141 /* Flags in the head field of an Endpoint Desciptor. */
145 /* Bitfields for the first word of a Transfer Desciptor. */
146 #define OHCI_TD_R (1<<18)
147 #define OHCI_TD_DP_SHIFT 19
148 #define OHCI_TD_DP_MASK (3<<OHCI_TD_DP_SHIFT)
149 #define OHCI_TD_DI_SHIFT 21
150 #define OHCI_TD_DI_MASK (7<<OHCI_TD_DI_SHIFT)
151 #define OHCI_TD_T0 (1<<24)
152 #define OHCI_TD_T1 (1<<24)
153 #define OHCI_TD_EC_SHIFT 26
154 #define OHCI_TD_EC_MASK (3<<OHCI_TD_EC_SHIFT)
155 #define OHCI_TD_CC_SHIFT 28
156 #define OHCI_TD_CC_MASK (0xf<<OHCI_TD_CC_SHIFT)
158 /* Bitfields for the first word of an Isochronous Transfer Desciptor. */
159 /* CC & DI - same as in the General Transfer Desciptor */
160 #define OHCI_TD_SF_SHIFT 0
161 #define OHCI_TD_SF_MASK (0xffff<<OHCI_TD_SF_SHIFT)
162 #define OHCI_TD_FC_SHIFT 24
163 #define OHCI_TD_FC_MASK (7<<OHCI_TD_FC_SHIFT)
165 /* Isochronous Transfer Desciptor - Offset / PacketStatusWord */
166 #define OHCI_TD_PSW_CC_SHIFT 12
167 #define OHCI_TD_PSW_CC_MASK (0xf<<OHCI_TD_PSW_CC_SHIFT)
168 #define OHCI_TD_PSW_SIZE_SHIFT 0
169 #define OHCI_TD_PSW_SIZE_MASK (0xfff<<OHCI_TD_PSW_SIZE_SHIFT)
171 #define OHCI_PAGE_MASK 0xfffff000
172 #define OHCI_OFFSET_MASK 0xfff
174 #define OHCI_DPTR_MASK 0xfffffff0
176 #define OHCI_BM(val, field) \
177 (((val) & OHCI_##field##_MASK) >> OHCI_##field##_SHIFT)
179 #define OHCI_SET_BM(val, field, newval) do { \
180 val &= ~OHCI_##field##_MASK; \
181 val |= ((newval) << OHCI_##field##_SHIFT) & OHCI_##field##_MASK; \
184 /* endpoint descriptor */
192 /* General transfer descriptor */
200 /* Isochronous transfer descriptor */
209 #define USB_HZ 12000000
211 /* OHCI Local stuff */
212 #define OHCI_CTL_CBSR ((1<<0)|(1<<1))
213 #define OHCI_CTL_PLE (1<<2)
214 #define OHCI_CTL_IE (1<<3)
215 #define OHCI_CTL_CLE (1<<4)
216 #define OHCI_CTL_BLE (1<<5)
217 #define OHCI_CTL_HCFS ((1<<6)|(1<<7))
218 #define OHCI_USB_RESET 0x00
219 #define OHCI_USB_RESUME 0x40
220 #define OHCI_USB_OPERATIONAL 0x80
221 #define OHCI_USB_SUSPEND 0xc0
222 #define OHCI_CTL_IR (1<<8)
223 #define OHCI_CTL_RWC (1<<9)
224 #define OHCI_CTL_RWE (1<<10)
226 #define OHCI_STATUS_HCR (1<<0)
227 #define OHCI_STATUS_CLF (1<<1)
228 #define OHCI_STATUS_BLF (1<<2)
229 #define OHCI_STATUS_OCR (1<<3)
230 #define OHCI_STATUS_SOC ((1<<6)|(1<<7))
232 #define OHCI_INTR_SO (1<<0) /* Scheduling overrun */
233 #define OHCI_INTR_WD (1<<1) /* HcDoneHead writeback */
234 #define OHCI_INTR_SF (1<<2) /* Start of frame */
235 #define OHCI_INTR_RD (1<<3) /* Resume detect */
236 #define OHCI_INTR_UE (1<<4) /* Unrecoverable error */
237 #define OHCI_INTR_FNO (1<<5) /* Frame number overflow */
238 #define OHCI_INTR_RHSC (1<<6) /* Root hub status change */
239 #define OHCI_INTR_OC (1<<30) /* Ownership change */
240 #define OHCI_INTR_MIE (1<<31) /* Master Interrupt Enable */
242 #define OHCI_HCCA_SIZE 0x100
243 #define OHCI_HCCA_MASK 0xffffff00
245 #define OHCI_EDPTR_MASK 0xfffffff0
247 #define OHCI_FMI_FI 0x00003fff
248 #define OHCI_FMI_FSMPS 0xffff0000
249 #define OHCI_FMI_FIT 0x80000000
251 #define OHCI_FR_RT (1<<31)
253 #define OHCI_LS_THRESH 0x628
255 #define OHCI_RHA_RW_MASK 0x00000000 /* Mask of supported features. */
256 #define OHCI_RHA_PSM (1<<8)
257 #define OHCI_RHA_NPS (1<<9)
258 #define OHCI_RHA_DT (1<<10)
259 #define OHCI_RHA_OCPM (1<<11)
260 #define OHCI_RHA_NOCP (1<<12)
261 #define OHCI_RHA_POTPGT_MASK 0xff000000
263 #define OHCI_RHS_LPS (1<<0)
264 #define OHCI_RHS_OCI (1<<1)
265 #define OHCI_RHS_DRWE (1<<15)
266 #define OHCI_RHS_LPSC (1<<16)
267 #define OHCI_RHS_OCIC (1<<17)
268 #define OHCI_RHS_CRWE (1<<31)
270 #define OHCI_PORT_CCS (1<<0)
271 #define OHCI_PORT_PES (1<<1)
272 #define OHCI_PORT_PSS (1<<2)
273 #define OHCI_PORT_POCI (1<<3)
274 #define OHCI_PORT_PRS (1<<4)
275 #define OHCI_PORT_PPS (1<<8)
276 #define OHCI_PORT_LSDA (1<<9)
277 #define OHCI_PORT_CSC (1<<16)
278 #define OHCI_PORT_PESC (1<<17)
279 #define OHCI_PORT_PSSC (1<<18)
280 #define OHCI_PORT_OCIC (1<<19)
281 #define OHCI_PORT_PRSC (1<<20)
282 #define OHCI_PORT_WTC (OHCI_PORT_CSC|OHCI_PORT_PESC|OHCI_PORT_PSSC \
283 |OHCI_PORT_OCIC|OHCI_PORT_PRSC)
285 #define OHCI_TD_DIR_SETUP 0x0
286 #define OHCI_TD_DIR_OUT 0x1
287 #define OHCI_TD_DIR_IN 0x2
288 #define OHCI_TD_DIR_RESERVED 0x3
290 #define OHCI_CC_NOERROR 0x0
291 #define OHCI_CC_CRC 0x1
292 #define OHCI_CC_BITSTUFFING 0x2
293 #define OHCI_CC_DATATOGGLEMISMATCH 0x3
294 #define OHCI_CC_STALL 0x4
295 #define OHCI_CC_DEVICENOTRESPONDING 0x5
296 #define OHCI_CC_PIDCHECKFAILURE 0x6
297 #define OHCI_CC_UNDEXPETEDPID 0x7
298 #define OHCI_CC_DATAOVERRUN 0x8
299 #define OHCI_CC_DATAUNDERRUN 0x9
300 #define OHCI_CC_BUFFEROVERRUN 0xc
301 #define OHCI_CC_BUFFERUNDERRUN 0xd
303 #define OHCI_HRESET_FSBIR (1 << 0)
305 /* Update IRQ levels */
306 static inline void ohci_intr_update(OHCIState *ohci)
310 if ((ohci->intr & OHCI_INTR_MIE) &&
311 (ohci->intr_status & ohci->intr))
314 qemu_set_irq(ohci->irq, level);
317 /* Set an interrupt */
318 static inline void ohci_set_interrupt(OHCIState *ohci, uint32_t intr)
320 ohci->intr_status |= intr;
321 ohci_intr_update(ohci);
324 /* Attach or detach a device on a root hub port. */
325 static void ohci_attach(USBPort *port1)
327 OHCIState *s = port1->opaque;
328 OHCIPort *port = &s->rhport[port1->index];
330 /* set connect status */
331 port->ctrl |= OHCI_PORT_CCS | OHCI_PORT_CSC;
334 if (port->port.dev->speed == USB_SPEED_LOW) {
335 port->ctrl |= OHCI_PORT_LSDA;
337 port->ctrl &= ~OHCI_PORT_LSDA;
340 /* notify of remote-wakeup */
341 if ((s->ctl & OHCI_CTL_HCFS) == OHCI_USB_SUSPEND) {
342 ohci_set_interrupt(s, OHCI_INTR_RD);
345 DPRINTF("usb-ohci: Attached port %d\n", port1->index);
348 static void ohci_detach(USBPort *port1)
350 OHCIState *s = port1->opaque;
351 OHCIPort *port = &s->rhport[port1->index];
352 uint32_t old_state = port->ctrl;
354 /* set connect status */
355 if (port->ctrl & OHCI_PORT_CCS) {
356 port->ctrl &= ~OHCI_PORT_CCS;
357 port->ctrl |= OHCI_PORT_CSC;
360 if (port->ctrl & OHCI_PORT_PES) {
361 port->ctrl &= ~OHCI_PORT_PES;
362 port->ctrl |= OHCI_PORT_PESC;
364 DPRINTF("usb-ohci: Detached port %d\n", port1->index);
366 if (old_state != port->ctrl)
367 ohci_set_interrupt(s, OHCI_INTR_RHSC);
370 static void ohci_wakeup(USBDevice *dev)
372 USBBus *bus = usb_bus_from_device(dev);
373 OHCIState *s = container_of(bus, OHCIState, bus);
374 int portnum = dev->port->index;
375 OHCIPort *port = &s->rhport[portnum];
377 if (port->ctrl & OHCI_PORT_PSS) {
378 DPRINTF("usb-ohci: port %d: wakeup\n", portnum);
379 port->ctrl |= OHCI_PORT_PSSC;
380 port->ctrl &= ~OHCI_PORT_PSS;
381 intr = OHCI_INTR_RHSC;
383 /* Note that the controller can be suspended even if this port is not */
384 if ((s->ctl & OHCI_CTL_HCFS) == OHCI_USB_SUSPEND) {
385 DPRINTF("usb-ohci: remote-wakeup: SUSPEND->RESUME\n");
386 /* This is the one state transition the controller can do by itself */
387 s->ctl &= ~OHCI_CTL_HCFS;
388 s->ctl |= OHCI_USB_RESUME;
389 /* In suspend mode only ResumeDetected is possible, not RHSC:
390 * see the OHCI spec 5.1.2.3.
394 ohci_set_interrupt(s, intr);
397 /* Reset the controller */
398 static void ohci_reset(void *opaque)
400 OHCIState *ohci = opaque;
408 ohci->intr_status = 0;
409 ohci->intr = OHCI_INTR_MIE;
412 ohci->ctrl_head = ohci->ctrl_cur = 0;
413 ohci->bulk_head = ohci->bulk_cur = 0;
416 ohci->done_count = 7;
418 /* FSMPS is marked TBD in OCHI 1.0, what gives ffs?
419 * I took the value linux sets ...
421 ohci->fsmps = 0x2778;
425 ohci->frame_number = 0;
427 ohci->lst = OHCI_LS_THRESH;
429 ohci->rhdesc_a = OHCI_RHA_NPS | ohci->num_ports;
430 ohci->rhdesc_b = 0x0; /* Impl. specific */
433 for (i = 0; i < ohci->num_ports; i++)
435 port = &ohci->rhport[i];
437 if (port->port.dev) {
438 usb_attach(&port->port, port->port.dev);
441 if (ohci->async_td) {
442 usb_cancel_packet(&ohci->usb_packet);
445 DPRINTF("usb-ohci: Reset %s\n", ohci->name);
448 /* Get an array of dwords from main memory */
449 static inline int get_dwords(OHCIState *ohci,
450 uint32_t addr, uint32_t *buf, int num)
454 addr += ohci->localmem_base;
456 for (i = 0; i < num; i++, buf++, addr += sizeof(*buf)) {
457 cpu_physical_memory_read(addr, buf, sizeof(*buf));
458 *buf = le32_to_cpu(*buf);
464 /* Put an array of dwords in to main memory */
465 static inline int put_dwords(OHCIState *ohci,
466 uint32_t addr, uint32_t *buf, int num)
470 addr += ohci->localmem_base;
472 for (i = 0; i < num; i++, buf++, addr += sizeof(*buf)) {
473 uint32_t tmp = cpu_to_le32(*buf);
474 cpu_physical_memory_write(addr, &tmp, sizeof(tmp));
480 /* Get an array of words from main memory */
481 static inline int get_words(OHCIState *ohci,
482 uint32_t addr, uint16_t *buf, int num)
486 addr += ohci->localmem_base;
488 for (i = 0; i < num; i++, buf++, addr += sizeof(*buf)) {
489 cpu_physical_memory_read(addr, buf, sizeof(*buf));
490 *buf = le16_to_cpu(*buf);
496 /* Put an array of words in to main memory */
497 static inline int put_words(OHCIState *ohci,
498 uint32_t addr, uint16_t *buf, int num)
502 addr += ohci->localmem_base;
504 for (i = 0; i < num; i++, buf++, addr += sizeof(*buf)) {
505 uint16_t tmp = cpu_to_le16(*buf);
506 cpu_physical_memory_write(addr, &tmp, sizeof(tmp));
512 static inline int ohci_read_ed(OHCIState *ohci,
513 uint32_t addr, struct ohci_ed *ed)
515 return get_dwords(ohci, addr, (uint32_t *)ed, sizeof(*ed) >> 2);
518 static inline int ohci_read_td(OHCIState *ohci,
519 uint32_t addr, struct ohci_td *td)
521 return get_dwords(ohci, addr, (uint32_t *)td, sizeof(*td) >> 2);
524 static inline int ohci_read_iso_td(OHCIState *ohci,
525 uint32_t addr, struct ohci_iso_td *td)
527 return (get_dwords(ohci, addr, (uint32_t *)td, 4) &&
528 get_words(ohci, addr + 16, td->offset, 8));
531 static inline int ohci_read_hcca(OHCIState *ohci,
532 uint32_t addr, struct ohci_hcca *hcca)
534 cpu_physical_memory_read(addr + ohci->localmem_base, hcca, sizeof(*hcca));
538 static inline int ohci_put_ed(OHCIState *ohci,
539 uint32_t addr, struct ohci_ed *ed)
541 return put_dwords(ohci, addr, (uint32_t *)ed, sizeof(*ed) >> 2);
544 static inline int ohci_put_td(OHCIState *ohci,
545 uint32_t addr, struct ohci_td *td)
547 return put_dwords(ohci, addr, (uint32_t *)td, sizeof(*td) >> 2);
550 static inline int ohci_put_iso_td(OHCIState *ohci,
551 uint32_t addr, struct ohci_iso_td *td)
553 return (put_dwords(ohci, addr, (uint32_t *)td, 4) &&
554 put_words(ohci, addr + 16, td->offset, 8));
557 static inline int ohci_put_hcca(OHCIState *ohci,
558 uint32_t addr, struct ohci_hcca *hcca)
560 cpu_physical_memory_write(addr + ohci->localmem_base, hcca, sizeof(*hcca));
564 /* Read/Write the contents of a TD from/to main memory. */
565 static void ohci_copy_td(OHCIState *ohci, struct ohci_td *td,
566 uint8_t *buf, int len, int write)
572 n = 0x1000 - (ptr & 0xfff);
575 cpu_physical_memory_rw(ptr + ohci->localmem_base, buf, n, write);
578 ptr = td->be & ~0xfffu;
580 cpu_physical_memory_rw(ptr + ohci->localmem_base, buf, len - n, write);
583 /* Read/Write the contents of an ISO TD from/to main memory. */
584 static void ohci_copy_iso_td(OHCIState *ohci,
585 uint32_t start_addr, uint32_t end_addr,
586 uint8_t *buf, int len, int write)
592 n = 0x1000 - (ptr & 0xfff);
595 cpu_physical_memory_rw(ptr + ohci->localmem_base, buf, n, write);
598 ptr = end_addr & ~0xfffu;
600 cpu_physical_memory_rw(ptr + ohci->localmem_base, buf, len - n, write);
603 static void ohci_process_lists(OHCIState *ohci, int completion);
605 static void ohci_async_complete_packet(USBDevice *dev, USBPacket *packet)
607 OHCIState *ohci = container_of(packet, OHCIState, usb_packet);
609 DPRINTF("Async packet complete\n");
611 ohci->async_complete = 1;
612 ohci_process_lists(ohci, 1);
615 #define USUB(a, b) ((int16_t)((uint16_t)(a) - (uint16_t)(b)))
617 static int ohci_service_iso_td(OHCIState *ohci, struct ohci_ed *ed,
623 const char *str = NULL;
629 struct ohci_iso_td iso_td;
631 uint16_t starting_frame;
632 int16_t relative_frame_number;
634 uint32_t start_offset, next_offset, end_offset = 0;
635 uint32_t start_addr, end_addr;
637 addr = ed->head & OHCI_DPTR_MASK;
639 if (!ohci_read_iso_td(ohci, addr, &iso_td)) {
640 printf("usb-ohci: ISO_TD read error at %x\n", addr);
644 starting_frame = OHCI_BM(iso_td.flags, TD_SF);
645 frame_count = OHCI_BM(iso_td.flags, TD_FC);
646 relative_frame_number = USUB(ohci->frame_number, starting_frame);
649 printf("--- ISO_TD ED head 0x%.8x tailp 0x%.8x\n"
650 "0x%.8x 0x%.8x 0x%.8x 0x%.8x\n"
651 "0x%.8x 0x%.8x 0x%.8x 0x%.8x\n"
652 "0x%.8x 0x%.8x 0x%.8x 0x%.8x\n"
653 "frame_number 0x%.8x starting_frame 0x%.8x\n"
654 "frame_count 0x%.8x relative %d\n"
655 "di 0x%.8x cc 0x%.8x\n",
656 ed->head & OHCI_DPTR_MASK, ed->tail & OHCI_DPTR_MASK,
657 iso_td.flags, iso_td.bp, iso_td.next, iso_td.be,
658 iso_td.offset[0], iso_td.offset[1], iso_td.offset[2], iso_td.offset[3],
659 iso_td.offset[4], iso_td.offset[5], iso_td.offset[6], iso_td.offset[7],
660 ohci->frame_number, starting_frame,
661 frame_count, relative_frame_number,
662 OHCI_BM(iso_td.flags, TD_DI), OHCI_BM(iso_td.flags, TD_CC));
665 if (relative_frame_number < 0) {
666 DPRINTF("usb-ohci: ISO_TD R=%d < 0\n", relative_frame_number);
668 } else if (relative_frame_number > frame_count) {
669 /* ISO TD expired - retire the TD to the Done Queue and continue with
670 the next ISO TD of the same ED */
671 DPRINTF("usb-ohci: ISO_TD R=%d > FC=%d\n", relative_frame_number,
673 OHCI_SET_BM(iso_td.flags, TD_CC, OHCI_CC_DATAOVERRUN);
674 ed->head &= ~OHCI_DPTR_MASK;
675 ed->head |= (iso_td.next & OHCI_DPTR_MASK);
676 iso_td.next = ohci->done;
678 i = OHCI_BM(iso_td.flags, TD_DI);
679 if (i < ohci->done_count)
680 ohci->done_count = i;
681 ohci_put_iso_td(ohci, addr, &iso_td);
685 dir = OHCI_BM(ed->flags, ED_D);
693 case OHCI_TD_DIR_OUT:
699 case OHCI_TD_DIR_SETUP:
703 pid = USB_TOKEN_SETUP;
706 printf("usb-ohci: Bad direction %d\n", dir);
710 if (!iso_td.bp || !iso_td.be) {
711 printf("usb-ohci: ISO_TD bp 0x%.8x be 0x%.8x\n", iso_td.bp, iso_td.be);
715 start_offset = iso_td.offset[relative_frame_number];
716 next_offset = iso_td.offset[relative_frame_number + 1];
718 if (!(OHCI_BM(start_offset, TD_PSW_CC) & 0xe) ||
719 ((relative_frame_number < frame_count) &&
720 !(OHCI_BM(next_offset, TD_PSW_CC) & 0xe))) {
721 printf("usb-ohci: ISO_TD cc != not accessed 0x%.8x 0x%.8x\n",
722 start_offset, next_offset);
726 if ((relative_frame_number < frame_count) && (start_offset > next_offset)) {
727 printf("usb-ohci: ISO_TD start_offset=0x%.8x > next_offset=0x%.8x\n",
728 start_offset, next_offset);
732 if ((start_offset & 0x1000) == 0) {
733 start_addr = (iso_td.bp & OHCI_PAGE_MASK) |
734 (start_offset & OHCI_OFFSET_MASK);
736 start_addr = (iso_td.be & OHCI_PAGE_MASK) |
737 (start_offset & OHCI_OFFSET_MASK);
740 if (relative_frame_number < frame_count) {
741 end_offset = next_offset - 1;
742 if ((end_offset & 0x1000) == 0) {
743 end_addr = (iso_td.bp & OHCI_PAGE_MASK) |
744 (end_offset & OHCI_OFFSET_MASK);
746 end_addr = (iso_td.be & OHCI_PAGE_MASK) |
747 (end_offset & OHCI_OFFSET_MASK);
750 /* Last packet in the ISO TD */
751 end_addr = iso_td.be;
754 if ((start_addr & OHCI_PAGE_MASK) != (end_addr & OHCI_PAGE_MASK)) {
755 len = (end_addr & OHCI_OFFSET_MASK) + 0x1001
756 - (start_addr & OHCI_OFFSET_MASK);
758 len = end_addr - start_addr + 1;
761 if (len && dir != OHCI_TD_DIR_IN) {
762 ohci_copy_iso_td(ohci, start_addr, end_addr, ohci->usb_buf, len, 0);
766 ret = ohci->usb_packet.len;
769 for (i = 0; i < ohci->num_ports; i++) {
770 dev = ohci->rhport[i].port.dev;
771 if ((ohci->rhport[i].ctrl & OHCI_PORT_PES) == 0)
773 ohci->usb_packet.pid = pid;
774 ohci->usb_packet.devaddr = OHCI_BM(ed->flags, ED_FA);
775 ohci->usb_packet.devep = OHCI_BM(ed->flags, ED_EN);
776 ohci->usb_packet.data = ohci->usb_buf;
777 ohci->usb_packet.len = len;
778 ret = usb_handle_packet(dev, &ohci->usb_packet);
779 if (ret != USB_RET_NODEV)
783 if (ret == USB_RET_ASYNC) {
789 printf("so 0x%.8x eo 0x%.8x\nsa 0x%.8x ea 0x%.8x\ndir %s len %zu ret %d\n",
790 start_offset, end_offset, start_addr, end_addr, str, len, ret);
794 if (dir == OHCI_TD_DIR_IN && ret >= 0 && ret <= len) {
795 /* IN transfer succeeded */
796 ohci_copy_iso_td(ohci, start_addr, end_addr, ohci->usb_buf, ret, 1);
797 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_CC,
799 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_SIZE, ret);
800 } else if (dir == OHCI_TD_DIR_OUT && ret == len) {
801 /* OUT transfer succeeded */
802 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_CC,
804 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_SIZE, 0);
806 if (ret > (ssize_t) len) {
807 printf("usb-ohci: DataOverrun %d > %zu\n", ret, len);
808 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_CC,
809 OHCI_CC_DATAOVERRUN);
810 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_SIZE,
812 } else if (ret >= 0) {
813 printf("usb-ohci: DataUnderrun %d\n", ret);
814 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_CC,
815 OHCI_CC_DATAUNDERRUN);
819 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_CC,
820 OHCI_CC_DEVICENOTRESPONDING);
821 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_SIZE,
826 printf("usb-ohci: got NAK/STALL %d\n", ret);
827 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_CC,
829 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_SIZE,
833 printf("usb-ohci: Bad device response %d\n", ret);
834 OHCI_SET_BM(iso_td.offset[relative_frame_number], TD_PSW_CC,
835 OHCI_CC_UNDEXPETEDPID);
841 if (relative_frame_number == frame_count) {
842 /* Last data packet of ISO TD - retire the TD to the Done Queue */
843 OHCI_SET_BM(iso_td.flags, TD_CC, OHCI_CC_NOERROR);
844 ed->head &= ~OHCI_DPTR_MASK;
845 ed->head |= (iso_td.next & OHCI_DPTR_MASK);
846 iso_td.next = ohci->done;
848 i = OHCI_BM(iso_td.flags, TD_DI);
849 if (i < ohci->done_count)
850 ohci->done_count = i;
852 ohci_put_iso_td(ohci, addr, &iso_td);
856 /* Service a transport descriptor.
857 Returns nonzero to terminate processing of this endpoint. */
859 static int ohci_service_td(OHCIState *ohci, struct ohci_ed *ed)
864 const char *str = NULL;
875 addr = ed->head & OHCI_DPTR_MASK;
876 /* See if this TD has already been submitted to the device. */
877 completion = (addr == ohci->async_td);
878 if (completion && !ohci->async_complete) {
880 DPRINTF("Skipping async TD\n");
884 if (!ohci_read_td(ohci, addr, &td)) {
885 fprintf(stderr, "usb-ohci: TD read error at %x\n", addr);
889 dir = OHCI_BM(ed->flags, ED_D);
891 case OHCI_TD_DIR_OUT:
896 dir = OHCI_BM(td.flags, TD_DP);
907 case OHCI_TD_DIR_OUT:
913 case OHCI_TD_DIR_SETUP:
917 pid = USB_TOKEN_SETUP;
920 fprintf(stderr, "usb-ohci: Bad direction\n");
923 if (td.cbp && td.be) {
924 if ((td.cbp & 0xfffff000) != (td.be & 0xfffff000)) {
925 len = (td.be & 0xfff) + 0x1001 - (td.cbp & 0xfff);
927 len = (td.be - td.cbp) + 1;
930 if (len && dir != OHCI_TD_DIR_IN && !completion) {
931 ohci_copy_td(ohci, &td, ohci->usb_buf, len, 0);
935 flag_r = (td.flags & OHCI_TD_R) != 0;
937 DPRINTF(" TD @ 0x%.8x %" PRId64 " bytes %s r=%d cbp=0x%.8x be=0x%.8x\n",
938 addr, (int64_t)len, str, flag_r, td.cbp, td.be);
940 if (len > 0 && dir != OHCI_TD_DIR_IN) {
942 for (i = 0; i < len; i++)
943 printf(" %.2x", ohci->usb_buf[i]);
948 ret = ohci->usb_packet.len;
950 ohci->async_complete = 0;
953 for (i = 0; i < ohci->num_ports; i++) {
954 dev = ohci->rhport[i].port.dev;
955 if ((ohci->rhport[i].ctrl & OHCI_PORT_PES) == 0)
958 if (ohci->async_td) {
959 /* ??? The hardware should allow one active packet per
960 endpoint. We only allow one active packet per controller.
961 This should be sufficient as long as devices respond in a
965 DPRINTF("Too many pending packets\n");
969 ohci->usb_packet.pid = pid;
970 ohci->usb_packet.devaddr = OHCI_BM(ed->flags, ED_FA);
971 ohci->usb_packet.devep = OHCI_BM(ed->flags, ED_EN);
972 ohci->usb_packet.data = ohci->usb_buf;
973 ohci->usb_packet.len = len;
974 ret = usb_handle_packet(dev, &ohci->usb_packet);
975 if (ret != USB_RET_NODEV)
979 DPRINTF("ret=%d\n", ret);
981 if (ret == USB_RET_ASYNC) {
982 ohci->async_td = addr;
987 if (dir == OHCI_TD_DIR_IN) {
988 ohci_copy_td(ohci, &td, ohci->usb_buf, ret, 1);
991 for (i = 0; i < ret; i++)
992 printf(" %.2x", ohci->usb_buf[i]);
1001 if (ret == len || (dir == OHCI_TD_DIR_IN && ret >= 0 && flag_r)) {
1002 /* Transmission succeeded. */
1007 if ((td.cbp & 0xfff) + ret > 0xfff) {
1009 td.cbp |= td.be & ~0xfff;
1012 td.flags |= OHCI_TD_T1;
1013 td.flags ^= OHCI_TD_T0;
1014 OHCI_SET_BM(td.flags, TD_CC, OHCI_CC_NOERROR);
1015 OHCI_SET_BM(td.flags, TD_EC, 0);
1017 ed->head &= ~OHCI_ED_C;
1018 if (td.flags & OHCI_TD_T0)
1019 ed->head |= OHCI_ED_C;
1022 DPRINTF("usb-ohci: Underrun\n");
1023 OHCI_SET_BM(td.flags, TD_CC, OHCI_CC_DATAUNDERRUN);
1027 OHCI_SET_BM(td.flags, TD_CC, OHCI_CC_DEVICENOTRESPONDING);
1029 DPRINTF("usb-ohci: got NAK\n");
1032 DPRINTF("usb-ohci: got STALL\n");
1033 OHCI_SET_BM(td.flags, TD_CC, OHCI_CC_STALL);
1035 case USB_RET_BABBLE:
1036 DPRINTF("usb-ohci: got BABBLE\n");
1037 OHCI_SET_BM(td.flags, TD_CC, OHCI_CC_DATAOVERRUN);
1040 fprintf(stderr, "usb-ohci: Bad device response %d\n", ret);
1041 OHCI_SET_BM(td.flags, TD_CC, OHCI_CC_UNDEXPETEDPID);
1042 OHCI_SET_BM(td.flags, TD_EC, 3);
1046 ed->head |= OHCI_ED_H;
1049 /* Retire this TD */
1050 ed->head &= ~OHCI_DPTR_MASK;
1051 ed->head |= td.next & OHCI_DPTR_MASK;
1052 td.next = ohci->done;
1054 i = OHCI_BM(td.flags, TD_DI);
1055 if (i < ohci->done_count)
1056 ohci->done_count = i;
1057 ohci_put_td(ohci, addr, &td);
1058 return OHCI_BM(td.flags, TD_CC) != OHCI_CC_NOERROR;
1061 /* Service an endpoint list. Returns nonzero if active TD were found. */
1062 static int ohci_service_ed_list(OHCIState *ohci, uint32_t head, int completion)
1074 for (cur = head; cur; cur = next_ed) {
1075 if (!ohci_read_ed(ohci, cur, &ed)) {
1076 fprintf(stderr, "usb-ohci: ED read error at %x\n", cur);
1080 next_ed = ed.next & OHCI_DPTR_MASK;
1082 if ((ed.head & OHCI_ED_H) || (ed.flags & OHCI_ED_K)) {
1084 /* Cancel pending packets for ED that have been paused. */
1085 addr = ed.head & OHCI_DPTR_MASK;
1086 if (ohci->async_td && addr == ohci->async_td) {
1087 usb_cancel_packet(&ohci->usb_packet);
1093 while ((ed.head & OHCI_DPTR_MASK) != ed.tail) {
1095 DPRINTF("ED @ 0x%.8x fa=%u en=%u d=%u s=%u k=%u f=%u mps=%u "
1096 "h=%u c=%u\n head=0x%.8x tailp=0x%.8x next=0x%.8x\n", cur,
1097 OHCI_BM(ed.flags, ED_FA), OHCI_BM(ed.flags, ED_EN),
1098 OHCI_BM(ed.flags, ED_D), (ed.flags & OHCI_ED_S)!= 0,
1099 (ed.flags & OHCI_ED_K) != 0, (ed.flags & OHCI_ED_F) != 0,
1100 OHCI_BM(ed.flags, ED_MPS), (ed.head & OHCI_ED_H) != 0,
1101 (ed.head & OHCI_ED_C) != 0, ed.head & OHCI_DPTR_MASK,
1102 ed.tail & OHCI_DPTR_MASK, ed.next & OHCI_DPTR_MASK);
1106 if ((ed.flags & OHCI_ED_F) == 0) {
1107 if (ohci_service_td(ohci, &ed))
1110 /* Handle isochronous endpoints */
1111 if (ohci_service_iso_td(ohci, &ed, completion))
1116 ohci_put_ed(ohci, cur, &ed);
1122 /* Generate a SOF event, and set a timer for EOF */
1123 static void ohci_sof(OHCIState *ohci)
1125 ohci->sof_time = qemu_get_clock_ns(vm_clock);
1126 qemu_mod_timer(ohci->eof_timer, ohci->sof_time + usb_frame_time);
1127 ohci_set_interrupt(ohci, OHCI_INTR_SF);
1130 /* Process Control and Bulk lists. */
1131 static void ohci_process_lists(OHCIState *ohci, int completion)
1133 if ((ohci->ctl & OHCI_CTL_CLE) && (ohci->status & OHCI_STATUS_CLF)) {
1134 if (ohci->ctrl_cur && ohci->ctrl_cur != ohci->ctrl_head) {
1135 DPRINTF("usb-ohci: head %x, cur %x\n",
1136 ohci->ctrl_head, ohci->ctrl_cur);
1138 if (!ohci_service_ed_list(ohci, ohci->ctrl_head, completion)) {
1140 ohci->status &= ~OHCI_STATUS_CLF;
1144 if ((ohci->ctl & OHCI_CTL_BLE) && (ohci->status & OHCI_STATUS_BLF)) {
1145 if (!ohci_service_ed_list(ohci, ohci->bulk_head, completion)) {
1147 ohci->status &= ~OHCI_STATUS_BLF;
1152 /* Do frame processing on frame boundary */
1153 static void ohci_frame_boundary(void *opaque)
1155 OHCIState *ohci = opaque;
1156 struct ohci_hcca hcca;
1158 ohci_read_hcca(ohci, ohci->hcca, &hcca);
1160 /* Process all the lists at the end of the frame */
1161 if (ohci->ctl & OHCI_CTL_PLE) {
1164 n = ohci->frame_number & 0x1f;
1165 ohci_service_ed_list(ohci, le32_to_cpu(hcca.intr[n]), 0);
1168 /* Cancel all pending packets if either of the lists has been disabled. */
1169 if (ohci->async_td &&
1170 ohci->old_ctl & (~ohci->ctl) & (OHCI_CTL_BLE | OHCI_CTL_CLE)) {
1171 usb_cancel_packet(&ohci->usb_packet);
1174 ohci->old_ctl = ohci->ctl;
1175 ohci_process_lists(ohci, 0);
1177 /* Frame boundary, so do EOF stuf here */
1178 ohci->frt = ohci->fit;
1180 /* Increment frame number and take care of endianness. */
1181 ohci->frame_number = (ohci->frame_number + 1) & 0xffff;
1182 hcca.frame = cpu_to_le16(ohci->frame_number);
1184 if (ohci->done_count == 0 && !(ohci->intr_status & OHCI_INTR_WD)) {
1187 if (ohci->intr & ohci->intr_status)
1189 hcca.done = cpu_to_le32(ohci->done);
1191 ohci->done_count = 7;
1192 ohci_set_interrupt(ohci, OHCI_INTR_WD);
1195 if (ohci->done_count != 7 && ohci->done_count != 0)
1198 /* Do SOF stuff here */
1201 /* Writeback HCCA */
1202 ohci_put_hcca(ohci, ohci->hcca, &hcca);
1205 /* Start sending SOF tokens across the USB bus, lists are processed in
1208 static int ohci_bus_start(OHCIState *ohci)
1210 ohci->eof_timer = qemu_new_timer_ns(vm_clock,
1211 ohci_frame_boundary,
1214 if (ohci->eof_timer == NULL) {
1215 fprintf(stderr, "usb-ohci: %s: qemu_new_timer_ns failed\n", ohci->name);
1216 /* TODO: Signal unrecoverable error */
1220 DPRINTF("usb-ohci: %s: USB Operational\n", ohci->name);
1227 /* Stop sending SOF tokens on the bus */
1228 static void ohci_bus_stop(OHCIState *ohci)
1230 if (ohci->eof_timer)
1231 qemu_del_timer(ohci->eof_timer);
1232 ohci->eof_timer = NULL;
1235 /* Sets a flag in a port status register but only set it if the port is
1236 * connected, if not set ConnectStatusChange flag. If flag is enabled
1239 static int ohci_port_set_if_connected(OHCIState *ohci, int i, uint32_t val)
1243 /* writing a 0 has no effect */
1247 /* If CurrentConnectStatus is cleared we set
1248 * ConnectStatusChange
1250 if (!(ohci->rhport[i].ctrl & OHCI_PORT_CCS)) {
1251 ohci->rhport[i].ctrl |= OHCI_PORT_CSC;
1252 if (ohci->rhstatus & OHCI_RHS_DRWE) {
1253 /* TODO: CSC is a wakeup event */
1258 if (ohci->rhport[i].ctrl & val)
1262 ohci->rhport[i].ctrl |= val;
1267 /* Set the frame interval - frame interval toggle is manipulated by the hcd only */
1268 static void ohci_set_frame_interval(OHCIState *ohci, uint16_t val)
1272 if (val != ohci->fi) {
1273 DPRINTF("usb-ohci: %s: FrameInterval = 0x%x (%u)\n",
1274 ohci->name, ohci->fi, ohci->fi);
1280 static void ohci_port_power(OHCIState *ohci, int i, int p)
1283 ohci->rhport[i].ctrl |= OHCI_PORT_PPS;
1285 ohci->rhport[i].ctrl &= ~(OHCI_PORT_PPS|
1292 /* Set HcControlRegister */
1293 static void ohci_set_ctl(OHCIState *ohci, uint32_t val)
1298 old_state = ohci->ctl & OHCI_CTL_HCFS;
1300 new_state = ohci->ctl & OHCI_CTL_HCFS;
1302 /* no state change */
1303 if (old_state == new_state)
1306 switch (new_state) {
1307 case OHCI_USB_OPERATIONAL:
1308 ohci_bus_start(ohci);
1310 case OHCI_USB_SUSPEND:
1311 ohci_bus_stop(ohci);
1312 DPRINTF("usb-ohci: %s: USB Suspended\n", ohci->name);
1314 case OHCI_USB_RESUME:
1315 DPRINTF("usb-ohci: %s: USB Resume\n", ohci->name);
1317 case OHCI_USB_RESET:
1319 DPRINTF("usb-ohci: %s: USB Reset\n", ohci->name);
1324 static uint32_t ohci_get_frame_remaining(OHCIState *ohci)
1329 if ((ohci->ctl & OHCI_CTL_HCFS) != OHCI_USB_OPERATIONAL)
1330 return (ohci->frt << 31);
1332 /* Being in USB operational state guarnatees sof_time was
1335 tks = qemu_get_clock_ns(vm_clock) - ohci->sof_time;
1337 /* avoid muldiv if possible */
1338 if (tks >= usb_frame_time)
1339 return (ohci->frt << 31);
1341 tks = muldiv64(1, tks, usb_bit_time);
1342 fr = (uint16_t)(ohci->fi - tks);
1344 return (ohci->frt << 31) | fr;
1348 /* Set root hub status */
1349 static void ohci_set_hub_status(OHCIState *ohci, uint32_t val)
1353 old_state = ohci->rhstatus;
1355 /* write 1 to clear OCIC */
1356 if (val & OHCI_RHS_OCIC)
1357 ohci->rhstatus &= ~OHCI_RHS_OCIC;
1359 if (val & OHCI_RHS_LPS) {
1362 for (i = 0; i < ohci->num_ports; i++)
1363 ohci_port_power(ohci, i, 0);
1364 DPRINTF("usb-ohci: powered down all ports\n");
1367 if (val & OHCI_RHS_LPSC) {
1370 for (i = 0; i < ohci->num_ports; i++)
1371 ohci_port_power(ohci, i, 1);
1372 DPRINTF("usb-ohci: powered up all ports\n");
1375 if (val & OHCI_RHS_DRWE)
1376 ohci->rhstatus |= OHCI_RHS_DRWE;
1378 if (val & OHCI_RHS_CRWE)
1379 ohci->rhstatus &= ~OHCI_RHS_DRWE;
1381 if (old_state != ohci->rhstatus)
1382 ohci_set_interrupt(ohci, OHCI_INTR_RHSC);
1385 /* Set root hub port status */
1386 static void ohci_port_set_status(OHCIState *ohci, int portnum, uint32_t val)
1391 port = &ohci->rhport[portnum];
1392 old_state = port->ctrl;
1394 /* Write to clear CSC, PESC, PSSC, OCIC, PRSC */
1395 if (val & OHCI_PORT_WTC)
1396 port->ctrl &= ~(val & OHCI_PORT_WTC);
1398 if (val & OHCI_PORT_CCS)
1399 port->ctrl &= ~OHCI_PORT_PES;
1401 ohci_port_set_if_connected(ohci, portnum, val & OHCI_PORT_PES);
1403 if (ohci_port_set_if_connected(ohci, portnum, val & OHCI_PORT_PSS)) {
1404 DPRINTF("usb-ohci: port %d: SUSPEND\n", portnum);
1407 if (ohci_port_set_if_connected(ohci, portnum, val & OHCI_PORT_PRS)) {
1408 DPRINTF("usb-ohci: port %d: RESET\n", portnum);
1409 usb_send_msg(port->port.dev, USB_MSG_RESET);
1410 port->ctrl &= ~OHCI_PORT_PRS;
1411 /* ??? Should this also set OHCI_PORT_PESC. */
1412 port->ctrl |= OHCI_PORT_PES | OHCI_PORT_PRSC;
1415 /* Invert order here to ensure in ambiguous case, device is
1418 if (val & OHCI_PORT_LSDA)
1419 ohci_port_power(ohci, portnum, 0);
1420 if (val & OHCI_PORT_PPS)
1421 ohci_port_power(ohci, portnum, 1);
1423 if (old_state != port->ctrl)
1424 ohci_set_interrupt(ohci, OHCI_INTR_RHSC);
1429 static uint32_t ohci_mem_read(void *ptr, target_phys_addr_t addr)
1431 OHCIState *ohci = ptr;
1436 /* Only aligned reads are allowed on OHCI */
1438 fprintf(stderr, "usb-ohci: Mis-aligned read\n");
1440 } else if (addr >= 0x54 && addr < 0x54 + ohci->num_ports * 4) {
1441 /* HcRhPortStatus */
1442 retval = ohci->rhport[(addr - 0x54) >> 2].ctrl | OHCI_PORT_PPS;
1444 switch (addr >> 2) {
1445 case 0: /* HcRevision */
1449 case 1: /* HcControl */
1453 case 2: /* HcCommandStatus */
1454 retval = ohci->status;
1457 case 3: /* HcInterruptStatus */
1458 retval = ohci->intr_status;
1461 case 4: /* HcInterruptEnable */
1462 case 5: /* HcInterruptDisable */
1463 retval = ohci->intr;
1466 case 6: /* HcHCCA */
1467 retval = ohci->hcca;
1470 case 7: /* HcPeriodCurrentED */
1471 retval = ohci->per_cur;
1474 case 8: /* HcControlHeadED */
1475 retval = ohci->ctrl_head;
1478 case 9: /* HcControlCurrentED */
1479 retval = ohci->ctrl_cur;
1482 case 10: /* HcBulkHeadED */
1483 retval = ohci->bulk_head;
1486 case 11: /* HcBulkCurrentED */
1487 retval = ohci->bulk_cur;
1490 case 12: /* HcDoneHead */
1491 retval = ohci->done;
1494 case 13: /* HcFmInterretval */
1495 retval = (ohci->fit << 31) | (ohci->fsmps << 16) | (ohci->fi);
1498 case 14: /* HcFmRemaining */
1499 retval = ohci_get_frame_remaining(ohci);
1502 case 15: /* HcFmNumber */
1503 retval = ohci->frame_number;
1506 case 16: /* HcPeriodicStart */
1507 retval = ohci->pstart;
1510 case 17: /* HcLSThreshold */
1514 case 18: /* HcRhDescriptorA */
1515 retval = ohci->rhdesc_a;
1518 case 19: /* HcRhDescriptorB */
1519 retval = ohci->rhdesc_b;
1522 case 20: /* HcRhStatus */
1523 retval = ohci->rhstatus;
1526 /* PXA27x specific registers */
1527 case 24: /* HcStatus */
1528 retval = ohci->hstatus & ohci->hmask;
1531 case 25: /* HcHReset */
1532 retval = ohci->hreset;
1535 case 26: /* HcHInterruptEnable */
1536 retval = ohci->hmask;
1539 case 27: /* HcHInterruptTest */
1540 retval = ohci->htest;
1544 fprintf(stderr, "ohci_read: Bad offset %x\n", (int)addr);
1545 retval = 0xffffffff;
1552 static void ohci_mem_write(void *ptr, target_phys_addr_t addr, uint32_t val)
1554 OHCIState *ohci = ptr;
1558 /* Only aligned reads are allowed on OHCI */
1560 fprintf(stderr, "usb-ohci: Mis-aligned write\n");
1564 if (addr >= 0x54 && addr < 0x54 + ohci->num_ports * 4) {
1565 /* HcRhPortStatus */
1566 ohci_port_set_status(ohci, (addr - 0x54) >> 2, val);
1570 switch (addr >> 2) {
1571 case 1: /* HcControl */
1572 ohci_set_ctl(ohci, val);
1575 case 2: /* HcCommandStatus */
1576 /* SOC is read-only */
1577 val = (val & ~OHCI_STATUS_SOC);
1579 /* Bits written as '0' remain unchanged in the register */
1580 ohci->status |= val;
1582 if (ohci->status & OHCI_STATUS_HCR)
1586 case 3: /* HcInterruptStatus */
1587 ohci->intr_status &= ~val;
1588 ohci_intr_update(ohci);
1591 case 4: /* HcInterruptEnable */
1593 ohci_intr_update(ohci);
1596 case 5: /* HcInterruptDisable */
1598 ohci_intr_update(ohci);
1601 case 6: /* HcHCCA */
1602 ohci->hcca = val & OHCI_HCCA_MASK;
1605 case 7: /* HcPeriodCurrentED */
1606 /* Ignore writes to this read-only register, Linux does them */
1609 case 8: /* HcControlHeadED */
1610 ohci->ctrl_head = val & OHCI_EDPTR_MASK;
1613 case 9: /* HcControlCurrentED */
1614 ohci->ctrl_cur = val & OHCI_EDPTR_MASK;
1617 case 10: /* HcBulkHeadED */
1618 ohci->bulk_head = val & OHCI_EDPTR_MASK;
1621 case 11: /* HcBulkCurrentED */
1622 ohci->bulk_cur = val & OHCI_EDPTR_MASK;
1625 case 13: /* HcFmInterval */
1626 ohci->fsmps = (val & OHCI_FMI_FSMPS) >> 16;
1627 ohci->fit = (val & OHCI_FMI_FIT) >> 31;
1628 ohci_set_frame_interval(ohci, val);
1631 case 15: /* HcFmNumber */
1634 case 16: /* HcPeriodicStart */
1635 ohci->pstart = val & 0xffff;
1638 case 17: /* HcLSThreshold */
1639 ohci->lst = val & 0xffff;
1642 case 18: /* HcRhDescriptorA */
1643 ohci->rhdesc_a &= ~OHCI_RHA_RW_MASK;
1644 ohci->rhdesc_a |= val & OHCI_RHA_RW_MASK;
1647 case 19: /* HcRhDescriptorB */
1650 case 20: /* HcRhStatus */
1651 ohci_set_hub_status(ohci, val);
1654 /* PXA27x specific registers */
1655 case 24: /* HcStatus */
1656 ohci->hstatus &= ~(val & ohci->hmask);
1658 case 25: /* HcHReset */
1659 ohci->hreset = val & ~OHCI_HRESET_FSBIR;
1660 if (val & OHCI_HRESET_FSBIR)
1664 case 26: /* HcHInterruptEnable */
1668 case 27: /* HcHInterruptTest */
1673 fprintf(stderr, "ohci_write: Bad offset %x\n", (int)addr);
1678 static void ohci_device_destroy(USBBus *bus, USBDevice *dev)
1680 OHCIState *ohci = container_of(bus, OHCIState, bus);
1682 if (ohci->async_td && ohci->usb_packet.owner == dev) {
1683 usb_cancel_packet(&ohci->usb_packet);
1688 /* Only dword reads are defined on OHCI register space */
1689 static CPUReadMemoryFunc * const ohci_readfn[3]={
1695 /* Only dword writes are defined on OHCI register space */
1696 static CPUWriteMemoryFunc * const ohci_writefn[3]={
1702 static USBPortOps ohci_port_ops = {
1703 .attach = ohci_attach,
1704 .detach = ohci_detach,
1705 .wakeup = ohci_wakeup,
1706 .complete = ohci_async_complete_packet,
1709 static USBBusOps ohci_bus_ops = {
1710 .device_destroy = ohci_device_destroy,
1713 static void usb_ohci_init(OHCIState *ohci, DeviceState *dev,
1714 int num_ports, uint32_t localmem_base)
1718 if (usb_frame_time == 0) {
1719 #ifdef OHCI_TIME_WARP
1720 usb_frame_time = get_ticks_per_sec();
1721 usb_bit_time = muldiv64(1, get_ticks_per_sec(), USB_HZ/1000);
1723 usb_frame_time = muldiv64(1, get_ticks_per_sec(), 1000);
1724 if (get_ticks_per_sec() >= USB_HZ) {
1725 usb_bit_time = muldiv64(1, get_ticks_per_sec(), USB_HZ);
1730 DPRINTF("usb-ohci: usb_bit_time=%" PRId64 " usb_frame_time=%" PRId64 "\n",
1731 usb_frame_time, usb_bit_time);
1734 ohci->mem = cpu_register_io_memory(ohci_readfn, ohci_writefn, ohci,
1735 DEVICE_LITTLE_ENDIAN);
1736 ohci->localmem_base = localmem_base;
1738 ohci->name = dev->info->name;
1740 usb_bus_new(&ohci->bus, &ohci_bus_ops, dev);
1741 ohci->num_ports = num_ports;
1742 for (i = 0; i < num_ports; i++) {
1743 usb_register_port(&ohci->bus, &ohci->rhport[i].port, ohci, i, &ohci_port_ops,
1744 USB_SPEED_MASK_LOW | USB_SPEED_MASK_FULL);
1748 qemu_register_reset(ohci_reset, ohci);
1756 static int usb_ohci_initfn_pci(struct PCIDevice *dev)
1758 OHCIPCIState *ohci = DO_UPCAST(OHCIPCIState, pci_dev, dev);
1761 ohci->pci_dev.config[PCI_CLASS_PROG] = 0x10; /* OHCI */
1762 /* TODO: RST# value should be 0. */
1763 ohci->pci_dev.config[PCI_INTERRUPT_PIN] = 0x01; /* interrupt pin 1 */
1765 usb_ohci_init(&ohci->state, &dev->qdev, num_ports, 0);
1766 ohci->state.irq = ohci->pci_dev.irq[0];
1768 /* TODO: avoid cast below by using dev */
1769 pci_register_bar_simple(&ohci->pci_dev, 0, 256, 0, ohci->state.mem);
1773 void usb_ohci_init_pci(struct PCIBus *bus, int devfn)
1775 pci_create_simple(bus, devfn, "pci-ohci");
1779 SysBusDevice busdev;
1782 target_phys_addr_t dma_offset;
1785 static int ohci_init_pxa(SysBusDevice *dev)
1787 OHCISysBusState *s = FROM_SYSBUS(OHCISysBusState, dev);
1789 usb_ohci_init(&s->ohci, &dev->qdev, s->num_ports, s->dma_offset);
1790 sysbus_init_irq(dev, &s->ohci.irq);
1791 sysbus_init_mmio(dev, 0x1000, s->ohci.mem);
1796 static PCIDeviceInfo ohci_pci_info = {
1797 .qdev.name = "pci-ohci",
1798 .qdev.desc = "Apple USB Controller",
1799 .qdev.size = sizeof(OHCIPCIState),
1800 .init = usb_ohci_initfn_pci,
1801 .vendor_id = PCI_VENDOR_ID_APPLE,
1802 .device_id = PCI_DEVICE_ID_APPLE_IPID_USB,
1803 .class_id = PCI_CLASS_SERIAL_USB,
1806 static SysBusDeviceInfo ohci_sysbus_info = {
1807 .init = ohci_init_pxa,
1808 .qdev.name = "sysbus-ohci",
1809 .qdev.desc = "OHCI USB Controller",
1810 .qdev.size = sizeof(OHCISysBusState),
1811 .qdev.props = (Property[]) {
1812 DEFINE_PROP_UINT32("num-ports", OHCISysBusState, num_ports, 3),
1813 DEFINE_PROP_TADDR("dma-offset", OHCISysBusState, dma_offset, 3),
1814 DEFINE_PROP_END_OF_LIST(),
1818 static void ohci_register(void)
1820 pci_qdev_register(&ohci_pci_info);
1821 sysbus_register_withprop(&ohci_sysbus_info);
1823 device_init(ohci_register);