2 * USB UHCI controller emulation
4 * Copyright (c) 2005 Fabrice Bellard
6 * Copyright (c) 2008 Max Krasnyansky
7 * Magor rewrite of the UHCI data structures parser and frame processor
8 * Support for fully async operation and multiple outstanding transactions
10 * Permission is hereby granted, free of charge, to any person obtaining a copy
11 * of this software and associated documentation files (the "Software"), to deal
12 * in the Software without restriction, including without limitation the rights
13 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the Software is
15 * furnished to do so, subject to the following conditions:
17 * The above copyright notice and this permission notice shall be included in
18 * all copies or substantial portions of the Software.
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
30 #include "hw/usb/uhci-regs.h"
31 #include "hw/pci/pci.h"
32 #include "qemu/timer.h"
34 #include "sysemu/dma.h"
36 #include "qemu/main-loop.h"
39 //#define DEBUG_DUMP_DATA
41 #define FRAME_TIMER_FREQ 1000
43 #define FRAME_MAX_LOOPS 256
45 /* Must be large enough to handle 10 frame delay for initial isoc requests */
48 #define MAX_FRAMES_PER_TICK (QH_VALID / 2)
53 TD_RESULT_STOP_FRAME = 10,
56 TD_RESULT_ASYNC_START,
60 typedef struct UHCIState UHCIState;
61 typedef struct UHCIAsync UHCIAsync;
62 typedef struct UHCIQueue UHCIQueue;
63 typedef struct UHCIInfo UHCIInfo;
64 typedef struct UHCIPCIDeviceClass UHCIPCIDeviceClass;
72 int (*initfn)(PCIDevice *dev);
76 struct UHCIPCIDeviceClass {
77 PCIDeviceClass parent_class;
82 * Pending async transaction.
83 * 'packet' must be the first field because completion
84 * handler does "(UHCIAsync *) pkt" cast.
89 uint8_t static_buf[64]; /* 64 bytes is enough, except for isoc packets */
92 QTAILQ_ENTRY(UHCIAsync) next;
102 QTAILQ_ENTRY(UHCIQueue) next;
103 QTAILQ_HEAD(asyncs_head, UHCIAsync) asyncs;
107 typedef struct UHCIPort {
115 USBBus bus; /* Note unused when we're a companion controller */
116 uint16_t cmd; /* cmd register */
118 uint16_t intr; /* interrupt enable register */
119 uint16_t frnum; /* frame number */
120 uint32_t fl_base_addr; /* frame list base address */
122 uint8_t status2; /* bit 0 and 1 are used to generate UHCI_STS_USBINT */
124 QEMUTimer *frame_timer;
126 uint32_t frame_bytes;
127 uint32_t frame_bandwidth;
128 bool completions_only;
129 UHCIPort ports[NB_PORTS];
131 /* Interrupts that should be raised at the end of the current frame. */
132 uint32_t pending_int_mask;
135 QTAILQ_HEAD(, UHCIQueue) queues;
136 uint8_t num_ports_vmstate;
144 typedef struct UHCI_TD {
146 uint32_t ctrl; /* see TD_CTRL_xxx */
151 typedef struct UHCI_QH {
156 static void uhci_async_cancel(UHCIAsync *async);
157 static void uhci_queue_fill(UHCIQueue *q, UHCI_TD *td);
158 static void uhci_resume(void *opaque);
160 static inline int32_t uhci_queue_token(UHCI_TD *td)
162 if ((td->token & (0xf << 15)) == 0) {
163 /* ctrl ep, cover ep and dev, not pid! */
164 return td->token & 0x7ff00;
166 /* covers ep, dev, pid -> identifies the endpoint */
167 return td->token & 0x7ffff;
171 static UHCIQueue *uhci_queue_new(UHCIState *s, uint32_t qh_addr, UHCI_TD *td,
176 queue = g_new0(UHCIQueue, 1);
178 queue->qh_addr = qh_addr;
179 queue->token = uhci_queue_token(td);
181 QTAILQ_INIT(&queue->asyncs);
182 QTAILQ_INSERT_HEAD(&s->queues, queue, next);
183 queue->valid = QH_VALID;
184 trace_usb_uhci_queue_add(queue->token);
188 static void uhci_queue_free(UHCIQueue *queue, const char *reason)
190 UHCIState *s = queue->uhci;
193 while (!QTAILQ_EMPTY(&queue->asyncs)) {
194 async = QTAILQ_FIRST(&queue->asyncs);
195 uhci_async_cancel(async);
197 usb_device_ep_stopped(queue->ep->dev, queue->ep);
199 trace_usb_uhci_queue_del(queue->token, reason);
200 QTAILQ_REMOVE(&s->queues, queue, next);
204 static UHCIQueue *uhci_queue_find(UHCIState *s, UHCI_TD *td)
206 uint32_t token = uhci_queue_token(td);
209 QTAILQ_FOREACH(queue, &s->queues, next) {
210 if (queue->token == token) {
217 static bool uhci_queue_verify(UHCIQueue *queue, uint32_t qh_addr, UHCI_TD *td,
218 uint32_t td_addr, bool queuing)
220 UHCIAsync *first = QTAILQ_FIRST(&queue->asyncs);
221 uint32_t queue_token_addr = (queue->token >> 8) & 0x7f;
223 return queue->qh_addr == qh_addr &&
224 queue->token == uhci_queue_token(td) &&
225 queue_token_addr == queue->ep->dev->addr &&
226 (queuing || !(td->ctrl & TD_CTRL_ACTIVE) || first == NULL ||
227 first->td_addr == td_addr);
230 static UHCIAsync *uhci_async_alloc(UHCIQueue *queue, uint32_t td_addr)
232 UHCIAsync *async = g_new0(UHCIAsync, 1);
234 async->queue = queue;
235 async->td_addr = td_addr;
236 usb_packet_init(&async->packet);
237 trace_usb_uhci_packet_add(async->queue->token, async->td_addr);
242 static void uhci_async_free(UHCIAsync *async)
244 trace_usb_uhci_packet_del(async->queue->token, async->td_addr);
245 usb_packet_cleanup(&async->packet);
246 if (async->buf != async->static_buf) {
252 static void uhci_async_link(UHCIAsync *async)
254 UHCIQueue *queue = async->queue;
255 QTAILQ_INSERT_TAIL(&queue->asyncs, async, next);
256 trace_usb_uhci_packet_link_async(async->queue->token, async->td_addr);
259 static void uhci_async_unlink(UHCIAsync *async)
261 UHCIQueue *queue = async->queue;
262 QTAILQ_REMOVE(&queue->asyncs, async, next);
263 trace_usb_uhci_packet_unlink_async(async->queue->token, async->td_addr);
266 static void uhci_async_cancel(UHCIAsync *async)
268 uhci_async_unlink(async);
269 trace_usb_uhci_packet_cancel(async->queue->token, async->td_addr,
272 usb_cancel_packet(&async->packet);
273 uhci_async_free(async);
277 * Mark all outstanding async packets as invalid.
278 * This is used for canceling them when TDs are removed by the HCD.
280 static void uhci_async_validate_begin(UHCIState *s)
284 QTAILQ_FOREACH(queue, &s->queues, next) {
290 * Cancel async packets that are no longer valid
292 static void uhci_async_validate_end(UHCIState *s)
294 UHCIQueue *queue, *n;
296 QTAILQ_FOREACH_SAFE(queue, &s->queues, next, n) {
298 uhci_queue_free(queue, "validate-end");
303 static void uhci_async_cancel_device(UHCIState *s, USBDevice *dev)
305 UHCIQueue *queue, *n;
307 QTAILQ_FOREACH_SAFE(queue, &s->queues, next, n) {
308 if (queue->ep->dev == dev) {
309 uhci_queue_free(queue, "cancel-device");
314 static void uhci_async_cancel_all(UHCIState *s)
316 UHCIQueue *queue, *nq;
318 QTAILQ_FOREACH_SAFE(queue, &s->queues, next, nq) {
319 uhci_queue_free(queue, "cancel-all");
323 static UHCIAsync *uhci_async_find_td(UHCIState *s, uint32_t td_addr)
328 QTAILQ_FOREACH(queue, &s->queues, next) {
329 QTAILQ_FOREACH(async, &queue->asyncs, next) {
330 if (async->td_addr == td_addr) {
338 static void uhci_update_irq(UHCIState *s)
341 if (((s->status2 & 1) && (s->intr & (1 << 2))) ||
342 ((s->status2 & 2) && (s->intr & (1 << 3))) ||
343 ((s->status & UHCI_STS_USBERR) && (s->intr & (1 << 0))) ||
344 ((s->status & UHCI_STS_RD) && (s->intr & (1 << 1))) ||
345 (s->status & UHCI_STS_HSERR) ||
346 (s->status & UHCI_STS_HCPERR)) {
351 pci_set_irq(&s->dev, level);
354 static void uhci_reset(void *opaque)
356 UHCIState *s = opaque;
361 trace_usb_uhci_reset();
363 pci_conf = s->dev.config;
365 pci_conf[0x6a] = 0x01; /* usb clock */
366 pci_conf[0x6b] = 0x00;
374 for(i = 0; i < NB_PORTS; i++) {
377 if (port->port.dev && port->port.dev->attached) {
378 usb_port_reset(&port->port);
382 uhci_async_cancel_all(s);
383 qemu_bh_cancel(s->bh);
387 static const VMStateDescription vmstate_uhci_port = {
390 .minimum_version_id = 1,
391 .fields = (VMStateField[]) {
392 VMSTATE_UINT16(ctrl, UHCIPort),
393 VMSTATE_END_OF_LIST()
397 static int uhci_post_load(void *opaque, int version_id)
399 UHCIState *s = opaque;
401 if (version_id < 2) {
402 s->expire_time = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
403 (get_ticks_per_sec() / FRAME_TIMER_FREQ);
408 static const VMStateDescription vmstate_uhci = {
411 .minimum_version_id = 1,
412 .post_load = uhci_post_load,
413 .fields = (VMStateField[]) {
414 VMSTATE_PCI_DEVICE(dev, UHCIState),
415 VMSTATE_UINT8_EQUAL(num_ports_vmstate, UHCIState),
416 VMSTATE_STRUCT_ARRAY(ports, UHCIState, NB_PORTS, 1,
417 vmstate_uhci_port, UHCIPort),
418 VMSTATE_UINT16(cmd, UHCIState),
419 VMSTATE_UINT16(status, UHCIState),
420 VMSTATE_UINT16(intr, UHCIState),
421 VMSTATE_UINT16(frnum, UHCIState),
422 VMSTATE_UINT32(fl_base_addr, UHCIState),
423 VMSTATE_UINT8(sof_timing, UHCIState),
424 VMSTATE_UINT8(status2, UHCIState),
425 VMSTATE_TIMER(frame_timer, UHCIState),
426 VMSTATE_INT64_V(expire_time, UHCIState, 2),
427 VMSTATE_UINT32_V(pending_int_mask, UHCIState, 3),
428 VMSTATE_END_OF_LIST()
432 static void uhci_port_write(void *opaque, hwaddr addr,
433 uint64_t val, unsigned size)
435 UHCIState *s = opaque;
437 trace_usb_uhci_mmio_writew(addr, val);
441 if ((val & UHCI_CMD_RS) && !(s->cmd & UHCI_CMD_RS)) {
442 /* start frame processing */
443 trace_usb_uhci_schedule_start();
444 s->expire_time = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
445 (get_ticks_per_sec() / FRAME_TIMER_FREQ);
446 timer_mod(s->frame_timer, s->expire_time);
447 s->status &= ~UHCI_STS_HCHALTED;
448 } else if (!(val & UHCI_CMD_RS)) {
449 s->status |= UHCI_STS_HCHALTED;
451 if (val & UHCI_CMD_GRESET) {
455 /* send reset on the USB bus */
456 for(i = 0; i < NB_PORTS; i++) {
458 usb_device_reset(port->port.dev);
463 if (val & UHCI_CMD_HCRESET) {
468 if (val & UHCI_CMD_EGSM) {
469 if ((s->ports[0].ctrl & UHCI_PORT_RD) ||
470 (s->ports[1].ctrl & UHCI_PORT_RD)) {
477 /* XXX: the chip spec is not coherent, so we add a hidden
478 register to distinguish between IOC and SPD */
479 if (val & UHCI_STS_USBINT)
488 if (s->status & UHCI_STS_HCHALTED)
489 s->frnum = val & 0x7ff;
492 s->fl_base_addr &= 0xffff0000;
493 s->fl_base_addr |= val & ~0xfff;
496 s->fl_base_addr &= 0x0000ffff;
497 s->fl_base_addr |= (val << 16);
500 s->sof_timing = val & 0xff;
512 dev = port->port.dev;
513 if (dev && dev->attached) {
515 if ( (val & UHCI_PORT_RESET) &&
516 !(port->ctrl & UHCI_PORT_RESET) ) {
517 usb_device_reset(dev);
520 port->ctrl &= UHCI_PORT_READ_ONLY;
521 /* enabled may only be set if a device is connected */
522 if (!(port->ctrl & UHCI_PORT_CCS)) {
523 val &= ~UHCI_PORT_EN;
525 port->ctrl |= (val & ~UHCI_PORT_READ_ONLY);
526 /* some bits are reset when a '1' is written to them */
527 port->ctrl &= ~(val & UHCI_PORT_WRITE_CLEAR);
533 static uint64_t uhci_port_read(void *opaque, hwaddr addr, unsigned size)
535 UHCIState *s = opaque;
552 val = s->fl_base_addr & 0xffff;
555 val = (s->fl_base_addr >> 16) & 0xffff;
573 val = 0xff7f; /* disabled port */
577 trace_usb_uhci_mmio_readw(addr, val);
582 /* signal resume if controller suspended */
583 static void uhci_resume (void *opaque)
585 UHCIState *s = (UHCIState *)opaque;
590 if (s->cmd & UHCI_CMD_EGSM) {
591 s->cmd |= UHCI_CMD_FGR;
592 s->status |= UHCI_STS_RD;
597 static void uhci_attach(USBPort *port1)
599 UHCIState *s = port1->opaque;
600 UHCIPort *port = &s->ports[port1->index];
602 /* set connect status */
603 port->ctrl |= UHCI_PORT_CCS | UHCI_PORT_CSC;
606 if (port->port.dev->speed == USB_SPEED_LOW) {
607 port->ctrl |= UHCI_PORT_LSDA;
609 port->ctrl &= ~UHCI_PORT_LSDA;
615 static void uhci_detach(USBPort *port1)
617 UHCIState *s = port1->opaque;
618 UHCIPort *port = &s->ports[port1->index];
620 uhci_async_cancel_device(s, port1->dev);
622 /* set connect status */
623 if (port->ctrl & UHCI_PORT_CCS) {
624 port->ctrl &= ~UHCI_PORT_CCS;
625 port->ctrl |= UHCI_PORT_CSC;
628 if (port->ctrl & UHCI_PORT_EN) {
629 port->ctrl &= ~UHCI_PORT_EN;
630 port->ctrl |= UHCI_PORT_ENC;
636 static void uhci_child_detach(USBPort *port1, USBDevice *child)
638 UHCIState *s = port1->opaque;
640 uhci_async_cancel_device(s, child);
643 static void uhci_wakeup(USBPort *port1)
645 UHCIState *s = port1->opaque;
646 UHCIPort *port = &s->ports[port1->index];
648 if (port->ctrl & UHCI_PORT_SUSPEND && !(port->ctrl & UHCI_PORT_RD)) {
649 port->ctrl |= UHCI_PORT_RD;
654 static USBDevice *uhci_find_device(UHCIState *s, uint8_t addr)
659 for (i = 0; i < NB_PORTS; i++) {
660 UHCIPort *port = &s->ports[i];
661 if (!(port->ctrl & UHCI_PORT_EN)) {
664 dev = usb_find_device(&port->port, addr);
672 static void uhci_read_td(UHCIState *s, UHCI_TD *td, uint32_t link)
674 pci_dma_read(&s->dev, link & ~0xf, td, sizeof(*td));
675 le32_to_cpus(&td->link);
676 le32_to_cpus(&td->ctrl);
677 le32_to_cpus(&td->token);
678 le32_to_cpus(&td->buffer);
681 static int uhci_handle_td_error(UHCIState *s, UHCI_TD *td, uint32_t td_addr,
682 int status, uint32_t *int_mask)
684 uint32_t queue_token = uhci_queue_token(td);
689 td->ctrl |= TD_CTRL_NAK;
690 return TD_RESULT_NEXT_QH;
693 td->ctrl |= TD_CTRL_STALL;
694 trace_usb_uhci_packet_complete_stall(queue_token, td_addr);
695 ret = TD_RESULT_NEXT_QH;
699 td->ctrl |= TD_CTRL_BABBLE | TD_CTRL_STALL;
700 /* frame interrupted */
701 trace_usb_uhci_packet_complete_babble(queue_token, td_addr);
702 ret = TD_RESULT_STOP_FRAME;
705 case USB_RET_IOERROR:
708 td->ctrl |= TD_CTRL_TIMEOUT;
709 td->ctrl &= ~(3 << TD_CTRL_ERROR_SHIFT);
710 trace_usb_uhci_packet_complete_error(queue_token, td_addr);
711 ret = TD_RESULT_NEXT_QH;
715 td->ctrl &= ~TD_CTRL_ACTIVE;
716 s->status |= UHCI_STS_USBERR;
717 if (td->ctrl & TD_CTRL_IOC) {
724 static int uhci_complete_td(UHCIState *s, UHCI_TD *td, UHCIAsync *async, uint32_t *int_mask)
726 int len = 0, max_len;
729 max_len = ((td->token >> 21) + 1) & 0x7ff;
730 pid = td->token & 0xff;
732 if (td->ctrl & TD_CTRL_IOS)
733 td->ctrl &= ~TD_CTRL_ACTIVE;
735 if (async->packet.status != USB_RET_SUCCESS) {
736 return uhci_handle_td_error(s, td, async->td_addr,
737 async->packet.status, int_mask);
740 len = async->packet.actual_length;
741 td->ctrl = (td->ctrl & ~0x7ff) | ((len - 1) & 0x7ff);
743 /* The NAK bit may have been set by a previous frame, so clear it
744 here. The docs are somewhat unclear, but win2k relies on this
746 td->ctrl &= ~(TD_CTRL_ACTIVE | TD_CTRL_NAK);
747 if (td->ctrl & TD_CTRL_IOC)
750 if (pid == USB_TOKEN_IN) {
751 pci_dma_write(&s->dev, td->buffer, async->buf, len);
752 if ((td->ctrl & TD_CTRL_SPD) && len < max_len) {
754 /* short packet: do not update QH */
755 trace_usb_uhci_packet_complete_shortxfer(async->queue->token,
757 return TD_RESULT_NEXT_QH;
762 trace_usb_uhci_packet_complete_success(async->queue->token,
764 return TD_RESULT_COMPLETE;
767 static int uhci_handle_td(UHCIState *s, UHCIQueue *q, uint32_t qh_addr,
768 UHCI_TD *td, uint32_t td_addr, uint32_t *int_mask)
772 bool queuing = (q != NULL);
773 uint8_t pid = td->token & 0xff;
774 UHCIAsync *async = uhci_async_find_td(s, td_addr);
777 if (uhci_queue_verify(async->queue, qh_addr, td, td_addr, queuing)) {
778 assert(q == NULL || q == async->queue);
781 uhci_queue_free(async->queue, "guest re-used pending td");
787 q = uhci_queue_find(s, td);
788 if (q && !uhci_queue_verify(q, qh_addr, td, td_addr, queuing)) {
789 uhci_queue_free(q, "guest re-used qh");
799 if (!(td->ctrl & TD_CTRL_ACTIVE)) {
801 /* Guest marked a pending td non-active, cancel the queue */
802 uhci_queue_free(async->queue, "pending td non-active");
805 * ehci11d spec page 22: "Even if the Active bit in the TD is already
806 * cleared when the TD is fetched ... an IOC interrupt is generated"
808 if (td->ctrl & TD_CTRL_IOC) {
811 return TD_RESULT_NEXT_QH;
816 /* we are busy filling the queue, we are not prepared
817 to consume completed packages then, just leave them
819 return TD_RESULT_ASYNC_CONT;
823 UHCIAsync *last = QTAILQ_LAST(&async->queue->asyncs, asyncs_head);
825 * While we are waiting for the current td to complete, the guest
826 * may have added more tds to the queue. Note we re-read the td
827 * rather then caching it, as we want to see guest made changes!
829 uhci_read_td(s, &last_td, last->td_addr);
830 uhci_queue_fill(async->queue, &last_td);
832 return TD_RESULT_ASYNC_CONT;
834 uhci_async_unlink(async);
838 if (s->completions_only) {
839 return TD_RESULT_ASYNC_CONT;
842 /* Allocate new packet */
844 USBDevice *dev = uhci_find_device(s, (td->token >> 8) & 0x7f);
845 USBEndpoint *ep = usb_ep_get(dev, pid, (td->token >> 15) & 0xf);
848 return uhci_handle_td_error(s, td, td_addr, USB_RET_NODEV,
851 q = uhci_queue_new(s, qh_addr, td, ep);
853 async = uhci_async_alloc(q, td_addr);
855 max_len = ((td->token >> 21) + 1) & 0x7ff;
856 spd = (pid == USB_TOKEN_IN && (td->ctrl & TD_CTRL_SPD) != 0);
857 usb_packet_setup(&async->packet, pid, q->ep, 0, td_addr, spd,
858 (td->ctrl & TD_CTRL_IOC) != 0);
859 if (max_len <= sizeof(async->static_buf)) {
860 async->buf = async->static_buf;
862 async->buf = g_malloc(max_len);
864 usb_packet_addbuf(&async->packet, async->buf, max_len);
868 case USB_TOKEN_SETUP:
869 pci_dma_read(&s->dev, td->buffer, async->buf, max_len);
870 usb_handle_packet(q->ep->dev, &async->packet);
871 if (async->packet.status == USB_RET_SUCCESS) {
872 async->packet.actual_length = max_len;
877 usb_handle_packet(q->ep->dev, &async->packet);
881 /* invalid pid : frame interrupted */
882 uhci_async_free(async);
883 s->status |= UHCI_STS_HCPERR;
885 return TD_RESULT_STOP_FRAME;
888 if (async->packet.status == USB_RET_ASYNC) {
889 uhci_async_link(async);
891 uhci_queue_fill(q, td);
893 return TD_RESULT_ASYNC_START;
897 ret = uhci_complete_td(s, td, async, int_mask);
898 uhci_async_free(async);
902 static void uhci_async_complete(USBPort *port, USBPacket *packet)
904 UHCIAsync *async = container_of(packet, UHCIAsync, packet);
905 UHCIState *s = async->queue->uhci;
907 if (packet->status == USB_RET_REMOVE_FROM_QUEUE) {
908 uhci_async_cancel(async);
913 /* Force processing of this packet *now*, needed for migration */
914 s->completions_only = true;
915 qemu_bh_schedule(s->bh);
918 static int is_valid(uint32_t link)
920 return (link & 1) == 0;
923 static int is_qh(uint32_t link)
925 return (link & 2) != 0;
928 static int depth_first(uint32_t link)
930 return (link & 4) != 0;
933 /* QH DB used for detecting QH loops */
934 #define UHCI_MAX_QUEUES 128
936 uint32_t addr[UHCI_MAX_QUEUES];
940 static void qhdb_reset(QhDb *db)
945 /* Add QH to DB. Returns 1 if already present or DB is full. */
946 static int qhdb_insert(QhDb *db, uint32_t addr)
949 for (i = 0; i < db->count; i++)
950 if (db->addr[i] == addr)
953 if (db->count >= UHCI_MAX_QUEUES)
956 db->addr[db->count++] = addr;
960 static void uhci_queue_fill(UHCIQueue *q, UHCI_TD *td)
962 uint32_t int_mask = 0;
963 uint32_t plink = td->link;
967 while (is_valid(plink)) {
968 uhci_read_td(q->uhci, &ptd, plink);
969 if (!(ptd.ctrl & TD_CTRL_ACTIVE)) {
972 if (uhci_queue_token(&ptd) != q->token) {
975 trace_usb_uhci_td_queue(plink & ~0xf, ptd.ctrl, ptd.token);
976 ret = uhci_handle_td(q->uhci, q, q->qh_addr, &ptd, plink, &int_mask);
977 if (ret == TD_RESULT_ASYNC_CONT) {
980 assert(ret == TD_RESULT_ASYNC_START);
981 assert(int_mask == 0);
984 usb_device_flush_ep_queue(q->ep->dev, q->ep);
987 static void uhci_process_frame(UHCIState *s)
989 uint32_t frame_addr, link, old_td_ctrl, val, int_mask;
990 uint32_t curr_qh, td_count = 0;
996 frame_addr = s->fl_base_addr + ((s->frnum & 0x3ff) << 2);
998 pci_dma_read(&s->dev, frame_addr, &link, 4);
1006 for (cnt = FRAME_MAX_LOOPS; is_valid(link) && cnt; cnt--) {
1007 if (!s->completions_only && s->frame_bytes >= s->frame_bandwidth) {
1008 /* We've reached the usb 1.1 bandwidth, which is
1009 1280 bytes/frame, stop processing */
1010 trace_usb_uhci_frame_stop_bandwidth();
1015 trace_usb_uhci_qh_load(link & ~0xf);
1017 if (qhdb_insert(&qhdb, link)) {
1019 * We're going in circles. Which is not a bug because
1020 * HCD is allowed to do that as part of the BW management.
1022 * Stop processing here if no transaction has been done
1023 * since we've been here last time.
1025 if (td_count == 0) {
1026 trace_usb_uhci_frame_loop_stop_idle();
1029 trace_usb_uhci_frame_loop_continue();
1032 qhdb_insert(&qhdb, link);
1036 pci_dma_read(&s->dev, link & ~0xf, &qh, sizeof(qh));
1037 le32_to_cpus(&qh.link);
1038 le32_to_cpus(&qh.el_link);
1040 if (!is_valid(qh.el_link)) {
1041 /* QH w/o elements */
1045 /* QH with elements */
1053 uhci_read_td(s, &td, link);
1054 trace_usb_uhci_td_load(curr_qh & ~0xf, link & ~0xf, td.ctrl, td.token);
1056 old_td_ctrl = td.ctrl;
1057 ret = uhci_handle_td(s, NULL, curr_qh, &td, link, &int_mask);
1058 if (old_td_ctrl != td.ctrl) {
1059 /* update the status bits of the TD */
1060 val = cpu_to_le32(td.ctrl);
1061 pci_dma_write(&s->dev, (link & ~0xf) + 4, &val, sizeof(val));
1065 case TD_RESULT_STOP_FRAME: /* interrupted frame */
1068 case TD_RESULT_NEXT_QH:
1069 case TD_RESULT_ASYNC_CONT:
1070 trace_usb_uhci_td_nextqh(curr_qh & ~0xf, link & ~0xf);
1071 link = curr_qh ? qh.link : td.link;
1074 case TD_RESULT_ASYNC_START:
1075 trace_usb_uhci_td_async(curr_qh & ~0xf, link & ~0xf);
1076 link = curr_qh ? qh.link : td.link;
1079 case TD_RESULT_COMPLETE:
1080 trace_usb_uhci_td_complete(curr_qh & ~0xf, link & ~0xf);
1083 s->frame_bytes += (td.ctrl & 0x7ff) + 1;
1086 /* update QH element link */
1088 val = cpu_to_le32(qh.el_link);
1089 pci_dma_write(&s->dev, (curr_qh & ~0xf) + 4, &val, sizeof(val));
1091 if (!depth_first(link)) {
1092 /* done with this QH */
1100 assert(!"unknown return code");
1103 /* go to the next entry */
1107 s->pending_int_mask |= int_mask;
1110 static void uhci_bh(void *opaque)
1112 UHCIState *s = opaque;
1113 uhci_process_frame(s);
1116 static void uhci_frame_timer(void *opaque)
1118 UHCIState *s = opaque;
1119 uint64_t t_now, t_last_run;
1121 const uint64_t frame_t = get_ticks_per_sec() / FRAME_TIMER_FREQ;
1123 s->completions_only = false;
1124 qemu_bh_cancel(s->bh);
1126 if (!(s->cmd & UHCI_CMD_RS)) {
1128 trace_usb_uhci_schedule_stop();
1129 timer_del(s->frame_timer);
1130 uhci_async_cancel_all(s);
1131 /* set hchalted bit in status - UHCI11D 2.1.2 */
1132 s->status |= UHCI_STS_HCHALTED;
1136 /* We still store expire_time in our state, for migration */
1137 t_last_run = s->expire_time - frame_t;
1138 t_now = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL);
1140 /* Process up to MAX_FRAMES_PER_TICK frames */
1141 frames = (t_now - t_last_run) / frame_t;
1142 if (frames > s->maxframes) {
1143 int skipped = frames - s->maxframes;
1144 s->expire_time += skipped * frame_t;
1145 s->frnum = (s->frnum + skipped) & 0x7ff;
1148 if (frames > MAX_FRAMES_PER_TICK) {
1149 frames = MAX_FRAMES_PER_TICK;
1152 for (i = 0; i < frames; i++) {
1154 trace_usb_uhci_frame_start(s->frnum);
1155 uhci_async_validate_begin(s);
1156 uhci_process_frame(s);
1157 uhci_async_validate_end(s);
1158 /* The spec says frnum is the frame currently being processed, and
1159 * the guest must look at frnum - 1 on interrupt, so inc frnum now */
1160 s->frnum = (s->frnum + 1) & 0x7ff;
1161 s->expire_time += frame_t;
1164 /* Complete the previous frame(s) */
1165 if (s->pending_int_mask) {
1166 s->status2 |= s->pending_int_mask;
1167 s->status |= UHCI_STS_USBINT;
1170 s->pending_int_mask = 0;
1172 timer_mod(s->frame_timer, t_now + frame_t);
1175 static const MemoryRegionOps uhci_ioport_ops = {
1176 .read = uhci_port_read,
1177 .write = uhci_port_write,
1178 .valid.min_access_size = 1,
1179 .valid.max_access_size = 4,
1180 .impl.min_access_size = 2,
1181 .impl.max_access_size = 2,
1182 .endianness = DEVICE_LITTLE_ENDIAN,
1185 static USBPortOps uhci_port_ops = {
1186 .attach = uhci_attach,
1187 .detach = uhci_detach,
1188 .child_detach = uhci_child_detach,
1189 .wakeup = uhci_wakeup,
1190 .complete = uhci_async_complete,
1193 static USBBusOps uhci_bus_ops = {
1196 static int usb_uhci_common_initfn(PCIDevice *dev)
1198 PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(dev);
1199 UHCIPCIDeviceClass *u = container_of(pc, UHCIPCIDeviceClass, parent_class);
1200 UHCIState *s = DO_UPCAST(UHCIState, dev, dev);
1201 uint8_t *pci_conf = s->dev.config;
1204 pci_conf[PCI_CLASS_PROG] = 0x00;
1205 /* TODO: reset value should be 0. */
1206 pci_conf[USB_SBRN] = USB_RELEASE_1; // release number
1208 pci_config_set_interrupt_pin(pci_conf, u->info.irq_pin + 1);
1211 USBPort *ports[NB_PORTS];
1212 for(i = 0; i < NB_PORTS; i++) {
1213 ports[i] = &s->ports[i].port;
1215 if (usb_register_companion(s->masterbus, ports, NB_PORTS,
1216 s->firstport, s, &uhci_port_ops,
1217 USB_SPEED_MASK_LOW | USB_SPEED_MASK_FULL) != 0) {
1221 usb_bus_new(&s->bus, sizeof(s->bus), &uhci_bus_ops, DEVICE(dev));
1222 for (i = 0; i < NB_PORTS; i++) {
1223 usb_register_port(&s->bus, &s->ports[i].port, s, i, &uhci_port_ops,
1224 USB_SPEED_MASK_LOW | USB_SPEED_MASK_FULL);
1227 s->bh = qemu_bh_new(uhci_bh, s);
1228 s->frame_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, uhci_frame_timer, s);
1229 s->num_ports_vmstate = NB_PORTS;
1230 QTAILQ_INIT(&s->queues);
1232 qemu_register_reset(uhci_reset, s);
1234 memory_region_init_io(&s->io_bar, OBJECT(s), &uhci_ioport_ops, s,
1237 /* Use region 4 for consistency with real hardware. BSD guests seem
1239 pci_register_bar(&s->dev, 4, PCI_BASE_ADDRESS_SPACE_IO, &s->io_bar);
1244 static int usb_uhci_vt82c686b_initfn(PCIDevice *dev)
1246 UHCIState *s = DO_UPCAST(UHCIState, dev, dev);
1247 uint8_t *pci_conf = s->dev.config;
1249 /* USB misc control 1/2 */
1250 pci_set_long(pci_conf + 0x40,0x00001000);
1252 pci_set_long(pci_conf + 0x80,0x00020001);
1253 /* USB legacy support */
1254 pci_set_long(pci_conf + 0xc0,0x00002000);
1256 return usb_uhci_common_initfn(dev);
1259 static void usb_uhci_exit(PCIDevice *dev)
1261 UHCIState *s = DO_UPCAST(UHCIState, dev, dev);
1263 memory_region_destroy(&s->io_bar);
1266 static Property uhci_properties[] = {
1267 DEFINE_PROP_STRING("masterbus", UHCIState, masterbus),
1268 DEFINE_PROP_UINT32("firstport", UHCIState, firstport, 0),
1269 DEFINE_PROP_UINT32("bandwidth", UHCIState, frame_bandwidth, 1280),
1270 DEFINE_PROP_UINT32("maxframes", UHCIState, maxframes, 128),
1271 DEFINE_PROP_END_OF_LIST(),
1274 static void uhci_class_init(ObjectClass *klass, void *data)
1276 DeviceClass *dc = DEVICE_CLASS(klass);
1277 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
1278 UHCIPCIDeviceClass *u = container_of(k, UHCIPCIDeviceClass, parent_class);
1279 UHCIInfo *info = data;
1281 k->init = info->initfn ? info->initfn : usb_uhci_common_initfn;
1282 k->exit = info->unplug ? usb_uhci_exit : NULL;
1283 k->vendor_id = info->vendor_id;
1284 k->device_id = info->device_id;
1285 k->revision = info->revision;
1286 k->class_id = PCI_CLASS_SERIAL_USB;
1287 dc->hotpluggable = false;
1288 dc->vmsd = &vmstate_uhci;
1289 dc->props = uhci_properties;
1290 set_bit(DEVICE_CATEGORY_USB, dc->categories);
1294 static UHCIInfo uhci_info[] = {
1296 .name = "piix3-usb-uhci",
1297 .vendor_id = PCI_VENDOR_ID_INTEL,
1298 .device_id = PCI_DEVICE_ID_INTEL_82371SB_2,
1303 .name = "piix4-usb-uhci",
1304 .vendor_id = PCI_VENDOR_ID_INTEL,
1305 .device_id = PCI_DEVICE_ID_INTEL_82371AB_2,
1310 .name = "vt82c686b-usb-uhci",
1311 .vendor_id = PCI_VENDOR_ID_VIA,
1312 .device_id = PCI_DEVICE_ID_VIA_UHCI,
1315 .initfn = usb_uhci_vt82c686b_initfn,
1318 .name = "ich9-usb-uhci1", /* 00:1d.0 */
1319 .vendor_id = PCI_VENDOR_ID_INTEL,
1320 .device_id = PCI_DEVICE_ID_INTEL_82801I_UHCI1,
1325 .name = "ich9-usb-uhci2", /* 00:1d.1 */
1326 .vendor_id = PCI_VENDOR_ID_INTEL,
1327 .device_id = PCI_DEVICE_ID_INTEL_82801I_UHCI2,
1332 .name = "ich9-usb-uhci3", /* 00:1d.2 */
1333 .vendor_id = PCI_VENDOR_ID_INTEL,
1334 .device_id = PCI_DEVICE_ID_INTEL_82801I_UHCI3,
1339 .name = "ich9-usb-uhci4", /* 00:1a.0 */
1340 .vendor_id = PCI_VENDOR_ID_INTEL,
1341 .device_id = PCI_DEVICE_ID_INTEL_82801I_UHCI4,
1346 .name = "ich9-usb-uhci5", /* 00:1a.1 */
1347 .vendor_id = PCI_VENDOR_ID_INTEL,
1348 .device_id = PCI_DEVICE_ID_INTEL_82801I_UHCI5,
1353 .name = "ich9-usb-uhci6", /* 00:1a.2 */
1354 .vendor_id = PCI_VENDOR_ID_INTEL,
1355 .device_id = PCI_DEVICE_ID_INTEL_82801I_UHCI6,
1362 static void uhci_register_types(void)
1364 TypeInfo uhci_type_info = {
1365 .parent = TYPE_PCI_DEVICE,
1366 .instance_size = sizeof(UHCIState),
1367 .class_size = sizeof(UHCIPCIDeviceClass),
1368 .class_init = uhci_class_init,
1372 for (i = 0; i < ARRAY_SIZE(uhci_info); i++) {
1373 uhci_type_info.name = uhci_info[i].name;
1374 uhci_type_info.class_data = uhci_info + i;
1375 type_register(&uhci_type_info);
1379 type_init(uhci_register_types)