#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
#include <sys/device.h>
#include <machine/bus.h>
#include <dev/usb/usb.h>
#include <dev/usb/usbhid.h>
#include <dev/usb/usbdevs.h>
#include <dev/usb/usbdi.h>
#include <dev/usb/usbdi_util.h>
#include <dev/usb/usbdivar.h>
#include <dev/usb/usb_mem.h>
#include <dev/usb/usb_quirks.h>
#include <dev/usb/uhidev.h>
#ifndef SMALL_KERNEL
#include <dev/usb/uhid_rdesc.h>
int uhidev_use_rdesc(struct uhidev_softc *, usb_interface_descriptor_t *,
int, int, void **, int *);
#define UISUBCLASS_XBOX360_CONTROLLER 0x5d
#define UIPROTO_XBOX360_GAMEPAD 0x01
#define UISUBCLASS_XBOXONE_CONTROLLER 0x47
#define UIPROTO_XBOXONE_GAMEPAD 0xd0
#endif
#define DEVNAME(sc) ((sc)->sc_dev.dv_xname)
#ifdef UHIDEV_DEBUG
#define DPRINTF(x) do { if (uhidevdebug) printf x; } while (0)
#define DPRINTFN(n,x) do { if (uhidevdebug>(n)) printf x; } while (0)
int uhidevdebug = 0;
#else
#define DPRINTF(x)
#define DPRINTFN(n,x)
#endif
struct uhidev_async_info {
void (*callback)(void *priv, int id, void *data, int len);
void *priv;
void *data;
int id;
};
void uhidev_intr(struct usbd_xfer *, void *, usbd_status);
int uhidev_maxrepid(void *buf, int len);
int uhidevprint(void *aux, const char *pnp);
int uhidev_match(struct device *, void *, void *);
void uhidev_attach(struct device *, struct device *, void *);
int uhidev_detach(struct device *, int);
int uhidev_activate(struct device *, int);
void uhidev_get_report_async_cb(struct usbd_xfer *, void *, usbd_status);
void uhidev_set_report_async_cb(struct usbd_xfer *, void *, usbd_status);
struct cfdriver uhidev_cd = {
NULL, "uhidev", DV_DULL
};
const struct cfattach uhidev_ca = {
sizeof(struct uhidev_softc), uhidev_match, uhidev_attach,
uhidev_detach, uhidev_activate,
};
int
uhidev_match(struct device *parent, void *match, void *aux)
{
struct usb_attach_arg *uaa = aux;
usb_interface_descriptor_t *id;
if (uaa->iface == NULL)
return (UMATCH_NONE);
id = usbd_get_interface_descriptor(uaa->iface);
if (id == NULL)
return (UMATCH_NONE);
#ifndef SMALL_KERNEL
if (id->bInterfaceClass == UICLASS_VENDOR &&
id->bInterfaceSubClass == UISUBCLASS_XBOX360_CONTROLLER &&
id->bInterfaceProtocol == UIPROTO_XBOX360_GAMEPAD)
return (UMATCH_IFACECLASS_IFACESUBCLASS_IFACEPROTO);
if (id->bInterfaceClass == UICLASS_VENDOR &&
id->bInterfaceSubClass == UISUBCLASS_XBOXONE_CONTROLLER &&
id->bInterfaceProtocol == UIPROTO_XBOXONE_GAMEPAD) {
return (UMATCH_IFACECLASS_IFACESUBCLASS_IFACEPROTO);
}
#endif
if (id->bInterfaceClass != UICLASS_HID)
return (UMATCH_NONE);
if (usbd_get_quirks(uaa->device)->uq_flags & UQ_BAD_HID)
return (UMATCH_NONE);
return (UMATCH_IFACECLASS_GENERIC);
}
int
uhidev_attach_repid(struct uhidev_softc *sc, struct uhidev_attach_arg *uha,
int repid)
{
struct device *dev;
if (sc->sc_subdevs[repid] != NULL)
return 0;
uha->reportid = repid;
dev = config_found_sm(&sc->sc_dev, uha, uhidevprint, NULL);
sc->sc_subdevs[repid] = (struct uhidev *)dev;
return 1;
}
void
uhidev_attach(struct device *parent, struct device *self, void *aux)
{
struct uhidev_softc *sc = (struct uhidev_softc *)self;
struct usb_attach_arg *uaa = aux;
usb_interface_descriptor_t *id;
usb_endpoint_descriptor_t *ed;
struct uhidev_attach_arg uha;
int nrepid, repid, repsz;
int i;
void *desc = NULL;
int size = 0;
struct device *dev;
sc->sc_udev = uaa->device;
sc->sc_iface = uaa->iface;
sc->sc_ifaceno = uaa->ifaceno;
id = usbd_get_interface_descriptor(sc->sc_iface);
sc->sc_iep_addr = sc->sc_oep_addr = -1;
for (i = 0; i < id->bNumEndpoints; i++) {
ed = usbd_interface2endpoint_descriptor(sc->sc_iface, i);
if (ed == NULL) {
printf("%s: could not read endpoint descriptor\n",
DEVNAME(sc));
return;
}
DPRINTFN(10,("uhidev_attach: bLength=%d bDescriptorType=%d "
"bEndpointAddress=%d-%s bmAttributes=%d wMaxPacketSize=%d"
" bInterval=%d\n",
ed->bLength, ed->bDescriptorType,
ed->bEndpointAddress & UE_ADDR,
UE_GET_DIR(ed->bEndpointAddress)==UE_DIR_IN? "in" : "out",
UE_GET_XFERTYPE(ed->bmAttributes),
UGETW(ed->wMaxPacketSize), ed->bInterval));
if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) {
sc->sc_iep_addr = ed->bEndpointAddress;
} else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) {
sc->sc_oep_addr = ed->bEndpointAddress;
} else {
printf("%s: unexpected endpoint\n", DEVNAME(sc));
return;
}
}
#ifndef SMALL_KERNEL
if (uhidev_use_rdesc(sc, id, uaa->vendor, uaa->product, &desc, &size))
return;
#endif
if (desc == NULL) {
struct usb_hid_descriptor *hid;
hid = usbd_get_hid_descriptor(sc->sc_udev, id);
if (hid == NULL) {
printf("%s: no HID descriptor\n", DEVNAME(sc));
return;
}
size = UGETW(hid->descrs[0].wDescriptorLength);
desc = malloc(size, M_USBDEV, M_NOWAIT);
if (desc == NULL) {
printf("%s: no memory\n", DEVNAME(sc));
return;
}
if (usbd_get_report_descriptor(sc->sc_udev, sc->sc_ifaceno,
desc, size)) {
printf("%s: no report descriptor\n", DEVNAME(sc));
free(desc, M_USBDEV, size);
return;
}
}
sc->sc_repdesc = desc;
sc->sc_repdesc_size = size;
nrepid = uhidev_maxrepid(desc, size);
if (nrepid < 0)
return;
printf("%s: iclass %d/%d", DEVNAME(sc), id->bInterfaceClass,
id->bInterfaceSubClass);
if (nrepid > 0)
printf(", %d report id%s", nrepid, nrepid > 1 ? "s" : "");
printf("\n");
nrepid++;
sc->sc_subdevs = mallocarray(nrepid, sizeof(struct uhidev *),
M_USBDEV, M_NOWAIT | M_ZERO);
if (sc->sc_subdevs == NULL) {
printf("%s: no memory\n", DEVNAME(sc));
return;
}
sc->sc_nrepid = nrepid;
sc->sc_isize = 0;
for (repid = 0; repid < nrepid; repid++) {
repsz = hid_report_size(desc, size, hid_input, repid);
DPRINTF(("uhidev_match: repid=%d, repsz=%d\n", repid, repsz));
if (repsz > sc->sc_isize)
sc->sc_isize = repsz;
}
sc->sc_isize += (nrepid != 1);
DPRINTF(("uhidev_attach: isize=%d\n", sc->sc_isize));
uha.uaa = uaa;
uha.parent = sc;
uha.reportid = 0;
uha.nreports = nrepid;
uha.claimed = malloc(nrepid, M_TEMP, M_WAITOK|M_ZERO);
dev = config_found_sm(self, &uha, NULL, NULL);
if (dev != NULL) {
int nclaimed = 0;
for (repid = 0; repid < nrepid; repid++) {
if (!uha.claimed[repid])
continue;
nclaimed++;
if (sc->sc_subdevs[repid] == NULL)
sc->sc_subdevs[repid] = (struct uhidev *)dev;
}
KASSERTMSG(nclaimed > 0, "%s did not claim any report ids",
dev->dv_xname);
}
free(uha.claimed, M_TEMP, nrepid);
uha.claimed = NULL;
if (uha.uaa->vendor == USB_VENDOR_WACOM) {
int ndigitizers = 0;
repid = hid_get_id_of_collection(desc, size,
HID_USAGE2(HUP_WACOM | HUP_DIGITIZERS, HUD_STYLUS),
HCOLL_PHYSICAL);
if (repid >= 0 && repid < nrepid)
ndigitizers += uhidev_attach_repid(sc, &uha, repid);
repid = hid_get_id_of_collection(desc, size,
HID_USAGE2(HUP_WACOM | HUP_DIGITIZERS, HUD_TABLET_FKEYS),
HCOLL_PHYSICAL);
if (repid >= 0 && repid < nrepid)
ndigitizers += uhidev_attach_repid(sc, &uha, repid);
#ifdef notyet
repid = hid_get_id_of_collection(desc, size,
HID_USAGE2(HUP_WACOM | HUP_DIGITIZERS, HUD_WACOM_BATTERY),
HCOLL_PHYSICAL);
if (repid >= 0 && repid < nrepid)
ndigitizers += uhidev_attach_repid(sc, &uha, repid);
#endif
if (ndigitizers != 0)
return;
}
for (repid = 0; repid < nrepid; repid++) {
DPRINTF(("%s: try repid=%d\n", __func__, repid));
if (hid_report_size(desc, size, hid_input, repid) == 0 &&
hid_report_size(desc, size, hid_output, repid) == 0 &&
hid_report_size(desc, size, hid_feature, repid) == 0)
continue;
uhidev_attach_repid(sc, &uha, repid);
}
}
#ifndef SMALL_KERNEL
int
uhidev_use_rdesc(struct uhidev_softc *sc, usb_interface_descriptor_t *id,
int vendor, int product, void **descp, int *sizep)
{
static uByte reportbuf[] = {2, 2};
const void *descptr = NULL;
void *desc;
int size;
if (vendor == USB_VENDOR_WACOM) {
switch (product) {
case USB_PRODUCT_WACOM_GRAPHIRE:
size = sizeof(uhid_graphire_report_descr);
descptr = uhid_graphire_report_descr;
break;
case USB_PRODUCT_WACOM_GRAPHIRE3_4X5:
case USB_PRODUCT_WACOM_GRAPHIRE4_4X5:
uhidev_set_report(sc, UHID_FEATURE_REPORT,
2, &reportbuf, sizeof(reportbuf));
size = sizeof(uhid_graphire3_4x5_report_descr);
descptr = uhid_graphire3_4x5_report_descr;
break;
default:
break;
}
} else if ((id->bInterfaceClass == UICLASS_VENDOR &&
id->bInterfaceSubClass == UISUBCLASS_XBOX360_CONTROLLER &&
id->bInterfaceProtocol == UIPROTO_XBOX360_GAMEPAD)) {
size = sizeof(uhid_xb360gp_report_descr);
descptr = uhid_xb360gp_report_descr;
} else if ((id->bInterfaceClass == UICLASS_VENDOR &&
id->bInterfaceSubClass == UISUBCLASS_XBOXONE_CONTROLLER &&
id->bInterfaceProtocol == UIPROTO_XBOXONE_GAMEPAD)) {
sc->sc_flags |= UHIDEV_F_XB1;
size = sizeof(uhid_xbonegp_report_descr);
descptr = uhid_xbonegp_report_descr;
}
if (descptr) {
desc = malloc(size, M_USBDEV, M_NOWAIT);
if (desc == NULL)
return (ENOMEM);
memcpy(desc, descptr, size);
*descp = desc;
*sizep = size;
}
return (0);
}
#endif
int
uhidev_maxrepid(void *buf, int len)
{
struct hid_data *d;
struct hid_item h;
int maxid;
maxid = -1;
h.report_ID = 0;
for (d = hid_start_parse(buf, len, hid_all); hid_get_item(d, &h);)
if ((int)h.report_ID > maxid)
maxid = h.report_ID;
hid_end_parse(d);
return (maxid);
}
int
uhidevprint(void *aux, const char *pnp)
{
struct uhidev_attach_arg *uha = aux;
if (pnp)
printf("uhid at %s", pnp);
if (uha->reportid != 0)
printf(" reportid %d", uha->reportid);
return (UNCONF);
}
int
uhidev_activate(struct device *self, int act)
{
struct uhidev_softc *sc = (struct uhidev_softc *)self;
int i, j, already, rv = 0, r;
switch (act) {
case DVACT_DEACTIVATE:
for (i = 0; i < sc->sc_nrepid; i++) {
if (sc->sc_subdevs[i] == NULL)
continue;
for (already = 0, j = 0; j < i; j++) {
if (sc->sc_subdevs[i] == sc->sc_subdevs[j]) {
already = 1;
break;
}
}
if (!already) {
r = config_deactivate(
&sc->sc_subdevs[i]->sc_dev);
if (r && r != EOPNOTSUPP)
rv = r;
}
}
usbd_deactivate(sc->sc_udev);
break;
}
return (rv);
}
int
uhidev_detach(struct device *self, int flags)
{
struct uhidev_softc *sc = (struct uhidev_softc *)self;
int i, j, rv = 0;
DPRINTF(("uhidev_detach: sc=%p flags=%d\n", sc, flags));
if (sc->sc_opipe != NULL) {
usbd_close_pipe(sc->sc_opipe);
sc->sc_opipe = NULL;
}
if (sc->sc_ipipe != NULL) {
usbd_close_pipe(sc->sc_ipipe);
sc->sc_ipipe = NULL;
}
if (sc->sc_repdesc != NULL)
free(sc->sc_repdesc, M_USBDEV, sc->sc_repdesc_size);
for (i = 0; i < sc->sc_nrepid; i++) {
if (sc->sc_subdevs[i] == NULL)
continue;
rv |= config_detach(&sc->sc_subdevs[i]->sc_dev, flags);
for (j = i + 1; j < sc->sc_nrepid; j++) {
if (sc->sc_subdevs[i] == sc->sc_subdevs[j])
sc->sc_subdevs[j] = NULL;
}
sc->sc_subdevs[i] = NULL;
}
free(sc->sc_subdevs, M_USBDEV, sc->sc_nrepid * sizeof(struct uhidev *));
return (rv);
}
void
uhidev_intr(struct usbd_xfer *xfer, void *addr, usbd_status status)
{
struct uhidev_softc *sc = addr;
struct uhidev *scd;
u_char *p;
u_int rep;
u_int32_t cc;
if (usbd_is_dying(sc->sc_udev))
return;
usbd_get_xfer_status(xfer, NULL, NULL, &cc, NULL);
#ifdef UHIDEV_DEBUG
if (uhidevdebug > 5) {
u_int32_t i;
DPRINTF(("uhidev_intr: status=%d cc=%d\n", status, cc));
DPRINTF(("uhidev_intr: data ="));
for (i = 0; i < cc; i++)
DPRINTF((" %02x", sc->sc_ibuf[i]));
DPRINTF(("\n"));
}
#endif
if (status == USBD_CANCELLED || status == USBD_IOERROR)
return;
if (status != USBD_NORMAL_COMPLETION) {
DPRINTF(("%s: interrupt status=%d\n", DEVNAME(sc), status));
usbd_clear_endpoint_stall_async(sc->sc_ipipe);
return;
}
p = sc->sc_ibuf;
if (sc->sc_nrepid != 1)
rep = *p++, cc--;
else
rep = 0;
if (rep >= sc->sc_nrepid) {
printf("uhidev_intr: bad repid %d\n", rep);
return;
}
scd = sc->sc_subdevs[rep];
DPRINTFN(5,("uhidev_intr: rep=%d, scd=%p state=0x%x\n",
rep, scd, scd ? scd->sc_state : 0));
if (scd == NULL || !(scd->sc_state & UHIDEV_OPEN))
return;
scd->sc_intr(scd, p, cc);
}
void
uhidev_get_report_desc(struct uhidev_softc *sc, void **desc, int *size)
{
*desc = sc->sc_repdesc;
*size = sc->sc_repdesc_size;
}
int
uhidev_open(struct uhidev *scd)
{
struct uhidev_softc *sc = scd->sc_parent;
usbd_status err;
int error;
DPRINTF(("uhidev_open: open pipe, state=%d refcnt=%d\n",
scd->sc_state, sc->sc_refcnt));
if (scd->sc_state & UHIDEV_OPEN)
return (EBUSY);
scd->sc_state |= UHIDEV_OPEN;
if (sc->sc_refcnt++)
return (0);
if (sc->sc_isize != 0) {
sc->sc_ibuf = malloc(sc->sc_isize, M_USBDEV, M_WAITOK);
DPRINTF(("uhidev_open: isize=%d, ep=0x%02x\n", sc->sc_isize,
sc->sc_iep_addr));
err = usbd_open_pipe_intr(sc->sc_iface, sc->sc_iep_addr,
USBD_SHORT_XFER_OK, &sc->sc_ipipe, sc, sc->sc_ibuf,
sc->sc_isize, uhidev_intr, USBD_DEFAULT_INTERVAL);
if (err != USBD_NORMAL_COMPLETION) {
DPRINTF(("uhidopen: usbd_open_pipe_intr failed, "
"error=%d\n", err));
error = EIO;
goto out1;
}
DPRINTF(("uhidev_open: sc->sc_ipipe=%p\n", sc->sc_ipipe));
sc->sc_ixfer = usbd_alloc_xfer(sc->sc_udev);
if (sc->sc_ixfer == NULL) {
DPRINTF(("uhidev_open: couldn't allocate an xfer\n"));
error = ENOMEM;
goto out1;
}
}
if (sc->sc_oep_addr != -1) {
DPRINTF(("uhidev_open: oep=0x%02x\n", sc->sc_oep_addr));
err = usbd_open_pipe(sc->sc_iface, sc->sc_oep_addr,
0, &sc->sc_opipe);
if (err != USBD_NORMAL_COMPLETION) {
DPRINTF(("uhidev_open: usbd_open_pipe failed, "
"error=%d\n", err));
error = EIO;
goto out2;
}
DPRINTF(("uhidev_open: sc->sc_opipe=%p\n", sc->sc_opipe));
sc->sc_oxfer = usbd_alloc_xfer(sc->sc_udev);
if (sc->sc_oxfer == NULL) {
DPRINTF(("uhidev_open: couldn't allocate an xfer\n"));
error = ENOMEM;
goto out3;
}
sc->sc_owxfer = usbd_alloc_xfer(sc->sc_udev);
if (sc->sc_owxfer == NULL) {
DPRINTF(("uhidev_open: couldn't allocate owxfer\n"));
error = ENOMEM;
goto out3;
}
#ifndef SMALL_KERNEL
if (sc->sc_flags & UHIDEV_F_XB1) {
uint8_t init_data[] = { 0x05, 0x20, 0x00, 0x01, 0x00 };
size_t init_data_len = sizeof(init_data);
usbd_setup_xfer(sc->sc_oxfer, sc->sc_opipe, 0,
init_data, init_data_len,
USBD_SYNCHRONOUS | USBD_CATCH, USBD_NO_TIMEOUT,
NULL);
err = usbd_transfer(sc->sc_oxfer);
if (err != USBD_NORMAL_COMPLETION) {
DPRINTF(("uhidev_open: xb1 init failed, "
"error=%d\n", err));
error = EIO;
goto out3;
}
}
#endif
}
return (0);
out3:
usbd_close_pipe(sc->sc_opipe);
out2:
if (sc->sc_ipipe != NULL)
usbd_close_pipe(sc->sc_ipipe);
out1:
DPRINTF(("uhidev_open: failed in someway"));
free(sc->sc_ibuf, M_USBDEV, sc->sc_isize);
sc->sc_ibuf = NULL;
scd->sc_state &= ~UHIDEV_OPEN;
sc->sc_refcnt = 0;
sc->sc_ipipe = NULL;
sc->sc_opipe = NULL;
if (sc->sc_oxfer != NULL) {
usbd_free_xfer(sc->sc_oxfer);
sc->sc_oxfer = NULL;
}
if (sc->sc_owxfer != NULL) {
usbd_free_xfer(sc->sc_owxfer);
sc->sc_owxfer = NULL;
}
if (sc->sc_ixfer != NULL) {
usbd_free_xfer(sc->sc_ixfer);
sc->sc_ixfer = NULL;
}
return (error);
}
void
uhidev_close(struct uhidev *scd)
{
struct uhidev_softc *sc = scd->sc_parent;
if (!(scd->sc_state & UHIDEV_OPEN))
return;
scd->sc_state &= ~UHIDEV_OPEN;
if (--sc->sc_refcnt)
return;
DPRINTF(("uhidev_close: close pipe\n"));
if (sc->sc_opipe != NULL) {
usbd_close_pipe(sc->sc_opipe);
sc->sc_opipe = NULL;
}
if (sc->sc_ipipe != NULL) {
usbd_close_pipe(sc->sc_ipipe);
sc->sc_ipipe = NULL;
}
if (sc->sc_oxfer != NULL) {
usbd_free_xfer(sc->sc_oxfer);
sc->sc_oxfer = NULL;
}
if (sc->sc_owxfer != NULL) {
usbd_free_xfer(sc->sc_owxfer);
sc->sc_owxfer = NULL;
}
if (sc->sc_ixfer != NULL) {
usbd_free_xfer(sc->sc_ixfer);
sc->sc_ixfer = NULL;
}
if (sc->sc_ibuf != NULL) {
free(sc->sc_ibuf, M_USBDEV, sc->sc_isize);
sc->sc_ibuf = NULL;
}
}
int
uhidev_report_type_conv(int hid_type_id)
{
switch (hid_type_id) {
case hid_input:
return UHID_INPUT_REPORT;
case hid_output:
return UHID_OUTPUT_REPORT;
case hid_feature:
return UHID_FEATURE_REPORT;
default:
return -1;
}
}
int
uhidev_set_report(struct uhidev_softc *sc, int type, int id, void *data,
int len)
{
usb_device_request_t req;
char *buf = data;
int actlen = len;
if (id > 0) {
len++;
buf = malloc(len, M_TEMP, M_WAITOK);
buf[0] = id;
memcpy(buf + 1, data, len - 1);
}
if (sc->sc_opipe != NULL) {
usbd_setup_xfer(sc->sc_owxfer, sc->sc_opipe, 0, buf, len,
USBD_SYNCHRONOUS | USBD_CATCH, 0, NULL);
if (usbd_transfer(sc->sc_owxfer)) {
usbd_clear_endpoint_stall(sc->sc_opipe);
actlen = -1;
}
} else {
req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
req.bRequest = UR_SET_REPORT;
USETW2(req.wValue, type, id);
USETW(req.wIndex, sc->sc_ifaceno);
USETW(req.wLength, len);
if (usbd_do_request(sc->sc_udev, &req, buf))
actlen = -1;
}
if (id > 0)
free(buf, M_TEMP, len);
return (actlen);
}
void
uhidev_set_report_async_cb(struct usbd_xfer *xfer, void *priv, usbd_status err)
{
struct uhidev_softc *sc = priv;
if (err == USBD_STALLED)
usbd_clear_endpoint_stall_async(sc->sc_opipe);
usbd_free_xfer(xfer);
}
int
uhidev_set_report_async(struct uhidev_softc *sc, int type, int id, void *data,
int len)
{
struct usbd_xfer *xfer;
usb_device_request_t req;
int actlen = len;
char *buf;
xfer = usbd_alloc_xfer(sc->sc_udev);
if (xfer == NULL)
return (-1);
if (id > 0)
len++;
buf = usbd_alloc_buffer(xfer, len);
if (buf == NULL) {
usbd_free_xfer(xfer);
return (-1);
}
if (id > 0) {
buf[0] = id;
memcpy(buf + 1, data, len - 1);
} else {
memcpy(buf, data, len);
}
if (sc->sc_opipe != NULL) {
usbd_setup_xfer(xfer, sc->sc_opipe, sc, buf, len,
USBD_NO_COPY, USBD_DEFAULT_TIMEOUT,
uhidev_set_report_async_cb);
if (usbd_transfer(xfer)) {
usbd_clear_endpoint_stall_async(sc->sc_opipe);
actlen = -1;
}
} else {
req.bmRequestType = UT_WRITE_CLASS_INTERFACE;
req.bRequest = UR_SET_REPORT;
USETW2(req.wValue, type, id);
USETW(req.wIndex, sc->sc_ifaceno);
USETW(req.wLength, len);
if (usbd_request_async(xfer, &req, NULL, NULL))
actlen = -1;
}
return (actlen);
}
int
uhidev_get_report(struct uhidev_softc *sc, int type, int id, void *data,
int len)
{
usb_device_request_t req;
char *buf = data;
usbd_status err;
int actlen;
if (id > 0) {
len++;
buf = malloc(len, M_TEMP, M_WAITOK|M_ZERO);
}
req.bmRequestType = UT_READ_CLASS_INTERFACE;
req.bRequest = UR_GET_REPORT;
USETW2(req.wValue, type, id);
USETW(req.wIndex, sc->sc_ifaceno);
USETW(req.wLength, len);
err = usbd_do_request_flags(sc->sc_udev, &req, buf, 0, &actlen,
USBD_DEFAULT_TIMEOUT);
if (err != USBD_NORMAL_COMPLETION && err != USBD_SHORT_XFER)
actlen = -1;
if (id > 0) {
memcpy(data, buf + 1, len - 1);
free(buf, M_TEMP, len);
}
return (actlen);
}
void
uhidev_get_report_async_cb(struct usbd_xfer *xfer, void *priv, usbd_status err)
{
struct uhidev_async_info *info = priv;
char *buf;
int len = -1;
if (!usbd_is_dying(xfer->pipe->device)) {
if (err == USBD_NORMAL_COMPLETION || err == USBD_SHORT_XFER) {
len = xfer->actlen;
buf = KERNADDR(&xfer->dmabuf, 0);
if (info->id > 0) {
len--;
memcpy(info->data, buf + 1, len);
} else {
memcpy(info->data, buf, len);
}
}
info->callback(info->priv, info->id, info->data, len);
}
free(info, M_TEMP, sizeof(*info));
usbd_free_xfer(xfer);
}
int
uhidev_get_report_async(struct uhidev_softc *sc, int type, int id, void *data,
int len, void *priv, void (*callback)(void *, int, void *, int))
{
struct usbd_xfer *xfer;
usb_device_request_t req;
struct uhidev_async_info *info;
int actlen = len;
char *buf;
xfer = usbd_alloc_xfer(sc->sc_udev);
if (xfer == NULL)
return (-1);
if (id > 0)
len++;
buf = usbd_alloc_buffer(xfer, len);
if (buf == NULL) {
usbd_free_xfer(xfer);
return (-1);
}
info = malloc(sizeof(*info), M_TEMP, M_NOWAIT);
if (info == NULL) {
usbd_free_xfer(xfer);
return (-1);
}
info->callback = callback;
info->priv = priv;
info->data = data;
info->id = id;
req.bmRequestType = UT_READ_CLASS_INTERFACE;
req.bRequest = UR_GET_REPORT;
USETW2(req.wValue, type, id);
USETW(req.wIndex, sc->sc_ifaceno);
USETW(req.wLength, len);
if (usbd_request_async(xfer, &req, info, uhidev_get_report_async_cb)) {
free(info, M_TEMP, sizeof(*info));
actlen = -1;
}
return (actlen);
}
usbd_status
uhidev_write(struct uhidev_softc *sc, void *data, int len)
{
usbd_status error;
DPRINTF(("uhidev_write: data=%p, len=%d\n", data, len));
if (sc->sc_opipe == NULL)
return USBD_INVAL;
#ifdef UHIDEV_DEBUG
if (uhidevdebug > 50) {
u_int32_t i;
u_int8_t *d = data;
DPRINTF(("uhidev_write: data ="));
for (i = 0; i < len; i++)
DPRINTF((" %02x", d[i]));
DPRINTF(("\n"));
}
#endif
usbd_setup_xfer(sc->sc_owxfer, sc->sc_opipe, 0, data, len,
USBD_SYNCHRONOUS | USBD_CATCH, 0, NULL);
error = usbd_transfer(sc->sc_owxfer);
if (error)
usbd_clear_endpoint_stall(sc->sc_opipe);
return (error);
}
int
uhidev_ioctl(struct uhidev *sc, u_long cmd, caddr_t addr, int flag,
struct proc *p)
{
struct usb_ctl_report_desc *rd;
struct usb_ctl_report *re;
int size;
void *desc;
switch (cmd) {
case USB_GET_REPORT_DESC:
uhidev_get_report_desc(sc->sc_parent, &desc, &size);
rd = (struct usb_ctl_report_desc *)addr;
size = min(size, sizeof rd->ucrd_data);
rd->ucrd_size = size;
memcpy(rd->ucrd_data, desc, size);
break;
case USB_GET_REPORT:
re = (struct usb_ctl_report *)addr;
switch (re->ucr_report) {
case UHID_INPUT_REPORT:
size = sc->sc_isize;
break;
case UHID_OUTPUT_REPORT:
size = sc->sc_osize;
break;
case UHID_FEATURE_REPORT:
size = sc->sc_fsize;
break;
default:
return EINVAL;
}
if (uhidev_get_report(sc->sc_parent, re->ucr_report,
sc->sc_report_id, re->ucr_data, size) != size)
return EIO;
break;
case USB_SET_REPORT:
re = (struct usb_ctl_report *)addr;
switch (re->ucr_report) {
case UHID_INPUT_REPORT:
size = sc->sc_isize;
break;
case UHID_OUTPUT_REPORT:
size = sc->sc_osize;
break;
case UHID_FEATURE_REPORT:
size = sc->sc_fsize;
break;
default:
return EINVAL;
}
if (uhidev_set_report(sc->sc_parent, re->ucr_report,
sc->sc_report_id, re->ucr_data, size) != size)
return EIO;
break;
case USB_GET_REPORT_ID:
*(int *)addr = sc->sc_report_id;
break;
default:
return -1;
}
return 0;
}
int
uhidev_set_report_dev(struct uhidev_softc *sc, struct uhidev *dev, int repid)
{
if ((dev->sc_state & UHIDEV_OPEN) == 0)
return ENODEV;
if (repid >= sc->sc_nrepid)
return EINVAL;
sc->sc_subdevs[repid] = dev;
return 0;
}