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/config-file.h"
27 #include "qemu/option.h"
28 #include "hw/sysbus.h"
30 #include "hw/xen/xen_backend.h"
31 #include "monitor/qdev.h"
32 #include "qapi/qmp/qdict.h"
33 #include "qapi/qmp/qstring.h"
35 #include "hw/xen/io/ring.h"
36 #include <xen/io/usbif.h>
39 * Check for required support of usbif.h: USBIF_SHORT_NOT_OK was the last
40 * macro added we rely on.
42 #ifdef USBIF_SHORT_NOT_OK
44 #define TR(xendev, lvl, fmt, args...) \
48 gettimeofday(&tv, NULL); \
49 xen_pv_printf(xendev, lvl, "%8ld.%06ld xen-usb(%s):" fmt, \
50 tv.tv_sec, tv.tv_usec, __func__, ##args); \
52 #define TR_BUS(xendev, fmt, args...) TR(xendev, 2, fmt, ##args)
53 #define TR_REQ(xendev, fmt, args...) TR(xendev, 3, fmt, ##args)
55 #define USBBACK_MAXPORTS USBIF_PIPE_PORT_MASK
56 #define USB_DEV_ADDR_SIZE (USBIF_PIPE_DEV_MASK + 1)
58 /* USB wire protocol: structure describing control request parameter. */
59 struct usbif_ctrlrequest
{
75 QTAILQ_HEAD(submit_q_head
, usbback_req
) submit_q
;
79 struct usbback_info
*usbif
;
80 struct usbback_stub
*stub
;
81 struct usbif_urb_request req
;
84 unsigned int nr_buffer_segs
; /* # of transfer_buffer segments */
85 unsigned int nr_extra_segs
; /* # of iso_frame_desc segments */
87 QTAILQ_ENTRY(usbback_req
) q
;
91 struct libusb_transfer
*xfer
;
96 struct usbback_hotplug
{
97 QSIMPLEQ_ENTRY(usbback_hotplug
) q
;
101 struct usbback_info
{
102 struct XenDevice xendev
; /* must be first */
106 struct usbif_urb_back_ring urb_ring
;
107 struct usbif_conn_back_ring conn_ring
;
111 QTAILQ_HEAD(req_free_q_head
, usbback_req
) req_free_q
;
112 QSIMPLEQ_HEAD(hotplug_q_head
, usbback_hotplug
) hotplug_q
;
113 struct usbback_stub ports
[USBBACK_MAXPORTS
];
114 struct usbback_stub
*addr_table
[USB_DEV_ADDR_SIZE
];
118 static struct usbback_req
*usbback_get_req(struct usbback_info
*usbif
)
120 struct usbback_req
*usbback_req
;
122 if (QTAILQ_EMPTY(&usbif
->req_free_q
)) {
123 usbback_req
= g_new0(struct usbback_req
, 1);
125 usbback_req
= QTAILQ_FIRST(&usbif
->req_free_q
);
126 QTAILQ_REMOVE(&usbif
->req_free_q
, usbback_req
, q
);
131 static void usbback_put_req(struct usbback_req
*usbback_req
)
133 struct usbback_info
*usbif
;
135 usbif
= usbback_req
->usbif
;
136 memset(usbback_req
, 0, sizeof(*usbback_req
));
137 QTAILQ_INSERT_HEAD(&usbif
->req_free_q
, usbback_req
, q
);
140 static int usbback_gnttab_map(struct usbback_req
*usbback_req
)
142 unsigned int nr_segs
, i
, prot
;
143 uint32_t ref
[USBIF_MAX_SEGMENTS_PER_REQUEST
];
144 struct usbback_info
*usbif
= usbback_req
->usbif
;
145 struct XenDevice
*xendev
= &usbif
->xendev
;
146 struct usbif_request_segment
*seg
;
149 nr_segs
= usbback_req
->nr_buffer_segs
+ usbback_req
->nr_extra_segs
;
154 if (nr_segs
> USBIF_MAX_SEGMENTS_PER_REQUEST
) {
155 xen_pv_printf(xendev
, 0, "bad number of segments in request (%d)\n",
160 for (i
= 0; i
< nr_segs
; i
++) {
161 if ((unsigned)usbback_req
->req
.seg
[i
].offset
+
162 (unsigned)usbback_req
->req
.seg
[i
].length
> XC_PAGE_SIZE
) {
163 xen_pv_printf(xendev
, 0, "segment crosses page boundary\n");
168 if (usbback_req
->nr_buffer_segs
) {
170 if (usbif_pipein(usbback_req
->req
.pipe
)) {
173 for (i
= 0; i
< usbback_req
->nr_buffer_segs
; i
++) {
174 ref
[i
] = usbback_req
->req
.seg
[i
].gref
;
176 usbback_req
->buffer
= xengnttab_map_domain_grant_refs(xendev
->gnttabdev
,
177 usbback_req
->nr_buffer_segs
, xendev
->dom
, ref
, prot
);
179 if (!usbback_req
->buffer
) {
183 for (i
= 0; i
< usbback_req
->nr_buffer_segs
; i
++) {
184 seg
= usbback_req
->req
.seg
+ i
;
185 addr
= usbback_req
->buffer
+ i
* XC_PAGE_SIZE
+ seg
->offset
;
186 qemu_iovec_add(&usbback_req
->packet
.iov
, addr
, seg
->length
);
190 if (!usbif_pipeisoc(usbback_req
->req
.pipe
)) {
195 * Right now isoc requests are not supported.
196 * Prepare supporting those by doing the work needed on the guest
200 if (!usbback_req
->nr_extra_segs
) {
201 xen_pv_printf(xendev
, 0, "iso request without descriptor segments\n");
205 prot
= PROT_READ
| PROT_WRITE
;
206 for (i
= 0; i
< usbback_req
->nr_extra_segs
; i
++) {
207 ref
[i
] = usbback_req
->req
.seg
[i
+ usbback_req
->req
.nr_buffer_segs
].gref
;
209 usbback_req
->isoc_buffer
= xengnttab_map_domain_grant_refs(
210 xendev
->gnttabdev
, usbback_req
->nr_extra_segs
, xendev
->dom
, ref
, prot
);
212 if (!usbback_req
->isoc_buffer
) {
219 static int usbback_init_packet(struct usbback_req
*usbback_req
)
221 struct XenDevice
*xendev
= &usbback_req
->usbif
->xendev
;
222 USBPacket
*packet
= &usbback_req
->packet
;
223 USBDevice
*dev
= usbback_req
->stub
->dev
;
225 unsigned int pid
, ep_nr
;
229 qemu_iovec_init(&packet
->iov
, USBIF_MAX_SEGMENTS_PER_REQUEST
);
230 pid
= usbif_pipein(usbback_req
->req
.pipe
) ? USB_TOKEN_IN
: USB_TOKEN_OUT
;
231 ep_nr
= usbif_pipeendpoint(usbback_req
->req
.pipe
);
232 sok
= !!(usbback_req
->req
.transfer_flags
& USBIF_SHORT_NOT_OK
);
233 if (usbif_pipectrl(usbback_req
->req
.pipe
)) {
237 ep
= usb_ep_get(dev
, pid
, ep_nr
);
238 usb_packet_setup(packet
, pid
, ep
, 0, 1, sok
, true);
240 switch (usbif_pipetype(usbback_req
->req
.pipe
)) {
241 case USBIF_PIPE_TYPE_ISOC
:
242 TR_REQ(xendev
, "iso transfer %s: buflen: %x, %d frames\n",
243 (pid
== USB_TOKEN_IN
) ? "in" : "out",
244 usbback_req
->req
.buffer_length
,
245 usbback_req
->req
.u
.isoc
.nr_frame_desc_segs
);
246 ret
= -EINVAL
; /* isoc not implemented yet */
249 case USBIF_PIPE_TYPE_INT
:
250 TR_REQ(xendev
, "int transfer %s: buflen: %x\n",
251 (pid
== USB_TOKEN_IN
) ? "in" : "out",
252 usbback_req
->req
.buffer_length
);
255 case USBIF_PIPE_TYPE_CTRL
:
256 packet
->parameter
= *(uint64_t *)usbback_req
->req
.u
.ctrl
;
257 TR_REQ(xendev
, "ctrl parameter: %"PRIx64
", buflen: %x\n",
259 usbback_req
->req
.buffer_length
);
262 case USBIF_PIPE_TYPE_BULK
:
263 TR_REQ(xendev
, "bulk transfer %s: buflen: %x\n",
264 (pid
== USB_TOKEN_IN
) ? "in" : "out",
265 usbback_req
->req
.buffer_length
);
275 static void usbback_do_response(struct usbback_req
*usbback_req
, int32_t status
,
276 int32_t actual_length
, int32_t error_count
)
278 struct usbback_info
*usbif
;
279 struct usbif_urb_response
*res
;
280 struct XenDevice
*xendev
;
283 usbif
= usbback_req
->usbif
;
284 xendev
= &usbif
->xendev
;
286 TR_REQ(xendev
, "id %d, status %d, length %d, errcnt %d\n",
287 usbback_req
->req
.id
, status
, actual_length
, error_count
);
289 if (usbback_req
->packet
.iov
.iov
) {
290 qemu_iovec_destroy(&usbback_req
->packet
.iov
);
293 if (usbback_req
->buffer
) {
294 xengnttab_unmap(xendev
->gnttabdev
, usbback_req
->buffer
,
295 usbback_req
->nr_buffer_segs
);
296 usbback_req
->buffer
= NULL
;
299 if (usbback_req
->isoc_buffer
) {
300 xengnttab_unmap(xendev
->gnttabdev
, usbback_req
->isoc_buffer
,
301 usbback_req
->nr_extra_segs
);
302 usbback_req
->isoc_buffer
= NULL
;
305 if (usbif
->urb_sring
) {
306 res
= RING_GET_RESPONSE(&usbif
->urb_ring
, usbif
->urb_ring
.rsp_prod_pvt
);
307 res
->id
= usbback_req
->req
.id
;
308 res
->status
= status
;
309 res
->actual_length
= actual_length
;
310 res
->error_count
= error_count
;
311 res
->start_frame
= 0;
312 usbif
->urb_ring
.rsp_prod_pvt
++;
313 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&usbif
->urb_ring
, notify
);
316 xen_pv_send_notify(xendev
);
320 if (!usbback_req
->cancelled
)
321 usbback_put_req(usbback_req
);
324 static void usbback_do_response_ret(struct usbback_req
*usbback_req
,
327 usbback_do_response(usbback_req
, status
, 0, 0);
330 static int32_t usbback_xlat_status(int status
)
333 case USB_RET_SUCCESS
:
341 case USB_RET_IOERROR
:
348 static void usbback_packet_complete(USBPacket
*packet
)
350 struct usbback_req
*usbback_req
;
353 usbback_req
= container_of(packet
, struct usbback_req
, packet
);
355 QTAILQ_REMOVE(&usbback_req
->stub
->submit_q
, usbback_req
, q
);
357 status
= usbback_xlat_status(packet
->status
);
358 usbback_do_response(usbback_req
, status
, packet
->actual_length
, 0);
361 static void usbback_set_address(struct usbback_info
*usbif
,
362 struct usbback_stub
*stub
,
363 unsigned int cur_addr
, unsigned int new_addr
)
366 usbif
->addr_table
[cur_addr
] = NULL
;
369 usbif
->addr_table
[new_addr
] = stub
;
373 static void usbback_cancel_req(struct usbback_req
*usbback_req
)
375 if (usb_packet_is_inflight(&usbback_req
->packet
)) {
376 usb_cancel_packet(&usbback_req
->packet
);
377 QTAILQ_REMOVE(&usbback_req
->stub
->submit_q
, usbback_req
, q
);
378 usbback_req
->cancelled
= true;
379 usbback_do_response_ret(usbback_req
, -EPROTO
);
383 static void usbback_process_unlink_req(struct usbback_req
*usbback_req
)
385 struct usbback_info
*usbif
;
386 struct usbback_req
*unlink_req
;
387 unsigned int id
, devnum
;
390 usbif
= usbback_req
->usbif
;
392 id
= usbback_req
->req
.u
.unlink
.unlink_id
;
393 TR_REQ(&usbif
->xendev
, "unlink id %d\n", id
);
394 devnum
= usbif_pipedevice(usbback_req
->req
.pipe
);
395 if (unlikely(devnum
== 0)) {
396 usbback_req
->stub
= usbif
->ports
+
397 usbif_pipeportnum(usbback_req
->req
.pipe
) - 1;
398 if (unlikely(!usbback_req
->stub
)) {
403 if (unlikely(!usbif
->addr_table
[devnum
])) {
407 usbback_req
->stub
= usbif
->addr_table
[devnum
];
410 QTAILQ_FOREACH(unlink_req
, &usbback_req
->stub
->submit_q
, q
) {
411 if (unlink_req
->req
.id
== id
) {
412 usbback_cancel_req(unlink_req
);
418 usbback_do_response_ret(usbback_req
, ret
);
422 * Checks whether a request can be handled at once or should be forwarded
423 * to the usb framework.
425 * 0 in case of usb framework is needed
426 * 1 in case of local handling (no error)
427 * The request response has been queued already if return value not 0.
429 static int usbback_check_and_submit(struct usbback_req
*usbback_req
)
431 struct usbback_info
*usbif
;
433 struct usbback_stub
*stub
;
434 struct usbif_ctrlrequest
*ctrl
;
438 usbif
= usbback_req
->usbif
;
440 devnum
= usbif_pipedevice(usbback_req
->req
.pipe
);
441 ctrl
= (struct usbif_ctrlrequest
*)usbback_req
->req
.u
.ctrl
;
442 wValue
= le16_to_cpu(ctrl
->wValue
);
445 * When the device is first connected or resetted, USB device has no
446 * address. In this initial state, following requests are sent to device
449 * 1. GET_DESCRIPTOR (with Descriptor Type is "DEVICE") is sent,
450 * and OS knows what device is connected to.
452 * 2. SET_ADDRESS is sent, and then device has its address.
454 * In the next step, SET_CONFIGURATION is sent to addressed device, and
455 * then the device is finally ready to use.
457 if (unlikely(devnum
== 0)) {
458 stub
= usbif
->ports
+ usbif_pipeportnum(usbback_req
->req
.pipe
) - 1;
459 if (!stub
->dev
|| !stub
->attached
) {
464 switch (ctrl
->bRequest
) {
465 case USB_REQ_GET_DESCRIPTOR
:
467 * GET_DESCRIPTOR request to device #0.
468 * through normal transfer.
470 TR_REQ(&usbif
->xendev
, "devnum 0 GET_DESCRIPTOR\n");
471 usbback_req
->stub
= stub
;
473 case USB_REQ_SET_ADDRESS
:
475 * SET_ADDRESS request to device #0.
476 * add attached device to addr_table.
478 TR_REQ(&usbif
->xendev
, "devnum 0 SET_ADDRESS\n");
479 usbback_set_address(usbif
, stub
, 0, wValue
);
489 if (unlikely(!usbif
->addr_table
[devnum
])) {
493 usbback_req
->stub
= usbif
->addr_table
[devnum
];
496 * Check special request
498 if (ctrl
->bRequest
!= USB_REQ_SET_ADDRESS
) {
503 * SET_ADDRESS request to addressed device.
504 * change addr or remove from addr_table.
506 usbback_set_address(usbif
, usbback_req
->stub
, devnum
, wValue
);
510 usbback_do_response_ret(usbback_req
, ret
);
514 static void usbback_dispatch(struct usbback_req
*usbback_req
)
518 struct usbback_info
*usbif
;
520 usbif
= usbback_req
->usbif
;
522 TR_REQ(&usbif
->xendev
, "start req_id %d pipe %08x\n", usbback_req
->req
.id
,
523 usbback_req
->req
.pipe
);
526 if (unlikely(usbif_pipeunlink(usbback_req
->req
.pipe
))) {
527 usbback_process_unlink_req(usbback_req
);
531 if (usbif_pipectrl(usbback_req
->req
.pipe
)) {
532 if (usbback_check_and_submit(usbback_req
)) {
536 devnum
= usbif_pipedevice(usbback_req
->req
.pipe
);
537 usbback_req
->stub
= usbif
->addr_table
[devnum
];
539 if (!usbback_req
->stub
|| !usbback_req
->stub
->attached
) {
545 QTAILQ_INSERT_TAIL(&usbback_req
->stub
->submit_q
, usbback_req
, q
);
547 usbback_req
->nr_buffer_segs
= usbback_req
->req
.nr_buffer_segs
;
548 usbback_req
->nr_extra_segs
= usbif_pipeisoc(usbback_req
->req
.pipe
) ?
549 usbback_req
->req
.u
.isoc
.nr_frame_desc_segs
: 0;
551 ret
= usbback_init_packet(usbback_req
);
553 xen_pv_printf(&usbif
->xendev
, 0, "invalid request\n");
558 ret
= usbback_gnttab_map(usbback_req
);
560 xen_pv_printf(&usbif
->xendev
, 0, "invalid buffer, ret=%d\n", ret
);
565 usb_handle_packet(usbback_req
->stub
->dev
, &usbback_req
->packet
);
566 if (usbback_req
->packet
.status
!= USB_RET_ASYNC
) {
567 usbback_packet_complete(&usbback_req
->packet
);
572 QTAILQ_REMOVE(&usbback_req
->stub
->submit_q
, usbback_req
, q
);
575 usbback_do_response_ret(usbback_req
, ret
);
578 static void usbback_hotplug_notify(struct usbback_info
*usbif
)
580 struct usbif_conn_back_ring
*ring
= &usbif
->conn_ring
;
581 struct usbif_conn_request req
;
582 struct usbif_conn_response
*res
;
583 struct usbback_hotplug
*usb_hp
;
586 if (!usbif
->conn_sring
) {
590 /* Check for full ring. */
591 if ((RING_SIZE(ring
) - ring
->rsp_prod_pvt
- ring
->req_cons
) == 0) {
592 xen_pv_send_notify(&usbif
->xendev
);
596 usb_hp
= QSIMPLEQ_FIRST(&usbif
->hotplug_q
);
597 QSIMPLEQ_REMOVE_HEAD(&usbif
->hotplug_q
, q
);
599 RING_COPY_REQUEST(ring
, ring
->req_cons
, &req
);
601 ring
->sring
->req_event
= ring
->req_cons
+ 1;
603 res
= RING_GET_RESPONSE(ring
, ring
->rsp_prod_pvt
);
605 res
->portnum
= usb_hp
->port
;
606 res
->speed
= usbif
->ports
[usb_hp
->port
- 1].speed
;
607 ring
->rsp_prod_pvt
++;
608 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(ring
, notify
);
611 xen_pv_send_notify(&usbif
->xendev
);
614 TR_BUS(&usbif
->xendev
, "hotplug port %d speed %d\n", usb_hp
->port
,
619 if (!QSIMPLEQ_EMPTY(&usbif
->hotplug_q
)) {
620 qemu_bh_schedule(usbif
->bh
);
624 static void usbback_bh(void *opaque
)
626 struct usbback_info
*usbif
;
627 struct usbif_urb_back_ring
*urb_ring
;
628 struct usbback_req
*usbback_req
;
630 unsigned int more_to_do
;
633 if (usbif
->ring_error
) {
637 if (!QSIMPLEQ_EMPTY(&usbif
->hotplug_q
)) {
638 usbback_hotplug_notify(usbif
);
641 urb_ring
= &usbif
->urb_ring
;
642 rc
= urb_ring
->req_cons
;
643 rp
= urb_ring
->sring
->req_prod
;
644 xen_rmb(); /* Ensure we see queued requests up to 'rp'. */
646 if (RING_REQUEST_PROD_OVERFLOW(urb_ring
, rp
)) {
647 rc
= urb_ring
->rsp_prod_pvt
;
648 xen_pv_printf(&usbif
->xendev
, 0, "domU provided bogus ring requests "
649 "(%#x - %#x = %u). Halting ring processing.\n",
651 usbif
->ring_error
= true;
656 if (RING_REQUEST_CONS_OVERFLOW(urb_ring
, rc
)) {
659 usbback_req
= usbback_get_req(usbif
);
661 RING_COPY_REQUEST(urb_ring
, rc
, &usbback_req
->req
);
662 usbback_req
->usbif
= usbif
;
664 usbback_dispatch(usbback_req
);
666 urb_ring
->req_cons
= ++rc
;
669 RING_FINAL_CHECK_FOR_REQUESTS(urb_ring
, more_to_do
);
671 qemu_bh_schedule(usbif
->bh
);
675 static void usbback_hotplug_enq(struct usbback_info
*usbif
, unsigned port
)
677 struct usbback_hotplug
*usb_hp
;
679 usb_hp
= g_new0(struct usbback_hotplug
, 1);
681 QSIMPLEQ_INSERT_TAIL(&usbif
->hotplug_q
, usb_hp
, q
);
682 usbback_hotplug_notify(usbif
);
685 static void usbback_portid_drain(struct usbback_info
*usbif
, unsigned port
)
687 struct usbback_req
*req
, *tmp
;
690 QTAILQ_FOREACH_SAFE(req
, &usbif
->ports
[port
- 1].submit_q
, q
, tmp
) {
691 usbback_cancel_req(req
);
696 qemu_bh_schedule(usbif
->bh
);
700 static void usbback_portid_detach(struct usbback_info
*usbif
, unsigned port
)
702 if (!usbif
->ports
[port
- 1].attached
) {
706 usbif
->ports
[port
- 1].speed
= USBIF_SPEED_NONE
;
707 usbif
->ports
[port
- 1].attached
= false;
708 usbback_portid_drain(usbif
, port
);
709 usbback_hotplug_enq(usbif
, port
);
712 static void usbback_portid_remove(struct usbback_info
*usbif
, unsigned port
)
714 if (!usbif
->ports
[port
- 1].dev
) {
718 object_unparent(OBJECT(usbif
->ports
[port
- 1].dev
));
719 usbif
->ports
[port
- 1].dev
= NULL
;
720 usbback_portid_detach(usbif
, port
);
722 TR_BUS(&usbif
->xendev
, "port %d removed\n", port
);
725 static void usbback_portid_add(struct usbback_info
*usbif
, unsigned port
,
730 Error
*local_err
= NULL
;
735 if (usbif
->ports
[port
- 1].dev
) {
739 portname
= strchr(busid
, '-');
741 xen_pv_printf(&usbif
->xendev
, 0, "device %s illegal specification\n",
748 qdict_put_str(qdict
, "driver", "usb-host");
749 tmp
= g_strdup_printf("%s.0", usbif
->xendev
.qdev
.id
);
750 qdict_put_str(qdict
, "bus", tmp
);
752 tmp
= g_strdup_printf("%s-%u", usbif
->xendev
.qdev
.id
, port
);
753 qdict_put_str(qdict
, "id", tmp
);
755 qdict_put_int(qdict
, "port", port
);
756 qdict_put_int(qdict
, "hostbus", atoi(busid
));
757 qdict_put_str(qdict
, "hostport", portname
);
758 opts
= qemu_opts_from_qdict(qemu_find_opts("device"), qdict
, &local_err
);
762 usbif
->ports
[port
- 1].dev
= USB_DEVICE(qdev_device_add(opts
, &local_err
));
763 if (!usbif
->ports
[port
- 1].dev
) {
766 qobject_unref(qdict
);
767 speed
= usbif
->ports
[port
- 1].dev
->speed
;
770 speed
= USBIF_SPEED_LOW
;
773 speed
= USBIF_SPEED_FULL
;
776 speed
= (usbif
->usb_ver
< USB_VER_USB20
) ?
777 USBIF_SPEED_NONE
: USBIF_SPEED_HIGH
;
780 speed
= USBIF_SPEED_NONE
;
783 if (speed
== USBIF_SPEED_NONE
) {
784 xen_pv_printf(&usbif
->xendev
, 0, "device %s wrong speed\n", busid
);
785 object_unparent(OBJECT(usbif
->ports
[port
- 1].dev
));
786 usbif
->ports
[port
- 1].dev
= NULL
;
789 usb_device_reset(usbif
->ports
[port
- 1].dev
);
790 usbif
->ports
[port
- 1].speed
= speed
;
791 usbif
->ports
[port
- 1].attached
= true;
792 QTAILQ_INIT(&usbif
->ports
[port
- 1].submit_q
);
793 usbback_hotplug_enq(usbif
, port
);
795 TR_BUS(&usbif
->xendev
, "port %d attached\n", port
);
799 qobject_unref(qdict
);
800 xen_pv_printf(&usbif
->xendev
, 0, "device %s could not be opened\n", busid
);
803 static void usbback_process_port(struct usbback_info
*usbif
, unsigned port
)
808 snprintf(node
, sizeof(node
), "port/%d", port
);
809 busid
= xenstore_read_be_str(&usbif
->xendev
, node
);
811 xen_pv_printf(&usbif
->xendev
, 0, "xenstore_read %s failed\n", node
);
815 /* Remove portid, if the port is not connected. */
816 if (strlen(busid
) == 0) {
817 usbback_portid_remove(usbif
, port
);
819 usbback_portid_add(usbif
, port
, busid
);
825 static void usbback_disconnect(struct XenDevice
*xendev
)
827 struct usbback_info
*usbif
;
830 TR_BUS(xendev
, "start\n");
832 usbif
= container_of(xendev
, struct usbback_info
, xendev
);
834 xen_pv_unbind_evtchn(xendev
);
836 if (usbif
->urb_sring
) {
837 xengnttab_unmap(xendev
->gnttabdev
, usbif
->urb_sring
, 1);
838 usbif
->urb_sring
= NULL
;
840 if (usbif
->conn_sring
) {
841 xengnttab_unmap(xendev
->gnttabdev
, usbif
->conn_sring
, 1);
842 usbif
->conn_sring
= NULL
;
845 for (i
= 0; i
< usbif
->num_ports
; i
++) {
846 if (usbif
->ports
[i
].dev
) {
847 usbback_portid_drain(usbif
, i
+ 1);
851 TR_BUS(xendev
, "finished\n");
854 static int usbback_connect(struct XenDevice
*xendev
)
856 struct usbback_info
*usbif
;
857 struct usbif_urb_sring
*urb_sring
;
858 struct usbif_conn_sring
*conn_sring
;
863 TR_BUS(xendev
, "start\n");
865 usbif
= container_of(xendev
, struct usbback_info
, xendev
);
867 if (xenstore_read_fe_int(xendev
, "urb-ring-ref", &urb_ring_ref
)) {
868 xen_pv_printf(xendev
, 0, "error reading urb-ring-ref\n");
871 if (xenstore_read_fe_int(xendev
, "conn-ring-ref", &conn_ring_ref
)) {
872 xen_pv_printf(xendev
, 0, "error reading conn-ring-ref\n");
875 if (xenstore_read_fe_int(xendev
, "event-channel", &xendev
->remote_port
)) {
876 xen_pv_printf(xendev
, 0, "error reading event-channel\n");
880 usbif
->urb_sring
= xengnttab_map_grant_ref(xendev
->gnttabdev
, xendev
->dom
,
882 PROT_READ
| PROT_WRITE
);
883 usbif
->conn_sring
= xengnttab_map_grant_ref(xendev
->gnttabdev
, xendev
->dom
,
885 PROT_READ
| PROT_WRITE
);
886 if (!usbif
->urb_sring
|| !usbif
->conn_sring
) {
887 xen_pv_printf(xendev
, 0, "error mapping rings\n");
888 usbback_disconnect(xendev
);
892 urb_sring
= usbif
->urb_sring
;
893 conn_sring
= usbif
->conn_sring
;
894 BACK_RING_INIT(&usbif
->urb_ring
, urb_sring
, XC_PAGE_SIZE
);
895 BACK_RING_INIT(&usbif
->conn_ring
, conn_sring
, XC_PAGE_SIZE
);
897 xen_be_bind_evtchn(xendev
);
899 xen_pv_printf(xendev
, 1, "urb-ring-ref %d, conn-ring-ref %d, "
900 "remote port %d, local port %d\n", urb_ring_ref
,
901 conn_ring_ref
, xendev
->remote_port
, xendev
->local_port
);
903 for (i
= 1; i
<= usbif
->num_ports
; i
++) {
904 if (usbif
->ports
[i
- 1].dev
) {
905 usbback_hotplug_enq(usbif
, i
);
912 static void usbback_backend_changed(struct XenDevice
*xendev
, const char *node
)
914 struct usbback_info
*usbif
;
917 TR_BUS(xendev
, "path %s\n", node
);
919 usbif
= container_of(xendev
, struct usbback_info
, xendev
);
920 for (i
= 1; i
<= usbif
->num_ports
; i
++) {
921 usbback_process_port(usbif
, i
);
925 static int usbback_init(struct XenDevice
*xendev
)
927 struct usbback_info
*usbif
;
929 TR_BUS(xendev
, "start\n");
931 usbif
= container_of(xendev
, struct usbback_info
, xendev
);
933 if (xenstore_read_be_int(xendev
, "num-ports", &usbif
->num_ports
) ||
934 usbif
->num_ports
< 1 || usbif
->num_ports
> USBBACK_MAXPORTS
) {
935 xen_pv_printf(xendev
, 0, "num-ports not readable or out of bounds\n");
938 if (xenstore_read_be_int(xendev
, "usb-ver", &usbif
->usb_ver
) ||
939 (usbif
->usb_ver
!= USB_VER_USB11
&& usbif
->usb_ver
!= USB_VER_USB20
)) {
940 xen_pv_printf(xendev
, 0, "usb-ver not readable or out of bounds\n");
944 usbback_backend_changed(xendev
, "port");
946 TR_BUS(xendev
, "finished\n");
951 static void xen_bus_attach(USBPort
*port
)
953 struct usbback_info
*usbif
;
955 usbif
= port
->opaque
;
956 TR_BUS(&usbif
->xendev
, "\n");
957 usbif
->ports
[port
->index
].attached
= true;
958 usbback_hotplug_enq(usbif
, port
->index
+ 1);
961 static void xen_bus_detach(USBPort
*port
)
963 struct usbback_info
*usbif
;
965 usbif
= port
->opaque
;
966 TR_BUS(&usbif
->xendev
, "\n");
967 usbback_portid_detach(usbif
, port
->index
+ 1);
970 static void xen_bus_child_detach(USBPort
*port
, USBDevice
*child
)
972 struct usbback_info
*usbif
;
974 usbif
= port
->opaque
;
975 TR_BUS(&usbif
->xendev
, "\n");
978 static void xen_bus_complete(USBPort
*port
, USBPacket
*packet
)
980 struct usbback_req
*usbback_req
;
981 struct usbback_info
*usbif
;
983 usbback_req
= container_of(packet
, struct usbback_req
, packet
);
984 if (usbback_req
->cancelled
) {
989 usbif
= usbback_req
->usbif
;
990 TR_REQ(&usbif
->xendev
, "\n");
991 usbback_packet_complete(packet
);
994 static USBPortOps xen_usb_port_ops
= {
995 .attach
= xen_bus_attach
,
996 .detach
= xen_bus_detach
,
997 .child_detach
= xen_bus_child_detach
,
998 .complete
= xen_bus_complete
,
1001 static USBBusOps xen_usb_bus_ops
= {
1004 static void usbback_alloc(struct XenDevice
*xendev
)
1006 struct usbback_info
*usbif
;
1008 unsigned int i
, max_grants
;
1010 usbif
= container_of(xendev
, struct usbback_info
, xendev
);
1012 usb_bus_new(&usbif
->bus
, sizeof(usbif
->bus
), &xen_usb_bus_ops
,
1013 DEVICE(&xendev
->qdev
));
1014 for (i
= 0; i
< USBBACK_MAXPORTS
; i
++) {
1015 p
= &(usbif
->ports
[i
].port
);
1016 usb_register_port(&usbif
->bus
, p
, usbif
, i
, &xen_usb_port_ops
,
1017 USB_SPEED_MASK_LOW
| USB_SPEED_MASK_FULL
|
1018 USB_SPEED_MASK_HIGH
);
1021 QTAILQ_INIT(&usbif
->req_free_q
);
1022 QSIMPLEQ_INIT(&usbif
->hotplug_q
);
1023 usbif
->bh
= qemu_bh_new(usbback_bh
, usbif
);
1025 /* max_grants: for each request and for the rings (request and connect). */
1026 max_grants
= USBIF_MAX_SEGMENTS_PER_REQUEST
* USB_URB_RING_SIZE
+ 2;
1027 if (xengnttab_set_max_grants(xendev
->gnttabdev
, max_grants
) < 0) {
1028 xen_pv_printf(xendev
, 0, "xengnttab_set_max_grants failed: %s\n",
1033 static int usbback_free(struct XenDevice
*xendev
)
1035 struct usbback_info
*usbif
;
1036 struct usbback_req
*usbback_req
;
1037 struct usbback_hotplug
*usb_hp
;
1040 TR_BUS(xendev
, "start\n");
1042 usbback_disconnect(xendev
);
1043 usbif
= container_of(xendev
, struct usbback_info
, xendev
);
1044 for (i
= 1; i
<= usbif
->num_ports
; i
++) {
1045 usbback_portid_remove(usbif
, i
);
1048 while (!QTAILQ_EMPTY(&usbif
->req_free_q
)) {
1049 usbback_req
= QTAILQ_FIRST(&usbif
->req_free_q
);
1050 QTAILQ_REMOVE(&usbif
->req_free_q
, usbback_req
, q
);
1051 g_free(usbback_req
);
1053 while (!QSIMPLEQ_EMPTY(&usbif
->hotplug_q
)) {
1054 usb_hp
= QSIMPLEQ_FIRST(&usbif
->hotplug_q
);
1055 QSIMPLEQ_REMOVE_HEAD(&usbif
->hotplug_q
, q
);
1059 qemu_bh_delete(usbif
->bh
);
1061 for (i
= 0; i
< USBBACK_MAXPORTS
; i
++) {
1062 usb_unregister_port(&usbif
->bus
, &(usbif
->ports
[i
].port
));
1065 usb_bus_release(&usbif
->bus
);
1067 TR_BUS(xendev
, "finished\n");
1072 static void usbback_event(struct XenDevice
*xendev
)
1074 struct usbback_info
*usbif
;
1076 usbif
= container_of(xendev
, struct usbback_info
, xendev
);
1077 qemu_bh_schedule(usbif
->bh
);
1080 struct XenDevOps xen_usb_ops
= {
1081 .size
= sizeof(struct usbback_info
),
1082 .flags
= DEVOPS_FLAG_NEED_GNTDEV
,
1083 .init
= usbback_init
,
1084 .alloc
= usbback_alloc
,
1085 .free
= usbback_free
,
1086 .backend_changed
= usbback_backend_changed
,
1087 .initialise
= usbback_connect
,
1088 .disconnect
= usbback_disconnect
,
1089 .event
= usbback_event
,
1092 #else /* USBIF_SHORT_NOT_OK */
1094 static int usbback_not_supported(void)
1099 struct XenDevOps xen_usb_ops
= {
1100 .backend_register
= usbback_not_supported
,