Merge branch 'vendor/OPENSSL'
[dragonfly.git] / sys / dev / usbmisc / uhid / uhid.c
1 /*
2  * $NetBSD: uhid.c,v 1.46 2001/11/13 06:24:55 lukem Exp $
3  * $FreeBSD: src/sys/dev/usb/uhid.c,v 1.65 2003/11/09 09:17:22 tanimura Exp $
4  * $DragonFly: src/sys/dev/usbmisc/uhid/uhid.c,v 1.33 2008/08/14 20:55:53 hasso Exp $
5  */
6
7 /* Also already merged from NetBSD:
8  *      $NetBSD: uhid.c,v 1.54 2002/09/23 05:51:21 simonb Exp $
9  */
10
11 /*
12  * Copyright (c) 1998 The NetBSD Foundation, Inc.
13  * All rights reserved.
14  *
15  * This code is derived from software contributed to The NetBSD Foundation
16  * by Lennart Augustsson (lennart@augustsson.net) at
17  * Carlstedt Research & Technology.
18  *
19  * Redistribution and use in source and binary forms, with or without
20  * modification, are permitted provided that the following conditions
21  * are met:
22  * 1. Redistributions of source code must retain the above copyright
23  *    notice, this list of conditions and the following disclaimer.
24  * 2. Redistributions in binary form must reproduce the above copyright
25  *    notice, this list of conditions and the following disclaimer in the
26  *    documentation and/or other materials provided with the distribution.
27  * 3. All advertising materials mentioning features or use of this software
28  *    must display the following acknowledgement:
29  *        This product includes software developed by the NetBSD
30  *        Foundation, Inc. and its contributors.
31  * 4. Neither the name of The NetBSD Foundation nor the names of its
32  *    contributors may be used to endorse or promote products derived
33  *    from this software without specific prior written permission.
34  *
35  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
36  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
37  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
38  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
39  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
40  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
41  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
42  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
43  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
44  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
45  * POSSIBILITY OF SUCH DAMAGE.
46  */
47
48 /*
49  * HID spec: http://www.usb.org/developers/data/usbhid10.pdf
50  */
51
52 #include <sys/param.h>
53 #include <sys/systm.h>
54 #include <sys/kernel.h>
55 #include <sys/lock.h>
56 #include <sys/malloc.h>
57 #include <sys/signalvar.h>
58 #include <sys/ioccom.h>
59 #include <sys/filio.h>
60 #include <sys/module.h>
61 #include <sys/bus.h>
62 #include <sys/ioccom.h>
63 #include <sys/conf.h>
64 #include <sys/tty.h>
65 #include <sys/select.h>
66 #include <sys/proc.h>
67 #include <sys/vnode.h>
68 #include <sys/poll.h>
69 #include <sys/sysctl.h>
70 #include <sys/thread2.h>
71
72 #include <bus/usb/usb.h>
73 #include <bus/usb/usbhid.h>
74
75 #include <bus/usb/usbdi.h>
76 #include <bus/usb/usbdi_util.h>
77 #include <bus/usb/hid.h>
78
79 /* Report descriptor for broken Wacom Graphire */
80 #include <bus/usb/ugraphire_rdesc.h>
81
82 #ifdef USB_DEBUG
83 #define DPRINTF(x)      if (uhiddebug) kprintf x
84 #define DPRINTFN(n,x)   if (uhiddebug>(n)) kprintf x
85 int     uhiddebug = 0;
86 SYSCTL_NODE(_hw_usb, OID_AUTO, uhid, CTLFLAG_RW, 0, "USB uhid");
87 SYSCTL_INT(_hw_usb_uhid, OID_AUTO, debug, CTLFLAG_RW,
88            &uhiddebug, 0, "uhid debug level");
89 #else
90 #define DPRINTF(x)
91 #define DPRINTFN(n,x)
92 #endif
93
94 struct uhid_softc {
95         device_t sc_dev;                        /* base device */
96         usbd_device_handle sc_udev;
97         usbd_interface_handle sc_iface; /* interface */
98         usbd_pipe_handle sc_intrpipe;   /* interrupt pipe */
99         int sc_ep_addr;
100
101         int sc_isize;
102         int sc_osize;
103         int sc_fsize;
104         u_int8_t sc_iid;
105         u_int8_t sc_oid;
106         u_int8_t sc_fid;
107
108         u_char *sc_ibuf;
109         u_char *sc_obuf;
110
111         void *sc_repdesc;
112         int sc_repdesc_size;
113
114         struct clist sc_q;
115         struct selinfo sc_rsel;
116         struct proc *sc_async;  /* process that wants SIGIO */
117         u_char sc_state;        /* driver state */
118 #define UHID_OPEN       0x01    /* device is open */
119 #define UHID_ASLP       0x02    /* waiting for device data */
120 #define UHID_NEEDCLEAR  0x04    /* needs clearing endpoint stall */
121 #define UHID_IMMED      0x08    /* return read data immediately */
122
123         int sc_refcnt;
124         u_char sc_dying;
125 };
126
127 #define UHIDUNIT(dev)   (minor(dev))
128 #define UHID_CHUNK      128     /* chunk size for read */
129 #define UHID_BSIZE      1020    /* buffer size */
130
131 d_open_t        uhidopen;
132 d_close_t       uhidclose;
133 d_read_t        uhidread;
134 d_write_t       uhidwrite;
135 d_ioctl_t       uhidioctl;
136 d_poll_t        uhidpoll;
137
138 #define         UHID_CDEV_MAJOR 122
139
140 static struct dev_ops uhid_ops = {
141         { "uhid", UHID_CDEV_MAJOR, 0 },
142         .d_open =       uhidopen,
143         .d_close =      uhidclose,
144         .d_read =       uhidread,
145         .d_write =      uhidwrite,
146         .d_ioctl =      uhidioctl,
147         .d_poll =       uhidpoll,
148 };
149
150 static void uhid_intr(usbd_xfer_handle, usbd_private_handle,
151                            usbd_status);
152
153 static int uhid_do_read(struct uhid_softc *, struct uio *uio, int);
154 static int uhid_do_write(struct uhid_softc *, struct uio *uio, int);
155 static int uhid_do_ioctl(struct uhid_softc *, u_long, caddr_t, int);
156
157 static device_probe_t uhid_match;
158 static device_attach_t uhid_attach;
159 static device_detach_t uhid_detach;
160
161 static devclass_t uhid_devclass;
162
163 static kobj_method_t uhid_methods[] = {
164         DEVMETHOD(device_probe, uhid_match),
165         DEVMETHOD(device_attach, uhid_attach),
166         DEVMETHOD(device_detach, uhid_detach),
167         {0,0}
168 };
169
170 static driver_t uhid_driver = {
171         "uhid",
172         uhid_methods,
173         sizeof(struct uhid_softc)
174 };
175
176 MODULE_DEPEND(uhid, usb, 1, 1, 1);
177
178 static int
179 uhid_match(device_t self)
180 {
181         struct usb_attach_arg *uaa = device_get_ivars(self);
182         usb_interface_descriptor_t *id;
183
184         if (uaa->iface == NULL)
185                 return (UMATCH_NONE);
186         id = usbd_get_interface_descriptor(uaa->iface);
187         if (id == NULL || id->bInterfaceClass != UICLASS_HID)
188                 return (UMATCH_NONE);
189         if (uaa->matchlvl)
190                 return (uaa->matchlvl);
191         return (UMATCH_IFACECLASS_GENERIC);
192 }
193
194 static int
195 uhid_attach(device_t self)
196 {
197         struct uhid_softc *sc = device_get_softc(self);
198         struct usb_attach_arg *uaa = device_get_ivars(self);
199         usbd_interface_handle iface = uaa->iface;
200         usb_endpoint_descriptor_t *ed;
201         int size;
202         void *desc;
203         usbd_status err;
204
205         sc->sc_udev = uaa->device;
206         sc->sc_iface = iface;
207         sc->sc_dev = self;
208
209         ed = usbd_interface2endpoint_descriptor(iface, 0);
210         if (ed == NULL) {
211                 kprintf("%s: could not read endpoint descriptor\n",
212                        device_get_nameunit(sc->sc_dev));
213                 sc->sc_dying = 1;
214                 return ENXIO;
215         }
216
217         DPRINTFN(10,("uhid_attach: bLength=%d bDescriptorType=%d "
218                      "bEndpointAddress=%d-%s bmAttributes=%d wMaxPacketSize=%d"
219                      " bInterval=%d\n",
220                      ed->bLength, ed->bDescriptorType,
221                      ed->bEndpointAddress & UE_ADDR,
222                      UE_GET_DIR(ed->bEndpointAddress)==UE_DIR_IN? "in" : "out",
223                      ed->bmAttributes & UE_XFERTYPE,
224                      UGETW(ed->wMaxPacketSize), ed->bInterval));
225
226         if (UE_GET_DIR(ed->bEndpointAddress) != UE_DIR_IN ||
227             (ed->bmAttributes & UE_XFERTYPE) != UE_INTERRUPT) {
228                 kprintf("%s: unexpected endpoint\n", device_get_nameunit(sc->sc_dev));
229                 sc->sc_dying = 1;
230                 return ENXIO;
231         }
232
233         sc->sc_ep_addr = ed->bEndpointAddress;
234
235         /* The report descriptor for the Wacom Graphire is broken. */
236         if (uaa->vendor == 0x056a && uaa->product == 0x0010 /* &&
237             uaa->revision == 0x???? */) { /* XXX should use revision */
238                 size = sizeof uhid_graphire_report_descr;
239                 desc = kmalloc(size, M_USBDEV, M_INTWAIT);
240                 err = USBD_NORMAL_COMPLETION;
241                 memcpy(desc, uhid_graphire_report_descr, size);
242         } else {
243                 desc = NULL;
244                 err = usbd_read_report_desc(uaa->iface, &desc, &size,M_USBDEV);
245         }
246
247         if (err) {
248                 kprintf("%s: no report descriptor\n", device_get_nameunit(sc->sc_dev));
249                 sc->sc_dying = 1;
250                 return ENXIO;
251         }
252
253         (void)usbd_set_idle(iface, 0, 0);
254
255         sc->sc_isize = hid_report_size(desc, size, hid_input,   &sc->sc_iid);
256         sc->sc_osize = hid_report_size(desc, size, hid_output,  &sc->sc_oid);
257         sc->sc_fsize = hid_report_size(desc, size, hid_feature, &sc->sc_fid);
258
259         sc->sc_repdesc = desc;
260         sc->sc_repdesc_size = size;
261
262         dev_ops_add(&uhid_ops, -1, device_get_unit(self));
263         make_dev(&uhid_ops, device_get_unit(self),
264                 UID_ROOT, GID_OPERATOR,
265                 0644, "uhid%d", device_get_unit(self));
266
267         return 0;
268 }
269
270 static int
271 uhid_detach(device_t self)
272 {
273         struct uhid_softc *sc = device_get_softc(self);
274
275         DPRINTF(("uhid_detach: sc=%p\n", sc));
276
277         sc->sc_dying = 1;
278         if (sc->sc_intrpipe != NULL)
279                 usbd_abort_pipe(sc->sc_intrpipe);
280
281         if (sc->sc_state & UHID_OPEN) {
282                 crit_enter();
283                 if (--sc->sc_refcnt >= 0) {
284                         /* Wake everyone */
285                         wakeup(&sc->sc_q);
286                         /* Wait for processes to go away. */
287                         usb_detach_wait(sc->sc_dev);
288                 }
289                 crit_exit();
290         }
291
292         dev_ops_remove(&uhid_ops, -1, device_get_unit(self));
293
294         if (sc->sc_repdesc)
295                 kfree(sc->sc_repdesc, M_USBDEV);
296
297         return (0);
298 }
299
300 void
301 uhid_intr(usbd_xfer_handle xfer, usbd_private_handle addr, usbd_status status)
302 {
303         struct uhid_softc *sc = addr;
304
305 #ifdef USB_DEBUG
306         if (uhiddebug > 5) {
307                 u_int32_t cc, i;
308
309                 usbd_get_xfer_status(xfer, NULL, NULL, &cc, NULL);
310                 DPRINTF(("uhid_intr: status=%d cc=%d\n", status, cc));
311                 DPRINTF(("uhid_intr: data ="));
312                 for (i = 0; i < cc; i++)
313                         DPRINTF((" %02x", sc->sc_ibuf[i]));
314                 DPRINTF(("\n"));
315         }
316 #endif
317
318         if (status == USBD_CANCELLED)
319                 return;
320
321         if (status != USBD_NORMAL_COMPLETION) {
322                 DPRINTF(("uhid_intr: status=%d\n", status));
323                 if (status == USBD_STALLED)
324                     sc->sc_state |= UHID_NEEDCLEAR;
325                 return;
326         }
327
328         (void) b_to_q(sc->sc_ibuf, sc->sc_isize, &sc->sc_q);
329
330         if (sc->sc_state & UHID_ASLP) {
331                 sc->sc_state &= ~UHID_ASLP;
332                 DPRINTFN(5, ("uhid_intr: waking %p\n", &sc->sc_q));
333                 wakeup(&sc->sc_q);
334         }
335         selwakeup(&sc->sc_rsel);
336         if (sc->sc_async != NULL) {
337                 DPRINTFN(3, ("uhid_intr: sending SIGIO %p\n", sc->sc_async));
338                 ksignal(sc->sc_async, SIGIO);
339         }
340 }
341
342 int
343 uhidopen(struct dev_open_args *ap)
344 {
345         cdev_t dev = ap->a_head.a_dev;
346         struct uhid_softc *sc;
347         usbd_status err;
348
349         sc = devclass_get_softc(uhid_devclass, UHIDUNIT(dev));
350         if (sc == NULL)
351                 return (ENXIO);
352
353         DPRINTF(("uhidopen: sc=%p\n", sc));
354
355         if (sc->sc_dying)
356                 return (ENXIO);
357
358         if (sc->sc_state & UHID_OPEN)
359                 return (EBUSY);
360         sc->sc_state |= UHID_OPEN;
361
362         if ((clist_alloc_cblocks(&sc->sc_q, UHID_BSIZE,
363                                  UHID_BSIZE), 0) == -1) {
364                 sc->sc_state &= ~UHID_OPEN;
365                 return (ENOMEM);
366         }
367
368         sc->sc_ibuf = kmalloc(sc->sc_isize, M_USBDEV, M_WAITOK);
369         sc->sc_obuf = kmalloc(sc->sc_osize, M_USBDEV, M_WAITOK);
370
371         /* Set up interrupt pipe. */
372         err = usbd_open_pipe_intr(sc->sc_iface, sc->sc_ep_addr,
373                   USBD_SHORT_XFER_OK, &sc->sc_intrpipe, sc, sc->sc_ibuf,
374                   sc->sc_isize, uhid_intr, USBD_DEFAULT_INTERVAL);
375         if (err) {
376                 DPRINTF(("uhidopen: usbd_open_pipe_intr failed, "
377                          "error=%d\n",err));
378                 kfree(sc->sc_ibuf, M_USBDEV);
379                 kfree(sc->sc_obuf, M_USBDEV);
380                 sc->sc_ibuf = sc->sc_obuf = NULL;
381
382                 sc->sc_state &= ~UHID_OPEN;
383                 return (EIO);
384         }
385
386         sc->sc_state &= ~UHID_IMMED;
387
388         sc->sc_async = 0;
389
390         return (0);
391 }
392
393 int
394 uhidclose(struct dev_close_args *ap)
395 {
396         cdev_t dev = ap->a_head.a_dev;
397         struct uhid_softc *sc;
398
399         sc = devclass_get_softc(uhid_devclass, UHIDUNIT(dev));
400
401         DPRINTF(("uhidclose: sc=%p\n", sc));
402
403         /* Disable interrupts. */
404         usbd_abort_pipe(sc->sc_intrpipe);
405         usbd_close_pipe(sc->sc_intrpipe);
406         sc->sc_intrpipe = 0;
407
408         ndflush(&sc->sc_q, sc->sc_q.c_cc);
409         clist_free_cblocks(&sc->sc_q);
410
411         kfree(sc->sc_ibuf, M_USBDEV);
412         kfree(sc->sc_obuf, M_USBDEV);
413         sc->sc_ibuf = sc->sc_obuf = NULL;
414
415         sc->sc_state &= ~UHID_OPEN;
416
417         sc->sc_async = 0;
418
419         return (0);
420 }
421
422 int
423 uhid_do_read(struct uhid_softc *sc, struct uio *uio, int flag)
424 {
425         int error = 0;
426         size_t length;
427         u_char buffer[UHID_CHUNK];
428         usbd_status err;
429
430         DPRINTFN(1, ("uhidread\n"));
431         if (sc->sc_state & UHID_IMMED) {
432                 DPRINTFN(1, ("uhidread immed\n"));
433
434                 err = usbd_get_report(sc->sc_iface, UHID_INPUT_REPORT,
435                           sc->sc_iid, buffer, sc->sc_isize);
436                 if (err)
437                         return (EIO);
438                 return (uiomove(buffer, sc->sc_isize, uio));
439         }
440
441         crit_enter();
442         while (sc->sc_q.c_cc == 0) {
443                 if (flag & IO_NDELAY) {
444                         crit_exit();
445                         return (EWOULDBLOCK);
446                 }
447                 sc->sc_state |= UHID_ASLP;
448                 DPRINTFN(5, ("uhidread: sleep on %p\n", &sc->sc_q));
449                 error = tsleep(&sc->sc_q, PCATCH, "uhidrea", 0);
450                 DPRINTFN(5, ("uhidread: woke, error=%d\n", error));
451                 if (sc->sc_dying)
452                         error = EIO;
453                 if (error) {
454                         sc->sc_state &= ~UHID_ASLP;
455                         break;
456                 }
457                 if (sc->sc_state & UHID_NEEDCLEAR) {
458                         DPRINTFN(-1,("uhidread: clearing stall\n"));
459                         sc->sc_state &= ~UHID_NEEDCLEAR;
460                         usbd_clear_endpoint_stall(sc->sc_intrpipe);
461                 }
462         }
463         crit_exit();
464
465         /* Transfer as many chunks as possible. */
466         while (sc->sc_q.c_cc > 0 && uio->uio_resid > 0 && !error) {
467                 length = min(sc->sc_q.c_cc, uio->uio_resid);
468                 if (length > sizeof(buffer))
469                         length = sizeof(buffer);
470
471                 /* Remove a small chunk from the input queue. */
472                 (void) q_to_b(&sc->sc_q, buffer, length);
473                 DPRINTFN(5, ("uhidread: got %lu chars\n", (u_long)length));
474
475                 /* Copy the data to the user process. */
476                 if ((error = uiomove(buffer, length, uio)) != 0)
477                         break;
478         }
479
480         return (error);
481 }
482
483 int
484 uhidread(struct dev_read_args *ap)
485 {
486         cdev_t dev = ap->a_head.a_dev;
487         struct uhid_softc *sc;
488         int error;
489
490         sc = devclass_get_softc(uhid_devclass, UHIDUNIT(dev));
491
492         sc->sc_refcnt++;
493         error = uhid_do_read(sc, ap->a_uio, ap->a_ioflag);
494         if (--sc->sc_refcnt < 0)
495                 usb_detach_wakeup(sc->sc_dev);
496         return (error);
497 }
498
499 int
500 uhid_do_write(struct uhid_softc *sc, struct uio *uio, int flag)
501 {
502         int error;
503         int size;
504         usbd_status err;
505
506         DPRINTFN(1, ("uhidwrite\n"));
507
508         if (sc->sc_dying)
509                 return (EIO);
510
511         size = sc->sc_osize;
512         if (uio->uio_resid != size)
513                 return (EINVAL);
514         error = uiomove(sc->sc_obuf, size, uio);
515         if (!error) {
516                 if (sc->sc_oid)
517                         err = usbd_set_report(sc->sc_iface, UHID_OUTPUT_REPORT,
518                                   sc->sc_obuf[0], sc->sc_obuf+1, size-1);
519                 else
520                         err = usbd_set_report(sc->sc_iface, UHID_OUTPUT_REPORT,
521                                   0, sc->sc_obuf, size);
522                 if (err)
523                         error = EIO;
524         }
525
526         return (error);
527 }
528
529 int
530 uhidwrite(struct dev_write_args *ap)
531 {
532         cdev_t dev = ap->a_head.a_dev;
533         struct uhid_softc *sc;
534         int error;
535
536         sc = devclass_get_softc(uhid_devclass, UHIDUNIT(dev));
537
538         sc->sc_refcnt++;
539         error = uhid_do_write(sc, ap->a_uio, ap->a_ioflag);
540         if (--sc->sc_refcnt < 0)
541                 usb_detach_wakeup(sc->sc_dev);
542         return (error);
543 }
544
545 int
546 uhid_do_ioctl(struct uhid_softc *sc, u_long cmd, caddr_t addr, int flag)
547 {
548         struct usb_ctl_report_desc *rd;
549         struct usb_ctl_report *re;
550         int size, id;
551         usbd_status err;
552
553         DPRINTFN(2, ("uhidioctl: cmd=%lx\n", cmd));
554
555         if (sc->sc_dying)
556                 return (EIO);
557
558         switch (cmd) {
559         case FIOASYNC:
560                 if (*(int *)addr) {
561                         if (sc->sc_async != NULL)
562                                 return (EBUSY);
563                         sc->sc_async = curproc;
564                         DPRINTF(("uhid_do_ioctl: FIOASYNC %p\n", sc->sc_async));
565                 } else
566                         sc->sc_async = NULL;
567                 break;
568
569         /* XXX this is not the most general solution. */
570         case TIOCSPGRP:
571                 if (sc->sc_async == NULL)
572                         return (EINVAL);
573                 if (*(int *)addr != sc->sc_async->p_pgid)
574                         return (EPERM);
575                 break;
576
577         case USB_GET_REPORT_DESC:
578                 rd = (struct usb_ctl_report_desc *)addr;
579                 size = min(sc->sc_repdesc_size, sizeof rd->ucrd_data);
580                 rd->ucrd_size = size;
581                 memcpy(rd->ucrd_data, sc->sc_repdesc, size);
582                 break;
583
584         case USB_SET_IMMED:
585                 if (*(int *)addr) {
586                         /* XXX should read into ibuf, but does it matter? */
587                         err = usbd_get_report(sc->sc_iface, UHID_INPUT_REPORT,
588                                   sc->sc_iid, sc->sc_ibuf, sc->sc_isize);
589                         if (err)
590                                 return (EOPNOTSUPP);
591
592                         sc->sc_state |=  UHID_IMMED;
593                 } else
594                         sc->sc_state &= ~UHID_IMMED;
595                 break;
596
597         case USB_GET_REPORT:
598                 re = (struct usb_ctl_report *)addr;
599                 switch (re->ucr_report) {
600                 case UHID_INPUT_REPORT:
601                         size = sc->sc_isize;
602                         id = sc->sc_iid;
603                         break;
604                 case UHID_OUTPUT_REPORT:
605                         size = sc->sc_osize;
606                         id = sc->sc_oid;
607                         break;
608                 case UHID_FEATURE_REPORT:
609                         size = sc->sc_fsize;
610                         id = sc->sc_fid;
611                         break;
612                 default:
613                         return (EINVAL);
614                 }
615                 err = usbd_get_report(sc->sc_iface, re->ucr_report, id, re->ucr_data,
616                           size);
617                 if (err)
618                         return (EIO);
619                 break;
620
621         case USB_SET_REPORT:
622                 re = (struct usb_ctl_report *)addr;
623                 switch (re->ucr_report) {
624                 case UHID_INPUT_REPORT:
625                         size = sc->sc_isize;
626                         id = sc->sc_iid;
627                         break;
628                 case UHID_OUTPUT_REPORT:
629                         size = sc->sc_osize;
630                         id = sc->sc_oid;
631                         break;
632                 case UHID_FEATURE_REPORT:
633                         size = sc->sc_fsize;
634                         id = sc->sc_fid;
635                         break;
636                 default:
637                         return (EINVAL);
638                 }
639                 err = usbd_set_report(sc->sc_iface, re->ucr_report, id, re->ucr_data,
640                           size);
641                 if (err)
642                         return (EIO);
643                 break;
644
645         case USB_GET_REPORT_ID:
646                 *(int *)addr = 0;       /* XXX: we only support reportid 0? */
647                 break;
648
649         default:
650                 return (EINVAL);
651         }
652         return (0);
653 }
654
655 int
656 uhidioctl(struct dev_ioctl_args *ap)
657 {
658         cdev_t dev = ap->a_head.a_dev;
659         struct uhid_softc *sc;
660         int error;
661
662         sc = devclass_get_softc(uhid_devclass, UHIDUNIT(dev));
663
664         sc->sc_refcnt++;
665         error = uhid_do_ioctl(sc, ap->a_cmd, ap->a_data, ap->a_fflag);
666         if (--sc->sc_refcnt < 0)
667                 usb_detach_wakeup(sc->sc_dev);
668         return (error);
669 }
670
671 int
672 uhidpoll(struct dev_poll_args *ap)
673 {
674         cdev_t dev = ap->a_head.a_dev;
675         struct uhid_softc *sc;
676         int revents = 0;
677
678         sc = devclass_get_softc(uhid_devclass, UHIDUNIT(dev));
679
680         if (sc->sc_dying)
681                 return (EIO);
682
683         crit_enter();
684         if (ap->a_events & (POLLOUT | POLLWRNORM))
685                 revents |= ap->a_events & (POLLOUT | POLLWRNORM);
686         if (ap->a_events & (POLLIN | POLLRDNORM)) {
687                 if (sc->sc_q.c_cc > 0)
688                         revents |= ap->a_events & (POLLIN | POLLRDNORM);
689                 else
690                         selrecord(curthread, &sc->sc_rsel);
691         }
692         crit_exit();
693         ap->a_events = revents;
694         return (0);
695 }
696
697 DRIVER_MODULE(uhid, uhub, uhid_driver, uhid_devclass, usbd_driver_load, 0);
698