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 429d34c6105SDmitry Torokhov static int i2c_hid_hwreset(struct i2c_hid *ihid) 4309ee3e066SJulian Sax { 431*f023605dSHans 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 */ 4419ee3e066SJulian Sax mutex_lock(&ihid->reset_lock); 4429ee3e066SJulian Sax 443d34c6105SDmitry Torokhov ret = i2c_hid_set_power(ihid, I2C_HID_PWR_ON); 4449ee3e066SJulian Sax if (ret) 445*f023605dSHans de Goede goto err_unlock; 4469ee3e066SJulian Sax 447*f023605dSHans de Goede /* Prepare reset command. Command register goes first. */ 448*f023605dSHans de Goede *(__le16 *)ihid->cmdbuf = ihid->hdesc.wCommandRegister; 449*f023605dSHans de Goede length += sizeof(__le16); 450*f023605dSHans de Goede /* Next is RESET command itself */ 451*f023605dSHans de Goede length += i2c_hid_encode_command(ihid->cmdbuf + length, 452*f023605dSHans de Goede I2C_HID_OPCODE_RESET, 0, 0); 453*f023605dSHans de Goede 454*f023605dSHans de Goede set_bit(I2C_HID_RESET_PENDING, &ihid->flags); 455*f023605dSHans de Goede 456*f023605dSHans 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); 460*f023605dSHans de Goede goto err_clear_reset; 4619ee3e066SJulian Sax } 4629ee3e066SJulian Sax 463*f023605dSHans de Goede i2c_hid_dbg(ihid, "%s: waiting...\n", __func__); 464*f023605dSHans de Goede 465*f023605dSHans de Goede if (ihid->quirks & I2C_HID_QUIRK_NO_IRQ_AFTER_RESET) { 466*f023605dSHans de Goede msleep(100); 467*f023605dSHans de Goede clear_bit(I2C_HID_RESET_PENDING, &ihid->flags); 468*f023605dSHans de Goede } else if (!wait_event_timeout(ihid->wait, 469*f023605dSHans de Goede !test_bit(I2C_HID_RESET_PENDING, &ihid->flags), 470*f023605dSHans de Goede msecs_to_jiffies(5000))) { 471*f023605dSHans de Goede ret = -ENODATA; 472*f023605dSHans de Goede goto err_clear_reset; 473*f023605dSHans de Goede } 474*f023605dSHans de Goede i2c_hid_dbg(ihid, "%s: finished.\n", __func__); 475*f023605dSHans de Goede 47643b7029fSHans de Goede /* At least some SIS devices need this after reset */ 477ca66a677SJohnny Chuang if (!(ihid->quirks & I2C_HID_QUIRK_NO_WAKEUP_AFTER_RESET)) 478d34c6105SDmitry Torokhov ret = i2c_hid_set_power(ihid, I2C_HID_PWR_ON); 47943b7029fSHans de Goede 480*f023605dSHans de Goede mutex_unlock(&ihid->reset_lock); 481*f023605dSHans de Goede return ret; 482*f023605dSHans de Goede 483*f023605dSHans de Goede err_clear_reset: 484*f023605dSHans de Goede clear_bit(I2C_HID_RESET_PENDING, &ihid->flags); 485*f023605dSHans de Goede i2c_hid_set_power(ihid, I2C_HID_PWR_SLEEP); 486*f023605dSHans de Goede err_unlock: 4879ee3e066SJulian Sax mutex_unlock(&ihid->reset_lock); 4889ee3e066SJulian Sax return ret; 4899ee3e066SJulian Sax } 4909ee3e066SJulian Sax 4919ee3e066SJulian Sax static void i2c_hid_get_input(struct i2c_hid *ihid) 4929ee3e066SJulian Sax { 49386fc3fd2SDmitry Torokhov u16 size = le16_to_cpu(ihid->hdesc.wMaxInputLength); 49486fc3fd2SDmitry Torokhov u16 ret_size; 4959ee3e066SJulian Sax int ret; 4969ee3e066SJulian Sax 4979ee3e066SJulian Sax if (size > ihid->bufsize) 4989ee3e066SJulian Sax size = ihid->bufsize; 4999ee3e066SJulian Sax 5009ee3e066SJulian Sax ret = i2c_master_recv(ihid->client, ihid->inbuf, size); 5019ee3e066SJulian Sax if (ret != size) { 5029ee3e066SJulian Sax if (ret < 0) 5039ee3e066SJulian Sax return; 5049ee3e066SJulian Sax 5059ee3e066SJulian Sax dev_err(&ihid->client->dev, "%s: got %d data instead of %d\n", 5069ee3e066SJulian Sax __func__, ret, size); 5079ee3e066SJulian Sax return; 5089ee3e066SJulian Sax } 5099ee3e066SJulian Sax 51086fc3fd2SDmitry Torokhov /* Receiving buffer is properly aligned */ 51186fc3fd2SDmitry Torokhov ret_size = le16_to_cpup((__le16 *)ihid->inbuf); 5129ee3e066SJulian Sax if (!ret_size) { 5139ee3e066SJulian Sax /* host or device initiated RESET completed */ 5149ee3e066SJulian Sax if (test_and_clear_bit(I2C_HID_RESET_PENDING, &ihid->flags)) 5159ee3e066SJulian Sax wake_up(&ihid->wait); 5169ee3e066SJulian Sax return; 5179ee3e066SJulian Sax } 5189ee3e066SJulian Sax 51986fc3fd2SDmitry Torokhov if ((ihid->quirks & I2C_HID_QUIRK_BOGUS_IRQ) && ret_size == 0xffff) { 52086fc3fd2SDmitry Torokhov dev_warn_once(&ihid->client->dev, 52186fc3fd2SDmitry Torokhov "%s: IRQ triggered but there's no data\n", 52286fc3fd2SDmitry Torokhov __func__); 5231475af25SKai-Heng Feng return; 5241475af25SKai-Heng Feng } 5251475af25SKai-Heng Feng 52686fc3fd2SDmitry Torokhov if (ret_size > size || ret_size < sizeof(__le16)) { 527fd091376SPavel Balan if (ihid->quirks & I2C_HID_QUIRK_BAD_INPUT_SIZE) { 52886fc3fd2SDmitry Torokhov *(__le16 *)ihid->inbuf = cpu_to_le16(size); 529fd091376SPavel Balan ret_size = size; 530fd091376SPavel Balan } else { 53186fc3fd2SDmitry Torokhov dev_err(&ihid->client->dev, 53286fc3fd2SDmitry Torokhov "%s: incomplete report (%d/%d)\n", 5339ee3e066SJulian Sax __func__, size, ret_size); 5349ee3e066SJulian Sax return; 5359ee3e066SJulian Sax } 536fd091376SPavel Balan } 5379ee3e066SJulian Sax 5389ee3e066SJulian Sax i2c_hid_dbg(ihid, "input: %*ph\n", ret_size, ihid->inbuf); 5399ee3e066SJulian Sax 540d951ae1cSMatthias Kaehlcke if (test_bit(I2C_HID_STARTED, &ihid->flags)) { 5419984fbf5SDmitry Torokhov if (ihid->hid->group != HID_GROUP_RMI) 542d951ae1cSMatthias Kaehlcke pm_wakeup_event(&ihid->client->dev, 0); 543d951ae1cSMatthias Kaehlcke 54486fc3fd2SDmitry Torokhov hid_input_report(ihid->hid, HID_INPUT_REPORT, 54586fc3fd2SDmitry Torokhov ihid->inbuf + sizeof(__le16), 54686fc3fd2SDmitry Torokhov ret_size - sizeof(__le16), 1); 547d951ae1cSMatthias Kaehlcke } 5489ee3e066SJulian Sax 5499ee3e066SJulian Sax return; 5509ee3e066SJulian Sax } 5519ee3e066SJulian Sax 5529ee3e066SJulian Sax static irqreturn_t i2c_hid_irq(int irq, void *dev_id) 5539ee3e066SJulian Sax { 5549ee3e066SJulian Sax struct i2c_hid *ihid = dev_id; 5559ee3e066SJulian Sax 5569ee3e066SJulian Sax if (test_bit(I2C_HID_READ_PENDING, &ihid->flags)) 5579ee3e066SJulian Sax return IRQ_HANDLED; 5589ee3e066SJulian Sax 5599ee3e066SJulian Sax i2c_hid_get_input(ihid); 5609ee3e066SJulian Sax 5619ee3e066SJulian Sax return IRQ_HANDLED; 5629ee3e066SJulian Sax } 5639ee3e066SJulian Sax 5649ee3e066SJulian Sax static int i2c_hid_get_report_length(struct hid_report *report) 5659ee3e066SJulian Sax { 5669ee3e066SJulian Sax return ((report->size - 1) >> 3) + 1 + 5679ee3e066SJulian Sax report->device->report_enum[report->type].numbered + 2; 5689ee3e066SJulian Sax } 5699ee3e066SJulian Sax 5709ee3e066SJulian Sax /* 5719ee3e066SJulian Sax * Traverse the supplied list of reports and find the longest 5729ee3e066SJulian Sax */ 5739ee3e066SJulian Sax static void i2c_hid_find_max_report(struct hid_device *hid, unsigned int type, 5749ee3e066SJulian Sax unsigned int *max) 5759ee3e066SJulian Sax { 5769ee3e066SJulian Sax struct hid_report *report; 5779ee3e066SJulian Sax unsigned int size; 5789ee3e066SJulian Sax 5799ee3e066SJulian Sax /* We should not rely on wMaxInputLength, as some devices may set it to 5809ee3e066SJulian Sax * a wrong length. */ 5819ee3e066SJulian Sax list_for_each_entry(report, &hid->report_enum[type].report_list, list) { 5829ee3e066SJulian Sax size = i2c_hid_get_report_length(report); 5839ee3e066SJulian Sax if (*max < size) 5849ee3e066SJulian Sax *max = size; 5859ee3e066SJulian Sax } 5869ee3e066SJulian Sax } 5879ee3e066SJulian Sax 5889ee3e066SJulian Sax static void i2c_hid_free_buffers(struct i2c_hid *ihid) 5899ee3e066SJulian Sax { 5909ee3e066SJulian Sax kfree(ihid->inbuf); 5919ee3e066SJulian Sax kfree(ihid->rawbuf); 5929ee3e066SJulian Sax kfree(ihid->cmdbuf); 5939ee3e066SJulian Sax ihid->inbuf = NULL; 5949ee3e066SJulian Sax ihid->rawbuf = NULL; 5959ee3e066SJulian Sax ihid->cmdbuf = NULL; 5969ee3e066SJulian Sax ihid->bufsize = 0; 5979ee3e066SJulian Sax } 5989ee3e066SJulian Sax 5999ee3e066SJulian Sax static int i2c_hid_alloc_buffers(struct i2c_hid *ihid, size_t report_size) 6009ee3e066SJulian Sax { 601dbe0dd5fSDmitry Torokhov /* 602dbe0dd5fSDmitry Torokhov * The worst case is computed from the set_report command with a 603dbe0dd5fSDmitry Torokhov * reportID > 15 and the maximum report length. 604dbe0dd5fSDmitry Torokhov */ 605dbe0dd5fSDmitry Torokhov int cmd_len = sizeof(__le16) + /* command register */ 606dbe0dd5fSDmitry Torokhov sizeof(u8) + /* encoded report type/ID */ 607dbe0dd5fSDmitry Torokhov sizeof(u8) + /* opcode */ 608dbe0dd5fSDmitry Torokhov sizeof(u8) + /* optional 3rd byte report ID */ 609dbe0dd5fSDmitry Torokhov sizeof(__le16) + /* data register */ 610dbe0dd5fSDmitry Torokhov sizeof(__le16) + /* report data size */ 611dbe0dd5fSDmitry Torokhov sizeof(u8) + /* report ID if numbered report */ 612dbe0dd5fSDmitry Torokhov report_size; 6139ee3e066SJulian Sax 6149ee3e066SJulian Sax ihid->inbuf = kzalloc(report_size, GFP_KERNEL); 6159ee3e066SJulian Sax ihid->rawbuf = kzalloc(report_size, GFP_KERNEL); 616dbe0dd5fSDmitry Torokhov ihid->cmdbuf = kzalloc(cmd_len, GFP_KERNEL); 6179ee3e066SJulian Sax 618dbe0dd5fSDmitry Torokhov if (!ihid->inbuf || !ihid->rawbuf || !ihid->cmdbuf) { 6199ee3e066SJulian Sax i2c_hid_free_buffers(ihid); 6209ee3e066SJulian Sax return -ENOMEM; 6219ee3e066SJulian Sax } 6229ee3e066SJulian Sax 6239ee3e066SJulian Sax ihid->bufsize = report_size; 6249ee3e066SJulian Sax 6259ee3e066SJulian Sax return 0; 6269ee3e066SJulian Sax } 6279ee3e066SJulian Sax 6289ee3e066SJulian Sax static int i2c_hid_get_raw_report(struct hid_device *hid, 62985df7133SDmitry Torokhov u8 report_type, u8 report_id, 63085df7133SDmitry Torokhov u8 *buf, size_t count) 6319ee3e066SJulian Sax { 6329ee3e066SJulian Sax struct i2c_client *client = hid->driver_data; 6339ee3e066SJulian Sax struct i2c_hid *ihid = i2c_get_clientdata(client); 63485df7133SDmitry Torokhov int ret_count; 6359ee3e066SJulian Sax 6369ee3e066SJulian Sax if (report_type == HID_OUTPUT_REPORT) 6379ee3e066SJulian Sax return -EINVAL; 6389ee3e066SJulian Sax 639a5e5e03eSDmitry Torokhov /* 640a5e5e03eSDmitry Torokhov * In case of unnumbered reports the response from the device will 641a5e5e03eSDmitry Torokhov * not have the report ID that the upper layers expect, so we need 642a5e5e03eSDmitry Torokhov * to stash it the buffer ourselves and adjust the data size. 643a5e5e03eSDmitry Torokhov */ 64485df7133SDmitry Torokhov if (!report_id) { 645a5e5e03eSDmitry Torokhov buf[0] = 0; 646a5e5e03eSDmitry Torokhov buf++; 647a5e5e03eSDmitry Torokhov count--; 648a5e5e03eSDmitry Torokhov } 649a5e5e03eSDmitry Torokhov 65085df7133SDmitry Torokhov ret_count = i2c_hid_get_report(ihid, 6519ee3e066SJulian Sax report_type == HID_FEATURE_REPORT ? 0x03 : 0x01, 65285df7133SDmitry Torokhov report_id, buf, count); 6539ee3e066SJulian Sax 65485df7133SDmitry Torokhov if (ret_count > 0 && !report_id) 65585df7133SDmitry Torokhov ret_count++; 6569ee3e066SJulian Sax 65785df7133SDmitry Torokhov return ret_count; 6589ee3e066SJulian Sax } 6599ee3e066SJulian Sax 66085df7133SDmitry Torokhov static int i2c_hid_output_raw_report(struct hid_device *hid, u8 report_type, 66185df7133SDmitry Torokhov const u8 *buf, size_t count, bool do_set) 6629ee3e066SJulian Sax { 6639ee3e066SJulian Sax struct i2c_client *client = hid->driver_data; 6649ee3e066SJulian Sax struct i2c_hid *ihid = i2c_get_clientdata(client); 6659ee3e066SJulian Sax int report_id = buf[0]; 6669ee3e066SJulian Sax int ret; 6679ee3e066SJulian Sax 6689ee3e066SJulian Sax if (report_type == HID_INPUT_REPORT) 6699ee3e066SJulian Sax return -EINVAL; 6709ee3e066SJulian Sax 6719ee3e066SJulian Sax mutex_lock(&ihid->reset_lock); 6729ee3e066SJulian Sax 673a5e5e03eSDmitry Torokhov /* 674a5e5e03eSDmitry Torokhov * Note that both numbered and unnumbered reports passed here 675a5e5e03eSDmitry Torokhov * are supposed to have report ID stored in the 1st byte of the 676a5e5e03eSDmitry Torokhov * buffer, so we strip it off unconditionally before passing payload 677a5e5e03eSDmitry Torokhov * to i2c_hid_set_or_send_report which takes care of encoding 678a5e5e03eSDmitry Torokhov * everything properly. 679a5e5e03eSDmitry Torokhov */ 680d34c6105SDmitry Torokhov ret = i2c_hid_set_or_send_report(ihid, 6819ee3e066SJulian Sax report_type == HID_FEATURE_REPORT ? 0x03 : 0x02, 682dbe0dd5fSDmitry Torokhov report_id, buf + 1, count - 1, do_set); 6839ee3e066SJulian Sax 684a5e5e03eSDmitry Torokhov if (ret >= 0) 685a5e5e03eSDmitry Torokhov ret++; /* add report_id to the number of transferred bytes */ 6869ee3e066SJulian Sax 6879ee3e066SJulian Sax mutex_unlock(&ihid->reset_lock); 6889ee3e066SJulian Sax 6899ee3e066SJulian Sax return ret; 6909ee3e066SJulian Sax } 6919ee3e066SJulian Sax 692dbe0dd5fSDmitry Torokhov static int i2c_hid_output_report(struct hid_device *hid, u8 *buf, size_t count) 6939ee3e066SJulian Sax { 69485df7133SDmitry Torokhov return i2c_hid_output_raw_report(hid, HID_OUTPUT_REPORT, buf, count, 6959ee3e066SJulian Sax false); 6969ee3e066SJulian Sax } 6979ee3e066SJulian Sax 6989ee3e066SJulian Sax static int i2c_hid_raw_request(struct hid_device *hid, unsigned char reportnum, 6999ee3e066SJulian Sax __u8 *buf, size_t len, unsigned char rtype, 7009ee3e066SJulian Sax int reqtype) 7019ee3e066SJulian Sax { 7029ee3e066SJulian Sax switch (reqtype) { 7039ee3e066SJulian Sax case HID_REQ_GET_REPORT: 70485df7133SDmitry Torokhov return i2c_hid_get_raw_report(hid, rtype, reportnum, buf, len); 7059ee3e066SJulian Sax case HID_REQ_SET_REPORT: 7069ee3e066SJulian Sax if (buf[0] != reportnum) 7079ee3e066SJulian Sax return -EINVAL; 70885df7133SDmitry Torokhov return i2c_hid_output_raw_report(hid, rtype, buf, len, true); 7099ee3e066SJulian Sax default: 7109ee3e066SJulian Sax return -EIO; 7119ee3e066SJulian Sax } 7129ee3e066SJulian Sax } 7139ee3e066SJulian Sax 7149ee3e066SJulian Sax static int i2c_hid_parse(struct hid_device *hid) 7159ee3e066SJulian Sax { 7169ee3e066SJulian Sax struct i2c_client *client = hid->driver_data; 7179ee3e066SJulian Sax struct i2c_hid *ihid = i2c_get_clientdata(client); 7189ee3e066SJulian Sax struct i2c_hid_desc *hdesc = &ihid->hdesc; 7199ee3e066SJulian Sax unsigned int rsize; 7209ee3e066SJulian Sax char *rdesc; 7219ee3e066SJulian Sax int ret; 7229ee3e066SJulian Sax int tries = 3; 7239ee3e066SJulian Sax char *use_override; 7249ee3e066SJulian Sax 7259ee3e066SJulian Sax i2c_hid_dbg(ihid, "entering %s\n", __func__); 7269ee3e066SJulian Sax 7279ee3e066SJulian Sax rsize = le16_to_cpu(hdesc->wReportDescLength); 7289ee3e066SJulian Sax if (!rsize || rsize > HID_MAX_DESCRIPTOR_SIZE) { 7299ee3e066SJulian Sax dbg_hid("weird size of report descriptor (%u)\n", rsize); 7309ee3e066SJulian Sax return -EINVAL; 7319ee3e066SJulian Sax } 7329ee3e066SJulian Sax 7339ee3e066SJulian Sax do { 734d34c6105SDmitry Torokhov ret = i2c_hid_hwreset(ihid); 7359ee3e066SJulian Sax if (ret) 7369ee3e066SJulian Sax msleep(1000); 7379ee3e066SJulian Sax } while (tries-- > 0 && ret); 7389ee3e066SJulian Sax 7399ee3e066SJulian Sax if (ret) 7409ee3e066SJulian Sax return ret; 7419ee3e066SJulian Sax 7429ee3e066SJulian Sax use_override = i2c_hid_get_dmi_hid_report_desc_override(client->name, 7439ee3e066SJulian Sax &rsize); 7449ee3e066SJulian Sax 7459ee3e066SJulian Sax if (use_override) { 7469ee3e066SJulian Sax rdesc = use_override; 7479ee3e066SJulian Sax i2c_hid_dbg(ihid, "Using a HID report descriptor override\n"); 7489ee3e066SJulian Sax } else { 7499ee3e066SJulian Sax rdesc = kzalloc(rsize, GFP_KERNEL); 7509ee3e066SJulian Sax 7519ee3e066SJulian Sax if (!rdesc) { 7529ee3e066SJulian Sax dbg_hid("couldn't allocate rdesc memory\n"); 7539ee3e066SJulian Sax return -ENOMEM; 7549ee3e066SJulian Sax } 7559ee3e066SJulian Sax 7569ee3e066SJulian Sax i2c_hid_dbg(ihid, "asking HID report descriptor\n"); 7579ee3e066SJulian Sax 7588399bd01SDmitry Torokhov ret = i2c_hid_read_register(ihid, 7598399bd01SDmitry Torokhov ihid->hdesc.wReportDescRegister, 7609ee3e066SJulian Sax rdesc, rsize); 7619ee3e066SJulian Sax if (ret) { 7629ee3e066SJulian Sax hid_err(hid, "reading report descriptor failed\n"); 7639ee3e066SJulian Sax kfree(rdesc); 7649ee3e066SJulian Sax return -EIO; 7659ee3e066SJulian Sax } 7669ee3e066SJulian Sax } 7679ee3e066SJulian Sax 7689ee3e066SJulian Sax i2c_hid_dbg(ihid, "Report Descriptor: %*ph\n", rsize, rdesc); 7699ee3e066SJulian Sax 7709ee3e066SJulian Sax ret = hid_parse_report(hid, rdesc, rsize); 7719ee3e066SJulian Sax if (!use_override) 7729ee3e066SJulian Sax kfree(rdesc); 7739ee3e066SJulian Sax 7749ee3e066SJulian Sax if (ret) { 7759ee3e066SJulian Sax dbg_hid("parsing report descriptor failed\n"); 7769ee3e066SJulian Sax return ret; 7779ee3e066SJulian Sax } 7789ee3e066SJulian Sax 7799ee3e066SJulian Sax return 0; 7809ee3e066SJulian Sax } 7819ee3e066SJulian Sax 7829ee3e066SJulian Sax static int i2c_hid_start(struct hid_device *hid) 7839ee3e066SJulian Sax { 7849ee3e066SJulian Sax struct i2c_client *client = hid->driver_data; 7859ee3e066SJulian Sax struct i2c_hid *ihid = i2c_get_clientdata(client); 7869ee3e066SJulian Sax int ret; 7879ee3e066SJulian Sax unsigned int bufsize = HID_MIN_BUFFER_SIZE; 7889ee3e066SJulian Sax 7899ee3e066SJulian Sax i2c_hid_find_max_report(hid, HID_INPUT_REPORT, &bufsize); 7909ee3e066SJulian Sax i2c_hid_find_max_report(hid, HID_OUTPUT_REPORT, &bufsize); 7919ee3e066SJulian Sax i2c_hid_find_max_report(hid, HID_FEATURE_REPORT, &bufsize); 7929ee3e066SJulian Sax 7939ee3e066SJulian Sax if (bufsize > ihid->bufsize) { 7949ee3e066SJulian Sax disable_irq(client->irq); 7959ee3e066SJulian Sax i2c_hid_free_buffers(ihid); 7969ee3e066SJulian Sax 7979ee3e066SJulian Sax ret = i2c_hid_alloc_buffers(ihid, bufsize); 7989ee3e066SJulian Sax enable_irq(client->irq); 7999ee3e066SJulian Sax 8009ee3e066SJulian Sax if (ret) 8019ee3e066SJulian Sax return ret; 8029ee3e066SJulian Sax } 8039ee3e066SJulian Sax 8049ee3e066SJulian Sax return 0; 8059ee3e066SJulian Sax } 8069ee3e066SJulian Sax 8079ee3e066SJulian Sax static void i2c_hid_stop(struct hid_device *hid) 8089ee3e066SJulian Sax { 8099ee3e066SJulian Sax hid->claimed = 0; 8109ee3e066SJulian Sax } 8119ee3e066SJulian Sax 8129ee3e066SJulian Sax static int i2c_hid_open(struct hid_device *hid) 8139ee3e066SJulian Sax { 8149ee3e066SJulian Sax struct i2c_client *client = hid->driver_data; 8159ee3e066SJulian Sax struct i2c_hid *ihid = i2c_get_clientdata(client); 8169ee3e066SJulian Sax 8179ee3e066SJulian Sax set_bit(I2C_HID_STARTED, &ihid->flags); 8189ee3e066SJulian Sax return 0; 8199ee3e066SJulian Sax } 8209ee3e066SJulian Sax 8219ee3e066SJulian Sax static void i2c_hid_close(struct hid_device *hid) 8229ee3e066SJulian Sax { 8239ee3e066SJulian Sax struct i2c_client *client = hid->driver_data; 8249ee3e066SJulian Sax struct i2c_hid *ihid = i2c_get_clientdata(client); 8259ee3e066SJulian Sax 8269ee3e066SJulian Sax clear_bit(I2C_HID_STARTED, &ihid->flags); 8279ee3e066SJulian Sax } 8289ee3e066SJulian Sax 82952d22534SThomas Weißschuh static const struct hid_ll_driver i2c_hid_ll_driver = { 8309ee3e066SJulian Sax .parse = i2c_hid_parse, 8319ee3e066SJulian Sax .start = i2c_hid_start, 8329ee3e066SJulian Sax .stop = i2c_hid_stop, 8339ee3e066SJulian Sax .open = i2c_hid_open, 8349ee3e066SJulian Sax .close = i2c_hid_close, 8359ee3e066SJulian Sax .output_report = i2c_hid_output_report, 8369ee3e066SJulian Sax .raw_request = i2c_hid_raw_request, 8379ee3e066SJulian Sax }; 8389ee3e066SJulian Sax 8399ee3e066SJulian Sax static int i2c_hid_init_irq(struct i2c_client *client) 8409ee3e066SJulian Sax { 8419ee3e066SJulian Sax struct i2c_hid *ihid = i2c_get_clientdata(client); 8429ee3e066SJulian Sax unsigned long irqflags = 0; 8439ee3e066SJulian Sax int ret; 8449ee3e066SJulian Sax 845f639e0b6SThomas Weißschuh i2c_hid_dbg(ihid, "Requesting IRQ: %d\n", client->irq); 8469ee3e066SJulian Sax 8479ee3e066SJulian Sax if (!irq_get_trigger_type(client->irq)) 8489ee3e066SJulian Sax irqflags = IRQF_TRIGGER_LOW; 8499ee3e066SJulian Sax 8509ee3e066SJulian Sax ret = request_threaded_irq(client->irq, NULL, i2c_hid_irq, 851675cd877SDouglas Anderson irqflags | IRQF_ONESHOT | IRQF_NO_AUTOEN, 852675cd877SDouglas Anderson client->name, ihid); 8539ee3e066SJulian Sax if (ret < 0) { 8549ee3e066SJulian Sax dev_warn(&client->dev, 8559ee3e066SJulian Sax "Could not register for %s interrupt, irq = %d," 8569ee3e066SJulian Sax " ret = %d\n", 8579ee3e066SJulian Sax client->name, client->irq, ret); 8589ee3e066SJulian Sax 8599ee3e066SJulian Sax return ret; 8609ee3e066SJulian Sax } 8619ee3e066SJulian Sax 8629ee3e066SJulian Sax return 0; 8639ee3e066SJulian Sax } 8649ee3e066SJulian Sax 8659ee3e066SJulian Sax static int i2c_hid_fetch_hid_descriptor(struct i2c_hid *ihid) 8669ee3e066SJulian Sax { 8679ee3e066SJulian Sax struct i2c_client *client = ihid->client; 8689ee3e066SJulian Sax struct i2c_hid_desc *hdesc = &ihid->hdesc; 8699ee3e066SJulian Sax unsigned int dsize; 8708399bd01SDmitry Torokhov int error; 8719ee3e066SJulian Sax 8729ee3e066SJulian Sax /* i2c hid fetch using a fixed descriptor size (30 bytes) */ 8739ee3e066SJulian Sax if (i2c_hid_get_dmi_i2c_hid_desc_override(client->name)) { 8749ee3e066SJulian Sax i2c_hid_dbg(ihid, "Using a HID descriptor override\n"); 8759ee3e066SJulian Sax ihid->hdesc = 8769ee3e066SJulian Sax *i2c_hid_get_dmi_i2c_hid_desc_override(client->name); 8779ee3e066SJulian Sax } else { 8789ee3e066SJulian Sax i2c_hid_dbg(ihid, "Fetching the HID descriptor\n"); 8798399bd01SDmitry Torokhov error = i2c_hid_read_register(ihid, 8808399bd01SDmitry Torokhov ihid->wHIDDescRegister, 8818399bd01SDmitry Torokhov &ihid->hdesc, 8828399bd01SDmitry Torokhov sizeof(ihid->hdesc)); 8838399bd01SDmitry Torokhov if (error) { 8848399bd01SDmitry Torokhov dev_err(&ihid->client->dev, 8858399bd01SDmitry Torokhov "failed to fetch HID descriptor: %d\n", 8868399bd01SDmitry Torokhov error); 8879ee3e066SJulian Sax return -ENODEV; 8889ee3e066SJulian Sax } 8899ee3e066SJulian Sax } 8909ee3e066SJulian Sax 8919ee3e066SJulian Sax /* Validate the length of HID descriptor, the 4 first bytes: 8929ee3e066SJulian Sax * bytes 0-1 -> length 8939ee3e066SJulian Sax * bytes 2-3 -> bcdVersion (has to be 1.00) */ 8949ee3e066SJulian Sax /* check bcdVersion == 1.0 */ 8959ee3e066SJulian Sax if (le16_to_cpu(hdesc->bcdVersion) != 0x0100) { 896d34c6105SDmitry Torokhov dev_err(&ihid->client->dev, 8979ee3e066SJulian Sax "unexpected HID descriptor bcdVersion (0x%04hx)\n", 8989ee3e066SJulian Sax le16_to_cpu(hdesc->bcdVersion)); 8999ee3e066SJulian Sax return -ENODEV; 9009ee3e066SJulian Sax } 9019ee3e066SJulian Sax 9029ee3e066SJulian Sax /* Descriptor length should be 30 bytes as per the specification */ 9039ee3e066SJulian Sax dsize = le16_to_cpu(hdesc->wHIDDescLength); 9049ee3e066SJulian Sax if (dsize != sizeof(struct i2c_hid_desc)) { 905d34c6105SDmitry Torokhov dev_err(&ihid->client->dev, 906d34c6105SDmitry Torokhov "weird size of HID descriptor (%u)\n", dsize); 9079ee3e066SJulian Sax return -ENODEV; 9089ee3e066SJulian Sax } 909551117c5SDmitry Torokhov i2c_hid_dbg(ihid, "HID Descriptor: %*ph\n", dsize, &ihid->hdesc); 9109ee3e066SJulian Sax return 0; 9119ee3e066SJulian Sax } 9129ee3e066SJulian Sax 913b33752c3SDouglas Anderson static int i2c_hid_core_power_up(struct i2c_hid *ihid) 9149ee3e066SJulian Sax { 915b33752c3SDouglas Anderson if (!ihid->ops->power_up) 9169ee3e066SJulian Sax return 0; 917b33752c3SDouglas Anderson 918b33752c3SDouglas Anderson return ihid->ops->power_up(ihid->ops); 9199ee3e066SJulian Sax } 9209ee3e066SJulian Sax 921b33752c3SDouglas Anderson static void i2c_hid_core_power_down(struct i2c_hid *ihid) 9229ee3e066SJulian Sax { 923b33752c3SDouglas Anderson if (!ihid->ops->power_down) 924b33752c3SDouglas Anderson return; 9259ee3e066SJulian Sax 926b33752c3SDouglas Anderson ihid->ops->power_down(ihid->ops); 9279ee3e066SJulian Sax } 9289ee3e066SJulian Sax 929b33752c3SDouglas Anderson static void i2c_hid_core_shutdown_tail(struct i2c_hid *ihid) 930203c38fbSKai-Heng Feng { 931b33752c3SDouglas Anderson if (!ihid->ops->shutdown_tail) 932b33752c3SDouglas Anderson return; 933b33752c3SDouglas Anderson 934b33752c3SDouglas Anderson ihid->ops->shutdown_tail(ihid->ops); 935203c38fbSKai-Heng Feng } 936203c38fbSKai-Heng Feng 9375f8838e9SDouglas Anderson static int i2c_hid_core_suspend(struct i2c_hid *ihid, bool force_poweroff) 938d93d2847SDouglas Anderson { 939d93d2847SDouglas Anderson struct i2c_client *client = ihid->client; 940d93d2847SDouglas Anderson struct hid_device *hid = ihid->hid; 941d93d2847SDouglas Anderson int ret; 942d93d2847SDouglas Anderson 943d93d2847SDouglas Anderson ret = hid_driver_suspend(hid, PMSG_SUSPEND); 944d93d2847SDouglas Anderson if (ret < 0) 945d93d2847SDouglas Anderson return ret; 946d93d2847SDouglas Anderson 947d93d2847SDouglas Anderson /* Save some power */ 948d93d2847SDouglas Anderson i2c_hid_set_power(ihid, I2C_HID_PWR_SLEEP); 949d93d2847SDouglas Anderson 950d93d2847SDouglas Anderson disable_irq(client->irq); 951d93d2847SDouglas Anderson 9525f8838e9SDouglas Anderson if (force_poweroff || !device_may_wakeup(&client->dev)) 953d93d2847SDouglas Anderson i2c_hid_core_power_down(ihid); 954d93d2847SDouglas Anderson 955d93d2847SDouglas Anderson return 0; 956d93d2847SDouglas Anderson } 957d93d2847SDouglas Anderson 958d93d2847SDouglas Anderson static int i2c_hid_core_resume(struct i2c_hid *ihid) 959d93d2847SDouglas Anderson { 960d93d2847SDouglas Anderson struct i2c_client *client = ihid->client; 961d93d2847SDouglas Anderson struct hid_device *hid = ihid->hid; 962d93d2847SDouglas Anderson int ret; 963d93d2847SDouglas Anderson 964d93d2847SDouglas Anderson if (!device_may_wakeup(&client->dev)) 965d93d2847SDouglas Anderson i2c_hid_core_power_up(ihid); 966d93d2847SDouglas Anderson 967d93d2847SDouglas Anderson enable_irq(client->irq); 968d93d2847SDouglas Anderson 969d93d2847SDouglas Anderson /* Instead of resetting device, simply powers the device on. This 970d93d2847SDouglas Anderson * solves "incomplete reports" on Raydium devices 2386:3118 and 971d93d2847SDouglas Anderson * 2386:4B33 and fixes various SIS touchscreens no longer sending 972d93d2847SDouglas Anderson * data after a suspend/resume. 973d93d2847SDouglas Anderson * 974d93d2847SDouglas Anderson * However some ALPS touchpads generate IRQ storm without reset, so 975d93d2847SDouglas Anderson * let's still reset them here. 976d93d2847SDouglas Anderson */ 977d93d2847SDouglas Anderson if (ihid->quirks & I2C_HID_QUIRK_RESET_ON_RESUME) 978d93d2847SDouglas Anderson ret = i2c_hid_hwreset(ihid); 979d93d2847SDouglas Anderson else 980d93d2847SDouglas Anderson ret = i2c_hid_set_power(ihid, I2C_HID_PWR_ON); 981d93d2847SDouglas Anderson 982d93d2847SDouglas Anderson if (ret) 983d93d2847SDouglas Anderson return ret; 984d93d2847SDouglas Anderson 985d93d2847SDouglas Anderson return hid_driver_reset_resume(hid); 986d93d2847SDouglas Anderson } 987d93d2847SDouglas Anderson 9889af867c0SJohan Hovold /* 9899af867c0SJohan Hovold * Check that the device exists and parse the HID descriptor. 990675cd877SDouglas Anderson */ 9919af867c0SJohan Hovold static int __i2c_hid_core_probe(struct i2c_hid *ihid) 992675cd877SDouglas Anderson { 993675cd877SDouglas Anderson struct i2c_client *client = ihid->client; 994675cd877SDouglas Anderson struct hid_device *hid = ihid->hid; 995675cd877SDouglas Anderson int ret; 996675cd877SDouglas Anderson 997675cd877SDouglas Anderson /* Make sure there is something at this address */ 998675cd877SDouglas Anderson ret = i2c_smbus_read_byte(client); 999675cd877SDouglas Anderson if (ret < 0) { 1000675cd877SDouglas Anderson i2c_hid_dbg(ihid, "nothing at this address: %d\n", ret); 10019af867c0SJohan Hovold return -ENXIO; 1002675cd877SDouglas Anderson } 1003675cd877SDouglas Anderson 1004675cd877SDouglas Anderson ret = i2c_hid_fetch_hid_descriptor(ihid); 1005675cd877SDouglas Anderson if (ret < 0) { 1006675cd877SDouglas Anderson dev_err(&client->dev, 1007675cd877SDouglas Anderson "Failed to fetch the HID Descriptor\n"); 10089af867c0SJohan Hovold return ret; 1009675cd877SDouglas Anderson } 1010675cd877SDouglas Anderson 1011675cd877SDouglas Anderson hid->version = le16_to_cpu(ihid->hdesc.bcdVersion); 1012675cd877SDouglas Anderson hid->vendor = le16_to_cpu(ihid->hdesc.wVendorID); 1013675cd877SDouglas Anderson hid->product = le16_to_cpu(ihid->hdesc.wProductID); 1014675cd877SDouglas Anderson 1015675cd877SDouglas Anderson hid->initial_quirks |= i2c_hid_get_dmi_quirks(hid->vendor, 1016675cd877SDouglas Anderson hid->product); 1017675cd877SDouglas Anderson 1018675cd877SDouglas Anderson snprintf(hid->name, sizeof(hid->name), "%s %04X:%04X", 1019675cd877SDouglas Anderson client->name, (u16)hid->vendor, (u16)hid->product); 1020675cd877SDouglas Anderson strscpy(hid->phys, dev_name(&client->dev), sizeof(hid->phys)); 1021675cd877SDouglas Anderson 1022675cd877SDouglas Anderson ihid->quirks = i2c_hid_lookup_quirk(hid->vendor, hid->product); 1023675cd877SDouglas Anderson 10249af867c0SJohan Hovold return 0; 10259af867c0SJohan Hovold } 10269af867c0SJohan Hovold 10279af867c0SJohan Hovold static int i2c_hid_core_register_hid(struct i2c_hid *ihid) 10289af867c0SJohan Hovold { 10299af867c0SJohan Hovold struct i2c_client *client = ihid->client; 10309af867c0SJohan Hovold struct hid_device *hid = ihid->hid; 10319af867c0SJohan Hovold int ret; 10329af867c0SJohan Hovold 10339af867c0SJohan Hovold enable_irq(client->irq); 10349af867c0SJohan Hovold 1035675cd877SDouglas Anderson ret = hid_add_device(hid); 1036675cd877SDouglas Anderson if (ret) { 1037675cd877SDouglas Anderson if (ret != -ENODEV) 1038675cd877SDouglas Anderson hid_err(client, "can't add hid device: %d\n", ret); 10399af867c0SJohan Hovold disable_irq(client->irq); 10409af867c0SJohan Hovold return ret; 1041675cd877SDouglas Anderson } 1042675cd877SDouglas Anderson 1043675cd877SDouglas Anderson return 0; 10449af867c0SJohan Hovold } 1045675cd877SDouglas Anderson 10469af867c0SJohan Hovold static int i2c_hid_core_probe_panel_follower(struct i2c_hid *ihid) 10479af867c0SJohan Hovold { 10489af867c0SJohan Hovold int ret; 10499af867c0SJohan Hovold 10509af867c0SJohan Hovold ret = i2c_hid_core_power_up(ihid); 10519af867c0SJohan Hovold if (ret) 10529af867c0SJohan Hovold return ret; 10539af867c0SJohan Hovold 10549af867c0SJohan Hovold ret = __i2c_hid_core_probe(ihid); 10559af867c0SJohan Hovold if (ret) 10569af867c0SJohan Hovold goto err_power_down; 10579af867c0SJohan Hovold 10589af867c0SJohan Hovold ret = i2c_hid_core_register_hid(ihid); 10599af867c0SJohan Hovold if (ret) 10609af867c0SJohan Hovold goto err_power_down; 10619af867c0SJohan Hovold 10629af867c0SJohan Hovold return 0; 10639af867c0SJohan Hovold 10649af867c0SJohan Hovold err_power_down: 1065675cd877SDouglas Anderson i2c_hid_core_power_down(ihid); 10669af867c0SJohan Hovold 1067675cd877SDouglas Anderson return ret; 1068675cd877SDouglas Anderson } 1069675cd877SDouglas Anderson 107076edfcf4SDouglas Anderson static void ihid_core_panel_prepare_work(struct work_struct *work) 107196a37bfdSDouglas Anderson { 107276edfcf4SDouglas Anderson struct i2c_hid *ihid = container_of(work, struct i2c_hid, 107376edfcf4SDouglas Anderson panel_follower_prepare_work); 107496a37bfdSDouglas Anderson struct hid_device *hid = ihid->hid; 107576edfcf4SDouglas Anderson int ret; 107696a37bfdSDouglas Anderson 107796a37bfdSDouglas Anderson /* 107896a37bfdSDouglas Anderson * hid->version is set on the first power up. If it's still zero then 107996a37bfdSDouglas Anderson * this is the first power on so we should perform initial power up 108096a37bfdSDouglas Anderson * steps. 108196a37bfdSDouglas Anderson */ 108296a37bfdSDouglas Anderson if (!hid->version) 10839af867c0SJohan Hovold ret = i2c_hid_core_probe_panel_follower(ihid); 108476edfcf4SDouglas Anderson else 108576edfcf4SDouglas Anderson ret = i2c_hid_core_resume(ihid); 108696a37bfdSDouglas Anderson 108776edfcf4SDouglas Anderson if (ret) 108876edfcf4SDouglas Anderson dev_warn(&ihid->client->dev, "Power on failed: %d\n", ret); 108976edfcf4SDouglas Anderson else 109076edfcf4SDouglas Anderson WRITE_ONCE(ihid->prepare_work_finished, true); 109176edfcf4SDouglas Anderson 109276edfcf4SDouglas Anderson /* 109376edfcf4SDouglas Anderson * The work APIs provide a number of memory ordering guarantees 109476edfcf4SDouglas Anderson * including one that says that memory writes before schedule_work() 109576edfcf4SDouglas Anderson * are always visible to the work function, but they don't appear to 109676edfcf4SDouglas Anderson * guarantee that a write that happened in the work is visible after 109776edfcf4SDouglas Anderson * cancel_work_sync(). We'll add a write memory barrier here to match 109876edfcf4SDouglas Anderson * with i2c_hid_core_panel_unpreparing() to ensure that our write to 109976edfcf4SDouglas Anderson * prepare_work_finished is visible there. 110076edfcf4SDouglas Anderson */ 110176edfcf4SDouglas Anderson smp_wmb(); 110276edfcf4SDouglas Anderson } 110376edfcf4SDouglas Anderson 110476edfcf4SDouglas Anderson static int i2c_hid_core_panel_prepared(struct drm_panel_follower *follower) 110576edfcf4SDouglas Anderson { 110676edfcf4SDouglas Anderson struct i2c_hid *ihid = container_of(follower, struct i2c_hid, panel_follower); 110776edfcf4SDouglas Anderson 110876edfcf4SDouglas Anderson /* 110976edfcf4SDouglas Anderson * Powering on a touchscreen can be a slow process. Queue the work to 111076edfcf4SDouglas Anderson * the system workqueue so we don't block the panel's power up. 111176edfcf4SDouglas Anderson */ 111276edfcf4SDouglas Anderson WRITE_ONCE(ihid->prepare_work_finished, false); 111376edfcf4SDouglas Anderson schedule_work(&ihid->panel_follower_prepare_work); 111476edfcf4SDouglas Anderson 111576edfcf4SDouglas Anderson return 0; 111696a37bfdSDouglas Anderson } 111796a37bfdSDouglas Anderson 111896a37bfdSDouglas Anderson static int i2c_hid_core_panel_unpreparing(struct drm_panel_follower *follower) 111996a37bfdSDouglas Anderson { 112096a37bfdSDouglas Anderson struct i2c_hid *ihid = container_of(follower, struct i2c_hid, panel_follower); 112196a37bfdSDouglas Anderson 112276edfcf4SDouglas Anderson cancel_work_sync(&ihid->panel_follower_prepare_work); 112376edfcf4SDouglas Anderson 112476edfcf4SDouglas Anderson /* Match with ihid_core_panel_prepare_work() */ 112576edfcf4SDouglas Anderson smp_rmb(); 112676edfcf4SDouglas Anderson if (!READ_ONCE(ihid->prepare_work_finished)) 112776edfcf4SDouglas Anderson return 0; 112876edfcf4SDouglas Anderson 112996a37bfdSDouglas Anderson return i2c_hid_core_suspend(ihid, true); 113096a37bfdSDouglas Anderson } 113196a37bfdSDouglas Anderson 113296a37bfdSDouglas Anderson static const struct drm_panel_follower_funcs i2c_hid_core_panel_follower_funcs = { 113396a37bfdSDouglas Anderson .panel_prepared = i2c_hid_core_panel_prepared, 113496a37bfdSDouglas Anderson .panel_unpreparing = i2c_hid_core_panel_unpreparing, 113596a37bfdSDouglas Anderson }; 113696a37bfdSDouglas Anderson 113796a37bfdSDouglas Anderson static int i2c_hid_core_register_panel_follower(struct i2c_hid *ihid) 113896a37bfdSDouglas Anderson { 113996a37bfdSDouglas Anderson struct device *dev = &ihid->client->dev; 114096a37bfdSDouglas Anderson int ret; 114196a37bfdSDouglas Anderson 114296a37bfdSDouglas Anderson ihid->panel_follower.funcs = &i2c_hid_core_panel_follower_funcs; 114396a37bfdSDouglas Anderson 114496a37bfdSDouglas Anderson /* 114596a37bfdSDouglas Anderson * If we're not in control of our own power up/power down then we can't 114696a37bfdSDouglas Anderson * do the logic to manage wakeups. Give a warning if a user thought 114796a37bfdSDouglas Anderson * that was possible then force the capability off. 114896a37bfdSDouglas Anderson */ 114996a37bfdSDouglas Anderson if (device_can_wakeup(dev)) { 115096a37bfdSDouglas Anderson dev_warn(dev, "Can't wakeup if following panel\n"); 115196a37bfdSDouglas Anderson device_set_wakeup_capable(dev, false); 115296a37bfdSDouglas Anderson } 115396a37bfdSDouglas Anderson 115496a37bfdSDouglas Anderson ret = drm_panel_add_follower(dev, &ihid->panel_follower); 115596a37bfdSDouglas Anderson if (ret) 115696a37bfdSDouglas Anderson return ret; 115796a37bfdSDouglas Anderson 115896a37bfdSDouglas Anderson return 0; 115996a37bfdSDouglas Anderson } 116096a37bfdSDouglas Anderson 1161b33752c3SDouglas Anderson int i2c_hid_core_probe(struct i2c_client *client, struct i2chid_ops *ops, 1162b60d3c80SAlistair Francis u16 hid_descriptor_address, u32 quirks) 11639ee3e066SJulian Sax { 11649ee3e066SJulian Sax int ret; 11659ee3e066SJulian Sax struct i2c_hid *ihid; 11669ee3e066SJulian Sax struct hid_device *hid; 11679ee3e066SJulian Sax 11689ee3e066SJulian Sax dbg_hid("HID probe called for i2c 0x%02x\n", client->addr); 11699ee3e066SJulian Sax 11709ee3e066SJulian Sax if (!client->irq) { 11719ee3e066SJulian Sax dev_err(&client->dev, 11729ee3e066SJulian Sax "HID over i2c has not been provided an Int IRQ\n"); 11739ee3e066SJulian Sax return -EINVAL; 11749ee3e066SJulian Sax } 11759ee3e066SJulian Sax 11769ee3e066SJulian Sax if (client->irq < 0) { 11779ee3e066SJulian Sax if (client->irq != -EPROBE_DEFER) 11789ee3e066SJulian Sax dev_err(&client->dev, 11799ee3e066SJulian Sax "HID over i2c doesn't have a valid IRQ\n"); 11809ee3e066SJulian Sax return client->irq; 11819ee3e066SJulian Sax } 11829ee3e066SJulian Sax 11839ee3e066SJulian Sax ihid = devm_kzalloc(&client->dev, sizeof(*ihid), GFP_KERNEL); 11849ee3e066SJulian Sax if (!ihid) 11859ee3e066SJulian Sax return -ENOMEM; 11869ee3e066SJulian Sax 11879ee3e066SJulian Sax i2c_set_clientdata(client, ihid); 11889ee3e066SJulian Sax 1189675cd877SDouglas Anderson ihid->ops = ops; 11909ee3e066SJulian Sax ihid->client = client; 1191b33752c3SDouglas Anderson ihid->wHIDDescRegister = cpu_to_le16(hid_descriptor_address); 11929af867c0SJohan Hovold ihid->is_panel_follower = drm_is_panel_follower(&client->dev); 11939ee3e066SJulian Sax 11949ee3e066SJulian Sax init_waitqueue_head(&ihid->wait); 11959ee3e066SJulian Sax mutex_init(&ihid->reset_lock); 119676edfcf4SDouglas Anderson INIT_WORK(&ihid->panel_follower_prepare_work, ihid_core_panel_prepare_work); 11979ee3e066SJulian Sax 11989ee3e066SJulian Sax /* we need to allocate the command buffer without knowing the maximum 11999ee3e066SJulian Sax * size of the reports. Let's use HID_MIN_BUFFER_SIZE, then we do the 12009ee3e066SJulian Sax * real computation later. */ 12019ee3e066SJulian Sax ret = i2c_hid_alloc_buffers(ihid, HID_MIN_BUFFER_SIZE); 12029ee3e066SJulian Sax if (ret < 0) 1203675cd877SDouglas Anderson return ret; 12049ee3e066SJulian Sax device_enable_async_suspend(&client->dev); 12059ee3e066SJulian Sax 12069ee3e066SJulian Sax hid = hid_allocate_device(); 12079ee3e066SJulian Sax if (IS_ERR(hid)) { 12089ee3e066SJulian Sax ret = PTR_ERR(hid); 12099af867c0SJohan Hovold goto err_free_buffers; 12109ee3e066SJulian Sax } 12119ee3e066SJulian Sax 12129ee3e066SJulian Sax ihid->hid = hid; 12139ee3e066SJulian Sax 12149ee3e066SJulian Sax hid->driver_data = client; 12159ee3e066SJulian Sax hid->ll_driver = &i2c_hid_ll_driver; 12169ee3e066SJulian Sax hid->dev.parent = &client->dev; 12179ee3e066SJulian Sax hid->bus = BUS_I2C; 121803a86105SDmitry Torokhov hid->initial_quirks = quirks; 121903a86105SDmitry Torokhov 12209af867c0SJohan Hovold /* Power on and probe unless device is a panel follower. */ 12219af867c0SJohan Hovold if (!ihid->is_panel_follower) { 12229af867c0SJohan Hovold ret = i2c_hid_core_power_up(ihid); 12239af867c0SJohan Hovold if (ret < 0) 12249af867c0SJohan Hovold goto err_destroy_device; 12259af867c0SJohan Hovold 12269af867c0SJohan Hovold ret = __i2c_hid_core_probe(ihid); 12279af867c0SJohan Hovold if (ret < 0) 12289af867c0SJohan Hovold goto err_power_down; 12299af867c0SJohan Hovold } 12309af867c0SJohan Hovold 12319af867c0SJohan Hovold ret = i2c_hid_init_irq(client); 12329af867c0SJohan Hovold if (ret < 0) 12339af867c0SJohan Hovold goto err_power_down; 12349af867c0SJohan Hovold 12359af867c0SJohan Hovold /* 12369af867c0SJohan Hovold * If we're a panel follower, we'll register when the panel turns on; 12379af867c0SJohan Hovold * otherwise we do it right away. 12389af867c0SJohan Hovold */ 12399af867c0SJohan Hovold if (ihid->is_panel_follower) 12409af867c0SJohan Hovold ret = i2c_hid_core_register_panel_follower(ihid); 12419af867c0SJohan Hovold else 12429af867c0SJohan Hovold ret = i2c_hid_core_register_hid(ihid); 1243675cd877SDouglas Anderson if (ret) 12449af867c0SJohan Hovold goto err_free_irq; 12459ee3e066SJulian Sax 12469ee3e066SJulian Sax return 0; 12479ee3e066SJulian Sax 12489af867c0SJohan Hovold err_free_irq: 12499ee3e066SJulian Sax free_irq(client->irq, ihid); 12509af867c0SJohan Hovold err_power_down: 12519af867c0SJohan Hovold if (!ihid->is_panel_follower) 12529af867c0SJohan Hovold i2c_hid_core_power_down(ihid); 12539af867c0SJohan Hovold err_destroy_device: 12549af867c0SJohan Hovold hid_destroy_device(hid); 12559af867c0SJohan Hovold err_free_buffers: 12569ee3e066SJulian Sax i2c_hid_free_buffers(ihid); 1257675cd877SDouglas Anderson 12589ee3e066SJulian Sax return ret; 12599ee3e066SJulian Sax } 1260b33752c3SDouglas Anderson EXPORT_SYMBOL_GPL(i2c_hid_core_probe); 12619ee3e066SJulian Sax 1262ed5c2f5fSUwe Kleine-König void i2c_hid_core_remove(struct i2c_client *client) 12639ee3e066SJulian Sax { 12649ee3e066SJulian Sax struct i2c_hid *ihid = i2c_get_clientdata(client); 12659ee3e066SJulian Sax struct hid_device *hid; 12669ee3e066SJulian Sax 12679af867c0SJohan Hovold /* 12689af867c0SJohan Hovold * If we're a follower, the act of unfollowing will cause us to be 12699af867c0SJohan Hovold * powered down. Otherwise we need to manually do it. 12709af867c0SJohan Hovold */ 12719af867c0SJohan Hovold if (ihid->is_panel_follower) 12729af867c0SJohan Hovold drm_panel_remove_follower(&ihid->panel_follower); 12739af867c0SJohan Hovold else 12749af867c0SJohan Hovold i2c_hid_core_suspend(ihid, true); 1275675cd877SDouglas Anderson 12769ee3e066SJulian Sax hid = ihid->hid; 12779ee3e066SJulian Sax hid_destroy_device(hid); 12789ee3e066SJulian Sax 12799ee3e066SJulian Sax free_irq(client->irq, ihid); 12809ee3e066SJulian Sax 12819ee3e066SJulian Sax if (ihid->bufsize) 12829ee3e066SJulian Sax i2c_hid_free_buffers(ihid); 12839ee3e066SJulian Sax } 1284b33752c3SDouglas Anderson EXPORT_SYMBOL_GPL(i2c_hid_core_remove); 12859ee3e066SJulian Sax 1286b33752c3SDouglas Anderson void i2c_hid_core_shutdown(struct i2c_client *client) 12879ee3e066SJulian Sax { 12889ee3e066SJulian Sax struct i2c_hid *ihid = i2c_get_clientdata(client); 12899ee3e066SJulian Sax 1290d34c6105SDmitry Torokhov i2c_hid_set_power(ihid, I2C_HID_PWR_SLEEP); 12919ee3e066SJulian Sax free_irq(client->irq, ihid); 12925c7e02a8SHans de Goede 1293b33752c3SDouglas Anderson i2c_hid_core_shutdown_tail(ihid); 12949ee3e066SJulian Sax } 1295b33752c3SDouglas Anderson EXPORT_SYMBOL_GPL(i2c_hid_core_shutdown); 12969ee3e066SJulian Sax 1297d93d2847SDouglas Anderson static int i2c_hid_core_pm_suspend(struct device *dev) 12989ee3e066SJulian Sax { 12999ee3e066SJulian Sax struct i2c_client *client = to_i2c_client(dev); 13009ee3e066SJulian Sax struct i2c_hid *ihid = i2c_get_clientdata(client); 13019ee3e066SJulian Sax 130296a37bfdSDouglas Anderson if (ihid->is_panel_follower) 130396a37bfdSDouglas Anderson return 0; 130496a37bfdSDouglas Anderson 13055f8838e9SDouglas Anderson return i2c_hid_core_suspend(ihid, false); 13069ee3e066SJulian Sax } 13079ee3e066SJulian Sax 1308d93d2847SDouglas Anderson static int i2c_hid_core_pm_resume(struct device *dev) 13099ee3e066SJulian Sax { 13109ee3e066SJulian Sax struct i2c_client *client = to_i2c_client(dev); 13119ee3e066SJulian Sax struct i2c_hid *ihid = i2c_get_clientdata(client); 13129ee3e066SJulian Sax 131396a37bfdSDouglas Anderson if (ihid->is_panel_follower) 131496a37bfdSDouglas Anderson return 0; 131596a37bfdSDouglas Anderson 1316d93d2847SDouglas Anderson return i2c_hid_core_resume(ihid); 13179ee3e066SJulian Sax } 13189ee3e066SJulian Sax 1319b33752c3SDouglas Anderson const struct dev_pm_ops i2c_hid_core_pm = { 1320d93d2847SDouglas Anderson SYSTEM_SLEEP_PM_OPS(i2c_hid_core_pm_suspend, i2c_hid_core_pm_resume) 13219ee3e066SJulian Sax }; 1322b33752c3SDouglas Anderson EXPORT_SYMBOL_GPL(i2c_hid_core_pm); 13239ee3e066SJulian Sax 13249ee3e066SJulian Sax MODULE_DESCRIPTION("HID over I2C core driver"); 13259ee3e066SJulian Sax MODULE_AUTHOR("Benjamin Tissoires <benjamin.tissoires@gmail.com>"); 13269ee3e066SJulian Sax MODULE_LICENSE("GPL"); 1327