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