xref: /linux/drivers/hid/i2c-hid/i2c-hid-core.c (revision 96d3098db835d58649b73a5788898bd7672a319b)
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 
429*96d3098dSHans 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 	 */
441*96d3098dSHans 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)
445*96d3098dSHans 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 
463*96d3098dSHans de Goede 	return 0;
464*96d3098dSHans de Goede 
465*96d3098dSHans de Goede err_clear_reset:
466*96d3098dSHans de Goede 	clear_bit(I2C_HID_RESET_PENDING, &ihid->flags);
467*96d3098dSHans de Goede 	i2c_hid_set_power(ihid, I2C_HID_PWR_SLEEP);
468*96d3098dSHans de Goede 	return ret;
469*96d3098dSHans de Goede }
470*96d3098dSHans de Goede 
471*96d3098dSHans de Goede static int i2c_hid_finish_hwreset(struct i2c_hid *ihid)
472*96d3098dSHans de Goede {
473*96d3098dSHans de Goede 	int ret = 0;
474*96d3098dSHans 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),
482f023605dSHans de Goede 				       msecs_to_jiffies(5000))) {
483f023605dSHans de Goede 		ret = -ENODATA;
484f023605dSHans de Goede 		goto err_clear_reset;
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;
493f023605dSHans de Goede 
494f023605dSHans de Goede err_clear_reset:
495f023605dSHans de Goede 	clear_bit(I2C_HID_RESET_PENDING, &ihid->flags);
496f023605dSHans de Goede 	i2c_hid_set_power(ihid, I2C_HID_PWR_SLEEP);
4979ee3e066SJulian Sax 	return ret;
4989ee3e066SJulian Sax }
4999ee3e066SJulian Sax 
5009ee3e066SJulian Sax static void i2c_hid_get_input(struct i2c_hid *ihid)
5019ee3e066SJulian Sax {
50286fc3fd2SDmitry Torokhov 	u16 size = le16_to_cpu(ihid->hdesc.wMaxInputLength);
50386fc3fd2SDmitry Torokhov 	u16 ret_size;
5049ee3e066SJulian Sax 	int ret;
5059ee3e066SJulian Sax 
5069ee3e066SJulian Sax 	if (size > ihid->bufsize)
5079ee3e066SJulian Sax 		size = ihid->bufsize;
5089ee3e066SJulian Sax 
5099ee3e066SJulian Sax 	ret = i2c_master_recv(ihid->client, ihid->inbuf, size);
5109ee3e066SJulian Sax 	if (ret != size) {
5119ee3e066SJulian Sax 		if (ret < 0)
5129ee3e066SJulian Sax 			return;
5139ee3e066SJulian Sax 
5149ee3e066SJulian Sax 		dev_err(&ihid->client->dev, "%s: got %d data instead of %d\n",
5159ee3e066SJulian Sax 			__func__, ret, size);
5169ee3e066SJulian Sax 		return;
5179ee3e066SJulian Sax 	}
5189ee3e066SJulian Sax 
51986fc3fd2SDmitry Torokhov 	/* Receiving buffer is properly aligned */
52086fc3fd2SDmitry Torokhov 	ret_size = le16_to_cpup((__le16 *)ihid->inbuf);
5219ee3e066SJulian Sax 	if (!ret_size) {
5229ee3e066SJulian Sax 		/* host or device initiated RESET completed */
5239ee3e066SJulian Sax 		if (test_and_clear_bit(I2C_HID_RESET_PENDING, &ihid->flags))
5249ee3e066SJulian Sax 			wake_up(&ihid->wait);
5259ee3e066SJulian Sax 		return;
5269ee3e066SJulian Sax 	}
5279ee3e066SJulian Sax 
52886fc3fd2SDmitry Torokhov 	if ((ihid->quirks & I2C_HID_QUIRK_BOGUS_IRQ) && ret_size == 0xffff) {
52986fc3fd2SDmitry Torokhov 		dev_warn_once(&ihid->client->dev,
53086fc3fd2SDmitry Torokhov 			      "%s: IRQ triggered but there's no data\n",
53186fc3fd2SDmitry Torokhov 			      __func__);
5321475af25SKai-Heng Feng 		return;
5331475af25SKai-Heng Feng 	}
5341475af25SKai-Heng Feng 
53586fc3fd2SDmitry Torokhov 	if (ret_size > size || ret_size < sizeof(__le16)) {
536fd091376SPavel Balan 		if (ihid->quirks & I2C_HID_QUIRK_BAD_INPUT_SIZE) {
53786fc3fd2SDmitry Torokhov 			*(__le16 *)ihid->inbuf = cpu_to_le16(size);
538fd091376SPavel Balan 			ret_size = size;
539fd091376SPavel Balan 		} else {
54086fc3fd2SDmitry Torokhov 			dev_err(&ihid->client->dev,
54186fc3fd2SDmitry Torokhov 				"%s: incomplete report (%d/%d)\n",
5429ee3e066SJulian Sax 				__func__, size, ret_size);
5439ee3e066SJulian Sax 			return;
5449ee3e066SJulian Sax 		}
545fd091376SPavel Balan 	}
5469ee3e066SJulian Sax 
5479ee3e066SJulian Sax 	i2c_hid_dbg(ihid, "input: %*ph\n", ret_size, ihid->inbuf);
5489ee3e066SJulian Sax 
549d951ae1cSMatthias Kaehlcke 	if (test_bit(I2C_HID_STARTED, &ihid->flags)) {
5509984fbf5SDmitry Torokhov 		if (ihid->hid->group != HID_GROUP_RMI)
551d951ae1cSMatthias Kaehlcke 			pm_wakeup_event(&ihid->client->dev, 0);
552d951ae1cSMatthias Kaehlcke 
55386fc3fd2SDmitry Torokhov 		hid_input_report(ihid->hid, HID_INPUT_REPORT,
55486fc3fd2SDmitry Torokhov 				ihid->inbuf + sizeof(__le16),
55586fc3fd2SDmitry Torokhov 				ret_size - sizeof(__le16), 1);
556d951ae1cSMatthias Kaehlcke 	}
5579ee3e066SJulian Sax 
5589ee3e066SJulian Sax 	return;
5599ee3e066SJulian Sax }
5609ee3e066SJulian Sax 
5619ee3e066SJulian Sax static irqreturn_t i2c_hid_irq(int irq, void *dev_id)
5629ee3e066SJulian Sax {
5639ee3e066SJulian Sax 	struct i2c_hid *ihid = dev_id;
5649ee3e066SJulian Sax 
5659ee3e066SJulian Sax 	if (test_bit(I2C_HID_READ_PENDING, &ihid->flags))
5669ee3e066SJulian Sax 		return IRQ_HANDLED;
5679ee3e066SJulian Sax 
5689ee3e066SJulian Sax 	i2c_hid_get_input(ihid);
5699ee3e066SJulian Sax 
5709ee3e066SJulian Sax 	return IRQ_HANDLED;
5719ee3e066SJulian Sax }
5729ee3e066SJulian Sax 
5739ee3e066SJulian Sax static int i2c_hid_get_report_length(struct hid_report *report)
5749ee3e066SJulian Sax {
5759ee3e066SJulian Sax 	return ((report->size - 1) >> 3) + 1 +
5769ee3e066SJulian Sax 		report->device->report_enum[report->type].numbered + 2;
5779ee3e066SJulian Sax }
5789ee3e066SJulian Sax 
5799ee3e066SJulian Sax /*
5809ee3e066SJulian Sax  * Traverse the supplied list of reports and find the longest
5819ee3e066SJulian Sax  */
5829ee3e066SJulian Sax static void i2c_hid_find_max_report(struct hid_device *hid, unsigned int type,
5839ee3e066SJulian Sax 		unsigned int *max)
5849ee3e066SJulian Sax {
5859ee3e066SJulian Sax 	struct hid_report *report;
5869ee3e066SJulian Sax 	unsigned int size;
5879ee3e066SJulian Sax 
5889ee3e066SJulian Sax 	/* We should not rely on wMaxInputLength, as some devices may set it to
5899ee3e066SJulian Sax 	 * a wrong length. */
5909ee3e066SJulian Sax 	list_for_each_entry(report, &hid->report_enum[type].report_list, list) {
5919ee3e066SJulian Sax 		size = i2c_hid_get_report_length(report);
5929ee3e066SJulian Sax 		if (*max < size)
5939ee3e066SJulian Sax 			*max = size;
5949ee3e066SJulian Sax 	}
5959ee3e066SJulian Sax }
5969ee3e066SJulian Sax 
5979ee3e066SJulian Sax static void i2c_hid_free_buffers(struct i2c_hid *ihid)
5989ee3e066SJulian Sax {
5999ee3e066SJulian Sax 	kfree(ihid->inbuf);
6009ee3e066SJulian Sax 	kfree(ihid->rawbuf);
6019ee3e066SJulian Sax 	kfree(ihid->cmdbuf);
6029ee3e066SJulian Sax 	ihid->inbuf = NULL;
6039ee3e066SJulian Sax 	ihid->rawbuf = NULL;
6049ee3e066SJulian Sax 	ihid->cmdbuf = NULL;
6059ee3e066SJulian Sax 	ihid->bufsize = 0;
6069ee3e066SJulian Sax }
6079ee3e066SJulian Sax 
6089ee3e066SJulian Sax static int i2c_hid_alloc_buffers(struct i2c_hid *ihid, size_t report_size)
6099ee3e066SJulian Sax {
610dbe0dd5fSDmitry Torokhov 	/*
611dbe0dd5fSDmitry Torokhov 	 * The worst case is computed from the set_report command with a
612dbe0dd5fSDmitry Torokhov 	 * reportID > 15 and the maximum report length.
613dbe0dd5fSDmitry Torokhov 	 */
614dbe0dd5fSDmitry Torokhov 	int cmd_len = sizeof(__le16) +	/* command register */
615dbe0dd5fSDmitry Torokhov 		      sizeof(u8) +	/* encoded report type/ID */
616dbe0dd5fSDmitry Torokhov 		      sizeof(u8) +	/* opcode */
617dbe0dd5fSDmitry Torokhov 		      sizeof(u8) +	/* optional 3rd byte report ID */
618dbe0dd5fSDmitry Torokhov 		      sizeof(__le16) +	/* data register */
619dbe0dd5fSDmitry Torokhov 		      sizeof(__le16) +	/* report data size */
620dbe0dd5fSDmitry Torokhov 		      sizeof(u8) +	/* report ID if numbered report */
621dbe0dd5fSDmitry Torokhov 		      report_size;
6229ee3e066SJulian Sax 
6239ee3e066SJulian Sax 	ihid->inbuf = kzalloc(report_size, GFP_KERNEL);
6249ee3e066SJulian Sax 	ihid->rawbuf = kzalloc(report_size, GFP_KERNEL);
625dbe0dd5fSDmitry Torokhov 	ihid->cmdbuf = kzalloc(cmd_len, GFP_KERNEL);
6269ee3e066SJulian Sax 
627dbe0dd5fSDmitry Torokhov 	if (!ihid->inbuf || !ihid->rawbuf || !ihid->cmdbuf) {
6289ee3e066SJulian Sax 		i2c_hid_free_buffers(ihid);
6299ee3e066SJulian Sax 		return -ENOMEM;
6309ee3e066SJulian Sax 	}
6319ee3e066SJulian Sax 
6329ee3e066SJulian Sax 	ihid->bufsize = report_size;
6339ee3e066SJulian Sax 
6349ee3e066SJulian Sax 	return 0;
6359ee3e066SJulian Sax }
6369ee3e066SJulian Sax 
6379ee3e066SJulian Sax static int i2c_hid_get_raw_report(struct hid_device *hid,
63885df7133SDmitry Torokhov 				  u8 report_type, u8 report_id,
63985df7133SDmitry Torokhov 				  u8 *buf, size_t count)
6409ee3e066SJulian Sax {
6419ee3e066SJulian Sax 	struct i2c_client *client = hid->driver_data;
6429ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
64385df7133SDmitry Torokhov 	int ret_count;
6449ee3e066SJulian Sax 
6459ee3e066SJulian Sax 	if (report_type == HID_OUTPUT_REPORT)
6469ee3e066SJulian Sax 		return -EINVAL;
6479ee3e066SJulian Sax 
648a5e5e03eSDmitry Torokhov 	/*
649a5e5e03eSDmitry Torokhov 	 * In case of unnumbered reports the response from the device will
650a5e5e03eSDmitry Torokhov 	 * not have the report ID that the upper layers expect, so we need
651a5e5e03eSDmitry Torokhov 	 * to stash it the buffer ourselves and adjust the data size.
652a5e5e03eSDmitry Torokhov 	 */
65385df7133SDmitry Torokhov 	if (!report_id) {
654a5e5e03eSDmitry Torokhov 		buf[0] = 0;
655a5e5e03eSDmitry Torokhov 		buf++;
656a5e5e03eSDmitry Torokhov 		count--;
657a5e5e03eSDmitry Torokhov 	}
658a5e5e03eSDmitry Torokhov 
65985df7133SDmitry Torokhov 	ret_count = i2c_hid_get_report(ihid,
6609ee3e066SJulian Sax 			report_type == HID_FEATURE_REPORT ? 0x03 : 0x01,
66185df7133SDmitry Torokhov 			report_id, buf, count);
6629ee3e066SJulian Sax 
66385df7133SDmitry Torokhov 	if (ret_count > 0 && !report_id)
66485df7133SDmitry Torokhov 		ret_count++;
6659ee3e066SJulian Sax 
66685df7133SDmitry Torokhov 	return ret_count;
6679ee3e066SJulian Sax }
6689ee3e066SJulian Sax 
66985df7133SDmitry Torokhov static int i2c_hid_output_raw_report(struct hid_device *hid, u8 report_type,
67085df7133SDmitry Torokhov 				     const u8 *buf, size_t count, bool do_set)
6719ee3e066SJulian Sax {
6729ee3e066SJulian Sax 	struct i2c_client *client = hid->driver_data;
6739ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
6749ee3e066SJulian Sax 	int report_id = buf[0];
6759ee3e066SJulian Sax 	int ret;
6769ee3e066SJulian Sax 
6779ee3e066SJulian Sax 	if (report_type == HID_INPUT_REPORT)
6789ee3e066SJulian Sax 		return -EINVAL;
6799ee3e066SJulian Sax 
6809ee3e066SJulian Sax 	mutex_lock(&ihid->reset_lock);
6819ee3e066SJulian Sax 
682a5e5e03eSDmitry Torokhov 	/*
683a5e5e03eSDmitry Torokhov 	 * Note that both numbered and unnumbered reports passed here
684a5e5e03eSDmitry Torokhov 	 * are supposed to have report ID stored in the 1st byte of the
685a5e5e03eSDmitry Torokhov 	 * buffer, so we strip it off unconditionally before passing payload
686a5e5e03eSDmitry Torokhov 	 * to i2c_hid_set_or_send_report which takes care of encoding
687a5e5e03eSDmitry Torokhov 	 * everything properly.
688a5e5e03eSDmitry Torokhov 	 */
689d34c6105SDmitry Torokhov 	ret = i2c_hid_set_or_send_report(ihid,
6909ee3e066SJulian Sax 				report_type == HID_FEATURE_REPORT ? 0x03 : 0x02,
691dbe0dd5fSDmitry Torokhov 				report_id, buf + 1, count - 1, do_set);
6929ee3e066SJulian Sax 
693a5e5e03eSDmitry Torokhov 	if (ret >= 0)
694a5e5e03eSDmitry Torokhov 		ret++; /* add report_id to the number of transferred bytes */
6959ee3e066SJulian Sax 
6969ee3e066SJulian Sax 	mutex_unlock(&ihid->reset_lock);
6979ee3e066SJulian Sax 
6989ee3e066SJulian Sax 	return ret;
6999ee3e066SJulian Sax }
7009ee3e066SJulian Sax 
701dbe0dd5fSDmitry Torokhov static int i2c_hid_output_report(struct hid_device *hid, u8 *buf, size_t count)
7029ee3e066SJulian Sax {
70385df7133SDmitry Torokhov 	return i2c_hid_output_raw_report(hid, HID_OUTPUT_REPORT, buf, count,
7049ee3e066SJulian Sax 					 false);
7059ee3e066SJulian Sax }
7069ee3e066SJulian Sax 
7079ee3e066SJulian Sax static int i2c_hid_raw_request(struct hid_device *hid, unsigned char reportnum,
7089ee3e066SJulian Sax 			       __u8 *buf, size_t len, unsigned char rtype,
7099ee3e066SJulian Sax 			       int reqtype)
7109ee3e066SJulian Sax {
7119ee3e066SJulian Sax 	switch (reqtype) {
7129ee3e066SJulian Sax 	case HID_REQ_GET_REPORT:
71385df7133SDmitry Torokhov 		return i2c_hid_get_raw_report(hid, rtype, reportnum, buf, len);
7149ee3e066SJulian Sax 	case HID_REQ_SET_REPORT:
7159ee3e066SJulian Sax 		if (buf[0] != reportnum)
7169ee3e066SJulian Sax 			return -EINVAL;
71785df7133SDmitry Torokhov 		return i2c_hid_output_raw_report(hid, rtype, buf, len, true);
7189ee3e066SJulian Sax 	default:
7199ee3e066SJulian Sax 		return -EIO;
7209ee3e066SJulian Sax 	}
7219ee3e066SJulian Sax }
7229ee3e066SJulian Sax 
7239ee3e066SJulian Sax static int i2c_hid_parse(struct hid_device *hid)
7249ee3e066SJulian Sax {
7259ee3e066SJulian Sax 	struct i2c_client *client = hid->driver_data;
7269ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
7279ee3e066SJulian Sax 	struct i2c_hid_desc *hdesc = &ihid->hdesc;
7289ee3e066SJulian Sax 	unsigned int rsize;
7299ee3e066SJulian Sax 	char *rdesc;
7309ee3e066SJulian Sax 	int ret;
7319ee3e066SJulian Sax 	int tries = 3;
7329ee3e066SJulian Sax 	char *use_override;
7339ee3e066SJulian Sax 
7349ee3e066SJulian Sax 	i2c_hid_dbg(ihid, "entering %s\n", __func__);
7359ee3e066SJulian Sax 
7369ee3e066SJulian Sax 	rsize = le16_to_cpu(hdesc->wReportDescLength);
7379ee3e066SJulian Sax 	if (!rsize || rsize > HID_MAX_DESCRIPTOR_SIZE) {
7389ee3e066SJulian Sax 		dbg_hid("weird size of report descriptor (%u)\n", rsize);
7399ee3e066SJulian Sax 		return -EINVAL;
7409ee3e066SJulian Sax 	}
7419ee3e066SJulian Sax 
7429ee3e066SJulian Sax 	do {
743*96d3098dSHans de Goede 		mutex_lock(&ihid->reset_lock);
744*96d3098dSHans de Goede 		ret = i2c_hid_start_hwreset(ihid);
745*96d3098dSHans de Goede 		if (ret == 0)
746*96d3098dSHans de Goede 			ret = i2c_hid_finish_hwreset(ihid);
747*96d3098dSHans de Goede 		mutex_unlock(&ihid->reset_lock);
7489ee3e066SJulian Sax 		if (ret)
7499ee3e066SJulian Sax 			msleep(1000);
7509ee3e066SJulian Sax 	} while (tries-- > 0 && ret);
7519ee3e066SJulian Sax 
7529ee3e066SJulian Sax 	if (ret)
7539ee3e066SJulian Sax 		return ret;
7549ee3e066SJulian Sax 
7559ee3e066SJulian Sax 	use_override = i2c_hid_get_dmi_hid_report_desc_override(client->name,
7569ee3e066SJulian Sax 								&rsize);
7579ee3e066SJulian Sax 
7589ee3e066SJulian Sax 	if (use_override) {
7599ee3e066SJulian Sax 		rdesc = use_override;
7609ee3e066SJulian Sax 		i2c_hid_dbg(ihid, "Using a HID report descriptor override\n");
7619ee3e066SJulian Sax 	} else {
7629ee3e066SJulian Sax 		rdesc = kzalloc(rsize, GFP_KERNEL);
7639ee3e066SJulian Sax 
7649ee3e066SJulian Sax 		if (!rdesc) {
7659ee3e066SJulian Sax 			dbg_hid("couldn't allocate rdesc memory\n");
7669ee3e066SJulian Sax 			return -ENOMEM;
7679ee3e066SJulian Sax 		}
7689ee3e066SJulian Sax 
7699ee3e066SJulian Sax 		i2c_hid_dbg(ihid, "asking HID report descriptor\n");
7709ee3e066SJulian Sax 
7718399bd01SDmitry Torokhov 		ret = i2c_hid_read_register(ihid,
7728399bd01SDmitry Torokhov 					    ihid->hdesc.wReportDescRegister,
7739ee3e066SJulian Sax 					    rdesc, rsize);
7749ee3e066SJulian Sax 		if (ret) {
7759ee3e066SJulian Sax 			hid_err(hid, "reading report descriptor failed\n");
7769ee3e066SJulian Sax 			kfree(rdesc);
7779ee3e066SJulian Sax 			return -EIO;
7789ee3e066SJulian Sax 		}
7799ee3e066SJulian Sax 	}
7809ee3e066SJulian Sax 
7819ee3e066SJulian Sax 	i2c_hid_dbg(ihid, "Report Descriptor: %*ph\n", rsize, rdesc);
7829ee3e066SJulian Sax 
7839ee3e066SJulian Sax 	ret = hid_parse_report(hid, rdesc, rsize);
7849ee3e066SJulian Sax 	if (!use_override)
7859ee3e066SJulian Sax 		kfree(rdesc);
7869ee3e066SJulian Sax 
7879ee3e066SJulian Sax 	if (ret) {
7889ee3e066SJulian Sax 		dbg_hid("parsing report descriptor failed\n");
7899ee3e066SJulian Sax 		return ret;
7909ee3e066SJulian Sax 	}
7919ee3e066SJulian Sax 
7929ee3e066SJulian Sax 	return 0;
7939ee3e066SJulian Sax }
7949ee3e066SJulian Sax 
7959ee3e066SJulian Sax static int i2c_hid_start(struct hid_device *hid)
7969ee3e066SJulian Sax {
7979ee3e066SJulian Sax 	struct i2c_client *client = hid->driver_data;
7989ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
7999ee3e066SJulian Sax 	int ret;
8009ee3e066SJulian Sax 	unsigned int bufsize = HID_MIN_BUFFER_SIZE;
8019ee3e066SJulian Sax 
8029ee3e066SJulian Sax 	i2c_hid_find_max_report(hid, HID_INPUT_REPORT, &bufsize);
8039ee3e066SJulian Sax 	i2c_hid_find_max_report(hid, HID_OUTPUT_REPORT, &bufsize);
8049ee3e066SJulian Sax 	i2c_hid_find_max_report(hid, HID_FEATURE_REPORT, &bufsize);
8059ee3e066SJulian Sax 
8069ee3e066SJulian Sax 	if (bufsize > ihid->bufsize) {
8079ee3e066SJulian Sax 		disable_irq(client->irq);
8089ee3e066SJulian Sax 		i2c_hid_free_buffers(ihid);
8099ee3e066SJulian Sax 
8109ee3e066SJulian Sax 		ret = i2c_hid_alloc_buffers(ihid, bufsize);
8119ee3e066SJulian Sax 		enable_irq(client->irq);
8129ee3e066SJulian Sax 
8139ee3e066SJulian Sax 		if (ret)
8149ee3e066SJulian Sax 			return ret;
8159ee3e066SJulian Sax 	}
8169ee3e066SJulian Sax 
8179ee3e066SJulian Sax 	return 0;
8189ee3e066SJulian Sax }
8199ee3e066SJulian Sax 
8209ee3e066SJulian Sax static void i2c_hid_stop(struct hid_device *hid)
8219ee3e066SJulian Sax {
8229ee3e066SJulian Sax 	hid->claimed = 0;
8239ee3e066SJulian Sax }
8249ee3e066SJulian Sax 
8259ee3e066SJulian Sax static int i2c_hid_open(struct hid_device *hid)
8269ee3e066SJulian Sax {
8279ee3e066SJulian Sax 	struct i2c_client *client = hid->driver_data;
8289ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
8299ee3e066SJulian Sax 
8309ee3e066SJulian Sax 	set_bit(I2C_HID_STARTED, &ihid->flags);
8319ee3e066SJulian Sax 	return 0;
8329ee3e066SJulian Sax }
8339ee3e066SJulian Sax 
8349ee3e066SJulian Sax static void i2c_hid_close(struct hid_device *hid)
8359ee3e066SJulian Sax {
8369ee3e066SJulian Sax 	struct i2c_client *client = hid->driver_data;
8379ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
8389ee3e066SJulian Sax 
8399ee3e066SJulian Sax 	clear_bit(I2C_HID_STARTED, &ihid->flags);
8409ee3e066SJulian Sax }
8419ee3e066SJulian Sax 
84252d22534SThomas Weißschuh static const struct hid_ll_driver i2c_hid_ll_driver = {
8439ee3e066SJulian Sax 	.parse = i2c_hid_parse,
8449ee3e066SJulian Sax 	.start = i2c_hid_start,
8459ee3e066SJulian Sax 	.stop = i2c_hid_stop,
8469ee3e066SJulian Sax 	.open = i2c_hid_open,
8479ee3e066SJulian Sax 	.close = i2c_hid_close,
8489ee3e066SJulian Sax 	.output_report = i2c_hid_output_report,
8499ee3e066SJulian Sax 	.raw_request = i2c_hid_raw_request,
8509ee3e066SJulian Sax };
8519ee3e066SJulian Sax 
8529ee3e066SJulian Sax static int i2c_hid_init_irq(struct i2c_client *client)
8539ee3e066SJulian Sax {
8549ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
8559ee3e066SJulian Sax 	unsigned long irqflags = 0;
8569ee3e066SJulian Sax 	int ret;
8579ee3e066SJulian Sax 
858f639e0b6SThomas Weißschuh 	i2c_hid_dbg(ihid, "Requesting IRQ: %d\n", client->irq);
8599ee3e066SJulian Sax 
8609ee3e066SJulian Sax 	if (!irq_get_trigger_type(client->irq))
8619ee3e066SJulian Sax 		irqflags = IRQF_TRIGGER_LOW;
8629ee3e066SJulian Sax 
8639ee3e066SJulian Sax 	ret = request_threaded_irq(client->irq, NULL, i2c_hid_irq,
864675cd877SDouglas Anderson 				   irqflags | IRQF_ONESHOT | IRQF_NO_AUTOEN,
865675cd877SDouglas Anderson 				   client->name, ihid);
8669ee3e066SJulian Sax 	if (ret < 0) {
8679ee3e066SJulian Sax 		dev_warn(&client->dev,
8689ee3e066SJulian Sax 			"Could not register for %s interrupt, irq = %d,"
8699ee3e066SJulian Sax 			" ret = %d\n",
8709ee3e066SJulian Sax 			client->name, client->irq, ret);
8719ee3e066SJulian Sax 
8729ee3e066SJulian Sax 		return ret;
8739ee3e066SJulian Sax 	}
8749ee3e066SJulian Sax 
8759ee3e066SJulian Sax 	return 0;
8769ee3e066SJulian Sax }
8779ee3e066SJulian Sax 
8789ee3e066SJulian Sax static int i2c_hid_fetch_hid_descriptor(struct i2c_hid *ihid)
8799ee3e066SJulian Sax {
8809ee3e066SJulian Sax 	struct i2c_client *client = ihid->client;
8819ee3e066SJulian Sax 	struct i2c_hid_desc *hdesc = &ihid->hdesc;
8829ee3e066SJulian Sax 	unsigned int dsize;
8838399bd01SDmitry Torokhov 	int error;
8849ee3e066SJulian Sax 
8859ee3e066SJulian Sax 	/* i2c hid fetch using a fixed descriptor size (30 bytes) */
8869ee3e066SJulian Sax 	if (i2c_hid_get_dmi_i2c_hid_desc_override(client->name)) {
8879ee3e066SJulian Sax 		i2c_hid_dbg(ihid, "Using a HID descriptor override\n");
8889ee3e066SJulian Sax 		ihid->hdesc =
8899ee3e066SJulian Sax 			*i2c_hid_get_dmi_i2c_hid_desc_override(client->name);
8909ee3e066SJulian Sax 	} else {
8919ee3e066SJulian Sax 		i2c_hid_dbg(ihid, "Fetching the HID descriptor\n");
8928399bd01SDmitry Torokhov 		error = i2c_hid_read_register(ihid,
8938399bd01SDmitry Torokhov 					      ihid->wHIDDescRegister,
8948399bd01SDmitry Torokhov 					      &ihid->hdesc,
8958399bd01SDmitry Torokhov 					      sizeof(ihid->hdesc));
8968399bd01SDmitry Torokhov 		if (error) {
8978399bd01SDmitry Torokhov 			dev_err(&ihid->client->dev,
8988399bd01SDmitry Torokhov 				"failed to fetch HID descriptor: %d\n",
8998399bd01SDmitry Torokhov 				error);
9009ee3e066SJulian Sax 			return -ENODEV;
9019ee3e066SJulian Sax 		}
9029ee3e066SJulian Sax 	}
9039ee3e066SJulian Sax 
9049ee3e066SJulian Sax 	/* Validate the length of HID descriptor, the 4 first bytes:
9059ee3e066SJulian Sax 	 * bytes 0-1 -> length
9069ee3e066SJulian Sax 	 * bytes 2-3 -> bcdVersion (has to be 1.00) */
9079ee3e066SJulian Sax 	/* check bcdVersion == 1.0 */
9089ee3e066SJulian Sax 	if (le16_to_cpu(hdesc->bcdVersion) != 0x0100) {
909d34c6105SDmitry Torokhov 		dev_err(&ihid->client->dev,
9109ee3e066SJulian Sax 			"unexpected HID descriptor bcdVersion (0x%04hx)\n",
9119ee3e066SJulian Sax 			le16_to_cpu(hdesc->bcdVersion));
9129ee3e066SJulian Sax 		return -ENODEV;
9139ee3e066SJulian Sax 	}
9149ee3e066SJulian Sax 
9159ee3e066SJulian Sax 	/* Descriptor length should be 30 bytes as per the specification */
9169ee3e066SJulian Sax 	dsize = le16_to_cpu(hdesc->wHIDDescLength);
9179ee3e066SJulian Sax 	if (dsize != sizeof(struct i2c_hid_desc)) {
918d34c6105SDmitry Torokhov 		dev_err(&ihid->client->dev,
919d34c6105SDmitry Torokhov 			"weird size of HID descriptor (%u)\n", dsize);
9209ee3e066SJulian Sax 		return -ENODEV;
9219ee3e066SJulian Sax 	}
922551117c5SDmitry Torokhov 	i2c_hid_dbg(ihid, "HID Descriptor: %*ph\n", dsize, &ihid->hdesc);
9239ee3e066SJulian Sax 	return 0;
9249ee3e066SJulian Sax }
9259ee3e066SJulian Sax 
926b33752c3SDouglas Anderson static int i2c_hid_core_power_up(struct i2c_hid *ihid)
9279ee3e066SJulian Sax {
928b33752c3SDouglas Anderson 	if (!ihid->ops->power_up)
9299ee3e066SJulian Sax 		return 0;
930b33752c3SDouglas Anderson 
931b33752c3SDouglas Anderson 	return ihid->ops->power_up(ihid->ops);
9329ee3e066SJulian Sax }
9339ee3e066SJulian Sax 
934b33752c3SDouglas Anderson static void i2c_hid_core_power_down(struct i2c_hid *ihid)
9359ee3e066SJulian Sax {
936b33752c3SDouglas Anderson 	if (!ihid->ops->power_down)
937b33752c3SDouglas Anderson 		return;
9389ee3e066SJulian Sax 
939b33752c3SDouglas Anderson 	ihid->ops->power_down(ihid->ops);
9409ee3e066SJulian Sax }
9419ee3e066SJulian Sax 
942b33752c3SDouglas Anderson static void i2c_hid_core_shutdown_tail(struct i2c_hid *ihid)
943203c38fbSKai-Heng Feng {
944b33752c3SDouglas Anderson 	if (!ihid->ops->shutdown_tail)
945b33752c3SDouglas Anderson 		return;
946b33752c3SDouglas Anderson 
947b33752c3SDouglas Anderson 	ihid->ops->shutdown_tail(ihid->ops);
948203c38fbSKai-Heng Feng }
949203c38fbSKai-Heng Feng 
9505f8838e9SDouglas Anderson static int i2c_hid_core_suspend(struct i2c_hid *ihid, bool force_poweroff)
951d93d2847SDouglas Anderson {
952d93d2847SDouglas Anderson 	struct i2c_client *client = ihid->client;
953d93d2847SDouglas Anderson 	struct hid_device *hid = ihid->hid;
954d93d2847SDouglas Anderson 	int ret;
955d93d2847SDouglas Anderson 
956d93d2847SDouglas Anderson 	ret = hid_driver_suspend(hid, PMSG_SUSPEND);
957d93d2847SDouglas Anderson 	if (ret < 0)
958d93d2847SDouglas Anderson 		return ret;
959d93d2847SDouglas Anderson 
960d93d2847SDouglas Anderson 	/* Save some power */
961d93d2847SDouglas Anderson 	i2c_hid_set_power(ihid, I2C_HID_PWR_SLEEP);
962d93d2847SDouglas Anderson 
963d93d2847SDouglas Anderson 	disable_irq(client->irq);
964d93d2847SDouglas Anderson 
9655f8838e9SDouglas Anderson 	if (force_poweroff || !device_may_wakeup(&client->dev))
966d93d2847SDouglas Anderson 		i2c_hid_core_power_down(ihid);
967d93d2847SDouglas Anderson 
968d93d2847SDouglas Anderson 	return 0;
969d93d2847SDouglas Anderson }
970d93d2847SDouglas Anderson 
971d93d2847SDouglas Anderson static int i2c_hid_core_resume(struct i2c_hid *ihid)
972d93d2847SDouglas Anderson {
973d93d2847SDouglas Anderson 	struct i2c_client *client = ihid->client;
974d93d2847SDouglas Anderson 	struct hid_device *hid = ihid->hid;
975d93d2847SDouglas Anderson 	int ret;
976d93d2847SDouglas Anderson 
977d93d2847SDouglas Anderson 	if (!device_may_wakeup(&client->dev))
978d93d2847SDouglas Anderson 		i2c_hid_core_power_up(ihid);
979d93d2847SDouglas Anderson 
980d93d2847SDouglas Anderson 	enable_irq(client->irq);
981d93d2847SDouglas Anderson 
982d93d2847SDouglas Anderson 	/* Instead of resetting device, simply powers the device on. This
983d93d2847SDouglas Anderson 	 * solves "incomplete reports" on Raydium devices 2386:3118 and
984d93d2847SDouglas Anderson 	 * 2386:4B33 and fixes various SIS touchscreens no longer sending
985d93d2847SDouglas Anderson 	 * data after a suspend/resume.
986d93d2847SDouglas Anderson 	 *
987d93d2847SDouglas Anderson 	 * However some ALPS touchpads generate IRQ storm without reset, so
988d93d2847SDouglas Anderson 	 * let's still reset them here.
989d93d2847SDouglas Anderson 	 */
990*96d3098dSHans de Goede 	if (ihid->quirks & I2C_HID_QUIRK_RESET_ON_RESUME) {
991*96d3098dSHans de Goede 		mutex_lock(&ihid->reset_lock);
992*96d3098dSHans de Goede 		ret = i2c_hid_start_hwreset(ihid);
993*96d3098dSHans de Goede 		if (ret == 0)
994*96d3098dSHans de Goede 			ret = i2c_hid_finish_hwreset(ihid);
995*96d3098dSHans de Goede 		mutex_unlock(&ihid->reset_lock);
996*96d3098dSHans de Goede 	} else {
997d93d2847SDouglas Anderson 		ret = i2c_hid_set_power(ihid, I2C_HID_PWR_ON);
998*96d3098dSHans de Goede 	}
999d93d2847SDouglas Anderson 
1000d93d2847SDouglas Anderson 	if (ret)
1001d93d2847SDouglas Anderson 		return ret;
1002d93d2847SDouglas Anderson 
1003d93d2847SDouglas Anderson 	return hid_driver_reset_resume(hid);
1004d93d2847SDouglas Anderson }
1005d93d2847SDouglas Anderson 
10069af867c0SJohan Hovold /*
10079af867c0SJohan Hovold  * Check that the device exists and parse the HID descriptor.
1008675cd877SDouglas Anderson  */
10099af867c0SJohan Hovold static int __i2c_hid_core_probe(struct i2c_hid *ihid)
1010675cd877SDouglas Anderson {
1011675cd877SDouglas Anderson 	struct i2c_client *client = ihid->client;
1012675cd877SDouglas Anderson 	struct hid_device *hid = ihid->hid;
1013675cd877SDouglas Anderson 	int ret;
1014675cd877SDouglas Anderson 
1015675cd877SDouglas Anderson 	/* Make sure there is something at this address */
1016675cd877SDouglas Anderson 	ret = i2c_smbus_read_byte(client);
1017675cd877SDouglas Anderson 	if (ret < 0) {
1018675cd877SDouglas Anderson 		i2c_hid_dbg(ihid, "nothing at this address: %d\n", ret);
10199af867c0SJohan Hovold 		return -ENXIO;
1020675cd877SDouglas Anderson 	}
1021675cd877SDouglas Anderson 
1022675cd877SDouglas Anderson 	ret = i2c_hid_fetch_hid_descriptor(ihid);
1023675cd877SDouglas Anderson 	if (ret < 0) {
1024675cd877SDouglas Anderson 		dev_err(&client->dev,
1025675cd877SDouglas Anderson 			"Failed to fetch the HID Descriptor\n");
10269af867c0SJohan Hovold 		return ret;
1027675cd877SDouglas Anderson 	}
1028675cd877SDouglas Anderson 
1029675cd877SDouglas Anderson 	hid->version = le16_to_cpu(ihid->hdesc.bcdVersion);
1030675cd877SDouglas Anderson 	hid->vendor = le16_to_cpu(ihid->hdesc.wVendorID);
1031675cd877SDouglas Anderson 	hid->product = le16_to_cpu(ihid->hdesc.wProductID);
1032675cd877SDouglas Anderson 
1033675cd877SDouglas Anderson 	hid->initial_quirks |= i2c_hid_get_dmi_quirks(hid->vendor,
1034675cd877SDouglas Anderson 						      hid->product);
1035675cd877SDouglas Anderson 
1036675cd877SDouglas Anderson 	snprintf(hid->name, sizeof(hid->name), "%s %04X:%04X",
1037675cd877SDouglas Anderson 		 client->name, (u16)hid->vendor, (u16)hid->product);
1038675cd877SDouglas Anderson 	strscpy(hid->phys, dev_name(&client->dev), sizeof(hid->phys));
1039675cd877SDouglas Anderson 
1040675cd877SDouglas Anderson 	ihid->quirks = i2c_hid_lookup_quirk(hid->vendor, hid->product);
1041675cd877SDouglas Anderson 
10429af867c0SJohan Hovold 	return 0;
10439af867c0SJohan Hovold }
10449af867c0SJohan Hovold 
10459af867c0SJohan Hovold static int i2c_hid_core_register_hid(struct i2c_hid *ihid)
10469af867c0SJohan Hovold {
10479af867c0SJohan Hovold 	struct i2c_client *client = ihid->client;
10489af867c0SJohan Hovold 	struct hid_device *hid = ihid->hid;
10499af867c0SJohan Hovold 	int ret;
10509af867c0SJohan Hovold 
10519af867c0SJohan Hovold 	enable_irq(client->irq);
10529af867c0SJohan Hovold 
1053675cd877SDouglas Anderson 	ret = hid_add_device(hid);
1054675cd877SDouglas Anderson 	if (ret) {
1055675cd877SDouglas Anderson 		if (ret != -ENODEV)
1056675cd877SDouglas Anderson 			hid_err(client, "can't add hid device: %d\n", ret);
10579af867c0SJohan Hovold 		disable_irq(client->irq);
10589af867c0SJohan Hovold 		return ret;
1059675cd877SDouglas Anderson 	}
1060675cd877SDouglas Anderson 
1061675cd877SDouglas Anderson 	return 0;
10629af867c0SJohan Hovold }
1063675cd877SDouglas Anderson 
10649af867c0SJohan Hovold static int i2c_hid_core_probe_panel_follower(struct i2c_hid *ihid)
10659af867c0SJohan Hovold {
10669af867c0SJohan Hovold 	int ret;
10679af867c0SJohan Hovold 
10689af867c0SJohan Hovold 	ret = i2c_hid_core_power_up(ihid);
10699af867c0SJohan Hovold 	if (ret)
10709af867c0SJohan Hovold 		return ret;
10719af867c0SJohan Hovold 
10729af867c0SJohan Hovold 	ret = __i2c_hid_core_probe(ihid);
10739af867c0SJohan Hovold 	if (ret)
10749af867c0SJohan Hovold 		goto err_power_down;
10759af867c0SJohan Hovold 
10769af867c0SJohan Hovold 	ret = i2c_hid_core_register_hid(ihid);
10779af867c0SJohan Hovold 	if (ret)
10789af867c0SJohan Hovold 		goto err_power_down;
10799af867c0SJohan Hovold 
10809af867c0SJohan Hovold 	return 0;
10819af867c0SJohan Hovold 
10829af867c0SJohan Hovold err_power_down:
1083675cd877SDouglas Anderson 	i2c_hid_core_power_down(ihid);
10849af867c0SJohan Hovold 
1085675cd877SDouglas Anderson 	return ret;
1086675cd877SDouglas Anderson }
1087675cd877SDouglas Anderson 
108876edfcf4SDouglas Anderson static void ihid_core_panel_prepare_work(struct work_struct *work)
108996a37bfdSDouglas Anderson {
109076edfcf4SDouglas Anderson 	struct i2c_hid *ihid = container_of(work, struct i2c_hid,
109176edfcf4SDouglas Anderson 					    panel_follower_prepare_work);
109296a37bfdSDouglas Anderson 	struct hid_device *hid = ihid->hid;
109376edfcf4SDouglas Anderson 	int ret;
109496a37bfdSDouglas Anderson 
109596a37bfdSDouglas Anderson 	/*
109696a37bfdSDouglas Anderson 	 * hid->version is set on the first power up. If it's still zero then
109796a37bfdSDouglas Anderson 	 * this is the first power on so we should perform initial power up
109896a37bfdSDouglas Anderson 	 * steps.
109996a37bfdSDouglas Anderson 	 */
110096a37bfdSDouglas Anderson 	if (!hid->version)
11019af867c0SJohan Hovold 		ret = i2c_hid_core_probe_panel_follower(ihid);
110276edfcf4SDouglas Anderson 	else
110376edfcf4SDouglas Anderson 		ret = i2c_hid_core_resume(ihid);
110496a37bfdSDouglas Anderson 
110576edfcf4SDouglas Anderson 	if (ret)
110676edfcf4SDouglas Anderson 		dev_warn(&ihid->client->dev, "Power on failed: %d\n", ret);
110776edfcf4SDouglas Anderson 	else
110876edfcf4SDouglas Anderson 		WRITE_ONCE(ihid->prepare_work_finished, true);
110976edfcf4SDouglas Anderson 
111076edfcf4SDouglas Anderson 	/*
111176edfcf4SDouglas Anderson 	 * The work APIs provide a number of memory ordering guarantees
111276edfcf4SDouglas Anderson 	 * including one that says that memory writes before schedule_work()
111376edfcf4SDouglas Anderson 	 * are always visible to the work function, but they don't appear to
111476edfcf4SDouglas Anderson 	 * guarantee that a write that happened in the work is visible after
111576edfcf4SDouglas Anderson 	 * cancel_work_sync(). We'll add a write memory barrier here to match
111676edfcf4SDouglas Anderson 	 * with i2c_hid_core_panel_unpreparing() to ensure that our write to
111776edfcf4SDouglas Anderson 	 * prepare_work_finished is visible there.
111876edfcf4SDouglas Anderson 	 */
111976edfcf4SDouglas Anderson 	smp_wmb();
112076edfcf4SDouglas Anderson }
112176edfcf4SDouglas Anderson 
112276edfcf4SDouglas Anderson static int i2c_hid_core_panel_prepared(struct drm_panel_follower *follower)
112376edfcf4SDouglas Anderson {
112476edfcf4SDouglas Anderson 	struct i2c_hid *ihid = container_of(follower, struct i2c_hid, panel_follower);
112576edfcf4SDouglas Anderson 
112676edfcf4SDouglas Anderson 	/*
112776edfcf4SDouglas Anderson 	 * Powering on a touchscreen can be a slow process. Queue the work to
112876edfcf4SDouglas Anderson 	 * the system workqueue so we don't block the panel's power up.
112976edfcf4SDouglas Anderson 	 */
113076edfcf4SDouglas Anderson 	WRITE_ONCE(ihid->prepare_work_finished, false);
113176edfcf4SDouglas Anderson 	schedule_work(&ihid->panel_follower_prepare_work);
113276edfcf4SDouglas Anderson 
113376edfcf4SDouglas Anderson 	return 0;
113496a37bfdSDouglas Anderson }
113596a37bfdSDouglas Anderson 
113696a37bfdSDouglas Anderson static int i2c_hid_core_panel_unpreparing(struct drm_panel_follower *follower)
113796a37bfdSDouglas Anderson {
113896a37bfdSDouglas Anderson 	struct i2c_hid *ihid = container_of(follower, struct i2c_hid, panel_follower);
113996a37bfdSDouglas Anderson 
114076edfcf4SDouglas Anderson 	cancel_work_sync(&ihid->panel_follower_prepare_work);
114176edfcf4SDouglas Anderson 
114276edfcf4SDouglas Anderson 	/* Match with ihid_core_panel_prepare_work() */
114376edfcf4SDouglas Anderson 	smp_rmb();
114476edfcf4SDouglas Anderson 	if (!READ_ONCE(ihid->prepare_work_finished))
114576edfcf4SDouglas Anderson 		return 0;
114676edfcf4SDouglas Anderson 
114796a37bfdSDouglas Anderson 	return i2c_hid_core_suspend(ihid, true);
114896a37bfdSDouglas Anderson }
114996a37bfdSDouglas Anderson 
115096a37bfdSDouglas Anderson static const struct drm_panel_follower_funcs i2c_hid_core_panel_follower_funcs = {
115196a37bfdSDouglas Anderson 	.panel_prepared = i2c_hid_core_panel_prepared,
115296a37bfdSDouglas Anderson 	.panel_unpreparing = i2c_hid_core_panel_unpreparing,
115396a37bfdSDouglas Anderson };
115496a37bfdSDouglas Anderson 
115596a37bfdSDouglas Anderson static int i2c_hid_core_register_panel_follower(struct i2c_hid *ihid)
115696a37bfdSDouglas Anderson {
115796a37bfdSDouglas Anderson 	struct device *dev = &ihid->client->dev;
115896a37bfdSDouglas Anderson 	int ret;
115996a37bfdSDouglas Anderson 
116096a37bfdSDouglas Anderson 	ihid->panel_follower.funcs = &i2c_hid_core_panel_follower_funcs;
116196a37bfdSDouglas Anderson 
116296a37bfdSDouglas Anderson 	/*
116396a37bfdSDouglas Anderson 	 * If we're not in control of our own power up/power down then we can't
116496a37bfdSDouglas Anderson 	 * do the logic to manage wakeups. Give a warning if a user thought
116596a37bfdSDouglas Anderson 	 * that was possible then force the capability off.
116696a37bfdSDouglas Anderson 	 */
116796a37bfdSDouglas Anderson 	if (device_can_wakeup(dev)) {
116896a37bfdSDouglas Anderson 		dev_warn(dev, "Can't wakeup if following panel\n");
116996a37bfdSDouglas Anderson 		device_set_wakeup_capable(dev, false);
117096a37bfdSDouglas Anderson 	}
117196a37bfdSDouglas Anderson 
117296a37bfdSDouglas Anderson 	ret = drm_panel_add_follower(dev, &ihid->panel_follower);
117396a37bfdSDouglas Anderson 	if (ret)
117496a37bfdSDouglas Anderson 		return ret;
117596a37bfdSDouglas Anderson 
117696a37bfdSDouglas Anderson 	return 0;
117796a37bfdSDouglas Anderson }
117896a37bfdSDouglas Anderson 
1179b33752c3SDouglas Anderson int i2c_hid_core_probe(struct i2c_client *client, struct i2chid_ops *ops,
1180b60d3c80SAlistair Francis 		       u16 hid_descriptor_address, u32 quirks)
11819ee3e066SJulian Sax {
11829ee3e066SJulian Sax 	int ret;
11839ee3e066SJulian Sax 	struct i2c_hid *ihid;
11849ee3e066SJulian Sax 	struct hid_device *hid;
11859ee3e066SJulian Sax 
11869ee3e066SJulian Sax 	dbg_hid("HID probe called for i2c 0x%02x\n", client->addr);
11879ee3e066SJulian Sax 
11889ee3e066SJulian Sax 	if (!client->irq) {
11899ee3e066SJulian Sax 		dev_err(&client->dev,
11909ee3e066SJulian Sax 			"HID over i2c has not been provided an Int IRQ\n");
11919ee3e066SJulian Sax 		return -EINVAL;
11929ee3e066SJulian Sax 	}
11939ee3e066SJulian Sax 
11949ee3e066SJulian Sax 	if (client->irq < 0) {
11959ee3e066SJulian Sax 		if (client->irq != -EPROBE_DEFER)
11969ee3e066SJulian Sax 			dev_err(&client->dev,
11979ee3e066SJulian Sax 				"HID over i2c doesn't have a valid IRQ\n");
11989ee3e066SJulian Sax 		return client->irq;
11999ee3e066SJulian Sax 	}
12009ee3e066SJulian Sax 
12019ee3e066SJulian Sax 	ihid = devm_kzalloc(&client->dev, sizeof(*ihid), GFP_KERNEL);
12029ee3e066SJulian Sax 	if (!ihid)
12039ee3e066SJulian Sax 		return -ENOMEM;
12049ee3e066SJulian Sax 
12059ee3e066SJulian Sax 	i2c_set_clientdata(client, ihid);
12069ee3e066SJulian Sax 
1207675cd877SDouglas Anderson 	ihid->ops = ops;
12089ee3e066SJulian Sax 	ihid->client = client;
1209b33752c3SDouglas Anderson 	ihid->wHIDDescRegister = cpu_to_le16(hid_descriptor_address);
12109af867c0SJohan Hovold 	ihid->is_panel_follower = drm_is_panel_follower(&client->dev);
12119ee3e066SJulian Sax 
12129ee3e066SJulian Sax 	init_waitqueue_head(&ihid->wait);
12139ee3e066SJulian Sax 	mutex_init(&ihid->reset_lock);
121476edfcf4SDouglas Anderson 	INIT_WORK(&ihid->panel_follower_prepare_work, ihid_core_panel_prepare_work);
12159ee3e066SJulian Sax 
12169ee3e066SJulian Sax 	/* we need to allocate the command buffer without knowing the maximum
12179ee3e066SJulian Sax 	 * size of the reports. Let's use HID_MIN_BUFFER_SIZE, then we do the
12189ee3e066SJulian Sax 	 * real computation later. */
12199ee3e066SJulian Sax 	ret = i2c_hid_alloc_buffers(ihid, HID_MIN_BUFFER_SIZE);
12209ee3e066SJulian Sax 	if (ret < 0)
1221675cd877SDouglas Anderson 		return ret;
12229ee3e066SJulian Sax 	device_enable_async_suspend(&client->dev);
12239ee3e066SJulian Sax 
12249ee3e066SJulian Sax 	hid = hid_allocate_device();
12259ee3e066SJulian Sax 	if (IS_ERR(hid)) {
12269ee3e066SJulian Sax 		ret = PTR_ERR(hid);
12279af867c0SJohan Hovold 		goto err_free_buffers;
12289ee3e066SJulian Sax 	}
12299ee3e066SJulian Sax 
12309ee3e066SJulian Sax 	ihid->hid = hid;
12319ee3e066SJulian Sax 
12329ee3e066SJulian Sax 	hid->driver_data = client;
12339ee3e066SJulian Sax 	hid->ll_driver = &i2c_hid_ll_driver;
12349ee3e066SJulian Sax 	hid->dev.parent = &client->dev;
12359ee3e066SJulian Sax 	hid->bus = BUS_I2C;
123603a86105SDmitry Torokhov 	hid->initial_quirks = quirks;
123703a86105SDmitry Torokhov 
12389af867c0SJohan Hovold 	/* Power on and probe unless device is a panel follower. */
12399af867c0SJohan Hovold 	if (!ihid->is_panel_follower) {
12409af867c0SJohan Hovold 		ret = i2c_hid_core_power_up(ihid);
12419af867c0SJohan Hovold 		if (ret < 0)
12429af867c0SJohan Hovold 			goto err_destroy_device;
12439af867c0SJohan Hovold 
12449af867c0SJohan Hovold 		ret = __i2c_hid_core_probe(ihid);
12459af867c0SJohan Hovold 		if (ret < 0)
12469af867c0SJohan Hovold 			goto err_power_down;
12479af867c0SJohan Hovold 	}
12489af867c0SJohan Hovold 
12499af867c0SJohan Hovold 	ret = i2c_hid_init_irq(client);
12509af867c0SJohan Hovold 	if (ret < 0)
12519af867c0SJohan Hovold 		goto err_power_down;
12529af867c0SJohan Hovold 
12539af867c0SJohan Hovold 	/*
12549af867c0SJohan Hovold 	 * If we're a panel follower, we'll register when the panel turns on;
12559af867c0SJohan Hovold 	 * otherwise we do it right away.
12569af867c0SJohan Hovold 	 */
12579af867c0SJohan Hovold 	if (ihid->is_panel_follower)
12589af867c0SJohan Hovold 		ret = i2c_hid_core_register_panel_follower(ihid);
12599af867c0SJohan Hovold 	else
12609af867c0SJohan Hovold 		ret = i2c_hid_core_register_hid(ihid);
1261675cd877SDouglas Anderson 	if (ret)
12629af867c0SJohan Hovold 		goto err_free_irq;
12639ee3e066SJulian Sax 
12649ee3e066SJulian Sax 	return 0;
12659ee3e066SJulian Sax 
12669af867c0SJohan Hovold err_free_irq:
12679ee3e066SJulian Sax 	free_irq(client->irq, ihid);
12689af867c0SJohan Hovold err_power_down:
12699af867c0SJohan Hovold 	if (!ihid->is_panel_follower)
12709af867c0SJohan Hovold 		i2c_hid_core_power_down(ihid);
12719af867c0SJohan Hovold err_destroy_device:
12729af867c0SJohan Hovold 	hid_destroy_device(hid);
12739af867c0SJohan Hovold err_free_buffers:
12749ee3e066SJulian Sax 	i2c_hid_free_buffers(ihid);
1275675cd877SDouglas Anderson 
12769ee3e066SJulian Sax 	return ret;
12779ee3e066SJulian Sax }
1278b33752c3SDouglas Anderson EXPORT_SYMBOL_GPL(i2c_hid_core_probe);
12799ee3e066SJulian Sax 
1280ed5c2f5fSUwe Kleine-König void i2c_hid_core_remove(struct i2c_client *client)
12819ee3e066SJulian Sax {
12829ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
12839ee3e066SJulian Sax 	struct hid_device *hid;
12849ee3e066SJulian Sax 
12859af867c0SJohan Hovold 	/*
12869af867c0SJohan Hovold 	 * If we're a follower, the act of unfollowing will cause us to be
12879af867c0SJohan Hovold 	 * powered down. Otherwise we need to manually do it.
12889af867c0SJohan Hovold 	 */
12899af867c0SJohan Hovold 	if (ihid->is_panel_follower)
12909af867c0SJohan Hovold 		drm_panel_remove_follower(&ihid->panel_follower);
12919af867c0SJohan Hovold 	else
12929af867c0SJohan Hovold 		i2c_hid_core_suspend(ihid, true);
1293675cd877SDouglas Anderson 
12949ee3e066SJulian Sax 	hid = ihid->hid;
12959ee3e066SJulian Sax 	hid_destroy_device(hid);
12969ee3e066SJulian Sax 
12979ee3e066SJulian Sax 	free_irq(client->irq, ihid);
12989ee3e066SJulian Sax 
12999ee3e066SJulian Sax 	if (ihid->bufsize)
13009ee3e066SJulian Sax 		i2c_hid_free_buffers(ihid);
13019ee3e066SJulian Sax }
1302b33752c3SDouglas Anderson EXPORT_SYMBOL_GPL(i2c_hid_core_remove);
13039ee3e066SJulian Sax 
1304b33752c3SDouglas Anderson void i2c_hid_core_shutdown(struct i2c_client *client)
13059ee3e066SJulian Sax {
13069ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
13079ee3e066SJulian Sax 
1308d34c6105SDmitry Torokhov 	i2c_hid_set_power(ihid, I2C_HID_PWR_SLEEP);
13099ee3e066SJulian Sax 	free_irq(client->irq, ihid);
13105c7e02a8SHans de Goede 
1311b33752c3SDouglas Anderson 	i2c_hid_core_shutdown_tail(ihid);
13129ee3e066SJulian Sax }
1313b33752c3SDouglas Anderson EXPORT_SYMBOL_GPL(i2c_hid_core_shutdown);
13149ee3e066SJulian Sax 
1315d93d2847SDouglas Anderson static int i2c_hid_core_pm_suspend(struct device *dev)
13169ee3e066SJulian Sax {
13179ee3e066SJulian Sax 	struct i2c_client *client = to_i2c_client(dev);
13189ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
13199ee3e066SJulian Sax 
132096a37bfdSDouglas Anderson 	if (ihid->is_panel_follower)
132196a37bfdSDouglas Anderson 		return 0;
132296a37bfdSDouglas Anderson 
13235f8838e9SDouglas Anderson 	return i2c_hid_core_suspend(ihid, false);
13249ee3e066SJulian Sax }
13259ee3e066SJulian Sax 
1326d93d2847SDouglas Anderson static int i2c_hid_core_pm_resume(struct device *dev)
13279ee3e066SJulian Sax {
13289ee3e066SJulian Sax 	struct i2c_client *client = to_i2c_client(dev);
13299ee3e066SJulian Sax 	struct i2c_hid *ihid = i2c_get_clientdata(client);
13309ee3e066SJulian Sax 
133196a37bfdSDouglas Anderson 	if (ihid->is_panel_follower)
133296a37bfdSDouglas Anderson 		return 0;
133396a37bfdSDouglas Anderson 
1334d93d2847SDouglas Anderson 	return i2c_hid_core_resume(ihid);
13359ee3e066SJulian Sax }
13369ee3e066SJulian Sax 
1337b33752c3SDouglas Anderson const struct dev_pm_ops i2c_hid_core_pm = {
1338d93d2847SDouglas Anderson 	SYSTEM_SLEEP_PM_OPS(i2c_hid_core_pm_suspend, i2c_hid_core_pm_resume)
13399ee3e066SJulian Sax };
1340b33752c3SDouglas Anderson EXPORT_SYMBOL_GPL(i2c_hid_core_pm);
13419ee3e066SJulian Sax 
13429ee3e066SJulian Sax MODULE_DESCRIPTION("HID over I2C core driver");
13439ee3e066SJulian Sax MODULE_AUTHOR("Benjamin Tissoires <benjamin.tissoires@gmail.com>");
13449ee3e066SJulian Sax MODULE_LICENSE("GPL");
1345