2 * xen paravirt usb device backend
4 * (c) Juergen Gross <jgross@suse.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; under version 2 of the License.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, see <http://www.gnu.org/licenses/>.
18 * Contributions after 2012-01-13 are licensed under the terms of the
19 * GNU GPL, version 2 or (at your option) any later version.
22 #include "qemu/osdep.h"
26 #include "qemu-common.h"
27 #include "qemu/config-file.h"
28 #include "hw/sysbus.h"
30 #include "hw/xen/xen_backend.h"
31 #include "monitor/qdev.h"
32 #include "qapi/qmp/qbool.h"
33 #include "qapi/qmp/qint.h"
34 #include "qapi/qmp/qstring.h"
36 #include <xen/io/ring.h>
37 #include <xen/io/usbif.h>
40 * Check for required support of usbif.h: USBIF_SHORT_NOT_OK was the last
41 * macro added we rely on.
43 #ifdef USBIF_SHORT_NOT_OK
45 #define TR(xendev, lvl, fmt, args...) \
49 gettimeofday(&tv, NULL); \
50 xen_be_printf(xendev, lvl, "%8ld.%06ld xen-usb(%s):" fmt, \
51 tv.tv_sec, tv.tv_usec, __func__, ##args); \
53 #define TR_BUS(xendev, fmt, args...) TR(xendev, 2, fmt, ##args)
54 #define TR_REQ(xendev, fmt, args...) TR(xendev, 3, fmt, ##args)
56 #define USBBACK_MAXPORTS USBIF_PIPE_PORT_MASK
57 #define USB_DEV_ADDR_SIZE (USBIF_PIPE_DEV_MASK + 1)
59 /* USB wire protocol: structure describing control request parameter. */
60 struct usbif_ctrlrequest
{
76 QTAILQ_HEAD(submit_q_head
, usbback_req
) submit_q
;
80 struct usbback_info
*usbif
;
81 struct usbback_stub
*stub
;
82 struct usbif_urb_request req
;
85 unsigned int nr_buffer_segs
; /* # of transfer_buffer segments */
86 unsigned int nr_extra_segs
; /* # of iso_frame_desc segments */
88 QTAILQ_ENTRY(usbback_req
) q
;
92 struct libusb_transfer
*xfer
;
97 struct usbback_hotplug
{
98 QSIMPLEQ_ENTRY(usbback_hotplug
) q
;
102 struct usbback_info
{
103 struct XenDevice xendev
; /* must be first */
107 struct usbif_urb_back_ring urb_ring
;
108 struct usbif_conn_back_ring conn_ring
;
112 QTAILQ_HEAD(req_free_q_head
, usbback_req
) req_free_q
;
113 QSIMPLEQ_HEAD(hotplug_q_head
, usbback_hotplug
) hotplug_q
;
114 struct usbback_stub ports
[USBBACK_MAXPORTS
];
115 struct usbback_stub
*addr_table
[USB_DEV_ADDR_SIZE
];
119 static struct usbback_req
*usbback_get_req(struct usbback_info
*usbif
)
121 struct usbback_req
*usbback_req
;
123 if (QTAILQ_EMPTY(&usbif
->req_free_q
)) {
124 usbback_req
= g_new0(struct usbback_req
, 1);
126 usbback_req
= QTAILQ_FIRST(&usbif
->req_free_q
);
127 QTAILQ_REMOVE(&usbif
->req_free_q
, usbback_req
, q
);
132 static void usbback_put_req(struct usbback_req
*usbback_req
)
134 struct usbback_info
*usbif
;
136 usbif
= usbback_req
->usbif
;
137 memset(usbback_req
, 0, sizeof(*usbback_req
));
138 QTAILQ_INSERT_HEAD(&usbif
->req_free_q
, usbback_req
, q
);
141 static int usbback_gnttab_map(struct usbback_req
*usbback_req
)
143 unsigned int nr_segs
, i
, prot
;
144 uint32_t ref
[USBIF_MAX_SEGMENTS_PER_REQUEST
];
145 struct usbback_info
*usbif
= usbback_req
->usbif
;
146 struct XenDevice
*xendev
= &usbif
->xendev
;
147 struct usbif_request_segment
*seg
;
150 nr_segs
= usbback_req
->nr_buffer_segs
+ usbback_req
->nr_extra_segs
;
155 if (nr_segs
> USBIF_MAX_SEGMENTS_PER_REQUEST
) {
156 xen_be_printf(xendev
, 0, "bad number of segments in request (%d)\n",
161 for (i
= 0; i
< nr_segs
; i
++) {
162 if ((unsigned)usbback_req
->req
.seg
[i
].offset
+
163 (unsigned)usbback_req
->req
.seg
[i
].length
> PAGE_SIZE
) {
164 xen_be_printf(xendev
, 0, "segment crosses page boundary\n");
169 if (usbback_req
->nr_buffer_segs
) {
171 if (usbif_pipein(usbback_req
->req
.pipe
)) {
174 for (i
= 0; i
< usbback_req
->nr_buffer_segs
; i
++) {
175 ref
[i
] = usbback_req
->req
.seg
[i
].gref
;
177 usbback_req
->buffer
= xengnttab_map_domain_grant_refs(xendev
->gnttabdev
,
178 usbback_req
->nr_buffer_segs
, xendev
->dom
, ref
, prot
);
180 if (!usbback_req
->buffer
) {
184 for (i
= 0; i
< usbback_req
->nr_buffer_segs
; i
++) {
185 seg
= usbback_req
->req
.seg
+ i
;
186 addr
= usbback_req
->buffer
+ i
* PAGE_SIZE
+ seg
->offset
;
187 qemu_iovec_add(&usbback_req
->packet
.iov
, addr
, seg
->length
);
191 if (!usbif_pipeisoc(usbback_req
->req
.pipe
)) {
196 * Right now isoc requests are not supported.
197 * Prepare supporting those by doing the work needed on the guest
201 if (!usbback_req
->nr_extra_segs
) {
202 xen_be_printf(xendev
, 0, "iso request without descriptor segments\n");
206 prot
= PROT_READ
| PROT_WRITE
;
207 for (i
= 0; i
< usbback_req
->nr_extra_segs
; i
++) {
208 ref
[i
] = usbback_req
->req
.seg
[i
+ usbback_req
->req
.nr_buffer_segs
].gref
;
210 usbback_req
->isoc_buffer
= xengnttab_map_domain_grant_refs(
211 xendev
->gnttabdev
, usbback_req
->nr_extra_segs
, xendev
->dom
, ref
, prot
);
213 if (!usbback_req
->isoc_buffer
) {
220 static int usbback_init_packet(struct usbback_req
*usbback_req
)
222 struct XenDevice
*xendev
= &usbback_req
->usbif
->xendev
;
223 USBPacket
*packet
= &usbback_req
->packet
;
224 USBDevice
*dev
= usbback_req
->stub
->dev
;
226 unsigned int pid
, ep_nr
;
230 qemu_iovec_init(&packet
->iov
, USBIF_MAX_SEGMENTS_PER_REQUEST
);
231 pid
= usbif_pipein(usbback_req
->req
.pipe
) ? USB_TOKEN_IN
: USB_TOKEN_OUT
;
232 ep_nr
= usbif_pipeendpoint(usbback_req
->req
.pipe
);
233 sok
= !!(usbback_req
->req
.transfer_flags
& USBIF_SHORT_NOT_OK
);
234 if (usbif_pipectrl(usbback_req
->req
.pipe
)) {
238 ep
= usb_ep_get(dev
, pid
, ep_nr
);
239 usb_packet_setup(packet
, pid
, ep
, 0, 1, sok
, true);
241 switch (usbif_pipetype(usbback_req
->req
.pipe
)) {
242 case USBIF_PIPE_TYPE_ISOC
:
243 TR_REQ(xendev
, "iso transfer %s: buflen: %x, %d frames\n",
244 (pid
== USB_TOKEN_IN
) ? "in" : "out",
245 usbback_req
->req
.buffer_length
,
246 usbback_req
->req
.u
.isoc
.nr_frame_desc_segs
);
247 ret
= -EINVAL
; /* isoc not implemented yet */
250 case USBIF_PIPE_TYPE_INT
:
251 TR_REQ(xendev
, "int transfer %s: buflen: %x\n",
252 (pid
== USB_TOKEN_IN
) ? "in" : "out",
253 usbback_req
->req
.buffer_length
);
256 case USBIF_PIPE_TYPE_CTRL
:
257 packet
->parameter
= *(uint64_t *)usbback_req
->req
.u
.ctrl
;
258 TR_REQ(xendev
, "ctrl parameter: %"PRIx64
", buflen: %x\n",
260 usbback_req
->req
.buffer_length
);
263 case USBIF_PIPE_TYPE_BULK
:
264 TR_REQ(xendev
, "bulk transfer %s: buflen: %x\n",
265 (pid
== USB_TOKEN_IN
) ? "in" : "out",
266 usbback_req
->req
.buffer_length
);
276 static void usbback_do_response(struct usbback_req
*usbback_req
, int32_t status
,
277 int32_t actual_length
, int32_t error_count
)
279 struct usbback_info
*usbif
;
280 struct usbif_urb_response
*res
;
281 struct XenDevice
*xendev
;
284 usbif
= usbback_req
->usbif
;
285 xendev
= &usbif
->xendev
;
287 TR_REQ(xendev
, "id %d, status %d, length %d, errcnt %d\n",
288 usbback_req
->req
.id
, status
, actual_length
, error_count
);
290 if (usbback_req
->packet
.iov
.iov
) {
291 qemu_iovec_destroy(&usbback_req
->packet
.iov
);
294 if (usbback_req
->buffer
) {
295 xengnttab_unmap(xendev
->gnttabdev
, usbback_req
->buffer
,
296 usbback_req
->nr_buffer_segs
);
297 usbback_req
->buffer
= NULL
;
300 if (usbback_req
->isoc_buffer
) {
301 xengnttab_unmap(xendev
->gnttabdev
, usbback_req
->isoc_buffer
,
302 usbback_req
->nr_extra_segs
);
303 usbback_req
->isoc_buffer
= NULL
;
306 if (usbif
->urb_sring
) {
307 res
= RING_GET_RESPONSE(&usbif
->urb_ring
, usbif
->urb_ring
.rsp_prod_pvt
);
308 res
->id
= usbback_req
->req
.id
;
309 res
->status
= status
;
310 res
->actual_length
= actual_length
;
311 res
->error_count
= error_count
;
312 res
->start_frame
= 0;
313 usbif
->urb_ring
.rsp_prod_pvt
++;
314 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&usbif
->urb_ring
, notify
);
317 xen_be_send_notify(xendev
);
321 if (!usbback_req
->cancelled
)
322 usbback_put_req(usbback_req
);
325 static void usbback_do_response_ret(struct usbback_req
*usbback_req
,
328 usbback_do_response(usbback_req
, status
, 0, 0);
331 static int32_t usbback_xlat_status(int status
)
334 case USB_RET_SUCCESS
:
342 case USB_RET_IOERROR
:
349 static void usbback_packet_complete(USBPacket
*packet
)
351 struct usbback_req
*usbback_req
;
354 usbback_req
= container_of(packet
, struct usbback_req
, packet
);
356 QTAILQ_REMOVE(&usbback_req
->stub
->submit_q
, usbback_req
, q
);
358 status
= usbback_xlat_status(packet
->status
);
359 usbback_do_response(usbback_req
, status
, packet
->actual_length
, 0);
362 static void usbback_set_address(struct usbback_info
*usbif
,
363 struct usbback_stub
*stub
,
364 unsigned int cur_addr
, unsigned int new_addr
)
367 usbif
->addr_table
[cur_addr
] = NULL
;
370 usbif
->addr_table
[new_addr
] = stub
;
374 static void usbback_cancel_req(struct usbback_req
*usbback_req
)
376 if (usb_packet_is_inflight(&usbback_req
->packet
)) {
377 usb_cancel_packet(&usbback_req
->packet
);
378 QTAILQ_REMOVE(&usbback_req
->stub
->submit_q
, usbback_req
, q
);
379 usbback_req
->cancelled
= true;
380 usbback_do_response_ret(usbback_req
, -EPROTO
);
384 static void usbback_process_unlink_req(struct usbback_req
*usbback_req
)
386 struct usbback_info
*usbif
;
387 struct usbback_req
*unlink_req
;
388 unsigned int id
, devnum
;
391 usbif
= usbback_req
->usbif
;
393 id
= usbback_req
->req
.u
.unlink
.unlink_id
;
394 TR_REQ(&usbif
->xendev
, "unlink id %d\n", id
);
395 devnum
= usbif_pipedevice(usbback_req
->req
.pipe
);
396 if (unlikely(devnum
== 0)) {
397 usbback_req
->stub
= usbif
->ports
+
398 usbif_pipeportnum(usbback_req
->req
.pipe
) - 1;
399 if (unlikely(!usbback_req
->stub
)) {
404 if (unlikely(!usbif
->addr_table
[devnum
])) {
408 usbback_req
->stub
= usbif
->addr_table
[devnum
];
411 QTAILQ_FOREACH(unlink_req
, &usbback_req
->stub
->submit_q
, q
) {
412 if (unlink_req
->req
.id
== id
) {
413 usbback_cancel_req(unlink_req
);
419 usbback_do_response_ret(usbback_req
, ret
);
423 * Checks whether a request can be handled at once or should be forwarded
424 * to the usb framework.
426 * 0 in case of usb framework is needed
427 * 1 in case of local handling (no error)
428 * The request response has been queued already if return value not 0.
430 static int usbback_check_and_submit(struct usbback_req
*usbback_req
)
432 struct usbback_info
*usbif
;
434 struct usbback_stub
*stub
;
435 struct usbif_ctrlrequest
*ctrl
;
439 usbif
= usbback_req
->usbif
;
441 devnum
= usbif_pipedevice(usbback_req
->req
.pipe
);
442 ctrl
= (struct usbif_ctrlrequest
*)usbback_req
->req
.u
.ctrl
;
443 wValue
= le16_to_cpu(ctrl
->wValue
);
446 * When the device is first connected or resetted, USB device has no
447 * address. In this initial state, following requests are sent to device
450 * 1. GET_DESCRIPTOR (with Descriptor Type is "DEVICE") is sent,
451 * and OS knows what device is connected to.
453 * 2. SET_ADDRESS is sent, and then device has its address.
455 * In the next step, SET_CONFIGURATION is sent to addressed device, and
456 * then the device is finally ready to use.
458 if (unlikely(devnum
== 0)) {
459 stub
= usbif
->ports
+ usbif_pipeportnum(usbback_req
->req
.pipe
) - 1;
460 if (!stub
->dev
|| !stub
->attached
) {
465 switch (ctrl
->bRequest
) {
466 case USB_REQ_GET_DESCRIPTOR
:
468 * GET_DESCRIPTOR request to device #0.
469 * through normal transfer.
471 TR_REQ(&usbif
->xendev
, "devnum 0 GET_DESCRIPTOR\n");
472 usbback_req
->stub
= stub
;
474 case USB_REQ_SET_ADDRESS
:
476 * SET_ADDRESS request to device #0.
477 * add attached device to addr_table.
479 TR_REQ(&usbif
->xendev
, "devnum 0 SET_ADDRESS\n");
480 usbback_set_address(usbif
, stub
, 0, wValue
);
490 if (unlikely(!usbif
->addr_table
[devnum
])) {
494 usbback_req
->stub
= usbif
->addr_table
[devnum
];
497 * Check special request
499 if (ctrl
->bRequest
!= USB_REQ_SET_ADDRESS
) {
504 * SET_ADDRESS request to addressed device.
505 * change addr or remove from addr_table.
507 usbback_set_address(usbif
, usbback_req
->stub
, devnum
, wValue
);
511 usbback_do_response_ret(usbback_req
, ret
);
515 static void usbback_dispatch(struct usbback_req
*usbback_req
)
519 struct usbback_info
*usbif
;
521 usbif
= usbback_req
->usbif
;
523 TR_REQ(&usbif
->xendev
, "start req_id %d pipe %08x\n", usbback_req
->req
.id
,
524 usbback_req
->req
.pipe
);
527 if (unlikely(usbif_pipeunlink(usbback_req
->req
.pipe
))) {
528 usbback_process_unlink_req(usbback_req
);
532 if (usbif_pipectrl(usbback_req
->req
.pipe
)) {
533 if (usbback_check_and_submit(usbback_req
)) {
537 devnum
= usbif_pipedevice(usbback_req
->req
.pipe
);
538 usbback_req
->stub
= usbif
->addr_table
[devnum
];
540 if (!usbback_req
->stub
|| !usbback_req
->stub
->attached
) {
546 QTAILQ_INSERT_TAIL(&usbback_req
->stub
->submit_q
, usbback_req
, q
);
548 usbback_req
->nr_buffer_segs
= usbback_req
->req
.nr_buffer_segs
;
549 usbback_req
->nr_extra_segs
= usbif_pipeisoc(usbback_req
->req
.pipe
) ?
550 usbback_req
->req
.u
.isoc
.nr_frame_desc_segs
: 0;
552 ret
= usbback_init_packet(usbback_req
);
554 xen_be_printf(&usbif
->xendev
, 0, "invalid request\n");
559 ret
= usbback_gnttab_map(usbback_req
);
561 xen_be_printf(&usbif
->xendev
, 0, "invalid buffer, ret=%d\n", ret
);
566 usb_handle_packet(usbback_req
->stub
->dev
, &usbback_req
->packet
);
567 if (usbback_req
->packet
.status
!= USB_RET_ASYNC
) {
568 usbback_packet_complete(&usbback_req
->packet
);
573 QTAILQ_REMOVE(&usbback_req
->stub
->submit_q
, usbback_req
, q
);
576 usbback_do_response_ret(usbback_req
, ret
);
579 static void usbback_hotplug_notify(struct usbback_info
*usbif
)
581 struct usbif_conn_back_ring
*ring
= &usbif
->conn_ring
;
582 struct usbif_conn_request req
;
583 struct usbif_conn_response
*res
;
584 struct usbback_hotplug
*usb_hp
;
587 if (!usbif
->conn_sring
) {
591 /* Check for full ring. */
592 if ((RING_SIZE(ring
) - ring
->rsp_prod_pvt
- ring
->req_cons
) == 0) {
593 xen_be_send_notify(&usbif
->xendev
);
597 usb_hp
= QSIMPLEQ_FIRST(&usbif
->hotplug_q
);
598 QSIMPLEQ_REMOVE_HEAD(&usbif
->hotplug_q
, q
);
600 RING_COPY_REQUEST(ring
, ring
->req_cons
, &req
);
602 ring
->sring
->req_event
= ring
->req_cons
+ 1;
604 res
= RING_GET_RESPONSE(ring
, ring
->rsp_prod_pvt
);
606 res
->portnum
= usb_hp
->port
;
607 res
->speed
= usbif
->ports
[usb_hp
->port
- 1].speed
;
608 ring
->rsp_prod_pvt
++;
609 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(ring
, notify
);
612 xen_be_send_notify(&usbif
->xendev
);
615 TR_BUS(&usbif
->xendev
, "hotplug port %d speed %d\n", usb_hp
->port
,
620 if (!QSIMPLEQ_EMPTY(&usbif
->hotplug_q
)) {
621 qemu_bh_schedule(usbif
->bh
);
625 static void usbback_bh(void *opaque
)
627 struct usbback_info
*usbif
;
628 struct usbif_urb_back_ring
*urb_ring
;
629 struct usbback_req
*usbback_req
;
631 unsigned int more_to_do
;
634 if (usbif
->ring_error
) {
638 if (!QSIMPLEQ_EMPTY(&usbif
->hotplug_q
)) {
639 usbback_hotplug_notify(usbif
);
642 urb_ring
= &usbif
->urb_ring
;
643 rc
= urb_ring
->req_cons
;
644 rp
= urb_ring
->sring
->req_prod
;
645 xen_rmb(); /* Ensure we see queued requests up to 'rp'. */
647 if (RING_REQUEST_PROD_OVERFLOW(urb_ring
, rp
)) {
648 rc
= urb_ring
->rsp_prod_pvt
;
649 xen_be_printf(&usbif
->xendev
, 0, "domU provided bogus ring requests "
650 "(%#x - %#x = %u). Halting ring processing.\n",
652 usbif
->ring_error
= true;
657 if (RING_REQUEST_CONS_OVERFLOW(urb_ring
, rc
)) {
660 usbback_req
= usbback_get_req(usbif
);
662 RING_COPY_REQUEST(urb_ring
, rc
, &usbback_req
->req
);
663 usbback_req
->usbif
= usbif
;
665 usbback_dispatch(usbback_req
);
667 urb_ring
->req_cons
= ++rc
;
670 RING_FINAL_CHECK_FOR_REQUESTS(urb_ring
, more_to_do
);
672 qemu_bh_schedule(usbif
->bh
);
676 static void usbback_hotplug_enq(struct usbback_info
*usbif
, unsigned port
)
678 struct usbback_hotplug
*usb_hp
;
680 usb_hp
= g_new0(struct usbback_hotplug
, 1);
682 QSIMPLEQ_INSERT_TAIL(&usbif
->hotplug_q
, usb_hp
, q
);
683 usbback_hotplug_notify(usbif
);
686 static void usbback_portid_drain(struct usbback_info
*usbif
, unsigned port
)
688 struct usbback_req
*req
, *tmp
;
691 QTAILQ_FOREACH_SAFE(req
, &usbif
->ports
[port
- 1].submit_q
, q
, tmp
) {
692 usbback_cancel_req(req
);
697 qemu_bh_schedule(usbif
->bh
);
701 static void usbback_portid_detach(struct usbback_info
*usbif
, unsigned port
)
703 if (!usbif
->ports
[port
- 1].attached
) {
707 usbif
->ports
[port
- 1].speed
= USBIF_SPEED_NONE
;
708 usbif
->ports
[port
- 1].attached
= false;
709 usbback_portid_drain(usbif
, port
);
710 usbback_hotplug_enq(usbif
, port
);
713 static void usbback_portid_remove(struct usbback_info
*usbif
, unsigned port
)
717 if (!usbif
->ports
[port
- 1].dev
) {
721 p
= &(usbif
->ports
[port
- 1].port
);
722 snprintf(p
->path
, sizeof(p
->path
), "%d", 99);
724 object_unparent(OBJECT(usbif
->ports
[port
- 1].dev
));
725 usbif
->ports
[port
- 1].dev
= NULL
;
726 usbback_portid_detach(usbif
, port
);
728 TR_BUS(&usbif
->xendev
, "port %d removed\n", port
);
731 static void usbback_portid_add(struct usbback_info
*usbif
, unsigned port
,
737 Error
*local_err
= NULL
;
741 if (usbif
->ports
[port
- 1].dev
) {
745 portname
= strchr(busid
, '-');
747 xen_be_printf(&usbif
->xendev
, 0, "device %s illegal specification\n",
752 p
= &(usbif
->ports
[port
- 1].port
);
753 snprintf(p
->path
, sizeof(p
->path
), "%s", portname
);
756 qdict_put(qdict
, "driver", qstring_from_str("usb-host"));
757 qdict_put(qdict
, "hostbus", qint_from_int(atoi(busid
)));
758 qdict_put(qdict
, "hostport", qstring_from_str(portname
));
759 opts
= qemu_opts_from_qdict(qemu_find_opts("device"), qdict
, &local_err
);
763 usbif
->ports
[port
- 1].dev
= USB_DEVICE(qdev_device_add(opts
, &local_err
));
764 if (!usbif
->ports
[port
- 1].dev
) {
768 snprintf(p
->path
, sizeof(p
->path
), "%d", port
);
769 speed
= usbif
->ports
[port
- 1].dev
->speed
;
772 speed
= USBIF_SPEED_LOW
;
775 speed
= USBIF_SPEED_FULL
;
778 speed
= (usbif
->usb_ver
< USB_VER_USB20
) ?
779 USBIF_SPEED_NONE
: USBIF_SPEED_HIGH
;
782 speed
= USBIF_SPEED_NONE
;
785 if (speed
== USBIF_SPEED_NONE
) {
786 xen_be_printf(&usbif
->xendev
, 0, "device %s wrong speed\n", busid
);
787 object_unparent(OBJECT(usbif
->ports
[port
- 1].dev
));
788 usbif
->ports
[port
- 1].dev
= NULL
;
791 usb_device_reset(usbif
->ports
[port
- 1].dev
);
792 usbif
->ports
[port
- 1].speed
= speed
;
793 usbif
->ports
[port
- 1].attached
= true;
794 QTAILQ_INIT(&usbif
->ports
[port
- 1].submit_q
);
795 usbback_hotplug_enq(usbif
, port
);
797 TR_BUS(&usbif
->xendev
, "port %d attached\n", port
);
802 snprintf(p
->path
, sizeof(p
->path
), "%d", 99);
803 xen_be_printf(&usbif
->xendev
, 0, "device %s could not be opened\n", busid
);
806 static void usbback_process_port(struct usbback_info
*usbif
, unsigned port
)
811 snprintf(node
, sizeof(node
), "port/%d", port
);
812 busid
= xenstore_read_be_str(&usbif
->xendev
, node
);
814 xen_be_printf(&usbif
->xendev
, 0, "xenstore_read %s failed\n", node
);
818 /* Remove portid, if the port is not connected. */
819 if (strlen(busid
) == 0) {
820 usbback_portid_remove(usbif
, port
);
822 usbback_portid_add(usbif
, port
, busid
);
828 static void usbback_disconnect(struct XenDevice
*xendev
)
830 struct usbback_info
*usbif
;
833 TR_BUS(xendev
, "start\n");
835 usbif
= container_of(xendev
, struct usbback_info
, xendev
);
837 xen_be_unbind_evtchn(xendev
);
839 if (usbif
->urb_sring
) {
840 xengnttab_unmap(xendev
->gnttabdev
, usbif
->urb_sring
, 1);
841 usbif
->urb_sring
= NULL
;
843 if (usbif
->conn_sring
) {
844 xengnttab_unmap(xendev
->gnttabdev
, usbif
->conn_sring
, 1);
845 usbif
->conn_sring
= NULL
;
848 for (i
= 0; i
< usbif
->num_ports
; i
++) {
849 if (usbif
->ports
[i
].dev
) {
850 usbback_portid_drain(usbif
, i
+ 1);
854 TR_BUS(xendev
, "finished\n");
857 static int usbback_connect(struct XenDevice
*xendev
)
859 struct usbback_info
*usbif
;
860 struct usbif_urb_sring
*urb_sring
;
861 struct usbif_conn_sring
*conn_sring
;
866 TR_BUS(xendev
, "start\n");
868 usbif
= container_of(xendev
, struct usbback_info
, xendev
);
870 if (xenstore_read_fe_int(xendev
, "urb-ring-ref", &urb_ring_ref
)) {
871 xen_be_printf(xendev
, 0, "error reading urb-ring-ref\n");
874 if (xenstore_read_fe_int(xendev
, "conn-ring-ref", &conn_ring_ref
)) {
875 xen_be_printf(xendev
, 0, "error reading conn-ring-ref\n");
878 if (xenstore_read_fe_int(xendev
, "event-channel", &xendev
->remote_port
)) {
879 xen_be_printf(xendev
, 0, "error reading event-channel\n");
883 usbif
->urb_sring
= xengnttab_map_grant_ref(xendev
->gnttabdev
, xendev
->dom
,
885 PROT_READ
| PROT_WRITE
);
886 usbif
->conn_sring
= xengnttab_map_grant_ref(xendev
->gnttabdev
, xendev
->dom
,
888 PROT_READ
| PROT_WRITE
);
889 if (!usbif
->urb_sring
|| !usbif
->conn_sring
) {
890 xen_be_printf(xendev
, 0, "error mapping rings\n");
891 usbback_disconnect(xendev
);
895 urb_sring
= usbif
->urb_sring
;
896 conn_sring
= usbif
->conn_sring
;
897 BACK_RING_INIT(&usbif
->urb_ring
, urb_sring
, XC_PAGE_SIZE
);
898 BACK_RING_INIT(&usbif
->conn_ring
, conn_sring
, XC_PAGE_SIZE
);
900 xen_be_bind_evtchn(xendev
);
902 xen_be_printf(xendev
, 1, "urb-ring-ref %d, conn-ring-ref %d, "
903 "remote port %d, local port %d\n", urb_ring_ref
,
904 conn_ring_ref
, xendev
->remote_port
, xendev
->local_port
);
906 for (i
= 1; i
<= usbif
->num_ports
; i
++) {
907 if (usbif
->ports
[i
- 1].dev
) {
908 usbback_hotplug_enq(usbif
, i
);
915 static void usbback_backend_changed(struct XenDevice
*xendev
, const char *node
)
917 struct usbback_info
*usbif
;
920 TR_BUS(xendev
, "path %s\n", node
);
922 usbif
= container_of(xendev
, struct usbback_info
, xendev
);
923 for (i
= 1; i
<= usbif
->num_ports
; i
++) {
924 usbback_process_port(usbif
, i
);
928 static int usbback_init(struct XenDevice
*xendev
)
930 struct usbback_info
*usbif
;
932 TR_BUS(xendev
, "start\n");
934 usbif
= container_of(xendev
, struct usbback_info
, xendev
);
936 if (xenstore_read_be_int(xendev
, "num-ports", &usbif
->num_ports
) ||
937 usbif
->num_ports
< 1 || usbif
->num_ports
> USBBACK_MAXPORTS
) {
938 xen_be_printf(xendev
, 0, "num-ports not readable or out of bounds\n");
941 if (xenstore_read_be_int(xendev
, "usb-ver", &usbif
->usb_ver
) ||
942 (usbif
->usb_ver
!= USB_VER_USB11
&& usbif
->usb_ver
!= USB_VER_USB20
)) {
943 xen_be_printf(xendev
, 0, "usb-ver not readable or out of bounds\n");
947 usbback_backend_changed(xendev
, "port");
949 TR_BUS(xendev
, "finished\n");
954 static void xen_bus_attach(USBPort
*port
)
956 struct usbback_info
*usbif
;
958 usbif
= port
->opaque
;
959 TR_BUS(&usbif
->xendev
, "\n");
960 usbif
->ports
[port
->index
].attached
= true;
961 usbback_hotplug_enq(usbif
, port
->index
+ 1);
964 static void xen_bus_detach(USBPort
*port
)
966 struct usbback_info
*usbif
;
968 usbif
= port
->opaque
;
969 TR_BUS(&usbif
->xendev
, "\n");
970 usbback_portid_detach(usbif
, port
->index
+ 1);
973 static void xen_bus_child_detach(USBPort
*port
, USBDevice
*child
)
975 struct usbback_info
*usbif
;
977 usbif
= port
->opaque
;
978 TR_BUS(&usbif
->xendev
, "\n");
981 static void xen_bus_complete(USBPort
*port
, USBPacket
*packet
)
983 struct usbback_req
*usbback_req
;
984 struct usbback_info
*usbif
;
986 usbback_req
= container_of(packet
, struct usbback_req
, packet
);
987 if (usbback_req
->cancelled
) {
992 usbif
= usbback_req
->usbif
;
993 TR_REQ(&usbif
->xendev
, "\n");
994 usbback_packet_complete(packet
);
997 static USBPortOps xen_usb_port_ops
= {
998 .attach
= xen_bus_attach
,
999 .detach
= xen_bus_detach
,
1000 .child_detach
= xen_bus_child_detach
,
1001 .complete
= xen_bus_complete
,
1004 static USBBusOps xen_usb_bus_ops
= {
1007 static void usbback_alloc(struct XenDevice
*xendev
)
1009 struct usbback_info
*usbif
;
1011 unsigned int i
, max_grants
;
1013 usbif
= container_of(xendev
, struct usbback_info
, xendev
);
1015 usb_bus_new(&usbif
->bus
, sizeof(usbif
->bus
), &xen_usb_bus_ops
, xen_sysdev
);
1016 for (i
= 0; i
< USBBACK_MAXPORTS
; i
++) {
1017 p
= &(usbif
->ports
[i
].port
);
1018 usb_register_port(&usbif
->bus
, p
, usbif
, i
, &xen_usb_port_ops
,
1019 USB_SPEED_MASK_LOW
| USB_SPEED_MASK_FULL
|
1020 USB_SPEED_MASK_HIGH
);
1021 snprintf(p
->path
, sizeof(p
->path
), "%d", 99);
1024 QTAILQ_INIT(&usbif
->req_free_q
);
1025 QSIMPLEQ_INIT(&usbif
->hotplug_q
);
1026 usbif
->bh
= qemu_bh_new(usbback_bh
, usbif
);
1028 /* max_grants: for each request and for the rings (request and connect). */
1029 max_grants
= USBIF_MAX_SEGMENTS_PER_REQUEST
* USB_URB_RING_SIZE
+ 2;
1030 if (xengnttab_set_max_grants(xendev
->gnttabdev
, max_grants
) < 0) {
1031 xen_be_printf(xendev
, 0, "xengnttab_set_max_grants failed: %s\n",
1036 static int usbback_free(struct XenDevice
*xendev
)
1038 struct usbback_info
*usbif
;
1039 struct usbback_req
*usbback_req
;
1040 struct usbback_hotplug
*usb_hp
;
1043 TR_BUS(xendev
, "start\n");
1045 usbback_disconnect(xendev
);
1046 usbif
= container_of(xendev
, struct usbback_info
, xendev
);
1047 for (i
= 1; i
<= usbif
->num_ports
; i
++) {
1048 usbback_portid_remove(usbif
, i
);
1051 while (!QTAILQ_EMPTY(&usbif
->req_free_q
)) {
1052 usbback_req
= QTAILQ_FIRST(&usbif
->req_free_q
);
1053 QTAILQ_REMOVE(&usbif
->req_free_q
, usbback_req
, q
);
1054 g_free(usbback_req
);
1056 while (!QSIMPLEQ_EMPTY(&usbif
->hotplug_q
)) {
1057 usb_hp
= QSIMPLEQ_FIRST(&usbif
->hotplug_q
);
1058 QSIMPLEQ_REMOVE_HEAD(&usbif
->hotplug_q
, q
);
1062 qemu_bh_delete(usbif
->bh
);
1064 for (i
= 0; i
< USBBACK_MAXPORTS
; i
++) {
1065 usb_unregister_port(&usbif
->bus
, &(usbif
->ports
[i
].port
));
1068 usb_bus_release(&usbif
->bus
);
1069 object_unparent(OBJECT(&usbif
->bus
));
1071 TR_BUS(xendev
, "finished\n");
1076 static void usbback_event(struct XenDevice
*xendev
)
1078 struct usbback_info
*usbif
;
1080 usbif
= container_of(xendev
, struct usbback_info
, xendev
);
1081 qemu_bh_schedule(usbif
->bh
);
1084 struct XenDevOps xen_usb_ops
= {
1085 .size
= sizeof(struct usbback_info
),
1086 .flags
= DEVOPS_FLAG_NEED_GNTDEV
,
1087 .init
= usbback_init
,
1088 .alloc
= usbback_alloc
,
1089 .free
= usbback_free
,
1090 .backend_changed
= usbback_backend_changed
,
1091 .initialise
= usbback_connect
,
1092 .disconnect
= usbback_disconnect
,
1093 .event
= usbback_event
,
1096 #else /* USBIF_SHORT_NOT_OK */
1098 static int usbback_not_supported(void)
1103 struct XenDevOps xen_usb_ops
= {
1104 .backend_register
= usbback_not_supported
,