2 * HID over I2C protocol implementation
5 * Copyright (c) 2012 Ecole Nationale de l'Aviation Civile, France
6 * Copyright (c) 2012 Red Hat, Inc
8 * This code is partly based on "USB HID support for Linux":
10 * Copyright (c) 1999 Andreas Gal
13 * Copyright (c) 2007-2008 Oliver Neukum
14 * Copyright (c) 2006-2010 Jiri Kosina
16 * This file is subject to the terms and conditions of the GNU General Public
17 * License. See the file COPYING in the main directory of this archive for
21 #include <linux/module.h>
22 #include <linux/i2c.h>
23 #include <linux/interrupt.h>
24 #include <linux/input.h>
25 #include <linux/delay.h>
26 #include <linux/slab.h>
28 #include <linux/device.h>
29 #include <linux/wait.h>
30 #include <linux/err.h>
31 #include <linux/string.h>
32 #include <linux/list.h>
33 #include <linux/jiffies.h>
34 #include <linux/kernel.h>
35 #include <linux/hid.h>
36 #include <linux/mutex.h>
37 #include <linux/acpi.h>
39 #include <linux/i2c/i2c-hid.h>
42 #define I2C_HID_STARTED (1 << 0)
43 #define I2C_HID_RESET_PENDING (1 << 1)
44 #define I2C_HID_READ_PENDING (1 << 2)
46 #define I2C_HID_PWR_ON 0x00
47 #define I2C_HID_PWR_SLEEP 0x01
51 module_param(debug, bool, 0444);
52 MODULE_PARM_DESC(debug, "print a lot of debug information");
54 #define i2c_hid_dbg(ihid, fmt, arg...) \
57 dev_printk(KERN_DEBUG, &(ihid)->client->dev, fmt, ##arg); \
61 __le16 wHIDDescLength;
63 __le16 wReportDescLength;
64 __le16 wReportDescRegister;
65 __le16 wInputRegister;
66 __le16 wMaxInputLength;
67 __le16 wOutputRegister;
68 __le16 wMaxOutputLength;
69 __le16 wCommandRegister;
78 unsigned int registerIndex;
93 #define I2C_HID_CMD(opcode_) \
94 .opcode = opcode_, .length = 4, \
95 .registerIndex = offsetof(struct i2c_hid_desc, wCommandRegister)
97 /* fetch HID descriptor */
98 static const struct i2c_hid_cmd hid_descr_cmd = { .length = 2 };
99 /* fetch report descriptors */
100 static const struct i2c_hid_cmd hid_report_descr_cmd = {
101 .registerIndex = offsetof(struct i2c_hid_desc,
102 wReportDescRegister),
106 static const struct i2c_hid_cmd hid_reset_cmd = { I2C_HID_CMD(0x01),
108 static const struct i2c_hid_cmd hid_get_report_cmd = { I2C_HID_CMD(0x02) };
109 static const struct i2c_hid_cmd hid_set_report_cmd = { I2C_HID_CMD(0x03) };
110 static const struct i2c_hid_cmd hid_set_power_cmd = { I2C_HID_CMD(0x08) };
111 static const struct i2c_hid_cmd hid_no_cmd = { .length = 0 };
114 * These definitions are not used here, but are defined by the spec.
115 * Keeping them here for documentation purposes.
117 * static const struct i2c_hid_cmd hid_get_idle_cmd = { I2C_HID_CMD(0x04) };
118 * static const struct i2c_hid_cmd hid_set_idle_cmd = { I2C_HID_CMD(0x05) };
119 * static const struct i2c_hid_cmd hid_get_protocol_cmd = { I2C_HID_CMD(0x06) };
120 * static const struct i2c_hid_cmd hid_set_protocol_cmd = { I2C_HID_CMD(0x07) };
123 static DEFINE_MUTEX(i2c_hid_open_mut);
125 /* The main device structure */
127 struct i2c_client *client; /* i2c client */
128 struct hid_device *hid; /* pointer to corresponding HID dev */
130 __u8 hdesc_buffer[sizeof(struct i2c_hid_desc)];
131 struct i2c_hid_desc hdesc; /* the HID Descriptor */
133 __le16 wHIDDescRegister; /* location of the i2c
134 * register of the HID
136 unsigned int bufsize; /* i2c buffer size */
137 char *inbuf; /* Input buffer */
138 char *cmdbuf; /* Command buffer */
139 char *argsbuf; /* Command arguments buffer */
141 unsigned long flags; /* device flags */
143 wait_queue_head_t wait; /* For waiting the interrupt */
145 struct i2c_hid_platform_data pdata;
148 static int __i2c_hid_command(struct i2c_client *client,
149 const struct i2c_hid_cmd *command, u8 reportID,
150 u8 reportType, u8 *args, int args_len,
151 unsigned char *buf_recv, int data_len)
153 struct i2c_hid *ihid = i2c_get_clientdata(client);
154 union command *cmd = (union command *)ihid->cmdbuf;
156 struct i2c_msg msg[2];
159 int length = command->length;
160 bool wait = command->wait;
161 unsigned int registerIndex = command->registerIndex;
163 /* special case for hid_descr_cmd */
164 if (command == &hid_descr_cmd) {
165 cmd->c.reg = ihid->wHIDDescRegister;
167 cmd->data[0] = ihid->hdesc_buffer[registerIndex];
168 cmd->data[1] = ihid->hdesc_buffer[registerIndex + 1];
172 cmd->c.opcode = command->opcode;
173 cmd->c.reportTypeID = reportID | reportType << 4;
176 memcpy(cmd->data + length, args, args_len);
179 i2c_hid_dbg(ihid, "%s: cmd=%*ph\n", __func__, length, cmd->data);
181 msg[0].addr = client->addr;
182 msg[0].flags = client->flags & I2C_M_TEN;
184 msg[0].buf = cmd->data;
186 msg[1].addr = client->addr;
187 msg[1].flags = client->flags & I2C_M_TEN;
188 msg[1].flags |= I2C_M_RD;
189 msg[1].len = data_len;
190 msg[1].buf = buf_recv;
192 set_bit(I2C_HID_READ_PENDING, &ihid->flags);
196 set_bit(I2C_HID_RESET_PENDING, &ihid->flags);
198 ret = i2c_transfer(client->adapter, msg, msg_num);
201 clear_bit(I2C_HID_READ_PENDING, &ihid->flags);
204 return ret < 0 ? ret : -EIO;
209 i2c_hid_dbg(ihid, "%s: waiting...\n", __func__);
210 if (!wait_event_timeout(ihid->wait,
211 !test_bit(I2C_HID_RESET_PENDING, &ihid->flags),
212 msecs_to_jiffies(5000)))
214 i2c_hid_dbg(ihid, "%s: finished.\n", __func__);
220 static int i2c_hid_command(struct i2c_client *client,
221 const struct i2c_hid_cmd *command,
222 unsigned char *buf_recv, int data_len)
224 return __i2c_hid_command(client, command, 0, 0, NULL, 0,
228 static int i2c_hid_get_report(struct i2c_client *client, u8 reportType,
229 u8 reportID, unsigned char *buf_recv, int data_len)
231 struct i2c_hid *ihid = i2c_get_clientdata(client);
235 u16 readRegister = le16_to_cpu(ihid->hdesc.wDataRegister);
237 i2c_hid_dbg(ihid, "%s\n", __func__);
239 if (reportID >= 0x0F) {
240 args[args_len++] = reportID;
244 args[args_len++] = readRegister & 0xFF;
245 args[args_len++] = readRegister >> 8;
247 ret = __i2c_hid_command(client, &hid_get_report_cmd, reportID,
248 reportType, args, args_len, buf_recv, data_len);
250 dev_err(&client->dev,
251 "failed to retrieve report from device.\n");
258 static int i2c_hid_set_report(struct i2c_client *client, u8 reportType,
259 u8 reportID, unsigned char *buf, size_t data_len)
261 struct i2c_hid *ihid = i2c_get_clientdata(client);
262 u8 *args = ihid->argsbuf;
263 const struct i2c_hid_cmd * hidcmd = &hid_set_report_cmd;
265 u16 dataRegister = le16_to_cpu(ihid->hdesc.wDataRegister);
266 u16 outputRegister = le16_to_cpu(ihid->hdesc.wOutputRegister);
267 u16 maxOutputLength = le16_to_cpu(ihid->hdesc.wMaxOutputLength);
269 /* hidraw already checked that data_len < HID_MAX_BUFFER_SIZE */
270 u16 size = 2 /* size */ +
271 (reportID ? 1 : 0) /* reportID */ +
273 int args_len = (reportID >= 0x0F ? 1 : 0) /* optional third byte */ +
274 2 /* dataRegister */ +
278 i2c_hid_dbg(ihid, "%s\n", __func__);
280 if (reportID >= 0x0F) {
281 args[index++] = reportID;
286 * use the data register for feature reports or if the device does not
287 * support the output register
289 if (reportType == 0x03 || maxOutputLength == 0) {
290 args[index++] = dataRegister & 0xFF;
291 args[index++] = dataRegister >> 8;
293 args[index++] = outputRegister & 0xFF;
294 args[index++] = outputRegister >> 8;
295 hidcmd = &hid_no_cmd;
298 args[index++] = size & 0xFF;
299 args[index++] = size >> 8;
302 args[index++] = reportID;
304 memcpy(&args[index], buf, data_len);
306 ret = __i2c_hid_command(client, hidcmd, reportID,
307 reportType, args, args_len, NULL, 0);
309 dev_err(&client->dev, "failed to set a report to device.\n");
316 static int i2c_hid_set_power(struct i2c_client *client, int power_state)
318 struct i2c_hid *ihid = i2c_get_clientdata(client);
321 i2c_hid_dbg(ihid, "%s\n", __func__);
323 ret = __i2c_hid_command(client, &hid_set_power_cmd, power_state,
324 0, NULL, 0, NULL, 0);
326 dev_err(&client->dev, "failed to change power setting.\n");
331 static int i2c_hid_hwreset(struct i2c_client *client)
333 struct i2c_hid *ihid = i2c_get_clientdata(client);
336 i2c_hid_dbg(ihid, "%s\n", __func__);
338 ret = i2c_hid_set_power(client, I2C_HID_PWR_ON);
342 i2c_hid_dbg(ihid, "resetting...\n");
344 ret = i2c_hid_command(client, &hid_reset_cmd, NULL, 0);
346 dev_err(&client->dev, "failed to reset device.\n");
347 i2c_hid_set_power(client, I2C_HID_PWR_SLEEP);
354 static void i2c_hid_get_input(struct i2c_hid *ihid)
357 int size = le16_to_cpu(ihid->hdesc.wMaxInputLength);
359 ret = i2c_master_recv(ihid->client, ihid->inbuf, size);
364 dev_err(&ihid->client->dev, "%s: got %d data instead of %d\n",
365 __func__, ret, size);
369 ret_size = ihid->inbuf[0] | ihid->inbuf[1] << 8;
372 /* host or device initiated RESET completed */
373 if (test_and_clear_bit(I2C_HID_RESET_PENDING, &ihid->flags))
374 wake_up(&ihid->wait);
378 if (ret_size > size) {
379 dev_err(&ihid->client->dev, "%s: incomplete report (%d/%d)\n",
380 __func__, size, ret_size);
384 i2c_hid_dbg(ihid, "input: %*ph\n", ret_size, ihid->inbuf);
386 if (test_bit(I2C_HID_STARTED, &ihid->flags))
387 hid_input_report(ihid->hid, HID_INPUT_REPORT, ihid->inbuf + 2,
393 static irqreturn_t i2c_hid_irq(int irq, void *dev_id)
395 struct i2c_hid *ihid = dev_id;
397 if (test_bit(I2C_HID_READ_PENDING, &ihid->flags))
400 i2c_hid_get_input(ihid);
405 static int i2c_hid_get_report_length(struct hid_report *report)
407 return ((report->size - 1) >> 3) + 1 +
408 report->device->report_enum[report->type].numbered + 2;
411 static void i2c_hid_init_report(struct hid_report *report, u8 *buffer,
414 struct hid_device *hid = report->device;
415 struct i2c_client *client = hid->driver_data;
416 struct i2c_hid *ihid = i2c_get_clientdata(client);
417 unsigned int size, ret_size;
419 size = i2c_hid_get_report_length(report);
420 if (i2c_hid_get_report(client,
421 report->type == HID_FEATURE_REPORT ? 0x03 : 0x01,
422 report->id, buffer, size))
425 i2c_hid_dbg(ihid, "report (len=%d): %*ph\n", size, size, ihid->inbuf);
427 ret_size = buffer[0] | (buffer[1] << 8);
429 if (ret_size != size) {
430 dev_err(&client->dev, "error in %s size:%d / ret_size:%d\n",
431 __func__, size, ret_size);
435 /* hid->driver_lock is held as we are in probe function,
436 * we just need to setup the input fields, so using
437 * hid_report_raw_event is safe. */
438 hid_report_raw_event(hid, report->type, buffer + 2, size - 2, 1);
442 * Initialize all reports
444 static void i2c_hid_init_reports(struct hid_device *hid)
446 struct hid_report *report;
447 struct i2c_client *client = hid->driver_data;
448 struct i2c_hid *ihid = i2c_get_clientdata(client);
449 u8 *inbuf = kzalloc(ihid->bufsize, GFP_KERNEL);
452 dev_err(&client->dev, "can not retrieve initial reports\n");
456 list_for_each_entry(report,
457 &hid->report_enum[HID_INPUT_REPORT].report_list, list)
458 i2c_hid_init_report(report, inbuf, ihid->bufsize);
460 list_for_each_entry(report,
461 &hid->report_enum[HID_FEATURE_REPORT].report_list, list)
462 i2c_hid_init_report(report, inbuf, ihid->bufsize);
468 * Traverse the supplied list of reports and find the longest
470 static void i2c_hid_find_max_report(struct hid_device *hid, unsigned int type,
473 struct hid_report *report;
476 /* We should not rely on wMaxInputLength, as some devices may set it to
478 list_for_each_entry(report, &hid->report_enum[type].report_list, list) {
479 size = i2c_hid_get_report_length(report);
485 static void i2c_hid_free_buffers(struct i2c_hid *ihid)
488 kfree(ihid->argsbuf);
492 ihid->argsbuf = NULL;
496 static int i2c_hid_alloc_buffers(struct i2c_hid *ihid, size_t report_size)
498 /* the worst case is computed from the set_report command with a
499 * reportID > 15 and the maximum report length */
500 int args_len = sizeof(__u8) + /* optional ReportID byte */
501 sizeof(__u16) + /* data register */
502 sizeof(__u16) + /* size of the report */
503 report_size; /* report */
505 ihid->inbuf = kzalloc(report_size, GFP_KERNEL);
506 ihid->argsbuf = kzalloc(args_len, GFP_KERNEL);
507 ihid->cmdbuf = kzalloc(sizeof(union command) + args_len, GFP_KERNEL);
509 if (!ihid->inbuf || !ihid->argsbuf || !ihid->cmdbuf) {
510 i2c_hid_free_buffers(ihid);
514 ihid->bufsize = report_size;
519 static int i2c_hid_get_raw_report(struct hid_device *hid,
520 unsigned char report_number, __u8 *buf, size_t count,
521 unsigned char report_type)
523 struct i2c_client *client = hid->driver_data;
524 struct i2c_hid *ihid = i2c_get_clientdata(client);
525 size_t ret_count, ask_count;
528 if (report_type == HID_OUTPUT_REPORT)
531 /* +2 bytes to include the size of the reply in the query buffer */
532 ask_count = min(count + 2, (size_t)ihid->bufsize);
534 ret = i2c_hid_get_report(client,
535 report_type == HID_FEATURE_REPORT ? 0x03 : 0x01,
536 report_number, ihid->inbuf, ask_count);
541 ret_count = ihid->inbuf[0] | (ihid->inbuf[1] << 8);
546 ret_count = min(ret_count, ask_count);
548 /* The query buffer contains the size, dropping it in the reply */
549 count = min(count, ret_count - 2);
550 memcpy(buf, ihid->inbuf + 2, count);
555 static int i2c_hid_output_raw_report(struct hid_device *hid, __u8 *buf,
556 size_t count, unsigned char report_type)
558 struct i2c_client *client = hid->driver_data;
559 int report_id = buf[0];
562 if (report_type == HID_INPUT_REPORT)
570 ret = i2c_hid_set_report(client,
571 report_type == HID_FEATURE_REPORT ? 0x03 : 0x02,
572 report_id, buf, count);
574 if (report_id && ret >= 0)
575 ret++; /* add report_id to the number of transfered bytes */
580 static void i2c_hid_request(struct hid_device *hid, struct hid_report *rep,
583 struct i2c_client *client = hid->driver_data;
586 int len = i2c_hid_get_report_length(rep) - 2;
588 buf = kzalloc(len, GFP_KERNEL);
593 case HID_REQ_GET_REPORT:
594 ret = i2c_hid_get_raw_report(hid, rep->id, buf, len, rep->type);
596 dev_err(&client->dev, "%s: unable to get report: %d\n",
599 hid_input_report(hid, rep->type, buf, ret, 0);
601 case HID_REQ_SET_REPORT:
602 hid_output_report(rep, buf);
603 i2c_hid_output_raw_report(hid, buf, len, rep->type);
610 static int i2c_hid_parse(struct hid_device *hid)
612 struct i2c_client *client = hid->driver_data;
613 struct i2c_hid *ihid = i2c_get_clientdata(client);
614 struct i2c_hid_desc *hdesc = &ihid->hdesc;
620 i2c_hid_dbg(ihid, "entering %s\n", __func__);
622 rsize = le16_to_cpu(hdesc->wReportDescLength);
623 if (!rsize || rsize > HID_MAX_DESCRIPTOR_SIZE) {
624 dbg_hid("weird size of report descriptor (%u)\n", rsize);
629 ret = i2c_hid_hwreset(client);
632 } while (tries-- > 0 && ret);
637 rdesc = kzalloc(rsize, GFP_KERNEL);
640 dbg_hid("couldn't allocate rdesc memory\n");
644 i2c_hid_dbg(ihid, "asking HID report descriptor\n");
646 ret = i2c_hid_command(client, &hid_report_descr_cmd, rdesc, rsize);
648 hid_err(hid, "reading report descriptor failed\n");
653 i2c_hid_dbg(ihid, "Report Descriptor: %*ph\n", rsize, rdesc);
655 ret = hid_parse_report(hid, rdesc, rsize);
658 dbg_hid("parsing report descriptor failed\n");
665 static int i2c_hid_start(struct hid_device *hid)
667 struct i2c_client *client = hid->driver_data;
668 struct i2c_hid *ihid = i2c_get_clientdata(client);
670 unsigned int bufsize = HID_MIN_BUFFER_SIZE;
672 i2c_hid_find_max_report(hid, HID_INPUT_REPORT, &bufsize);
673 i2c_hid_find_max_report(hid, HID_OUTPUT_REPORT, &bufsize);
674 i2c_hid_find_max_report(hid, HID_FEATURE_REPORT, &bufsize);
676 if (bufsize > ihid->bufsize) {
677 i2c_hid_free_buffers(ihid);
679 ret = i2c_hid_alloc_buffers(ihid, bufsize);
685 if (!(hid->quirks & HID_QUIRK_NO_INIT_REPORTS))
686 i2c_hid_init_reports(hid);
691 static void i2c_hid_stop(struct hid_device *hid)
693 struct i2c_client *client = hid->driver_data;
694 struct i2c_hid *ihid = i2c_get_clientdata(client);
698 i2c_hid_free_buffers(ihid);
701 static int i2c_hid_open(struct hid_device *hid)
703 struct i2c_client *client = hid->driver_data;
704 struct i2c_hid *ihid = i2c_get_clientdata(client);
707 mutex_lock(&i2c_hid_open_mut);
709 ret = i2c_hid_set_power(client, I2C_HID_PWR_ON);
714 set_bit(I2C_HID_STARTED, &ihid->flags);
717 mutex_unlock(&i2c_hid_open_mut);
721 static void i2c_hid_close(struct hid_device *hid)
723 struct i2c_client *client = hid->driver_data;
724 struct i2c_hid *ihid = i2c_get_clientdata(client);
726 /* protecting hid->open to make sure we don't restart
727 * data acquistion due to a resumption we no longer
730 mutex_lock(&i2c_hid_open_mut);
732 clear_bit(I2C_HID_STARTED, &ihid->flags);
734 /* Save some power */
735 i2c_hid_set_power(client, I2C_HID_PWR_SLEEP);
737 mutex_unlock(&i2c_hid_open_mut);
740 static int i2c_hid_power(struct hid_device *hid, int lvl)
742 struct i2c_client *client = hid->driver_data;
743 struct i2c_hid *ihid = i2c_get_clientdata(client);
746 i2c_hid_dbg(ihid, "%s lvl:%d\n", __func__, lvl);
750 ret = i2c_hid_set_power(client, I2C_HID_PWR_ON);
753 ret = i2c_hid_set_power(client, I2C_HID_PWR_SLEEP);
759 static int i2c_hid_hidinput_input_event(struct input_dev *dev,
760 unsigned int type, unsigned int code, int value)
762 struct hid_device *hid = input_get_drvdata(dev);
763 struct hid_field *field;
767 return input_ff_event(dev, type, code, value);
772 offset = hidinput_find_field(hid, type, code, &field);
775 hid_warn(dev, "event field not found\n");
779 return hid_set_field(field, offset, value);
782 static struct hid_ll_driver i2c_hid_ll_driver = {
783 .parse = i2c_hid_parse,
784 .start = i2c_hid_start,
785 .stop = i2c_hid_stop,
786 .open = i2c_hid_open,
787 .close = i2c_hid_close,
788 .power = i2c_hid_power,
789 .request = i2c_hid_request,
790 .hidinput_input_event = i2c_hid_hidinput_input_event,
793 static int i2c_hid_init_irq(struct i2c_client *client)
795 struct i2c_hid *ihid = i2c_get_clientdata(client);
798 dev_dbg(&client->dev, "Requesting IRQ: %d\n", client->irq);
800 ret = request_threaded_irq(client->irq, NULL, i2c_hid_irq,
801 IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
804 dev_warn(&client->dev,
805 "Could not register for %s interrupt, irq = %d,"
807 client->name, client->irq, ret);
815 static int i2c_hid_fetch_hid_descriptor(struct i2c_hid *ihid)
817 struct i2c_client *client = ihid->client;
818 struct i2c_hid_desc *hdesc = &ihid->hdesc;
822 /* Fetch the length of HID description, retrieve the 4 first bytes:
823 * bytes 0-1 -> length
824 * bytes 2-3 -> bcdVersion (has to be 1.00) */
825 ret = i2c_hid_command(client, &hid_descr_cmd, ihid->hdesc_buffer, 4);
827 i2c_hid_dbg(ihid, "%s, ihid->hdesc_buffer: %*ph\n",
828 __func__, 4, ihid->hdesc_buffer);
831 dev_err(&client->dev,
832 "unable to fetch the size of HID descriptor (ret=%d)\n",
837 dsize = le16_to_cpu(hdesc->wHIDDescLength);
839 * the size of the HID descriptor should at least contain
840 * its size and the bcdVersion (4 bytes), and should not be greater
841 * than sizeof(struct i2c_hid_desc) as we directly fill this struct
842 * through i2c_hid_command.
844 if (dsize < 4 || dsize > sizeof(struct i2c_hid_desc)) {
845 dev_err(&client->dev, "weird size of HID descriptor (%u)\n",
850 /* check bcdVersion == 1.0 */
851 if (le16_to_cpu(hdesc->bcdVersion) != 0x0100) {
852 dev_err(&client->dev,
853 "unexpected HID descriptor bcdVersion (0x%04hx)\n",
854 le16_to_cpu(hdesc->bcdVersion));
858 i2c_hid_dbg(ihid, "Fetching the HID descriptor\n");
860 ret = i2c_hid_command(client, &hid_descr_cmd, ihid->hdesc_buffer,
863 dev_err(&client->dev, "hid_descr_cmd Fail\n");
867 i2c_hid_dbg(ihid, "HID Descriptor: %*ph\n", dsize, ihid->hdesc_buffer);
873 static int i2c_hid_acpi_pdata(struct i2c_client *client,
874 struct i2c_hid_platform_data *pdata)
876 static u8 i2c_hid_guid[] = {
877 0xF7, 0xF6, 0xDF, 0x3C, 0x67, 0x42, 0x55, 0x45,
878 0xAD, 0x05, 0xB3, 0x0A, 0x3D, 0x89, 0x38, 0xDE,
880 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER, NULL };
881 union acpi_object params[4], *obj;
882 struct acpi_object_list input;
883 struct acpi_device *adev;
886 handle = ACPI_HANDLE(&client->dev);
887 if (!handle || acpi_bus_get_device(handle, &adev))
890 input.count = ARRAY_SIZE(params);
891 input.pointer = params;
893 params[0].type = ACPI_TYPE_BUFFER;
894 params[0].buffer.length = sizeof(i2c_hid_guid);
895 params[0].buffer.pointer = i2c_hid_guid;
896 params[1].type = ACPI_TYPE_INTEGER;
897 params[1].integer.value = 1;
898 params[2].type = ACPI_TYPE_INTEGER;
899 params[2].integer.value = 1; /* HID function */
900 params[3].type = ACPI_TYPE_INTEGER;
901 params[3].integer.value = 0;
903 if (ACPI_FAILURE(acpi_evaluate_object(handle, "_DSM", &input, &buf))) {
904 dev_err(&client->dev, "device _DSM execution failed\n");
908 obj = (union acpi_object *)buf.pointer;
909 if (obj->type != ACPI_TYPE_INTEGER) {
910 dev_err(&client->dev, "device _DSM returned invalid type: %d\n",
916 pdata->hid_descriptor_address = obj->integer.value;
922 static const struct acpi_device_id i2c_hid_acpi_match[] = {
927 MODULE_DEVICE_TABLE(acpi, i2c_hid_acpi_match);
929 static inline int i2c_hid_acpi_pdata(struct i2c_client *client,
930 struct i2c_hid_platform_data *pdata)
936 static int i2c_hid_probe(struct i2c_client *client,
937 const struct i2c_device_id *dev_id)
940 struct i2c_hid *ihid;
941 struct hid_device *hid;
943 struct i2c_hid_platform_data *platform_data = client->dev.platform_data;
945 dbg_hid("HID probe called for i2c 0x%02x\n", client->addr);
948 dev_err(&client->dev,
949 "HID over i2c has not been provided an Int IRQ\n");
953 ihid = kzalloc(sizeof(struct i2c_hid), GFP_KERNEL);
957 if (!platform_data) {
958 ret = i2c_hid_acpi_pdata(client, &ihid->pdata);
960 dev_err(&client->dev,
961 "HID register address not provided\n");
965 ihid->pdata = *platform_data;
968 i2c_set_clientdata(client, ihid);
970 ihid->client = client;
972 hidRegister = ihid->pdata.hid_descriptor_address;
973 ihid->wHIDDescRegister = cpu_to_le16(hidRegister);
975 init_waitqueue_head(&ihid->wait);
977 /* we need to allocate the command buffer without knowing the maximum
978 * size of the reports. Let's use HID_MIN_BUFFER_SIZE, then we do the
979 * real computation later. */
980 ret = i2c_hid_alloc_buffers(ihid, HID_MIN_BUFFER_SIZE);
984 ret = i2c_hid_fetch_hid_descriptor(ihid);
988 ret = i2c_hid_init_irq(client);
992 hid = hid_allocate_device();
1000 hid->driver_data = client;
1001 hid->ll_driver = &i2c_hid_ll_driver;
1002 hid->hid_get_raw_report = i2c_hid_get_raw_report;
1003 hid->hid_output_raw_report = i2c_hid_output_raw_report;
1004 hid->dev.parent = &client->dev;
1005 ACPI_HANDLE_SET(&hid->dev, ACPI_HANDLE(&client->dev));
1007 hid->version = le16_to_cpu(ihid->hdesc.bcdVersion);
1008 hid->vendor = le16_to_cpu(ihid->hdesc.wVendorID);
1009 hid->product = le16_to_cpu(ihid->hdesc.wProductID);
1011 snprintf(hid->name, sizeof(hid->name), "%s %04hX:%04hX",
1012 client->name, hid->vendor, hid->product);
1014 ret = hid_add_device(hid);
1017 hid_err(client, "can't add hid device: %d\n", ret);
1024 hid_destroy_device(hid);
1027 free_irq(client->irq, ihid);
1030 i2c_hid_free_buffers(ihid);
1035 static int i2c_hid_remove(struct i2c_client *client)
1037 struct i2c_hid *ihid = i2c_get_clientdata(client);
1038 struct hid_device *hid;
1041 hid_destroy_device(hid);
1043 free_irq(client->irq, ihid);
1046 i2c_hid_free_buffers(ihid);
1053 #ifdef CONFIG_PM_SLEEP
1054 static int i2c_hid_suspend(struct device *dev)
1056 struct i2c_client *client = to_i2c_client(dev);
1058 if (device_may_wakeup(&client->dev))
1059 enable_irq_wake(client->irq);
1061 /* Save some power */
1062 i2c_hid_set_power(client, I2C_HID_PWR_SLEEP);
1067 static int i2c_hid_resume(struct device *dev)
1070 struct i2c_client *client = to_i2c_client(dev);
1072 ret = i2c_hid_hwreset(client);
1076 if (device_may_wakeup(&client->dev))
1077 disable_irq_wake(client->irq);
1083 static SIMPLE_DEV_PM_OPS(i2c_hid_pm, i2c_hid_suspend, i2c_hid_resume);
1085 static const struct i2c_device_id i2c_hid_id_table[] = {
1089 MODULE_DEVICE_TABLE(i2c, i2c_hid_id_table);
1092 static struct i2c_driver i2c_hid_driver = {
1095 .owner = THIS_MODULE,
1097 .acpi_match_table = ACPI_PTR(i2c_hid_acpi_match),
1100 .probe = i2c_hid_probe,
1101 .remove = i2c_hid_remove,
1103 .id_table = i2c_hid_id_table,
1106 module_i2c_driver(i2c_hid_driver);
1108 MODULE_DESCRIPTION("HID over I2C core driver");
1110 MODULE_LICENSE("GPL");