2 * Elan I2C/SMBus Touchpad driver - I2C interface
4 * Copyright (c) 2013 ELAN Microelectronics Corp.
6 * Author: 林政維 (Duson Lin) <dusonlin@emc.com.tw>
8 * Based on cyapa driver:
9 * copyright (c) 2011-2012 Cypress Semiconductor, Inc.
10 * copyright (c) 2011-2012 Google, Inc.
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License version 2 as published
14 * by the Free Software Foundation.
16 * Trademarks are the property of their respective owners.
19 #include <linux/completion.h>
20 #include <linux/delay.h>
21 #include <linux/i2c.h>
22 #include <linux/interrupt.h>
23 #include <linux/jiffies.h>
24 #include <linux/kernel.h>
25 #include <linux/sched.h>
26 #include <asm/unaligned.h>
30 /* Elan i2c commands */
31 #define ETP_I2C_RESET 0x0100
32 #define ETP_I2C_WAKE_UP 0x0800
33 #define ETP_I2C_SLEEP 0x0801
34 #define ETP_I2C_DESC_CMD 0x0001
35 #define ETP_I2C_REPORT_DESC_CMD 0x0002
36 #define ETP_I2C_STAND_CMD 0x0005
37 #define ETP_I2C_UNIQUEID_CMD 0x0101
38 #define ETP_I2C_FW_VERSION_CMD 0x0102
39 #define ETP_I2C_SM_VERSION_CMD 0x0103
40 #define ETP_I2C_XY_TRACENUM_CMD 0x0105
41 #define ETP_I2C_MAX_X_AXIS_CMD 0x0106
42 #define ETP_I2C_MAX_Y_AXIS_CMD 0x0107
43 #define ETP_I2C_RESOLUTION_CMD 0x0108
44 #define ETP_I2C_PRESSURE_CMD 0x010A
45 #define ETP_I2C_IAP_VERSION_CMD 0x0110
46 #define ETP_I2C_SET_CMD 0x0300
47 #define ETP_I2C_POWER_CMD 0x0307
48 #define ETP_I2C_FW_CHECKSUM_CMD 0x030F
49 #define ETP_I2C_IAP_CTRL_CMD 0x0310
50 #define ETP_I2C_IAP_CMD 0x0311
51 #define ETP_I2C_IAP_RESET_CMD 0x0314
52 #define ETP_I2C_IAP_CHECKSUM_CMD 0x0315
53 #define ETP_I2C_CALIBRATE_CMD 0x0316
54 #define ETP_I2C_MAX_BASELINE_CMD 0x0317
55 #define ETP_I2C_MIN_BASELINE_CMD 0x0318
57 #define ETP_I2C_REPORT_LEN 34
58 #define ETP_I2C_DESC_LENGTH 30
59 #define ETP_I2C_REPORT_DESC_LENGTH 158
60 #define ETP_I2C_INF_LENGTH 2
61 #define ETP_I2C_IAP_PASSWORD 0x1EA5
62 #define ETP_I2C_IAP_RESET 0xF0F0
63 #define ETP_I2C_MAIN_MODE_ON (1 << 9)
64 #define ETP_I2C_IAP_REG_L 0x01
65 #define ETP_I2C_IAP_REG_H 0x06
67 static int elan_i2c_read_block(struct i2c_client
*client
,
68 u16 reg
, u8
*val
, u16 len
)
73 struct i2c_msg msgs
[] = {
76 .flags
= client
->flags
& I2C_M_TEN
,
82 .flags
= (client
->flags
& I2C_M_TEN
) | I2C_M_RD
,
89 ret
= i2c_transfer(client
->adapter
, msgs
, ARRAY_SIZE(msgs
));
90 return ret
== ARRAY_SIZE(msgs
) ? 0 : (ret
< 0 ? ret
: -EIO
);
93 static int elan_i2c_read_cmd(struct i2c_client
*client
, u16 reg
, u8
*val
)
97 retval
= elan_i2c_read_block(client
, reg
, val
, ETP_I2C_INF_LENGTH
);
99 dev_err(&client
->dev
, "reading cmd (0x%04x) fail.\n", reg
);
106 static int elan_i2c_write_cmd(struct i2c_client
*client
, u16 reg
, u16 cmd
)
112 struct i2c_msg msg
= {
113 .addr
= client
->addr
,
114 .flags
= client
->flags
& I2C_M_TEN
,
120 ret
= i2c_transfer(client
->adapter
, &msg
, 1);
124 dev_err(&client
->dev
, "writing cmd (0x%04x) failed: %d\n",
132 static int elan_i2c_initialize(struct i2c_client
*client
)
134 struct device
*dev
= &client
->dev
;
138 error
= elan_i2c_write_cmd(client
, ETP_I2C_STAND_CMD
, ETP_I2C_RESET
);
140 dev_err(dev
, "device reset failed: %d\n", error
);
144 /* Wait for the device to reset */
147 /* get reset acknowledgement 0000 */
148 error
= i2c_master_recv(client
, val
, ETP_I2C_INF_LENGTH
);
150 dev_err(dev
, "failed to read reset response: %d\n", error
);
154 error
= elan_i2c_read_block(client
, ETP_I2C_DESC_CMD
,
155 val
, ETP_I2C_DESC_LENGTH
);
157 dev_err(dev
, "cannot get device descriptor: %d\n", error
);
161 error
= elan_i2c_read_block(client
, ETP_I2C_REPORT_DESC_CMD
,
162 val
, ETP_I2C_REPORT_DESC_LENGTH
);
164 dev_err(dev
, "fetching report descriptor failed.: %d\n", error
);
171 static int elan_i2c_sleep_control(struct i2c_client
*client
, bool sleep
)
173 return elan_i2c_write_cmd(client
, ETP_I2C_STAND_CMD
,
174 sleep
? ETP_I2C_SLEEP
: ETP_I2C_WAKE_UP
);
177 static int elan_i2c_power_control(struct i2c_client
*client
, bool enable
)
183 error
= elan_i2c_read_cmd(client
, ETP_I2C_POWER_CMD
, val
);
185 dev_err(&client
->dev
,
186 "failed to read current power state: %d\n",
191 reg
= le16_to_cpup((__le16
*)val
);
193 reg
&= ~ETP_DISABLE_POWER
;
195 reg
|= ETP_DISABLE_POWER
;
197 error
= elan_i2c_write_cmd(client
, ETP_I2C_POWER_CMD
, reg
);
199 dev_err(&client
->dev
,
200 "failed to write current power state: %d\n",
208 static int elan_i2c_set_mode(struct i2c_client
*client
, u8 mode
)
210 return elan_i2c_write_cmd(client
, ETP_I2C_SET_CMD
, mode
);
214 static int elan_i2c_calibrate(struct i2c_client
*client
)
216 return elan_i2c_write_cmd(client
, ETP_I2C_CALIBRATE_CMD
, 1);
219 static int elan_i2c_calibrate_result(struct i2c_client
*client
, u8
*val
)
221 return elan_i2c_read_block(client
, ETP_I2C_CALIBRATE_CMD
, val
, 1);
224 static int elan_i2c_get_baseline_data(struct i2c_client
*client
,
225 bool max_baseline
, u8
*value
)
230 error
= elan_i2c_read_cmd(client
,
231 max_baseline
? ETP_I2C_MAX_BASELINE_CMD
:
232 ETP_I2C_MIN_BASELINE_CMD
,
237 *value
= le16_to_cpup((__le16
*)val
);
242 static int elan_i2c_get_version(struct i2c_client
*client
,
243 bool iap
, u8
*version
)
248 error
= elan_i2c_read_cmd(client
,
249 iap
? ETP_I2C_IAP_VERSION_CMD
:
250 ETP_I2C_FW_VERSION_CMD
,
253 dev_err(&client
->dev
, "failed to get %s version: %d\n",
254 iap
? "IAP" : "FW", error
);
262 static int elan_i2c_get_sm_version(struct i2c_client
*client
,
263 u8
*ic_type
, u8
*version
)
268 error
= elan_i2c_read_cmd(client
, ETP_I2C_SM_VERSION_CMD
, val
);
270 dev_err(&client
->dev
, "failed to get SM version: %d\n", error
);
279 static int elan_i2c_get_product_id(struct i2c_client
*client
, u8
*id
)
284 error
= elan_i2c_read_cmd(client
, ETP_I2C_UNIQUEID_CMD
, val
);
286 dev_err(&client
->dev
, "failed to get product ID: %d\n", error
);
294 static int elan_i2c_get_checksum(struct i2c_client
*client
,
300 error
= elan_i2c_read_cmd(client
,
301 iap
? ETP_I2C_IAP_CHECKSUM_CMD
:
302 ETP_I2C_FW_CHECKSUM_CMD
,
305 dev_err(&client
->dev
, "failed to get %s checksum: %d\n",
306 iap
? "IAP" : "FW", error
);
310 *csum
= le16_to_cpup((__le16
*)val
);
314 static int elan_i2c_get_max(struct i2c_client
*client
,
315 unsigned int *max_x
, unsigned int *max_y
)
320 error
= elan_i2c_read_cmd(client
, ETP_I2C_MAX_X_AXIS_CMD
, val
);
322 dev_err(&client
->dev
, "failed to get X dimension: %d\n", error
);
326 *max_x
= le16_to_cpup((__le16
*)val
) & 0x0fff;
328 error
= elan_i2c_read_cmd(client
, ETP_I2C_MAX_Y_AXIS_CMD
, val
);
330 dev_err(&client
->dev
, "failed to get Y dimension: %d\n", error
);
334 *max_y
= le16_to_cpup((__le16
*)val
) & 0x0fff;
339 static int elan_i2c_get_resolution(struct i2c_client
*client
,
340 u8
*hw_res_x
, u8
*hw_res_y
)
345 error
= elan_i2c_read_cmd(client
, ETP_I2C_RESOLUTION_CMD
, val
);
347 dev_err(&client
->dev
, "failed to get resolution: %d\n", error
);
357 static int elan_i2c_get_num_traces(struct i2c_client
*client
,
358 unsigned int *x_traces
,
359 unsigned int *y_traces
)
364 error
= elan_i2c_read_cmd(client
, ETP_I2C_XY_TRACENUM_CMD
, val
);
366 dev_err(&client
->dev
, "failed to get trace info: %d\n", error
);
376 static int elan_i2c_get_pressure_adjustment(struct i2c_client
*client
,
382 error
= elan_i2c_read_cmd(client
, ETP_I2C_PRESSURE_CMD
, val
);
384 dev_err(&client
->dev
, "failed to get pressure format: %d\n",
389 if ((val
[0] >> 4) & 0x1)
392 *adjustment
= ETP_PRESSURE_OFFSET
;
397 static int elan_i2c_iap_get_mode(struct i2c_client
*client
, enum tp_mode
*mode
)
403 error
= elan_i2c_read_cmd(client
, ETP_I2C_IAP_CTRL_CMD
, val
);
405 dev_err(&client
->dev
,
406 "failed to read iap control register: %d\n",
411 constant
= le16_to_cpup((__le16
*)val
);
412 dev_dbg(&client
->dev
, "iap control reg: 0x%04x.\n", constant
);
414 *mode
= (constant
& ETP_I2C_MAIN_MODE_ON
) ? MAIN_MODE
: IAP_MODE
;
419 static int elan_i2c_iap_reset(struct i2c_client
*client
)
423 error
= elan_i2c_write_cmd(client
, ETP_I2C_IAP_RESET_CMD
,
426 dev_err(&client
->dev
, "cannot reset IC: %d\n", error
);
433 static int elan_i2c_set_flash_key(struct i2c_client
*client
)
437 error
= elan_i2c_write_cmd(client
, ETP_I2C_IAP_CMD
,
438 ETP_I2C_IAP_PASSWORD
);
440 dev_err(&client
->dev
, "cannot set flash key: %d\n", error
);
447 static int elan_i2c_prepare_fw_update(struct i2c_client
*client
)
449 struct device
*dev
= &client
->dev
;
455 /* Get FW in which mode (IAP_MODE/MAIN_MODE) */
456 error
= elan_i2c_iap_get_mode(client
, &mode
);
460 if (mode
== IAP_MODE
) {
462 error
= elan_i2c_iap_reset(client
);
470 error
= elan_i2c_set_flash_key(client
);
474 /* Wait for F/W IAP initialization */
475 msleep(mode
== MAIN_MODE
? 100 : 30);
477 /* Check if we are in IAP mode or not */
478 error
= elan_i2c_iap_get_mode(client
, &mode
);
482 if (mode
== MAIN_MODE
) {
483 dev_err(dev
, "wrong mode: %d\n", mode
);
487 /* Set flash key again */
488 error
= elan_i2c_set_flash_key(client
);
492 /* Wait for F/W IAP initialization */
495 /* read back to check we actually enabled successfully. */
496 error
= elan_i2c_read_cmd(client
, ETP_I2C_IAP_CMD
, val
);
498 dev_err(dev
, "cannot read iap password: %d\n",
503 password
= le16_to_cpup((__le16
*)val
);
504 if (password
!= ETP_I2C_IAP_PASSWORD
) {
505 dev_err(dev
, "wrong iap password: 0x%X\n", password
);
512 static int elan_i2c_write_fw_block(struct i2c_client
*client
,
513 const u8
*page
, u16 checksum
, int idx
)
515 struct device
*dev
= &client
->dev
;
516 u8 page_store
[ETP_FW_PAGE_SIZE
+ 4];
521 page_store
[0] = ETP_I2C_IAP_REG_L
;
522 page_store
[1] = ETP_I2C_IAP_REG_H
;
523 memcpy(&page_store
[2], page
, ETP_FW_PAGE_SIZE
);
524 /* recode checksum at last two bytes */
525 put_unaligned_le16(checksum
, &page_store
[ETP_FW_PAGE_SIZE
+ 2]);
527 ret
= i2c_master_send(client
, page_store
, sizeof(page_store
));
528 if (ret
!= sizeof(page_store
)) {
529 error
= ret
< 0 ? ret
: -EIO
;
530 dev_err(dev
, "Failed to write page %d: %d\n", idx
, error
);
534 /* Wait for F/W to update one page ROM data. */
537 error
= elan_i2c_read_cmd(client
, ETP_I2C_IAP_CTRL_CMD
, val
);
539 dev_err(dev
, "Failed to read IAP write result: %d\n", error
);
543 result
= le16_to_cpup((__le16
*)val
);
544 if (result
& (ETP_FW_IAP_PAGE_ERR
| ETP_FW_IAP_INTF_ERR
)) {
545 dev_err(dev
, "IAP reports failed write: %04hx\n",
553 static int elan_i2c_finish_fw_update(struct i2c_client
*client
,
554 struct completion
*completion
)
556 struct device
*dev
= &client
->dev
;
560 u8 buffer
[ETP_I2C_INF_LENGTH
];
562 reinit_completion(completion
);
563 enable_irq(client
->irq
);
565 error
= elan_i2c_write_cmd(client
, ETP_I2C_STAND_CMD
, ETP_I2C_RESET
);
567 ret
= wait_for_completion_interruptible_timeout(completion
,
568 msecs_to_jiffies(300));
569 disable_irq(client
->irq
);
572 dev_err(dev
, "device reset failed: %d\n", error
);
574 } else if (ret
== 0) {
575 dev_err(dev
, "timeout waiting for device reset\n");
577 } else if (ret
< 0) {
579 dev_err(dev
, "error waiting for device reset: %d\n", error
);
583 len
= i2c_master_recv(client
, buffer
, ETP_I2C_INF_LENGTH
);
584 if (len
!= ETP_I2C_INF_LENGTH
) {
585 error
= len
< 0 ? len
: -EIO
;
586 dev_err(dev
, "failed to read INT signal: %d (%d)\n",
594 static int elan_i2c_get_report(struct i2c_client
*client
, u8
*report
)
598 len
= i2c_master_recv(client
, report
, ETP_I2C_REPORT_LEN
);
600 dev_err(&client
->dev
, "failed to read report data: %d\n", len
);
604 if (len
!= ETP_I2C_REPORT_LEN
) {
605 dev_err(&client
->dev
,
606 "wrong report length (%d vs %d expected)\n",
607 len
, ETP_I2C_REPORT_LEN
);
614 const struct elan_transport_ops elan_i2c_ops
= {
615 .initialize
= elan_i2c_initialize
,
616 .sleep_control
= elan_i2c_sleep_control
,
617 .power_control
= elan_i2c_power_control
,
618 .set_mode
= elan_i2c_set_mode
,
620 .calibrate
= elan_i2c_calibrate
,
621 .calibrate_result
= elan_i2c_calibrate_result
,
623 .get_baseline_data
= elan_i2c_get_baseline_data
,
625 .get_version
= elan_i2c_get_version
,
626 .get_sm_version
= elan_i2c_get_sm_version
,
627 .get_product_id
= elan_i2c_get_product_id
,
628 .get_checksum
= elan_i2c_get_checksum
,
629 .get_pressure_adjustment
= elan_i2c_get_pressure_adjustment
,
631 .get_max
= elan_i2c_get_max
,
632 .get_resolution
= elan_i2c_get_resolution
,
633 .get_num_traces
= elan_i2c_get_num_traces
,
635 .iap_get_mode
= elan_i2c_iap_get_mode
,
636 .iap_reset
= elan_i2c_iap_reset
,
638 .prepare_fw_update
= elan_i2c_prepare_fw_update
,
639 .write_fw_block
= elan_i2c_write_fw_block
,
640 .finish_fw_update
= elan_i2c_finish_fw_update
,
642 .get_report
= elan_i2c_get_report
,