Home | History | Annotate | Line # | Download | only in i2c
ihidev.c revision 1.5.2.2
      1  1.5.2.2    martin /* $NetBSD: ihidev.c,v 1.5.2.2 2020/04/13 08:04:20 martin Exp $ */
      2      1.1    bouyer /* $OpenBSD ihidev.c,v 1.13 2017/04/08 02:57:23 deraadt Exp $ */
      3      1.1    bouyer 
      4      1.1    bouyer /*-
      5      1.1    bouyer  * Copyright (c) 2017 The NetBSD Foundation, Inc.
      6      1.1    bouyer  * All rights reserved.
      7      1.1    bouyer  *
      8      1.1    bouyer  * This code is derived from software contributed to The NetBSD Foundation
      9      1.1    bouyer  * by Manuel Bouyer.
     10      1.1    bouyer  *
     11      1.1    bouyer  * Redistribution and use in source and binary forms, with or without
     12      1.1    bouyer  * modification, are permitted provided that the following conditions
     13      1.1    bouyer  * are met:
     14      1.1    bouyer  * 1. Redistributions of source code must retain the above copyright
     15      1.1    bouyer  *    notice, this list of conditions and the following disclaimer.
     16      1.1    bouyer  * 2. Redistributions in binary form must reproduce the above copyright
     17      1.1    bouyer  *    notice, this list of conditions and the following disclaimer in the
     18      1.1    bouyer  *    documentation and/or other materials provided with the distribution.
     19      1.1    bouyer  *
     20      1.1    bouyer  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21      1.1    bouyer  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22      1.1    bouyer  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23      1.1    bouyer  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24      1.1    bouyer  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25      1.1    bouyer  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26      1.1    bouyer  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27      1.1    bouyer  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28      1.1    bouyer  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29      1.1    bouyer  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30      1.1    bouyer  * POSSIBILITY OF SUCH DAMAGE.
     31      1.1    bouyer  */
     32      1.1    bouyer 
     33      1.1    bouyer /*
     34      1.1    bouyer  * Copyright (c) 2015, 2016 joshua stein <jcs (at) openbsd.org>
     35      1.1    bouyer  *
     36      1.1    bouyer  * Permission to use, copy, modify, and distribute this software for any
     37      1.1    bouyer  * purpose with or without fee is hereby granted, provided that the above
     38      1.1    bouyer  * copyright notice and this permission notice appear in all copies.
     39      1.1    bouyer  *
     40      1.1    bouyer  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
     41      1.1    bouyer  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
     42      1.1    bouyer  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
     43      1.1    bouyer  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
     44      1.1    bouyer  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
     45      1.1    bouyer  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
     46      1.1    bouyer  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
     47      1.1    bouyer  */
     48      1.1    bouyer 
     49      1.1    bouyer /*
     50      1.1    bouyer  * HID-over-i2c driver
     51      1.1    bouyer  *
     52      1.1    bouyer  * https://msdn.microsoft.com/en-us/library/windows/hardware/dn642101%28v=vs.85%29.aspx
     53      1.1    bouyer  *
     54      1.1    bouyer  */
     55      1.1    bouyer 
     56      1.1    bouyer #include <sys/cdefs.h>
     57  1.5.2.2    martin __KERNEL_RCSID(0, "$NetBSD: ihidev.c,v 1.5.2.2 2020/04/13 08:04:20 martin Exp $");
     58      1.1    bouyer 
     59      1.1    bouyer #include <sys/param.h>
     60      1.1    bouyer #include <sys/systm.h>
     61      1.1    bouyer #include <sys/device.h>
     62      1.1    bouyer #include <sys/kmem.h>
     63      1.1    bouyer 
     64      1.1    bouyer 
     65      1.1    bouyer #include <dev/i2c/i2cvar.h>
     66      1.1    bouyer #include <dev/i2c/ihidev.h>
     67      1.1    bouyer 
     68      1.1    bouyer #include <dev/hid/hid.h>
     69      1.1    bouyer 
     70      1.1    bouyer #if defined(__i386__) || defined(__amd64__)
     71      1.1    bouyer #  include "acpica.h"
     72      1.1    bouyer #endif
     73      1.1    bouyer #if NACPICA > 0
     74  1.5.2.2    martin #include <dev/acpi/acpivar.h>
     75      1.1    bouyer #include <dev/acpi/acpi_intr.h>
     76      1.1    bouyer #endif
     77      1.1    bouyer 
     78      1.1    bouyer #include "locators.h"
     79      1.1    bouyer 
     80      1.1    bouyer /* #define IHIDEV_DEBUG */
     81      1.1    bouyer 
     82      1.1    bouyer #ifdef IHIDEV_DEBUG
     83      1.1    bouyer #define DPRINTF(x) printf x
     84      1.1    bouyer #else
     85      1.1    bouyer #define DPRINTF(x)
     86      1.1    bouyer #endif
     87      1.1    bouyer 
     88      1.1    bouyer /* 7.2 */
     89      1.1    bouyer enum {
     90      1.1    bouyer 	I2C_HID_CMD_DESCR	= 0x0,
     91      1.1    bouyer 	I2C_HID_CMD_RESET	= 0x1,
     92      1.1    bouyer 	I2C_HID_CMD_GET_REPORT	= 0x2,
     93      1.1    bouyer 	I2C_HID_CMD_SET_REPORT	= 0x3,
     94      1.1    bouyer 	I2C_HID_CMD_GET_IDLE	= 0x4,
     95      1.1    bouyer 	I2C_HID_CMD_SET_IDLE	= 0x5,
     96      1.1    bouyer 	I2C_HID_CMD_GET_PROTO	= 0x6,
     97      1.1    bouyer 	I2C_HID_CMD_SET_PROTO	= 0x7,
     98      1.1    bouyer 	I2C_HID_CMD_SET_POWER	= 0x8,
     99      1.1    bouyer 
    100      1.1    bouyer 	/* pseudo commands */
    101      1.1    bouyer 	I2C_HID_REPORT_DESCR	= 0x100,
    102      1.1    bouyer };
    103      1.1    bouyer 
    104      1.1    bouyer static int I2C_HID_POWER_ON	= 0x0;
    105      1.1    bouyer static int I2C_HID_POWER_OFF	= 0x1;
    106      1.1    bouyer 
    107      1.1    bouyer static int	ihidev_match(device_t, cfdata_t, void *);
    108      1.1    bouyer static void	ihidev_attach(device_t, device_t, void *);
    109      1.1    bouyer static int	ihidev_detach(device_t, int);
    110      1.1    bouyer CFATTACH_DECL_NEW(ihidev, sizeof(struct ihidev_softc),
    111      1.1    bouyer     ihidev_match, ihidev_attach, ihidev_detach, NULL);
    112      1.1    bouyer 
    113  1.5.2.2    martin static bool	ihiddev_intr_init(struct ihidev_softc *);
    114  1.5.2.2    martin static void	ihiddev_intr_fini(struct ihidev_softc *);
    115  1.5.2.2    martin 
    116      1.1    bouyer static bool	ihidev_suspend(device_t, const pmf_qual_t *);
    117      1.1    bouyer static bool	ihidev_resume(device_t, const pmf_qual_t *);
    118      1.1    bouyer static int	ihidev_hid_command(struct ihidev_softc *, int, void *, bool);
    119  1.5.2.1  christos static int	ihidev_intr(void *);
    120  1.5.2.2    martin static void	ihidev_softintr(void *);
    121      1.1    bouyer static int	ihidev_reset(struct ihidev_softc *, bool);
    122      1.1    bouyer static int	ihidev_hid_desc_parse(struct ihidev_softc *);
    123      1.1    bouyer 
    124      1.1    bouyer static int	ihidev_maxrepid(void *, int);
    125      1.1    bouyer static int	ihidev_print(void *, const char *);
    126      1.1    bouyer static int	ihidev_submatch(device_t, cfdata_t, const int *, void *);
    127      1.1    bouyer 
    128      1.5   thorpej static const struct device_compatible_entry compat_data[] = {
    129      1.5   thorpej 	{ "hid-over-i2c",		0 },
    130      1.5   thorpej 	{ NULL,				0 }
    131      1.4   thorpej };
    132      1.4   thorpej 
    133      1.1    bouyer static int
    134      1.1    bouyer ihidev_match(device_t parent, cfdata_t match, void *aux)
    135      1.1    bouyer {
    136      1.1    bouyer 	struct i2c_attach_args * const ia = aux;
    137      1.3   thorpej 	int match_result;
    138      1.3   thorpej 
    139      1.5   thorpej 	if (iic_use_direct_match(ia, match, compat_data, &match_result))
    140      1.3   thorpej 		return I2C_MATCH_DIRECT_COMPATIBLE;
    141      1.1    bouyer 
    142      1.1    bouyer 	return 0;
    143      1.1    bouyer }
    144      1.1    bouyer 
    145      1.1    bouyer static void
    146      1.1    bouyer ihidev_attach(device_t parent, device_t self, void *aux)
    147      1.1    bouyer {
    148      1.1    bouyer 	struct ihidev_softc *sc = device_private(self);
    149      1.1    bouyer 	struct i2c_attach_args *ia = aux;
    150      1.1    bouyer 	struct ihidev_attach_arg iha;
    151      1.1    bouyer 	device_t dev;
    152      1.1    bouyer 	int repid, repsz;
    153      1.1    bouyer 	int isize;
    154      1.1    bouyer 	uint32_t v;
    155      1.1    bouyer 	int locs[IHIDBUSCF_NLOCS];
    156      1.1    bouyer 
    157      1.1    bouyer 
    158      1.1    bouyer 	sc->sc_dev = self;
    159      1.1    bouyer 	sc->sc_tag = ia->ia_tag;
    160      1.1    bouyer 	sc->sc_addr = ia->ia_addr;
    161      1.1    bouyer 	sc->sc_phandle = ia->ia_cookie;
    162      1.1    bouyer 	mutex_init(&sc->sc_intr_lock, MUTEX_DEFAULT, IPL_VM);
    163      1.1    bouyer 
    164      1.1    bouyer 	if (!prop_dictionary_get_uint32(ia->ia_prop, "hid-descr-addr", &v)) {
    165      1.1    bouyer 		aprint_error(": no hid-descr-addr value\n");
    166      1.1    bouyer 		return;
    167      1.1    bouyer 	}
    168      1.1    bouyer 
    169      1.1    bouyer 	sc->sc_hid_desc_addr = v;
    170      1.1    bouyer 
    171      1.1    bouyer 	if (ihidev_hid_command(sc, I2C_HID_CMD_DESCR, NULL, false) ||
    172      1.1    bouyer 	    ihidev_hid_desc_parse(sc)) {
    173      1.1    bouyer 		aprint_error(": failed fetching initial HID descriptor\n");
    174      1.1    bouyer 		return;
    175      1.1    bouyer 	}
    176      1.1    bouyer 
    177      1.1    bouyer 	aprint_naive("\n");
    178      1.1    bouyer 	aprint_normal(": vendor 0x%x product 0x%x, %s\n",
    179      1.1    bouyer 	    le16toh(sc->hid_desc.wVendorID), le16toh(sc->hid_desc.wProductID),
    180      1.1    bouyer 	    ia->ia_name);
    181      1.1    bouyer 
    182      1.1    bouyer 	sc->sc_nrepid = ihidev_maxrepid(sc->sc_report, sc->sc_reportlen);
    183      1.1    bouyer 	if (sc->sc_nrepid < 0)
    184      1.1    bouyer 		return;
    185      1.1    bouyer 
    186      1.1    bouyer 	aprint_normal_dev(self, "%d report id%s\n", sc->sc_nrepid,
    187      1.1    bouyer 	    sc->sc_nrepid > 1 ? "s" : "");
    188      1.1    bouyer 
    189      1.1    bouyer 	sc->sc_nrepid++;
    190      1.1    bouyer 	sc->sc_subdevs = kmem_zalloc(sc->sc_nrepid * sizeof(struct ihidev *),
    191  1.5.2.2    martin 	    KM_SLEEP);
    192      1.1    bouyer 
    193      1.1    bouyer 	/* find largest report size and allocate memory for input buffer */
    194      1.1    bouyer 	sc->sc_isize = le16toh(sc->hid_desc.wMaxInputLength);
    195      1.1    bouyer 	for (repid = 0; repid < sc->sc_nrepid; repid++) {
    196      1.1    bouyer 		repsz = hid_report_size(sc->sc_report, sc->sc_reportlen,
    197      1.1    bouyer 		    hid_input, repid);
    198      1.1    bouyer 
    199      1.1    bouyer 		isize = repsz + 2; /* two bytes for the length */
    200      1.1    bouyer 		isize += (sc->sc_nrepid != 1); /* one byte for the report ID */
    201      1.1    bouyer 		if (isize > sc->sc_isize)
    202      1.1    bouyer 			sc->sc_isize = isize;
    203      1.1    bouyer 
    204      1.1    bouyer 		DPRINTF(("%s: repid %d size %d\n", sc->sc_dev.dv_xname, repid,
    205      1.1    bouyer 		    repsz));
    206      1.1    bouyer 	}
    207  1.5.2.2    martin 	sc->sc_ibuf = kmem_zalloc(sc->sc_isize, KM_SLEEP);
    208  1.5.2.2    martin 	if (! ihiddev_intr_init(sc)) {
    209  1.5.2.2    martin 		return;
    210      1.1    bouyer 	}
    211      1.1    bouyer 
    212      1.1    bouyer 	iha.iaa = ia;
    213      1.1    bouyer 	iha.parent = sc;
    214      1.1    bouyer 
    215      1.1    bouyer 	/* Look for a driver claiming all report IDs first. */
    216      1.1    bouyer 	iha.reportid = IHIDEV_CLAIM_ALLREPORTID;
    217      1.1    bouyer 	locs[IHIDBUSCF_REPORTID] = IHIDEV_CLAIM_ALLREPORTID;
    218      1.1    bouyer 	dev = config_found_sm_loc(self, "ihidbus", locs, &iha,
    219      1.1    bouyer 	    ihidev_print, ihidev_submatch);
    220      1.1    bouyer 	if (dev != NULL) {
    221      1.1    bouyer 		for (repid = 0; repid < sc->sc_nrepid; repid++)
    222      1.1    bouyer 			sc->sc_subdevs[repid] = device_private(dev);
    223      1.1    bouyer 		return;
    224      1.1    bouyer 	}
    225      1.1    bouyer 
    226      1.1    bouyer 	for (repid = 0; repid < sc->sc_nrepid; repid++) {
    227      1.1    bouyer 		if (hid_report_size(sc->sc_report, sc->sc_reportlen, hid_input,
    228      1.1    bouyer 		    repid) == 0 &&
    229      1.1    bouyer 		    hid_report_size(sc->sc_report, sc->sc_reportlen,
    230      1.1    bouyer 		    hid_output, repid) == 0 &&
    231      1.1    bouyer 		    hid_report_size(sc->sc_report, sc->sc_reportlen,
    232      1.1    bouyer 		    hid_feature, repid) == 0)
    233      1.1    bouyer 			continue;
    234      1.1    bouyer 
    235      1.1    bouyer 		iha.reportid = repid;
    236      1.1    bouyer 		locs[IHIDBUSCF_REPORTID] = repid;
    237      1.1    bouyer 		dev = config_found_sm_loc(self, "ihidbus", locs,
    238      1.1    bouyer 		    &iha, ihidev_print, ihidev_submatch);
    239      1.1    bouyer 		sc->sc_subdevs[repid] = device_private(dev);
    240      1.1    bouyer 	}
    241      1.1    bouyer 
    242      1.1    bouyer 	/* power down until we're opened */
    243      1.1    bouyer 	if (ihidev_hid_command(sc, I2C_HID_CMD_SET_POWER, &I2C_HID_POWER_OFF, false)) {
    244      1.1    bouyer 		aprint_error_dev(sc->sc_dev, "failed to power down\n");
    245      1.1    bouyer 		return;
    246      1.1    bouyer 	}
    247      1.1    bouyer 	if (!pmf_device_register(self, ihidev_suspend, ihidev_resume))
    248      1.1    bouyer 		aprint_error_dev(self, "couldn't establish power handler\n");
    249      1.1    bouyer }
    250      1.1    bouyer 
    251      1.1    bouyer static int
    252      1.1    bouyer ihidev_detach(device_t self, int flags)
    253      1.1    bouyer {
    254      1.1    bouyer 	struct ihidev_softc *sc = device_private(self);
    255      1.1    bouyer 
    256      1.1    bouyer 	mutex_enter(&sc->sc_intr_lock);
    257  1.5.2.2    martin 	ihiddev_intr_fini(sc);
    258      1.1    bouyer 	if (ihidev_hid_command(sc, I2C_HID_CMD_SET_POWER,
    259      1.1    bouyer 	    &I2C_HID_POWER_OFF, true))
    260      1.1    bouyer 	aprint_error_dev(sc->sc_dev, "failed to power down\n");
    261      1.1    bouyer 	mutex_exit(&sc->sc_intr_lock);
    262      1.1    bouyer 	if (sc->sc_ibuf != NULL) {
    263      1.1    bouyer 		kmem_free(sc->sc_ibuf, sc->sc_isize);
    264      1.1    bouyer 		sc->sc_ibuf = NULL;
    265      1.1    bouyer 	}
    266      1.1    bouyer 
    267      1.1    bouyer 	if (sc->sc_report != NULL)
    268      1.1    bouyer 		kmem_free(sc->sc_report, sc->sc_reportlen);
    269      1.1    bouyer 
    270      1.1    bouyer 	pmf_device_deregister(self);
    271      1.1    bouyer 	return (0);
    272      1.1    bouyer }
    273      1.1    bouyer 
    274      1.1    bouyer static bool
    275      1.1    bouyer ihidev_suspend(device_t self, const pmf_qual_t *q)
    276      1.1    bouyer {
    277      1.1    bouyer 	struct ihidev_softc *sc = device_private(self);
    278      1.1    bouyer 
    279      1.1    bouyer 	mutex_enter(&sc->sc_intr_lock);
    280      1.1    bouyer 	if (sc->sc_refcnt > 0) {
    281      1.1    bouyer 		printf("ihidev power off\n");
    282      1.1    bouyer 		if (ihidev_hid_command(sc, I2C_HID_CMD_SET_POWER,
    283      1.1    bouyer 		    &I2C_HID_POWER_OFF, true))
    284      1.1    bouyer 		aprint_error_dev(sc->sc_dev, "failed to power down\n");
    285      1.1    bouyer 	}
    286      1.1    bouyer 	mutex_exit(&sc->sc_intr_lock);
    287      1.1    bouyer 	return true;
    288      1.1    bouyer }
    289      1.1    bouyer 
    290      1.1    bouyer static bool
    291      1.1    bouyer ihidev_resume(device_t self, const pmf_qual_t *q)
    292      1.1    bouyer {
    293      1.1    bouyer 	struct ihidev_softc *sc = device_private(self);
    294      1.1    bouyer 
    295      1.1    bouyer 	mutex_enter(&sc->sc_intr_lock);
    296      1.1    bouyer 	if (sc->sc_refcnt > 0) {
    297      1.1    bouyer 		printf("ihidev power reset\n");
    298      1.1    bouyer 		ihidev_reset(sc, true);
    299      1.1    bouyer 	}
    300      1.1    bouyer 	mutex_exit(&sc->sc_intr_lock);
    301      1.1    bouyer 	return true;
    302      1.1    bouyer }
    303      1.1    bouyer 
    304      1.1    bouyer static int
    305      1.1    bouyer ihidev_hid_command(struct ihidev_softc *sc, int hidcmd, void *arg, bool poll)
    306      1.1    bouyer {
    307      1.1    bouyer 	int i, res = 1;
    308      1.1    bouyer 	int flags = poll ? I2C_F_POLL : 0;
    309      1.1    bouyer 
    310      1.1    bouyer 	iic_acquire_bus(sc->sc_tag, flags);
    311      1.1    bouyer 
    312      1.1    bouyer 	switch (hidcmd) {
    313      1.1    bouyer 	case I2C_HID_CMD_DESCR: {
    314      1.1    bouyer 		/*
    315      1.1    bouyer 		 * 5.2.2 - HID Descriptor Retrieval
    316      1.1    bouyer 		 * register is passed from the controller
    317      1.1    bouyer 		 */
    318      1.1    bouyer 		uint8_t cmd[] = {
    319      1.1    bouyer 			htole16(sc->sc_hid_desc_addr) & 0xff,
    320      1.1    bouyer 			htole16(sc->sc_hid_desc_addr) >> 8,
    321      1.1    bouyer 		};
    322      1.1    bouyer 
    323      1.1    bouyer 		DPRINTF(("%s: HID command I2C_HID_CMD_DESCR at 0x%x\n",
    324      1.1    bouyer 		    sc->sc_dev.dv_xname, htole16(sc->sc_hid_desc_addr)));
    325      1.1    bouyer 
    326      1.1    bouyer 		/* 20 00 */
    327      1.1    bouyer 		res = iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP, sc->sc_addr,
    328      1.1    bouyer 		    &cmd, sizeof(cmd), &sc->hid_desc_buf,
    329      1.1    bouyer 		    sizeof(struct i2c_hid_desc), flags);
    330      1.1    bouyer 
    331      1.1    bouyer 		DPRINTF(("%s: HID descriptor:", sc->sc_dev.dv_xname));
    332      1.1    bouyer 		for (i = 0; i < sizeof(struct i2c_hid_desc); i++)
    333      1.1    bouyer 			DPRINTF((" %.2x", sc->hid_desc_buf[i]));
    334      1.1    bouyer 		DPRINTF(("\n"));
    335      1.1    bouyer 
    336      1.1    bouyer 		break;
    337      1.1    bouyer 	}
    338      1.1    bouyer 	case I2C_HID_CMD_RESET: {
    339      1.1    bouyer 		uint8_t cmd[] = {
    340      1.1    bouyer 			htole16(sc->hid_desc.wCommandRegister) & 0xff,
    341      1.1    bouyer 			htole16(sc->hid_desc.wCommandRegister) >> 8,
    342      1.1    bouyer 			0,
    343      1.1    bouyer 			I2C_HID_CMD_RESET,
    344      1.1    bouyer 		};
    345      1.1    bouyer 
    346      1.1    bouyer 		DPRINTF(("%s: HID command I2C_HID_CMD_RESET\n",
    347      1.1    bouyer 		    sc->sc_dev.dv_xname));
    348      1.1    bouyer 
    349      1.1    bouyer 		/* 22 00 00 01 */
    350      1.1    bouyer 		res = iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP, sc->sc_addr,
    351      1.1    bouyer 		    &cmd, sizeof(cmd), NULL, 0, flags);
    352      1.1    bouyer 
    353      1.1    bouyer 		break;
    354      1.1    bouyer 	}
    355      1.1    bouyer 	case I2C_HID_CMD_GET_REPORT: {
    356      1.1    bouyer 		struct i2c_hid_report_request *rreq =
    357      1.1    bouyer 		    (struct i2c_hid_report_request *)arg;
    358      1.1    bouyer 
    359      1.1    bouyer 		uint8_t cmd[] = {
    360      1.1    bouyer 			htole16(sc->hid_desc.wCommandRegister) & 0xff,
    361      1.1    bouyer 			htole16(sc->hid_desc.wCommandRegister) >> 8,
    362      1.1    bouyer 			0,
    363      1.1    bouyer 			I2C_HID_CMD_GET_REPORT,
    364      1.1    bouyer 			0, 0, 0,
    365      1.1    bouyer 		};
    366      1.1    bouyer 		int cmdlen = 7;
    367      1.1    bouyer 		int dataoff = 4;
    368      1.1    bouyer 		int report_id = rreq->id;
    369      1.1    bouyer 		int report_id_len = 1;
    370      1.1    bouyer 		int report_len = rreq->len + 2;
    371      1.1    bouyer 		int d;
    372      1.1    bouyer 		uint8_t *tmprep;
    373      1.1    bouyer 
    374      1.1    bouyer 		DPRINTF(("%s: HID command I2C_HID_CMD_GET_REPORT %d "
    375      1.1    bouyer 		    "(type %d, len %d)\n", sc->sc_dev.dv_xname, report_id,
    376      1.1    bouyer 		    rreq->type, rreq->len));
    377      1.1    bouyer 
    378      1.1    bouyer 		/*
    379      1.1    bouyer 		 * 7.2.2.4 - "The protocol is optimized for Report < 15.  If a
    380      1.1    bouyer 		 * report ID >= 15 is necessary, then the Report ID in the Low
    381      1.1    bouyer 		 * Byte must be set to 1111 and a Third Byte is appended to the
    382      1.1    bouyer 		 * protocol.  This Third Byte contains the entire/actual report
    383      1.1    bouyer 		 * ID."
    384      1.1    bouyer 		 */
    385      1.1    bouyer 		if (report_id >= 15) {
    386      1.1    bouyer 			cmd[dataoff++] = report_id;
    387      1.1    bouyer 			report_id = 15;
    388      1.1    bouyer 			report_id_len = 2;
    389      1.1    bouyer 		} else
    390      1.1    bouyer 			cmdlen--;
    391      1.1    bouyer 
    392      1.1    bouyer 		cmd[2] = report_id | rreq->type << 4;
    393      1.1    bouyer 
    394      1.1    bouyer 		cmd[dataoff++] = sc->hid_desc.wDataRegister & 0xff;
    395      1.1    bouyer 		cmd[dataoff] = sc->hid_desc.wDataRegister >> 8;
    396      1.1    bouyer 
    397      1.1    bouyer 		/*
    398      1.1    bouyer 		 * 7.2.2.2 - Response will be a 2-byte length value, the report
    399      1.1    bouyer 		 * id with length determined above, and then the report.
    400      1.1    bouyer 		 * Allocate rreq->len + 2 + 2 bytes, read into that temporary
    401      1.1    bouyer 		 * buffer, and then copy only the report back out to
    402      1.1    bouyer 		 * rreq->data.
    403      1.1    bouyer 		 */
    404      1.1    bouyer 		report_len += report_id_len;
    405      1.1    bouyer 		tmprep = kmem_zalloc(report_len, KM_NOSLEEP);
    406      1.1    bouyer 
    407      1.1    bouyer 		/* type 3 id 8: 22 00 38 02 23 00 */
    408      1.1    bouyer 		res = iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP, sc->sc_addr,
    409      1.1    bouyer 		    &cmd, cmdlen, tmprep, report_len, flags);
    410      1.1    bouyer 
    411      1.1    bouyer 		d = tmprep[0] | tmprep[1] << 8;
    412      1.1    bouyer 		if (d != report_len) {
    413      1.1    bouyer 			DPRINTF(("%s: response size %d != expected length %d\n",
    414      1.1    bouyer 			    sc->sc_dev.dv_xname, d, report_len));
    415      1.1    bouyer 		}
    416      1.1    bouyer 
    417      1.1    bouyer 		if (report_id_len == 2)
    418      1.1    bouyer 			d = tmprep[2] | tmprep[3] << 8;
    419      1.1    bouyer 		else
    420      1.1    bouyer 			d = tmprep[2];
    421      1.1    bouyer 
    422      1.1    bouyer 		if (d != rreq->id) {
    423      1.1    bouyer 			DPRINTF(("%s: response report id %d != %d\n",
    424      1.1    bouyer 			    sc->sc_dev.dv_xname, d, rreq->id));
    425      1.1    bouyer 			iic_release_bus(sc->sc_tag, 0);
    426      1.1    bouyer 			kmem_free(tmprep, report_len);
    427      1.1    bouyer 			return (1);
    428      1.1    bouyer 		}
    429      1.1    bouyer 
    430      1.1    bouyer 		DPRINTF(("%s: response:", sc->sc_dev.dv_xname));
    431      1.1    bouyer 		for (i = 0; i < report_len; i++)
    432      1.1    bouyer 			DPRINTF((" %.2x", tmprep[i]));
    433      1.1    bouyer 		DPRINTF(("\n"));
    434      1.1    bouyer 
    435      1.1    bouyer 		memcpy(rreq->data, tmprep + 2 + report_id_len, rreq->len);
    436      1.1    bouyer 		kmem_free(tmprep, report_len);
    437      1.1    bouyer 
    438      1.1    bouyer 		break;
    439      1.1    bouyer 	}
    440      1.1    bouyer 	case I2C_HID_CMD_SET_REPORT: {
    441      1.1    bouyer 		struct i2c_hid_report_request *rreq =
    442      1.1    bouyer 		    (struct i2c_hid_report_request *)arg;
    443      1.1    bouyer 
    444      1.1    bouyer 		uint8_t cmd[] = {
    445      1.1    bouyer 			htole16(sc->hid_desc.wCommandRegister) & 0xff,
    446      1.1    bouyer 			htole16(sc->hid_desc.wCommandRegister) >> 8,
    447      1.1    bouyer 			0,
    448      1.1    bouyer 			I2C_HID_CMD_SET_REPORT,
    449      1.1    bouyer 			0, 0, 0, 0, 0, 0,
    450      1.1    bouyer 		};
    451      1.1    bouyer 		int cmdlen = 10;
    452      1.1    bouyer 		int report_id = rreq->id;
    453      1.1    bouyer 		int report_len = 2 + (report_id ? 1 : 0) + rreq->len;
    454      1.1    bouyer 		int dataoff;
    455      1.1    bouyer 		uint8_t *finalcmd;
    456      1.1    bouyer 
    457      1.1    bouyer 		DPRINTF(("%s: HID command I2C_HID_CMD_SET_REPORT %d "
    458      1.1    bouyer 		    "(type %d, len %d):", sc->sc_dev.dv_xname, report_id,
    459      1.1    bouyer 		    rreq->type, rreq->len));
    460      1.1    bouyer 		for (i = 0; i < rreq->len; i++)
    461      1.1    bouyer 			DPRINTF((" %.2x", ((uint8_t *)rreq->data)[i]));
    462      1.1    bouyer 		DPRINTF(("\n"));
    463      1.1    bouyer 
    464      1.1    bouyer 		/*
    465      1.1    bouyer 		 * 7.2.2.4 - "The protocol is optimized for Report < 15.  If a
    466      1.1    bouyer 		 * report ID >= 15 is necessary, then the Report ID in the Low
    467      1.1    bouyer 		 * Byte must be set to 1111 and a Third Byte is appended to the
    468      1.1    bouyer 		 * protocol.  This Third Byte contains the entire/actual report
    469      1.1    bouyer 		 * ID."
    470      1.1    bouyer 		 */
    471      1.1    bouyer 		dataoff = 4;
    472      1.1    bouyer 		if (report_id >= 15) {
    473      1.1    bouyer 			cmd[dataoff++] = report_id;
    474      1.1    bouyer 			report_id = 15;
    475      1.1    bouyer 		} else
    476      1.1    bouyer 			cmdlen--;
    477      1.1    bouyer 
    478      1.1    bouyer 		cmd[2] = report_id | rreq->type << 4;
    479      1.1    bouyer 
    480      1.1    bouyer 		if (rreq->type == I2C_HID_REPORT_TYPE_FEATURE) {
    481      1.1    bouyer 			cmd[dataoff++] = htole16(sc->hid_desc.wDataRegister)
    482      1.1    bouyer 			    & 0xff;
    483      1.1    bouyer 			cmd[dataoff++] = htole16(sc->hid_desc.wDataRegister)
    484      1.1    bouyer 			    >> 8;
    485      1.1    bouyer 		} else {
    486      1.1    bouyer 			cmd[dataoff++] = htole16(sc->hid_desc.wOutputRegister)
    487      1.1    bouyer 			    & 0xff;
    488      1.1    bouyer 			cmd[dataoff++] = htole16(sc->hid_desc.wOutputRegister)
    489      1.1    bouyer 			    >> 8;
    490      1.1    bouyer 		}
    491      1.1    bouyer 
    492      1.1    bouyer 		cmd[dataoff++] = report_len & 0xff;
    493      1.1    bouyer 		cmd[dataoff++] = report_len >> 8;
    494      1.1    bouyer 		cmd[dataoff] = rreq->id;
    495      1.1    bouyer 
    496      1.1    bouyer 		finalcmd = kmem_zalloc(cmdlen + rreq->len, KM_NOSLEEP);
    497      1.1    bouyer 
    498      1.1    bouyer 		memcpy(finalcmd, cmd, cmdlen);
    499      1.1    bouyer 		memcpy(finalcmd + cmdlen, rreq->data, rreq->len);
    500      1.1    bouyer 
    501      1.1    bouyer 		/* type 3 id 4: 22 00 34 03 23 00 04 00 04 03 */
    502      1.1    bouyer 		res = iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP, sc->sc_addr,
    503      1.1    bouyer 		    finalcmd, cmdlen + rreq->len, NULL, 0, flags);
    504      1.1    bouyer 		kmem_free(finalcmd, cmdlen + rreq->len);
    505      1.1    bouyer 
    506      1.1    bouyer  		break;
    507      1.1    bouyer  	}
    508      1.1    bouyer 
    509      1.1    bouyer 	case I2C_HID_CMD_SET_POWER: {
    510      1.1    bouyer 		int power = *(int *)arg;
    511      1.1    bouyer 		uint8_t cmd[] = {
    512      1.1    bouyer 			htole16(sc->hid_desc.wCommandRegister) & 0xff,
    513      1.1    bouyer 			htole16(sc->hid_desc.wCommandRegister) >> 8,
    514      1.1    bouyer 			power,
    515      1.1    bouyer 			I2C_HID_CMD_SET_POWER,
    516      1.1    bouyer 		};
    517      1.1    bouyer 
    518      1.1    bouyer 		DPRINTF(("%s: HID command I2C_HID_CMD_SET_POWER(%d)\n",
    519      1.1    bouyer 		    sc->sc_dev.dv_xname, power));
    520      1.1    bouyer 
    521      1.1    bouyer 		/* 22 00 00 08 */
    522      1.1    bouyer 		res = iic_exec(sc->sc_tag, I2C_OP_WRITE_WITH_STOP, sc->sc_addr,
    523      1.1    bouyer 		    &cmd, sizeof(cmd), NULL, 0, flags);
    524      1.1    bouyer 
    525      1.1    bouyer 		break;
    526      1.1    bouyer 	}
    527      1.1    bouyer 	case I2C_HID_REPORT_DESCR: {
    528      1.1    bouyer 		uint8_t cmd[] = {
    529      1.1    bouyer 			htole16(sc->hid_desc.wReportDescRegister) & 0xff,
    530      1.1    bouyer 			htole16(sc->hid_desc.wReportDescRegister) >> 8,
    531      1.1    bouyer 		};
    532      1.1    bouyer 
    533      1.1    bouyer 		DPRINTF(("%s: HID command I2C_HID_REPORT_DESCR at 0x%x with "
    534      1.1    bouyer 		    "size %d\n", sc->sc_dev.dv_xname, cmd[0],
    535      1.1    bouyer 		    sc->sc_reportlen));
    536      1.1    bouyer 
    537      1.1    bouyer 		/* 20 00 */
    538      1.1    bouyer 		res = iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP, sc->sc_addr,
    539      1.1    bouyer 		    &cmd, sizeof(cmd), sc->sc_report, sc->sc_reportlen, flags);
    540      1.1    bouyer 
    541      1.1    bouyer 		DPRINTF(("%s: HID report descriptor:", sc->sc_dev.dv_xname));
    542      1.1    bouyer 		for (i = 0; i < sc->sc_reportlen; i++)
    543      1.1    bouyer 			DPRINTF((" %.2x", sc->sc_report[i]));
    544      1.1    bouyer 		DPRINTF(("\n"));
    545      1.1    bouyer 
    546      1.1    bouyer 		break;
    547      1.1    bouyer 	}
    548      1.1    bouyer 	default:
    549      1.1    bouyer 		aprint_error_dev(sc->sc_dev, "unknown command %d\n",
    550      1.1    bouyer 		    hidcmd);
    551      1.1    bouyer 	}
    552      1.1    bouyer 
    553      1.1    bouyer 	iic_release_bus(sc->sc_tag, flags);
    554      1.1    bouyer 
    555      1.1    bouyer 	return (res);
    556      1.1    bouyer }
    557      1.1    bouyer 
    558      1.1    bouyer static int
    559      1.1    bouyer ihidev_reset(struct ihidev_softc *sc, bool poll)
    560      1.1    bouyer {
    561      1.1    bouyer 	DPRINTF(("%s: resetting\n", sc->sc_dev.dv_xname));
    562      1.1    bouyer 
    563      1.1    bouyer 	if (ihidev_hid_command(sc, I2C_HID_CMD_SET_POWER,
    564      1.1    bouyer 	    &I2C_HID_POWER_ON, poll)) {
    565      1.1    bouyer 		aprint_error_dev(sc->sc_dev, "failed to power on\n");
    566      1.1    bouyer 		return (1);
    567      1.1    bouyer 	}
    568      1.1    bouyer 
    569      1.1    bouyer 	DELAY(1000);
    570      1.1    bouyer 
    571      1.1    bouyer 	if (ihidev_hid_command(sc, I2C_HID_CMD_RESET, 0, poll)) {
    572      1.1    bouyer 		aprint_error_dev(sc->sc_dev, "failed to reset hardware\n");
    573      1.1    bouyer 
    574      1.1    bouyer 		ihidev_hid_command(sc, I2C_HID_CMD_SET_POWER,
    575      1.1    bouyer 		    &I2C_HID_POWER_OFF, poll);
    576      1.1    bouyer 
    577      1.1    bouyer 		return (1);
    578      1.1    bouyer 	}
    579      1.1    bouyer 
    580      1.1    bouyer 	DELAY(1000);
    581      1.1    bouyer 
    582      1.1    bouyer 	return (0);
    583      1.1    bouyer }
    584      1.1    bouyer 
    585      1.1    bouyer /*
    586      1.1    bouyer  * 5.2.2 - HID Descriptor Retrieval
    587      1.1    bouyer  *
    588      1.1    bouyer  * parse HID Descriptor that has already been read into hid_desc with
    589      1.1    bouyer  * I2C_HID_CMD_DESCR
    590      1.1    bouyer  */
    591      1.1    bouyer static int
    592      1.1    bouyer ihidev_hid_desc_parse(struct ihidev_softc *sc)
    593      1.1    bouyer {
    594      1.1    bouyer 	int retries = 3;
    595      1.1    bouyer 
    596      1.1    bouyer 	/* must be v01.00 */
    597      1.1    bouyer 	if (le16toh(sc->hid_desc.bcdVersion) != 0x0100) {
    598      1.1    bouyer 		aprint_error_dev(sc->sc_dev,
    599      1.1    bouyer 		    "bad HID descriptor bcdVersion (0x%x)\n",
    600      1.1    bouyer 		    le16toh(sc->hid_desc.bcdVersion));
    601      1.1    bouyer 		return (1);
    602      1.1    bouyer 	}
    603      1.1    bouyer 
    604      1.1    bouyer 	/* must be 30 bytes for v1.00 */
    605      1.1    bouyer 	if (le16toh(sc->hid_desc.wHIDDescLength !=
    606      1.1    bouyer 	    sizeof(struct i2c_hid_desc))) {
    607      1.1    bouyer 		aprint_error_dev(sc->sc_dev,
    608      1.1    bouyer 		    "bad HID descriptor size (%d != %zu)\n",
    609      1.1    bouyer 		    le16toh(sc->hid_desc.wHIDDescLength),
    610      1.1    bouyer 		    sizeof(struct i2c_hid_desc));
    611      1.1    bouyer 		return (1);
    612      1.1    bouyer 	}
    613      1.1    bouyer 
    614      1.1    bouyer 	if (le16toh(sc->hid_desc.wReportDescLength) <= 0) {
    615      1.1    bouyer 		aprint_error_dev(sc->sc_dev,
    616      1.1    bouyer 		    "bad HID report descriptor size (%d)\n",
    617      1.1    bouyer 		    le16toh(sc->hid_desc.wReportDescLength));
    618      1.1    bouyer 		return (1);
    619      1.1    bouyer 	}
    620      1.1    bouyer 
    621      1.1    bouyer 	while (retries-- > 0) {
    622      1.1    bouyer 		if (ihidev_reset(sc, false)) {
    623      1.1    bouyer 			if (retries == 0)
    624      1.1    bouyer 				return(1);
    625      1.1    bouyer 
    626      1.1    bouyer 			DELAY(1000);
    627      1.1    bouyer 		}
    628      1.1    bouyer 		else
    629      1.1    bouyer 			break;
    630      1.1    bouyer 	}
    631      1.1    bouyer 
    632      1.1    bouyer 	sc->sc_reportlen = le16toh(sc->hid_desc.wReportDescLength);
    633      1.1    bouyer 	sc->sc_report = kmem_zalloc(sc->sc_reportlen, KM_NOSLEEP);
    634      1.1    bouyer 
    635      1.1    bouyer 	if (ihidev_hid_command(sc, I2C_HID_REPORT_DESCR, 0, false)) {
    636      1.1    bouyer 		aprint_error_dev(sc->sc_dev, "failed fetching HID report\n");
    637      1.1    bouyer 		return (1);
    638      1.1    bouyer 	}
    639      1.1    bouyer 
    640      1.1    bouyer 	return (0);
    641      1.1    bouyer }
    642      1.1    bouyer 
    643  1.5.2.2    martin static bool
    644  1.5.2.2    martin ihiddev_intr_init(struct ihidev_softc *sc)
    645  1.5.2.2    martin {
    646  1.5.2.2    martin #if NACPICA > 0
    647  1.5.2.2    martin 	ACPI_HANDLE hdl = (void *)(uintptr_t)sc->sc_phandle;
    648  1.5.2.2    martin 	struct acpi_resources res;
    649  1.5.2.2    martin 	ACPI_STATUS rv;
    650  1.5.2.2    martin 	char buf[100];
    651  1.5.2.2    martin 
    652  1.5.2.2    martin 	rv = acpi_resource_parse(sc->sc_dev, hdl, "_CRS", &res,
    653  1.5.2.2    martin 	    &acpi_resource_parse_ops_quiet);
    654  1.5.2.2    martin 	if (ACPI_FAILURE(rv)) {
    655  1.5.2.2    martin 		aprint_error_dev(sc->sc_dev, "can't parse '_CRS'\n");
    656  1.5.2.2    martin 		return false;
    657  1.5.2.2    martin 	}
    658  1.5.2.2    martin 
    659  1.5.2.2    martin 	const struct acpi_irq * const irq = acpi_res_irq(&res, 0);
    660  1.5.2.2    martin 	if (irq == NULL) {
    661  1.5.2.2    martin 		aprint_error_dev(sc->sc_dev, "no IRQ resource\n");
    662  1.5.2.2    martin 		acpi_resource_cleanup(&res);
    663  1.5.2.2    martin 		return false;
    664  1.5.2.2    martin 	}
    665  1.5.2.2    martin 
    666  1.5.2.2    martin 	sc->sc_intr_type =
    667  1.5.2.2    martin 	    irq->ar_type == ACPI_EDGE_SENSITIVE ? IST_EDGE : IST_LEVEL;
    668  1.5.2.2    martin 
    669  1.5.2.2    martin 	acpi_resource_cleanup(&res);
    670  1.5.2.2    martin 
    671  1.5.2.2    martin 	sc->sc_ih = acpi_intr_establish(sc->sc_dev, sc->sc_phandle, IPL_TTY,
    672  1.5.2.2    martin 	    false, ihidev_intr, sc, device_xname(sc->sc_dev));
    673  1.5.2.2    martin 	if (sc->sc_ih == NULL) {
    674  1.5.2.2    martin 		aprint_error_dev(sc->sc_dev, "can't establish interrupt\n");
    675  1.5.2.2    martin 		return false;
    676  1.5.2.2    martin 	}
    677  1.5.2.2    martin 	aprint_normal_dev(sc->sc_dev, "interrupting at %s\n",
    678  1.5.2.2    martin 	    acpi_intr_string(sc->sc_ih, buf, sizeof(buf)));
    679  1.5.2.2    martin 
    680  1.5.2.2    martin 	sc->sc_sih = softint_establish(SOFTINT_SERIAL, ihidev_softintr, sc);
    681  1.5.2.2    martin 	if (sc->sc_sih == NULL) {
    682  1.5.2.2    martin 		aprint_error_dev(sc->sc_dev,
    683  1.5.2.2    martin 		    "can't establish soft interrupt\n");
    684  1.5.2.2    martin 		return false;
    685  1.5.2.2    martin 	}
    686  1.5.2.2    martin 
    687  1.5.2.2    martin 	return true;
    688  1.5.2.2    martin #else
    689  1.5.2.2    martin 	aprint_error_dev(sc->sc_dev, "can't establish interrupt\n");
    690  1.5.2.2    martin 	return false;
    691  1.5.2.2    martin #endif
    692  1.5.2.2    martin }
    693  1.5.2.2    martin 
    694  1.5.2.2    martin static void
    695  1.5.2.2    martin ihiddev_intr_fini(struct ihidev_softc *sc)
    696  1.5.2.2    martin {
    697  1.5.2.2    martin #if NACPICA > 0
    698  1.5.2.2    martin 	if (sc->sc_ih != NULL) {
    699  1.5.2.2    martin 		acpi_intr_disestablish(sc->sc_ih);
    700  1.5.2.2    martin 	}
    701  1.5.2.2    martin 	if (sc->sc_sih != NULL) {
    702  1.5.2.2    martin 		softint_disestablish(sc->sc_sih);
    703  1.5.2.2    martin 	}
    704  1.5.2.2    martin #endif
    705  1.5.2.2    martin }
    706  1.5.2.2    martin 
    707  1.5.2.2    martin static void
    708  1.5.2.2    martin ihidev_intr_mask(struct ihidev_softc * const sc)
    709  1.5.2.2    martin {
    710  1.5.2.2    martin 
    711  1.5.2.2    martin 	if (sc->sc_intr_type == IST_LEVEL) {
    712  1.5.2.2    martin #if NACPICA > 0
    713  1.5.2.2    martin 		acpi_intr_mask(sc->sc_ih);
    714  1.5.2.2    martin #endif
    715  1.5.2.2    martin 	}
    716  1.5.2.2    martin }
    717  1.5.2.2    martin 
    718  1.5.2.2    martin static void
    719  1.5.2.2    martin ihidev_intr_unmask(struct ihidev_softc * const sc)
    720  1.5.2.2    martin {
    721  1.5.2.2    martin 
    722  1.5.2.2    martin 	if (sc->sc_intr_type == IST_LEVEL) {
    723  1.5.2.2    martin #if NACPICA > 0
    724  1.5.2.2    martin 		acpi_intr_unmask(sc->sc_ih);
    725  1.5.2.2    martin #endif
    726  1.5.2.2    martin 	}
    727  1.5.2.2    martin }
    728  1.5.2.2    martin 
    729  1.5.2.1  christos static int
    730      1.1    bouyer ihidev_intr(void *arg)
    731      1.1    bouyer {
    732  1.5.2.2    martin 	struct ihidev_softc * const sc = arg;
    733  1.5.2.2    martin 
    734  1.5.2.2    martin 	mutex_enter(&sc->sc_intr_lock);
    735  1.5.2.2    martin 
    736  1.5.2.2    martin 	/*
    737  1.5.2.2    martin 	 * Schedule our soft interrupt handler.  If we're using a level-
    738  1.5.2.2    martin 	 * triggered interrupt, we have to mask it off while we wait
    739  1.5.2.2    martin 	 * for service.
    740  1.5.2.2    martin 	 */
    741  1.5.2.2    martin 	softint_schedule(sc->sc_sih);
    742  1.5.2.2    martin 	ihidev_intr_mask(sc);
    743  1.5.2.2    martin 
    744  1.5.2.2    martin 	mutex_exit(&sc->sc_intr_lock);
    745  1.5.2.2    martin 
    746  1.5.2.2    martin 	return 1;
    747  1.5.2.2    martin }
    748  1.5.2.2    martin 
    749  1.5.2.2    martin static void
    750  1.5.2.2    martin ihidev_softintr(void *arg)
    751  1.5.2.2    martin {
    752  1.5.2.2    martin 	struct ihidev_softc * const sc = arg;
    753      1.1    bouyer 	struct ihidev *scd;
    754      1.1    bouyer 	u_int psize;
    755      1.1    bouyer 	int res, i;
    756      1.1    bouyer 	u_char *p;
    757      1.1    bouyer 	u_int rep = 0;
    758      1.1    bouyer 
    759      1.1    bouyer 	mutex_enter(&sc->sc_intr_lock);
    760  1.5.2.2    martin 	iic_acquire_bus(sc->sc_tag, 0);
    761      1.1    bouyer 	res = iic_exec(sc->sc_tag, I2C_OP_READ_WITH_STOP, sc->sc_addr, NULL, 0,
    762  1.5.2.2    martin 	    sc->sc_ibuf, sc->sc_isize, 0);
    763  1.5.2.2    martin 	iic_release_bus(sc->sc_tag, 0);
    764      1.1    bouyer 	mutex_exit(&sc->sc_intr_lock);
    765  1.5.2.2    martin 
    766      1.1    bouyer 	if (res != 0)
    767  1.5.2.2    martin 		goto out;
    768      1.1    bouyer 
    769      1.1    bouyer 	/*
    770      1.1    bouyer 	 * 6.1.1 - First two bytes are the packet length, which must be less
    771      1.1    bouyer 	 * than or equal to wMaxInputLength
    772      1.1    bouyer 	 */
    773      1.1    bouyer 	psize = sc->sc_ibuf[0] | sc->sc_ibuf[1] << 8;
    774      1.1    bouyer 	if (!psize || psize > sc->sc_isize) {
    775      1.1    bouyer 		DPRINTF(("%s: %s: invalid packet size (%d vs. %d)\n",
    776      1.1    bouyer 		    sc->sc_dev.dv_xname, __func__, psize, sc->sc_isize));
    777  1.5.2.2    martin 		goto out;
    778      1.1    bouyer 	}
    779      1.1    bouyer 
    780      1.1    bouyer 	/* 3rd byte is the report id */
    781      1.1    bouyer 	p = sc->sc_ibuf + 2;
    782      1.1    bouyer 	psize -= 2;
    783      1.1    bouyer 	if (sc->sc_nrepid != 1)
    784      1.1    bouyer 		rep = *p++, psize--;
    785      1.1    bouyer 
    786      1.1    bouyer 	if (rep >= sc->sc_nrepid) {
    787      1.1    bouyer 		aprint_error_dev(sc->sc_dev, "%s: bad report id %d\n",
    788      1.1    bouyer 		    __func__, rep);
    789  1.5.2.2    martin 		goto out;
    790      1.1    bouyer 	}
    791      1.1    bouyer 
    792  1.5.2.2    martin 	DPRINTF(("%s: %s: hid input (rep %d):", sc->sc_dev.dv_xname,
    793  1.5.2.2    martin 	    __func__, rep));
    794      1.1    bouyer 	for (i = 0; i < sc->sc_isize; i++)
    795      1.1    bouyer 		DPRINTF((" %.2x", sc->sc_ibuf[i]));
    796      1.1    bouyer 	DPRINTF(("\n"));
    797      1.1    bouyer 
    798      1.1    bouyer 	scd = sc->sc_subdevs[rep];
    799      1.1    bouyer 	if (scd == NULL || !(scd->sc_state & IHIDEV_OPEN))
    800  1.5.2.2    martin 		goto out;
    801      1.1    bouyer 
    802      1.1    bouyer 	scd->sc_intr(scd, p, psize);
    803      1.1    bouyer 
    804  1.5.2.2    martin  out:
    805  1.5.2.2    martin 	/*
    806  1.5.2.2    martin 	 * If our interrupt is level-triggered, re-enable it now.
    807  1.5.2.2    martin 	 */
    808  1.5.2.2    martin 	ihidev_intr_unmask(sc);
    809      1.1    bouyer }
    810      1.1    bouyer 
    811      1.1    bouyer static int
    812      1.1    bouyer ihidev_maxrepid(void *buf, int len)
    813      1.1    bouyer {
    814      1.1    bouyer 	struct hid_data *d;
    815      1.1    bouyer 	struct hid_item h;
    816      1.1    bouyer 	int maxid;
    817      1.1    bouyer 
    818      1.1    bouyer 	maxid = -1;
    819      1.1    bouyer 	h.report_ID = 0;
    820      1.1    bouyer 	for (d = hid_start_parse(buf, len, hid_none); hid_get_item(d, &h); )
    821  1.5.2.1  christos 		if ((int)h.report_ID > maxid)
    822      1.1    bouyer 			maxid = h.report_ID;
    823      1.1    bouyer 	hid_end_parse(d);
    824      1.1    bouyer 
    825      1.1    bouyer 	return (maxid);
    826      1.1    bouyer }
    827      1.1    bouyer 
    828      1.1    bouyer static int
    829      1.1    bouyer ihidev_print(void *aux, const char *pnp)
    830      1.1    bouyer {
    831      1.1    bouyer 	struct ihidev_attach_arg *iha = aux;
    832      1.1    bouyer 
    833      1.1    bouyer 	if (iha->reportid == IHIDEV_CLAIM_ALLREPORTID)
    834      1.1    bouyer 		return (QUIET);
    835      1.1    bouyer 
    836      1.1    bouyer 	if (pnp)
    837      1.1    bouyer 		aprint_normal("hid at %s", pnp);
    838      1.1    bouyer 
    839      1.1    bouyer 	if (iha->reportid != 0)
    840      1.1    bouyer 		aprint_normal(" reportid %d", iha->reportid);
    841      1.1    bouyer 
    842      1.1    bouyer 	return (UNCONF);
    843      1.1    bouyer }
    844      1.1    bouyer 
    845      1.1    bouyer static int
    846      1.1    bouyer ihidev_submatch(device_t parent, cfdata_t cf, const int *locs, void *aux)
    847      1.1    bouyer {
    848      1.1    bouyer 	struct ihidev_attach_arg *iha = aux;
    849      1.1    bouyer 
    850      1.1    bouyer 	if (cf->ihidevcf_reportid != IHIDEV_UNK_REPORTID &&
    851      1.1    bouyer 	    cf->ihidevcf_reportid != iha->reportid)
    852      1.1    bouyer 		return (0);
    853      1.1    bouyer 
    854      1.1    bouyer 	return config_match(parent, cf, aux);
    855      1.1    bouyer }
    856      1.1    bouyer 
    857      1.1    bouyer int
    858      1.1    bouyer ihidev_open(struct ihidev *scd)
    859      1.1    bouyer {
    860      1.1    bouyer 	struct ihidev_softc *sc = scd->sc_parent;
    861      1.1    bouyer 
    862      1.1    bouyer 	DPRINTF(("%s: %s: state=%d refcnt=%d\n", sc->sc_dev.dv_xname,
    863      1.1    bouyer 	    __func__, scd->sc_state, sc->sc_refcnt));
    864      1.1    bouyer 
    865      1.1    bouyer 	if (scd->sc_state & IHIDEV_OPEN)
    866      1.1    bouyer 		return (EBUSY);
    867      1.1    bouyer 
    868      1.1    bouyer 	scd->sc_state |= IHIDEV_OPEN;
    869      1.1    bouyer 
    870      1.1    bouyer 	if (sc->sc_refcnt++ || sc->sc_isize == 0)
    871      1.1    bouyer 		return (0);
    872      1.1    bouyer 
    873      1.1    bouyer 	/* power on */
    874      1.1    bouyer 	ihidev_reset(sc, false);
    875      1.1    bouyer 
    876      1.1    bouyer 	return (0);
    877      1.1    bouyer }
    878      1.1    bouyer 
    879      1.1    bouyer void
    880      1.1    bouyer ihidev_close(struct ihidev *scd)
    881      1.1    bouyer {
    882      1.1    bouyer 	struct ihidev_softc *sc = scd->sc_parent;
    883      1.1    bouyer 
    884      1.1    bouyer 	DPRINTF(("%s: %s: state=%d refcnt=%d\n", sc->sc_dev.dv_xname,
    885      1.1    bouyer 	    __func__, scd->sc_state, sc->sc_refcnt));
    886      1.1    bouyer 
    887      1.1    bouyer 	if (!(scd->sc_state & IHIDEV_OPEN))
    888      1.1    bouyer 		return;
    889      1.1    bouyer 
    890      1.1    bouyer 	scd->sc_state &= ~IHIDEV_OPEN;
    891      1.1    bouyer 
    892      1.1    bouyer 	if (--sc->sc_refcnt)
    893      1.1    bouyer 		return;
    894      1.1    bouyer 
    895      1.1    bouyer 	if (ihidev_hid_command(sc, I2C_HID_CMD_SET_POWER,
    896      1.1    bouyer 	    &I2C_HID_POWER_OFF, false))
    897      1.1    bouyer 		aprint_error_dev(sc->sc_dev, "failed to power down\n");
    898      1.1    bouyer }
    899      1.1    bouyer 
    900      1.1    bouyer void
    901      1.1    bouyer ihidev_get_report_desc(struct ihidev_softc *sc, void **desc, int *size)
    902      1.1    bouyer {
    903      1.1    bouyer 	*desc = sc->sc_report;
    904      1.1    bouyer 	*size = sc->sc_reportlen;
    905      1.1    bouyer }
    906      1.1    bouyer 
    907      1.1    bouyer /* convert hid_* constants used throughout HID code to i2c HID equivalents */
    908      1.1    bouyer int
    909      1.1    bouyer ihidev_report_type_conv(int hid_type_id)
    910      1.1    bouyer {
    911      1.1    bouyer 	switch (hid_type_id) {
    912      1.1    bouyer 	case hid_input:
    913      1.1    bouyer 		return I2C_HID_REPORT_TYPE_INPUT;
    914      1.1    bouyer 	case hid_output:
    915      1.1    bouyer 		return I2C_HID_REPORT_TYPE_OUTPUT;
    916      1.1    bouyer 	case hid_feature:
    917      1.1    bouyer 		return I2C_HID_REPORT_TYPE_FEATURE;
    918      1.1    bouyer 	default:
    919      1.1    bouyer 		return -1;
    920      1.1    bouyer 	}
    921      1.1    bouyer }
    922      1.1    bouyer 
    923      1.1    bouyer int
    924      1.1    bouyer ihidev_get_report(struct device *dev, int type, int id, void *data, int len)
    925      1.1    bouyer {
    926      1.1    bouyer 	struct ihidev_softc *sc = (struct ihidev_softc *)dev;
    927      1.1    bouyer 	struct i2c_hid_report_request rreq;
    928      1.1    bouyer 	int ctype;
    929      1.1    bouyer 
    930      1.1    bouyer 	if ((ctype = ihidev_report_type_conv(type)) < 0)
    931      1.1    bouyer 		return (1);
    932      1.1    bouyer 
    933      1.1    bouyer 	rreq.type = ctype;
    934      1.1    bouyer 	rreq.id = id;
    935      1.1    bouyer 	rreq.data = data;
    936      1.1    bouyer 	rreq.len = len;
    937      1.1    bouyer 
    938      1.1    bouyer 	if (ihidev_hid_command(sc, I2C_HID_CMD_GET_REPORT, &rreq, false)) {
    939      1.1    bouyer 		aprint_error_dev(sc->sc_dev, "failed fetching report\n");
    940      1.1    bouyer 		return (1);
    941      1.1    bouyer 	}
    942      1.1    bouyer 
    943      1.1    bouyer 	return 0;
    944      1.1    bouyer }
    945      1.1    bouyer 
    946      1.1    bouyer int
    947      1.1    bouyer ihidev_set_report(struct device *dev, int type, int id, void *data,
    948      1.1    bouyer     int len)
    949      1.1    bouyer {
    950      1.1    bouyer 	struct ihidev_softc *sc = (struct ihidev_softc *)dev;
    951      1.1    bouyer 	struct i2c_hid_report_request rreq;
    952      1.1    bouyer 	int ctype;
    953      1.1    bouyer 
    954      1.1    bouyer 	if ((ctype = ihidev_report_type_conv(type)) < 0)
    955      1.1    bouyer 		return (1);
    956      1.1    bouyer 
    957      1.1    bouyer 	rreq.type = ctype;
    958      1.1    bouyer 	rreq.id = id;
    959      1.1    bouyer 	rreq.data = data;
    960      1.1    bouyer 	rreq.len = len;
    961      1.1    bouyer 
    962      1.1    bouyer 	if (ihidev_hid_command(sc, I2C_HID_CMD_SET_REPORT, &rreq, false)) {
    963      1.1    bouyer 		aprint_error_dev(sc->sc_dev, "failed setting report\n");
    964      1.1    bouyer 		return (1);
    965      1.1    bouyer 	}
    966      1.1    bouyer 
    967      1.1    bouyer 	return 0;
    968      1.1    bouyer }
    969