vhci.c revision 1.1 1 1.1 maxv /* $NetBSD: vhci.c,v 1.1 2019/09/14 06:57:52 maxv Exp $ */
2 1.1 maxv
3 1.1 maxv /*
4 1.1 maxv * Copyright (c) 2019 The NetBSD Foundation, Inc.
5 1.1 maxv * All rights reserved.
6 1.1 maxv *
7 1.1 maxv * This code is derived from software contributed to The NetBSD Foundation
8 1.1 maxv * by Maxime Villard.
9 1.1 maxv *
10 1.1 maxv * Redistribution and use in source and binary forms, with or without
11 1.1 maxv * modification, are permitted provided that the following conditions
12 1.1 maxv * are met:
13 1.1 maxv * 1. Redistributions of source code must retain the above copyright
14 1.1 maxv * notice, this list of conditions and the following disclaimer.
15 1.1 maxv * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 maxv * notice, this list of conditions and the following disclaimer in the
17 1.1 maxv * documentation and/or other materials provided with the distribution.
18 1.1 maxv *
19 1.1 maxv * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 maxv * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 maxv * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 maxv * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 maxv * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 maxv * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 maxv * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 maxv * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 maxv * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 maxv * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 maxv * POSSIBILITY OF SUCH DAMAGE.
30 1.1 maxv */
31 1.1 maxv
32 1.1 maxv #include <sys/cdefs.h>
33 1.1 maxv __KERNEL_RCSID(0, "$NetBSD: vhci.c,v 1.1 2019/09/14 06:57:52 maxv Exp $");
34 1.1 maxv
35 1.1 maxv #ifdef _KERNEL_OPT
36 1.1 maxv #include "opt_usb.h"
37 1.1 maxv #endif
38 1.1 maxv
39 1.1 maxv #include <sys/param.h>
40 1.1 maxv
41 1.1 maxv #include <sys/bus.h>
42 1.1 maxv #include <sys/cpu.h>
43 1.1 maxv #include <sys/conf.h>
44 1.1 maxv #include <sys/device.h>
45 1.1 maxv #include <sys/kernel.h>
46 1.1 maxv #include <sys/kmem.h>
47 1.1 maxv #include <sys/mutex.h>
48 1.1 maxv #include <sys/proc.h>
49 1.1 maxv #include <sys/queue.h>
50 1.1 maxv #include <sys/systm.h>
51 1.1 maxv #include <sys/mman.h>
52 1.1 maxv #include <sys/file.h>
53 1.1 maxv #include <sys/filedesc.h>
54 1.1 maxv
55 1.1 maxv #include <machine/endian.h>
56 1.1 maxv
57 1.1 maxv #include "ioconf.h"
58 1.1 maxv
59 1.1 maxv #include <dev/usb/usb.h>
60 1.1 maxv #include <dev/usb/usbdi.h>
61 1.1 maxv #include <dev/usb/usbdivar.h>
62 1.1 maxv
63 1.1 maxv #include <dev/usb/usbroothub.h>
64 1.1 maxv
65 1.1 maxv #define VHCI_DEBUG
66 1.1 maxv
67 1.1 maxv #ifdef VHCI_DEBUG
68 1.1 maxv #define DPRINTF(fmt, ...) printf(fmt, __VA_ARGS__)
69 1.1 maxv #else
70 1.1 maxv #define DPRINTF(fmt, ...) __nothing
71 1.1 maxv #endif
72 1.1 maxv
73 1.1 maxv static usbd_status vhci_open(struct usbd_pipe *);
74 1.1 maxv static void vhci_softintr(void *);
75 1.1 maxv
76 1.1 maxv static struct usbd_xfer *vhci_allocx(struct usbd_bus *, unsigned int);
77 1.1 maxv static void vhci_freex(struct usbd_bus *, struct usbd_xfer *);
78 1.1 maxv static void vhci_get_lock(struct usbd_bus *, kmutex_t **);
79 1.1 maxv static int vhci_roothub_ctrl(struct usbd_bus *, usb_device_request_t *,
80 1.1 maxv void *, int);
81 1.1 maxv
82 1.1 maxv static const struct usbd_bus_methods vhci_bus_methods = {
83 1.1 maxv .ubm_open = vhci_open,
84 1.1 maxv .ubm_softint = vhci_softintr,
85 1.1 maxv .ubm_dopoll = NULL,
86 1.1 maxv .ubm_allocx = vhci_allocx,
87 1.1 maxv .ubm_freex = vhci_freex,
88 1.1 maxv .ubm_getlock = vhci_get_lock,
89 1.1 maxv .ubm_rhctrl = vhci_roothub_ctrl,
90 1.1 maxv };
91 1.1 maxv
92 1.1 maxv static usbd_status vhci_device_ctrl_transfer(struct usbd_xfer *);
93 1.1 maxv static usbd_status vhci_device_ctrl_start(struct usbd_xfer *);
94 1.1 maxv static void vhci_device_ctrl_abort(struct usbd_xfer *);
95 1.1 maxv static void vhci_device_ctrl_close(struct usbd_pipe *);
96 1.1 maxv static void vhci_device_ctrl_cleartoggle(struct usbd_pipe *);
97 1.1 maxv static void vhci_device_ctrl_done(struct usbd_xfer *);
98 1.1 maxv
99 1.1 maxv static const struct usbd_pipe_methods vhci_device_ctrl_methods = {
100 1.1 maxv .upm_init = NULL,
101 1.1 maxv .upm_fini = NULL,
102 1.1 maxv .upm_transfer = vhci_device_ctrl_transfer,
103 1.1 maxv .upm_start = vhci_device_ctrl_start,
104 1.1 maxv .upm_abort = vhci_device_ctrl_abort,
105 1.1 maxv .upm_close = vhci_device_ctrl_close,
106 1.1 maxv .upm_cleartoggle = vhci_device_ctrl_cleartoggle,
107 1.1 maxv .upm_done = vhci_device_ctrl_done,
108 1.1 maxv };
109 1.1 maxv
110 1.1 maxv static usbd_status vhci_root_intr_transfer(struct usbd_xfer *);
111 1.1 maxv static usbd_status vhci_root_intr_start(struct usbd_xfer *);
112 1.1 maxv static void vhci_root_intr_abort(struct usbd_xfer *);
113 1.1 maxv static void vhci_root_intr_close(struct usbd_pipe *);
114 1.1 maxv static void vhci_root_intr_cleartoggle(struct usbd_pipe *);
115 1.1 maxv static void vhci_root_intr_done(struct usbd_xfer *);
116 1.1 maxv
117 1.1 maxv static const struct usbd_pipe_methods vhci_root_intr_methods = {
118 1.1 maxv .upm_init = NULL,
119 1.1 maxv .upm_fini = NULL,
120 1.1 maxv .upm_transfer = vhci_root_intr_transfer,
121 1.1 maxv .upm_start = vhci_root_intr_start,
122 1.1 maxv .upm_abort = vhci_root_intr_abort,
123 1.1 maxv .upm_close = vhci_root_intr_close,
124 1.1 maxv .upm_cleartoggle = vhci_root_intr_cleartoggle,
125 1.1 maxv .upm_done = vhci_root_intr_done,
126 1.1 maxv };
127 1.1 maxv
128 1.1 maxv typedef struct vhci_packet {
129 1.1 maxv LIST_ENTRY(vhci_packet) portlist;
130 1.1 maxv LIST_ENTRY(vhci_packet) xferlist;
131 1.1 maxv struct usbd_xfer *xfer; /* also vxfer */
132 1.1 maxv uint8_t *buf;
133 1.1 maxv size_t size;
134 1.1 maxv size_t cursor;
135 1.1 maxv } vhci_packet_t;
136 1.1 maxv
137 1.1 maxv typedef LIST_HEAD(, vhci_packet) vhci_packet_list_t;
138 1.1 maxv
139 1.1 maxv typedef struct {
140 1.1 maxv kmutex_t lock;
141 1.1 maxv int status;
142 1.1 maxv int change;
143 1.1 maxv struct {
144 1.1 maxv vhci_packet_list_t usb_to_host;
145 1.1 maxv vhci_packet_list_t host_to_usb;
146 1.1 maxv } pkts_device_ctrl;
147 1.1 maxv } vhci_port_t;
148 1.1 maxv
149 1.1 maxv typedef struct {
150 1.1 maxv struct usbd_pipe pipe;
151 1.1 maxv } vhci_pipe_t;
152 1.1 maxv
153 1.1 maxv typedef struct vhci_xfer {
154 1.1 maxv /* General. */
155 1.1 maxv struct usbd_xfer xfer;
156 1.1 maxv
157 1.1 maxv /* vHCI-specific. */
158 1.1 maxv size_t refcnt;
159 1.1 maxv vhci_port_t *port;
160 1.1 maxv vhci_packet_list_t pkts;
161 1.1 maxv LIST_ENTRY(vhci_xfer) freelist;
162 1.1 maxv } vhci_xfer_t;
163 1.1 maxv
164 1.1 maxv typedef LIST_HEAD(, vhci_xfer) vhci_xfer_list_t;
165 1.1 maxv
166 1.1 maxv #define VHCI_INDEX2PORT(idx) (idx)
167 1.1 maxv #define VHCI_NPORTS 4
168 1.1 maxv
169 1.1 maxv typedef struct {
170 1.1 maxv device_t sc_dev;
171 1.1 maxv
172 1.1 maxv struct usbd_bus sc_bus;
173 1.1 maxv bool sc_dying;
174 1.1 maxv kmutex_t sc_lock;
175 1.1 maxv
176 1.1 maxv /*
177 1.1 maxv * Intr Root. Used to attach the devices.
178 1.1 maxv */
179 1.1 maxv struct usbd_xfer *sc_intrxfer;
180 1.1 maxv
181 1.1 maxv /*
182 1.1 maxv * The ports. Zero is for the roothub, one and beyond for the USB
183 1.1 maxv * devices.
184 1.1 maxv */
185 1.1 maxv size_t sc_nports;
186 1.1 maxv vhci_port_t sc_port[VHCI_NPORTS];
187 1.1 maxv
188 1.1 maxv device_t sc_child; /* /dev/usb# device */
189 1.1 maxv } vhci_softc_t;
190 1.1 maxv
191 1.1 maxv typedef struct {
192 1.1 maxv u_int port;
193 1.1 maxv vhci_softc_t *softc;
194 1.1 maxv } vhci_fd_t;
195 1.1 maxv
196 1.1 maxv extern struct cfdriver vhci_cd;
197 1.1 maxv
198 1.1 maxv /* -------------------------------------------------------------------------- */
199 1.1 maxv
200 1.1 maxv static void
201 1.1 maxv vhci_pkt_create(vhci_port_t *port, struct usbd_xfer *xfer, bool usb_to_host)
202 1.1 maxv {
203 1.1 maxv vhci_xfer_t *vxfer = (vhci_xfer_t *)xfer;
204 1.1 maxv vhci_packet_list_t *reqlist, *pktlist;
205 1.1 maxv vhci_packet_t *req, *pkt;
206 1.1 maxv
207 1.1 maxv /* Setup packet. */
208 1.1 maxv reqlist = &port->pkts_device_ctrl.host_to_usb;
209 1.1 maxv req = kmem_zalloc(sizeof(*req), KM_SLEEP);
210 1.1 maxv req->xfer = xfer;
211 1.1 maxv req->buf = (uint8_t *)&xfer->ux_request;
212 1.1 maxv req->size = sizeof(xfer->ux_request);
213 1.1 maxv req->cursor = 0;
214 1.1 maxv
215 1.1 maxv /* Data packet. */
216 1.1 maxv if (usb_to_host) {
217 1.1 maxv pktlist = &port->pkts_device_ctrl.usb_to_host;
218 1.1 maxv } else {
219 1.1 maxv pktlist = &port->pkts_device_ctrl.host_to_usb;
220 1.1 maxv }
221 1.1 maxv pkt = kmem_zalloc(sizeof(*pkt), KM_SLEEP);
222 1.1 maxv pkt->xfer = xfer;
223 1.1 maxv pkt->buf = xfer->ux_buf;
224 1.1 maxv pkt->size = xfer->ux_length;
225 1.1 maxv pkt->cursor = 0;
226 1.1 maxv
227 1.1 maxv /* Insert in the xfer. */
228 1.1 maxv vxfer->refcnt = 2;
229 1.1 maxv vxfer->port = port;
230 1.1 maxv LIST_INIT(&vxfer->pkts);
231 1.1 maxv LIST_INSERT_HEAD(&vxfer->pkts, req, xferlist);
232 1.1 maxv LIST_INSERT_HEAD(&vxfer->pkts, pkt, xferlist);
233 1.1 maxv
234 1.1 maxv /* Insert in the port. */
235 1.1 maxv mutex_enter(&port->lock);
236 1.1 maxv LIST_INSERT_HEAD(reqlist, req, portlist);
237 1.1 maxv LIST_INSERT_HEAD(pktlist, pkt, portlist);
238 1.1 maxv mutex_exit(&port->lock);
239 1.1 maxv }
240 1.1 maxv
241 1.1 maxv static void
242 1.1 maxv vhci_pkt_destroy(vhci_softc_t *sc, vhci_packet_t *pkt)
243 1.1 maxv {
244 1.1 maxv struct usbd_xfer *xfer = pkt->xfer;
245 1.1 maxv vhci_xfer_t *vxfer = (vhci_xfer_t *)xfer;
246 1.1 maxv vhci_port_t *port = vxfer->port;
247 1.1 maxv
248 1.1 maxv KASSERT(mutex_owned(&port->lock));
249 1.1 maxv
250 1.1 maxv LIST_REMOVE(pkt, portlist);
251 1.1 maxv LIST_REMOVE(pkt, xferlist);
252 1.1 maxv kmem_free(pkt, sizeof(*pkt));
253 1.1 maxv
254 1.1 maxv KASSERT(vxfer->refcnt > 0);
255 1.1 maxv vxfer->refcnt--;
256 1.1 maxv if (vxfer->refcnt > 0)
257 1.1 maxv return;
258 1.1 maxv
259 1.1 maxv KASSERT(LIST_FIRST(&vxfer->pkts) == NULL);
260 1.1 maxv }
261 1.1 maxv
262 1.1 maxv /* -------------------------------------------------------------------------- */
263 1.1 maxv
264 1.1 maxv static usbd_status
265 1.1 maxv vhci_open(struct usbd_pipe *pipe)
266 1.1 maxv {
267 1.1 maxv struct usbd_device *dev = pipe->up_dev;
268 1.1 maxv struct usbd_bus *bus = dev->ud_bus;
269 1.1 maxv usb_endpoint_descriptor_t *ed = pipe->up_endpoint->ue_edesc;
270 1.1 maxv vhci_softc_t *sc = bus->ub_hcpriv;
271 1.1 maxv uint8_t addr = dev->ud_addr;
272 1.1 maxv
273 1.1 maxv if (sc->sc_dying)
274 1.1 maxv return USBD_IOERROR;
275 1.1 maxv
276 1.1 maxv DPRINTF("%s: called, type=%d\n", __func__,
277 1.1 maxv UE_GET_XFERTYPE(ed->bmAttributes));
278 1.1 maxv
279 1.1 maxv if (addr == bus->ub_rhaddr) {
280 1.1 maxv switch (ed->bEndpointAddress) {
281 1.1 maxv case USB_CONTROL_ENDPOINT:
282 1.1 maxv DPRINTF("%s: roothub_ctrl\n", __func__);
283 1.1 maxv pipe->up_methods = &roothub_ctrl_methods;
284 1.1 maxv break;
285 1.1 maxv case UE_DIR_IN | USBROOTHUB_INTR_ENDPT:
286 1.1 maxv DPRINTF("%s: root_intr\n", __func__);
287 1.1 maxv pipe->up_methods = &vhci_root_intr_methods;
288 1.1 maxv break;
289 1.1 maxv default:
290 1.1 maxv DPRINTF("%s: inval\n", __func__);
291 1.1 maxv return USBD_INVAL;
292 1.1 maxv }
293 1.1 maxv } else {
294 1.1 maxv switch (UE_GET_XFERTYPE(ed->bmAttributes)) {
295 1.1 maxv case UE_CONTROL:
296 1.1 maxv pipe->up_methods = &vhci_device_ctrl_methods;
297 1.1 maxv break;
298 1.1 maxv case UE_BULK:
299 1.1 maxv case UE_INTERRUPT:
300 1.1 maxv default:
301 1.1 maxv goto bad;
302 1.1 maxv }
303 1.1 maxv }
304 1.1 maxv
305 1.1 maxv return USBD_NORMAL_COMPLETION;
306 1.1 maxv
307 1.1 maxv bad:
308 1.1 maxv return USBD_NOMEM;
309 1.1 maxv }
310 1.1 maxv
311 1.1 maxv static void
312 1.1 maxv vhci_softintr(void *v)
313 1.1 maxv {
314 1.1 maxv DPRINTF("%s: called\n", __func__);
315 1.1 maxv }
316 1.1 maxv
317 1.1 maxv static struct usbd_xfer *
318 1.1 maxv vhci_allocx(struct usbd_bus *bus, unsigned int nframes)
319 1.1 maxv {
320 1.1 maxv vhci_xfer_t *vxfer;
321 1.1 maxv
322 1.1 maxv vxfer = kmem_zalloc(sizeof(*vxfer), KM_SLEEP);
323 1.1 maxv #ifdef DIAGNOSTIC
324 1.1 maxv vxfer->xfer.ux_state = XFER_BUSY;
325 1.1 maxv #endif
326 1.1 maxv return (struct usbd_xfer *)vxfer;
327 1.1 maxv }
328 1.1 maxv
329 1.1 maxv static void
330 1.1 maxv vhci_freex(struct usbd_bus *bus, struct usbd_xfer *xfer)
331 1.1 maxv {
332 1.1 maxv vhci_xfer_t *vxfer = (vhci_xfer_t *)xfer;
333 1.1 maxv
334 1.1 maxv KASSERT(vxfer->refcnt == 0);
335 1.1 maxv KASSERT(LIST_FIRST(&vxfer->pkts) == NULL);
336 1.1 maxv
337 1.1 maxv #ifdef DIAGNOSTIC
338 1.1 maxv vxfer->xfer.ux_state = XFER_FREE;
339 1.1 maxv #endif
340 1.1 maxv kmem_free(vxfer, sizeof(*vxfer));
341 1.1 maxv }
342 1.1 maxv
343 1.1 maxv static void
344 1.1 maxv vhci_get_lock(struct usbd_bus *bus, kmutex_t **lock)
345 1.1 maxv {
346 1.1 maxv vhci_softc_t *sc = bus->ub_hcpriv;
347 1.1 maxv
348 1.1 maxv *lock = &sc->sc_lock;
349 1.1 maxv }
350 1.1 maxv
351 1.1 maxv static int
352 1.1 maxv vhci_roothub_ctrl(struct usbd_bus *bus, usb_device_request_t *req,
353 1.1 maxv void *buf, int buflen)
354 1.1 maxv {
355 1.1 maxv vhci_softc_t *sc = bus->ub_hcpriv;
356 1.1 maxv vhci_port_t *port;
357 1.1 maxv usb_hub_descriptor_t hubd;
358 1.1 maxv uint16_t len, value, index;
359 1.1 maxv int totlen = 0;
360 1.1 maxv
361 1.1 maxv len = UGETW(req->wLength);
362 1.1 maxv value = UGETW(req->wValue);
363 1.1 maxv index = UGETW(req->wIndex);
364 1.1 maxv
365 1.1 maxv port = &sc->sc_port[VHCI_INDEX2PORT(index)];
366 1.1 maxv
367 1.1 maxv #define C(x,y) ((x) | ((y) << 8))
368 1.1 maxv switch (C(req->bRequest, req->bmRequestType)) {
369 1.1 maxv case C(UR_GET_DESCRIPTOR, UT_READ_DEVICE):
370 1.1 maxv switch (value) {
371 1.1 maxv case C(0, UDESC_DEVICE): {
372 1.1 maxv usb_device_descriptor_t devd;
373 1.1 maxv
374 1.1 maxv totlen = uimin(buflen, sizeof(devd));
375 1.1 maxv memcpy(&devd, buf, totlen);
376 1.1 maxv USETW(devd.idVendor, 0);
377 1.1 maxv USETW(devd.idProduct, 0);
378 1.1 maxv memcpy(buf, &devd, totlen);
379 1.1 maxv break;
380 1.1 maxv }
381 1.1 maxv #define sd ((usb_string_descriptor_t *)buf)
382 1.1 maxv case C(1, UDESC_STRING):
383 1.1 maxv /* Vendor */
384 1.1 maxv totlen = usb_makestrdesc(sd, len, "NetBSD");
385 1.1 maxv break;
386 1.1 maxv case C(2, UDESC_STRING):
387 1.1 maxv /* Product */
388 1.1 maxv totlen = usb_makestrdesc(sd, len, "VHCI root hub");
389 1.1 maxv break;
390 1.1 maxv #undef sd
391 1.1 maxv default:
392 1.1 maxv /* default from usbroothub */
393 1.1 maxv return buflen;
394 1.1 maxv }
395 1.1 maxv break;
396 1.1 maxv
397 1.1 maxv case C(UR_SET_FEATURE, UT_WRITE_CLASS_OTHER):
398 1.1 maxv switch (value) {
399 1.1 maxv case UHF_PORT_RESET:
400 1.1 maxv if (index < 1 || index >= sc->sc_nports) {
401 1.1 maxv return -1;
402 1.1 maxv }
403 1.1 maxv port->status |= UPS_C_PORT_RESET;
404 1.1 maxv break;
405 1.1 maxv case UHF_PORT_POWER:
406 1.1 maxv break;
407 1.1 maxv default:
408 1.1 maxv return -1;
409 1.1 maxv }
410 1.1 maxv break;
411 1.1 maxv
412 1.1 maxv /* Hub requests. */
413 1.1 maxv case C(UR_CLEAR_FEATURE, UT_WRITE_CLASS_DEVICE):
414 1.1 maxv break;
415 1.1 maxv case C(UR_CLEAR_FEATURE, UT_WRITE_CLASS_OTHER):
416 1.1 maxv if (index < 1 || index >= sc->sc_nports) {
417 1.1 maxv return -1;
418 1.1 maxv }
419 1.1 maxv switch (value) {
420 1.1 maxv case UHF_PORT_ENABLE:
421 1.1 maxv port->status &= ~UPS_PORT_ENABLED;
422 1.1 maxv break;
423 1.1 maxv case UHF_C_PORT_ENABLE:
424 1.1 maxv port->change |= UPS_C_PORT_ENABLED;
425 1.1 maxv break;
426 1.1 maxv default:
427 1.1 maxv return -1;
428 1.1 maxv }
429 1.1 maxv break;
430 1.1 maxv
431 1.1 maxv case C(UR_GET_DESCRIPTOR, UT_READ_CLASS_DEVICE):
432 1.1 maxv totlen = uimin(buflen, sizeof(hubd));
433 1.1 maxv memcpy(&hubd, buf, totlen);
434 1.1 maxv hubd.bNbrPorts = sc->sc_nports - 1;
435 1.1 maxv hubd.bDescLength = USB_HUB_DESCRIPTOR_SIZE;
436 1.1 maxv totlen = uimin(totlen, hubd.bDescLength);
437 1.1 maxv memcpy(buf, &hubd, totlen);
438 1.1 maxv break;
439 1.1 maxv
440 1.1 maxv case C(UR_GET_STATUS, UT_READ_CLASS_DEVICE):
441 1.1 maxv /* XXX The other HCs do this */
442 1.1 maxv memset(buf, 0, len);
443 1.1 maxv totlen = len;
444 1.1 maxv break;
445 1.1 maxv
446 1.1 maxv case C(UR_GET_STATUS, UT_READ_CLASS_OTHER): {
447 1.1 maxv usb_port_status_t ps;
448 1.1 maxv
449 1.1 maxv if (index < 1 || index >= sc->sc_nports) {
450 1.1 maxv return -1;
451 1.1 maxv }
452 1.1 maxv USETW(ps.wPortStatus, port->status);
453 1.1 maxv USETW(ps.wPortChange, port->change);
454 1.1 maxv totlen = uimin(len, sizeof(ps));
455 1.1 maxv memcpy(buf, &ps, totlen);
456 1.1 maxv break;
457 1.1 maxv }
458 1.1 maxv default:
459 1.1 maxv /* default from usbroothub */
460 1.1 maxv return buflen;
461 1.1 maxv }
462 1.1 maxv
463 1.1 maxv return totlen;
464 1.1 maxv }
465 1.1 maxv
466 1.1 maxv /* -------------------------------------------------------------------------- */
467 1.1 maxv
468 1.1 maxv static usbd_status
469 1.1 maxv vhci_device_ctrl_transfer(struct usbd_xfer *xfer)
470 1.1 maxv {
471 1.1 maxv vhci_softc_t *sc = xfer->ux_bus->ub_hcpriv;
472 1.1 maxv usbd_status err;
473 1.1 maxv
474 1.1 maxv DPRINTF("%s: called\n", __func__);
475 1.1 maxv
476 1.1 maxv /* Insert last in queue. */
477 1.1 maxv mutex_enter(&sc->sc_lock);
478 1.1 maxv err = usb_insert_transfer(xfer);
479 1.1 maxv mutex_exit(&sc->sc_lock);
480 1.1 maxv if (err)
481 1.1 maxv return err;
482 1.1 maxv
483 1.1 maxv /* Pipe isn't running, start first */
484 1.1 maxv return vhci_device_ctrl_start(SIMPLEQ_FIRST(&xfer->ux_pipe->up_queue));
485 1.1 maxv }
486 1.1 maxv
487 1.1 maxv static usbd_status
488 1.1 maxv vhci_device_ctrl_start(struct usbd_xfer *xfer)
489 1.1 maxv {
490 1.1 maxv usb_device_request_t *req = &xfer->ux_request;
491 1.1 maxv struct usbd_device *dev = xfer->ux_pipe->up_dev;
492 1.1 maxv vhci_softc_t *sc = xfer->ux_bus->ub_hcpriv;
493 1.1 maxv vhci_port_t *port;
494 1.1 maxv bool polling = sc->sc_bus.ub_usepolling;
495 1.1 maxv bool isread = (req->bmRequestType & UT_READ) != 0;
496 1.1 maxv int portno;
497 1.1 maxv
498 1.1 maxv KASSERT(xfer->ux_rqflags & URQ_REQUEST);
499 1.1 maxv KASSERT(dev->ud_myhsport != NULL);
500 1.1 maxv portno = dev->ud_myhsport->up_portno;
501 1.1 maxv
502 1.1 maxv DPRINTF("%s: type=0x%02x, len=%d, isread=%d, portno=%d\n",
503 1.1 maxv __func__, req->bmRequestType, UGETW(req->wLength), isread, portno);
504 1.1 maxv
505 1.1 maxv if (sc->sc_dying)
506 1.1 maxv return USBD_IOERROR;
507 1.1 maxv
508 1.1 maxv port = &sc->sc_port[portno];
509 1.1 maxv
510 1.1 maxv if (!polling)
511 1.1 maxv mutex_enter(&sc->sc_lock);
512 1.1 maxv xfer->ux_status = USBD_IN_PROGRESS;
513 1.1 maxv if (!polling)
514 1.1 maxv mutex_exit(&sc->sc_lock);
515 1.1 maxv
516 1.1 maxv vhci_pkt_create(port, xfer, isread);
517 1.1 maxv
518 1.1 maxv return USBD_IN_PROGRESS;
519 1.1 maxv }
520 1.1 maxv
521 1.1 maxv static void
522 1.1 maxv vhci_device_ctrl_abort(struct usbd_xfer *xfer)
523 1.1 maxv {
524 1.1 maxv vhci_xfer_t *vxfer = (vhci_xfer_t *)xfer;
525 1.1 maxv vhci_softc_t *sc = xfer->ux_bus->ub_hcpriv;
526 1.1 maxv vhci_port_t *port = vxfer->port;
527 1.1 maxv vhci_packet_t *pkt;
528 1.1 maxv
529 1.1 maxv DPRINTF("%s: called\n", __func__);
530 1.1 maxv
531 1.1 maxv KASSERT(mutex_owned(&sc->sc_lock));
532 1.1 maxv
533 1.1 maxv callout_halt(&xfer->ux_callout, &sc->sc_lock);
534 1.1 maxv
535 1.1 maxv KASSERT(xfer->ux_status != USBD_CANCELLED);
536 1.1 maxv
537 1.1 maxv /* If anyone else beat us, we're done. */
538 1.1 maxv if (xfer->ux_status != USBD_IN_PROGRESS)
539 1.1 maxv return;
540 1.1 maxv
541 1.1 maxv mutex_enter(&port->lock);
542 1.1 maxv for (; vxfer->refcnt > 0; vxfer->refcnt--) {
543 1.1 maxv pkt = LIST_FIRST(&vxfer->pkts);
544 1.1 maxv KASSERT(pkt != NULL);
545 1.1 maxv vhci_pkt_destroy(sc, pkt);
546 1.1 maxv }
547 1.1 maxv KASSERT(LIST_FIRST(&vxfer->pkts) == NULL);
548 1.1 maxv mutex_exit(&port->lock);
549 1.1 maxv
550 1.1 maxv xfer->ux_status = USBD_CANCELLED;
551 1.1 maxv usb_transfer_complete(xfer);
552 1.1 maxv KASSERT(mutex_owned(&sc->sc_lock));
553 1.1 maxv }
554 1.1 maxv
555 1.1 maxv static void
556 1.1 maxv vhci_device_ctrl_close(struct usbd_pipe *pipe)
557 1.1 maxv {
558 1.1 maxv DPRINTF("%s: called\n", __func__);
559 1.1 maxv }
560 1.1 maxv
561 1.1 maxv static void
562 1.1 maxv vhci_device_ctrl_cleartoggle(struct usbd_pipe *pipe)
563 1.1 maxv {
564 1.1 maxv DPRINTF("%s: called\n", __func__);
565 1.1 maxv }
566 1.1 maxv
567 1.1 maxv static void
568 1.1 maxv vhci_device_ctrl_done(struct usbd_xfer *xfer)
569 1.1 maxv {
570 1.1 maxv DPRINTF("%s: called\n", __func__);
571 1.1 maxv }
572 1.1 maxv
573 1.1 maxv /* -------------------------------------------------------------------------- */
574 1.1 maxv
575 1.1 maxv static usbd_status
576 1.1 maxv vhci_root_intr_transfer(struct usbd_xfer *xfer)
577 1.1 maxv {
578 1.1 maxv vhci_softc_t *sc = xfer->ux_bus->ub_hcpriv;
579 1.1 maxv usbd_status err;
580 1.1 maxv
581 1.1 maxv DPRINTF("%s: called\n", __func__);
582 1.1 maxv
583 1.1 maxv /* Insert last in queue. */
584 1.1 maxv mutex_enter(&sc->sc_lock);
585 1.1 maxv err = usb_insert_transfer(xfer);
586 1.1 maxv mutex_exit(&sc->sc_lock);
587 1.1 maxv if (err)
588 1.1 maxv return err;
589 1.1 maxv
590 1.1 maxv /* Pipe isn't running, start first */
591 1.1 maxv return vhci_root_intr_start(SIMPLEQ_FIRST(&xfer->ux_pipe->up_queue));
592 1.1 maxv }
593 1.1 maxv
594 1.1 maxv static usbd_status
595 1.1 maxv vhci_root_intr_start(struct usbd_xfer *xfer)
596 1.1 maxv {
597 1.1 maxv vhci_softc_t *sc = xfer->ux_bus->ub_hcpriv;
598 1.1 maxv const bool polling = sc->sc_bus.ub_usepolling;
599 1.1 maxv
600 1.1 maxv DPRINTF("%s: called, len=%zu\n", __func__, (size_t)xfer->ux_length);
601 1.1 maxv
602 1.1 maxv if (sc->sc_dying)
603 1.1 maxv return USBD_IOERROR;
604 1.1 maxv
605 1.1 maxv if (!polling)
606 1.1 maxv mutex_enter(&sc->sc_lock);
607 1.1 maxv sc->sc_intrxfer = xfer;
608 1.1 maxv if (!polling)
609 1.1 maxv mutex_exit(&sc->sc_lock);
610 1.1 maxv
611 1.1 maxv return USBD_IN_PROGRESS;
612 1.1 maxv }
613 1.1 maxv
614 1.1 maxv static void
615 1.1 maxv vhci_root_intr_abort(struct usbd_xfer *xfer)
616 1.1 maxv {
617 1.1 maxv vhci_softc_t *sc = xfer->ux_bus->ub_hcpriv;
618 1.1 maxv
619 1.1 maxv DPRINTF("%s: called\n", __func__);
620 1.1 maxv
621 1.1 maxv KASSERT(mutex_owned(&sc->sc_lock));
622 1.1 maxv KASSERT(xfer->ux_pipe->up_intrxfer == xfer);
623 1.1 maxv
624 1.1 maxv sc->sc_intrxfer = NULL;
625 1.1 maxv
626 1.1 maxv xfer->ux_status = USBD_CANCELLED;
627 1.1 maxv usb_transfer_complete(xfer);
628 1.1 maxv }
629 1.1 maxv
630 1.1 maxv static void
631 1.1 maxv vhci_root_intr_close(struct usbd_pipe *pipe)
632 1.1 maxv {
633 1.1 maxv vhci_softc_t *sc = pipe->up_dev->ud_bus->ub_hcpriv;
634 1.1 maxv
635 1.1 maxv DPRINTF("%s: called\n", __func__);
636 1.1 maxv
637 1.1 maxv KASSERT(mutex_owned(&sc->sc_lock));
638 1.1 maxv
639 1.1 maxv sc->sc_intrxfer = NULL;
640 1.1 maxv }
641 1.1 maxv
642 1.1 maxv static void
643 1.1 maxv vhci_root_intr_cleartoggle(struct usbd_pipe *pipe)
644 1.1 maxv {
645 1.1 maxv DPRINTF("%s: called\n", __func__);
646 1.1 maxv }
647 1.1 maxv
648 1.1 maxv static void
649 1.1 maxv vhci_root_intr_done(struct usbd_xfer *xfer)
650 1.1 maxv {
651 1.1 maxv }
652 1.1 maxv
653 1.1 maxv /* -------------------------------------------------------------------------- */
654 1.1 maxv
655 1.1 maxv struct vhci_ioc_get_info {
656 1.1 maxv /* General. */
657 1.1 maxv size_t nports;
658 1.1 maxv
659 1.1 maxv /* Current port. */
660 1.1 maxv u_int port;
661 1.1 maxv int status;
662 1.1 maxv };
663 1.1 maxv
664 1.1 maxv struct vhci_ioc_set_port {
665 1.1 maxv u_int port;
666 1.1 maxv };
667 1.1 maxv
668 1.1 maxv struct vhci_ioc_usb_attach {
669 1.1 maxv u_int port;
670 1.1 maxv };
671 1.1 maxv
672 1.1 maxv struct vhci_ioc_usb_detach {
673 1.1 maxv u_int port;
674 1.1 maxv };
675 1.1 maxv
676 1.1 maxv #define VHCI_IOC_GET_INFO _IOR('V', 0, struct vhci_ioc_get_info)
677 1.1 maxv #define VHCI_IOC_SET_PORT _IOW('V', 1, struct vhci_ioc_set_port)
678 1.1 maxv #define VHCI_IOC_USB_ATTACH _IOW('V', 10, struct vhci_ioc_usb_attach)
679 1.1 maxv #define VHCI_IOC_USB_DETACH _IOW('V', 11, struct vhci_ioc_usb_detach)
680 1.1 maxv
681 1.1 maxv static int
682 1.1 maxv vhci_usb_attach(vhci_fd_t *vfd, struct vhci_ioc_usb_attach *args)
683 1.1 maxv {
684 1.1 maxv vhci_softc_t *sc = vfd->softc;
685 1.1 maxv vhci_port_t *port;
686 1.1 maxv struct usbd_xfer *xfer;
687 1.1 maxv u_char *p;
688 1.1 maxv int ret = 0;
689 1.1 maxv
690 1.1 maxv if (args->port == 0 || args->port >= sc->sc_nports)
691 1.1 maxv return EINVAL;
692 1.1 maxv port = &sc->sc_port[args->port];
693 1.1 maxv
694 1.1 maxv mutex_enter(&sc->sc_lock);
695 1.1 maxv
696 1.1 maxv port->status = UPS_CURRENT_CONNECT_STATUS | UPS_PORT_ENABLED |
697 1.1 maxv UPS_PORT_POWER;
698 1.1 maxv port->change = UPS_C_CONNECT_STATUS | UPS_C_PORT_RESET;
699 1.1 maxv
700 1.1 maxv xfer = sc->sc_intrxfer;
701 1.1 maxv
702 1.1 maxv if (xfer == NULL) {
703 1.1 maxv ret = ENOBUFS;
704 1.1 maxv goto done;
705 1.1 maxv }
706 1.1 maxv
707 1.1 maxv p = xfer->ux_buf;
708 1.1 maxv memset(p, 0, xfer->ux_length);
709 1.1 maxv p[0] = __BIT(args->port);
710 1.1 maxv xfer->ux_actlen = xfer->ux_length;
711 1.1 maxv xfer->ux_status = USBD_NORMAL_COMPLETION;
712 1.1 maxv
713 1.1 maxv usb_transfer_complete(xfer);
714 1.1 maxv
715 1.1 maxv done:
716 1.1 maxv mutex_exit(&sc->sc_lock);
717 1.1 maxv return ret;
718 1.1 maxv }
719 1.1 maxv
720 1.1 maxv static void
721 1.1 maxv vhci_port_flush(vhci_softc_t *sc, vhci_port_t *port)
722 1.1 maxv {
723 1.1 maxv vhci_packet_list_t *pktlist;
724 1.1 maxv vhci_packet_t *pkt, *nxt;
725 1.1 maxv vhci_xfer_list_t vxferlist;
726 1.1 maxv vhci_xfer_t *vxfer;
727 1.1 maxv
728 1.1 maxv KASSERT(mutex_owned(&sc->sc_lock));
729 1.1 maxv mutex_enter(&port->lock);
730 1.1 maxv
731 1.1 maxv LIST_INIT(&vxferlist);
732 1.1 maxv
733 1.1 maxv pktlist = &port->pkts_device_ctrl.host_to_usb;
734 1.1 maxv LIST_FOREACH_SAFE(pkt, pktlist, portlist, nxt) {
735 1.1 maxv vxfer = (vhci_xfer_t *)pkt->xfer;
736 1.1 maxv KASSERT(vxfer->xfer.ux_status == USBD_IN_PROGRESS);
737 1.1 maxv vhci_pkt_destroy(sc, pkt);
738 1.1 maxv if (vxfer->refcnt == 0)
739 1.1 maxv LIST_INSERT_HEAD(&vxferlist, vxfer, freelist);
740 1.1 maxv }
741 1.1 maxv KASSERT(LIST_FIRST(pktlist) == NULL);
742 1.1 maxv
743 1.1 maxv pktlist = &port->pkts_device_ctrl.usb_to_host;
744 1.1 maxv LIST_FOREACH_SAFE(pkt, pktlist, portlist, nxt) {
745 1.1 maxv vxfer = (vhci_xfer_t *)pkt->xfer;
746 1.1 maxv KASSERT(vxfer->xfer.ux_status == USBD_IN_PROGRESS);
747 1.1 maxv vhci_pkt_destroy(sc, pkt);
748 1.1 maxv if (vxfer->refcnt == 0)
749 1.1 maxv LIST_INSERT_HEAD(&vxferlist, vxfer, freelist);
750 1.1 maxv }
751 1.1 maxv KASSERT(LIST_FIRST(pktlist) == NULL);
752 1.1 maxv
753 1.1 maxv while ((vxfer = LIST_FIRST(&vxferlist)) != NULL) {
754 1.1 maxv struct usbd_xfer *xfer = &vxfer->xfer;
755 1.1 maxv LIST_REMOVE(vxfer, freelist);
756 1.1 maxv
757 1.1 maxv xfer->ux_actlen = xfer->ux_length;
758 1.1 maxv xfer->ux_status = USBD_NORMAL_COMPLETION;
759 1.1 maxv usb_transfer_complete(xfer);
760 1.1 maxv }
761 1.1 maxv
762 1.1 maxv mutex_exit(&port->lock);
763 1.1 maxv }
764 1.1 maxv
765 1.1 maxv static int
766 1.1 maxv vhci_usb_detach(vhci_fd_t *vfd, struct vhci_ioc_usb_detach *args)
767 1.1 maxv {
768 1.1 maxv vhci_softc_t *sc = vfd->softc;
769 1.1 maxv vhci_port_t *port;
770 1.1 maxv struct usbd_xfer *xfer;
771 1.1 maxv u_char *p;
772 1.1 maxv
773 1.1 maxv if (args->port == 0 || args->port >= sc->sc_nports)
774 1.1 maxv return EINVAL;
775 1.1 maxv port = &sc->sc_port[args->port];
776 1.1 maxv
777 1.1 maxv mutex_enter(&sc->sc_lock);
778 1.1 maxv
779 1.1 maxv xfer = sc->sc_intrxfer;
780 1.1 maxv if (xfer == NULL) {
781 1.1 maxv mutex_exit(&sc->sc_lock);
782 1.1 maxv return ENOBUFS;
783 1.1 maxv }
784 1.1 maxv
785 1.1 maxv port->status = 0;
786 1.1 maxv port->change = UPS_C_CONNECT_STATUS | UPS_C_PORT_RESET;
787 1.1 maxv
788 1.1 maxv p = xfer->ux_buf;
789 1.1 maxv memset(p, 0, xfer->ux_length);
790 1.1 maxv p[0] = __BIT(args->port);
791 1.1 maxv xfer->ux_actlen = xfer->ux_length;
792 1.1 maxv xfer->ux_status = USBD_NORMAL_COMPLETION;
793 1.1 maxv
794 1.1 maxv usb_transfer_complete(xfer);
795 1.1 maxv vhci_port_flush(sc, port);
796 1.1 maxv mutex_exit(&sc->sc_lock);
797 1.1 maxv
798 1.1 maxv return 0;
799 1.1 maxv }
800 1.1 maxv
801 1.1 maxv static int
802 1.1 maxv vhci_get_info(vhci_fd_t *vfd, struct vhci_ioc_get_info *args)
803 1.1 maxv {
804 1.1 maxv vhci_softc_t *sc = vfd->softc;
805 1.1 maxv vhci_port_t *port;
806 1.1 maxv
807 1.1 maxv port = &sc->sc_port[vfd->port];
808 1.1 maxv
809 1.1 maxv args->nports = VHCI_NPORTS;
810 1.1 maxv args->port = vfd->port;
811 1.1 maxv mutex_enter(&port->lock);
812 1.1 maxv args->status = port->status;
813 1.1 maxv mutex_exit(&port->lock);
814 1.1 maxv
815 1.1 maxv return 0;
816 1.1 maxv }
817 1.1 maxv
818 1.1 maxv static int
819 1.1 maxv vhci_set_port(vhci_fd_t *vfd, struct vhci_ioc_set_port *args)
820 1.1 maxv {
821 1.1 maxv vhci_softc_t *sc = vfd->softc;
822 1.1 maxv
823 1.1 maxv if (args->port == 0 || args->port >= sc->sc_nports)
824 1.1 maxv return EINVAL;
825 1.1 maxv
826 1.1 maxv vfd->port = args->port;
827 1.1 maxv
828 1.1 maxv return 0;
829 1.1 maxv }
830 1.1 maxv
831 1.1 maxv /* -------------------------------------------------------------------------- */
832 1.1 maxv
833 1.1 maxv static dev_type_open(vhci_fd_open);
834 1.1 maxv
835 1.1 maxv const struct cdevsw vhci_cdevsw = {
836 1.1 maxv .d_open = vhci_fd_open,
837 1.1 maxv .d_close = noclose,
838 1.1 maxv .d_read = noread,
839 1.1 maxv .d_write = nowrite,
840 1.1 maxv .d_ioctl = noioctl,
841 1.1 maxv .d_stop = nostop,
842 1.1 maxv .d_tty = notty,
843 1.1 maxv .d_poll = nopoll,
844 1.1 maxv .d_mmap = nommap,
845 1.1 maxv .d_kqfilter = nokqfilter,
846 1.1 maxv .d_discard = nodiscard,
847 1.1 maxv .d_flag = D_OTHER | D_MPSAFE
848 1.1 maxv };
849 1.1 maxv
850 1.1 maxv static int vhci_fd_ioctl(file_t *, u_long, void *);
851 1.1 maxv static int vhci_fd_close(file_t *);
852 1.1 maxv static int vhci_fd_read(struct file *, off_t *, struct uio *, kauth_cred_t, int);
853 1.1 maxv static int vhci_fd_write(struct file *, off_t *, struct uio *, kauth_cred_t, int);
854 1.1 maxv
855 1.1 maxv const struct fileops vhci_fileops = {
856 1.1 maxv .fo_read = vhci_fd_read,
857 1.1 maxv .fo_write = vhci_fd_write,
858 1.1 maxv .fo_ioctl = vhci_fd_ioctl,
859 1.1 maxv .fo_fcntl = fnullop_fcntl,
860 1.1 maxv .fo_poll = fnullop_poll,
861 1.1 maxv .fo_stat = fbadop_stat,
862 1.1 maxv .fo_close = vhci_fd_close,
863 1.1 maxv .fo_kqfilter = fnullop_kqfilter,
864 1.1 maxv .fo_restart = fnullop_restart,
865 1.1 maxv .fo_mmap = NULL,
866 1.1 maxv };
867 1.1 maxv
868 1.1 maxv static int
869 1.1 maxv vhci_fd_open(dev_t dev, int flags, int type, struct lwp *l)
870 1.1 maxv {
871 1.1 maxv vhci_fd_t *vfd;
872 1.1 maxv struct file *fp;
873 1.1 maxv int error, fd;
874 1.1 maxv
875 1.1 maxv if (minor(dev) != 0)
876 1.1 maxv return EXDEV;
877 1.1 maxv error = fd_allocfile(&fp, &fd);
878 1.1 maxv if (error)
879 1.1 maxv return error;
880 1.1 maxv
881 1.1 maxv vfd = kmem_alloc(sizeof(*vfd), KM_SLEEP);
882 1.1 maxv vfd->port = 1;
883 1.1 maxv vfd->softc = device_lookup_private(&vhci_cd, minor(dev));
884 1.1 maxv
885 1.1 maxv return fd_clone(fp, fd, flags, &vhci_fileops, vfd);
886 1.1 maxv }
887 1.1 maxv
888 1.1 maxv static int
889 1.1 maxv vhci_fd_close(file_t *fp)
890 1.1 maxv {
891 1.1 maxv struct vhci_ioc_usb_detach args;
892 1.1 maxv vhci_fd_t *vfd = fp->f_data;
893 1.1 maxv
894 1.1 maxv KASSERT(vfd != NULL);
895 1.1 maxv
896 1.1 maxv args.port = vfd->port;
897 1.1 maxv vhci_usb_detach(vfd, &args);
898 1.1 maxv
899 1.1 maxv kmem_free(vfd, sizeof(*vfd));
900 1.1 maxv fp->f_data = NULL;
901 1.1 maxv
902 1.1 maxv return 0;
903 1.1 maxv }
904 1.1 maxv
905 1.1 maxv static int
906 1.1 maxv vhci_fd_read(struct file *fp, off_t *offp, struct uio *uio, kauth_cred_t cred,
907 1.1 maxv int flags)
908 1.1 maxv {
909 1.1 maxv vhci_fd_t *vfd = fp->f_data;
910 1.1 maxv vhci_softc_t *sc = vfd->softc;
911 1.1 maxv vhci_packet_list_t *pktlist;
912 1.1 maxv vhci_packet_t *pkt, *nxt;
913 1.1 maxv vhci_xfer_list_t vxferlist;
914 1.1 maxv vhci_xfer_t *vxfer;
915 1.1 maxv vhci_port_t *port;
916 1.1 maxv int error = 0;
917 1.1 maxv uint8_t *buf;
918 1.1 maxv size_t size;
919 1.1 maxv
920 1.1 maxv if (uio->uio_resid == 0)
921 1.1 maxv return 0;
922 1.1 maxv port = &sc->sc_port[vfd->port];
923 1.1 maxv pktlist = &port->pkts_device_ctrl.host_to_usb;
924 1.1 maxv
925 1.1 maxv LIST_INIT(&vxferlist);
926 1.1 maxv
927 1.1 maxv mutex_enter(&port->lock);
928 1.1 maxv
929 1.1 maxv if (!(port->status & UPS_PORT_ENABLED)) {
930 1.1 maxv error = ENOBUFS;
931 1.1 maxv goto out;
932 1.1 maxv }
933 1.1 maxv
934 1.1 maxv LIST_FOREACH_SAFE(pkt, pktlist, portlist, nxt) {
935 1.1 maxv vxfer = (vhci_xfer_t *)pkt->xfer;
936 1.1 maxv buf = pkt->buf + pkt->cursor;
937 1.1 maxv size = uimin(uio->uio_resid, pkt->size - pkt->cursor);
938 1.1 maxv
939 1.1 maxv KASSERT(vxfer->xfer.ux_status == USBD_IN_PROGRESS);
940 1.1 maxv
941 1.1 maxv error = uiomove(buf, size, uio);
942 1.1 maxv if (error) {
943 1.1 maxv DPRINTF("%s: error = %d\n", __func__, error);
944 1.1 maxv goto out;
945 1.1 maxv }
946 1.1 maxv
947 1.1 maxv pkt->cursor += size;
948 1.1 maxv
949 1.1 maxv if (pkt->cursor == pkt->size) {
950 1.1 maxv vhci_pkt_destroy(sc, pkt);
951 1.1 maxv if (vxfer->refcnt == 0) {
952 1.1 maxv LIST_INSERT_HEAD(&vxferlist, vxfer, freelist);
953 1.1 maxv }
954 1.1 maxv }
955 1.1 maxv if (uio->uio_resid == 0) {
956 1.1 maxv break;
957 1.1 maxv }
958 1.1 maxv }
959 1.1 maxv
960 1.1 maxv out:
961 1.1 maxv mutex_exit(&port->lock);
962 1.1 maxv
963 1.1 maxv while ((vxfer = LIST_FIRST(&vxferlist)) != NULL) {
964 1.1 maxv struct usbd_xfer *xfer = &vxfer->xfer;
965 1.1 maxv LIST_REMOVE(vxfer, freelist);
966 1.1 maxv
967 1.1 maxv mutex_enter(&sc->sc_lock);
968 1.1 maxv xfer->ux_actlen = xfer->ux_length;
969 1.1 maxv xfer->ux_status = USBD_NORMAL_COMPLETION;
970 1.1 maxv usb_transfer_complete(xfer);
971 1.1 maxv mutex_exit(&sc->sc_lock);
972 1.1 maxv }
973 1.1 maxv
974 1.1 maxv return error;
975 1.1 maxv }
976 1.1 maxv
977 1.1 maxv static int
978 1.1 maxv vhci_fd_write(struct file *fp, off_t *offp, struct uio *uio, kauth_cred_t cred,
979 1.1 maxv int flags)
980 1.1 maxv {
981 1.1 maxv vhci_fd_t *vfd = fp->f_data;
982 1.1 maxv vhci_softc_t *sc = vfd->softc;
983 1.1 maxv vhci_packet_list_t *pktlist;
984 1.1 maxv vhci_packet_t *pkt, *nxt;
985 1.1 maxv vhci_xfer_list_t vxferlist;
986 1.1 maxv vhci_xfer_t *vxfer;
987 1.1 maxv vhci_port_t *port;
988 1.1 maxv int error = 0;
989 1.1 maxv uint8_t *buf;
990 1.1 maxv size_t size;
991 1.1 maxv
992 1.1 maxv if (uio->uio_resid == 0)
993 1.1 maxv return 0;
994 1.1 maxv port = &sc->sc_port[vfd->port];
995 1.1 maxv pktlist = &port->pkts_device_ctrl.usb_to_host;
996 1.1 maxv
997 1.1 maxv LIST_INIT(&vxferlist);
998 1.1 maxv
999 1.1 maxv mutex_enter(&port->lock);
1000 1.1 maxv
1001 1.1 maxv if (!(port->status & UPS_PORT_ENABLED)) {
1002 1.1 maxv error = ENOBUFS;
1003 1.1 maxv goto out;
1004 1.1 maxv }
1005 1.1 maxv
1006 1.1 maxv LIST_FOREACH_SAFE(pkt, pktlist, portlist, nxt) {
1007 1.1 maxv vxfer = (vhci_xfer_t *)pkt->xfer;
1008 1.1 maxv buf = pkt->buf + pkt->cursor;
1009 1.1 maxv size = uimin(uio->uio_resid, pkt->size - pkt->cursor);
1010 1.1 maxv
1011 1.1 maxv KASSERT(vxfer->xfer.ux_status == USBD_IN_PROGRESS);
1012 1.1 maxv
1013 1.1 maxv error = uiomove(buf, size, uio);
1014 1.1 maxv if (error) {
1015 1.1 maxv DPRINTF("%s: error = %d\n", __func__, error);
1016 1.1 maxv goto out;
1017 1.1 maxv }
1018 1.1 maxv
1019 1.1 maxv pkt->cursor += size;
1020 1.1 maxv
1021 1.1 maxv if (pkt->cursor == pkt->size) {
1022 1.1 maxv vhci_pkt_destroy(sc, pkt);
1023 1.1 maxv if (vxfer->refcnt == 0) {
1024 1.1 maxv LIST_INSERT_HEAD(&vxferlist, vxfer, freelist);
1025 1.1 maxv }
1026 1.1 maxv }
1027 1.1 maxv if (uio->uio_resid == 0) {
1028 1.1 maxv break;
1029 1.1 maxv }
1030 1.1 maxv }
1031 1.1 maxv
1032 1.1 maxv out:
1033 1.1 maxv mutex_exit(&port->lock);
1034 1.1 maxv
1035 1.1 maxv while ((vxfer = LIST_FIRST(&vxferlist)) != NULL) {
1036 1.1 maxv struct usbd_xfer *xfer = &vxfer->xfer;
1037 1.1 maxv LIST_REMOVE(vxfer, freelist);
1038 1.1 maxv
1039 1.1 maxv mutex_enter(&sc->sc_lock);
1040 1.1 maxv xfer->ux_actlen = xfer->ux_length;
1041 1.1 maxv xfer->ux_status = USBD_NORMAL_COMPLETION;
1042 1.1 maxv usb_transfer_complete(xfer);
1043 1.1 maxv mutex_exit(&sc->sc_lock);
1044 1.1 maxv }
1045 1.1 maxv
1046 1.1 maxv return error;
1047 1.1 maxv }
1048 1.1 maxv
1049 1.1 maxv static int
1050 1.1 maxv vhci_fd_ioctl(file_t *fp, u_long cmd, void *data)
1051 1.1 maxv {
1052 1.1 maxv vhci_fd_t *vfd = fp->f_data;
1053 1.1 maxv
1054 1.1 maxv KASSERT(vfd != NULL);
1055 1.1 maxv
1056 1.1 maxv switch (cmd) {
1057 1.1 maxv case VHCI_IOC_GET_INFO:
1058 1.1 maxv return vhci_get_info(vfd, data);
1059 1.1 maxv case VHCI_IOC_SET_PORT:
1060 1.1 maxv return vhci_set_port(vfd, data);
1061 1.1 maxv case VHCI_IOC_USB_ATTACH:
1062 1.1 maxv return vhci_usb_attach(vfd, data);
1063 1.1 maxv case VHCI_IOC_USB_DETACH:
1064 1.1 maxv return vhci_usb_detach(vfd, data);
1065 1.1 maxv default:
1066 1.1 maxv return EINVAL;
1067 1.1 maxv }
1068 1.1 maxv }
1069 1.1 maxv
1070 1.1 maxv /* -------------------------------------------------------------------------- */
1071 1.1 maxv
1072 1.1 maxv static int vhci_match(device_t, cfdata_t, void *);
1073 1.1 maxv static void vhci_attach(device_t, device_t, void *);
1074 1.1 maxv
1075 1.1 maxv CFATTACH_DECL_NEW(vhci, sizeof(vhci_softc_t), vhci_match, vhci_attach,
1076 1.1 maxv NULL, NULL);
1077 1.1 maxv
1078 1.1 maxv void
1079 1.1 maxv vhciattach(int nunits)
1080 1.1 maxv {
1081 1.1 maxv static struct cfdata vhci_cfdata = {
1082 1.1 maxv .cf_name = "vhci",
1083 1.1 maxv .cf_atname = "vhci",
1084 1.1 maxv .cf_unit = 0,
1085 1.1 maxv .cf_fstate = FSTATE_STAR,
1086 1.1 maxv };
1087 1.1 maxv int error;
1088 1.1 maxv
1089 1.1 maxv error = config_cfattach_attach(vhci_cd.cd_name, &vhci_ca);
1090 1.1 maxv if (error) {
1091 1.1 maxv aprint_error("%s: unable to register cfattach\n",
1092 1.1 maxv vhci_cd.cd_name);
1093 1.1 maxv (void)config_cfdriver_detach(&vhci_cd);
1094 1.1 maxv return;
1095 1.1 maxv }
1096 1.1 maxv
1097 1.1 maxv config_attach_pseudo(&vhci_cfdata);
1098 1.1 maxv }
1099 1.1 maxv
1100 1.1 maxv static int
1101 1.1 maxv vhci_match(device_t parent, cfdata_t match, void *aux)
1102 1.1 maxv {
1103 1.1 maxv return 1;
1104 1.1 maxv }
1105 1.1 maxv
1106 1.1 maxv static void
1107 1.1 maxv vhci_attach(device_t parent, device_t self, void *aux)
1108 1.1 maxv {
1109 1.1 maxv vhci_softc_t *sc = device_private(self);
1110 1.1 maxv vhci_port_t *port;
1111 1.1 maxv size_t i;
1112 1.1 maxv
1113 1.1 maxv sc->sc_dev = self;
1114 1.1 maxv sc->sc_bus.ub_revision = USBREV_2_0;
1115 1.1 maxv sc->sc_bus.ub_usedma = false;
1116 1.1 maxv sc->sc_bus.ub_methods = &vhci_bus_methods;
1117 1.1 maxv sc->sc_bus.ub_pipesize = sizeof(vhci_pipe_t);
1118 1.1 maxv sc->sc_bus.ub_hcpriv = sc;
1119 1.1 maxv sc->sc_dying = false;
1120 1.1 maxv mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_SOFTUSB);
1121 1.1 maxv
1122 1.1 maxv sc->sc_nports = VHCI_NPORTS;
1123 1.1 maxv for (i = 0; i < sc->sc_nports; i++) {
1124 1.1 maxv port = &sc->sc_port[i];
1125 1.1 maxv mutex_init(&port->lock, MUTEX_DEFAULT, IPL_SOFTUSB);
1126 1.1 maxv LIST_INIT(&port->pkts_device_ctrl.usb_to_host);
1127 1.1 maxv LIST_INIT(&port->pkts_device_ctrl.host_to_usb);
1128 1.1 maxv }
1129 1.1 maxv
1130 1.1 maxv sc->sc_child = config_found(self, &sc->sc_bus, usbctlprint);
1131 1.1 maxv }
1132