2007-01-07 22:08:05 +03:00
|
|
|
/* $NetBSD: xboxcontroller.c,v 1.3 2007/01/07 19:08:05 jmcneill Exp $ */
|
2007-01-05 20:16:22 +03:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2007 Jared D. McNeill <jmcneill@invisible.ca>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Jared D. McNeill.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
2007-01-07 22:08:05 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: xboxcontroller.c,v 1.3 2007/01/07 19:08:05 jmcneill Exp $");
|
2007-01-05 20:16:22 +03:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
|
|
|
|
#include <machine/bus.h>
|
|
|
|
|
|
|
|
#include <dev/wscons/wsconsio.h>
|
|
|
|
#include <dev/wscons/wsmousevar.h>
|
|
|
|
|
|
|
|
#include <dev/usb/usb.h>
|
|
|
|
#include <dev/usb/usbdi.h>
|
|
|
|
#include <dev/usb/usbdi_util.h>
|
|
|
|
#include <dev/usb/usbdevs.h>
|
|
|
|
|
|
|
|
#define XBOX_CONTROLLER_BUFSZ 32
|
|
|
|
|
|
|
|
struct xboxcontroller_softc {
|
|
|
|
USBBASEDEVICE sc_dev;
|
|
|
|
|
|
|
|
usbd_device_handle sc_udev;
|
|
|
|
usbd_interface_handle sc_iface;
|
|
|
|
int sc_ed;
|
|
|
|
usbd_pipe_handle sc_ep;
|
|
|
|
unsigned char *sc_buf;
|
|
|
|
|
|
|
|
int sc_drvmode;
|
|
|
|
#define XBOX_CONTROLLER_MODE_MOUSE 1
|
|
|
|
#define XBOX_CONTROLLER_MODE_JOYSTICK 2
|
|
|
|
|
|
|
|
struct device *sc_wsmousedev;
|
|
|
|
char sc_enabled;
|
|
|
|
char sc_dying;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void xboxcontroller_intr(usbd_xfer_handle, usbd_private_handle,
|
|
|
|
usbd_status);
|
|
|
|
|
|
|
|
static int xboxcontroller_wsmouse_enable(void *);
|
|
|
|
static int xboxcontroller_wsmouse_ioctl(void *, u_long, caddr_t, int,
|
|
|
|
struct lwp *);
|
|
|
|
static void xboxcontroller_wsmouse_disable(void *);
|
|
|
|
|
|
|
|
static const struct wsmouse_accessops xboxcontroller_accessops = {
|
|
|
|
xboxcontroller_wsmouse_enable,
|
|
|
|
xboxcontroller_wsmouse_ioctl,
|
|
|
|
xboxcontroller_wsmouse_disable
|
|
|
|
};
|
|
|
|
|
|
|
|
USB_DECLARE_DRIVER(xboxcontroller);
|
|
|
|
|
|
|
|
USB_MATCH(xboxcontroller)
|
|
|
|
{
|
|
|
|
USB_MATCH_START(xboxcontroller, uaa);
|
|
|
|
|
|
|
|
if (uaa->iface != NULL)
|
|
|
|
return UMATCH_NONE;
|
|
|
|
|
|
|
|
if (uaa->vendor == USB_VENDOR_MICROSOFT) {
|
|
|
|
switch (uaa->product) {
|
2007-01-07 19:54:32 +03:00
|
|
|
case USB_PRODUCT_MICROSOFT_XBOX_CONTROLLER_S10:
|
|
|
|
case USB_PRODUCT_MICROSOFT_XBOX_CONTROLLER_S12:
|
2007-01-05 20:16:22 +03:00
|
|
|
return UMATCH_VENDOR_PRODUCT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return UMATCH_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
USB_ATTACH(xboxcontroller)
|
|
|
|
{
|
|
|
|
USB_ATTACH_START(xboxcontroller, sc, uaa);
|
|
|
|
usbd_device_handle dev = uaa->device;
|
|
|
|
usbd_status err;
|
|
|
|
struct wsmousedev_attach_args waa;
|
|
|
|
usb_endpoint_descriptor_t *ed;
|
|
|
|
char *devinfo;
|
|
|
|
|
|
|
|
devinfo = usbd_devinfo_alloc(dev, 0);
|
|
|
|
USB_ATTACH_SETUP;
|
|
|
|
aprint_normal("%s: %s\n", USBDEVNAME(sc->sc_dev), devinfo);
|
|
|
|
usbd_devinfo_free(devinfo);
|
|
|
|
|
|
|
|
sc->sc_drvmode = XBOX_CONTROLLER_MODE_MOUSE;
|
|
|
|
|
|
|
|
sc->sc_enabled = sc->sc_dying = 0;
|
|
|
|
sc->sc_ep = NULL;
|
|
|
|
sc->sc_udev = dev;
|
|
|
|
err = usbd_set_config_no(dev, 1, 1);
|
|
|
|
if (err) {
|
|
|
|
aprint_error("%s: setting config no failed: %s\n",
|
|
|
|
USBDEVNAME(sc->sc_dev), usbd_errstr(err));
|
|
|
|
sc->sc_dying = 1;
|
|
|
|
USB_ATTACH_ERROR_RETURN;
|
|
|
|
}
|
|
|
|
err = usbd_device2interface_handle(dev, 0, &sc->sc_iface);
|
|
|
|
if (err) {
|
|
|
|
aprint_error("%s: failed to get interface: %s\n",
|
|
|
|
USBDEVNAME(sc->sc_dev), usbd_errstr(err));
|
|
|
|
sc->sc_dying = 1;
|
|
|
|
USB_ATTACH_ERROR_RETURN;
|
|
|
|
}
|
|
|
|
|
|
|
|
ed = usbd_interface2endpoint_descriptor(sc->sc_iface, 0);
|
|
|
|
if (ed == NULL) {
|
|
|
|
aprint_error("%s: couldn't get ep 0\n", USBDEVNAME(sc->sc_dev));
|
|
|
|
sc->sc_dying = 1;
|
|
|
|
USB_ATTACH_ERROR_RETURN;
|
|
|
|
}
|
|
|
|
sc->sc_ed = ed->bEndpointAddress;
|
|
|
|
|
|
|
|
usbd_add_drv_event(USB_EVENT_DRIVER_ATTACH, sc->sc_udev,
|
|
|
|
USBDEV(sc->sc_dev));
|
|
|
|
|
|
|
|
waa.accessops = &xboxcontroller_accessops;
|
|
|
|
waa.accesscookie = sc;
|
|
|
|
|
|
|
|
sc->sc_wsmousedev = config_found_ia(self, "wsmousedev", &waa,
|
|
|
|
wsmousedevprint);
|
|
|
|
|
|
|
|
USB_ATTACH_SUCCESS_RETURN;
|
|
|
|
}
|
|
|
|
|
|
|
|
USB_DETACH(xboxcontroller)
|
|
|
|
{
|
|
|
|
USB_DETACH_START(xboxcontroller, sc);
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
rv = 0;
|
|
|
|
|
|
|
|
if (sc->sc_ep != NULL) {
|
|
|
|
usbd_abort_pipe(sc->sc_ep);
|
|
|
|
usbd_close_pipe(sc->sc_ep);
|
|
|
|
sc->sc_ep = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
sc->sc_dying = 1;
|
|
|
|
|
|
|
|
if (sc->sc_wsmousedev != NULL) {
|
|
|
|
rv = config_detach(sc->sc_wsmousedev, flags);
|
|
|
|
sc->sc_wsmousedev = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
xboxcontroller_activate(device_ptr_t self, enum devact act)
|
|
|
|
{
|
|
|
|
struct xboxcontroller_softc *sc;
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
sc = (struct xboxcontroller_softc *)self;
|
|
|
|
rv = 0;
|
|
|
|
|
|
|
|
switch (act) {
|
|
|
|
case DVACT_ACTIVATE:
|
|
|
|
return EOPNOTSUPP;
|
|
|
|
case DVACT_DEACTIVATE:
|
|
|
|
if (sc->sc_wsmousedev != NULL)
|
|
|
|
rv = config_deactivate(sc->sc_wsmousedev);
|
|
|
|
sc->sc_dying = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
xboxcontroller_intr(usbd_xfer_handle xfer, usbd_private_handle priv,
|
|
|
|
usbd_status status)
|
|
|
|
{
|
|
|
|
struct xboxcontroller_softc *sc;
|
|
|
|
unsigned char *data;
|
2007-01-07 22:08:05 +03:00
|
|
|
int16_t x, y;
|
2007-01-05 20:16:22 +03:00
|
|
|
char btnmask;
|
|
|
|
uint32_t len;
|
|
|
|
int s;
|
|
|
|
|
|
|
|
sc = (struct xboxcontroller_softc *)priv;
|
|
|
|
data = sc->sc_buf;
|
|
|
|
|
|
|
|
usbd_get_xfer_status(xfer, NULL, NULL, &len, NULL);
|
|
|
|
if (status == USBD_CANCELLED)
|
|
|
|
return;
|
|
|
|
|
|
|
|
x = (int16_t)(((int16_t)data[13] << 8) | data[12]);
|
|
|
|
y = (int16_t)(((int16_t)data[15] << 8) | data[14]);
|
2007-01-07 22:08:05 +03:00
|
|
|
/* z = (int16_t)(((int16_t)data[17] << 8) | data[16]); */
|
|
|
|
/* w = (int16_t)(((int16_t)data[19] << 8) | data[18]); */
|
|
|
|
|
|
|
|
/* de-jitter */
|
|
|
|
if (x < 8192 && x > -8192)
|
|
|
|
x = 0;
|
|
|
|
if (y < 8192 && y > -8192)
|
|
|
|
y = 0;
|
2007-01-05 20:16:22 +03:00
|
|
|
|
|
|
|
switch (sc->sc_drvmode) {
|
|
|
|
case XBOX_CONTROLLER_MODE_MOUSE:
|
|
|
|
if (sc->sc_wsmousedev == NULL)
|
|
|
|
goto done;
|
|
|
|
btnmask = 0;
|
2007-01-07 22:08:05 +03:00
|
|
|
if (data[2] & 0x40) btnmask |= 0x01; /* thumb press left */
|
|
|
|
if (data[2] & 0x80) btnmask |= 0x04; /* thumb press right */
|
|
|
|
if (data[2] & 0x10) btnmask |= 0x02; /* start button */
|
2007-01-05 20:16:22 +03:00
|
|
|
|
|
|
|
s = spltty();
|
|
|
|
wsmouse_input(sc->sc_wsmousedev, btnmask,
|
|
|
|
x / 4096, y / 4096,
|
2007-01-07 22:08:05 +03:00
|
|
|
0, 0, /* z / 4096, w / 4096, */
|
2007-01-05 20:16:22 +03:00
|
|
|
WSMOUSE_INPUT_DELTA);
|
|
|
|
splx(s);
|
|
|
|
break;
|
|
|
|
case XBOX_CONTROLLER_MODE_JOYSTICK:
|
|
|
|
/* XXX not implemented */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xboxcontroller_wsmouse_enable(void *opaque)
|
|
|
|
{
|
|
|
|
struct xboxcontroller_softc *sc;
|
|
|
|
usbd_status err;
|
|
|
|
|
|
|
|
sc = (struct xboxcontroller_softc *)opaque;
|
|
|
|
|
|
|
|
if (sc->sc_dying)
|
|
|
|
return EIO;
|
|
|
|
if (sc->sc_enabled)
|
|
|
|
return EBUSY;
|
|
|
|
|
|
|
|
sc->sc_buf = malloc(XBOX_CONTROLLER_BUFSZ, M_USBDEV, M_WAITOK);
|
|
|
|
err = usbd_open_pipe_intr(sc->sc_iface, sc->sc_ed,
|
|
|
|
USBD_SHORT_XFER_OK, &sc->sc_ep, sc, sc->sc_buf,
|
|
|
|
XBOX_CONTROLLER_BUFSZ, xboxcontroller_intr,
|
|
|
|
USBD_DEFAULT_INTERVAL);
|
|
|
|
if (err) {
|
|
|
|
aprint_error("%s: open pipe failed: %s\n",
|
|
|
|
USBDEVNAME(sc->sc_dev), usbd_errstr(err));
|
|
|
|
free(sc->sc_buf, M_USBDEV);
|
|
|
|
sc->sc_buf = NULL;
|
|
|
|
sc->sc_ep = NULL;
|
|
|
|
return EIO;
|
|
|
|
}
|
|
|
|
|
|
|
|
sc->sc_enabled = 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
xboxcontroller_wsmouse_disable(void *opaque)
|
|
|
|
{
|
|
|
|
struct xboxcontroller_softc *sc;
|
|
|
|
|
|
|
|
sc = (struct xboxcontroller_softc *)opaque;
|
|
|
|
|
|
|
|
if (!sc->sc_enabled) {
|
|
|
|
printf("%s: already disabled!\n", USBDEVNAME(sc->sc_dev));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sc->sc_ep != NULL) {
|
|
|
|
usbd_abort_pipe(sc->sc_ep);
|
|
|
|
usbd_close_pipe(sc->sc_ep);
|
|
|
|
sc->sc_ep = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sc->sc_buf != NULL) {
|
|
|
|
free(sc->sc_buf, M_USBDEV);
|
|
|
|
sc->sc_buf = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
sc->sc_enabled = 0;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
xboxcontroller_wsmouse_ioctl(void *opaque, u_long cmd, caddr_t data, int flag,
|
|
|
|
struct lwp *l)
|
|
|
|
{
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case WSMOUSEIO_GTYPE:
|
|
|
|
*(u_int *)data = WSMOUSE_TYPE_USB; /* XXX not really... */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return EPASSTHROUGH;
|
|
|
|
}
|