876 lines
22 KiB
C
876 lines
22 KiB
C
/* $NetBSD: ihidev.c,v 1.7 2018/11/16 23:05:50 jmcneill Exp $ */
|
|
/* $OpenBSD ihidev.c,v 1.13 2017/04/08 02:57:23 deraadt Exp $ */
|
|
|
|
/*-
|
|
* Copyright (c) 2017 The NetBSD Foundation, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
* by Manuel Bouyer.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2015, 2016 joshua stein <jcs@openbsd.org>
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
/*
|
|
* HID-over-i2c driver
|
|
*
|
|
* https://msdn.microsoft.com/en-us/library/windows/hardware/dn642101%28v=vs.85%29.aspx
|
|
*
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
__KERNEL_RCSID(0, "$NetBSD: ihidev.c,v 1.7 2018/11/16 23:05:50 jmcneill Exp $");
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/systm.h>
|
|
#include <sys/device.h>
|
|
#include <sys/kmem.h>
|
|
|
|
|
|
#include <dev/i2c/i2cvar.h>
|
|
#include <dev/i2c/ihidev.h>
|
|
|
|
#include <dev/hid/hid.h>
|
|
|
|
#if defined(__i386__) || defined(__amd64__)
|
|
# include "acpica.h"
|
|
#endif
|
|
#if NACPICA > 0
|
|
#include <dev/acpi/acpi_intr.h>
|
|
#endif
|
|
|
|
#include "locators.h"
|
|
|
|
/* #define IHIDEV_DEBUG */
|
|
|
|
#ifdef IHIDEV_DEBUG
|
|
#define DPRINTF(x) printf x
|
|
#else
|
|
#define DPRINTF(x)
|
|
#endif
|
|
|
|
/* 7.2 */
|
|
enum {
|
|
I2C_HID_CMD_DESCR = 0x0,
|
|
I2C_HID_CMD_RESET = 0x1,
|
|
I2C_HID_CMD_GET_REPORT = 0x2,
|
|
I2C_HID_CMD_SET_REPORT = 0x3,
|
|
I2C_HID_CMD_GET_IDLE = 0x4,
|
|
I2C_HID_CMD_SET_IDLE = 0x5,
|
|
I2C_HID_CMD_GET_PROTO = 0x6,
|
|
I2C_HID_CMD_SET_PROTO = 0x7,
|
|
I2C_HID_CMD_SET_POWER = 0x8,
|
|
|
|
/* pseudo commands */
|
|
I2C_HID_REPORT_DESCR = 0x100,
|
|
};
|
|
|
|
static int I2C_HID_POWER_ON = 0x0;
|
|
static int I2C_HID_POWER_OFF = 0x1;
|
|
|
|
static int ihidev_match(device_t, cfdata_t, void *);
|
|
static void ihidev_attach(device_t, device_t, void *);
|
|
static int ihidev_detach(device_t, int);
|
|
CFATTACH_DECL_NEW(ihidev, sizeof(struct ihidev_softc),
|
|
ihidev_match, ihidev_attach, ihidev_detach, NULL);
|
|
|
|
static bool ihidev_suspend(device_t, const pmf_qual_t *);
|
|
static bool ihidev_resume(device_t, const pmf_qual_t *);
|
|
static int ihidev_hid_command(struct ihidev_softc *, int, void *, bool);
|
|
static int ihidev_intr(void *);
|
|
static int ihidev_reset(struct ihidev_softc *, bool);
|
|
static int ihidev_hid_desc_parse(struct ihidev_softc *);
|
|
|
|
static int ihidev_maxrepid(void *, int);
|
|
static int ihidev_print(void *, const char *);
|
|
static int ihidev_submatch(device_t, cfdata_t, const int *, void *);
|
|
|
|
static const struct device_compatible_entry compat_data[] = {
|
|
{ "hid-over-i2c", 0 },
|
|
{ NULL, 0 }
|
|
};
|
|
|
|
static int
|
|
ihidev_match(device_t parent, cfdata_t match, void *aux)
|
|
{
|
|
struct i2c_attach_args * const ia = aux;
|
|
int match_result;
|
|
|
|
if (iic_use_direct_match(ia, match, compat_data, &match_result))
|
|
return I2C_MATCH_DIRECT_COMPATIBLE;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
ihidev_attach(device_t parent, device_t self, void *aux)
|
|
{
|
|
struct ihidev_softc *sc = device_private(self);
|
|
struct i2c_attach_args *ia = aux;
|
|
struct ihidev_attach_arg iha;
|
|
device_t dev;
|
|
int repid, repsz;
|
|
int isize;
|
|
uint32_t v;
|
|
int locs[IHIDBUSCF_NLOCS];
|
|
|
|
|
|
sc->sc_dev = self;
|
|
sc->sc_tag = ia->ia_tag;
|
|
sc->sc_addr = ia->ia_addr;
|
|
sc->sc_phandle = ia->ia_cookie;
|
|
mutex_init(&sc->sc_intr_lock, MUTEX_DEFAULT, IPL_VM);
|
|
|
|
if (!prop_dictionary_get_uint32(ia->ia_prop, "hid-descr-addr", &v)) {
|
|
aprint_error(": no hid-descr-addr value\n");
|
|
return;
|
|
}
|
|
|
|
sc->sc_hid_desc_addr = v;
|
|
|
|
if (ihidev_hid_command(sc, I2C_HID_CMD_DESCR, NULL, false) ||
|
|
ihidev_hid_desc_parse(sc)) {
|
|
aprint_error(": failed fetching initial HID descriptor\n");
|
|
return;
|
|
}
|
|
|
|
aprint_naive("\n");
|
|
aprint_normal(": vendor 0x%x product 0x%x, %s\n",
|
|
le16toh(sc->hid_desc.wVendorID), le16toh(sc->hid_desc.wProductID),
|
|
ia->ia_name);
|
|
|
|
sc->sc_nrepid = ihidev_maxrepid(sc->sc_report, sc->sc_reportlen);
|
|
if (sc->sc_nrepid < 0)
|
|
return;
|
|
|
|
aprint_normal_dev(self, "%d report id%s\n", sc->sc_nrepid,
|
|
sc->sc_nrepid > 1 ? "s" : "");
|
|
|
|
sc->sc_nrepid++;
|
|
sc->sc_subdevs = kmem_zalloc(sc->sc_nrepid * sizeof(struct ihidev *),
|
|
KM_NOSLEEP);
|
|
if (sc->sc_subdevs == NULL) {
|
|
aprint_error_dev(self, "failed allocating memory\n");
|
|
return;
|
|
}
|
|
|
|
/* find largest report size and allocate memory for input buffer */
|
|
sc->sc_isize = le16toh(sc->hid_desc.wMaxInputLength);
|
|
for (repid = 0; repid < sc->sc_nrepid; repid++) {
|
|
repsz = hid_report_size(sc->sc_report, sc->sc_reportlen,
|
|
hid_input, repid);
|
|
|
|
isize = repsz + 2; /* two bytes for the length */
|
|
isize += (sc->sc_nrepid != 1); /* one byte for the report ID */
|
|
if (isize > sc->sc_isize)
|
|
sc->sc_isize = isize;
|
|
|
|
DPRINTF(("%s: repid %d size %d\n", sc->sc_dev.dv_xname, repid,
|
|
repsz));
|
|
}
|
|
sc->sc_ibuf = kmem_zalloc(sc->sc_isize, KM_NOSLEEP);
|
|
#if NACPICA > 0
|
|
{
|
|
char buf[100];
|
|
|
|
sc->sc_ih = acpi_intr_establish(self, sc->sc_phandle, IPL_TTY,
|
|
false, ihidev_intr, sc, device_xname(self));
|
|
if (sc->sc_ih == NULL)
|
|
aprint_error_dev(self, "can't establish interrupt\n");
|
|
aprint_normal_dev(self, "interrupting at %s\n",
|
|
acpi_intr_string(sc->sc_ih, buf, sizeof(buf)));
|
|
}
|
|
#endif
|
|
|
|
iha.iaa = ia;
|
|
iha.parent = sc;
|
|
|
|
/* Look for a driver claiming all report IDs first. */
|
|
iha.reportid = IHIDEV_CLAIM_ALLREPORTID;
|
|
locs[IHIDBUSCF_REPORTID] = IHIDEV_CLAIM_ALLREPORTID;
|
|
dev = config_found_sm_loc(self, "ihidbus", locs, &iha,
|
|
ihidev_print, ihidev_submatch);
|
|
if (dev != NULL) {
|
|
for (repid = 0; repid < sc->sc_nrepid; repid++)
|
|
sc->sc_subdevs[repid] = device_private(dev);
|
|
return;
|
|
}
|
|
|
|
for (repid = 0; repid < sc->sc_nrepid; repid++) {
|
|
if (hid_report_size(sc->sc_report, sc->sc_reportlen, hid_input,
|
|
repid) == 0 &&
|
|
hid_report_size(sc->sc_report, sc->sc_reportlen,
|
|
hid_output, repid) == 0 &&
|
|
hid_report_size(sc->sc_report, sc->sc_reportlen,
|
|
hid_feature, repid) == 0)
|
|
continue;
|
|
|
|
iha.reportid = repid;
|
|
locs[IHIDBUSCF_REPORTID] = repid;
|
|
dev = config_found_sm_loc(self, "ihidbus", locs,
|
|
&iha, ihidev_print, ihidev_submatch);
|
|
sc->sc_subdevs[repid] = device_private(dev);
|
|
}
|
|
|
|
/* power down until we're opened */
|
|
if (ihidev_hid_command(sc, I2C_HID_CMD_SET_POWER, &I2C_HID_POWER_OFF, false)) {
|
|
aprint_error_dev(sc->sc_dev, "failed to power down\n");
|
|
return;
|
|
}
|
|
if (!pmf_device_register(self, ihidev_suspend, ihidev_resume))
|
|
aprint_error_dev(self, "couldn't establish power handler\n");
|
|
}
|
|
|
|
static int
|
|
ihidev_detach(device_t self, int flags)
|
|
{
|
|
struct ihidev_softc *sc = device_private(self);
|
|
|
|
mutex_enter(&sc->sc_intr_lock);
|
|
#if NACPICA > 0
|
|
if (sc->sc_ih != NULL)
|
|
acpi_intr_disestablish(sc->sc_ih);
|
|
#endif
|
|
if (ihidev_hid_command(sc, I2C_HID_CMD_SET_POWER,
|
|
&I2C_HID_POWER_OFF, true))
|
|
aprint_error_dev(sc->sc_dev, "failed to power down\n");
|
|
mutex_exit(&sc->sc_intr_lock);
|
|
if (sc->sc_ibuf != NULL) {
|
|
kmem_free(sc->sc_ibuf, sc->sc_isize);
|
|
sc->sc_ibuf = NULL;
|
|
}
|
|
|
|
if (sc->sc_report != NULL)
|
|
kmem_free(sc->sc_report, sc->sc_reportlen);
|
|
|
|
pmf_device_deregister(self);
|
|
return (0);
|
|
}
|
|
|
|
static bool
|
|
ihidev_suspend(device_t self, const pmf_qual_t *q)
|
|
{
|
|
struct ihidev_softc *sc = device_private(self);
|
|
|
|
mutex_enter(&sc->sc_intr_lock);
|
|
if (sc->sc_refcnt > 0) {
|
|
printf("ihidev power off\n");
|
|
if (ihidev_hid_command(sc, I2C_HID_CMD_SET_POWER,
|
|
&I2C_HID_POWER_OFF, true))
|
|
aprint_error_dev(sc->sc_dev, "failed to power down\n");
|
|
}
|
|
mutex_exit(&sc->sc_intr_lock);
|
|
return true;
|
|
}
|
|
|
|
static bool
|
|
ihidev_resume(device_t self, const pmf_qual_t *q)
|
|
{
|
|
struct ihidev_softc *sc = device_private(self);
|
|
|
|
mutex_enter(&sc->sc_intr_lock);
|
|
if (sc->sc_refcnt > 0) {
|
|
printf("ihidev power reset\n");
|
|
ihidev_reset(sc, true);
|
|
}
|
|
mutex_exit(&sc->sc_intr_lock);
|
|
return true;
|
|
}
|
|
|
|
static int
|
|
ihidev_hid_command(struct ihidev_softc *sc, int hidcmd, void *arg, bool poll)
|
|
{
|
|
int i, res = 1;
|
|
int flags = poll ? I2C_F_POLL : 0;
|
|
|
|
iic_acquire_bus(sc->sc_tag, flags);
|
|
|
|
switch (hidcmd) {
|
|
case I2C_HID_CMD_DESCR: {
|
|
/*
|
|
* 5.2.2 - HID Descriptor Retrieval
|
|
* register is passed from the controller
|
|
*/
|
|
uint8_t cmd[] = {
|
|
htole16(sc->sc_hid_desc_addr) & 0xff,
|
|
htole16(sc->sc_hid_desc_addr) >> 8,
|
|
};
|
|
|
|
DPRINTF(("%s: HID command I2C_HID_CMD_DESCR at 0x%x\n",
|
|
sc->sc_dev.dv_xname, htole16(sc->sc_hid_desc_addr)));
|
|
|
|
/* 20 00 */
|
|
res = iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP, sc->sc_addr,
|
|
&cmd, sizeof(cmd), &sc->hid_desc_buf,
|
|
sizeof(struct i2c_hid_desc), flags);
|
|
|
|
DPRINTF(("%s: HID descriptor:", sc->sc_dev.dv_xname));
|
|
for (i = 0; i < sizeof(struct i2c_hid_desc); i++)
|
|
DPRINTF((" %.2x", sc->hid_desc_buf[i]));
|
|
DPRINTF(("\n"));
|
|
|
|
break;
|
|
}
|
|
case I2C_HID_CMD_RESET: {
|
|
uint8_t cmd[] = {
|
|
htole16(sc->hid_desc.wCommandRegister) & 0xff,
|
|
htole16(sc->hid_desc.wCommandRegister) >> 8,
|
|
0,
|
|
I2C_HID_CMD_RESET,
|
|
};
|
|
|
|
DPRINTF(("%s: HID command I2C_HID_CMD_RESET\n",
|
|
sc->sc_dev.dv_xname));
|
|
|
|
/* 22 00 00 01 */
|
|
res = iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP, sc->sc_addr,
|
|
&cmd, sizeof(cmd), NULL, 0, flags);
|
|
|
|
break;
|
|
}
|
|
case I2C_HID_CMD_GET_REPORT: {
|
|
struct i2c_hid_report_request *rreq =
|
|
(struct i2c_hid_report_request *)arg;
|
|
|
|
uint8_t cmd[] = {
|
|
htole16(sc->hid_desc.wCommandRegister) & 0xff,
|
|
htole16(sc->hid_desc.wCommandRegister) >> 8,
|
|
0,
|
|
I2C_HID_CMD_GET_REPORT,
|
|
0, 0, 0,
|
|
};
|
|
int cmdlen = 7;
|
|
int dataoff = 4;
|
|
int report_id = rreq->id;
|
|
int report_id_len = 1;
|
|
int report_len = rreq->len + 2;
|
|
int d;
|
|
uint8_t *tmprep;
|
|
|
|
DPRINTF(("%s: HID command I2C_HID_CMD_GET_REPORT %d "
|
|
"(type %d, len %d)\n", sc->sc_dev.dv_xname, report_id,
|
|
rreq->type, rreq->len));
|
|
|
|
/*
|
|
* 7.2.2.4 - "The protocol is optimized for Report < 15. If a
|
|
* report ID >= 15 is necessary, then the Report ID in the Low
|
|
* Byte must be set to 1111 and a Third Byte is appended to the
|
|
* protocol. This Third Byte contains the entire/actual report
|
|
* ID."
|
|
*/
|
|
if (report_id >= 15) {
|
|
cmd[dataoff++] = report_id;
|
|
report_id = 15;
|
|
report_id_len = 2;
|
|
} else
|
|
cmdlen--;
|
|
|
|
cmd[2] = report_id | rreq->type << 4;
|
|
|
|
cmd[dataoff++] = sc->hid_desc.wDataRegister & 0xff;
|
|
cmd[dataoff] = sc->hid_desc.wDataRegister >> 8;
|
|
|
|
/*
|
|
* 7.2.2.2 - Response will be a 2-byte length value, the report
|
|
* id with length determined above, and then the report.
|
|
* Allocate rreq->len + 2 + 2 bytes, read into that temporary
|
|
* buffer, and then copy only the report back out to
|
|
* rreq->data.
|
|
*/
|
|
report_len += report_id_len;
|
|
tmprep = kmem_zalloc(report_len, KM_NOSLEEP);
|
|
|
|
/* type 3 id 8: 22 00 38 02 23 00 */
|
|
res = iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP, sc->sc_addr,
|
|
&cmd, cmdlen, tmprep, report_len, flags);
|
|
|
|
d = tmprep[0] | tmprep[1] << 8;
|
|
if (d != report_len) {
|
|
DPRINTF(("%s: response size %d != expected length %d\n",
|
|
sc->sc_dev.dv_xname, d, report_len));
|
|
}
|
|
|
|
if (report_id_len == 2)
|
|
d = tmprep[2] | tmprep[3] << 8;
|
|
else
|
|
d = tmprep[2];
|
|
|
|
if (d != rreq->id) {
|
|
DPRINTF(("%s: response report id %d != %d\n",
|
|
sc->sc_dev.dv_xname, d, rreq->id));
|
|
iic_release_bus(sc->sc_tag, 0);
|
|
kmem_free(tmprep, report_len);
|
|
return (1);
|
|
}
|
|
|
|
DPRINTF(("%s: response:", sc->sc_dev.dv_xname));
|
|
for (i = 0; i < report_len; i++)
|
|
DPRINTF((" %.2x", tmprep[i]));
|
|
DPRINTF(("\n"));
|
|
|
|
memcpy(rreq->data, tmprep + 2 + report_id_len, rreq->len);
|
|
kmem_free(tmprep, report_len);
|
|
|
|
break;
|
|
}
|
|
case I2C_HID_CMD_SET_REPORT: {
|
|
struct i2c_hid_report_request *rreq =
|
|
(struct i2c_hid_report_request *)arg;
|
|
|
|
uint8_t cmd[] = {
|
|
htole16(sc->hid_desc.wCommandRegister) & 0xff,
|
|
htole16(sc->hid_desc.wCommandRegister) >> 8,
|
|
0,
|
|
I2C_HID_CMD_SET_REPORT,
|
|
0, 0, 0, 0, 0, 0,
|
|
};
|
|
int cmdlen = 10;
|
|
int report_id = rreq->id;
|
|
int report_len = 2 + (report_id ? 1 : 0) + rreq->len;
|
|
int dataoff;
|
|
uint8_t *finalcmd;
|
|
|
|
DPRINTF(("%s: HID command I2C_HID_CMD_SET_REPORT %d "
|
|
"(type %d, len %d):", sc->sc_dev.dv_xname, report_id,
|
|
rreq->type, rreq->len));
|
|
for (i = 0; i < rreq->len; i++)
|
|
DPRINTF((" %.2x", ((uint8_t *)rreq->data)[i]));
|
|
DPRINTF(("\n"));
|
|
|
|
/*
|
|
* 7.2.2.4 - "The protocol is optimized for Report < 15. If a
|
|
* report ID >= 15 is necessary, then the Report ID in the Low
|
|
* Byte must be set to 1111 and a Third Byte is appended to the
|
|
* protocol. This Third Byte contains the entire/actual report
|
|
* ID."
|
|
*/
|
|
dataoff = 4;
|
|
if (report_id >= 15) {
|
|
cmd[dataoff++] = report_id;
|
|
report_id = 15;
|
|
} else
|
|
cmdlen--;
|
|
|
|
cmd[2] = report_id | rreq->type << 4;
|
|
|
|
if (rreq->type == I2C_HID_REPORT_TYPE_FEATURE) {
|
|
cmd[dataoff++] = htole16(sc->hid_desc.wDataRegister)
|
|
& 0xff;
|
|
cmd[dataoff++] = htole16(sc->hid_desc.wDataRegister)
|
|
>> 8;
|
|
} else {
|
|
cmd[dataoff++] = htole16(sc->hid_desc.wOutputRegister)
|
|
& 0xff;
|
|
cmd[dataoff++] = htole16(sc->hid_desc.wOutputRegister)
|
|
>> 8;
|
|
}
|
|
|
|
cmd[dataoff++] = report_len & 0xff;
|
|
cmd[dataoff++] = report_len >> 8;
|
|
cmd[dataoff] = rreq->id;
|
|
|
|
finalcmd = kmem_zalloc(cmdlen + rreq->len, KM_NOSLEEP);
|
|
|
|
memcpy(finalcmd, cmd, cmdlen);
|
|
memcpy(finalcmd + cmdlen, rreq->data, rreq->len);
|
|
|
|
/* type 3 id 4: 22 00 34 03 23 00 04 00 04 03 */
|
|
res = iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP, sc->sc_addr,
|
|
finalcmd, cmdlen + rreq->len, NULL, 0, flags);
|
|
kmem_free(finalcmd, cmdlen + rreq->len);
|
|
|
|
break;
|
|
}
|
|
|
|
case I2C_HID_CMD_SET_POWER: {
|
|
int power = *(int *)arg;
|
|
uint8_t cmd[] = {
|
|
htole16(sc->hid_desc.wCommandRegister) & 0xff,
|
|
htole16(sc->hid_desc.wCommandRegister) >> 8,
|
|
power,
|
|
I2C_HID_CMD_SET_POWER,
|
|
};
|
|
|
|
DPRINTF(("%s: HID command I2C_HID_CMD_SET_POWER(%d)\n",
|
|
sc->sc_dev.dv_xname, power));
|
|
|
|
/* 22 00 00 08 */
|
|
res = iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP, sc->sc_addr,
|
|
&cmd, sizeof(cmd), NULL, 0, flags);
|
|
|
|
break;
|
|
}
|
|
case I2C_HID_REPORT_DESCR: {
|
|
uint8_t cmd[] = {
|
|
htole16(sc->hid_desc.wReportDescRegister) & 0xff,
|
|
htole16(sc->hid_desc.wReportDescRegister) >> 8,
|
|
};
|
|
|
|
DPRINTF(("%s: HID command I2C_HID_REPORT_DESCR at 0x%x with "
|
|
"size %d\n", sc->sc_dev.dv_xname, cmd[0],
|
|
sc->sc_reportlen));
|
|
|
|
/* 20 00 */
|
|
res = iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP, sc->sc_addr,
|
|
&cmd, sizeof(cmd), sc->sc_report, sc->sc_reportlen, flags);
|
|
|
|
DPRINTF(("%s: HID report descriptor:", sc->sc_dev.dv_xname));
|
|
for (i = 0; i < sc->sc_reportlen; i++)
|
|
DPRINTF((" %.2x", sc->sc_report[i]));
|
|
DPRINTF(("\n"));
|
|
|
|
break;
|
|
}
|
|
default:
|
|
aprint_error_dev(sc->sc_dev, "unknown command %d\n",
|
|
hidcmd);
|
|
}
|
|
|
|
iic_release_bus(sc->sc_tag, flags);
|
|
|
|
return (res);
|
|
}
|
|
|
|
static int
|
|
ihidev_reset(struct ihidev_softc *sc, bool poll)
|
|
{
|
|
DPRINTF(("%s: resetting\n", sc->sc_dev.dv_xname));
|
|
|
|
if (ihidev_hid_command(sc, I2C_HID_CMD_SET_POWER,
|
|
&I2C_HID_POWER_ON, poll)) {
|
|
aprint_error_dev(sc->sc_dev, "failed to power on\n");
|
|
return (1);
|
|
}
|
|
|
|
DELAY(1000);
|
|
|
|
if (ihidev_hid_command(sc, I2C_HID_CMD_RESET, 0, poll)) {
|
|
aprint_error_dev(sc->sc_dev, "failed to reset hardware\n");
|
|
|
|
ihidev_hid_command(sc, I2C_HID_CMD_SET_POWER,
|
|
&I2C_HID_POWER_OFF, poll);
|
|
|
|
return (1);
|
|
}
|
|
|
|
DELAY(1000);
|
|
|
|
return (0);
|
|
}
|
|
|
|
/*
|
|
* 5.2.2 - HID Descriptor Retrieval
|
|
*
|
|
* parse HID Descriptor that has already been read into hid_desc with
|
|
* I2C_HID_CMD_DESCR
|
|
*/
|
|
static int
|
|
ihidev_hid_desc_parse(struct ihidev_softc *sc)
|
|
{
|
|
int retries = 3;
|
|
|
|
/* must be v01.00 */
|
|
if (le16toh(sc->hid_desc.bcdVersion) != 0x0100) {
|
|
aprint_error_dev(sc->sc_dev,
|
|
"bad HID descriptor bcdVersion (0x%x)\n",
|
|
le16toh(sc->hid_desc.bcdVersion));
|
|
return (1);
|
|
}
|
|
|
|
/* must be 30 bytes for v1.00 */
|
|
if (le16toh(sc->hid_desc.wHIDDescLength !=
|
|
sizeof(struct i2c_hid_desc))) {
|
|
aprint_error_dev(sc->sc_dev,
|
|
"bad HID descriptor size (%d != %zu)\n",
|
|
le16toh(sc->hid_desc.wHIDDescLength),
|
|
sizeof(struct i2c_hid_desc));
|
|
return (1);
|
|
}
|
|
|
|
if (le16toh(sc->hid_desc.wReportDescLength) <= 0) {
|
|
aprint_error_dev(sc->sc_dev,
|
|
"bad HID report descriptor size (%d)\n",
|
|
le16toh(sc->hid_desc.wReportDescLength));
|
|
return (1);
|
|
}
|
|
|
|
while (retries-- > 0) {
|
|
if (ihidev_reset(sc, false)) {
|
|
if (retries == 0)
|
|
return(1);
|
|
|
|
DELAY(1000);
|
|
}
|
|
else
|
|
break;
|
|
}
|
|
|
|
sc->sc_reportlen = le16toh(sc->hid_desc.wReportDescLength);
|
|
sc->sc_report = kmem_zalloc(sc->sc_reportlen, KM_NOSLEEP);
|
|
|
|
if (ihidev_hid_command(sc, I2C_HID_REPORT_DESCR, 0, false)) {
|
|
aprint_error_dev(sc->sc_dev, "failed fetching HID report\n");
|
|
return (1);
|
|
}
|
|
|
|
return (0);
|
|
}
|
|
|
|
static int
|
|
ihidev_intr(void *arg)
|
|
{
|
|
struct ihidev_softc *sc = arg;
|
|
struct ihidev *scd;
|
|
u_int psize;
|
|
int res, i;
|
|
u_char *p;
|
|
u_int rep = 0;
|
|
|
|
/*
|
|
* XXX: force I2C_F_POLL for now to avoid dwiic interrupting
|
|
* while we are interrupting
|
|
*/
|
|
|
|
mutex_enter(&sc->sc_intr_lock);
|
|
iic_acquire_bus(sc->sc_tag, I2C_F_POLL);
|
|
|
|
res = iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP, sc->sc_addr, NULL, 0,
|
|
sc->sc_ibuf, sc->sc_isize, I2C_F_POLL);
|
|
|
|
iic_release_bus(sc->sc_tag, I2C_F_POLL);
|
|
mutex_exit(&sc->sc_intr_lock);
|
|
if (res != 0)
|
|
return 1;
|
|
|
|
/*
|
|
* 6.1.1 - First two bytes are the packet length, which must be less
|
|
* than or equal to wMaxInputLength
|
|
*/
|
|
psize = sc->sc_ibuf[0] | sc->sc_ibuf[1] << 8;
|
|
if (!psize || psize > sc->sc_isize) {
|
|
DPRINTF(("%s: %s: invalid packet size (%d vs. %d)\n",
|
|
sc->sc_dev.dv_xname, __func__, psize, sc->sc_isize));
|
|
return (1);
|
|
}
|
|
|
|
/* 3rd byte is the report id */
|
|
p = sc->sc_ibuf + 2;
|
|
psize -= 2;
|
|
if (sc->sc_nrepid != 1)
|
|
rep = *p++, psize--;
|
|
|
|
if (rep >= sc->sc_nrepid) {
|
|
aprint_error_dev(sc->sc_dev, "%s: bad report id %d\n",
|
|
__func__, rep);
|
|
return (1);
|
|
}
|
|
|
|
DPRINTF(("%s: ihidev_intr: hid input (rep %d):", sc->sc_dev.dv_xname,
|
|
rep));
|
|
for (i = 0; i < sc->sc_isize; i++)
|
|
DPRINTF((" %.2x", sc->sc_ibuf[i]));
|
|
DPRINTF(("\n"));
|
|
|
|
scd = sc->sc_subdevs[rep];
|
|
if (scd == NULL || !(scd->sc_state & IHIDEV_OPEN))
|
|
return (1);
|
|
|
|
scd->sc_intr(scd, p, psize);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int
|
|
ihidev_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_none); hid_get_item(d, &h); )
|
|
if ((int)h.report_ID > maxid)
|
|
maxid = h.report_ID;
|
|
hid_end_parse(d);
|
|
|
|
return (maxid);
|
|
}
|
|
|
|
static int
|
|
ihidev_print(void *aux, const char *pnp)
|
|
{
|
|
struct ihidev_attach_arg *iha = aux;
|
|
|
|
if (iha->reportid == IHIDEV_CLAIM_ALLREPORTID)
|
|
return (QUIET);
|
|
|
|
if (pnp)
|
|
aprint_normal("hid at %s", pnp);
|
|
|
|
if (iha->reportid != 0)
|
|
aprint_normal(" reportid %d", iha->reportid);
|
|
|
|
return (UNCONF);
|
|
}
|
|
|
|
static int
|
|
ihidev_submatch(device_t parent, cfdata_t cf, const int *locs, void *aux)
|
|
{
|
|
struct ihidev_attach_arg *iha = aux;
|
|
|
|
if (cf->ihidevcf_reportid != IHIDEV_UNK_REPORTID &&
|
|
cf->ihidevcf_reportid != iha->reportid)
|
|
return (0);
|
|
|
|
return config_match(parent, cf, aux);
|
|
}
|
|
|
|
int
|
|
ihidev_open(struct ihidev *scd)
|
|
{
|
|
struct ihidev_softc *sc = scd->sc_parent;
|
|
|
|
DPRINTF(("%s: %s: state=%d refcnt=%d\n", sc->sc_dev.dv_xname,
|
|
__func__, scd->sc_state, sc->sc_refcnt));
|
|
|
|
if (scd->sc_state & IHIDEV_OPEN)
|
|
return (EBUSY);
|
|
|
|
scd->sc_state |= IHIDEV_OPEN;
|
|
|
|
if (sc->sc_refcnt++ || sc->sc_isize == 0)
|
|
return (0);
|
|
|
|
/* power on */
|
|
ihidev_reset(sc, false);
|
|
|
|
return (0);
|
|
}
|
|
|
|
void
|
|
ihidev_close(struct ihidev *scd)
|
|
{
|
|
struct ihidev_softc *sc = scd->sc_parent;
|
|
|
|
DPRINTF(("%s: %s: state=%d refcnt=%d\n", sc->sc_dev.dv_xname,
|
|
__func__, scd->sc_state, sc->sc_refcnt));
|
|
|
|
if (!(scd->sc_state & IHIDEV_OPEN))
|
|
return;
|
|
|
|
scd->sc_state &= ~IHIDEV_OPEN;
|
|
|
|
if (--sc->sc_refcnt)
|
|
return;
|
|
|
|
if (ihidev_hid_command(sc, I2C_HID_CMD_SET_POWER,
|
|
&I2C_HID_POWER_OFF, false))
|
|
aprint_error_dev(sc->sc_dev, "failed to power down\n");
|
|
}
|
|
|
|
void
|
|
ihidev_get_report_desc(struct ihidev_softc *sc, void **desc, int *size)
|
|
{
|
|
*desc = sc->sc_report;
|
|
*size = sc->sc_reportlen;
|
|
}
|
|
|
|
/* convert hid_* constants used throughout HID code to i2c HID equivalents */
|
|
int
|
|
ihidev_report_type_conv(int hid_type_id)
|
|
{
|
|
switch (hid_type_id) {
|
|
case hid_input:
|
|
return I2C_HID_REPORT_TYPE_INPUT;
|
|
case hid_output:
|
|
return I2C_HID_REPORT_TYPE_OUTPUT;
|
|
case hid_feature:
|
|
return I2C_HID_REPORT_TYPE_FEATURE;
|
|
default:
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
int
|
|
ihidev_get_report(struct device *dev, int type, int id, void *data, int len)
|
|
{
|
|
struct ihidev_softc *sc = (struct ihidev_softc *)dev;
|
|
struct i2c_hid_report_request rreq;
|
|
int ctype;
|
|
|
|
if ((ctype = ihidev_report_type_conv(type)) < 0)
|
|
return (1);
|
|
|
|
rreq.type = ctype;
|
|
rreq.id = id;
|
|
rreq.data = data;
|
|
rreq.len = len;
|
|
|
|
if (ihidev_hid_command(sc, I2C_HID_CMD_GET_REPORT, &rreq, false)) {
|
|
aprint_error_dev(sc->sc_dev, "failed fetching report\n");
|
|
return (1);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int
|
|
ihidev_set_report(struct device *dev, int type, int id, void *data,
|
|
int len)
|
|
{
|
|
struct ihidev_softc *sc = (struct ihidev_softc *)dev;
|
|
struct i2c_hid_report_request rreq;
|
|
int ctype;
|
|
|
|
if ((ctype = ihidev_report_type_conv(type)) < 0)
|
|
return (1);
|
|
|
|
rreq.type = ctype;
|
|
rreq.id = id;
|
|
rreq.data = data;
|
|
rreq.len = len;
|
|
|
|
if (ihidev_hid_command(sc, I2C_HID_CMD_SET_REPORT, &rreq, false)) {
|
|
aprint_error_dev(sc->sc_dev, "failed setting report\n");
|
|
return (1);
|
|
}
|
|
|
|
return 0;
|
|
}
|