xref: /linux/drivers/hid/i2c-hid/i2c-hid-core.c (revision 7bcf9ebb50f2afc84b33b06edfd20d47218af758)
19ee3e066SJulian Sax /*
29ee3e066SJulian Sax  * HID over I2C protocol implementation
39ee3e066SJulian Sax  *
49ee3e066SJulian Sax  * Copyright (c) 2012 Benjamin Tissoires <benjamin.tissoires@gmail.com>
59ee3e066SJulian Sax  * Copyright (c) 2012 Ecole Nationale de l'Aviation Civile, France
69ee3e066SJulian Sax  * Copyright (c) 2012 Red Hat, Inc
79ee3e066SJulian Sax  *
89ee3e066SJulian Sax  * This code is partly based on "USB HID support for Linux":
99ee3e066SJulian Sax  *
109ee3e066SJulian Sax  *  Copyright (c) 1999 Andreas Gal
119ee3e066SJulian Sax  *  Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz>
129ee3e066SJulian Sax  *  Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc
139ee3e066SJulian Sax  *  Copyright (c) 2007-2008 Oliver Neukum
149ee3e066SJulian Sax  *  Copyright (c) 2006-2010 Jiri Kosina
159ee3e066SJulian Sax  *
169ee3e066SJulian Sax  * This file is subject to the terms and conditions of the GNU General Public
179ee3e066SJulian Sax  * License.  See the file COPYING in the main directory of this archive for
189ee3e066SJulian Sax  * more details.
199ee3e066SJulian Sax  */
209ee3e066SJulian Sax 
219ee3e066SJulian Sax #include <linux/module.h>
229ee3e066SJulian Sax #include <linux/i2c.h>
239ee3e066SJulian Sax #include <linux/interrupt.h>
249ee3e066SJulian Sax #include <linux/input.h>
259ee3e066SJulian Sax #include <linux/irq.h>
269ee3e066SJulian Sax #include <linux/delay.h>
279ee3e066SJulian Sax #include <linux/slab.h>
289ee3e066SJulian Sax #include <linux/pm.h>
29d08999ccSRaul E Rangel #include <linux/pm_wakeirq.h>
309ee3e066SJulian Sax #include <linux/device.h>
319ee3e066SJulian Sax #include <linux/wait.h>
329ee3e066SJulian Sax #include <linux/err.h>
339ee3e066SJulian Sax #include <linux/string.h>
349ee3e066SJulian Sax #include <linux/list.h>
359ee3e066SJulian Sax #include <linux/jiffies.h>
369ee3e066SJulian Sax #include <linux/kernel.h>
379ee3e066SJulian Sax #include <linux/hid.h>
389ee3e066SJulian Sax #include <linux/mutex.h>
39dbe0dd5fSDmitry Torokhov #include <asm/unaligned.h>
409ee3e066SJulian Sax 
4196a37bfdSDouglas Anderson #include <drm/drm_panel.h>
4296a37bfdSDouglas Anderson 
439ee3e066SJulian Sax #include "../hid-ids.h"
449ee3e066SJulian Sax #include "i2c-hid.h"
459ee3e066SJulian Sax 
469ee3e066SJulian Sax /* quirks to control the device */
479ee3e066SJulian Sax #define I2C_HID_QUIRK_SET_PWR_WAKEUP_DEV	BIT(0)
489ee3e066SJulian Sax #define I2C_HID_QUIRK_NO_IRQ_AFTER_RESET	BIT(1)
491475af25SKai-Heng Feng #define I2C_HID_QUIRK_BOGUS_IRQ			BIT(4)
50fd70466dSKai-Heng Feng #define I2C_HID_QUIRK_RESET_ON_RESUME		BIT(5)
51fd091376SPavel Balan #define I2C_HID_QUIRK_BAD_INPUT_SIZE		BIT(6)
52ca66a677SJohnny Chuang #define I2C_HID_QUIRK_NO_WAKEUP_AFTER_RESET	BIT(7)
53fd091376SPavel Balan 
54dbe0dd5fSDmitry Torokhov /* Command opcodes */
55dbe0dd5fSDmitry Torokhov #define I2C_HID_OPCODE_RESET			0x01
56dbe0dd5fSDmitry Torokhov #define I2C_HID_OPCODE_GET_REPORT		0x02
57dbe0dd5fSDmitry Torokhov #define I2C_HID_OPCODE_SET_REPORT		0x03
58dbe0dd5fSDmitry Torokhov #define I2C_HID_OPCODE_GET_IDLE			0x04
59dbe0dd5fSDmitry Torokhov #define I2C_HID_OPCODE_SET_IDLE			0x05
60dbe0dd5fSDmitry Torokhov #define I2C_HID_OPCODE_GET_PROTOCOL		0x06
61dbe0dd5fSDmitry Torokhov #define I2C_HID_OPCODE_SET_PROTOCOL		0x07
62dbe0dd5fSDmitry Torokhov #define I2C_HID_OPCODE_SET_POWER		0x08
639ee3e066SJulian Sax 
649ee3e066SJulian Sax /* flags */
659ee3e066SJulian Sax #define I2C_HID_STARTED		0
669ee3e066SJulian Sax #define I2C_HID_RESET_PENDING	1
679ee3e066SJulian Sax #define I2C_HID_READ_PENDING	2
689ee3e066SJulian Sax 
699ee3e066SJulian Sax #define I2C_HID_PWR_ON		0x00
709ee3e066SJulian Sax #define I2C_HID_PWR_SLEEP	0x01
719ee3e066SJulian Sax 
7234ba3657SThomas Weißschuh #define i2c_hid_dbg(ihid, ...) dev_dbg(&(ihid)->client->dev, __VA_ARGS__)
739ee3e066SJulian Sax 
749ee3e066SJulian Sax struct i2c_hid_desc {
759ee3e066SJulian Sax 	__le16 wHIDDescLength;
769ee3e066SJulian Sax 	__le16 bcdVersion;
779ee3e066SJulian Sax 	__le16 wReportDescLength;
789ee3e066SJulian Sax 	__le16 wReportDescRegister;
799ee3e066SJulian Sax 	__le16 wInputRegister;
809ee3e066SJulian Sax 	__le16 wMaxInputLength;
819ee3e066SJulian Sax 	__le16 wOutputRegister;
829ee3e066SJulian Sax 	__le16 wMaxOutputLength;
839ee3e066SJulian Sax 	__le16 wCommandRegister;
849ee3e066SJulian Sax 	__le16 wDataRegister;
859ee3e066SJulian Sax 	__le16 wVendorID;
869ee3e066SJulian Sax 	__le16 wProductID;
879ee3e066SJulian Sax 	__le16 wVersionID;
889ee3e066SJulian Sax 	__le32 reserved;
899ee3e066SJulian Sax } __packed;
909ee3e066SJulian Sax 
919ee3e066SJulian Sax /* The main device structure */
929ee3e066SJulian Sax struct i2c_hid {
939ee3e066SJulian Sax 	struct i2c_client	*client;	/* i2c client */
949ee3e066SJulian Sax 	struct hid_device	*hid;	/* pointer to corresponding HID dev */
959ee3e066SJulian Sax 	struct i2c_hid_desc hdesc;		/* the HID Descriptor */
969ee3e066SJulian Sax 	__le16			wHIDDescRegister; /* location of the i2c
979ee3e066SJulian Sax 						   * register of the HID
989ee3e066SJulian Sax 						   * descriptor. */
999ee3e066SJulian Sax 	unsigned int		bufsize;	/* i2c buffer size */
1009ee3e066SJulian Sax 	u8			*inbuf;		/* Input buffer */
1019ee3e066SJulian Sax 	u8			*rawbuf;	/* Raw Input buffer */
1029ee3e066SJulian Sax 	u8			*cmdbuf;	/* Command buffer */
1039ee3e066SJulian Sax 
1049ee3e066SJulian Sax 	unsigned long		flags;		/* device flags */
1059ee3e066SJulian Sax 	unsigned long		quirks;		/* Various quirks */
1069ee3e066SJulian Sax 
1079ee3e066SJulian Sax 	wait_queue_head_t	wait;		/* For waiting the interrupt */
1089ee3e066SJulian Sax 
1099ee3e066SJulian Sax 	struct mutex		reset_lock;
110b33752c3SDouglas Anderson 
111b33752c3SDouglas Anderson 	struct i2chid_ops	*ops;
11296a37bfdSDouglas Anderson 	struct drm_panel_follower panel_follower;
11376edfcf4SDouglas Anderson 	struct work_struct	panel_follower_prepare_work;
11496a37bfdSDouglas Anderson 	bool			is_panel_follower;
11576edfcf4SDouglas Anderson 	bool			prepare_work_finished;
1169ee3e066SJulian Sax };
1179ee3e066SJulian Sax 
1189ee3e066SJulian Sax static const struct i2c_hid_quirks {
1199ee3e066SJulian Sax 	__u16 idVendor;
1209ee3e066SJulian Sax 	__u16 idProduct;
1219ee3e066SJulian Sax 	__u32 quirks;
1229ee3e066SJulian Sax } i2c_hid_quirks[] = {
123b20bef4bSHungNien Chen 	{ USB_VENDOR_ID_WEIDA, HID_ANY_ID,
1249ee3e066SJulian Sax 		I2C_HID_QUIRK_SET_PWR_WAKEUP_DEV },
1259ee3e066SJulian Sax 	{ I2C_VENDOR_ID_HANTICK, I2C_PRODUCT_ID_HANTICK_5288,
12667b18dfbSKai-Heng Feng 		I2C_HID_QUIRK_NO_IRQ_AFTER_RESET },
127fc6a31b0SHans de Goede 	{ I2C_VENDOR_ID_ITE, I2C_DEVICE_ID_ITE_VOYO_WINPAD_A15,
128fc6a31b0SHans de Goede 		I2C_HID_QUIRK_NO_IRQ_AFTER_RESET },
1290c843223SAaron Ma 	{ I2C_VENDOR_ID_RAYDIUM, I2C_PRODUCT_ID_RAYDIUM_3118,
1300c843223SAaron Ma 		I2C_HID_QUIRK_NO_IRQ_AFTER_RESET },
131fd70466dSKai-Heng Feng 	{ USB_VENDOR_ID_ALPS_JP, HID_ANY_ID,
132fd70466dSKai-Heng Feng 		 I2C_HID_QUIRK_RESET_ON_RESUME },
133538f6740SDaniel Playfair Cal 	{ I2C_VENDOR_ID_SYNAPTICS, I2C_PRODUCT_ID_SYNAPTICS_SYNA2393,
134538f6740SDaniel Playfair Cal 		 I2C_HID_QUIRK_RESET_ON_RESUME },
135fd091376SPavel Balan 	{ USB_VENDOR_ID_ITE, I2C_DEVICE_ID_ITE_LENOVO_LEGION_Y720,
136fd091376SPavel Balan 		I2C_HID_QUIRK_BAD_INPUT_SIZE },
137ca66a677SJohnny Chuang 	/*
138ca66a677SJohnny Chuang 	 * Sending the wakeup after reset actually break ELAN touchscreen controller
139ca66a677SJohnny Chuang 	 */
140ca66a677SJohnny Chuang 	{ USB_VENDOR_ID_ELAN, HID_ANY_ID,
14178653706SJim Broadus 		 I2C_HID_QUIRK_NO_WAKEUP_AFTER_RESET |
14278653706SJim Broadus 		 I2C_HID_QUIRK_BOGUS_IRQ },
1439ee3e066SJulian Sax 	{ 0, 0 }
1449ee3e066SJulian Sax };
1459ee3e066SJulian Sax 
1469ee3e066SJulian Sax /*
1479ee3e066SJulian Sax  * i2c_hid_lookup_quirk: return any quirks associated with a I2C HID device
1489ee3e066SJulian Sax  * @idVendor: the 16-bit vendor ID
1499ee3e066SJulian Sax  * @idProduct: the 16-bit product ID
1509ee3e066SJulian Sax  *
1519ee3e066SJulian Sax  * Returns: a u32 quirks value.
1529ee3e066SJulian Sax  */
1539ee3e066SJulian Sax static u32 i2c_hid_lookup_quirk(const u16 idVendor, const u16 idProduct)
1549ee3e066SJulian Sax {
1559ee3e066SJulian Sax 	u32 quirks = 0;
1569ee3e066SJulian Sax 	int n;
1579ee3e066SJulian Sax 
1589ee3e066SJulian Sax 	for (n = 0; i2c_hid_quirks[n].idVendor; n++)
1599ee3e066SJulian Sax 		if (i2c_hid_quirks[n].idVendor == idVendor &&
1609ee3e066SJulian Sax 		    (i2c_hid_quirks[n].idProduct == (__u16)HID_ANY_ID ||
1619ee3e066SJulian Sax 		     i2c_hid_quirks[n].idProduct == idProduct))
1629ee3e066SJulian Sax 			quirks = i2c_hid_quirks[n].quirks;
1639ee3e066SJulian Sax 
1649ee3e066SJulian Sax 	return quirks;
1659ee3e066SJulian Sax }
1669ee3e066SJulian Sax 
167dbe0dd5fSDmitry Torokhov static int i2c_hid_xfer(struct i2c_hid *ihid,
168dbe0dd5fSDmitry Torokhov 			u8 *send_buf, int send_len, u8 *recv_buf, int recv_len)
169dbe0dd5fSDmitry Torokhov {
170dbe0dd5fSDmitry Torokhov 	struct i2c_client *client = ihid->client;
171dbe0dd5fSDmitry Torokhov 	struct i2c_msg msgs[2] = { 0 };
172dbe0dd5fSDmitry Torokhov 	int n = 0;
173dbe0dd5fSDmitry Torokhov 	int ret;
174dbe0dd5fSDmitry Torokhov 
175dbe0dd5fSDmitry Torokhov 	if (send_len) {
176dbe0dd5fSDmitry Torokhov 		i2c_hid_dbg(ihid, "%s: cmd=%*ph\n",
177dbe0dd5fSDmitry Torokhov 			    __func__, send_len, send_buf);
178dbe0dd5fSDmitry Torokhov 
179dbe0dd5fSDmitry Torokhov 		msgs[n].addr = client->addr;
1801c4d6cd4SDmitry Torokhov 		msgs[n].flags = (client->flags & I2C_M_TEN) | I2C_M_DMA_SAFE;
181dbe0dd5fSDmitry Torokhov 		msgs[n].len = send_len;
182dbe0dd5fSDmitry Torokhov 		msgs[n].buf = send_buf;
183dbe0dd5fSDmitry Torokhov 		n++;
184dbe0dd5fSDmitry Torokhov 	}
185dbe0dd5fSDmitry Torokhov 
186dbe0dd5fSDmitry Torokhov 	if (recv_len) {
187dbe0dd5fSDmitry Torokhov 		msgs[n].addr = client->addr;
1881c4d6cd4SDmitry Torokhov 		msgs[n].flags = (client->flags & I2C_M_TEN) |
1891c4d6cd4SDmitry Torokhov 				I2C_M_RD | I2C_M_DMA_SAFE;
190dbe0dd5fSDmitry Torokhov 		msgs[n].len = recv_len;
191dbe0dd5fSDmitry Torokhov 		msgs[n].buf = recv_buf;
192dbe0dd5fSDmitry Torokhov 		n++;
193dbe0dd5fSDmitry Torokhov 
194dbe0dd5fSDmitry Torokhov 		set_bit(I2C_HID_READ_PENDING, &ihid->flags);
195dbe0dd5fSDmitry Torokhov 	}
196dbe0dd5fSDmitry Torokhov 
197dbe0dd5fSDmitry Torokhov 	ret = i2c_transfer(client->adapter, msgs, n);
198dbe0dd5fSDmitry Torokhov 
199dbe0dd5fSDmitry Torokhov 	if (recv_len)
200dbe0dd5fSDmitry Torokhov 		clear_bit(I2C_HID_READ_PENDING, &ihid->flags);
201dbe0dd5fSDmitry Torokhov 
202dbe0dd5fSDmitry Torokhov 	if (ret != n)
203dbe0dd5fSDmitry Torokhov 		return ret < 0 ? ret : -EIO;
204dbe0dd5fSDmitry Torokhov 
205dbe0dd5fSDmitry Torokhov 	return 0;
206dbe0dd5fSDmitry Torokhov }
207dbe0dd5fSDmitry Torokhov 
2088399bd01SDmitry Torokhov static int i2c_hid_read_register(struct i2c_hid *ihid, __le16 reg,
2098399bd01SDmitry Torokhov 				 void *buf, size_t len)
2108399bd01SDmitry Torokhov {
2118399bd01SDmitry Torokhov 	*(__le16 *)ihid->cmdbuf = reg;
2128399bd01SDmitry Torokhov 
2138399bd01SDmitry Torokhov 	return i2c_hid_xfer(ihid, ihid->cmdbuf, sizeof(__le16), buf, len);
2148399bd01SDmitry Torokhov }
2158399bd01SDmitry Torokhov 
216dbe0dd5fSDmitry Torokhov static size_t i2c_hid_encode_command(u8 *buf, u8 opcode,
217dbe0dd5fSDmitry Torokhov 				     int report_type, int report_id)
218dbe0dd5fSDmitry Torokhov {
219dbe0dd5fSDmitry Torokhov 	size_t length = 0;
220dbe0dd5fSDmitry Torokhov 
221dbe0dd5fSDmitry Torokhov 	if (report_id < 0x0F) {
222dbe0dd5fSDmitry Torokhov 		buf[length++] = report_type << 4 | report_id;
223dbe0dd5fSDmitry Torokhov 		buf[length++] = opcode;
224dbe0dd5fSDmitry Torokhov 	} else {
225dbe0dd5fSDmitry Torokhov 		buf[length++] = report_type << 4 | 0x0F;
226dbe0dd5fSDmitry Torokhov 		buf[length++] = opcode;
227dbe0dd5fSDmitry Torokhov 		buf[length++] = report_id;
228dbe0dd5fSDmitry Torokhov 	}
229dbe0dd5fSDmitry Torokhov 
230dbe0dd5fSDmitry Torokhov 	return length;
231dbe0dd5fSDmitry Torokhov }
232dbe0dd5fSDmitry Torokhov 
23385df7133SDmitry Torokhov static int i2c_hid_get_report(struct i2c_hid *ihid,
23485df7133SDmitry Torokhov 			      u8 report_type, u8 report_id,
23585df7133SDmitry Torokhov 			      u8 *recv_buf, size_t recv_len)
2369ee3e066SJulian Sax {
23785df7133SDmitry Torokhov 	size_t length = 0;
23885df7133SDmitry Torokhov 	size_t ret_count;
23985df7133SDmitry Torokhov 	int error;
2409ee3e066SJulian Sax 
2419ee3e066SJulian Sax 	i2c_hid_dbg(ihid, "%s\n", __func__);
2429ee3e066SJulian Sax 
24385df7133SDmitry Torokhov 	/* Command register goes first */
24485df7133SDmitry Torokhov 	*(__le16 *)ihid->cmdbuf = ihid->hdesc.wCommandRegister;
24585df7133SDmitry Torokhov 	length += sizeof(__le16);
24685df7133SDmitry Torokhov 	/* Next is GET_REPORT command */
24785df7133SDmitry Torokhov 	length += i2c_hid_encode_command(ihid->cmdbuf + length,
24885df7133SDmitry Torokhov 					 I2C_HID_OPCODE_GET_REPORT,
24985df7133SDmitry Torokhov 					 report_type, report_id);
25085df7133SDmitry Torokhov 	/*
25185df7133SDmitry Torokhov 	 * Device will send report data through data register. Because
25285df7133SDmitry Torokhov 	 * command can be either 2 or 3 bytes destination for the data
25385df7133SDmitry Torokhov 	 * register may be not aligned.
25485df7133SDmitry Torokhov 	 */
25585df7133SDmitry Torokhov 	put_unaligned_le16(le16_to_cpu(ihid->hdesc.wDataRegister),
25685df7133SDmitry Torokhov 			   ihid->cmdbuf + length);
25785df7133SDmitry Torokhov 	length += sizeof(__le16);
2589ee3e066SJulian Sax 
25985df7133SDmitry Torokhov 	/*
26085df7133SDmitry Torokhov 	 * In addition to report data device will supply data length
26185df7133SDmitry Torokhov 	 * in the first 2 bytes of the response, so adjust .
26285df7133SDmitry Torokhov 	 */
26385df7133SDmitry Torokhov 	error = i2c_hid_xfer(ihid, ihid->cmdbuf, length,
26485df7133SDmitry Torokhov 			     ihid->rawbuf, recv_len + sizeof(__le16));
26585df7133SDmitry Torokhov 	if (error) {
266d34c6105SDmitry Torokhov 		dev_err(&ihid->client->dev,
26785df7133SDmitry Torokhov 			"failed to set a report to device: %d\n", error);
26885df7133SDmitry Torokhov 		return error;
2699ee3e066SJulian Sax 	}
2709ee3e066SJulian Sax 
27185df7133SDmitry Torokhov 	/* The buffer is sufficiently aligned */
27285df7133SDmitry Torokhov 	ret_count = le16_to_cpup((__le16 *)ihid->rawbuf);
27385df7133SDmitry Torokhov 
27485df7133SDmitry Torokhov 	/* Check for empty report response */
27585df7133SDmitry Torokhov 	if (ret_count <= sizeof(__le16))
2769ee3e066SJulian Sax 		return 0;
27785df7133SDmitry Torokhov 
27885df7133SDmitry Torokhov 	recv_len = min(recv_len, ret_count - sizeof(__le16));
27985df7133SDmitry Torokhov 	memcpy(recv_buf, ihid->rawbuf + sizeof(__le16), recv_len);
28085df7133SDmitry Torokhov 
28185df7133SDmitry Torokhov 	if (report_id && recv_len != 0 && recv_buf[0] != report_id) {
28285df7133SDmitry Torokhov 		dev_err(&ihid->client->dev,
28385df7133SDmitry Torokhov 			"device returned incorrect report (%d vs %d expected)\n",
28485df7133SDmitry Torokhov 			recv_buf[0], report_id);
28585df7133SDmitry Torokhov 		return -EINVAL;
28685df7133SDmitry Torokhov 	}
28785df7133SDmitry Torokhov 
28885df7133SDmitry Torokhov 	return recv_len;
2899ee3e066SJulian Sax }
2909ee3e066SJulian Sax 
291dbe0dd5fSDmitry Torokhov static size_t i2c_hid_format_report(u8 *buf, int report_id,
292dbe0dd5fSDmitry Torokhov 				    const u8 *data, size_t size)
293dbe0dd5fSDmitry Torokhov {
294dbe0dd5fSDmitry Torokhov 	size_t length = sizeof(__le16); /* reserve space to store size */
295dbe0dd5fSDmitry Torokhov 
296dbe0dd5fSDmitry Torokhov 	if (report_id)
297dbe0dd5fSDmitry Torokhov 		buf[length++] = report_id;
298dbe0dd5fSDmitry Torokhov 
299dbe0dd5fSDmitry Torokhov 	memcpy(buf + length, data, size);
300dbe0dd5fSDmitry Torokhov 	length += size;
301dbe0dd5fSDmitry Torokhov 
302dbe0dd5fSDmitry Torokhov 	/* Store overall size in the beginning of the buffer */
303dbe0dd5fSDmitry Torokhov 	put_unaligned_le16(length, buf);
304dbe0dd5fSDmitry Torokhov 
305dbe0dd5fSDmitry Torokhov 	return length;
306dbe0dd5fSDmitry Torokhov }
307dbe0dd5fSDmitry Torokhov 
3089ee3e066SJulian Sax /**
3099ee3e066SJulian Sax  * i2c_hid_set_or_send_report: forward an incoming report to the device
310d34c6105SDmitry Torokhov  * @ihid: the i2c hid device
311dbe0dd5fSDmitry Torokhov  * @report_type: 0x03 for HID_FEATURE_REPORT ; 0x02 for HID_OUTPUT_REPORT
312dbe0dd5fSDmitry Torokhov  * @report_id: the report ID
3139ee3e066SJulian Sax  * @buf: the actual data to transfer, without the report ID
314ca43ab1eSXiaofei Tan  * @data_len: size of buf
315dbe0dd5fSDmitry Torokhov  * @do_set: true: use SET_REPORT HID command, false: send plain OUTPUT report
3169ee3e066SJulian Sax  */
317dbe0dd5fSDmitry Torokhov static int i2c_hid_set_or_send_report(struct i2c_hid *ihid,
318dbe0dd5fSDmitry Torokhov 				      u8 report_type, u8 report_id,
319dbe0dd5fSDmitry Torokhov 				      const u8 *buf, size_t data_len,
320dbe0dd5fSDmitry Torokhov 				      bool do_set)
3219ee3e066SJulian Sax {
322dbe0dd5fSDmitry Torokhov 	size_t length = 0;
323dbe0dd5fSDmitry Torokhov 	int error;
3249ee3e066SJulian Sax 
3259ee3e066SJulian Sax 	i2c_hid_dbg(ihid, "%s\n", __func__);
3269ee3e066SJulian Sax 
3279ee3e066SJulian Sax 	if (data_len > ihid->bufsize)
3289ee3e066SJulian Sax 		return -EINVAL;
3299ee3e066SJulian Sax 
330dbe0dd5fSDmitry Torokhov 	if (!do_set && le16_to_cpu(ihid->hdesc.wMaxOutputLength) == 0)
3319ee3e066SJulian Sax 		return -ENOSYS;
3329ee3e066SJulian Sax 
333dbe0dd5fSDmitry Torokhov 	if (do_set) {
334dbe0dd5fSDmitry Torokhov 		/* Command register goes first */
335dbe0dd5fSDmitry Torokhov 		*(__le16 *)ihid->cmdbuf = ihid->hdesc.wCommandRegister;
336dbe0dd5fSDmitry Torokhov 		length += sizeof(__le16);
337dbe0dd5fSDmitry Torokhov 		/* Next is SET_REPORT command */
338dbe0dd5fSDmitry Torokhov 		length += i2c_hid_encode_command(ihid->cmdbuf + length,
339dbe0dd5fSDmitry Torokhov 						 I2C_HID_OPCODE_SET_REPORT,
340dbe0dd5fSDmitry Torokhov 						 report_type, report_id);
3419ee3e066SJulian Sax 		/*
342dbe0dd5fSDmitry Torokhov 		 * Report data will go into the data register. Because
343dbe0dd5fSDmitry Torokhov 		 * command can be either 2 or 3 bytes destination for
344dbe0dd5fSDmitry Torokhov 		 * the data register may be not aligned.
3459ee3e066SJulian Sax 		*/
346dbe0dd5fSDmitry Torokhov 		put_unaligned_le16(le16_to_cpu(ihid->hdesc.wDataRegister),
347dbe0dd5fSDmitry Torokhov 				   ihid->cmdbuf + length);
348dbe0dd5fSDmitry Torokhov 		length += sizeof(__le16);
3499ee3e066SJulian Sax 	} else {
350dbe0dd5fSDmitry Torokhov 		/*
351dbe0dd5fSDmitry Torokhov 		 * With simple "send report" all data goes into the output
352dbe0dd5fSDmitry Torokhov 		 * register.
353dbe0dd5fSDmitry Torokhov 		 */
354269ecc0cSYang Li 		*(__le16 *)ihid->cmdbuf = ihid->hdesc.wOutputRegister;
355dbe0dd5fSDmitry Torokhov 		length += sizeof(__le16);
3569ee3e066SJulian Sax 	}
3579ee3e066SJulian Sax 
358dbe0dd5fSDmitry Torokhov 	length += i2c_hid_format_report(ihid->cmdbuf + length,
359dbe0dd5fSDmitry Torokhov 					report_id, buf, data_len);
3609ee3e066SJulian Sax 
361dbe0dd5fSDmitry Torokhov 	error = i2c_hid_xfer(ihid, ihid->cmdbuf, length, NULL, 0);
362dbe0dd5fSDmitry Torokhov 	if (error) {
363d34c6105SDmitry Torokhov 		dev_err(&ihid->client->dev,
364dbe0dd5fSDmitry Torokhov 			"failed to set a report to device: %d\n", error);
365dbe0dd5fSDmitry Torokhov 		return error;
3669ee3e066SJulian Sax 	}
3679ee3e066SJulian Sax 
3689ee3e066SJulian Sax 	return data_len;
3699ee3e066SJulian Sax }
3709ee3e066SJulian Sax 
371acb8dd95SDmitry Torokhov static int i2c_hid_set_power_command(struct i2c_hid *ihid, int power_state)
372acb8dd95SDmitry Torokhov {
373acb8dd95SDmitry Torokhov 	size_t length;
374acb8dd95SDmitry Torokhov 
375acb8dd95SDmitry Torokhov 	/* SET_POWER uses command register */
376acb8dd95SDmitry Torokhov 	*(__le16 *)ihid->cmdbuf = ihid->hdesc.wCommandRegister;
377acb8dd95SDmitry Torokhov 	length = sizeof(__le16);
378acb8dd95SDmitry Torokhov 
379acb8dd95SDmitry Torokhov 	/* Now the command itself */
380acb8dd95SDmitry Torokhov 	length += i2c_hid_encode_command(ihid->cmdbuf + length,
381acb8dd95SDmitry Torokhov 					 I2C_HID_OPCODE_SET_POWER,
382acb8dd95SDmitry Torokhov 					 0, power_state);
383acb8dd95SDmitry Torokhov 
384acb8dd95SDmitry Torokhov 	return i2c_hid_xfer(ihid, ihid->cmdbuf, length, NULL, 0);
385acb8dd95SDmitry Torokhov }
386acb8dd95SDmitry Torokhov 
387d34c6105SDmitry Torokhov static int i2c_hid_set_power(struct i2c_hid *ihid, int power_state)
3889ee3e066SJulian Sax {
3899ee3e066SJulian Sax 	int ret;
3909ee3e066SJulian Sax 
3919ee3e066SJulian Sax 	i2c_hid_dbg(ihid, "%s\n", __func__);
3929ee3e066SJulian Sax 
3939ee3e066SJulian Sax 	/*
3949ee3e066SJulian Sax 	 * Some devices require to send a command to wakeup before power on.
3959ee3e066SJulian Sax 	 * The call will get a return value (EREMOTEIO) but device will be
3969ee3e066SJulian Sax 	 * triggered and activated. After that, it goes like a normal device.
3979ee3e066SJulian Sax 	 */
3989ee3e066SJulian Sax 	if (power_state == I2C_HID_PWR_ON &&
3999ee3e066SJulian Sax 	    ihid->quirks & I2C_HID_QUIRK_SET_PWR_WAKEUP_DEV) {
400acb8dd95SDmitry Torokhov 		ret = i2c_hid_set_power_command(ihid, I2C_HID_PWR_ON);
4019ee3e066SJulian Sax 
4029ee3e066SJulian Sax 		/* Device was already activated */
4039ee3e066SJulian Sax 		if (!ret)
4049ee3e066SJulian Sax 			goto set_pwr_exit;
4059ee3e066SJulian Sax 	}
4069ee3e066SJulian Sax 
407acb8dd95SDmitry Torokhov 	ret = i2c_hid_set_power_command(ihid, power_state);
4089ee3e066SJulian Sax 	if (ret)
409d34c6105SDmitry Torokhov 		dev_err(&ihid->client->dev,
410d34c6105SDmitry Torokhov 			"failed to change power setting.\n");
4119ee3e066SJulian Sax 
4129ee3e066SJulian Sax set_pwr_exit:
413eef40162SHans de Goede 
414eef40162SHans de Goede 	/*
415eef40162SHans de Goede 	 * The HID over I2C specification states that if a DEVICE needs time
416eef40162SHans de Goede 	 * after the PWR_ON request, it should utilise CLOCK stretching.
417eef40162SHans de Goede 	 * However, it has been observered that the Windows driver provides a
418eef40162SHans de Goede 	 * 1ms sleep between the PWR_ON and RESET requests.
419eef40162SHans de Goede 	 * According to Goodix Windows even waits 60 ms after (other?)
420eef40162SHans de Goede 	 * PWR_ON requests. Testing has confirmed that several devices
421eef40162SHans de Goede 	 * will not work properly without a delay after a PWR_ON request.
422eef40162SHans de Goede 	 */
423eef40162SHans de Goede 	if (!ret && power_state == I2C_HID_PWR_ON)
424eef40162SHans de Goede 		msleep(60);
425eef40162SHans de Goede 
4269ee3e066SJulian Sax 	return ret;
4279ee3e066SJulian Sax }
4289ee3e066SJulian Sax 
42996d3098dSHans de Goede static int i2c_hid_start_hwreset(struct i2c_hid *ihid)
4309ee3e066SJulian Sax {
431f023605dSHans de Goede 	size_t length = 0;
4329ee3e066SJulian Sax 	int ret;
4339ee3e066SJulian Sax 
4349ee3e066SJulian Sax 	i2c_hid_dbg(ihid, "%s\n", __func__);
4359ee3e066SJulian Sax 
4369ee3e066SJulian Sax 	/*
4379ee3e066SJulian Sax 	 * This prevents sending feature reports while the device is
4389ee3e066SJulian Sax 	 * being reset. Otherwise we may lose the reset complete
4399ee3e066SJulian Sax 	 * interrupt.
4409ee3e066SJulian Sax 	 */
44196d3098dSHans de Goede 	lockdep_assert_held(&ihid->reset_lock);
4429ee3e066SJulian Sax 
443d34c6105SDmitry Torokhov 	ret = i2c_hid_set_power(ihid, I2C_HID_PWR_ON);
4449ee3e066SJulian Sax 	if (ret)
44596d3098dSHans de Goede 		return ret;
4469ee3e066SJulian Sax 
447f023605dSHans de Goede 	/* Prepare reset command. Command register goes first. */
448f023605dSHans de Goede 	*(__le16 *)ihid->cmdbuf = ihid->hdesc.wCommandRegister;
449f023605dSHans de Goede 	length += sizeof(__le16);
450f023605dSHans de Goede 	/* Next is RESET command itself */
451f023605dSHans de Goede 	length += i2c_hid_encode_command(ihid->cmdbuf + length,
452f023605dSHans de Goede 					 I2C_HID_OPCODE_RESET, 0, 0);
453f023605dSHans de Goede 
454f023605dSHans de Goede 	set_bit(I2C_HID_RESET_PENDING, &ihid->flags);
455f023605dSHans de Goede 
456f023605dSHans de Goede 	ret = i2c_hid_xfer(ihid, ihid->cmdbuf, length, NULL, 0);
4579ee3e066SJulian Sax 	if (ret) {
458b26fc316SDmitry Torokhov 		dev_err(&ihid->client->dev,
459b26fc316SDmitry Torokhov 			"failed to reset device: %d\n", ret);
460f023605dSHans de Goede 		goto err_clear_reset;
4619ee3e066SJulian Sax 	}
4629ee3e066SJulian Sax 
46396d3098dSHans de Goede 	return 0;
46496d3098dSHans de Goede 
46596d3098dSHans de Goede err_clear_reset:
46696d3098dSHans de Goede 	clear_bit(I2C_HID_RESET_PENDING, &ihid->flags);
46796d3098dSHans de Goede 	i2c_hid_set_power(ihid, I2C_HID_PWR_SLEEP);
46896d3098dSHans de Goede 	return ret;
46996d3098dSHans de Goede }
47096d3098dSHans de Goede 
47196d3098dSHans de Goede static int i2c_hid_finish_hwreset(struct i2c_hid *ihid)
47296d3098dSHans de Goede {
47396d3098dSHans de Goede 	int ret = 0;
47496d3098dSHans de Goede 
475f023605dSHans de Goede 	i2c_hid_dbg(ihid, "%s: waiting...\n", __func__);
476f023605dSHans de Goede 
477f023605dSHans de Goede 	if (ihid->quirks & I2C_HID_QUIRK_NO_IRQ_AFTER_RESET) {
478f023605dSHans de Goede 		msleep(100);
479f023605dSHans de Goede 		clear_bit(I2C_HID_RESET_PENDING, &ihid->flags);
480f023605dSHans de Goede 	} else if (!wait_event_timeout(ihid->wait,
481f023605dSHans de Goede 				       !test_bit(I2C_HID_RESET_PENDING, &ihid->flags),
482*7bcf9ebbSHans de Goede 				       msecs_to_jiffies(1000))) {
483*7bcf9ebbSHans de Goede 		dev_warn(&ihid->client->dev, "device did not ack reset within 1000 ms\n");
484*7bcf9ebbSHans de Goede 		clear_bit(I2C_HID_RESET_PENDING, &ihid->flags);
485f023605dSHans de Goede 	}
486f023605dSHans de Goede 	i2c_hid_dbg(ihid, "%s: finished.\n", __func__);
487f023605dSHans de Goede 
48843b7029fSHans de Goede 	/* At least some SIS devices need this after reset */
489ca66a677SJohnny Chuang 	if (!(ihid->quirks & I2C_HID_QUIRK_NO_WAKEUP_AFTER_RESET))
490d34c6105SDmitry Torokhov 		ret = i2c_hid_set_power(ihid, I2C_HID_PWR_ON);
49143b7029fSHans de Goede 
492f023605dSHans de Goede 	return ret;
4939ee3e066SJulian Sax }
4949ee3e066SJulian Sax 
4959ee3e066SJulian Sax static void i2c_hid_get_input(struct i2c_hid *ihid)
4969ee3e066SJulian Sax {
49786fc3fd2SDmitry Torokhov 	u16 size = le16_to_cpu(ihid->hdesc.wMaxInputLength);
49886fc3fd2SDmitry Torokhov 	u16 ret_size;
4999ee3e066SJulian Sax 	int ret;
5009ee3e066SJulian Sax 
5019ee3e066SJulian Sax 	if (size > ihid->bufsize)
5029ee3e066SJulian Sax 		size = ihid->bufsize;
5039ee3e066SJulian Sax 
5049ee3e066SJulian Sax 	ret = i2c_master_recv(ihid->client, ihid->inbuf, size);
5059ee3e066SJulian Sax 	if (ret != size) {
5069ee3e066SJulian Sax 		if (ret < 0)
5079ee3e066SJulian Sax 			return;
5089ee3e066SJulian Sax 
5099ee3e066SJulian Sax 		dev_err(&ihid->client->dev, "%s: got %d data instead of %d\n",
5109ee3e066SJulian Sax 			__func__, ret, size);
5119ee3e066SJulian Sax 		return;
5129ee3e066SJulian Sax 	}
5139ee3e066SJulian Sax 
51486fc3fd2SDmitry Torokhov 	/* Receiving buffer is properly aligned */
51586fc3fd2SDmitry Torokhov 	ret_size = le16_to_cpup((__le16 *)ihid->inbuf);
5169ee3e066SJulian Sax 	if (!ret_size) {
5179ee3e066SJulian Sax 		/* host or device initiated RESET completed */
5189ee3e066SJulian Sax 		if (test_and_clear_bit(I2C_HID_RESET_PENDING, &ihid->flags))
5199ee3e066SJulian Sax 			wake_up(&ihid->wait);
5209ee3e066SJulian Sax 		return;
5219ee3e066SJulian Sax 	}
5229ee3e066SJulian Sax 
52386fc3fd2SDmitry Torokhov 	if ((ihid->quirks & I2C_HID_QUIRK_BOGUS_IRQ) && ret_size == 0xffff) {
52486fc3fd2SDmitry Torokhov 		dev_warn_once(&ihid->client->dev,
52586fc3fd2SDmitry Torokhov 			      "%s: IRQ triggered but there's no data\n",
52686fc3fd2SDmitry Torokhov 			      __func__);
5271475af25SKai-Heng Feng 		return;
5281475af25SKai-Heng Feng 	}
5291475af25SKai-Heng Feng 
53086fc3fd2SDmitry Torokhov 	if (ret_size > size || ret_size < sizeof(__le16)) {
531fd091376SPavel Balan 		if (ihid->quirks & I2C_HID_QUIRK_BAD_INPUT_SIZE) {
53286fc3fd2SDmitry Torokhov 			*(__le16 *)ihid->inbuf = cpu_to_le16(size);
533fd091376SPavel Balan 			ret_size = size;
534fd091376SPavel Balan 		} else {
53586fc3fd2SDmitry Torokhov 			dev_err(&ihid->client->dev,
53686fc3fd2SDmitry Torokhov 				"%s: incomplete report (%d/%d)\n",
5379ee3e066SJulian Sax 				__func__, size, ret_size);
5389ee3e066SJulian Sax 			return;
5399ee3e066SJulian Sax 		}
540fd091376SPavel Balan 	}
5419ee3e066SJulian Sax 
5429ee3e066SJulian Sax 	i2c_hid_dbg(ihid, "input: %*ph\n", ret_size, ihid->inbuf);
5439ee3e066SJulian Sax 
544d951ae1cSMatthias Kaehlcke 	if (test_bit(I2C_HID_STARTED, &ihid->flags)) {
5459984fbf5SDmitry Torokhov 		if (ihid->hid->group != HID_GROUP_RMI)
546d951ae1cSMatthias Kaehlcke 			pm_wakeup_event(&ihid->client->dev, 0);
547d951ae1cSMatthias Kaehlcke 
54886fc3fd2SDmitry Torokhov 		hid_input_report(ihid->hid, HID_INPUT_REPORT,
54986fc3fd2SDmitry Torokhov 				ihid->inbuf + sizeof(__le16),
55086fc3fd2SDmitry Torokhov 				ret_size - sizeof(__le16), 1);
551d951ae1cSMatthias Kaehlcke 	}
5529ee3e066SJulian Sax 
5539ee3e066SJulian Sax 	return;
5549ee3e066SJulian Sax }
5559ee3e066SJulian Sax 
5569ee3e066SJulian Sax static irqreturn_t i2c_hid_irq(int irq, void *dev_id)
5579ee3e066SJulian Sax {
5589ee3e066SJulian Sax 	struct i2c_hid *ihid = dev_id;
5599ee3e066SJulian Sax 
5609ee3e066SJulian Sax 	if (test_bit(I2C_HID_READ_PENDING, &ihid->flags))
5619ee3e066SJulian Sax 		return IRQ_HANDLED;
5629ee3e066SJulian Sax 
5639ee3e066SJulian Sax 	i2c_hid_get_input(ihid);
5649ee3e066SJulian Sax 
5659ee3e066SJulian Sax 	return IRQ_HANDLED;
5669ee3e066SJulian Sax }
5679ee3e066SJulian Sax 
5689ee3e066SJulian Sax static int i2c_hid_get_report_length(struct hid_report *report)
5699ee3e066SJulian Sax {
5709ee3e066SJulian Sax 	return ((report->size - 1) >> 3) + 1 +
5719ee3e066SJulian Sax 		report->device->report_enum[report->type].numbered + 2;
5729ee3e066SJulian Sax }
5739ee3e066SJulian Sax 
5749ee3e066SJulian Sax /*
5759ee3e066SJulian Sax  * Traverse the supplied list of reports and find the longest
5769ee3e066SJulian Sax  */
5779ee3e066SJulian Sax static void i2c_hid_find_max_report(struct hid_device *hid, unsigned int type,
5789ee3e066SJulian Sax 		unsigned int *max)
5799ee3e066SJulian Sax {
5809ee3e066SJulian Sax 	struct hid_report *report;
5819ee3e066SJulian Sax 	unsigned int size;
5829ee3e066SJulian Sax 
5839ee3e066SJulian Sax 	/* We should not rely on wMaxInputLength, as some devices may set it to
5849ee3e066SJulian Sax 	 * a wrong length. */
5859ee3e066SJulian Sax 	list_for_each_entry(report, &hid->report_enum[type].report_list, list) {
5869ee3e066SJulian Sax 		size = i2c_hid_get_report_length(report);
5879ee3e066SJulian Sax 		if (*max < size)
5889ee3e066SJulian Sax 			*max = size;
5899ee3e066SJulian Sax 	}
5909ee3e066SJulian Sax }
5919ee3e066SJulian Sax 
5929ee3e066SJulian Sax static void i2c_hid_free_buffers(struct i2c_hid *ihid)
5939ee3e066SJulian Sax {
5949ee3e066SJulian Sax 	kfree(ihid->inbuf);
5959ee3e066SJulian Sax 	kfree(ihid->rawbuf);
5969ee3e066SJulian Sax 	kfree(ihid->cmdbuf);
5979ee3e066SJulian Sax 	ihid->inbuf = NULL;
5989ee3e066SJulian Sax 	ihid->rawbuf = NULL;
5999ee3e066SJulian Sax 	ihid->cmdbuf = NULL;
6009ee3e066SJulian Sax 	ihid->bufsize = 0;
6019ee3e066SJulian Sax }
6029ee3e066SJulian Sax 
6039ee3e066SJulian Sax static int i2c_hid_alloc_buffers(struct i2c_hid *ihid, size_t report_size)
6049ee3e066SJulian Sax {
605dbe0dd5fSDmitry Torokhov 	/*
606dbe0dd5fSDmitry Torokhov 	 * The worst case is computed from the set_report command with a
607dbe0dd5fSDmitry Torokhov 	 * reportID > 15 and the maximum report length.
608dbe0dd5fSDmitry Torokhov 	 */
609dbe0dd5fSDmitry Torokhov 	int cmd_len = sizeof(__le16) +	/* command register */
610dbe0dd5fSDmitry Torokhov 		      sizeof(u8) +	/* encoded report type/ID */
611dbe0dd5fSDmitry Torokhov 		      sizeof(u8) +	/* opcode */
612dbe0dd5fSDmitry Torokhov 		      sizeof(u8) +	/* optional 3rd byte report ID */
613dbe0dd5fSDmitry Torokhov 		      sizeof(__le16) +	/* data register */
614dbe0dd5fSDmitry Torokhov 		      sizeof(__le16) +	/* report data size */
615dbe0dd5fSDmitry Torokhov 		      sizeof(u8) +	/* report ID if numbered report */
616dbe0dd5fSDmitry Torokhov 		      report_size;
6179ee3e066SJulian Sax 
6189ee3e066SJulian Sax 	ihid->inbuf = kzalloc(report_size, GFP_KERNEL);
6199ee3e066SJulian Sax 	ihid->rawbuf = kzalloc(report_size, GFP_KERNEL);
620dbe0dd5fSDmitry Torokhov 	ihid->cmdbuf = kzalloc(cmd_len, GFP_KERNEL);
6219ee3e066SJulian Sax 
622dbe0dd5fSDmitry Torokhov 	if (!ihid->inbuf || !ihid->rawbuf || !ihid->cmdbuf) {
6239ee3e066SJulian Sax 		i2c_hid_free_buffers(ihid);
6249ee3e066SJulian Sax 		return -ENOMEM;
6259ee3e066SJulian Sax 	}
6269ee3e066SJulian Sax 
6279ee3e066SJulian Sax 	ihid->bufsize = report_size;
6289ee3e066SJulian Sax 
6299ee3e066SJulian Sax 	return 0;
6309ee3e066SJulian Sax }
6319ee3e066SJulian Sax 
6329ee3e066SJulian Sax static int i2c_hid_get_raw_report(struct hid_device *hid,
63385df7133SDmitry Torokhov 				  u8 report_type, u8 report_id,
63485df7133SDmitry Torokhov 				  u8 *buf, size_t count)
6359ee3e066SJulian Sax {
6369ee3e066SJulian Sax 	struct i2c_client *client = hid->driver_data;
6379ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
63885df7133SDmitry Torokhov 	int ret_count;
6399ee3e066SJulian Sax 
6409ee3e066SJulian Sax 	if (report_type == HID_OUTPUT_REPORT)
6419ee3e066SJulian Sax 		return -EINVAL;
6429ee3e066SJulian Sax 
643a5e5e03eSDmitry Torokhov 	/*
644a5e5e03eSDmitry Torokhov 	 * In case of unnumbered reports the response from the device will
645a5e5e03eSDmitry Torokhov 	 * not have the report ID that the upper layers expect, so we need
646a5e5e03eSDmitry Torokhov 	 * to stash it the buffer ourselves and adjust the data size.
647a5e5e03eSDmitry Torokhov 	 */
64885df7133SDmitry Torokhov 	if (!report_id) {
649a5e5e03eSDmitry Torokhov 		buf[0] = 0;
650a5e5e03eSDmitry Torokhov 		buf++;
651a5e5e03eSDmitry Torokhov 		count--;
652a5e5e03eSDmitry Torokhov 	}
653a5e5e03eSDmitry Torokhov 
65485df7133SDmitry Torokhov 	ret_count = i2c_hid_get_report(ihid,
6559ee3e066SJulian Sax 			report_type == HID_FEATURE_REPORT ? 0x03 : 0x01,
65685df7133SDmitry Torokhov 			report_id, buf, count);
6579ee3e066SJulian Sax 
65885df7133SDmitry Torokhov 	if (ret_count > 0 && !report_id)
65985df7133SDmitry Torokhov 		ret_count++;
6609ee3e066SJulian Sax 
66185df7133SDmitry Torokhov 	return ret_count;
6629ee3e066SJulian Sax }
6639ee3e066SJulian Sax 
66485df7133SDmitry Torokhov static int i2c_hid_output_raw_report(struct hid_device *hid, u8 report_type,
66585df7133SDmitry Torokhov 				     const u8 *buf, size_t count, bool do_set)
6669ee3e066SJulian Sax {
6679ee3e066SJulian Sax 	struct i2c_client *client = hid->driver_data;
6689ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
6699ee3e066SJulian Sax 	int report_id = buf[0];
6709ee3e066SJulian Sax 	int ret;
6719ee3e066SJulian Sax 
6729ee3e066SJulian Sax 	if (report_type == HID_INPUT_REPORT)
6739ee3e066SJulian Sax 		return -EINVAL;
6749ee3e066SJulian Sax 
6759ee3e066SJulian Sax 	mutex_lock(&ihid->reset_lock);
6769ee3e066SJulian Sax 
677a5e5e03eSDmitry Torokhov 	/*
678a5e5e03eSDmitry Torokhov 	 * Note that both numbered and unnumbered reports passed here
679a5e5e03eSDmitry Torokhov 	 * are supposed to have report ID stored in the 1st byte of the
680a5e5e03eSDmitry Torokhov 	 * buffer, so we strip it off unconditionally before passing payload
681a5e5e03eSDmitry Torokhov 	 * to i2c_hid_set_or_send_report which takes care of encoding
682a5e5e03eSDmitry Torokhov 	 * everything properly.
683a5e5e03eSDmitry Torokhov 	 */
684d34c6105SDmitry Torokhov 	ret = i2c_hid_set_or_send_report(ihid,
6859ee3e066SJulian Sax 				report_type == HID_FEATURE_REPORT ? 0x03 : 0x02,
686dbe0dd5fSDmitry Torokhov 				report_id, buf + 1, count - 1, do_set);
6879ee3e066SJulian Sax 
688a5e5e03eSDmitry Torokhov 	if (ret >= 0)
689a5e5e03eSDmitry Torokhov 		ret++; /* add report_id to the number of transferred bytes */
6909ee3e066SJulian Sax 
6919ee3e066SJulian Sax 	mutex_unlock(&ihid->reset_lock);
6929ee3e066SJulian Sax 
6939ee3e066SJulian Sax 	return ret;
6949ee3e066SJulian Sax }
6959ee3e066SJulian Sax 
696dbe0dd5fSDmitry Torokhov static int i2c_hid_output_report(struct hid_device *hid, u8 *buf, size_t count)
6979ee3e066SJulian Sax {
69885df7133SDmitry Torokhov 	return i2c_hid_output_raw_report(hid, HID_OUTPUT_REPORT, buf, count,
6999ee3e066SJulian Sax 					 false);
7009ee3e066SJulian Sax }
7019ee3e066SJulian Sax 
7029ee3e066SJulian Sax static int i2c_hid_raw_request(struct hid_device *hid, unsigned char reportnum,
7039ee3e066SJulian Sax 			       __u8 *buf, size_t len, unsigned char rtype,
7049ee3e066SJulian Sax 			       int reqtype)
7059ee3e066SJulian Sax {
7069ee3e066SJulian Sax 	switch (reqtype) {
7079ee3e066SJulian Sax 	case HID_REQ_GET_REPORT:
70885df7133SDmitry Torokhov 		return i2c_hid_get_raw_report(hid, rtype, reportnum, buf, len);
7099ee3e066SJulian Sax 	case HID_REQ_SET_REPORT:
7109ee3e066SJulian Sax 		if (buf[0] != reportnum)
7119ee3e066SJulian Sax 			return -EINVAL;
71285df7133SDmitry Torokhov 		return i2c_hid_output_raw_report(hid, rtype, buf, len, true);
7139ee3e066SJulian Sax 	default:
7149ee3e066SJulian Sax 		return -EIO;
7159ee3e066SJulian Sax 	}
7169ee3e066SJulian Sax }
7179ee3e066SJulian Sax 
7189ee3e066SJulian Sax static int i2c_hid_parse(struct hid_device *hid)
7199ee3e066SJulian Sax {
7209ee3e066SJulian Sax 	struct i2c_client *client = hid->driver_data;
7219ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
7229ee3e066SJulian Sax 	struct i2c_hid_desc *hdesc = &ihid->hdesc;
723af93a167SHans de Goede 	char *rdesc = NULL, *use_override = NULL;
7249ee3e066SJulian Sax 	unsigned int rsize;
7259ee3e066SJulian Sax 	int ret;
7269ee3e066SJulian Sax 	int tries = 3;
7279ee3e066SJulian Sax 
7289ee3e066SJulian Sax 	i2c_hid_dbg(ihid, "entering %s\n", __func__);
7299ee3e066SJulian Sax 
7309ee3e066SJulian Sax 	rsize = le16_to_cpu(hdesc->wReportDescLength);
7319ee3e066SJulian Sax 	if (!rsize || rsize > HID_MAX_DESCRIPTOR_SIZE) {
7329ee3e066SJulian Sax 		dbg_hid("weird size of report descriptor (%u)\n", rsize);
7339ee3e066SJulian Sax 		return -EINVAL;
7349ee3e066SJulian Sax 	}
7359ee3e066SJulian Sax 
73696d3098dSHans de Goede 	mutex_lock(&ihid->reset_lock);
737af93a167SHans de Goede 	do {
73896d3098dSHans de Goede 		ret = i2c_hid_start_hwreset(ihid);
7399ee3e066SJulian Sax 		if (ret)
7409ee3e066SJulian Sax 			msleep(1000);
7419ee3e066SJulian Sax 	} while (tries-- > 0 && ret);
7429ee3e066SJulian Sax 
7439ee3e066SJulian Sax 	if (ret)
744af93a167SHans de Goede 		goto abort_reset;
7459ee3e066SJulian Sax 
7469ee3e066SJulian Sax 	use_override = i2c_hid_get_dmi_hid_report_desc_override(client->name,
7479ee3e066SJulian Sax 								&rsize);
7489ee3e066SJulian Sax 
7499ee3e066SJulian Sax 	if (use_override) {
7509ee3e066SJulian Sax 		rdesc = use_override;
7519ee3e066SJulian Sax 		i2c_hid_dbg(ihid, "Using a HID report descriptor override\n");
7529ee3e066SJulian Sax 	} else {
7539ee3e066SJulian Sax 		rdesc = kzalloc(rsize, GFP_KERNEL);
7549ee3e066SJulian Sax 
7559ee3e066SJulian Sax 		if (!rdesc) {
756af93a167SHans de Goede 			ret = -ENOMEM;
757af93a167SHans de Goede 			goto abort_reset;
7589ee3e066SJulian Sax 		}
7599ee3e066SJulian Sax 
7609ee3e066SJulian Sax 		i2c_hid_dbg(ihid, "asking HID report descriptor\n");
7619ee3e066SJulian Sax 
7628399bd01SDmitry Torokhov 		ret = i2c_hid_read_register(ihid,
7638399bd01SDmitry Torokhov 					    ihid->hdesc.wReportDescRegister,
7649ee3e066SJulian Sax 					    rdesc, rsize);
7659ee3e066SJulian Sax 		if (ret) {
7669ee3e066SJulian Sax 			hid_err(hid, "reading report descriptor failed\n");
767af93a167SHans de Goede 			goto abort_reset;
768af93a167SHans de Goede 		}
769af93a167SHans de Goede 	}
770af93a167SHans de Goede 
771af93a167SHans de Goede 	/*
772af93a167SHans de Goede 	 * Windows directly reads the report-descriptor after sending reset
773af93a167SHans de Goede 	 * and then waits for resets completion afterwards. Some touchpads
774af93a167SHans de Goede 	 * actually wait for the report-descriptor to be read before signalling
775af93a167SHans de Goede 	 * reset completion.
776af93a167SHans de Goede 	 */
777af93a167SHans de Goede 	ret = i2c_hid_finish_hwreset(ihid);
778af93a167SHans de Goede abort_reset:
779af93a167SHans de Goede 	clear_bit(I2C_HID_RESET_PENDING, &ihid->flags);
780af93a167SHans de Goede 	mutex_unlock(&ihid->reset_lock);
781af93a167SHans de Goede 	if (ret)
782aa69d697SHans de Goede 		goto out;
7839ee3e066SJulian Sax 
7849ee3e066SJulian Sax 	i2c_hid_dbg(ihid, "Report Descriptor: %*ph\n", rsize, rdesc);
7859ee3e066SJulian Sax 
7869ee3e066SJulian Sax 	ret = hid_parse_report(hid, rdesc, rsize);
787aa69d697SHans de Goede 	if (ret)
788aa69d697SHans de Goede 		dbg_hid("parsing report descriptor failed\n");
789aa69d697SHans de Goede 
790aa69d697SHans de Goede out:
7919ee3e066SJulian Sax 	if (!use_override)
7929ee3e066SJulian Sax 		kfree(rdesc);
7939ee3e066SJulian Sax 
7949ee3e066SJulian Sax 	return ret;
7959ee3e066SJulian Sax }
7969ee3e066SJulian Sax 
7979ee3e066SJulian Sax static int i2c_hid_start(struct hid_device *hid)
7989ee3e066SJulian Sax {
7999ee3e066SJulian Sax 	struct i2c_client *client = hid->driver_data;
8009ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
8019ee3e066SJulian Sax 	int ret;
8029ee3e066SJulian Sax 	unsigned int bufsize = HID_MIN_BUFFER_SIZE;
8039ee3e066SJulian Sax 
8049ee3e066SJulian Sax 	i2c_hid_find_max_report(hid, HID_INPUT_REPORT, &bufsize);
8059ee3e066SJulian Sax 	i2c_hid_find_max_report(hid, HID_OUTPUT_REPORT, &bufsize);
8069ee3e066SJulian Sax 	i2c_hid_find_max_report(hid, HID_FEATURE_REPORT, &bufsize);
8079ee3e066SJulian Sax 
8089ee3e066SJulian Sax 	if (bufsize > ihid->bufsize) {
8099ee3e066SJulian Sax 		disable_irq(client->irq);
8109ee3e066SJulian Sax 		i2c_hid_free_buffers(ihid);
8119ee3e066SJulian Sax 
8129ee3e066SJulian Sax 		ret = i2c_hid_alloc_buffers(ihid, bufsize);
8139ee3e066SJulian Sax 		enable_irq(client->irq);
8149ee3e066SJulian Sax 
8159ee3e066SJulian Sax 		if (ret)
8169ee3e066SJulian Sax 			return ret;
8179ee3e066SJulian Sax 	}
8189ee3e066SJulian Sax 
8199ee3e066SJulian Sax 	return 0;
8209ee3e066SJulian Sax }
8219ee3e066SJulian Sax 
8229ee3e066SJulian Sax static void i2c_hid_stop(struct hid_device *hid)
8239ee3e066SJulian Sax {
8249ee3e066SJulian Sax 	hid->claimed = 0;
8259ee3e066SJulian Sax }
8269ee3e066SJulian Sax 
8279ee3e066SJulian Sax static int i2c_hid_open(struct hid_device *hid)
8289ee3e066SJulian Sax {
8299ee3e066SJulian Sax 	struct i2c_client *client = hid->driver_data;
8309ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
8319ee3e066SJulian Sax 
8329ee3e066SJulian Sax 	set_bit(I2C_HID_STARTED, &ihid->flags);
8339ee3e066SJulian Sax 	return 0;
8349ee3e066SJulian Sax }
8359ee3e066SJulian Sax 
8369ee3e066SJulian Sax static void i2c_hid_close(struct hid_device *hid)
8379ee3e066SJulian Sax {
8389ee3e066SJulian Sax 	struct i2c_client *client = hid->driver_data;
8399ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
8409ee3e066SJulian Sax 
8419ee3e066SJulian Sax 	clear_bit(I2C_HID_STARTED, &ihid->flags);
8429ee3e066SJulian Sax }
8439ee3e066SJulian Sax 
84452d22534SThomas Weißschuh static const struct hid_ll_driver i2c_hid_ll_driver = {
8459ee3e066SJulian Sax 	.parse = i2c_hid_parse,
8469ee3e066SJulian Sax 	.start = i2c_hid_start,
8479ee3e066SJulian Sax 	.stop = i2c_hid_stop,
8489ee3e066SJulian Sax 	.open = i2c_hid_open,
8499ee3e066SJulian Sax 	.close = i2c_hid_close,
8509ee3e066SJulian Sax 	.output_report = i2c_hid_output_report,
8519ee3e066SJulian Sax 	.raw_request = i2c_hid_raw_request,
8529ee3e066SJulian Sax };
8539ee3e066SJulian Sax 
8549ee3e066SJulian Sax static int i2c_hid_init_irq(struct i2c_client *client)
8559ee3e066SJulian Sax {
8569ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
8579ee3e066SJulian Sax 	unsigned long irqflags = 0;
8589ee3e066SJulian Sax 	int ret;
8599ee3e066SJulian Sax 
860f639e0b6SThomas Weißschuh 	i2c_hid_dbg(ihid, "Requesting IRQ: %d\n", client->irq);
8619ee3e066SJulian Sax 
8629ee3e066SJulian Sax 	if (!irq_get_trigger_type(client->irq))
8639ee3e066SJulian Sax 		irqflags = IRQF_TRIGGER_LOW;
8649ee3e066SJulian Sax 
8659ee3e066SJulian Sax 	ret = request_threaded_irq(client->irq, NULL, i2c_hid_irq,
866675cd877SDouglas Anderson 				   irqflags | IRQF_ONESHOT | IRQF_NO_AUTOEN,
867675cd877SDouglas Anderson 				   client->name, ihid);
8689ee3e066SJulian Sax 	if (ret < 0) {
8699ee3e066SJulian Sax 		dev_warn(&client->dev,
8709ee3e066SJulian Sax 			"Could not register for %s interrupt, irq = %d,"
8719ee3e066SJulian Sax 			" ret = %d\n",
8729ee3e066SJulian Sax 			client->name, client->irq, ret);
8739ee3e066SJulian Sax 
8749ee3e066SJulian Sax 		return ret;
8759ee3e066SJulian Sax 	}
8769ee3e066SJulian Sax 
8779ee3e066SJulian Sax 	return 0;
8789ee3e066SJulian Sax }
8799ee3e066SJulian Sax 
8809ee3e066SJulian Sax static int i2c_hid_fetch_hid_descriptor(struct i2c_hid *ihid)
8819ee3e066SJulian Sax {
8829ee3e066SJulian Sax 	struct i2c_client *client = ihid->client;
8839ee3e066SJulian Sax 	struct i2c_hid_desc *hdesc = &ihid->hdesc;
8849ee3e066SJulian Sax 	unsigned int dsize;
8858399bd01SDmitry Torokhov 	int error;
8869ee3e066SJulian Sax 
8879ee3e066SJulian Sax 	/* i2c hid fetch using a fixed descriptor size (30 bytes) */
8889ee3e066SJulian Sax 	if (i2c_hid_get_dmi_i2c_hid_desc_override(client->name)) {
8899ee3e066SJulian Sax 		i2c_hid_dbg(ihid, "Using a HID descriptor override\n");
8909ee3e066SJulian Sax 		ihid->hdesc =
8919ee3e066SJulian Sax 			*i2c_hid_get_dmi_i2c_hid_desc_override(client->name);
8929ee3e066SJulian Sax 	} else {
8939ee3e066SJulian Sax 		i2c_hid_dbg(ihid, "Fetching the HID descriptor\n");
8948399bd01SDmitry Torokhov 		error = i2c_hid_read_register(ihid,
8958399bd01SDmitry Torokhov 					      ihid->wHIDDescRegister,
8968399bd01SDmitry Torokhov 					      &ihid->hdesc,
8978399bd01SDmitry Torokhov 					      sizeof(ihid->hdesc));
8988399bd01SDmitry Torokhov 		if (error) {
8998399bd01SDmitry Torokhov 			dev_err(&ihid->client->dev,
9008399bd01SDmitry Torokhov 				"failed to fetch HID descriptor: %d\n",
9018399bd01SDmitry Torokhov 				error);
9029ee3e066SJulian Sax 			return -ENODEV;
9039ee3e066SJulian Sax 		}
9049ee3e066SJulian Sax 	}
9059ee3e066SJulian Sax 
9069ee3e066SJulian Sax 	/* Validate the length of HID descriptor, the 4 first bytes:
9079ee3e066SJulian Sax 	 * bytes 0-1 -> length
9089ee3e066SJulian Sax 	 * bytes 2-3 -> bcdVersion (has to be 1.00) */
9099ee3e066SJulian Sax 	/* check bcdVersion == 1.0 */
9109ee3e066SJulian Sax 	if (le16_to_cpu(hdesc->bcdVersion) != 0x0100) {
911d34c6105SDmitry Torokhov 		dev_err(&ihid->client->dev,
9129ee3e066SJulian Sax 			"unexpected HID descriptor bcdVersion (0x%04hx)\n",
9139ee3e066SJulian Sax 			le16_to_cpu(hdesc->bcdVersion));
9149ee3e066SJulian Sax 		return -ENODEV;
9159ee3e066SJulian Sax 	}
9169ee3e066SJulian Sax 
9179ee3e066SJulian Sax 	/* Descriptor length should be 30 bytes as per the specification */
9189ee3e066SJulian Sax 	dsize = le16_to_cpu(hdesc->wHIDDescLength);
9199ee3e066SJulian Sax 	if (dsize != sizeof(struct i2c_hid_desc)) {
920d34c6105SDmitry Torokhov 		dev_err(&ihid->client->dev,
921d34c6105SDmitry Torokhov 			"weird size of HID descriptor (%u)\n", dsize);
9229ee3e066SJulian Sax 		return -ENODEV;
9239ee3e066SJulian Sax 	}
924551117c5SDmitry Torokhov 	i2c_hid_dbg(ihid, "HID Descriptor: %*ph\n", dsize, &ihid->hdesc);
9259ee3e066SJulian Sax 	return 0;
9269ee3e066SJulian Sax }
9279ee3e066SJulian Sax 
928b33752c3SDouglas Anderson static int i2c_hid_core_power_up(struct i2c_hid *ihid)
9299ee3e066SJulian Sax {
930b33752c3SDouglas Anderson 	if (!ihid->ops->power_up)
9319ee3e066SJulian Sax 		return 0;
932b33752c3SDouglas Anderson 
933b33752c3SDouglas Anderson 	return ihid->ops->power_up(ihid->ops);
9349ee3e066SJulian Sax }
9359ee3e066SJulian Sax 
936b33752c3SDouglas Anderson static void i2c_hid_core_power_down(struct i2c_hid *ihid)
9379ee3e066SJulian Sax {
938b33752c3SDouglas Anderson 	if (!ihid->ops->power_down)
939b33752c3SDouglas Anderson 		return;
9409ee3e066SJulian Sax 
941b33752c3SDouglas Anderson 	ihid->ops->power_down(ihid->ops);
9429ee3e066SJulian Sax }
9439ee3e066SJulian Sax 
944b33752c3SDouglas Anderson static void i2c_hid_core_shutdown_tail(struct i2c_hid *ihid)
945203c38fbSKai-Heng Feng {
946b33752c3SDouglas Anderson 	if (!ihid->ops->shutdown_tail)
947b33752c3SDouglas Anderson 		return;
948b33752c3SDouglas Anderson 
949b33752c3SDouglas Anderson 	ihid->ops->shutdown_tail(ihid->ops);
950203c38fbSKai-Heng Feng }
951203c38fbSKai-Heng Feng 
9525f8838e9SDouglas Anderson static int i2c_hid_core_suspend(struct i2c_hid *ihid, bool force_poweroff)
953d93d2847SDouglas Anderson {
954d93d2847SDouglas Anderson 	struct i2c_client *client = ihid->client;
955d93d2847SDouglas Anderson 	struct hid_device *hid = ihid->hid;
956d93d2847SDouglas Anderson 	int ret;
957d93d2847SDouglas Anderson 
958d93d2847SDouglas Anderson 	ret = hid_driver_suspend(hid, PMSG_SUSPEND);
959d93d2847SDouglas Anderson 	if (ret < 0)
960d93d2847SDouglas Anderson 		return ret;
961d93d2847SDouglas Anderson 
962d93d2847SDouglas Anderson 	/* Save some power */
963d93d2847SDouglas Anderson 	i2c_hid_set_power(ihid, I2C_HID_PWR_SLEEP);
964d93d2847SDouglas Anderson 
965d93d2847SDouglas Anderson 	disable_irq(client->irq);
966d93d2847SDouglas Anderson 
9675f8838e9SDouglas Anderson 	if (force_poweroff || !device_may_wakeup(&client->dev))
968d93d2847SDouglas Anderson 		i2c_hid_core_power_down(ihid);
969d93d2847SDouglas Anderson 
970d93d2847SDouglas Anderson 	return 0;
971d93d2847SDouglas Anderson }
972d93d2847SDouglas Anderson 
973d93d2847SDouglas Anderson static int i2c_hid_core_resume(struct i2c_hid *ihid)
974d93d2847SDouglas Anderson {
975d93d2847SDouglas Anderson 	struct i2c_client *client = ihid->client;
976d93d2847SDouglas Anderson 	struct hid_device *hid = ihid->hid;
977d93d2847SDouglas Anderson 	int ret;
978d93d2847SDouglas Anderson 
979d93d2847SDouglas Anderson 	if (!device_may_wakeup(&client->dev))
980d93d2847SDouglas Anderson 		i2c_hid_core_power_up(ihid);
981d93d2847SDouglas Anderson 
982d93d2847SDouglas Anderson 	enable_irq(client->irq);
983d93d2847SDouglas Anderson 
984d93d2847SDouglas Anderson 	/* Instead of resetting device, simply powers the device on. This
985d93d2847SDouglas Anderson 	 * solves "incomplete reports" on Raydium devices 2386:3118 and
986d93d2847SDouglas Anderson 	 * 2386:4B33 and fixes various SIS touchscreens no longer sending
987d93d2847SDouglas Anderson 	 * data after a suspend/resume.
988d93d2847SDouglas Anderson 	 *
989d93d2847SDouglas Anderson 	 * However some ALPS touchpads generate IRQ storm without reset, so
990d93d2847SDouglas Anderson 	 * let's still reset them here.
991d93d2847SDouglas Anderson 	 */
99296d3098dSHans de Goede 	if (ihid->quirks & I2C_HID_QUIRK_RESET_ON_RESUME) {
99396d3098dSHans de Goede 		mutex_lock(&ihid->reset_lock);
99496d3098dSHans de Goede 		ret = i2c_hid_start_hwreset(ihid);
99596d3098dSHans de Goede 		if (ret == 0)
99696d3098dSHans de Goede 			ret = i2c_hid_finish_hwreset(ihid);
99796d3098dSHans de Goede 		mutex_unlock(&ihid->reset_lock);
99896d3098dSHans de Goede 	} else {
999d93d2847SDouglas Anderson 		ret = i2c_hid_set_power(ihid, I2C_HID_PWR_ON);
100096d3098dSHans de Goede 	}
1001d93d2847SDouglas Anderson 
1002d93d2847SDouglas Anderson 	if (ret)
1003d93d2847SDouglas Anderson 		return ret;
1004d93d2847SDouglas Anderson 
1005d93d2847SDouglas Anderson 	return hid_driver_reset_resume(hid);
1006d93d2847SDouglas Anderson }
1007d93d2847SDouglas Anderson 
10089af867c0SJohan Hovold /*
10099af867c0SJohan Hovold  * Check that the device exists and parse the HID descriptor.
1010675cd877SDouglas Anderson  */
10119af867c0SJohan Hovold static int __i2c_hid_core_probe(struct i2c_hid *ihid)
1012675cd877SDouglas Anderson {
1013675cd877SDouglas Anderson 	struct i2c_client *client = ihid->client;
1014675cd877SDouglas Anderson 	struct hid_device *hid = ihid->hid;
1015675cd877SDouglas Anderson 	int ret;
1016675cd877SDouglas Anderson 
1017675cd877SDouglas Anderson 	/* Make sure there is something at this address */
1018675cd877SDouglas Anderson 	ret = i2c_smbus_read_byte(client);
1019675cd877SDouglas Anderson 	if (ret < 0) {
1020675cd877SDouglas Anderson 		i2c_hid_dbg(ihid, "nothing at this address: %d\n", ret);
10219af867c0SJohan Hovold 		return -ENXIO;
1022675cd877SDouglas Anderson 	}
1023675cd877SDouglas Anderson 
1024675cd877SDouglas Anderson 	ret = i2c_hid_fetch_hid_descriptor(ihid);
1025675cd877SDouglas Anderson 	if (ret < 0) {
1026675cd877SDouglas Anderson 		dev_err(&client->dev,
1027675cd877SDouglas Anderson 			"Failed to fetch the HID Descriptor\n");
10289af867c0SJohan Hovold 		return ret;
1029675cd877SDouglas Anderson 	}
1030675cd877SDouglas Anderson 
1031675cd877SDouglas Anderson 	hid->version = le16_to_cpu(ihid->hdesc.bcdVersion);
1032675cd877SDouglas Anderson 	hid->vendor = le16_to_cpu(ihid->hdesc.wVendorID);
1033675cd877SDouglas Anderson 	hid->product = le16_to_cpu(ihid->hdesc.wProductID);
1034675cd877SDouglas Anderson 
1035675cd877SDouglas Anderson 	hid->initial_quirks |= i2c_hid_get_dmi_quirks(hid->vendor,
1036675cd877SDouglas Anderson 						      hid->product);
1037675cd877SDouglas Anderson 
1038675cd877SDouglas Anderson 	snprintf(hid->name, sizeof(hid->name), "%s %04X:%04X",
1039675cd877SDouglas Anderson 		 client->name, (u16)hid->vendor, (u16)hid->product);
1040675cd877SDouglas Anderson 	strscpy(hid->phys, dev_name(&client->dev), sizeof(hid->phys));
1041675cd877SDouglas Anderson 
1042675cd877SDouglas Anderson 	ihid->quirks = i2c_hid_lookup_quirk(hid->vendor, hid->product);
1043675cd877SDouglas Anderson 
10449af867c0SJohan Hovold 	return 0;
10459af867c0SJohan Hovold }
10469af867c0SJohan Hovold 
10479af867c0SJohan Hovold static int i2c_hid_core_register_hid(struct i2c_hid *ihid)
10489af867c0SJohan Hovold {
10499af867c0SJohan Hovold 	struct i2c_client *client = ihid->client;
10509af867c0SJohan Hovold 	struct hid_device *hid = ihid->hid;
10519af867c0SJohan Hovold 	int ret;
10529af867c0SJohan Hovold 
10539af867c0SJohan Hovold 	enable_irq(client->irq);
10549af867c0SJohan Hovold 
1055675cd877SDouglas Anderson 	ret = hid_add_device(hid);
1056675cd877SDouglas Anderson 	if (ret) {
1057675cd877SDouglas Anderson 		if (ret != -ENODEV)
1058675cd877SDouglas Anderson 			hid_err(client, "can't add hid device: %d\n", ret);
10599af867c0SJohan Hovold 		disable_irq(client->irq);
10609af867c0SJohan Hovold 		return ret;
1061675cd877SDouglas Anderson 	}
1062675cd877SDouglas Anderson 
1063675cd877SDouglas Anderson 	return 0;
10649af867c0SJohan Hovold }
1065675cd877SDouglas Anderson 
10669af867c0SJohan Hovold static int i2c_hid_core_probe_panel_follower(struct i2c_hid *ihid)
10679af867c0SJohan Hovold {
10689af867c0SJohan Hovold 	int ret;
10699af867c0SJohan Hovold 
10709af867c0SJohan Hovold 	ret = i2c_hid_core_power_up(ihid);
10719af867c0SJohan Hovold 	if (ret)
10729af867c0SJohan Hovold 		return ret;
10739af867c0SJohan Hovold 
10749af867c0SJohan Hovold 	ret = __i2c_hid_core_probe(ihid);
10759af867c0SJohan Hovold 	if (ret)
10769af867c0SJohan Hovold 		goto err_power_down;
10779af867c0SJohan Hovold 
10789af867c0SJohan Hovold 	ret = i2c_hid_core_register_hid(ihid);
10799af867c0SJohan Hovold 	if (ret)
10809af867c0SJohan Hovold 		goto err_power_down;
10819af867c0SJohan Hovold 
10829af867c0SJohan Hovold 	return 0;
10839af867c0SJohan Hovold 
10849af867c0SJohan Hovold err_power_down:
1085675cd877SDouglas Anderson 	i2c_hid_core_power_down(ihid);
10869af867c0SJohan Hovold 
1087675cd877SDouglas Anderson 	return ret;
1088675cd877SDouglas Anderson }
1089675cd877SDouglas Anderson 
109076edfcf4SDouglas Anderson static void ihid_core_panel_prepare_work(struct work_struct *work)
109196a37bfdSDouglas Anderson {
109276edfcf4SDouglas Anderson 	struct i2c_hid *ihid = container_of(work, struct i2c_hid,
109376edfcf4SDouglas Anderson 					    panel_follower_prepare_work);
109496a37bfdSDouglas Anderson 	struct hid_device *hid = ihid->hid;
109576edfcf4SDouglas Anderson 	int ret;
109696a37bfdSDouglas Anderson 
109796a37bfdSDouglas Anderson 	/*
109896a37bfdSDouglas Anderson 	 * hid->version is set on the first power up. If it's still zero then
109996a37bfdSDouglas Anderson 	 * this is the first power on so we should perform initial power up
110096a37bfdSDouglas Anderson 	 * steps.
110196a37bfdSDouglas Anderson 	 */
110296a37bfdSDouglas Anderson 	if (!hid->version)
11039af867c0SJohan Hovold 		ret = i2c_hid_core_probe_panel_follower(ihid);
110476edfcf4SDouglas Anderson 	else
110576edfcf4SDouglas Anderson 		ret = i2c_hid_core_resume(ihid);
110696a37bfdSDouglas Anderson 
110776edfcf4SDouglas Anderson 	if (ret)
110876edfcf4SDouglas Anderson 		dev_warn(&ihid->client->dev, "Power on failed: %d\n", ret);
110976edfcf4SDouglas Anderson 	else
111076edfcf4SDouglas Anderson 		WRITE_ONCE(ihid->prepare_work_finished, true);
111176edfcf4SDouglas Anderson 
111276edfcf4SDouglas Anderson 	/*
111376edfcf4SDouglas Anderson 	 * The work APIs provide a number of memory ordering guarantees
111476edfcf4SDouglas Anderson 	 * including one that says that memory writes before schedule_work()
111576edfcf4SDouglas Anderson 	 * are always visible to the work function, but they don't appear to
111676edfcf4SDouglas Anderson 	 * guarantee that a write that happened in the work is visible after
111776edfcf4SDouglas Anderson 	 * cancel_work_sync(). We'll add a write memory barrier here to match
111876edfcf4SDouglas Anderson 	 * with i2c_hid_core_panel_unpreparing() to ensure that our write to
111976edfcf4SDouglas Anderson 	 * prepare_work_finished is visible there.
112076edfcf4SDouglas Anderson 	 */
112176edfcf4SDouglas Anderson 	smp_wmb();
112276edfcf4SDouglas Anderson }
112376edfcf4SDouglas Anderson 
112476edfcf4SDouglas Anderson static int i2c_hid_core_panel_prepared(struct drm_panel_follower *follower)
112576edfcf4SDouglas Anderson {
112676edfcf4SDouglas Anderson 	struct i2c_hid *ihid = container_of(follower, struct i2c_hid, panel_follower);
112776edfcf4SDouglas Anderson 
112876edfcf4SDouglas Anderson 	/*
112976edfcf4SDouglas Anderson 	 * Powering on a touchscreen can be a slow process. Queue the work to
113076edfcf4SDouglas Anderson 	 * the system workqueue so we don't block the panel's power up.
113176edfcf4SDouglas Anderson 	 */
113276edfcf4SDouglas Anderson 	WRITE_ONCE(ihid->prepare_work_finished, false);
113376edfcf4SDouglas Anderson 	schedule_work(&ihid->panel_follower_prepare_work);
113476edfcf4SDouglas Anderson 
113576edfcf4SDouglas Anderson 	return 0;
113696a37bfdSDouglas Anderson }
113796a37bfdSDouglas Anderson 
113896a37bfdSDouglas Anderson static int i2c_hid_core_panel_unpreparing(struct drm_panel_follower *follower)
113996a37bfdSDouglas Anderson {
114096a37bfdSDouglas Anderson 	struct i2c_hid *ihid = container_of(follower, struct i2c_hid, panel_follower);
114196a37bfdSDouglas Anderson 
114276edfcf4SDouglas Anderson 	cancel_work_sync(&ihid->panel_follower_prepare_work);
114376edfcf4SDouglas Anderson 
114476edfcf4SDouglas Anderson 	/* Match with ihid_core_panel_prepare_work() */
114576edfcf4SDouglas Anderson 	smp_rmb();
114676edfcf4SDouglas Anderson 	if (!READ_ONCE(ihid->prepare_work_finished))
114776edfcf4SDouglas Anderson 		return 0;
114876edfcf4SDouglas Anderson 
114996a37bfdSDouglas Anderson 	return i2c_hid_core_suspend(ihid, true);
115096a37bfdSDouglas Anderson }
115196a37bfdSDouglas Anderson 
115296a37bfdSDouglas Anderson static const struct drm_panel_follower_funcs i2c_hid_core_panel_follower_funcs = {
115396a37bfdSDouglas Anderson 	.panel_prepared = i2c_hid_core_panel_prepared,
115496a37bfdSDouglas Anderson 	.panel_unpreparing = i2c_hid_core_panel_unpreparing,
115596a37bfdSDouglas Anderson };
115696a37bfdSDouglas Anderson 
115796a37bfdSDouglas Anderson static int i2c_hid_core_register_panel_follower(struct i2c_hid *ihid)
115896a37bfdSDouglas Anderson {
115996a37bfdSDouglas Anderson 	struct device *dev = &ihid->client->dev;
116096a37bfdSDouglas Anderson 	int ret;
116196a37bfdSDouglas Anderson 
116296a37bfdSDouglas Anderson 	ihid->panel_follower.funcs = &i2c_hid_core_panel_follower_funcs;
116396a37bfdSDouglas Anderson 
116496a37bfdSDouglas Anderson 	/*
116596a37bfdSDouglas Anderson 	 * If we're not in control of our own power up/power down then we can't
116696a37bfdSDouglas Anderson 	 * do the logic to manage wakeups. Give a warning if a user thought
116796a37bfdSDouglas Anderson 	 * that was possible then force the capability off.
116896a37bfdSDouglas Anderson 	 */
116996a37bfdSDouglas Anderson 	if (device_can_wakeup(dev)) {
117096a37bfdSDouglas Anderson 		dev_warn(dev, "Can't wakeup if following panel\n");
117196a37bfdSDouglas Anderson 		device_set_wakeup_capable(dev, false);
117296a37bfdSDouglas Anderson 	}
117396a37bfdSDouglas Anderson 
117496a37bfdSDouglas Anderson 	ret = drm_panel_add_follower(dev, &ihid->panel_follower);
117596a37bfdSDouglas Anderson 	if (ret)
117696a37bfdSDouglas Anderson 		return ret;
117796a37bfdSDouglas Anderson 
117896a37bfdSDouglas Anderson 	return 0;
117996a37bfdSDouglas Anderson }
118096a37bfdSDouglas Anderson 
1181b33752c3SDouglas Anderson int i2c_hid_core_probe(struct i2c_client *client, struct i2chid_ops *ops,
1182b60d3c80SAlistair Francis 		       u16 hid_descriptor_address, u32 quirks)
11839ee3e066SJulian Sax {
11849ee3e066SJulian Sax 	int ret;
11859ee3e066SJulian Sax 	struct i2c_hid *ihid;
11869ee3e066SJulian Sax 	struct hid_device *hid;
11879ee3e066SJulian Sax 
11889ee3e066SJulian Sax 	dbg_hid("HID probe called for i2c 0x%02x\n", client->addr);
11899ee3e066SJulian Sax 
11909ee3e066SJulian Sax 	if (!client->irq) {
11919ee3e066SJulian Sax 		dev_err(&client->dev,
11929ee3e066SJulian Sax 			"HID over i2c has not been provided an Int IRQ\n");
11939ee3e066SJulian Sax 		return -EINVAL;
11949ee3e066SJulian Sax 	}
11959ee3e066SJulian Sax 
11969ee3e066SJulian Sax 	if (client->irq < 0) {
11979ee3e066SJulian Sax 		if (client->irq != -EPROBE_DEFER)
11989ee3e066SJulian Sax 			dev_err(&client->dev,
11999ee3e066SJulian Sax 				"HID over i2c doesn't have a valid IRQ\n");
12009ee3e066SJulian Sax 		return client->irq;
12019ee3e066SJulian Sax 	}
12029ee3e066SJulian Sax 
12039ee3e066SJulian Sax 	ihid = devm_kzalloc(&client->dev, sizeof(*ihid), GFP_KERNEL);
12049ee3e066SJulian Sax 	if (!ihid)
12059ee3e066SJulian Sax 		return -ENOMEM;
12069ee3e066SJulian Sax 
12079ee3e066SJulian Sax 	i2c_set_clientdata(client, ihid);
12089ee3e066SJulian Sax 
1209675cd877SDouglas Anderson 	ihid->ops = ops;
12109ee3e066SJulian Sax 	ihid->client = client;
1211b33752c3SDouglas Anderson 	ihid->wHIDDescRegister = cpu_to_le16(hid_descriptor_address);
12129af867c0SJohan Hovold 	ihid->is_panel_follower = drm_is_panel_follower(&client->dev);
12139ee3e066SJulian Sax 
12149ee3e066SJulian Sax 	init_waitqueue_head(&ihid->wait);
12159ee3e066SJulian Sax 	mutex_init(&ihid->reset_lock);
121676edfcf4SDouglas Anderson 	INIT_WORK(&ihid->panel_follower_prepare_work, ihid_core_panel_prepare_work);
12179ee3e066SJulian Sax 
12189ee3e066SJulian Sax 	/* we need to allocate the command buffer without knowing the maximum
12199ee3e066SJulian Sax 	 * size of the reports. Let's use HID_MIN_BUFFER_SIZE, then we do the
12209ee3e066SJulian Sax 	 * real computation later. */
12219ee3e066SJulian Sax 	ret = i2c_hid_alloc_buffers(ihid, HID_MIN_BUFFER_SIZE);
12229ee3e066SJulian Sax 	if (ret < 0)
1223675cd877SDouglas Anderson 		return ret;
12249ee3e066SJulian Sax 	device_enable_async_suspend(&client->dev);
12259ee3e066SJulian Sax 
12269ee3e066SJulian Sax 	hid = hid_allocate_device();
12279ee3e066SJulian Sax 	if (IS_ERR(hid)) {
12289ee3e066SJulian Sax 		ret = PTR_ERR(hid);
12299af867c0SJohan Hovold 		goto err_free_buffers;
12309ee3e066SJulian Sax 	}
12319ee3e066SJulian Sax 
12329ee3e066SJulian Sax 	ihid->hid = hid;
12339ee3e066SJulian Sax 
12349ee3e066SJulian Sax 	hid->driver_data = client;
12359ee3e066SJulian Sax 	hid->ll_driver = &i2c_hid_ll_driver;
12369ee3e066SJulian Sax 	hid->dev.parent = &client->dev;
12379ee3e066SJulian Sax 	hid->bus = BUS_I2C;
123803a86105SDmitry Torokhov 	hid->initial_quirks = quirks;
123903a86105SDmitry Torokhov 
12409af867c0SJohan Hovold 	/* Power on and probe unless device is a panel follower. */
12419af867c0SJohan Hovold 	if (!ihid->is_panel_follower) {
12429af867c0SJohan Hovold 		ret = i2c_hid_core_power_up(ihid);
12439af867c0SJohan Hovold 		if (ret < 0)
12449af867c0SJohan Hovold 			goto err_destroy_device;
12459af867c0SJohan Hovold 
12469af867c0SJohan Hovold 		ret = __i2c_hid_core_probe(ihid);
12479af867c0SJohan Hovold 		if (ret < 0)
12489af867c0SJohan Hovold 			goto err_power_down;
12499af867c0SJohan Hovold 	}
12509af867c0SJohan Hovold 
12519af867c0SJohan Hovold 	ret = i2c_hid_init_irq(client);
12529af867c0SJohan Hovold 	if (ret < 0)
12539af867c0SJohan Hovold 		goto err_power_down;
12549af867c0SJohan Hovold 
12559af867c0SJohan Hovold 	/*
12569af867c0SJohan Hovold 	 * If we're a panel follower, we'll register when the panel turns on;
12579af867c0SJohan Hovold 	 * otherwise we do it right away.
12589af867c0SJohan Hovold 	 */
12599af867c0SJohan Hovold 	if (ihid->is_panel_follower)
12609af867c0SJohan Hovold 		ret = i2c_hid_core_register_panel_follower(ihid);
12619af867c0SJohan Hovold 	else
12629af867c0SJohan Hovold 		ret = i2c_hid_core_register_hid(ihid);
1263675cd877SDouglas Anderson 	if (ret)
12649af867c0SJohan Hovold 		goto err_free_irq;
12659ee3e066SJulian Sax 
12669ee3e066SJulian Sax 	return 0;
12679ee3e066SJulian Sax 
12689af867c0SJohan Hovold err_free_irq:
12699ee3e066SJulian Sax 	free_irq(client->irq, ihid);
12709af867c0SJohan Hovold err_power_down:
12719af867c0SJohan Hovold 	if (!ihid->is_panel_follower)
12729af867c0SJohan Hovold 		i2c_hid_core_power_down(ihid);
12739af867c0SJohan Hovold err_destroy_device:
12749af867c0SJohan Hovold 	hid_destroy_device(hid);
12759af867c0SJohan Hovold err_free_buffers:
12769ee3e066SJulian Sax 	i2c_hid_free_buffers(ihid);
1277675cd877SDouglas Anderson 
12789ee3e066SJulian Sax 	return ret;
12799ee3e066SJulian Sax }
1280b33752c3SDouglas Anderson EXPORT_SYMBOL_GPL(i2c_hid_core_probe);
12819ee3e066SJulian Sax 
1282ed5c2f5fSUwe Kleine-König void i2c_hid_core_remove(struct i2c_client *client)
12839ee3e066SJulian Sax {
12849ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
12859ee3e066SJulian Sax 	struct hid_device *hid;
12869ee3e066SJulian Sax 
12879af867c0SJohan Hovold 	/*
12889af867c0SJohan Hovold 	 * If we're a follower, the act of unfollowing will cause us to be
12899af867c0SJohan Hovold 	 * powered down. Otherwise we need to manually do it.
12909af867c0SJohan Hovold 	 */
12919af867c0SJohan Hovold 	if (ihid->is_panel_follower)
12929af867c0SJohan Hovold 		drm_panel_remove_follower(&ihid->panel_follower);
12939af867c0SJohan Hovold 	else
12949af867c0SJohan Hovold 		i2c_hid_core_suspend(ihid, true);
1295675cd877SDouglas Anderson 
12969ee3e066SJulian Sax 	hid = ihid->hid;
12979ee3e066SJulian Sax 	hid_destroy_device(hid);
12989ee3e066SJulian Sax 
12999ee3e066SJulian Sax 	free_irq(client->irq, ihid);
13009ee3e066SJulian Sax 
13019ee3e066SJulian Sax 	if (ihid->bufsize)
13029ee3e066SJulian Sax 		i2c_hid_free_buffers(ihid);
13039ee3e066SJulian Sax }
1304b33752c3SDouglas Anderson EXPORT_SYMBOL_GPL(i2c_hid_core_remove);
13059ee3e066SJulian Sax 
1306b33752c3SDouglas Anderson void i2c_hid_core_shutdown(struct i2c_client *client)
13079ee3e066SJulian Sax {
13089ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
13099ee3e066SJulian Sax 
1310d34c6105SDmitry Torokhov 	i2c_hid_set_power(ihid, I2C_HID_PWR_SLEEP);
13119ee3e066SJulian Sax 	free_irq(client->irq, ihid);
13125c7e02a8SHans de Goede 
1313b33752c3SDouglas Anderson 	i2c_hid_core_shutdown_tail(ihid);
13149ee3e066SJulian Sax }
1315b33752c3SDouglas Anderson EXPORT_SYMBOL_GPL(i2c_hid_core_shutdown);
13169ee3e066SJulian Sax 
1317d93d2847SDouglas Anderson static int i2c_hid_core_pm_suspend(struct device *dev)
13189ee3e066SJulian Sax {
13199ee3e066SJulian Sax 	struct i2c_client *client = to_i2c_client(dev);
13209ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
13219ee3e066SJulian Sax 
132296a37bfdSDouglas Anderson 	if (ihid->is_panel_follower)
132396a37bfdSDouglas Anderson 		return 0;
132496a37bfdSDouglas Anderson 
13255f8838e9SDouglas Anderson 	return i2c_hid_core_suspend(ihid, false);
13269ee3e066SJulian Sax }
13279ee3e066SJulian Sax 
1328d93d2847SDouglas Anderson static int i2c_hid_core_pm_resume(struct device *dev)
13299ee3e066SJulian Sax {
13309ee3e066SJulian Sax 	struct i2c_client *client = to_i2c_client(dev);
13319ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
13329ee3e066SJulian Sax 
133396a37bfdSDouglas Anderson 	if (ihid->is_panel_follower)
133496a37bfdSDouglas Anderson 		return 0;
133596a37bfdSDouglas Anderson 
1336d93d2847SDouglas Anderson 	return i2c_hid_core_resume(ihid);
13379ee3e066SJulian Sax }
13389ee3e066SJulian Sax 
1339b33752c3SDouglas Anderson const struct dev_pm_ops i2c_hid_core_pm = {
1340d93d2847SDouglas Anderson 	SYSTEM_SLEEP_PM_OPS(i2c_hid_core_pm_suspend, i2c_hid_core_pm_resume)
13419ee3e066SJulian Sax };
1342b33752c3SDouglas Anderson EXPORT_SYMBOL_GPL(i2c_hid_core_pm);
13439ee3e066SJulian Sax 
13449ee3e066SJulian Sax MODULE_DESCRIPTION("HID over I2C core driver");
13459ee3e066SJulian Sax MODULE_AUTHOR("Benjamin Tissoires <benjamin.tissoires@gmail.com>");
13469ee3e066SJulian Sax MODULE_LICENSE("GPL");
1347