]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/usb/uhid.c
Add support for IODATA USB-RSAQ3 USB-Serial Adapter.
[FreeBSD/FreeBSD.git] / sys / dev / usb / uhid.c
1 /*      $NetBSD: uhid.c,v 1.46 2001/11/13 06:24:55 lukem Exp $  */
2
3 /* Also already merged from NetBSD:
4  *      $NetBSD: uhid.c,v 1.54 2002/09/23 05:51:21 simonb Exp $
5  */
6
7 #include <sys/cdefs.h>
8 __FBSDID("$FreeBSD$");
9
10 /*-
11  * Copyright (c) 1998 The NetBSD Foundation, Inc.
12  * All rights reserved.
13  *
14  * This code is derived from software contributed to The NetBSD Foundation
15  * by Lennart Augustsson (lennart@augustsson.net) at
16  * Carlstedt Research & Technology.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions
20  * are met:
21  * 1. Redistributions of source code must retain the above copyright
22  *    notice, this list of conditions and the following disclaimer.
23  * 2. Redistributions in binary form must reproduce the above copyright
24  *    notice, this list of conditions and the following disclaimer in the
25  *    documentation and/or other materials provided with the distribution.
26  * 3. All advertising materials mentioning features or use of this software
27  *    must display the following acknowledgement:
28  *        This product includes software developed by the NetBSD
29  *        Foundation, Inc. and its contributors.
30  * 4. Neither the name of The NetBSD Foundation nor the names of its
31  *    contributors may be used to endorse or promote products derived
32  *    from this software without specific prior written permission.
33  *
34  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
35  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
36  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
37  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
38  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
39  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
40  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
41  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
42  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
43  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
44  * POSSIBILITY OF SUCH DAMAGE.
45  */
46
47 /*
48  * HID spec: http://www.usb.org/developers/devclass_docs/HID1_11.pdf
49  */
50
51 #include <sys/param.h>
52 #include <sys/systm.h>
53 #include <sys/kernel.h>
54 #include <sys/lock.h>
55 #include <sys/malloc.h>
56 #if __FreeBSD_version >= 500000
57 #include <sys/mutex.h>
58 #endif
59 #include <sys/signalvar.h>
60 #include <sys/fcntl.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__)
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 __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/poll.h>
81 #include <sys/sysctl.h>
82 #include <sys/uio.h>
83
84 #include <dev/usb/usb.h>
85 #include <dev/usb/usbhid.h>
86
87 #include "usbdevs.h"
88 #include <dev/usb/usbdi.h>
89 #include <dev/usb/usbdi_util.h>
90 #include <dev/usb/hid.h>
91
92 /* Report descriptor for broken Wacom Graphire */
93 #include <dev/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__)
140         struct cdev *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__)
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
159 Static struct cdevsw uhid_cdevsw = {
160         .d_version =    D_VERSION,
161         .d_flags =      D_NEEDGIANT,
162         .d_open =       uhidopen,
163         .d_close =      uhidclose,
164         .d_read =       uhidread,
165         .d_write =      uhidwrite,
166         .d_ioctl =      uhidioctl,
167         .d_poll =       uhidpoll,
168         .d_name =       "uhid",
169 #if __FreeBSD_version < 500014
170         .d_bmaj         -1
171 #endif
172 };
173 #endif
174
175 Static void uhid_intr(usbd_xfer_handle, usbd_private_handle,
176                            usbd_status);
177
178 Static int uhid_do_read(struct uhid_softc *, struct uio *uio, int);
179 Static int uhid_do_write(struct uhid_softc *, struct uio *uio, int);
180 Static int uhid_do_ioctl(struct uhid_softc *, u_long, caddr_t, int,
181                               usb_proc_ptr);
182
183 USB_DECLARE_DRIVER(uhid);
184
185 USB_MATCH(uhid)
186 {
187         USB_MATCH_START(uhid, uaa);
188         usb_interface_descriptor_t *id;
189
190         if (uaa->iface == NULL)
191                 return (UMATCH_NONE);
192         id = usbd_get_interface_descriptor(uaa->iface);
193         if (id == NULL || id->bInterfaceClass != UICLASS_HID)
194                 return (UMATCH_NONE);
195 #if 0
196         if (uaa->matchlvl)
197                 return (uaa->matchlvl);
198 #endif
199
200         return (UMATCH_IFACECLASS_GENERIC);
201 }
202
203 USB_ATTACH(uhid)
204 {
205         USB_ATTACH_START(uhid, sc, uaa);
206         usbd_interface_handle iface = uaa->iface;
207         usb_interface_descriptor_t *id;
208         usb_endpoint_descriptor_t *ed;
209         int size;
210         void *desc;
211         usbd_status err;
212         char devinfo[1024];
213
214         sc->sc_udev = uaa->device;
215         sc->sc_iface = iface;
216         id = usbd_get_interface_descriptor(iface);
217         usbd_devinfo(uaa->device, USBD_SHOW_INTERFACE_CLASS, devinfo);
218         USB_ATTACH_SETUP;
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_NOWAIT);
252                 if (desc == NULL)
253                         err = USBD_NOMEM;
254                 else {
255                         err = USBD_NORMAL_COMPLETION;
256                         memcpy(desc, uhid_graphire_report_descr, size);
257                 }
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__)
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__)
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, PZERO);
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(struct cdev *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(struct cdev *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 & O_NONBLOCK) {
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, PZERO | 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(struct cdev *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(struct cdev *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 __FreeBSD_version >= 500000
619                         sc->sc_async = p->td_proc;
620 #else
621                         sc->sc_async = p;
622 #endif
623                         DPRINTF(("uhid_do_ioctl: FIOASYNC %p\n", sc->sc_async));
624                 } else
625                         sc->sc_async = NULL;
626                 break;
627
628         /* XXX this is not the most general solution. */
629         case TIOCSPGRP:
630                 if (sc->sc_async == NULL)
631                         return (EINVAL);
632                 if (*(int *)addr != sc->sc_async->p_pgid)
633                         return (EPERM);
634                 break;
635
636         case USB_GET_REPORT_DESC:
637                 rd = (struct usb_ctl_report_desc *)addr;
638                 size = min(sc->sc_repdesc_size, sizeof rd->ucrd_data);
639                 rd->ucrd_size = size;
640                 memcpy(rd->ucrd_data, sc->sc_repdesc, size);
641                 break;
642
643         case USB_SET_IMMED:
644                 if (*(int *)addr) {
645                         /* XXX should read into ibuf, but does it matter? */
646                         err = usbd_get_report(sc->sc_iface, UHID_INPUT_REPORT,
647                                   sc->sc_iid, sc->sc_ibuf, sc->sc_isize);
648                         if (err)
649                                 return (EOPNOTSUPP);
650
651                         sc->sc_state |=  UHID_IMMED;
652                 } else
653                         sc->sc_state &= ~UHID_IMMED;
654                 break;
655
656         case USB_GET_REPORT:
657                 re = (struct usb_ctl_report *)addr;
658                 switch (re->ucr_report) {
659                 case UHID_INPUT_REPORT:
660                         size = sc->sc_isize;
661                         id = sc->sc_iid;
662                         break;
663                 case UHID_OUTPUT_REPORT:
664                         size = sc->sc_osize;
665                         id = sc->sc_oid;
666                         break;
667                 case UHID_FEATURE_REPORT:
668                         size = sc->sc_fsize;
669                         id = sc->sc_fid;
670                         break;
671                 default:
672                         return (EINVAL);
673                 }
674                 err = usbd_get_report(sc->sc_iface, re->ucr_report, id, re->ucr_data,
675                           size);
676                 if (err)
677                         return (EIO);
678                 break;
679
680         case USB_SET_REPORT:
681                 re = (struct usb_ctl_report *)addr;
682                 switch (re->ucr_report) {
683                 case UHID_INPUT_REPORT:
684                         size = sc->sc_isize;
685                         id = sc->sc_iid;
686                         break;
687                 case UHID_OUTPUT_REPORT:
688                         size = sc->sc_osize;
689                         id = sc->sc_oid;
690                         break;
691                 case UHID_FEATURE_REPORT:
692                         size = sc->sc_fsize;
693                         id = sc->sc_fid;
694                         break;
695                 default:
696                         return (EINVAL);
697                 }
698                 err = usbd_set_report(sc->sc_iface, re->ucr_report, id, re->ucr_data,
699                           size);
700                 if (err)
701                         return (EIO);
702                 break;
703
704         case USB_GET_REPORT_ID:
705                 *(int *)addr = 0;       /* XXX: we only support reportid 0? */
706                 break;
707
708         default:
709                 return (EINVAL);
710         }
711         return (0);
712 }
713
714 int
715 uhidioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, usb_proc_ptr p)
716 {
717         struct uhid_softc *sc;
718         int error;
719
720         USB_GET_SC(uhid, UHIDUNIT(dev), sc);
721
722         sc->sc_refcnt++;
723         error = uhid_do_ioctl(sc, cmd, addr, flag, p);
724         if (--sc->sc_refcnt < 0)
725                 usb_detach_wakeup(USBDEV(sc->sc_dev));
726         return (error);
727 }
728
729 int
730 uhidpoll(struct cdev *dev, int events, usb_proc_ptr p)
731 {
732         struct uhid_softc *sc;
733         int revents = 0;
734         int s;
735
736         USB_GET_SC(uhid, UHIDUNIT(dev), sc);
737
738         if (sc->sc_dying)
739                 return (EIO);
740
741         s = splusb();
742         if (events & (POLLOUT | POLLWRNORM))
743                 revents |= events & (POLLOUT | POLLWRNORM);
744         if (events & (POLLIN | POLLRDNORM)) {
745                 if (sc->sc_q.c_cc > 0)
746                         revents |= events & (POLLIN | POLLRDNORM);
747                 else
748                         selrecord(p, &sc->sc_rsel);
749         }
750
751         splx(s);
752         return (revents);
753 }
754
755 #if defined(__FreeBSD__)
756 DRIVER_MODULE(uhid, uhub, uhid_driver, uhid_devclass, usbd_driver_load, 0);
757 #endif