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