306 lines
7.5 KiB
C
306 lines
7.5 KiB
C
/* $NetBSD: ums.c,v 1.93 2019/05/05 03:17:54 mrg Exp $ */
|
|
|
|
/*
|
|
* Copyright (c) 1998, 2017 The NetBSD Foundation, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
* by Lennart Augustsson (lennart@augustsson.net) at
|
|
* Carlstedt Research & Technology.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
/*
|
|
* HID spec: http://www.usb.org/developers/devclass_docs/HID1_11.pdf
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
__KERNEL_RCSID(0, "$NetBSD: ums.c,v 1.93 2019/05/05 03:17:54 mrg Exp $");
|
|
|
|
#ifdef _KERNEL_OPT
|
|
#include "opt_usb.h"
|
|
#endif
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/systm.h>
|
|
#include <sys/kernel.h>
|
|
#include <sys/device.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/file.h>
|
|
#include <sys/select.h>
|
|
#include <sys/proc.h>
|
|
#include <sys/vnode.h>
|
|
#include <sys/poll.h>
|
|
|
|
#include <dev/usb/usb.h>
|
|
#include <dev/usb/usbhid.h>
|
|
|
|
#include <dev/usb/usbdi.h>
|
|
#include <dev/usb/usbdi_util.h>
|
|
#include <dev/usb/usbdevs.h>
|
|
#include <dev/usb/usb_quirks.h>
|
|
#include <dev/usb/uhidev.h>
|
|
#include <dev/hid/hid.h>
|
|
#include <dev/hid/hidms.h>
|
|
|
|
#ifdef UMS_DEBUG
|
|
#define DPRINTF(x) if (umsdebug) printf x
|
|
#define DPRINTFN(n,x) if (umsdebug>(n)) printf x
|
|
int umsdebug = 0;
|
|
#else
|
|
#define DPRINTF(x)
|
|
#define DPRINTFN(n,x)
|
|
#endif
|
|
|
|
#define UMSUNIT(s) (minor(s))
|
|
|
|
struct ums_softc {
|
|
struct uhidev sc_hdev;
|
|
struct hidms sc_ms;
|
|
|
|
int sc_enabled;
|
|
char sc_dying;
|
|
};
|
|
|
|
Static void ums_intr(struct uhidev *, void *, u_int);
|
|
|
|
Static int ums_enable(void *);
|
|
Static void ums_disable(void *);
|
|
Static int ums_ioctl(void *, u_long, void *, int, struct lwp *);
|
|
|
|
const struct wsmouse_accessops ums_accessops = {
|
|
ums_enable,
|
|
ums_ioctl,
|
|
ums_disable,
|
|
};
|
|
|
|
int ums_match(device_t, cfdata_t, void *);
|
|
void ums_attach(device_t, device_t, void *);
|
|
void ums_childdet(device_t, device_t);
|
|
int ums_detach(device_t, int);
|
|
int ums_activate(device_t, enum devact);
|
|
|
|
CFATTACH_DECL2_NEW(ums, sizeof(struct ums_softc), ums_match, ums_attach,
|
|
ums_detach, ums_activate, NULL, ums_childdet);
|
|
|
|
int
|
|
ums_match(device_t parent, cfdata_t match, void *aux)
|
|
{
|
|
struct uhidev_attach_arg *uha = aux;
|
|
int size;
|
|
void *desc;
|
|
|
|
/*
|
|
* Some (older) Griffin PowerMate knobs may masquerade as a
|
|
* mouse, avoid treating them as such, they have only one axis.
|
|
*/
|
|
if (uha->uiaa->uiaa_vendor == USB_VENDOR_GRIFFIN &&
|
|
uha->uiaa->uiaa_product == USB_PRODUCT_GRIFFIN_POWERMATE)
|
|
return UMATCH_NONE;
|
|
|
|
uhidev_get_report_desc(uha->parent, &desc, &size);
|
|
if (!hid_is_collection(desc, size, uha->reportid,
|
|
HID_USAGE2(HUP_GENERIC_DESKTOP, HUG_MOUSE)) &&
|
|
!hid_is_collection(desc, size, uha->reportid,
|
|
HID_USAGE2(HUP_GENERIC_DESKTOP, HUG_POINTER)) &&
|
|
!hid_is_collection(desc, size, uha->reportid,
|
|
HID_USAGE2(HUP_DIGITIZERS, 0x0002)))
|
|
return UMATCH_NONE;
|
|
|
|
return UMATCH_IFACECLASS;
|
|
}
|
|
|
|
void
|
|
ums_attach(device_t parent, device_t self, void *aux)
|
|
{
|
|
struct ums_softc *sc = device_private(self);
|
|
struct uhidev_attach_arg *uha = aux;
|
|
int size;
|
|
void *desc;
|
|
uint32_t quirks;
|
|
|
|
aprint_naive("\n");
|
|
|
|
sc->sc_hdev.sc_dev = self;
|
|
sc->sc_hdev.sc_intr = ums_intr;
|
|
sc->sc_hdev.sc_parent = uha->parent;
|
|
sc->sc_hdev.sc_report_id = uha->reportid;
|
|
|
|
quirks = usbd_get_quirks(uha->parent->sc_udev)->uq_flags;
|
|
if (quirks & UQ_MS_REVZ)
|
|
sc->sc_ms.flags |= HIDMS_REVZ;
|
|
if (quirks & UQ_SPUR_BUT_UP)
|
|
sc->sc_ms.flags |= HIDMS_SPUR_BUT_UP;
|
|
|
|
if (!pmf_device_register(self, NULL, NULL))
|
|
aprint_error_dev(self, "couldn't establish power handler\n");
|
|
|
|
uhidev_get_report_desc(uha->parent, &desc, &size);
|
|
|
|
if (!hidms_setup(self, &sc->sc_ms, uha->reportid, desc, size))
|
|
return;
|
|
|
|
if (uha->uiaa->uiaa_vendor == USB_VENDOR_MICROSOFT) {
|
|
int fixpos;
|
|
/*
|
|
* The Microsoft Wireless Laser Mouse 6000 v2.0 and the
|
|
* Microsoft Comfort Mouse 2.0 report a bad position for
|
|
* the wheel and wheel tilt controls -- should be in bytes
|
|
* 3 & 4 of the report. Fix this if necessary.
|
|
*/
|
|
switch (uha->uiaa->uiaa_product) {
|
|
case USB_PRODUCT_MICROSOFT_24GHZ_XCVR10:
|
|
case USB_PRODUCT_MICROSOFT_24GHZ_XCVR20:
|
|
case USB_PRODUCT_MICROSOFT_NATURAL_6000:
|
|
fixpos = 24;
|
|
break;
|
|
case USB_PRODUCT_MICROSOFT_CM6000:
|
|
fixpos = 40;
|
|
break;
|
|
default:
|
|
fixpos = 0;
|
|
break;
|
|
}
|
|
if (fixpos) {
|
|
if ((sc->sc_ms.flags & HIDMS_Z) &&
|
|
sc->sc_ms.hidms_loc_z.pos == 0)
|
|
sc->sc_ms.hidms_loc_z.pos = fixpos;
|
|
if ((sc->sc_ms.flags & HIDMS_W) &&
|
|
sc->sc_ms.hidms_loc_w.pos == 0)
|
|
sc->sc_ms.hidms_loc_w.pos =
|
|
sc->sc_ms.hidms_loc_z.pos + 8;
|
|
}
|
|
}
|
|
|
|
hidms_attach(self, &sc->sc_ms, &ums_accessops);
|
|
}
|
|
|
|
int
|
|
ums_activate(device_t self, enum devact act)
|
|
{
|
|
struct ums_softc *sc = device_private(self);
|
|
|
|
switch (act) {
|
|
case DVACT_DEACTIVATE:
|
|
sc->sc_dying = 1;
|
|
return 0;
|
|
default:
|
|
return EOPNOTSUPP;
|
|
}
|
|
}
|
|
|
|
void
|
|
ums_childdet(device_t self, device_t child)
|
|
{
|
|
struct ums_softc *sc = device_private(self);
|
|
|
|
KASSERT(sc->sc_ms.hidms_wsmousedev == child);
|
|
sc->sc_ms.hidms_wsmousedev = NULL;
|
|
}
|
|
|
|
int
|
|
ums_detach(device_t self, int flags)
|
|
{
|
|
struct ums_softc *sc = device_private(self);
|
|
int rv = 0;
|
|
|
|
DPRINTF(("ums_detach: sc=%p flags=%d\n", sc, flags));
|
|
|
|
/* No need to do reference counting of ums, wsmouse has all the goo. */
|
|
if (sc->sc_ms.hidms_wsmousedev != NULL)
|
|
rv = config_detach(sc->sc_ms.hidms_wsmousedev, flags);
|
|
|
|
pmf_device_deregister(self);
|
|
|
|
return rv;
|
|
}
|
|
|
|
void
|
|
ums_intr(struct uhidev *addr, void *ibuf, u_int len)
|
|
{
|
|
struct ums_softc *sc = (struct ums_softc *)addr;
|
|
hidms_intr(&sc->sc_ms, ibuf, len);
|
|
}
|
|
|
|
Static int
|
|
ums_enable(void *v)
|
|
{
|
|
struct ums_softc *sc = v;
|
|
int error;
|
|
|
|
DPRINTFN(1,("ums_enable: sc=%p\n", sc));
|
|
|
|
if (sc->sc_dying)
|
|
return EIO;
|
|
|
|
if (sc->sc_enabled)
|
|
return EBUSY;
|
|
|
|
sc->sc_enabled = 1;
|
|
sc->sc_ms.hidms_buttons = 0;
|
|
|
|
error = uhidev_open(&sc->sc_hdev);
|
|
if (error)
|
|
sc->sc_enabled = 0;
|
|
|
|
return error;
|
|
}
|
|
|
|
Static void
|
|
ums_disable(void *v)
|
|
{
|
|
struct ums_softc *sc = v;
|
|
|
|
DPRINTFN(1,("ums_disable: sc=%p\n", sc));
|
|
#ifdef DIAGNOSTIC
|
|
if (!sc->sc_enabled) {
|
|
printf("ums_disable: not enabled\n");
|
|
return;
|
|
}
|
|
#endif
|
|
|
|
if (sc->sc_enabled) {
|
|
sc->sc_enabled = 0;
|
|
uhidev_close(&sc->sc_hdev);
|
|
}
|
|
}
|
|
|
|
Static int
|
|
ums_ioctl(void *v, u_long cmd, void *data, int flag,
|
|
struct lwp * p)
|
|
|
|
{
|
|
struct ums_softc *sc = v;
|
|
|
|
switch (cmd) {
|
|
case WSMOUSEIO_GTYPE:
|
|
if (sc->sc_ms.flags & HIDMS_ABS)
|
|
*(u_int *)data = WSMOUSE_TYPE_TPANEL;
|
|
else
|
|
*(u_int *)data = WSMOUSE_TYPE_USB;
|
|
return 0;
|
|
}
|
|
|
|
return EPASSTHROUGH;
|
|
}
|