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
31 #include "qemu-timer.h"
34 //#define DEBUG_DUMP_DATA
36 #define UHCI_CMD_FGR (1 << 4)
37 #define UHCI_CMD_EGSM (1 << 3)
38 #define UHCI_CMD_GRESET (1 << 2)
39 #define UHCI_CMD_HCRESET (1 << 1)
40 #define UHCI_CMD_RS (1 << 0)
42 #define UHCI_STS_HCHALTED (1 << 5)
43 #define UHCI_STS_HCPERR (1 << 4)
44 #define UHCI_STS_HSERR (1 << 3)
45 #define UHCI_STS_RD (1 << 2)
46 #define UHCI_STS_USBERR (1 << 1)
47 #define UHCI_STS_USBINT (1 << 0)
49 #define TD_CTRL_SPD (1 << 29)
50 #define TD_CTRL_ERROR_SHIFT 27
51 #define TD_CTRL_IOS (1 << 25)
52 #define TD_CTRL_IOC (1 << 24)
53 #define TD_CTRL_ACTIVE (1 << 23)
54 #define TD_CTRL_STALL (1 << 22)
55 #define TD_CTRL_BABBLE (1 << 20)
56 #define TD_CTRL_NAK (1 << 19)
57 #define TD_CTRL_TIMEOUT (1 << 18)
59 #define UHCI_PORT_RESET (1 << 9)
60 #define UHCI_PORT_LSDA (1 << 8)
61 #define UHCI_PORT_ENC (1 << 3)
62 #define UHCI_PORT_EN (1 << 2)
63 #define UHCI_PORT_CSC (1 << 1)
64 #define UHCI_PORT_CCS (1 << 0)
66 #define FRAME_TIMER_FREQ 1000
68 #define FRAME_MAX_LOOPS 100
73 #define dprintf printf
75 const char *pid2str(int pid
)
78 case USB_TOKEN_SETUP
: return "SETUP";
79 case USB_TOKEN_IN
: return "IN";
80 case USB_TOKEN_OUT
: return "OUT";
89 #ifdef DEBUG_DUMP_DATA
90 static void dump_data(const uint8_t *data
, int len
)
94 printf("uhci: data: ");
95 for(i
= 0; i
< len
; i
++)
96 printf(" %02x", data
[i
]);
100 static void dump_data(const uint8_t *data
, int len
) {}
104 * Pending async transaction.
105 * 'packet' must be the first field because completion
106 * handler does "(UHCIAsync *) pkt" cast.
108 typedef struct UHCIAsync
{
110 struct UHCIAsync
*next
;
115 uint8_t buffer
[2048];
118 typedef struct UHCIPort
{
123 typedef struct UHCIState
{
125 uint16_t cmd
; /* cmd register */
127 uint16_t intr
; /* interrupt enable register */
128 uint16_t frnum
; /* frame number */
129 uint32_t fl_base_addr
; /* frame list base address */
131 uint8_t status2
; /* bit 0 and 1 are used to generate UHCI_STS_USBINT */
132 QEMUTimer
*frame_timer
;
133 UHCIPort ports
[NB_PORTS
];
135 /* Interrupts that should be raised at the end of the current frame. */
136 uint32_t pending_int_mask
;
139 UHCIAsync
*async_pending
;
140 UHCIAsync
*async_pool
;
143 typedef struct UHCI_TD
{
145 uint32_t ctrl
; /* see TD_CTRL_xxx */
150 typedef struct UHCI_QH
{
155 static UHCIAsync
*uhci_async_alloc(UHCIState
*s
)
157 UHCIAsync
*async
= qemu_malloc(sizeof(UHCIAsync
));
159 memset(&async
->packet
, 0, sizeof(async
->packet
));
169 static void uhci_async_free(UHCIState
*s
, UHCIAsync
*async
)
174 static void uhci_async_link(UHCIState
*s
, UHCIAsync
*async
)
176 async
->next
= s
->async_pending
;
177 s
->async_pending
= async
;
180 static void uhci_async_unlink(UHCIState
*s
, UHCIAsync
*async
)
182 UHCIAsync
*curr
= s
->async_pending
;
183 UHCIAsync
**prev
= &s
->async_pending
;
196 static void uhci_async_cancel(UHCIState
*s
, UHCIAsync
*async
)
198 dprintf("uhci: cancel td 0x%x token 0x%x done %u\n",
199 async
->td
, async
->token
, async
->done
);
202 usb_cancel_packet(&async
->packet
);
203 uhci_async_free(s
, async
);
207 * Mark all outstanding async packets as invalid.
208 * This is used for canceling them when TDs are removed by the HCD.
210 static UHCIAsync
*uhci_async_validate_begin(UHCIState
*s
)
212 UHCIAsync
*async
= s
->async_pending
;
222 * Cancel async packets that are no longer valid
224 static void uhci_async_validate_end(UHCIState
*s
)
226 UHCIAsync
*curr
= s
->async_pending
;
227 UHCIAsync
**prev
= &s
->async_pending
;
231 if (curr
->valid
> 0) {
242 uhci_async_cancel(s
, curr
);
248 static void uhci_async_cancel_all(UHCIState
*s
)
250 UHCIAsync
*curr
= s
->async_pending
;
256 uhci_async_cancel(s
, curr
);
261 s
->async_pending
= NULL
;
264 static UHCIAsync
*uhci_async_find_td(UHCIState
*s
, uint32_t addr
, uint32_t token
)
266 UHCIAsync
*async
= s
->async_pending
;
267 UHCIAsync
*match
= NULL
;
271 * We're looking for the best match here. ie both td addr and token.
272 * Otherwise we return last good match. ie just token.
273 * It's ok to match just token because it identifies the transaction
274 * rather well, token includes: device addr, endpoint, size, etc.
276 * Also since we queue async transactions in reverse order by returning
277 * last good match we restores the order.
279 * It's expected that we wont have a ton of outstanding transactions.
280 * If we ever do we'd want to optimize this algorithm.
284 if (async
->token
== token
) {
288 if (async
->td
== addr
) {
299 fprintf(stderr
, "uhci: warning lots of async transactions\n");
304 static void uhci_attach(USBPort
*port1
, USBDevice
*dev
);
306 static void uhci_update_irq(UHCIState
*s
)
309 if (((s
->status2
& 1) && (s
->intr
& (1 << 2))) ||
310 ((s
->status2
& 2) && (s
->intr
& (1 << 3))) ||
311 ((s
->status
& UHCI_STS_USBERR
) && (s
->intr
& (1 << 0))) ||
312 ((s
->status
& UHCI_STS_RD
) && (s
->intr
& (1 << 1))) ||
313 (s
->status
& UHCI_STS_HSERR
) ||
314 (s
->status
& UHCI_STS_HCPERR
)) {
319 qemu_set_irq(s
->dev
.irq
[3], level
);
322 static void uhci_reset(UHCIState
*s
)
328 dprintf("uhci: full reset\n");
330 pci_conf
= s
->dev
.config
;
332 pci_conf
[0x6a] = 0x01; /* usb clock */
333 pci_conf
[0x6b] = 0x00;
341 for(i
= 0; i
< NB_PORTS
; i
++) {
345 uhci_attach(&port
->port
, port
->port
.dev
);
348 uhci_async_cancel_all(s
);
351 static void uhci_save(QEMUFile
*f
, void *opaque
)
353 UHCIState
*s
= opaque
;
354 uint8_t num_ports
= NB_PORTS
;
357 uhci_async_cancel_all(s
);
359 pci_device_save(&s
->dev
, f
);
361 qemu_put_8s(f
, &num_ports
);
362 for (i
= 0; i
< num_ports
; ++i
)
363 qemu_put_be16s(f
, &s
->ports
[i
].ctrl
);
364 qemu_put_be16s(f
, &s
->cmd
);
365 qemu_put_be16s(f
, &s
->status
);
366 qemu_put_be16s(f
, &s
->intr
);
367 qemu_put_be16s(f
, &s
->frnum
);
368 qemu_put_be32s(f
, &s
->fl_base_addr
);
369 qemu_put_8s(f
, &s
->sof_timing
);
370 qemu_put_8s(f
, &s
->status2
);
371 qemu_put_timer(f
, s
->frame_timer
);
374 static int uhci_load(QEMUFile
*f
, void *opaque
, int version_id
)
376 UHCIState
*s
= opaque
;
383 ret
= pci_device_load(&s
->dev
, f
);
387 qemu_get_8s(f
, &num_ports
);
388 if (num_ports
!= NB_PORTS
)
391 for (i
= 0; i
< num_ports
; ++i
)
392 qemu_get_be16s(f
, &s
->ports
[i
].ctrl
);
393 qemu_get_be16s(f
, &s
->cmd
);
394 qemu_get_be16s(f
, &s
->status
);
395 qemu_get_be16s(f
, &s
->intr
);
396 qemu_get_be16s(f
, &s
->frnum
);
397 qemu_get_be32s(f
, &s
->fl_base_addr
);
398 qemu_get_8s(f
, &s
->sof_timing
);
399 qemu_get_8s(f
, &s
->status2
);
400 qemu_get_timer(f
, s
->frame_timer
);
405 static void uhci_ioport_writeb(void *opaque
, uint32_t addr
, uint32_t val
)
407 UHCIState
*s
= opaque
;
417 static uint32_t uhci_ioport_readb(void *opaque
, uint32_t addr
)
419 UHCIState
*s
= opaque
;
434 static void uhci_ioport_writew(void *opaque
, uint32_t addr
, uint32_t val
)
436 UHCIState
*s
= opaque
;
439 dprintf("uhci: writew port=0x%04x val=0x%04x\n", addr
, val
);
443 if ((val
& UHCI_CMD_RS
) && !(s
->cmd
& UHCI_CMD_RS
)) {
444 /* start frame processing */
445 qemu_mod_timer(s
->frame_timer
, qemu_get_clock(vm_clock
));
446 s
->status
&= ~UHCI_STS_HCHALTED
;
447 } else if (!(val
& UHCI_CMD_RS
)) {
448 s
->status
|= UHCI_STS_HCHALTED
;
450 if (val
& UHCI_CMD_GRESET
) {
455 /* send reset on the USB bus */
456 for(i
= 0; i
< NB_PORTS
; i
++) {
458 dev
= port
->port
.dev
;
460 usb_send_msg(dev
, USB_MSG_RESET
);
466 if (val
& UHCI_CMD_HCRESET
) {
474 /* XXX: the chip spec is not coherent, so we add a hidden
475 register to distinguish between IOC and SPD */
476 if (val
& UHCI_STS_USBINT
)
485 if (s
->status
& UHCI_STS_HCHALTED
)
486 s
->frnum
= val
& 0x7ff;
498 dev
= port
->port
.dev
;
501 if ( (val
& UHCI_PORT_RESET
) &&
502 !(port
->ctrl
& UHCI_PORT_RESET
) ) {
503 usb_send_msg(dev
, USB_MSG_RESET
);
506 port
->ctrl
= (port
->ctrl
& 0x01fb) | (val
& ~0x01fb);
507 /* some bits are reset when a '1' is written to them */
508 port
->ctrl
&= ~(val
& 0x000a);
514 static uint32_t uhci_ioport_readw(void *opaque
, uint32_t addr
)
516 UHCIState
*s
= opaque
;
546 val
= 0xff7f; /* disabled port */
550 dprintf("uhci: readw port=0x%04x val=0x%04x\n", addr
, val
);
555 static void uhci_ioport_writel(void *opaque
, uint32_t addr
, uint32_t val
)
557 UHCIState
*s
= opaque
;
560 dprintf("uhci: writel port=0x%04x val=0x%08x\n", addr
, val
);
564 s
->fl_base_addr
= val
& ~0xfff;
569 static uint32_t uhci_ioport_readl(void *opaque
, uint32_t addr
)
571 UHCIState
*s
= opaque
;
577 val
= s
->fl_base_addr
;
586 /* signal resume if controller suspended */
587 static void uhci_resume (void *opaque
)
589 UHCIState
*s
= (UHCIState
*)opaque
;
594 if (s
->cmd
& UHCI_CMD_EGSM
) {
595 s
->cmd
|= UHCI_CMD_FGR
;
596 s
->status
|= UHCI_STS_RD
;
601 static void uhci_attach(USBPort
*port1
, USBDevice
*dev
)
603 UHCIState
*s
= port1
->opaque
;
604 UHCIPort
*port
= &s
->ports
[port1
->index
];
607 if (port
->port
.dev
) {
608 usb_attach(port1
, NULL
);
610 /* set connect status */
611 port
->ctrl
|= UHCI_PORT_CCS
| UHCI_PORT_CSC
;
614 if (dev
->speed
== USB_SPEED_LOW
)
615 port
->ctrl
|= UHCI_PORT_LSDA
;
617 port
->ctrl
&= ~UHCI_PORT_LSDA
;
621 port
->port
.dev
= dev
;
622 /* send the attach message */
623 usb_send_msg(dev
, USB_MSG_ATTACH
);
625 /* set connect status */
626 if (port
->ctrl
& UHCI_PORT_CCS
) {
627 port
->ctrl
&= ~UHCI_PORT_CCS
;
628 port
->ctrl
|= UHCI_PORT_CSC
;
631 if (port
->ctrl
& UHCI_PORT_EN
) {
632 port
->ctrl
&= ~UHCI_PORT_EN
;
633 port
->ctrl
|= UHCI_PORT_ENC
;
638 dev
= port
->port
.dev
;
640 /* send the detach message */
641 usb_send_msg(dev
, USB_MSG_DETACH
);
643 port
->port
.dev
= NULL
;
647 static int uhci_broadcast_packet(UHCIState
*s
, USBPacket
*p
)
651 dprintf("uhci: packet enter. pid %s addr 0x%02x ep %d len %d\n",
652 pid2str(p
->pid
), p
->devaddr
, p
->devep
, p
->len
);
653 if (p
->pid
== USB_TOKEN_OUT
|| p
->pid
== USB_TOKEN_SETUP
)
654 dump_data(p
->data
, p
->len
);
657 for (i
= 0; i
< NB_PORTS
&& ret
== USB_RET_NODEV
; i
++) {
658 UHCIPort
*port
= &s
->ports
[i
];
659 USBDevice
*dev
= port
->port
.dev
;
661 if (dev
&& (port
->ctrl
& UHCI_PORT_EN
))
662 ret
= dev
->handle_packet(dev
, p
);
665 dprintf("uhci: packet exit. ret %d len %d\n", ret
, p
->len
);
666 if (p
->pid
== USB_TOKEN_IN
&& ret
> 0)
667 dump_data(p
->data
, ret
);
672 static void uhci_async_complete(USBPacket
* packet
, void *opaque
);
673 static void uhci_process_frame(UHCIState
*s
);
675 /* return -1 if fatal error (frame must be stopped)
677 1 if TD unsuccessful or inactive
679 static int uhci_complete_td(UHCIState
*s
, UHCI_TD
*td
, UHCIAsync
*async
, uint32_t *int_mask
)
681 int len
= 0, max_len
, err
, ret
;
684 max_len
= ((td
->token
>> 21) + 1) & 0x7ff;
685 pid
= td
->token
& 0xff;
687 ret
= async
->packet
.len
;
689 if (td
->ctrl
& TD_CTRL_IOC
)
692 if (td
->ctrl
& TD_CTRL_IOS
)
693 td
->ctrl
&= ~TD_CTRL_ACTIVE
;
698 len
= async
->packet
.len
;
699 td
->ctrl
= (td
->ctrl
& ~0x7ff) | ((len
- 1) & 0x7ff);
701 /* The NAK bit may have been set by a previous frame, so clear it
702 here. The docs are somewhat unclear, but win2k relies on this
704 td
->ctrl
&= ~(TD_CTRL_ACTIVE
| TD_CTRL_NAK
);
706 if (pid
== USB_TOKEN_IN
) {
709 ret
= USB_RET_BABBLE
;
714 /* write the data back */
715 cpu_physical_memory_write(td
->buffer
, async
->buffer
, len
);
718 if ((td
->ctrl
& TD_CTRL_SPD
) && len
< max_len
) {
720 /* short packet: do not update QH */
721 dprintf("uhci: short packet. td 0x%x token 0x%x\n", async
->td
, async
->token
);
732 td
->ctrl
|= TD_CTRL_STALL
;
733 td
->ctrl
&= ~TD_CTRL_ACTIVE
;
737 td
->ctrl
|= TD_CTRL_BABBLE
| TD_CTRL_STALL
;
738 td
->ctrl
&= ~TD_CTRL_ACTIVE
;
739 /* frame interrupted */
743 td
->ctrl
|= TD_CTRL_NAK
;
744 if (pid
== USB_TOKEN_SETUP
)
753 /* Retry the TD if error count is not zero */
755 td
->ctrl
|= TD_CTRL_TIMEOUT
;
756 err
= (td
->ctrl
>> TD_CTRL_ERROR_SHIFT
) & 3;
760 td
->ctrl
&= ~TD_CTRL_ACTIVE
;
761 s
->status
|= UHCI_STS_USBERR
;
765 td
->ctrl
= (td
->ctrl
& ~(3 << TD_CTRL_ERROR_SHIFT
)) |
766 (err
<< TD_CTRL_ERROR_SHIFT
);
770 static int uhci_handle_td(UHCIState
*s
, uint32_t addr
, UHCI_TD
*td
, uint32_t *int_mask
)
773 int len
= 0, max_len
;
777 if (!(td
->ctrl
& TD_CTRL_ACTIVE
))
780 async
= uhci_async_find_td(s
, addr
, td
->token
);
782 /* Already submitted */
788 uhci_async_unlink(s
, async
);
792 /* Allocate new packet */
793 async
= uhci_async_alloc(s
);
799 async
->token
= td
->token
;
801 max_len
= ((td
->token
>> 21) + 1) & 0x7ff;
802 pid
= td
->token
& 0xff;
804 async
->packet
.pid
= pid
;
805 async
->packet
.devaddr
= (td
->token
>> 8) & 0x7f;
806 async
->packet
.devep
= (td
->token
>> 15) & 0xf;
807 async
->packet
.data
= async
->buffer
;
808 async
->packet
.len
= max_len
;
809 async
->packet
.complete_cb
= uhci_async_complete
;
810 async
->packet
.complete_opaque
= s
;
814 case USB_TOKEN_SETUP
:
815 cpu_physical_memory_read(td
->buffer
, async
->buffer
, max_len
);
816 len
= uhci_broadcast_packet(s
, &async
->packet
);
822 len
= uhci_broadcast_packet(s
, &async
->packet
);
826 /* invalid pid : frame interrupted */
827 uhci_async_free(s
, async
);
828 s
->status
|= UHCI_STS_HCPERR
;
833 if (len
== USB_RET_ASYNC
) {
834 uhci_async_link(s
, async
);
838 async
->packet
.len
= len
;
841 len
= uhci_complete_td(s
, td
, async
, int_mask
);
842 uhci_async_free(s
, async
);
846 static void uhci_async_complete(USBPacket
*packet
, void *opaque
)
848 UHCIState
*s
= opaque
;
849 UHCIAsync
*async
= (UHCIAsync
*) packet
;
851 dprintf("uhci: async complete. td 0x%x token 0x%x\n", async
->td
, async
->token
);
855 uhci_process_frame(s
);
858 static int is_valid(uint32_t link
)
860 return (link
& 1) == 0;
863 static int is_qh(uint32_t link
)
865 return (link
& 2) != 0;
868 static int depth_first(uint32_t link
)
870 return (link
& 4) != 0;
873 /* QH DB used for detecting QH loops */
874 #define UHCI_MAX_QUEUES 128
876 uint32_t addr
[UHCI_MAX_QUEUES
];
880 static void qhdb_reset(QhDb
*db
)
885 /* Add QH to DB. Returns 1 if already present or DB is full. */
886 static int qhdb_insert(QhDb
*db
, uint32_t addr
)
889 for (i
= 0; i
< db
->count
; i
++)
890 if (db
->addr
[i
] == addr
)
893 if (db
->count
>= UHCI_MAX_QUEUES
)
896 db
->addr
[db
->count
++] = addr
;
900 static void uhci_process_frame(UHCIState
*s
)
902 uint32_t frame_addr
, link
, old_td_ctrl
, val
, int_mask
;
909 frame_addr
= s
->fl_base_addr
+ ((s
->frnum
& 0x3ff) << 2);
911 dprintf("uhci: processing frame %d addr 0x%x\n" , s
->frnum
, frame_addr
);
913 cpu_physical_memory_read(frame_addr
, (uint8_t *)&link
, 4);
921 for (cnt
= FRAME_MAX_LOOPS
; is_valid(link
) && cnt
; cnt
--) {
925 if (qhdb_insert(&qhdb
, link
)) {
927 * We're going in circles. Which is not a bug because
928 * HCD is allowed to do that as part of the BW management.
929 * In our case though it makes no sense to spin here. Sync transations
930 * are already done, and async completion handler will re-process
931 * the frame when something is ready.
933 dprintf("uhci: detected loop. qh 0x%x\n", link
);
937 cpu_physical_memory_read(link
& ~0xf, (uint8_t *) &qh
, sizeof(qh
));
938 le32_to_cpus(&qh
.link
);
939 le32_to_cpus(&qh
.el_link
);
941 dprintf("uhci: QH 0x%x load. link 0x%x elink 0x%x\n",
942 link
, qh
.link
, qh
.el_link
);
944 if (!is_valid(qh
.el_link
)) {
945 /* QH w/o elements */
949 /* QH with elements */
957 cpu_physical_memory_read(link
& ~0xf, (uint8_t *) &td
, sizeof(td
));
958 le32_to_cpus(&td
.link
);
959 le32_to_cpus(&td
.ctrl
);
960 le32_to_cpus(&td
.token
);
961 le32_to_cpus(&td
.buffer
);
963 dprintf("uhci: TD 0x%x load. link 0x%x ctrl 0x%x token 0x%x qh 0x%x\n",
964 link
, td
.link
, td
.ctrl
, td
.token
, curr_qh
);
966 old_td_ctrl
= td
.ctrl
;
967 ret
= uhci_handle_td(s
, link
, &td
, &int_mask
);
968 if (old_td_ctrl
!= td
.ctrl
) {
969 /* update the status bits of the TD */
970 val
= cpu_to_le32(td
.ctrl
);
971 cpu_physical_memory_write((link
& ~0xf) + 4,
972 (const uint8_t *)&val
, sizeof(val
));
976 /* interrupted frame */
980 if (ret
== 2 || ret
== 1) {
981 dprintf("uhci: TD 0x%x %s. link 0x%x ctrl 0x%x token 0x%x qh 0x%x\n",
982 link
, ret
== 2 ? "pend" : "skip",
983 td
.link
, td
.ctrl
, td
.token
, curr_qh
);
985 link
= curr_qh
? qh
.link
: td
.link
;
991 dprintf("uhci: TD 0x%x done. link 0x%x ctrl 0x%x token 0x%x qh 0x%x\n",
992 link
, td
.link
, td
.ctrl
, td
.token
, curr_qh
);
997 /* update QH element link */
999 val
= cpu_to_le32(qh
.el_link
);
1000 cpu_physical_memory_write((curr_qh
& ~0xf) + 4,
1001 (const uint8_t *)&val
, sizeof(val
));
1003 if (!depth_first(link
)) {
1004 /* done with this QH */
1006 dprintf("uhci: QH 0x%x done. link 0x%x elink 0x%x\n",
1007 curr_qh
, qh
.link
, qh
.el_link
);
1014 /* go to the next entry */
1017 s
->pending_int_mask
= int_mask
;
1020 static void uhci_frame_timer(void *opaque
)
1022 UHCIState
*s
= opaque
;
1023 int64_t expire_time
;
1025 if (!(s
->cmd
& UHCI_CMD_RS
)) {
1027 qemu_del_timer(s
->frame_timer
);
1028 /* set hchalted bit in status - UHCI11D 2.1.2 */
1029 s
->status
|= UHCI_STS_HCHALTED
;
1031 dprintf("uhci: halted\n");
1035 /* Complete the previous frame */
1036 if (s
->pending_int_mask
) {
1037 s
->status2
|= s
->pending_int_mask
;
1038 s
->status
|= UHCI_STS_USBINT
;
1042 /* Start new frame */
1043 s
->frnum
= (s
->frnum
+ 1) & 0x7ff;
1045 dprintf("uhci: new frame #%u\n" , s
->frnum
);
1047 uhci_async_validate_begin(s
);
1049 uhci_process_frame(s
);
1051 uhci_async_validate_end(s
);
1053 /* prepare the timer for the next frame */
1054 expire_time
= qemu_get_clock(vm_clock
) +
1055 (ticks_per_sec
/ FRAME_TIMER_FREQ
);
1056 qemu_mod_timer(s
->frame_timer
, expire_time
);
1059 static void uhci_map(PCIDevice
*pci_dev
, int region_num
,
1060 uint32_t addr
, uint32_t size
, int type
)
1062 UHCIState
*s
= (UHCIState
*)pci_dev
;
1064 register_ioport_write(addr
, 32, 2, uhci_ioport_writew
, s
);
1065 register_ioport_read(addr
, 32, 2, uhci_ioport_readw
, s
);
1066 register_ioport_write(addr
, 32, 4, uhci_ioport_writel
, s
);
1067 register_ioport_read(addr
, 32, 4, uhci_ioport_readl
, s
);
1068 register_ioport_write(addr
, 32, 1, uhci_ioport_writeb
, s
);
1069 register_ioport_read(addr
, 32, 1, uhci_ioport_readb
, s
);
1072 void usb_uhci_piix3_init(PCIBus
*bus
, int devfn
)
1078 s
= (UHCIState
*)pci_register_device(bus
,
1079 "USB-UHCI", sizeof(UHCIState
),
1081 pci_conf
= s
->dev
.config
;
1082 pci_config_set_vendor_id(pci_conf
, PCI_VENDOR_ID_INTEL
);
1083 pci_config_set_device_id(pci_conf
, PCI_DEVICE_ID_INTEL_82371SB_2
);
1084 pci_conf
[0x08] = 0x01; // revision number
1085 pci_conf
[0x09] = 0x00;
1086 pci_config_set_class(pci_conf
, PCI_CLASS_SERIAL_USB
);
1087 pci_conf
[0x0e] = 0x00; // header_type
1088 pci_conf
[0x3d] = 4; // interrupt pin 3
1089 pci_conf
[0x60] = 0x10; // release number
1091 for(i
= 0; i
< NB_PORTS
; i
++) {
1092 qemu_register_usb_port(&s
->ports
[i
].port
, s
, i
, uhci_attach
);
1094 s
->frame_timer
= qemu_new_timer(vm_clock
, uhci_frame_timer
, s
);
1098 /* Use region 4 for consistency with real hardware. BSD guests seem
1100 pci_register_io_region(&s
->dev
, 4, 0x20,
1101 PCI_ADDRESS_SPACE_IO
, uhci_map
);
1103 register_savevm("uhci", 0, 1, uhci_save
, uhci_load
, s
);
1106 void usb_uhci_piix4_init(PCIBus
*bus
, int devfn
)
1112 s
= (UHCIState
*)pci_register_device(bus
,
1113 "USB-UHCI", sizeof(UHCIState
),
1115 pci_conf
= s
->dev
.config
;
1116 pci_config_set_vendor_id(pci_conf
, PCI_VENDOR_ID_INTEL
);
1117 pci_config_set_device_id(pci_conf
, PCI_DEVICE_ID_INTEL_82371AB_2
);
1118 pci_conf
[0x08] = 0x01; // revision number
1119 pci_conf
[0x09] = 0x00;
1120 pci_config_set_class(pci_conf
, PCI_CLASS_SERIAL_USB
);
1121 pci_conf
[0x0e] = 0x00; // header_type
1122 pci_conf
[0x3d] = 4; // interrupt pin 3
1123 pci_conf
[0x60] = 0x10; // release number
1125 for(i
= 0; i
< NB_PORTS
; i
++) {
1126 qemu_register_usb_port(&s
->ports
[i
].port
, s
, i
, uhci_attach
);
1128 s
->frame_timer
= qemu_new_timer(vm_clock
, uhci_frame_timer
, s
);
1132 /* Use region 4 for consistency with real hardware. BSD guests seem
1134 pci_register_io_region(&s
->dev
, 4, 0x20,
1135 PCI_ADDRESS_SPACE_IO
, uhci_map
);
1137 register_savevm("uhci", 0, 1, uhci_save
, uhci_load
, s
);