Merge remote-tracking branches 'asoc/topic/cx20442' and 'asoc/topic/davinci' into...
[linux-2.6-block.git] / drivers / hid / i2c-hid / i2c-hid.c
CommitLineData
4a200c3b
BT
1/*
2 * HID over I2C protocol implementation
3 *
4 * Copyright (c) 2012 Benjamin Tissoires <benjamin.tissoires@gmail.com>
5 * Copyright (c) 2012 Ecole Nationale de l'Aviation Civile, France
6 * Copyright (c) 2012 Red Hat, Inc
7 *
8 * This code is partly based on "USB HID support for Linux":
9 *
10 * Copyright (c) 1999 Andreas Gal
11 * Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz>
12 * Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc
13 * Copyright (c) 2007-2008 Oliver Neukum
14 * Copyright (c) 2006-2010 Jiri Kosina
15 *
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
18 * more details.
19 */
20
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>
27#include <linux/pm.h>
34f439e4 28#include <linux/pm_runtime.h>
4a200c3b
BT
29#include <linux/device.h>
30#include <linux/wait.h>
31#include <linux/err.h>
32#include <linux/string.h>
33#include <linux/list.h>
34#include <linux/jiffies.h>
35#include <linux/kernel.h>
4a200c3b 36#include <linux/hid.h>
7a7d6d9c 37#include <linux/mutex.h>
92241e67 38#include <linux/acpi.h>
3d7d248c 39#include <linux/of.h>
4a200c3b
BT
40
41#include <linux/i2c/i2c-hid.h>
42
43/* flags */
44#define I2C_HID_STARTED (1 << 0)
45#define I2C_HID_RESET_PENDING (1 << 1)
46#define I2C_HID_READ_PENDING (1 << 2)
47
48#define I2C_HID_PWR_ON 0x00
49#define I2C_HID_PWR_SLEEP 0x01
50
51/* debug option */
ee8e8806 52static bool debug;
4a200c3b
BT
53module_param(debug, bool, 0444);
54MODULE_PARM_DESC(debug, "print a lot of debug information");
55
fa738644
BT
56#define i2c_hid_dbg(ihid, fmt, arg...) \
57do { \
58 if (debug) \
59 dev_printk(KERN_DEBUG, &(ihid)->client->dev, fmt, ##arg); \
60} while (0)
4a200c3b
BT
61
62struct i2c_hid_desc {
63 __le16 wHIDDescLength;
64 __le16 bcdVersion;
65 __le16 wReportDescLength;
66 __le16 wReportDescRegister;
67 __le16 wInputRegister;
68 __le16 wMaxInputLength;
69 __le16 wOutputRegister;
70 __le16 wMaxOutputLength;
71 __le16 wCommandRegister;
72 __le16 wDataRegister;
73 __le16 wVendorID;
74 __le16 wProductID;
75 __le16 wVersionID;
27174cff 76 __le32 reserved;
4a200c3b
BT
77} __packed;
78
79struct i2c_hid_cmd {
80 unsigned int registerIndex;
81 __u8 opcode;
82 unsigned int length;
83 bool wait;
84};
85
86union command {
87 u8 data[0];
88 struct cmd {
89 __le16 reg;
90 __u8 reportTypeID;
91 __u8 opcode;
92 } __packed c;
93};
94
95#define I2C_HID_CMD(opcode_) \
96 .opcode = opcode_, .length = 4, \
97 .registerIndex = offsetof(struct i2c_hid_desc, wCommandRegister)
98
99/* fetch HID descriptor */
100static const struct i2c_hid_cmd hid_descr_cmd = { .length = 2 };
101/* fetch report descriptors */
102static const struct i2c_hid_cmd hid_report_descr_cmd = {
103 .registerIndex = offsetof(struct i2c_hid_desc,
104 wReportDescRegister),
105 .opcode = 0x00,
106 .length = 2 };
107/* commands */
108static const struct i2c_hid_cmd hid_reset_cmd = { I2C_HID_CMD(0x01),
109 .wait = true };
110static const struct i2c_hid_cmd hid_get_report_cmd = { I2C_HID_CMD(0x02) };
111static const struct i2c_hid_cmd hid_set_report_cmd = { I2C_HID_CMD(0x03) };
4a200c3b 112static const struct i2c_hid_cmd hid_set_power_cmd = { I2C_HID_CMD(0x08) };
811adb96 113static const struct i2c_hid_cmd hid_no_cmd = { .length = 0 };
6bf6c8bf
BT
114
115/*
116 * These definitions are not used here, but are defined by the spec.
117 * Keeping them here for documentation purposes.
118 *
119 * static const struct i2c_hid_cmd hid_get_idle_cmd = { I2C_HID_CMD(0x04) };
120 * static const struct i2c_hid_cmd hid_set_idle_cmd = { I2C_HID_CMD(0x05) };
121 * static const struct i2c_hid_cmd hid_get_protocol_cmd = { I2C_HID_CMD(0x06) };
122 * static const struct i2c_hid_cmd hid_set_protocol_cmd = { I2C_HID_CMD(0x07) };
123 */
4a200c3b 124
7a7d6d9c
BT
125static DEFINE_MUTEX(i2c_hid_open_mut);
126
4a200c3b
BT
127/* The main device structure */
128struct i2c_hid {
129 struct i2c_client *client; /* i2c client */
130 struct hid_device *hid; /* pointer to corresponding HID dev */
131 union {
132 __u8 hdesc_buffer[sizeof(struct i2c_hid_desc)];
133 struct i2c_hid_desc hdesc; /* the HID Descriptor */
134 };
135 __le16 wHIDDescRegister; /* location of the i2c
136 * register of the HID
137 * descriptor. */
138 unsigned int bufsize; /* i2c buffer size */
139 char *inbuf; /* Input buffer */
6296f4a8 140 char *rawbuf; /* Raw Input buffer */
4a200c3b
BT
141 char *cmdbuf; /* Command buffer */
142 char *argsbuf; /* Command arguments buffer */
143
144 unsigned long flags; /* device flags */
145
4a200c3b 146 wait_queue_head_t wait; /* For waiting the interrupt */
92241e67
MW
147
148 struct i2c_hid_platform_data pdata;
4a200c3b
BT
149};
150
151static int __i2c_hid_command(struct i2c_client *client,
152 const struct i2c_hid_cmd *command, u8 reportID,
153 u8 reportType, u8 *args, int args_len,
154 unsigned char *buf_recv, int data_len)
155{
156 struct i2c_hid *ihid = i2c_get_clientdata(client);
157 union command *cmd = (union command *)ihid->cmdbuf;
158 int ret;
159 struct i2c_msg msg[2];
160 int msg_num = 1;
161
162 int length = command->length;
163 bool wait = command->wait;
164 unsigned int registerIndex = command->registerIndex;
165
166 /* special case for hid_descr_cmd */
167 if (command == &hid_descr_cmd) {
168 cmd->c.reg = ihid->wHIDDescRegister;
169 } else {
170 cmd->data[0] = ihid->hdesc_buffer[registerIndex];
171 cmd->data[1] = ihid->hdesc_buffer[registerIndex + 1];
172 }
173
174 if (length > 2) {
175 cmd->c.opcode = command->opcode;
176 cmd->c.reportTypeID = reportID | reportType << 4;
177 }
178
179 memcpy(cmd->data + length, args, args_len);
180 length += args_len;
181
182 i2c_hid_dbg(ihid, "%s: cmd=%*ph\n", __func__, length, cmd->data);
183
184 msg[0].addr = client->addr;
185 msg[0].flags = client->flags & I2C_M_TEN;
186 msg[0].len = length;
187 msg[0].buf = cmd->data;
188 if (data_len > 0) {
189 msg[1].addr = client->addr;
190 msg[1].flags = client->flags & I2C_M_TEN;
191 msg[1].flags |= I2C_M_RD;
192 msg[1].len = data_len;
193 msg[1].buf = buf_recv;
194 msg_num = 2;
195 set_bit(I2C_HID_READ_PENDING, &ihid->flags);
196 }
197
198 if (wait)
199 set_bit(I2C_HID_RESET_PENDING, &ihid->flags);
200
201 ret = i2c_transfer(client->adapter, msg, msg_num);
202
203 if (data_len > 0)
204 clear_bit(I2C_HID_READ_PENDING, &ihid->flags);
205
206 if (ret != msg_num)
207 return ret < 0 ? ret : -EIO;
208
209 ret = 0;
210
211 if (wait) {
212 i2c_hid_dbg(ihid, "%s: waiting...\n", __func__);
213 if (!wait_event_timeout(ihid->wait,
214 !test_bit(I2C_HID_RESET_PENDING, &ihid->flags),
215 msecs_to_jiffies(5000)))
216 ret = -ENODATA;
217 i2c_hid_dbg(ihid, "%s: finished.\n", __func__);
218 }
219
220 return ret;
221}
222
223static int i2c_hid_command(struct i2c_client *client,
224 const struct i2c_hid_cmd *command,
225 unsigned char *buf_recv, int data_len)
226{
227 return __i2c_hid_command(client, command, 0, 0, NULL, 0,
228 buf_recv, data_len);
229}
230
231static int i2c_hid_get_report(struct i2c_client *client, u8 reportType,
232 u8 reportID, unsigned char *buf_recv, int data_len)
233{
234 struct i2c_hid *ihid = i2c_get_clientdata(client);
235 u8 args[3];
236 int ret;
237 int args_len = 0;
238 u16 readRegister = le16_to_cpu(ihid->hdesc.wDataRegister);
239
240 i2c_hid_dbg(ihid, "%s\n", __func__);
241
242 if (reportID >= 0x0F) {
243 args[args_len++] = reportID;
244 reportID = 0x0F;
245 }
246
247 args[args_len++] = readRegister & 0xFF;
248 args[args_len++] = readRegister >> 8;
249
250 ret = __i2c_hid_command(client, &hid_get_report_cmd, reportID,
251 reportType, args, args_len, buf_recv, data_len);
252 if (ret) {
253 dev_err(&client->dev,
254 "failed to retrieve report from device.\n");
317b204a 255 return ret;
4a200c3b
BT
256 }
257
258 return 0;
259}
260
9b5a9ae8
BT
261/**
262 * i2c_hid_set_or_send_report: forward an incoming report to the device
263 * @client: the i2c_client of the device
264 * @reportType: 0x03 for HID_FEATURE_REPORT ; 0x02 for HID_OUTPUT_REPORT
265 * @reportID: the report ID
266 * @buf: the actual data to transfer, without the report ID
267 * @len: size of buf
268 * @use_data: true: use SET_REPORT HID command, false: send plain OUTPUT report
269 */
270static int i2c_hid_set_or_send_report(struct i2c_client *client, u8 reportType,
271 u8 reportID, unsigned char *buf, size_t data_len, bool use_data)
4a200c3b
BT
272{
273 struct i2c_hid *ihid = i2c_get_clientdata(client);
274 u8 *args = ihid->argsbuf;
9b5a9ae8 275 const struct i2c_hid_cmd *hidcmd;
4a200c3b
BT
276 int ret;
277 u16 dataRegister = le16_to_cpu(ihid->hdesc.wDataRegister);
811adb96
AD
278 u16 outputRegister = le16_to_cpu(ihid->hdesc.wOutputRegister);
279 u16 maxOutputLength = le16_to_cpu(ihid->hdesc.wMaxOutputLength);
4a200c3b 280
53182517 281 /* hid_hw_* already checked that data_len < HID_MAX_BUFFER_SIZE */
4a200c3b
BT
282 u16 size = 2 /* size */ +
283 (reportID ? 1 : 0) /* reportID */ +
284 data_len /* buf */;
285 int args_len = (reportID >= 0x0F ? 1 : 0) /* optional third byte */ +
286 2 /* dataRegister */ +
287 size /* args */;
288 int index = 0;
289
290 i2c_hid_dbg(ihid, "%s\n", __func__);
291
9b5a9ae8
BT
292 if (!use_data && maxOutputLength == 0)
293 return -ENOSYS;
294
4a200c3b
BT
295 if (reportID >= 0x0F) {
296 args[index++] = reportID;
297 reportID = 0x0F;
298 }
299
811adb96
AD
300 /*
301 * use the data register for feature reports or if the device does not
302 * support the output register
303 */
9b5a9ae8 304 if (use_data) {
811adb96
AD
305 args[index++] = dataRegister & 0xFF;
306 args[index++] = dataRegister >> 8;
9b5a9ae8 307 hidcmd = &hid_set_report_cmd;
811adb96
AD
308 } else {
309 args[index++] = outputRegister & 0xFF;
310 args[index++] = outputRegister >> 8;
311 hidcmd = &hid_no_cmd;
312 }
4a200c3b
BT
313
314 args[index++] = size & 0xFF;
315 args[index++] = size >> 8;
316
317 if (reportID)
318 args[index++] = reportID;
319
320 memcpy(&args[index], buf, data_len);
321
811adb96 322 ret = __i2c_hid_command(client, hidcmd, reportID,
4a200c3b
BT
323 reportType, args, args_len, NULL, 0);
324 if (ret) {
325 dev_err(&client->dev, "failed to set a report to device.\n");
317b204a 326 return ret;
4a200c3b
BT
327 }
328
329 return data_len;
330}
331
332static int i2c_hid_set_power(struct i2c_client *client, int power_state)
333{
334 struct i2c_hid *ihid = i2c_get_clientdata(client);
335 int ret;
336
337 i2c_hid_dbg(ihid, "%s\n", __func__);
338
339 ret = __i2c_hid_command(client, &hid_set_power_cmd, power_state,
340 0, NULL, 0, NULL, 0);
341 if (ret)
342 dev_err(&client->dev, "failed to change power setting.\n");
343
344 return ret;
345}
346
347static int i2c_hid_hwreset(struct i2c_client *client)
348{
349 struct i2c_hid *ihid = i2c_get_clientdata(client);
350 int ret;
351
352 i2c_hid_dbg(ihid, "%s\n", __func__);
353
354 ret = i2c_hid_set_power(client, I2C_HID_PWR_ON);
355 if (ret)
356 return ret;
357
358 i2c_hid_dbg(ihid, "resetting...\n");
359
360 ret = i2c_hid_command(client, &hid_reset_cmd, NULL, 0);
361 if (ret) {
362 dev_err(&client->dev, "failed to reset device.\n");
363 i2c_hid_set_power(client, I2C_HID_PWR_SLEEP);
364 return ret;
365 }
366
367 return 0;
368}
369
317b204a 370static void i2c_hid_get_input(struct i2c_hid *ihid)
4a200c3b
BT
371{
372 int ret, ret_size;
6d00f37e
SF
373 int size = le16_to_cpu(ihid->hdesc.wMaxInputLength);
374
375 if (size > ihid->bufsize)
376 size = ihid->bufsize;
4a200c3b
BT
377
378 ret = i2c_master_recv(ihid->client, ihid->inbuf, size);
379 if (ret != size) {
380 if (ret < 0)
317b204a 381 return;
4a200c3b
BT
382
383 dev_err(&ihid->client->dev, "%s: got %d data instead of %d\n",
384 __func__, ret, size);
317b204a 385 return;
4a200c3b
BT
386 }
387
388 ret_size = ihid->inbuf[0] | ihid->inbuf[1] << 8;
389
390 if (!ret_size) {
391 /* host or device initiated RESET completed */
392 if (test_and_clear_bit(I2C_HID_RESET_PENDING, &ihid->flags))
393 wake_up(&ihid->wait);
317b204a 394 return;
4a200c3b
BT
395 }
396
397 if (ret_size > size) {
398 dev_err(&ihid->client->dev, "%s: incomplete report (%d/%d)\n",
399 __func__, size, ret_size);
317b204a 400 return;
4a200c3b
BT
401 }
402
403 i2c_hid_dbg(ihid, "input: %*ph\n", ret_size, ihid->inbuf);
404
405 if (test_bit(I2C_HID_STARTED, &ihid->flags))
406 hid_input_report(ihid->hid, HID_INPUT_REPORT, ihid->inbuf + 2,
407 ret_size - 2, 1);
408
317b204a 409 return;
4a200c3b
BT
410}
411
412static irqreturn_t i2c_hid_irq(int irq, void *dev_id)
413{
414 struct i2c_hid *ihid = dev_id;
415
416 if (test_bit(I2C_HID_READ_PENDING, &ihid->flags))
417 return IRQ_HANDLED;
418
419 i2c_hid_get_input(ihid);
420
421 return IRQ_HANDLED;
422}
423
424static int i2c_hid_get_report_length(struct hid_report *report)
425{
426 return ((report->size - 1) >> 3) + 1 +
427 report->device->report_enum[report->type].numbered + 2;
428}
429
430static void i2c_hid_init_report(struct hid_report *report, u8 *buffer,
431 size_t bufsize)
432{
433 struct hid_device *hid = report->device;
434 struct i2c_client *client = hid->driver_data;
435 struct i2c_hid *ihid = i2c_get_clientdata(client);
436 unsigned int size, ret_size;
437
438 size = i2c_hid_get_report_length(report);
c737bcf9 439 if (i2c_hid_get_report(client,
4a200c3b 440 report->type == HID_FEATURE_REPORT ? 0x03 : 0x01,
c737bcf9
BT
441 report->id, buffer, size))
442 return;
4a200c3b 443
08bb7bea 444 i2c_hid_dbg(ihid, "report (len=%d): %*ph\n", size, size, buffer);
4a200c3b
BT
445
446 ret_size = buffer[0] | (buffer[1] << 8);
447
448 if (ret_size != size) {
449 dev_err(&client->dev, "error in %s size:%d / ret_size:%d\n",
450 __func__, size, ret_size);
451 return;
452 }
453
454 /* hid->driver_lock is held as we are in probe function,
455 * we just need to setup the input fields, so using
456 * hid_report_raw_event is safe. */
457 hid_report_raw_event(hid, report->type, buffer + 2, size - 2, 1);
458}
459
460/*
461 * Initialize all reports
462 */
463static void i2c_hid_init_reports(struct hid_device *hid)
464{
465 struct hid_report *report;
466 struct i2c_client *client = hid->driver_data;
467 struct i2c_hid *ihid = i2c_get_clientdata(client);
468 u8 *inbuf = kzalloc(ihid->bufsize, GFP_KERNEL);
469
317b204a
BT
470 if (!inbuf) {
471 dev_err(&client->dev, "can not retrieve initial reports\n");
4a200c3b 472 return;
317b204a 473 }
4a200c3b 474
34f439e4
MW
475 /*
476 * The device must be powered on while we fetch initial reports
477 * from it.
478 */
479 pm_runtime_get_sync(&client->dev);
480
4a200c3b
BT
481 list_for_each_entry(report,
482 &hid->report_enum[HID_FEATURE_REPORT].report_list, list)
483 i2c_hid_init_report(report, inbuf, ihid->bufsize);
484
34f439e4
MW
485 pm_runtime_put(&client->dev);
486
4a200c3b
BT
487 kfree(inbuf);
488}
489
490/*
491 * Traverse the supplied list of reports and find the longest
492 */
493static void i2c_hid_find_max_report(struct hid_device *hid, unsigned int type,
494 unsigned int *max)
495{
496 struct hid_report *report;
497 unsigned int size;
498
499 /* We should not rely on wMaxInputLength, as some devices may set it to
500 * a wrong length. */
501 list_for_each_entry(report, &hid->report_enum[type].report_list, list) {
502 size = i2c_hid_get_report_length(report);
503 if (*max < size)
504 *max = size;
505 }
506}
507
29b45787
BT
508static void i2c_hid_free_buffers(struct i2c_hid *ihid)
509{
510 kfree(ihid->inbuf);
6296f4a8 511 kfree(ihid->rawbuf);
29b45787
BT
512 kfree(ihid->argsbuf);
513 kfree(ihid->cmdbuf);
514 ihid->inbuf = NULL;
6296f4a8 515 ihid->rawbuf = NULL;
29b45787
BT
516 ihid->cmdbuf = NULL;
517 ihid->argsbuf = NULL;
518 ihid->bufsize = 0;
519}
520
521static int i2c_hid_alloc_buffers(struct i2c_hid *ihid, size_t report_size)
4a200c3b
BT
522{
523 /* the worst case is computed from the set_report command with a
524 * reportID > 15 and the maximum report length */
525 int args_len = sizeof(__u8) + /* optional ReportID byte */
526 sizeof(__u16) + /* data register */
527 sizeof(__u16) + /* size of the report */
29b45787 528 report_size; /* report */
4a200c3b 529
29b45787 530 ihid->inbuf = kzalloc(report_size, GFP_KERNEL);
6296f4a8 531 ihid->rawbuf = kzalloc(report_size, GFP_KERNEL);
4a200c3b 532 ihid->argsbuf = kzalloc(args_len, GFP_KERNEL);
4a200c3b
BT
533 ihid->cmdbuf = kzalloc(sizeof(union command) + args_len, GFP_KERNEL);
534
6296f4a8 535 if (!ihid->inbuf || !ihid->rawbuf || !ihid->argsbuf || !ihid->cmdbuf) {
29b45787 536 i2c_hid_free_buffers(ihid);
4a200c3b
BT
537 return -ENOMEM;
538 }
539
29b45787 540 ihid->bufsize = report_size;
4a200c3b 541
29b45787 542 return 0;
4a200c3b
BT
543}
544
545static int i2c_hid_get_raw_report(struct hid_device *hid,
546 unsigned char report_number, __u8 *buf, size_t count,
547 unsigned char report_type)
548{
549 struct i2c_client *client = hid->driver_data;
550 struct i2c_hid *ihid = i2c_get_clientdata(client);
e5b50fe7 551 size_t ret_count, ask_count;
4a200c3b
BT
552 int ret;
553
554 if (report_type == HID_OUTPUT_REPORT)
555 return -EINVAL;
556
e5b50fe7
BT
557 /* +2 bytes to include the size of the reply in the query buffer */
558 ask_count = min(count + 2, (size_t)ihid->bufsize);
4a200c3b
BT
559
560 ret = i2c_hid_get_report(client,
561 report_type == HID_FEATURE_REPORT ? 0x03 : 0x01,
6296f4a8 562 report_number, ihid->rawbuf, ask_count);
4a200c3b
BT
563
564 if (ret < 0)
565 return ret;
566
6296f4a8 567 ret_count = ihid->rawbuf[0] | (ihid->rawbuf[1] << 8);
4a200c3b 568
9afd09a1 569 if (ret_count <= 2)
e5b50fe7
BT
570 return 0;
571
572 ret_count = min(ret_count, ask_count);
573
574 /* The query buffer contains the size, dropping it in the reply */
575 count = min(count, ret_count - 2);
6296f4a8 576 memcpy(buf, ihid->rawbuf + 2, count);
4a200c3b
BT
577
578 return count;
579}
580
581static int i2c_hid_output_raw_report(struct hid_device *hid, __u8 *buf,
9b5a9ae8 582 size_t count, unsigned char report_type, bool use_data)
4a200c3b
BT
583{
584 struct i2c_client *client = hid->driver_data;
585 int report_id = buf[0];
c284979a 586 int ret;
4a200c3b
BT
587
588 if (report_type == HID_INPUT_REPORT)
589 return -EINVAL;
590
c284979a
BT
591 if (report_id) {
592 buf++;
593 count--;
594 }
595
9b5a9ae8 596 ret = i2c_hid_set_or_send_report(client,
4a200c3b 597 report_type == HID_FEATURE_REPORT ? 0x03 : 0x02,
9b5a9ae8 598 report_id, buf, count, use_data);
c284979a
BT
599
600 if (report_id && ret >= 0)
601 ret++; /* add report_id to the number of transfered bytes */
602
603 return ret;
4a200c3b
BT
604}
605
9b5a9ae8
BT
606static int i2c_hid_output_report(struct hid_device *hid, __u8 *buf,
607 size_t count)
545bef68 608{
9b5a9ae8
BT
609 return i2c_hid_output_raw_report(hid, buf, count, HID_OUTPUT_REPORT,
610 false);
611}
545bef68 612
9b5a9ae8
BT
613static int i2c_hid_raw_request(struct hid_device *hid, unsigned char reportnum,
614 __u8 *buf, size_t len, unsigned char rtype,
615 int reqtype)
616{
545bef68
BT
617 switch (reqtype) {
618 case HID_REQ_GET_REPORT:
9b5a9ae8 619 return i2c_hid_get_raw_report(hid, reportnum, buf, len, rtype);
545bef68 620 case HID_REQ_SET_REPORT:
9b5a9ae8
BT
621 if (buf[0] != reportnum)
622 return -EINVAL;
623 return i2c_hid_output_raw_report(hid, buf, len, rtype, true);
624 default:
625 return -EIO;
545bef68 626 }
545bef68
BT
627}
628
4a200c3b
BT
629static int i2c_hid_parse(struct hid_device *hid)
630{
631 struct i2c_client *client = hid->driver_data;
632 struct i2c_hid *ihid = i2c_get_clientdata(client);
633 struct i2c_hid_desc *hdesc = &ihid->hdesc;
634 unsigned int rsize;
635 char *rdesc;
636 int ret;
637 int tries = 3;
638
639 i2c_hid_dbg(ihid, "entering %s\n", __func__);
640
641 rsize = le16_to_cpu(hdesc->wReportDescLength);
642 if (!rsize || rsize > HID_MAX_DESCRIPTOR_SIZE) {
643 dbg_hid("weird size of report descriptor (%u)\n", rsize);
644 return -EINVAL;
645 }
646
647 do {
648 ret = i2c_hid_hwreset(client);
649 if (ret)
650 msleep(1000);
651 } while (tries-- > 0 && ret);
652
653 if (ret)
654 return ret;
655
656 rdesc = kzalloc(rsize, GFP_KERNEL);
657
658 if (!rdesc) {
659 dbg_hid("couldn't allocate rdesc memory\n");
660 return -ENOMEM;
661 }
662
663 i2c_hid_dbg(ihid, "asking HID report descriptor\n");
664
665 ret = i2c_hid_command(client, &hid_report_descr_cmd, rdesc, rsize);
666 if (ret) {
667 hid_err(hid, "reading report descriptor failed\n");
668 kfree(rdesc);
669 return -EIO;
670 }
671
672 i2c_hid_dbg(ihid, "Report Descriptor: %*ph\n", rsize, rdesc);
673
674 ret = hid_parse_report(hid, rdesc, rsize);
675 kfree(rdesc);
676 if (ret) {
677 dbg_hid("parsing report descriptor failed\n");
678 return ret;
679 }
680
681 return 0;
682}
683
684static int i2c_hid_start(struct hid_device *hid)
685{
686 struct i2c_client *client = hid->driver_data;
687 struct i2c_hid *ihid = i2c_get_clientdata(client);
688 int ret;
29b45787 689 unsigned int bufsize = HID_MIN_BUFFER_SIZE;
4a200c3b 690
29b45787
BT
691 i2c_hid_find_max_report(hid, HID_INPUT_REPORT, &bufsize);
692 i2c_hid_find_max_report(hid, HID_OUTPUT_REPORT, &bufsize);
693 i2c_hid_find_max_report(hid, HID_FEATURE_REPORT, &bufsize);
4a200c3b 694
29b45787 695 if (bufsize > ihid->bufsize) {
4a200c3b
BT
696 i2c_hid_free_buffers(ihid);
697
29b45787 698 ret = i2c_hid_alloc_buffers(ihid, bufsize);
4a200c3b 699
29b45787 700 if (ret)
4a200c3b 701 return ret;
4a200c3b
BT
702 }
703
704 if (!(hid->quirks & HID_QUIRK_NO_INIT_REPORTS))
705 i2c_hid_init_reports(hid);
706
707 return 0;
708}
709
710static void i2c_hid_stop(struct hid_device *hid)
711{
4a200c3b 712 hid->claimed = 0;
4a200c3b
BT
713}
714
715static int i2c_hid_open(struct hid_device *hid)
716{
717 struct i2c_client *client = hid->driver_data;
718 struct i2c_hid *ihid = i2c_get_clientdata(client);
7a7d6d9c 719 int ret = 0;
4a200c3b 720
7a7d6d9c 721 mutex_lock(&i2c_hid_open_mut);
4a200c3b 722 if (!hid->open++) {
34f439e4
MW
723 ret = pm_runtime_get_sync(&client->dev);
724 if (ret < 0) {
4a200c3b 725 hid->open--;
7a7d6d9c 726 goto done;
4a200c3b
BT
727 }
728 set_bit(I2C_HID_STARTED, &ihid->flags);
729 }
7a7d6d9c
BT
730done:
731 mutex_unlock(&i2c_hid_open_mut);
34f439e4 732 return ret < 0 ? ret : 0;
4a200c3b
BT
733}
734
735static void i2c_hid_close(struct hid_device *hid)
736{
737 struct i2c_client *client = hid->driver_data;
738 struct i2c_hid *ihid = i2c_get_clientdata(client);
739
740 /* protecting hid->open to make sure we don't restart
741 * data acquistion due to a resumption we no longer
742 * care about
743 */
7a7d6d9c 744 mutex_lock(&i2c_hid_open_mut);
4a200c3b
BT
745 if (!--hid->open) {
746 clear_bit(I2C_HID_STARTED, &ihid->flags);
747
748 /* Save some power */
34f439e4 749 pm_runtime_put(&client->dev);
4a200c3b 750 }
7a7d6d9c 751 mutex_unlock(&i2c_hid_open_mut);
4a200c3b
BT
752}
753
754static int i2c_hid_power(struct hid_device *hid, int lvl)
755{
756 struct i2c_client *client = hid->driver_data;
757 struct i2c_hid *ihid = i2c_get_clientdata(client);
4a200c3b
BT
758
759 i2c_hid_dbg(ihid, "%s lvl:%d\n", __func__, lvl);
760
761 switch (lvl) {
762 case PM_HINT_FULLON:
34f439e4 763 pm_runtime_get_sync(&client->dev);
4a200c3b
BT
764 break;
765 case PM_HINT_NORMAL:
34f439e4 766 pm_runtime_put(&client->dev);
4a200c3b
BT
767 break;
768 }
34f439e4 769 return 0;
4a200c3b
BT
770}
771
4a200c3b
BT
772static struct hid_ll_driver i2c_hid_ll_driver = {
773 .parse = i2c_hid_parse,
774 .start = i2c_hid_start,
775 .stop = i2c_hid_stop,
776 .open = i2c_hid_open,
777 .close = i2c_hid_close,
778 .power = i2c_hid_power,
9b5a9ae8
BT
779 .output_report = i2c_hid_output_report,
780 .raw_request = i2c_hid_raw_request,
4a200c3b
BT
781};
782
0fe763c5 783static int i2c_hid_init_irq(struct i2c_client *client)
4a200c3b
BT
784{
785 struct i2c_hid *ihid = i2c_get_clientdata(client);
786 int ret;
787
788 dev_dbg(&client->dev, "Requesting IRQ: %d\n", client->irq);
789
790 ret = request_threaded_irq(client->irq, NULL, i2c_hid_irq,
f2de746c 791 IRQF_TRIGGER_LOW | IRQF_ONESHOT,
4a200c3b
BT
792 client->name, ihid);
793 if (ret < 0) {
9972dcc2 794 dev_warn(&client->dev,
4a200c3b
BT
795 "Could not register for %s interrupt, irq = %d,"
796 " ret = %d\n",
9972dcc2 797 client->name, client->irq, ret);
4a200c3b
BT
798
799 return ret;
800 }
801
4a200c3b
BT
802 return 0;
803}
804
0fe763c5 805static int i2c_hid_fetch_hid_descriptor(struct i2c_hid *ihid)
4a200c3b
BT
806{
807 struct i2c_client *client = ihid->client;
808 struct i2c_hid_desc *hdesc = &ihid->hdesc;
809 unsigned int dsize;
810 int ret;
811
f58b8487
AP
812 /* i2c hid fetch using a fixed descriptor size (30 bytes) */
813 i2c_hid_dbg(ihid, "Fetching the HID descriptor\n");
814 ret = i2c_hid_command(client, &hid_descr_cmd, ihid->hdesc_buffer,
815 sizeof(struct i2c_hid_desc));
4a200c3b 816 if (ret) {
f58b8487 817 dev_err(&client->dev, "hid_descr_cmd failed\n");
4a200c3b
BT
818 return -ENODEV;
819 }
820
f58b8487
AP
821 /* Validate the length of HID descriptor, the 4 first bytes:
822 * bytes 0-1 -> length
823 * bytes 2-3 -> bcdVersion (has to be 1.00) */
4a200c3b
BT
824 /* check bcdVersion == 1.0 */
825 if (le16_to_cpu(hdesc->bcdVersion) != 0x0100) {
826 dev_err(&client->dev,
9972dcc2 827 "unexpected HID descriptor bcdVersion (0x%04hx)\n",
4a200c3b
BT
828 le16_to_cpu(hdesc->bcdVersion));
829 return -ENODEV;
830 }
831
f58b8487
AP
832 /* Descriptor length should be 30 bytes as per the specification */
833 dsize = le16_to_cpu(hdesc->wHIDDescLength);
834 if (dsize != sizeof(struct i2c_hid_desc)) {
835 dev_err(&client->dev, "weird size of HID descriptor (%u)\n",
836 dsize);
4a200c3b
BT
837 return -ENODEV;
838 }
4a200c3b 839 i2c_hid_dbg(ihid, "HID Descriptor: %*ph\n", dsize, ihid->hdesc_buffer);
4a200c3b
BT
840 return 0;
841}
842
92241e67
MW
843#ifdef CONFIG_ACPI
844static int i2c_hid_acpi_pdata(struct i2c_client *client,
845 struct i2c_hid_platform_data *pdata)
846{
847 static u8 i2c_hid_guid[] = {
848 0xF7, 0xF6, 0xDF, 0x3C, 0x67, 0x42, 0x55, 0x45,
849 0xAD, 0x05, 0xB3, 0x0A, 0x3D, 0x89, 0x38, 0xDE,
850 };
ea547d7d 851 union acpi_object *obj;
92241e67
MW
852 struct acpi_device *adev;
853 acpi_handle handle;
854
855 handle = ACPI_HANDLE(&client->dev);
856 if (!handle || acpi_bus_get_device(handle, &adev))
857 return -ENODEV;
858
ea547d7d
JL
859 obj = acpi_evaluate_dsm_typed(handle, i2c_hid_guid, 1, 1, NULL,
860 ACPI_TYPE_INTEGER);
861 if (!obj) {
92241e67
MW
862 dev_err(&client->dev, "device _DSM execution failed\n");
863 return -ENODEV;
864 }
865
ea547d7d
JL
866 pdata->hid_descriptor_address = obj->integer.value;
867 ACPI_FREE(obj);
92241e67 868
92241e67
MW
869 return 0;
870}
871
872static const struct acpi_device_id i2c_hid_acpi_match[] = {
873 {"ACPI0C50", 0 },
874 {"PNP0C50", 0 },
875 { },
876};
877MODULE_DEVICE_TABLE(acpi, i2c_hid_acpi_match);
878#else
879static inline int i2c_hid_acpi_pdata(struct i2c_client *client,
880 struct i2c_hid_platform_data *pdata)
881{
882 return -ENODEV;
883}
884#endif
885
3d7d248c
BT
886#ifdef CONFIG_OF
887static int i2c_hid_of_probe(struct i2c_client *client,
888 struct i2c_hid_platform_data *pdata)
889{
890 struct device *dev = &client->dev;
891 u32 val;
892 int ret;
893
894 ret = of_property_read_u32(dev->of_node, "hid-descr-addr", &val);
895 if (ret) {
896 dev_err(&client->dev, "HID register address not provided\n");
897 return -ENODEV;
898 }
899 if (val >> 16) {
900 dev_err(&client->dev, "Bad HID register address: 0x%08x\n",
901 val);
902 return -EINVAL;
903 }
904 pdata->hid_descriptor_address = val;
905
906 return 0;
907}
908
909static const struct of_device_id i2c_hid_of_match[] = {
910 { .compatible = "hid-over-i2c" },
911 {},
912};
913MODULE_DEVICE_TABLE(of, i2c_hid_of_match);
914#else
915static inline int i2c_hid_of_probe(struct i2c_client *client,
916 struct i2c_hid_platform_data *pdata)
917{
918 return -ENODEV;
919}
920#endif
921
0fe763c5
GKH
922static int i2c_hid_probe(struct i2c_client *client,
923 const struct i2c_device_id *dev_id)
4a200c3b
BT
924{
925 int ret;
926 struct i2c_hid *ihid;
927 struct hid_device *hid;
928 __u16 hidRegister;
929 struct i2c_hid_platform_data *platform_data = client->dev.platform_data;
930
931 dbg_hid("HID probe called for i2c 0x%02x\n", client->addr);
932
4a200c3b
BT
933 if (!client->irq) {
934 dev_err(&client->dev,
935 "HID over i2c has not been provided an Int IRQ\n");
936 return -EINVAL;
937 }
938
939 ihid = kzalloc(sizeof(struct i2c_hid), GFP_KERNEL);
940 if (!ihid)
941 return -ENOMEM;
942
3d7d248c
BT
943 if (client->dev.of_node) {
944 ret = i2c_hid_of_probe(client, &ihid->pdata);
945 if (ret)
946 goto err;
947 } else if (!platform_data) {
92241e67
MW
948 ret = i2c_hid_acpi_pdata(client, &ihid->pdata);
949 if (ret) {
950 dev_err(&client->dev,
951 "HID register address not provided\n");
952 goto err;
953 }
954 } else {
955 ihid->pdata = *platform_data;
956 }
957
4a200c3b
BT
958 i2c_set_clientdata(client, ihid);
959
960 ihid->client = client;
961
92241e67 962 hidRegister = ihid->pdata.hid_descriptor_address;
4a200c3b
BT
963 ihid->wHIDDescRegister = cpu_to_le16(hidRegister);
964
965 init_waitqueue_head(&ihid->wait);
966
967 /* we need to allocate the command buffer without knowing the maximum
968 * size of the reports. Let's use HID_MIN_BUFFER_SIZE, then we do the
969 * real computation later. */
29b45787
BT
970 ret = i2c_hid_alloc_buffers(ihid, HID_MIN_BUFFER_SIZE);
971 if (ret < 0)
972 goto err;
4a200c3b 973
34f439e4
MW
974 pm_runtime_get_noresume(&client->dev);
975 pm_runtime_set_active(&client->dev);
976 pm_runtime_enable(&client->dev);
977
4a200c3b
BT
978 ret = i2c_hid_fetch_hid_descriptor(ihid);
979 if (ret < 0)
34f439e4 980 goto err_pm;
4a200c3b
BT
981
982 ret = i2c_hid_init_irq(client);
983 if (ret < 0)
34f439e4 984 goto err_pm;
4a200c3b
BT
985
986 hid = hid_allocate_device();
987 if (IS_ERR(hid)) {
988 ret = PTR_ERR(hid);
8a1bbb53 989 goto err_irq;
4a200c3b
BT
990 }
991
992 ihid->hid = hid;
993
994 hid->driver_data = client;
995 hid->ll_driver = &i2c_hid_ll_driver;
4a200c3b 996 hid->dev.parent = &client->dev;
7b199811 997 ACPI_COMPANION_SET(&hid->dev, ACPI_COMPANION(&client->dev));
4a200c3b
BT
998 hid->bus = BUS_I2C;
999 hid->version = le16_to_cpu(ihid->hdesc.bcdVersion);
1000 hid->vendor = le16_to_cpu(ihid->hdesc.wVendorID);
1001 hid->product = le16_to_cpu(ihid->hdesc.wProductID);
1002
9972dcc2 1003 snprintf(hid->name, sizeof(hid->name), "%s %04hX:%04hX",
4a200c3b
BT
1004 client->name, hid->vendor, hid->product);
1005
1006 ret = hid_add_device(hid);
1007 if (ret) {
1008 if (ret != -ENODEV)
1009 hid_err(client, "can't add hid device: %d\n", ret);
1010 goto err_mem_free;
1011 }
1012
34f439e4 1013 pm_runtime_put(&client->dev);
4a200c3b
BT
1014 return 0;
1015
1016err_mem_free:
1017 hid_destroy_device(hid);
1018
8a1bbb53
BT
1019err_irq:
1020 free_irq(client->irq, ihid);
4a200c3b 1021
34f439e4
MW
1022err_pm:
1023 pm_runtime_put_noidle(&client->dev);
1024 pm_runtime_disable(&client->dev);
1025
8a1bbb53 1026err:
3c626024 1027 i2c_hid_free_buffers(ihid);
4a200c3b
BT
1028 kfree(ihid);
1029 return ret;
1030}
1031
0fe763c5 1032static int i2c_hid_remove(struct i2c_client *client)
4a200c3b
BT
1033{
1034 struct i2c_hid *ihid = i2c_get_clientdata(client);
1035 struct hid_device *hid;
1036
34f439e4
MW
1037 pm_runtime_get_sync(&client->dev);
1038 pm_runtime_disable(&client->dev);
1039 pm_runtime_set_suspended(&client->dev);
1040 pm_runtime_put_noidle(&client->dev);
1041
4a200c3b
BT
1042 hid = ihid->hid;
1043 hid_destroy_device(hid);
1044
1045 free_irq(client->irq, ihid);
1046
134ebfd8
BT
1047 if (ihid->bufsize)
1048 i2c_hid_free_buffers(ihid);
1049
4a200c3b
BT
1050 kfree(ihid);
1051
1052 return 0;
1053}
1054
1055#ifdef CONFIG_PM_SLEEP
1056static int i2c_hid_suspend(struct device *dev)
1057{
1058 struct i2c_client *client = to_i2c_client(dev);
109571cf
AD
1059 struct i2c_hid *ihid = i2c_get_clientdata(client);
1060 struct hid_device *hid = ihid->hid;
1061 int ret = 0;
4a200c3b 1062
94037efe 1063 disable_irq(client->irq);
4a200c3b 1064 if (device_may_wakeup(&client->dev))
8a1bbb53 1065 enable_irq_wake(client->irq);
4a200c3b 1066
109571cf
AD
1067 if (hid->driver && hid->driver->suspend)
1068 ret = hid->driver->suspend(hid, PMSG_SUSPEND);
1069
4a200c3b
BT
1070 /* Save some power */
1071 i2c_hid_set_power(client, I2C_HID_PWR_SLEEP);
1072
109571cf 1073 return ret;
4a200c3b
BT
1074}
1075
1076static int i2c_hid_resume(struct device *dev)
1077{
1078 int ret;
1079 struct i2c_client *client = to_i2c_client(dev);
109571cf
AD
1080 struct i2c_hid *ihid = i2c_get_clientdata(client);
1081 struct hid_device *hid = ihid->hid;
4a200c3b 1082
94037efe 1083 enable_irq(client->irq);
4a200c3b
BT
1084 ret = i2c_hid_hwreset(client);
1085 if (ret)
1086 return ret;
1087
1088 if (device_may_wakeup(&client->dev))
1089 disable_irq_wake(client->irq);
1090
109571cf
AD
1091 if (hid->driver && hid->driver->reset_resume) {
1092 ret = hid->driver->reset_resume(hid);
1093 return ret;
1094 }
1095
4a200c3b
BT
1096 return 0;
1097}
1098#endif
1099
721564a9 1100#ifdef CONFIG_PM
34f439e4
MW
1101static int i2c_hid_runtime_suspend(struct device *dev)
1102{
1103 struct i2c_client *client = to_i2c_client(dev);
1104
1105 i2c_hid_set_power(client, I2C_HID_PWR_SLEEP);
1106 disable_irq(client->irq);
1107 return 0;
1108}
1109
1110static int i2c_hid_runtime_resume(struct device *dev)
1111{
1112 struct i2c_client *client = to_i2c_client(dev);
1113
1114 enable_irq(client->irq);
1115 i2c_hid_set_power(client, I2C_HID_PWR_ON);
1116 return 0;
1117}
1118#endif
1119
1120static const struct dev_pm_ops i2c_hid_pm = {
1121 SET_SYSTEM_SLEEP_PM_OPS(i2c_hid_suspend, i2c_hid_resume)
1122 SET_RUNTIME_PM_OPS(i2c_hid_runtime_suspend, i2c_hid_runtime_resume,
1123 NULL)
1124};
4a200c3b
BT
1125
1126static const struct i2c_device_id i2c_hid_id_table[] = {
24ebb37e 1127 { "hid", 0 },
4a200c3b
BT
1128 { },
1129};
1130MODULE_DEVICE_TABLE(i2c, i2c_hid_id_table);
1131
1132
1133static struct i2c_driver i2c_hid_driver = {
1134 .driver = {
1135 .name = "i2c_hid",
1136 .owner = THIS_MODULE,
1137 .pm = &i2c_hid_pm,
92241e67 1138 .acpi_match_table = ACPI_PTR(i2c_hid_acpi_match),
3d7d248c 1139 .of_match_table = of_match_ptr(i2c_hid_of_match),
4a200c3b
BT
1140 },
1141
1142 .probe = i2c_hid_probe,
0fe763c5 1143 .remove = i2c_hid_remove,
4a200c3b
BT
1144
1145 .id_table = i2c_hid_id_table,
1146};
1147
1148module_i2c_driver(i2c_hid_driver);
1149
1150MODULE_DESCRIPTION("HID over I2C core driver");
1151MODULE_AUTHOR("Benjamin Tissoires <benjamin.tissoires@gmail.com>");
1152MODULE_LICENSE("GPL");