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