]> Git Repo - qemu.git/blob - hw/usb/hcd-uhci.c
usb: Add an usb_device_ep_stopped USBDevice method
[qemu.git] / hw / usb / hcd-uhci.c
1 /*
2  * USB UHCI controller emulation
3  *
4  * Copyright (c) 2005 Fabrice Bellard
5  *
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
9  *
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:
16  *
17  * The above copyright notice and this permission notice shall be included in
18  * all copies or substantial portions of the Software.
19  *
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
26  * THE SOFTWARE.
27  */
28 #include "hw/hw.h"
29 #include "hw/usb.h"
30 #include "hw/pci/pci.h"
31 #include "qemu/timer.h"
32 #include "qemu/iov.h"
33 #include "sysemu/dma.h"
34 #include "trace.h"
35
36 //#define DEBUG
37 //#define DEBUG_DUMP_DATA
38
39 #define UHCI_CMD_FGR      (1 << 4)
40 #define UHCI_CMD_EGSM     (1 << 3)
41 #define UHCI_CMD_GRESET   (1 << 2)
42 #define UHCI_CMD_HCRESET  (1 << 1)
43 #define UHCI_CMD_RS       (1 << 0)
44
45 #define UHCI_STS_HCHALTED (1 << 5)
46 #define UHCI_STS_HCPERR   (1 << 4)
47 #define UHCI_STS_HSERR    (1 << 3)
48 #define UHCI_STS_RD       (1 << 2)
49 #define UHCI_STS_USBERR   (1 << 1)
50 #define UHCI_STS_USBINT   (1 << 0)
51
52 #define TD_CTRL_SPD     (1 << 29)
53 #define TD_CTRL_ERROR_SHIFT  27
54 #define TD_CTRL_IOS     (1 << 25)
55 #define TD_CTRL_IOC     (1 << 24)
56 #define TD_CTRL_ACTIVE  (1 << 23)
57 #define TD_CTRL_STALL   (1 << 22)
58 #define TD_CTRL_BABBLE  (1 << 20)
59 #define TD_CTRL_NAK     (1 << 19)
60 #define TD_CTRL_TIMEOUT (1 << 18)
61
62 #define UHCI_PORT_SUSPEND (1 << 12)
63 #define UHCI_PORT_RESET (1 << 9)
64 #define UHCI_PORT_LSDA  (1 << 8)
65 #define UHCI_PORT_RD    (1 << 6)
66 #define UHCI_PORT_ENC   (1 << 3)
67 #define UHCI_PORT_EN    (1 << 2)
68 #define UHCI_PORT_CSC   (1 << 1)
69 #define UHCI_PORT_CCS   (1 << 0)
70
71 #define UHCI_PORT_READ_ONLY    (0x1bb)
72 #define UHCI_PORT_WRITE_CLEAR  (UHCI_PORT_CSC | UHCI_PORT_ENC)
73
74 #define FRAME_TIMER_FREQ 1000
75
76 #define FRAME_MAX_LOOPS  256
77
78 /* Must be large enough to handle 10 frame delay for initial isoc requests */
79 #define QH_VALID         32
80
81 #define MAX_FRAMES_PER_TICK    (QH_VALID / 2)
82
83 #define NB_PORTS 2
84
85 enum {
86     TD_RESULT_STOP_FRAME = 10,
87     TD_RESULT_COMPLETE,
88     TD_RESULT_NEXT_QH,
89     TD_RESULT_ASYNC_START,
90     TD_RESULT_ASYNC_CONT,
91 };
92
93 typedef struct UHCIState UHCIState;
94 typedef struct UHCIAsync UHCIAsync;
95 typedef struct UHCIQueue UHCIQueue;
96 typedef struct UHCIInfo UHCIInfo;
97 typedef struct UHCIPCIDeviceClass UHCIPCIDeviceClass;
98
99 struct UHCIInfo {
100     const char *name;
101     uint16_t   vendor_id;
102     uint16_t   device_id;
103     uint8_t    revision;
104     uint8_t    irq_pin;
105     int        (*initfn)(PCIDevice *dev);
106     bool       unplug;
107 };
108
109 struct UHCIPCIDeviceClass {
110     PCIDeviceClass parent_class;
111     UHCIInfo       info;
112 };
113
114 /* 
115  * Pending async transaction.
116  * 'packet' must be the first field because completion
117  * handler does "(UHCIAsync *) pkt" cast.
118  */
119
120 struct UHCIAsync {
121     USBPacket packet;
122     QEMUSGList sgl;
123     UHCIQueue *queue;
124     QTAILQ_ENTRY(UHCIAsync) next;
125     uint32_t  td_addr;
126     uint8_t   done;
127 };
128
129 struct UHCIQueue {
130     uint32_t  qh_addr;
131     uint32_t  token;
132     UHCIState *uhci;
133     USBEndpoint *ep;
134     QTAILQ_ENTRY(UHCIQueue) next;
135     QTAILQ_HEAD(asyncs_head, UHCIAsync) asyncs;
136     int8_t    valid;
137 };
138
139 typedef struct UHCIPort {
140     USBPort port;
141     uint16_t ctrl;
142 } UHCIPort;
143
144 struct UHCIState {
145     PCIDevice dev;
146     MemoryRegion io_bar;
147     USBBus bus; /* Note unused when we're a companion controller */
148     uint16_t cmd; /* cmd register */
149     uint16_t status;
150     uint16_t intr; /* interrupt enable register */
151     uint16_t frnum; /* frame number */
152     uint32_t fl_base_addr; /* frame list base address */
153     uint8_t sof_timing;
154     uint8_t status2; /* bit 0 and 1 are used to generate UHCI_STS_USBINT */
155     int64_t expire_time;
156     QEMUTimer *frame_timer;
157     QEMUBH *bh;
158     uint32_t frame_bytes;
159     uint32_t frame_bandwidth;
160     bool completions_only;
161     UHCIPort ports[NB_PORTS];
162
163     /* Interrupts that should be raised at the end of the current frame.  */
164     uint32_t pending_int_mask;
165     int irq_pin;
166
167     /* Active packets */
168     QTAILQ_HEAD(, UHCIQueue) queues;
169     uint8_t num_ports_vmstate;
170
171     /* Properties */
172     char *masterbus;
173     uint32_t firstport;
174     uint32_t maxframes;
175 };
176
177 typedef struct UHCI_TD {
178     uint32_t link;
179     uint32_t ctrl; /* see TD_CTRL_xxx */
180     uint32_t token;
181     uint32_t buffer;
182 } UHCI_TD;
183
184 typedef struct UHCI_QH {
185     uint32_t link;
186     uint32_t el_link;
187 } UHCI_QH;
188
189 static void uhci_async_cancel(UHCIAsync *async);
190 static void uhci_queue_fill(UHCIQueue *q, UHCI_TD *td);
191
192 static inline int32_t uhci_queue_token(UHCI_TD *td)
193 {
194     if ((td->token & (0xf << 15)) == 0) {
195         /* ctrl ep, cover ep and dev, not pid! */
196         return td->token & 0x7ff00;
197     } else {
198         /* covers ep, dev, pid -> identifies the endpoint */
199         return td->token & 0x7ffff;
200     }
201 }
202
203 static UHCIQueue *uhci_queue_new(UHCIState *s, uint32_t qh_addr, UHCI_TD *td,
204                                  USBEndpoint *ep)
205 {
206     UHCIQueue *queue;
207
208     queue = g_new0(UHCIQueue, 1);
209     queue->uhci = s;
210     queue->qh_addr = qh_addr;
211     queue->token = uhci_queue_token(td);
212     queue->ep = ep;
213     QTAILQ_INIT(&queue->asyncs);
214     QTAILQ_INSERT_HEAD(&s->queues, queue, next);
215     queue->valid = QH_VALID;
216     trace_usb_uhci_queue_add(queue->token);
217     return queue;
218 }
219
220 static void uhci_queue_free(UHCIQueue *queue, const char *reason)
221 {
222     UHCIState *s = queue->uhci;
223     UHCIAsync *async;
224
225     while (!QTAILQ_EMPTY(&queue->asyncs)) {
226         async = QTAILQ_FIRST(&queue->asyncs);
227         uhci_async_cancel(async);
228     }
229     usb_device_ep_stopped(queue->ep->dev, queue->ep);
230
231     trace_usb_uhci_queue_del(queue->token, reason);
232     QTAILQ_REMOVE(&s->queues, queue, next);
233     g_free(queue);
234 }
235
236 static UHCIQueue *uhci_queue_find(UHCIState *s, UHCI_TD *td)
237 {
238     uint32_t token = uhci_queue_token(td);
239     UHCIQueue *queue;
240
241     QTAILQ_FOREACH(queue, &s->queues, next) {
242         if (queue->token == token) {
243             return queue;
244         }
245     }
246     return NULL;
247 }
248
249 static bool uhci_queue_verify(UHCIQueue *queue, uint32_t qh_addr, UHCI_TD *td,
250                               uint32_t td_addr, bool queuing)
251 {
252     UHCIAsync *first = QTAILQ_FIRST(&queue->asyncs);
253
254     return queue->qh_addr == qh_addr &&
255            queue->token == uhci_queue_token(td) &&
256            (queuing || !(td->ctrl & TD_CTRL_ACTIVE) || first == NULL ||
257             first->td_addr == td_addr);
258 }
259
260 static UHCIAsync *uhci_async_alloc(UHCIQueue *queue, uint32_t td_addr)
261 {
262     UHCIAsync *async = g_new0(UHCIAsync, 1);
263
264     async->queue = queue;
265     async->td_addr = td_addr;
266     usb_packet_init(&async->packet);
267     pci_dma_sglist_init(&async->sgl, &queue->uhci->dev, 1);
268     trace_usb_uhci_packet_add(async->queue->token, async->td_addr);
269
270     return async;
271 }
272
273 static void uhci_async_free(UHCIAsync *async)
274 {
275     trace_usb_uhci_packet_del(async->queue->token, async->td_addr);
276     usb_packet_cleanup(&async->packet);
277     qemu_sglist_destroy(&async->sgl);
278     g_free(async);
279 }
280
281 static void uhci_async_link(UHCIAsync *async)
282 {
283     UHCIQueue *queue = async->queue;
284     QTAILQ_INSERT_TAIL(&queue->asyncs, async, next);
285     trace_usb_uhci_packet_link_async(async->queue->token, async->td_addr);
286 }
287
288 static void uhci_async_unlink(UHCIAsync *async)
289 {
290     UHCIQueue *queue = async->queue;
291     QTAILQ_REMOVE(&queue->asyncs, async, next);
292     trace_usb_uhci_packet_unlink_async(async->queue->token, async->td_addr);
293 }
294
295 static void uhci_async_cancel(UHCIAsync *async)
296 {
297     uhci_async_unlink(async);
298     trace_usb_uhci_packet_cancel(async->queue->token, async->td_addr,
299                                  async->done);
300     if (!async->done)
301         usb_cancel_packet(&async->packet);
302     usb_packet_unmap(&async->packet, &async->sgl);
303     uhci_async_free(async);
304 }
305
306 /*
307  * Mark all outstanding async packets as invalid.
308  * This is used for canceling them when TDs are removed by the HCD.
309  */
310 static void uhci_async_validate_begin(UHCIState *s)
311 {
312     UHCIQueue *queue;
313
314     QTAILQ_FOREACH(queue, &s->queues, next) {
315         queue->valid--;
316     }
317 }
318
319 /*
320  * Cancel async packets that are no longer valid
321  */
322 static void uhci_async_validate_end(UHCIState *s)
323 {
324     UHCIQueue *queue, *n;
325
326     QTAILQ_FOREACH_SAFE(queue, &s->queues, next, n) {
327         if (!queue->valid) {
328             uhci_queue_free(queue, "validate-end");
329         }
330     }
331 }
332
333 static void uhci_async_cancel_device(UHCIState *s, USBDevice *dev)
334 {
335     UHCIQueue *queue, *n;
336
337     QTAILQ_FOREACH_SAFE(queue, &s->queues, next, n) {
338         if (queue->ep->dev == dev) {
339             uhci_queue_free(queue, "cancel-device");
340         }
341     }
342 }
343
344 static void uhci_async_cancel_all(UHCIState *s)
345 {
346     UHCIQueue *queue, *nq;
347
348     QTAILQ_FOREACH_SAFE(queue, &s->queues, next, nq) {
349         uhci_queue_free(queue, "cancel-all");
350     }
351 }
352
353 static UHCIAsync *uhci_async_find_td(UHCIState *s, uint32_t td_addr)
354 {
355     UHCIQueue *queue;
356     UHCIAsync *async;
357
358     QTAILQ_FOREACH(queue, &s->queues, next) {
359         QTAILQ_FOREACH(async, &queue->asyncs, next) {
360             if (async->td_addr == td_addr) {
361                 return async;
362             }
363         }
364     }
365     return NULL;
366 }
367
368 static void uhci_update_irq(UHCIState *s)
369 {
370     int level;
371     if (((s->status2 & 1) && (s->intr & (1 << 2))) ||
372         ((s->status2 & 2) && (s->intr & (1 << 3))) ||
373         ((s->status & UHCI_STS_USBERR) && (s->intr & (1 << 0))) ||
374         ((s->status & UHCI_STS_RD) && (s->intr & (1 << 1))) ||
375         (s->status & UHCI_STS_HSERR) ||
376         (s->status & UHCI_STS_HCPERR)) {
377         level = 1;
378     } else {
379         level = 0;
380     }
381     qemu_set_irq(s->dev.irq[s->irq_pin], level);
382 }
383
384 static void uhci_reset(void *opaque)
385 {
386     UHCIState *s = opaque;
387     uint8_t *pci_conf;
388     int i;
389     UHCIPort *port;
390
391     trace_usb_uhci_reset();
392
393     pci_conf = s->dev.config;
394
395     pci_conf[0x6a] = 0x01; /* usb clock */
396     pci_conf[0x6b] = 0x00;
397     s->cmd = 0;
398     s->status = 0;
399     s->status2 = 0;
400     s->intr = 0;
401     s->fl_base_addr = 0;
402     s->sof_timing = 64;
403
404     for(i = 0; i < NB_PORTS; i++) {
405         port = &s->ports[i];
406         port->ctrl = 0x0080;
407         if (port->port.dev && port->port.dev->attached) {
408             usb_port_reset(&port->port);
409         }
410     }
411
412     uhci_async_cancel_all(s);
413     qemu_bh_cancel(s->bh);
414     uhci_update_irq(s);
415 }
416
417 static const VMStateDescription vmstate_uhci_port = {
418     .name = "uhci port",
419     .version_id = 1,
420     .minimum_version_id = 1,
421     .minimum_version_id_old = 1,
422     .fields      = (VMStateField []) {
423         VMSTATE_UINT16(ctrl, UHCIPort),
424         VMSTATE_END_OF_LIST()
425     }
426 };
427
428 static int uhci_post_load(void *opaque, int version_id)
429 {
430     UHCIState *s = opaque;
431
432     if (version_id < 2) {
433         s->expire_time = qemu_get_clock_ns(vm_clock) +
434             (get_ticks_per_sec() / FRAME_TIMER_FREQ);
435     }
436     return 0;
437 }
438
439 static const VMStateDescription vmstate_uhci = {
440     .name = "uhci",
441     .version_id = 3,
442     .minimum_version_id = 1,
443     .minimum_version_id_old = 1,
444     .post_load = uhci_post_load,
445     .fields      = (VMStateField []) {
446         VMSTATE_PCI_DEVICE(dev, UHCIState),
447         VMSTATE_UINT8_EQUAL(num_ports_vmstate, UHCIState),
448         VMSTATE_STRUCT_ARRAY(ports, UHCIState, NB_PORTS, 1,
449                              vmstate_uhci_port, UHCIPort),
450         VMSTATE_UINT16(cmd, UHCIState),
451         VMSTATE_UINT16(status, UHCIState),
452         VMSTATE_UINT16(intr, UHCIState),
453         VMSTATE_UINT16(frnum, UHCIState),
454         VMSTATE_UINT32(fl_base_addr, UHCIState),
455         VMSTATE_UINT8(sof_timing, UHCIState),
456         VMSTATE_UINT8(status2, UHCIState),
457         VMSTATE_TIMER(frame_timer, UHCIState),
458         VMSTATE_INT64_V(expire_time, UHCIState, 2),
459         VMSTATE_UINT32_V(pending_int_mask, UHCIState, 3),
460         VMSTATE_END_OF_LIST()
461     }
462 };
463
464 static void uhci_ioport_writeb(void *opaque, uint32_t addr, uint32_t val)
465 {
466     UHCIState *s = opaque;
467
468     addr &= 0x1f;
469     switch(addr) {
470     case 0x0c:
471         s->sof_timing = val;
472         break;
473     }
474 }
475
476 static uint32_t uhci_ioport_readb(void *opaque, uint32_t addr)
477 {
478     UHCIState *s = opaque;
479     uint32_t val;
480
481     addr &= 0x1f;
482     switch(addr) {
483     case 0x0c:
484         val = s->sof_timing;
485         break;
486     default:
487         val = 0xff;
488         break;
489     }
490     return val;
491 }
492
493 static void uhci_ioport_writew(void *opaque, uint32_t addr, uint32_t val)
494 {
495     UHCIState *s = opaque;
496
497     addr &= 0x1f;
498     trace_usb_uhci_mmio_writew(addr, val);
499
500     switch(addr) {
501     case 0x00:
502         if ((val & UHCI_CMD_RS) && !(s->cmd & UHCI_CMD_RS)) {
503             /* start frame processing */
504             trace_usb_uhci_schedule_start();
505             s->expire_time = qemu_get_clock_ns(vm_clock) +
506                 (get_ticks_per_sec() / FRAME_TIMER_FREQ);
507             qemu_mod_timer(s->frame_timer, s->expire_time);
508             s->status &= ~UHCI_STS_HCHALTED;
509         } else if (!(val & UHCI_CMD_RS)) {
510             s->status |= UHCI_STS_HCHALTED;
511         }
512         if (val & UHCI_CMD_GRESET) {
513             UHCIPort *port;
514             int i;
515
516             /* send reset on the USB bus */
517             for(i = 0; i < NB_PORTS; i++) {
518                 port = &s->ports[i];
519                 usb_device_reset(port->port.dev);
520             }
521             uhci_reset(s);
522             return;
523         }
524         if (val & UHCI_CMD_HCRESET) {
525             uhci_reset(s);
526             return;
527         }
528         s->cmd = val;
529         break;
530     case 0x02:
531         s->status &= ~val;
532         /* XXX: the chip spec is not coherent, so we add a hidden
533            register to distinguish between IOC and SPD */
534         if (val & UHCI_STS_USBINT)
535             s->status2 = 0;
536         uhci_update_irq(s);
537         break;
538     case 0x04:
539         s->intr = val;
540         uhci_update_irq(s);
541         break;
542     case 0x06:
543         if (s->status & UHCI_STS_HCHALTED)
544             s->frnum = val & 0x7ff;
545         break;
546     case 0x10 ... 0x1f:
547         {
548             UHCIPort *port;
549             USBDevice *dev;
550             int n;
551
552             n = (addr >> 1) & 7;
553             if (n >= NB_PORTS)
554                 return;
555             port = &s->ports[n];
556             dev = port->port.dev;
557             if (dev && dev->attached) {
558                 /* port reset */
559                 if ( (val & UHCI_PORT_RESET) &&
560                      !(port->ctrl & UHCI_PORT_RESET) ) {
561                     usb_device_reset(dev);
562                 }
563             }
564             port->ctrl &= UHCI_PORT_READ_ONLY;
565             /* enabled may only be set if a device is connected */
566             if (!(port->ctrl & UHCI_PORT_CCS)) {
567                 val &= ~UHCI_PORT_EN;
568             }
569             port->ctrl |= (val & ~UHCI_PORT_READ_ONLY);
570             /* some bits are reset when a '1' is written to them */
571             port->ctrl &= ~(val & UHCI_PORT_WRITE_CLEAR);
572         }
573         break;
574     }
575 }
576
577 static uint32_t uhci_ioport_readw(void *opaque, uint32_t addr)
578 {
579     UHCIState *s = opaque;
580     uint32_t val;
581
582     addr &= 0x1f;
583     switch(addr) {
584     case 0x00:
585         val = s->cmd;
586         break;
587     case 0x02:
588         val = s->status;
589         break;
590     case 0x04:
591         val = s->intr;
592         break;
593     case 0x06:
594         val = s->frnum;
595         break;
596     case 0x10 ... 0x1f:
597         {
598             UHCIPort *port;
599             int n;
600             n = (addr >> 1) & 7;
601             if (n >= NB_PORTS)
602                 goto read_default;
603             port = &s->ports[n];
604             val = port->ctrl;
605         }
606         break;
607     default:
608     read_default:
609         val = 0xff7f; /* disabled port */
610         break;
611     }
612
613     trace_usb_uhci_mmio_readw(addr, val);
614
615     return val;
616 }
617
618 static void uhci_ioport_writel(void *opaque, uint32_t addr, uint32_t val)
619 {
620     UHCIState *s = opaque;
621
622     addr &= 0x1f;
623     trace_usb_uhci_mmio_writel(addr, val);
624
625     switch(addr) {
626     case 0x08:
627         s->fl_base_addr = val & ~0xfff;
628         break;
629     }
630 }
631
632 static uint32_t uhci_ioport_readl(void *opaque, uint32_t addr)
633 {
634     UHCIState *s = opaque;
635     uint32_t val;
636
637     addr &= 0x1f;
638     switch(addr) {
639     case 0x08:
640         val = s->fl_base_addr;
641         break;
642     default:
643         val = 0xffffffff;
644         break;
645     }
646     trace_usb_uhci_mmio_readl(addr, val);
647     return val;
648 }
649
650 /* signal resume if controller suspended */
651 static void uhci_resume (void *opaque)
652 {
653     UHCIState *s = (UHCIState *)opaque;
654
655     if (!s)
656         return;
657
658     if (s->cmd & UHCI_CMD_EGSM) {
659         s->cmd |= UHCI_CMD_FGR;
660         s->status |= UHCI_STS_RD;
661         uhci_update_irq(s);
662     }
663 }
664
665 static void uhci_attach(USBPort *port1)
666 {
667     UHCIState *s = port1->opaque;
668     UHCIPort *port = &s->ports[port1->index];
669
670     /* set connect status */
671     port->ctrl |= UHCI_PORT_CCS | UHCI_PORT_CSC;
672
673     /* update speed */
674     if (port->port.dev->speed == USB_SPEED_LOW) {
675         port->ctrl |= UHCI_PORT_LSDA;
676     } else {
677         port->ctrl &= ~UHCI_PORT_LSDA;
678     }
679
680     uhci_resume(s);
681 }
682
683 static void uhci_detach(USBPort *port1)
684 {
685     UHCIState *s = port1->opaque;
686     UHCIPort *port = &s->ports[port1->index];
687
688     uhci_async_cancel_device(s, port1->dev);
689
690     /* set connect status */
691     if (port->ctrl & UHCI_PORT_CCS) {
692         port->ctrl &= ~UHCI_PORT_CCS;
693         port->ctrl |= UHCI_PORT_CSC;
694     }
695     /* disable port */
696     if (port->ctrl & UHCI_PORT_EN) {
697         port->ctrl &= ~UHCI_PORT_EN;
698         port->ctrl |= UHCI_PORT_ENC;
699     }
700
701     uhci_resume(s);
702 }
703
704 static void uhci_child_detach(USBPort *port1, USBDevice *child)
705 {
706     UHCIState *s = port1->opaque;
707
708     uhci_async_cancel_device(s, child);
709 }
710
711 static void uhci_wakeup(USBPort *port1)
712 {
713     UHCIState *s = port1->opaque;
714     UHCIPort *port = &s->ports[port1->index];
715
716     if (port->ctrl & UHCI_PORT_SUSPEND && !(port->ctrl & UHCI_PORT_RD)) {
717         port->ctrl |= UHCI_PORT_RD;
718         uhci_resume(s);
719     }
720 }
721
722 static USBDevice *uhci_find_device(UHCIState *s, uint8_t addr)
723 {
724     USBDevice *dev;
725     int i;
726
727     for (i = 0; i < NB_PORTS; i++) {
728         UHCIPort *port = &s->ports[i];
729         if (!(port->ctrl & UHCI_PORT_EN)) {
730             continue;
731         }
732         dev = usb_find_device(&port->port, addr);
733         if (dev != NULL) {
734             return dev;
735         }
736     }
737     return NULL;
738 }
739
740 static void uhci_read_td(UHCIState *s, UHCI_TD *td, uint32_t link)
741 {
742     pci_dma_read(&s->dev, link & ~0xf, td, sizeof(*td));
743     le32_to_cpus(&td->link);
744     le32_to_cpus(&td->ctrl);
745     le32_to_cpus(&td->token);
746     le32_to_cpus(&td->buffer);
747 }
748
749 static int uhci_handle_td_error(UHCIState *s, UHCI_TD *td, uint32_t td_addr,
750                                 int status, uint32_t *int_mask)
751 {
752     uint32_t queue_token = uhci_queue_token(td);
753     int ret;
754
755     switch (status) {
756     case USB_RET_NAK:
757         td->ctrl |= TD_CTRL_NAK;
758         return TD_RESULT_NEXT_QH;
759
760     case USB_RET_STALL:
761         td->ctrl |= TD_CTRL_STALL;
762         trace_usb_uhci_packet_complete_stall(queue_token, td_addr);
763         ret = TD_RESULT_NEXT_QH;
764         break;
765
766     case USB_RET_BABBLE:
767         td->ctrl |= TD_CTRL_BABBLE | TD_CTRL_STALL;
768         /* frame interrupted */
769         trace_usb_uhci_packet_complete_babble(queue_token, td_addr);
770         ret = TD_RESULT_STOP_FRAME;
771         break;
772
773     case USB_RET_IOERROR:
774     case USB_RET_NODEV:
775     default:
776         td->ctrl |= TD_CTRL_TIMEOUT;
777         td->ctrl &= ~(3 << TD_CTRL_ERROR_SHIFT);
778         trace_usb_uhci_packet_complete_error(queue_token, td_addr);
779         ret = TD_RESULT_NEXT_QH;
780         break;
781     }
782
783     td->ctrl &= ~TD_CTRL_ACTIVE;
784     s->status |= UHCI_STS_USBERR;
785     if (td->ctrl & TD_CTRL_IOC) {
786         *int_mask |= 0x01;
787     }
788     uhci_update_irq(s);
789     return ret;
790 }
791
792 static int uhci_complete_td(UHCIState *s, UHCI_TD *td, UHCIAsync *async, uint32_t *int_mask)
793 {
794     int len = 0, max_len;
795     uint8_t pid;
796
797     max_len = ((td->token >> 21) + 1) & 0x7ff;
798     pid = td->token & 0xff;
799
800     if (td->ctrl & TD_CTRL_IOS)
801         td->ctrl &= ~TD_CTRL_ACTIVE;
802
803     if (async->packet.status != USB_RET_SUCCESS) {
804         return uhci_handle_td_error(s, td, async->td_addr,
805                                     async->packet.status, int_mask);
806     }
807
808     len = async->packet.actual_length;
809     td->ctrl = (td->ctrl & ~0x7ff) | ((len - 1) & 0x7ff);
810
811     /* The NAK bit may have been set by a previous frame, so clear it
812        here.  The docs are somewhat unclear, but win2k relies on this
813        behavior.  */
814     td->ctrl &= ~(TD_CTRL_ACTIVE | TD_CTRL_NAK);
815     if (td->ctrl & TD_CTRL_IOC)
816         *int_mask |= 0x01;
817
818     if (pid == USB_TOKEN_IN) {
819         if ((td->ctrl & TD_CTRL_SPD) && len < max_len) {
820             *int_mask |= 0x02;
821             /* short packet: do not update QH */
822             trace_usb_uhci_packet_complete_shortxfer(async->queue->token,
823                                                      async->td_addr);
824             return TD_RESULT_NEXT_QH;
825         }
826     }
827
828     /* success */
829     trace_usb_uhci_packet_complete_success(async->queue->token,
830                                            async->td_addr);
831     return TD_RESULT_COMPLETE;
832 }
833
834 static int uhci_handle_td(UHCIState *s, UHCIQueue *q, uint32_t qh_addr,
835                           UHCI_TD *td, uint32_t td_addr, uint32_t *int_mask)
836 {
837     int ret, max_len;
838     bool spd;
839     bool queuing = (q != NULL);
840     uint8_t pid = td->token & 0xff;
841     UHCIAsync *async = uhci_async_find_td(s, td_addr);
842
843     if (async) {
844         if (uhci_queue_verify(async->queue, qh_addr, td, td_addr, queuing)) {
845             assert(q == NULL || q == async->queue);
846             q = async->queue;
847         } else {
848             uhci_queue_free(async->queue, "guest re-used pending td");
849             async = NULL;
850         }
851     }
852
853     if (q == NULL) {
854         q = uhci_queue_find(s, td);
855         if (q && !uhci_queue_verify(q, qh_addr, td, td_addr, queuing)) {
856             uhci_queue_free(q, "guest re-used qh");
857             q = NULL;
858         }
859     }
860
861     if (q) {
862         q->valid = QH_VALID;
863     }
864
865     /* Is active ? */
866     if (!(td->ctrl & TD_CTRL_ACTIVE)) {
867         if (async) {
868             /* Guest marked a pending td non-active, cancel the queue */
869             uhci_queue_free(async->queue, "pending td non-active");
870         }
871         /*
872          * ehci11d spec page 22: "Even if the Active bit in the TD is already
873          * cleared when the TD is fetched ... an IOC interrupt is generated"
874          */
875         if (td->ctrl & TD_CTRL_IOC) {
876                 *int_mask |= 0x01;
877         }
878         return TD_RESULT_NEXT_QH;
879     }
880
881     if (async) {
882         if (queuing) {
883             /* we are busy filling the queue, we are not prepared
884                to consume completed packages then, just leave them
885                in async state */
886             return TD_RESULT_ASYNC_CONT;
887         }
888         if (!async->done) {
889             UHCI_TD last_td;
890             UHCIAsync *last = QTAILQ_LAST(&async->queue->asyncs, asyncs_head);
891             /*
892              * While we are waiting for the current td to complete, the guest
893              * may have added more tds to the queue. Note we re-read the td
894              * rather then caching it, as we want to see guest made changes!
895              */
896             uhci_read_td(s, &last_td, last->td_addr);
897             uhci_queue_fill(async->queue, &last_td);
898
899             return TD_RESULT_ASYNC_CONT;
900         }
901         uhci_async_unlink(async);
902         goto done;
903     }
904
905     if (s->completions_only) {
906         return TD_RESULT_ASYNC_CONT;
907     }
908
909     /* Allocate new packet */
910     if (q == NULL) {
911         USBDevice *dev = uhci_find_device(s, (td->token >> 8) & 0x7f);
912         USBEndpoint *ep = usb_ep_get(dev, pid, (td->token >> 15) & 0xf);
913
914         if (ep == NULL) {
915             return uhci_handle_td_error(s, td, td_addr, USB_RET_NODEV,
916                                         int_mask);
917         }
918         q = uhci_queue_new(s, qh_addr, td, ep);
919     }
920     async = uhci_async_alloc(q, td_addr);
921
922     max_len = ((td->token >> 21) + 1) & 0x7ff;
923     spd = (pid == USB_TOKEN_IN && (td->ctrl & TD_CTRL_SPD) != 0);
924     usb_packet_setup(&async->packet, pid, q->ep, td_addr, spd,
925                      (td->ctrl & TD_CTRL_IOC) != 0);
926     qemu_sglist_add(&async->sgl, td->buffer, max_len);
927     usb_packet_map(&async->packet, &async->sgl);
928
929     switch(pid) {
930     case USB_TOKEN_OUT:
931     case USB_TOKEN_SETUP:
932         usb_handle_packet(q->ep->dev, &async->packet);
933         if (async->packet.status == USB_RET_SUCCESS) {
934             async->packet.actual_length = max_len;
935         }
936         break;
937
938     case USB_TOKEN_IN:
939         usb_handle_packet(q->ep->dev, &async->packet);
940         break;
941
942     default:
943         /* invalid pid : frame interrupted */
944         usb_packet_unmap(&async->packet, &async->sgl);
945         uhci_async_free(async);
946         s->status |= UHCI_STS_HCPERR;
947         uhci_update_irq(s);
948         return TD_RESULT_STOP_FRAME;
949     }
950
951     if (async->packet.status == USB_RET_ASYNC) {
952         uhci_async_link(async);
953         if (!queuing) {
954             uhci_queue_fill(q, td);
955         }
956         return TD_RESULT_ASYNC_START;
957     }
958
959 done:
960     ret = uhci_complete_td(s, td, async, int_mask);
961     usb_packet_unmap(&async->packet, &async->sgl);
962     uhci_async_free(async);
963     return ret;
964 }
965
966 static void uhci_async_complete(USBPort *port, USBPacket *packet)
967 {
968     UHCIAsync *async = container_of(packet, UHCIAsync, packet);
969     UHCIState *s = async->queue->uhci;
970
971     if (packet->status == USB_RET_REMOVE_FROM_QUEUE) {
972         uhci_async_cancel(async);
973         return;
974     }
975
976     async->done = 1;
977     /* Force processing of this packet *now*, needed for migration */
978     s->completions_only = true;
979     qemu_bh_schedule(s->bh);
980 }
981
982 static int is_valid(uint32_t link)
983 {
984     return (link & 1) == 0;
985 }
986
987 static int is_qh(uint32_t link)
988 {
989     return (link & 2) != 0;
990 }
991
992 static int depth_first(uint32_t link)
993 {
994     return (link & 4) != 0;
995 }
996
997 /* QH DB used for detecting QH loops */
998 #define UHCI_MAX_QUEUES 128
999 typedef struct {
1000     uint32_t addr[UHCI_MAX_QUEUES];
1001     int      count;
1002 } QhDb;
1003
1004 static void qhdb_reset(QhDb *db)
1005 {
1006     db->count = 0;
1007 }
1008
1009 /* Add QH to DB. Returns 1 if already present or DB is full. */
1010 static int qhdb_insert(QhDb *db, uint32_t addr)
1011 {
1012     int i;
1013     for (i = 0; i < db->count; i++)
1014         if (db->addr[i] == addr)
1015             return 1;
1016
1017     if (db->count >= UHCI_MAX_QUEUES)
1018         return 1;
1019
1020     db->addr[db->count++] = addr;
1021     return 0;
1022 }
1023
1024 static void uhci_queue_fill(UHCIQueue *q, UHCI_TD *td)
1025 {
1026     uint32_t int_mask = 0;
1027     uint32_t plink = td->link;
1028     UHCI_TD ptd;
1029     int ret;
1030
1031     while (is_valid(plink)) {
1032         uhci_read_td(q->uhci, &ptd, plink);
1033         if (!(ptd.ctrl & TD_CTRL_ACTIVE)) {
1034             break;
1035         }
1036         if (uhci_queue_token(&ptd) != q->token) {
1037             break;
1038         }
1039         trace_usb_uhci_td_queue(plink & ~0xf, ptd.ctrl, ptd.token);
1040         ret = uhci_handle_td(q->uhci, q, q->qh_addr, &ptd, plink, &int_mask);
1041         if (ret == TD_RESULT_ASYNC_CONT) {
1042             break;
1043         }
1044         assert(ret == TD_RESULT_ASYNC_START);
1045         assert(int_mask == 0);
1046         plink = ptd.link;
1047     }
1048     usb_device_flush_ep_queue(q->ep->dev, q->ep);
1049 }
1050
1051 static void uhci_process_frame(UHCIState *s)
1052 {
1053     uint32_t frame_addr, link, old_td_ctrl, val, int_mask;
1054     uint32_t curr_qh, td_count = 0;
1055     int cnt, ret;
1056     UHCI_TD td;
1057     UHCI_QH qh;
1058     QhDb qhdb;
1059
1060     frame_addr = s->fl_base_addr + ((s->frnum & 0x3ff) << 2);
1061
1062     pci_dma_read(&s->dev, frame_addr, &link, 4);
1063     le32_to_cpus(&link);
1064
1065     int_mask = 0;
1066     curr_qh  = 0;
1067
1068     qhdb_reset(&qhdb);
1069
1070     for (cnt = FRAME_MAX_LOOPS; is_valid(link) && cnt; cnt--) {
1071         if (!s->completions_only && s->frame_bytes >= s->frame_bandwidth) {
1072             /* We've reached the usb 1.1 bandwidth, which is
1073                1280 bytes/frame, stop processing */
1074             trace_usb_uhci_frame_stop_bandwidth();
1075             break;
1076         }
1077         if (is_qh(link)) {
1078             /* QH */
1079             trace_usb_uhci_qh_load(link & ~0xf);
1080
1081             if (qhdb_insert(&qhdb, link)) {
1082                 /*
1083                  * We're going in circles. Which is not a bug because
1084                  * HCD is allowed to do that as part of the BW management.
1085                  *
1086                  * Stop processing here if no transaction has been done
1087                  * since we've been here last time.
1088                  */
1089                 if (td_count == 0) {
1090                     trace_usb_uhci_frame_loop_stop_idle();
1091                     break;
1092                 } else {
1093                     trace_usb_uhci_frame_loop_continue();
1094                     td_count = 0;
1095                     qhdb_reset(&qhdb);
1096                     qhdb_insert(&qhdb, link);
1097                 }
1098             }
1099
1100             pci_dma_read(&s->dev, link & ~0xf, &qh, sizeof(qh));
1101             le32_to_cpus(&qh.link);
1102             le32_to_cpus(&qh.el_link);
1103
1104             if (!is_valid(qh.el_link)) {
1105                 /* QH w/o elements */
1106                 curr_qh = 0;
1107                 link = qh.link;
1108             } else {
1109                 /* QH with elements */
1110                 curr_qh = link;
1111                 link = qh.el_link;
1112             }
1113             continue;
1114         }
1115
1116         /* TD */
1117         uhci_read_td(s, &td, link);
1118         trace_usb_uhci_td_load(curr_qh & ~0xf, link & ~0xf, td.ctrl, td.token);
1119
1120         old_td_ctrl = td.ctrl;
1121         ret = uhci_handle_td(s, NULL, curr_qh, &td, link, &int_mask);
1122         if (old_td_ctrl != td.ctrl) {
1123             /* update the status bits of the TD */
1124             val = cpu_to_le32(td.ctrl);
1125             pci_dma_write(&s->dev, (link & ~0xf) + 4, &val, sizeof(val));
1126         }
1127
1128         switch (ret) {
1129         case TD_RESULT_STOP_FRAME: /* interrupted frame */
1130             goto out;
1131
1132         case TD_RESULT_NEXT_QH:
1133         case TD_RESULT_ASYNC_CONT:
1134             trace_usb_uhci_td_nextqh(curr_qh & ~0xf, link & ~0xf);
1135             link = curr_qh ? qh.link : td.link;
1136             continue;
1137
1138         case TD_RESULT_ASYNC_START:
1139             trace_usb_uhci_td_async(curr_qh & ~0xf, link & ~0xf);
1140             link = curr_qh ? qh.link : td.link;
1141             continue;
1142
1143         case TD_RESULT_COMPLETE:
1144             trace_usb_uhci_td_complete(curr_qh & ~0xf, link & ~0xf);
1145             link = td.link;
1146             td_count++;
1147             s->frame_bytes += (td.ctrl & 0x7ff) + 1;
1148
1149             if (curr_qh) {
1150                 /* update QH element link */
1151                 qh.el_link = link;
1152                 val = cpu_to_le32(qh.el_link);
1153                 pci_dma_write(&s->dev, (curr_qh & ~0xf) + 4, &val, sizeof(val));
1154
1155                 if (!depth_first(link)) {
1156                     /* done with this QH */
1157                     curr_qh = 0;
1158                     link    = qh.link;
1159                 }
1160             }
1161             break;
1162
1163         default:
1164             assert(!"unknown return code");
1165         }
1166
1167         /* go to the next entry */
1168     }
1169
1170 out:
1171     s->pending_int_mask |= int_mask;
1172 }
1173
1174 static void uhci_bh(void *opaque)
1175 {
1176     UHCIState *s = opaque;
1177     uhci_process_frame(s);
1178 }
1179
1180 static void uhci_frame_timer(void *opaque)
1181 {
1182     UHCIState *s = opaque;
1183     uint64_t t_now, t_last_run;
1184     int i, frames;
1185     const uint64_t frame_t = get_ticks_per_sec() / FRAME_TIMER_FREQ;
1186
1187     s->completions_only = false;
1188     qemu_bh_cancel(s->bh);
1189
1190     if (!(s->cmd & UHCI_CMD_RS)) {
1191         /* Full stop */
1192         trace_usb_uhci_schedule_stop();
1193         qemu_del_timer(s->frame_timer);
1194         uhci_async_cancel_all(s);
1195         /* set hchalted bit in status - UHCI11D 2.1.2 */
1196         s->status |= UHCI_STS_HCHALTED;
1197         return;
1198     }
1199
1200     /* We still store expire_time in our state, for migration */
1201     t_last_run = s->expire_time - frame_t;
1202     t_now = qemu_get_clock_ns(vm_clock);
1203
1204     /* Process up to MAX_FRAMES_PER_TICK frames */
1205     frames = (t_now - t_last_run) / frame_t;
1206     if (frames > s->maxframes) {
1207         int skipped = frames - s->maxframes;
1208         s->expire_time += skipped * frame_t;
1209         s->frnum = (s->frnum + skipped) & 0x7ff;
1210         frames -= skipped;
1211     }
1212     if (frames > MAX_FRAMES_PER_TICK) {
1213         frames = MAX_FRAMES_PER_TICK;
1214     }
1215
1216     for (i = 0; i < frames; i++) {
1217         s->frame_bytes = 0;
1218         trace_usb_uhci_frame_start(s->frnum);
1219         uhci_async_validate_begin(s);
1220         uhci_process_frame(s);
1221         uhci_async_validate_end(s);
1222         /* The spec says frnum is the frame currently being processed, and
1223          * the guest must look at frnum - 1 on interrupt, so inc frnum now */
1224         s->frnum = (s->frnum + 1) & 0x7ff;
1225         s->expire_time += frame_t;
1226     }
1227
1228     /* Complete the previous frame(s) */
1229     if (s->pending_int_mask) {
1230         s->status2 |= s->pending_int_mask;
1231         s->status  |= UHCI_STS_USBINT;
1232         uhci_update_irq(s);
1233     }
1234     s->pending_int_mask = 0;
1235
1236     qemu_mod_timer(s->frame_timer, t_now + frame_t);
1237 }
1238
1239 static const MemoryRegionPortio uhci_portio[] = {
1240     { 0, 32, 2, .write = uhci_ioport_writew, },
1241     { 0, 32, 2, .read = uhci_ioport_readw, },
1242     { 0, 32, 4, .write = uhci_ioport_writel, },
1243     { 0, 32, 4, .read = uhci_ioport_readl, },
1244     { 0, 32, 1, .write = uhci_ioport_writeb, },
1245     { 0, 32, 1, .read = uhci_ioport_readb, },
1246     PORTIO_END_OF_LIST()
1247 };
1248
1249 static const MemoryRegionOps uhci_ioport_ops = {
1250     .old_portio = uhci_portio,
1251 };
1252
1253 static USBPortOps uhci_port_ops = {
1254     .attach = uhci_attach,
1255     .detach = uhci_detach,
1256     .child_detach = uhci_child_detach,
1257     .wakeup = uhci_wakeup,
1258     .complete = uhci_async_complete,
1259 };
1260
1261 static USBBusOps uhci_bus_ops = {
1262 };
1263
1264 static int usb_uhci_common_initfn(PCIDevice *dev)
1265 {
1266     PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(dev);
1267     UHCIPCIDeviceClass *u = container_of(pc, UHCIPCIDeviceClass, parent_class);
1268     UHCIState *s = DO_UPCAST(UHCIState, dev, dev);
1269     uint8_t *pci_conf = s->dev.config;
1270     int i;
1271
1272     pci_conf[PCI_CLASS_PROG] = 0x00;
1273     /* TODO: reset value should be 0. */
1274     pci_conf[USB_SBRN] = USB_RELEASE_1; // release number
1275
1276     s->irq_pin = u->info.irq_pin;
1277     pci_config_set_interrupt_pin(pci_conf, s->irq_pin + 1);
1278
1279     if (s->masterbus) {
1280         USBPort *ports[NB_PORTS];
1281         for(i = 0; i < NB_PORTS; i++) {
1282             ports[i] = &s->ports[i].port;
1283         }
1284         if (usb_register_companion(s->masterbus, ports, NB_PORTS,
1285                 s->firstport, s, &uhci_port_ops,
1286                 USB_SPEED_MASK_LOW | USB_SPEED_MASK_FULL) != 0) {
1287             return -1;
1288         }
1289     } else {
1290         usb_bus_new(&s->bus, &uhci_bus_ops, &s->dev.qdev);
1291         for (i = 0; i < NB_PORTS; i++) {
1292             usb_register_port(&s->bus, &s->ports[i].port, s, i, &uhci_port_ops,
1293                               USB_SPEED_MASK_LOW | USB_SPEED_MASK_FULL);
1294         }
1295     }
1296     s->bh = qemu_bh_new(uhci_bh, s);
1297     s->frame_timer = qemu_new_timer_ns(vm_clock, uhci_frame_timer, s);
1298     s->num_ports_vmstate = NB_PORTS;
1299     QTAILQ_INIT(&s->queues);
1300
1301     qemu_register_reset(uhci_reset, s);
1302
1303     memory_region_init_io(&s->io_bar, &uhci_ioport_ops, s, "uhci", 0x20);
1304     /* Use region 4 for consistency with real hardware.  BSD guests seem
1305        to rely on this.  */
1306     pci_register_bar(&s->dev, 4, PCI_BASE_ADDRESS_SPACE_IO, &s->io_bar);
1307
1308     return 0;
1309 }
1310
1311 static int usb_uhci_vt82c686b_initfn(PCIDevice *dev)
1312 {
1313     UHCIState *s = DO_UPCAST(UHCIState, dev, dev);
1314     uint8_t *pci_conf = s->dev.config;
1315
1316     /* USB misc control 1/2 */
1317     pci_set_long(pci_conf + 0x40,0x00001000);
1318     /* PM capability */
1319     pci_set_long(pci_conf + 0x80,0x00020001);
1320     /* USB legacy support  */
1321     pci_set_long(pci_conf + 0xc0,0x00002000);
1322
1323     return usb_uhci_common_initfn(dev);
1324 }
1325
1326 static void usb_uhci_exit(PCIDevice *dev)
1327 {
1328     UHCIState *s = DO_UPCAST(UHCIState, dev, dev);
1329
1330     memory_region_destroy(&s->io_bar);
1331 }
1332
1333 static Property uhci_properties[] = {
1334     DEFINE_PROP_STRING("masterbus", UHCIState, masterbus),
1335     DEFINE_PROP_UINT32("firstport", UHCIState, firstport, 0),
1336     DEFINE_PROP_UINT32("bandwidth", UHCIState, frame_bandwidth, 1280),
1337     DEFINE_PROP_UINT32("maxframes", UHCIState, maxframes, 128),
1338     DEFINE_PROP_END_OF_LIST(),
1339 };
1340
1341 static void uhci_class_init(ObjectClass *klass, void *data)
1342 {
1343     DeviceClass *dc = DEVICE_CLASS(klass);
1344     PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
1345     UHCIPCIDeviceClass *u = container_of(k, UHCIPCIDeviceClass, parent_class);
1346     UHCIInfo *info = data;
1347
1348     k->init = info->initfn ? info->initfn : usb_uhci_common_initfn;
1349     k->exit = info->unplug ? usb_uhci_exit : NULL;
1350     k->vendor_id = info->vendor_id;
1351     k->device_id = info->device_id;
1352     k->revision  = info->revision;
1353     k->class_id  = PCI_CLASS_SERIAL_USB;
1354     k->no_hotplug = 1;
1355     dc->vmsd = &vmstate_uhci;
1356     dc->props = uhci_properties;
1357     u->info = *info;
1358 }
1359
1360 static UHCIInfo uhci_info[] = {
1361     {
1362         .name       = "piix3-usb-uhci",
1363         .vendor_id = PCI_VENDOR_ID_INTEL,
1364         .device_id = PCI_DEVICE_ID_INTEL_82371SB_2,
1365         .revision  = 0x01,
1366         .irq_pin   = 3,
1367         .unplug    = true,
1368     },{
1369         .name      = "piix4-usb-uhci",
1370         .vendor_id = PCI_VENDOR_ID_INTEL,
1371         .device_id = PCI_DEVICE_ID_INTEL_82371AB_2,
1372         .revision  = 0x01,
1373         .irq_pin   = 3,
1374         .unplug    = true,
1375     },{
1376         .name      = "vt82c686b-usb-uhci",
1377         .vendor_id = PCI_VENDOR_ID_VIA,
1378         .device_id = PCI_DEVICE_ID_VIA_UHCI,
1379         .revision  = 0x01,
1380         .irq_pin   = 3,
1381         .initfn    = usb_uhci_vt82c686b_initfn,
1382         .unplug    = true,
1383     },{
1384         .name      = "ich9-usb-uhci1", /* 00:1d.0 */
1385         .vendor_id = PCI_VENDOR_ID_INTEL,
1386         .device_id = PCI_DEVICE_ID_INTEL_82801I_UHCI1,
1387         .revision  = 0x03,
1388         .irq_pin   = 0,
1389         .unplug    = false,
1390     },{
1391         .name      = "ich9-usb-uhci2", /* 00:1d.1 */
1392         .vendor_id = PCI_VENDOR_ID_INTEL,
1393         .device_id = PCI_DEVICE_ID_INTEL_82801I_UHCI2,
1394         .revision  = 0x03,
1395         .irq_pin   = 1,
1396         .unplug    = false,
1397     },{
1398         .name      = "ich9-usb-uhci3", /* 00:1d.2 */
1399         .vendor_id = PCI_VENDOR_ID_INTEL,
1400         .device_id = PCI_DEVICE_ID_INTEL_82801I_UHCI3,
1401         .revision  = 0x03,
1402         .irq_pin   = 2,
1403         .unplug    = false,
1404     },{
1405         .name      = "ich9-usb-uhci4", /* 00:1a.0 */
1406         .vendor_id = PCI_VENDOR_ID_INTEL,
1407         .device_id = PCI_DEVICE_ID_INTEL_82801I_UHCI4,
1408         .revision  = 0x03,
1409         .irq_pin   = 0,
1410         .unplug    = false,
1411     },{
1412         .name      = "ich9-usb-uhci5", /* 00:1a.1 */
1413         .vendor_id = PCI_VENDOR_ID_INTEL,
1414         .device_id = PCI_DEVICE_ID_INTEL_82801I_UHCI5,
1415         .revision  = 0x03,
1416         .irq_pin   = 1,
1417         .unplug    = false,
1418     },{
1419         .name      = "ich9-usb-uhci6", /* 00:1a.2 */
1420         .vendor_id = PCI_VENDOR_ID_INTEL,
1421         .device_id = PCI_DEVICE_ID_INTEL_82801I_UHCI6,
1422         .revision  = 0x03,
1423         .irq_pin   = 2,
1424         .unplug    = false,
1425     }
1426 };
1427
1428 static void uhci_register_types(void)
1429 {
1430     TypeInfo uhci_type_info = {
1431         .parent        = TYPE_PCI_DEVICE,
1432         .instance_size = sizeof(UHCIState),
1433         .class_size    = sizeof(UHCIPCIDeviceClass),
1434         .class_init    = uhci_class_init,
1435     };
1436     int i;
1437
1438     for (i = 0; i < ARRAY_SIZE(uhci_info); i++) {
1439         uhci_type_info.name = uhci_info[i].name;
1440         uhci_type_info.class_data = uhci_info + i;
1441         type_register(&uhci_type_info);
1442     }
1443 }
1444
1445 type_init(uhci_register_types)
This page took 0.100736 seconds and 4 git commands to generate.