2 * Copyright (C) 2012-2017 Hideep, Inc.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License version 2
6 * as published by the Free Software Foudation.
9 #include <linux/module.h>
11 #include <linux/firmware.h>
12 #include <linux/delay.h>
13 #include <linux/gpio/consumer.h>
14 #include <linux/i2c.h>
15 #include <linux/acpi.h>
16 #include <linux/interrupt.h>
17 #include <linux/regmap.h>
18 #include <linux/sysfs.h>
19 #include <linux/input.h>
20 #include <linux/input/mt.h>
21 #include <linux/input/touchscreen.h>
22 #include <linux/regulator/consumer.h>
23 #include <asm/unaligned.h>
25 #define HIDEEP_TS_NAME "HiDeep Touchscreen"
26 #define HIDEEP_I2C_NAME "hideep_ts"
28 #define HIDEEP_MT_MAX 10
29 #define HIDEEP_KEY_MAX 3
31 /* count(2) + touch data(100) + key data(6) */
32 #define HIDEEP_MAX_EVENT 108UL
34 #define HIDEEP_TOUCH_EVENT_INDEX 2
35 #define HIDEEP_KEY_EVENT_INDEX 102
37 /* Touch & key event */
38 #define HIDEEP_EVENT_ADDR 0x240
41 #define HIDEEP_RESET_CMD 0x9800
44 #define HIDEEP_MT_RELEASED BIT(4)
45 #define HIDEEP_KEY_PRESSED BIT(7)
46 #define HIDEEP_KEY_FIRST_PRESSED BIT(8)
47 #define HIDEEP_KEY_PRESSED_MASK (HIDEEP_KEY_PRESSED | \
48 HIDEEP_KEY_FIRST_PRESSED)
50 #define HIDEEP_KEY_IDX_MASK 0x0f
53 #define HIDEEP_YRAM_BASE 0x40000000
54 #define HIDEEP_PERIPHERAL_BASE 0x50000000
55 #define HIDEEP_ESI_BASE (HIDEEP_PERIPHERAL_BASE + 0x00000000)
56 #define HIDEEP_FLASH_BASE (HIDEEP_PERIPHERAL_BASE + 0x01000000)
57 #define HIDEEP_SYSCON_BASE (HIDEEP_PERIPHERAL_BASE + 0x02000000)
59 #define HIDEEP_SYSCON_MOD_CON (HIDEEP_SYSCON_BASE + 0x0000)
60 #define HIDEEP_SYSCON_SPC_CON (HIDEEP_SYSCON_BASE + 0x0004)
61 #define HIDEEP_SYSCON_CLK_CON (HIDEEP_SYSCON_BASE + 0x0008)
62 #define HIDEEP_SYSCON_CLK_ENA (HIDEEP_SYSCON_BASE + 0x000C)
63 #define HIDEEP_SYSCON_RST_CON (HIDEEP_SYSCON_BASE + 0x0010)
64 #define HIDEEP_SYSCON_WDT_CON (HIDEEP_SYSCON_BASE + 0x0014)
65 #define HIDEEP_SYSCON_WDT_CNT (HIDEEP_SYSCON_BASE + 0x0018)
66 #define HIDEEP_SYSCON_PWR_CON (HIDEEP_SYSCON_BASE + 0x0020)
67 #define HIDEEP_SYSCON_PGM_ID (HIDEEP_SYSCON_BASE + 0x00F4)
69 #define HIDEEP_FLASH_CON (HIDEEP_FLASH_BASE + 0x0000)
70 #define HIDEEP_FLASH_STA (HIDEEP_FLASH_BASE + 0x0004)
71 #define HIDEEP_FLASH_CFG (HIDEEP_FLASH_BASE + 0x0008)
72 #define HIDEEP_FLASH_TIM (HIDEEP_FLASH_BASE + 0x000C)
73 #define HIDEEP_FLASH_CACHE_CFG (HIDEEP_FLASH_BASE + 0x0010)
74 #define HIDEEP_FLASH_PIO_SIG (HIDEEP_FLASH_BASE + 0x400000)
76 #define HIDEEP_ESI_TX_INVALID (HIDEEP_ESI_BASE + 0x0008)
78 #define HIDEEP_PERASE 0x00040000
79 #define HIDEEP_WRONLY 0x00100000
81 #define HIDEEP_NVM_MASK_OFS 0x0000000C
82 #define HIDEEP_NVM_DEFAULT_PAGE 0
83 #define HIDEEP_NVM_SFR_WPAGE 1
84 #define HIDEEP_NVM_SFR_RPAGE 2
86 #define HIDEEP_PIO_SIG 0x00400000
87 #define HIDEEP_PROT_MODE 0x03400000
89 #define HIDEEP_NVM_PAGE_SIZE 128
91 #define HIDEEP_DWZ_INFO 0x000002C0
142 __be32 payload
[HIDEEP_NVM_PAGE_SIZE
/ sizeof(__be32
)];
145 #define HIDEEP_XFER_BUF_SIZE sizeof(struct pgm_packet)
148 struct i2c_client
*client
;
149 struct input_dev
*input_dev
;
152 struct touchscreen_properties prop
;
154 struct gpio_desc
*reset_gpio
;
156 struct regulator
*vcc_vdd
;
157 struct regulator
*vcc_vid
;
159 struct mutex dev_mutex
;
165 * Data buffer to read packet from the device (contacts and key
166 * states). We align it on double-word boundary to keep word-sized
167 * fields in contact data and double-word-sized fields in program
170 u8 xfer_buf
[HIDEEP_XFER_BUF_SIZE
] __aligned(4);
173 u32 key_codes
[HIDEEP_KEY_MAX
];
175 struct dwz_info dwz_info
;
177 unsigned int fw_size
;
181 static int hideep_pgm_w_mem(struct hideep_ts
*ts
, u32 addr
,
182 const __be32
*data
, size_t count
)
184 struct pgm_packet
*packet
= (void *)ts
->xfer_buf
;
185 size_t len
= count
* sizeof(*data
);
186 struct i2c_msg msg
= {
187 .addr
= ts
->client
->addr
,
188 .len
= len
+ sizeof(packet
->header
.len
) +
189 sizeof(packet
->header
.addr
),
190 .buf
= &packet
->header
.len
,
194 if (len
> HIDEEP_NVM_PAGE_SIZE
)
197 packet
->header
.len
= 0x80 | (count
- 1);
198 packet
->header
.addr
= cpu_to_be32(addr
);
199 memcpy(packet
->payload
, data
, len
);
201 ret
= i2c_transfer(ts
->client
->adapter
, &msg
, 1);
203 return ret
< 0 ? ret
: -EIO
;
208 static int hideep_pgm_r_mem(struct hideep_ts
*ts
, u32 addr
,
209 __be32
*data
, size_t count
)
211 struct pgm_packet
*packet
= (void *)ts
->xfer_buf
;
212 size_t len
= count
* sizeof(*data
);
213 struct i2c_msg msg
[] = {
215 .addr
= ts
->client
->addr
,
216 .len
= sizeof(packet
->header
.len
) +
217 sizeof(packet
->header
.addr
),
218 .buf
= &packet
->header
.len
,
221 .addr
= ts
->client
->addr
,
229 if (len
> HIDEEP_NVM_PAGE_SIZE
)
232 packet
->header
.len
= count
- 1;
233 packet
->header
.addr
= cpu_to_be32(addr
);
235 ret
= i2c_transfer(ts
->client
->adapter
, msg
, ARRAY_SIZE(msg
));
236 if (ret
!= ARRAY_SIZE(msg
))
237 return ret
< 0 ? ret
: -EIO
;
242 static int hideep_pgm_r_reg(struct hideep_ts
*ts
, u32 addr
, u32
*val
)
247 error
= hideep_pgm_r_mem(ts
, addr
, &data
, 1);
249 dev_err(&ts
->client
->dev
,
250 "read of register %#08x failed: %d\n",
255 *val
= be32_to_cpu(data
);
259 static int hideep_pgm_w_reg(struct hideep_ts
*ts
, u32 addr
, u32 val
)
261 __be32 data
= cpu_to_be32(val
);
264 error
= hideep_pgm_w_mem(ts
, addr
, &data
, 1);
266 dev_err(&ts
->client
->dev
,
267 "write to register %#08x (%#08x) failed: %d\n",
275 #define SW_RESET_IN_PGM(clk) \
277 hideep_pgm_w_reg(ts, HIDEEP_SYSCON_WDT_CNT, (clk)); \
278 hideep_pgm_w_reg(ts, HIDEEP_SYSCON_WDT_CON, 0x03); \
279 hideep_pgm_w_reg(ts, HIDEEP_SYSCON_WDT_CON, 0x01); \
282 #define SET_FLASH_PIO(ce) \
283 hideep_pgm_w_reg(ts, HIDEEP_FLASH_CON, \
286 #define SET_PIO_SIG(x, y) \
287 hideep_pgm_w_reg(ts, HIDEEP_FLASH_PIO_SIG + (x), (y))
289 #define SET_FLASH_HWCONTROL() \
290 hideep_pgm_w_reg(ts, HIDEEP_FLASH_CON, 0x00)
292 #define NVM_W_SFR(x, y) \
299 static void hideep_pgm_set(struct hideep_ts
*ts
)
301 hideep_pgm_w_reg(ts
, HIDEEP_SYSCON_WDT_CON
, 0x00);
302 hideep_pgm_w_reg(ts
, HIDEEP_SYSCON_SPC_CON
, 0x00);
303 hideep_pgm_w_reg(ts
, HIDEEP_SYSCON_CLK_ENA
, 0xFF);
304 hideep_pgm_w_reg(ts
, HIDEEP_SYSCON_CLK_CON
, 0x01);
305 hideep_pgm_w_reg(ts
, HIDEEP_SYSCON_PWR_CON
, 0x01);
306 hideep_pgm_w_reg(ts
, HIDEEP_FLASH_TIM
, 0x03);
307 hideep_pgm_w_reg(ts
, HIDEEP_FLASH_CACHE_CFG
, 0x00);
310 static int hideep_pgm_get_pattern(struct hideep_ts
*ts
, u32
*pattern
)
316 error
= regmap_bulk_write(ts
->reg
, p1
, &p2
, 1);
318 dev_err(&ts
->client
->dev
,
319 "%s: regmap_bulk_write() failed with %d\n",
324 usleep_range(1000, 1100);
326 /* flush invalid Tx load register */
327 error
= hideep_pgm_w_reg(ts
, HIDEEP_ESI_TX_INVALID
, 0x01);
331 error
= hideep_pgm_r_reg(ts
, HIDEEP_SYSCON_PGM_ID
, pattern
);
338 static int hideep_enter_pgm(struct hideep_ts
*ts
)
340 int retry_count
= 10;
344 while (retry_count
--) {
345 error
= hideep_pgm_get_pattern(ts
, &pattern
);
347 dev_err(&ts
->client
->dev
,
348 "hideep_pgm_get_pattern failed: %d\n", error
);
349 } else if (pattern
!= 0x39AF9DDF) {
350 dev_err(&ts
->client
->dev
, "%s: bad pattern: %#08x\n",
353 dev_dbg(&ts
->client
->dev
, "found magic code");
356 usleep_range(1000, 1100);
362 dev_err(&ts
->client
->dev
, "failed to enter pgm mode\n");
363 SW_RESET_IN_PGM(1000);
367 static void hideep_nvm_unlock(struct hideep_ts
*ts
)
371 hideep_pgm_w_reg(ts
, HIDEEP_FLASH_CFG
, HIDEEP_NVM_SFR_RPAGE
);
372 hideep_pgm_r_reg(ts
, 0x0000000C, &unmask_code
);
373 hideep_pgm_w_reg(ts
, HIDEEP_FLASH_CFG
, HIDEEP_NVM_DEFAULT_PAGE
);
375 /* make it unprotected code */
376 unmask_code
&= ~HIDEEP_PROT_MODE
;
378 /* compare unmask code */
379 if (unmask_code
!= ts
->nvm_mask
)
380 dev_warn(&ts
->client
->dev
,
381 "read mask code different %#08x vs %#08x",
382 unmask_code
, ts
->nvm_mask
);
384 hideep_pgm_w_reg(ts
, HIDEEP_FLASH_CFG
, HIDEEP_NVM_SFR_WPAGE
);
387 NVM_W_SFR(HIDEEP_NVM_MASK_OFS
, ts
->nvm_mask
);
388 SET_FLASH_HWCONTROL();
389 hideep_pgm_w_reg(ts
, HIDEEP_FLASH_CFG
, HIDEEP_NVM_DEFAULT_PAGE
);
392 static int hideep_check_status(struct hideep_ts
*ts
)
399 error
= hideep_pgm_r_reg(ts
, HIDEEP_FLASH_STA
, &status
);
400 if (!error
&& status
)
403 usleep_range(1000, 1100);
409 static int hideep_program_page(struct hideep_ts
*ts
, u32 addr
,
410 const __be32
*ucode
, size_t xfer_count
)
415 error
= hideep_check_status(ts
);
419 addr
&= ~(HIDEEP_NVM_PAGE_SIZE
- 1);
425 SET_PIO_SIG(HIDEEP_PERASE
| addr
, 0xFFFFFFFF);
429 error
= hideep_check_status(ts
);
436 val
= be32_to_cpu(ucode
[0]);
437 SET_PIO_SIG(HIDEEP_WRONLY
| addr
, val
);
439 hideep_pgm_w_mem(ts
, HIDEEP_FLASH_PIO_SIG
| HIDEEP_WRONLY
,
442 val
= be32_to_cpu(ucode
[xfer_count
- 1]);
443 SET_PIO_SIG(124, val
);
447 usleep_range(1000, 1100);
449 error
= hideep_check_status(ts
);
453 SET_FLASH_HWCONTROL();
458 static int hideep_program_nvm(struct hideep_ts
*ts
,
459 const __be32
*ucode
, size_t ucode_len
)
461 struct pgm_packet
*packet_r
= (void *)ts
->xfer_buf
;
462 __be32
*current_ucode
= packet_r
->payload
;
468 hideep_nvm_unlock(ts
);
470 while (ucode_len
> 0) {
471 xfer_len
= min_t(size_t, ucode_len
, HIDEEP_NVM_PAGE_SIZE
);
472 xfer_count
= xfer_len
/ sizeof(*ucode
);
474 error
= hideep_pgm_r_mem(ts
, 0x00000000 + addr
,
475 current_ucode
, xfer_count
);
477 dev_err(&ts
->client
->dev
,
478 "%s: failed to read page at offset %#08x: %d\n",
479 __func__
, addr
, error
);
483 /* See if the page needs updating */
484 if (memcmp(ucode
, current_ucode
, xfer_len
)) {
485 error
= hideep_program_page(ts
, addr
,
488 dev_err(&ts
->client
->dev
,
489 "%s: iwrite failure @%#08x: %d\n",
490 __func__
, addr
, error
);
494 usleep_range(1000, 1100);
499 ucode_len
-= xfer_len
;
505 static int hideep_verify_nvm(struct hideep_ts
*ts
,
506 const __be32
*ucode
, size_t ucode_len
)
508 struct pgm_packet
*packet_r
= (void *)ts
->xfer_buf
;
509 __be32
*current_ucode
= packet_r
->payload
;
516 while (ucode_len
> 0) {
517 xfer_len
= min_t(size_t, ucode_len
, HIDEEP_NVM_PAGE_SIZE
);
518 xfer_count
= xfer_len
/ sizeof(*ucode
);
520 error
= hideep_pgm_r_mem(ts
, 0x00000000 + addr
,
521 current_ucode
, xfer_count
);
523 dev_err(&ts
->client
->dev
,
524 "%s: failed to read page at offset %#08x: %d\n",
525 __func__
, addr
, error
);
529 if (memcmp(ucode
, current_ucode
, xfer_len
)) {
530 const u8
*ucode_bytes
= (const u8
*)ucode
;
531 const u8
*current_bytes
= (const u8
*)current_ucode
;
533 for (i
= 0; i
< xfer_len
; i
++)
534 if (ucode_bytes
[i
] != current_bytes
[i
])
535 dev_err(&ts
->client
->dev
,
536 "%s: mismatch @%#08x: (%#02x vs %#02x)\n",
546 ucode_len
-= xfer_len
;
552 static int hideep_load_dwz(struct hideep_ts
*ts
)
557 error
= hideep_enter_pgm(ts
);
563 error
= hideep_pgm_r_mem(ts
, HIDEEP_DWZ_INFO
,
564 (void *)&ts
->dwz_info
,
565 sizeof(ts
->dwz_info
) / sizeof(__be32
));
571 dev_err(&ts
->client
->dev
,
572 "failed to fetch DWZ data: %d\n", error
);
576 product_code
= be16_to_cpu(ts
->dwz_info
.product_code
);
578 switch (product_code
& 0xF0) {
580 dev_dbg(&ts
->client
->dev
, "used crimson IC");
581 ts
->fw_size
= 1024 * 48;
582 ts
->nvm_mask
= 0x00310000;
585 dev_dbg(&ts
->client
->dev
, "used lime IC");
586 ts
->fw_size
= 1024 * 64;
587 ts
->nvm_mask
= 0x0030027B;
590 dev_err(&ts
->client
->dev
, "product code is wrong: %#04x",
595 dev_dbg(&ts
->client
->dev
, "firmware release version: %#04x",
596 be16_to_cpu(ts
->dwz_info
.release_ver
));
601 static int hideep_flash_firmware(struct hideep_ts
*ts
,
602 const __be32
*ucode
, size_t ucode_len
)
607 while (retry_cnt
--) {
608 error
= hideep_program_nvm(ts
, ucode
, ucode_len
);
610 error
= hideep_verify_nvm(ts
, ucode
, ucode_len
);
619 static int hideep_update_firmware(struct hideep_ts
*ts
,
620 const __be32
*ucode
, size_t ucode_len
)
624 dev_dbg(&ts
->client
->dev
, "starting firmware update");
626 /* enter program mode */
627 error
= hideep_enter_pgm(ts
);
631 error
= hideep_flash_firmware(ts
, ucode
, ucode_len
);
633 dev_err(&ts
->client
->dev
,
634 "firmware update failed: %d\n", error
);
636 dev_dbg(&ts
->client
->dev
, "firmware updated successfully\n");
638 SW_RESET_IN_PGM(1000);
640 error2
= hideep_load_dwz(ts
);
642 dev_err(&ts
->client
->dev
,
643 "failed to load dwz after firmware update: %d\n",
646 return error
?: error2
;
649 static int hideep_power_on(struct hideep_ts
*ts
)
653 error
= regulator_enable(ts
->vcc_vdd
);
655 dev_err(&ts
->client
->dev
,
656 "failed to enable 'vdd' regulator: %d", error
);
658 usleep_range(999, 1000);
660 error
= regulator_enable(ts
->vcc_vid
);
662 dev_err(&ts
->client
->dev
,
663 "failed to enable 'vcc_vid' regulator: %d",
668 if (ts
->reset_gpio
) {
669 gpiod_set_value_cansleep(ts
->reset_gpio
, 0);
671 error
= regmap_write(ts
->reg
, HIDEEP_RESET_CMD
, 0x01);
673 dev_err(&ts
->client
->dev
,
674 "failed to send 'reset' command: %d\n", error
);
682 static void hideep_power_off(void *data
)
684 struct hideep_ts
*ts
= data
;
687 gpiod_set_value(ts
->reset_gpio
, 1);
689 regulator_disable(ts
->vcc_vid
);
690 regulator_disable(ts
->vcc_vdd
);
693 #define __GET_MT_TOOL_TYPE(type) ((type) == 0x01 ? MT_TOOL_FINGER : MT_TOOL_PEN)
695 static void hideep_report_slot(struct input_dev
*input
,
696 const struct hideep_event
*event
)
698 input_mt_slot(input
, event
->index
& 0x0f);
699 input_mt_report_slot_state(input
,
700 __GET_MT_TOOL_TYPE(event
->type
),
701 !(event
->flag
& HIDEEP_MT_RELEASED
));
702 if (!(event
->flag
& HIDEEP_MT_RELEASED
)) {
703 input_report_abs(input
, ABS_MT_POSITION_X
,
704 le16_to_cpup(&event
->x
));
705 input_report_abs(input
, ABS_MT_POSITION_Y
,
706 le16_to_cpup(&event
->y
));
707 input_report_abs(input
, ABS_MT_PRESSURE
,
708 le16_to_cpup(&event
->z
));
709 input_report_abs(input
, ABS_MT_TOUCH_MAJOR
, event
->w
);
713 static void hideep_parse_and_report(struct hideep_ts
*ts
)
715 const struct hideep_event
*events
=
716 (void *)&ts
->xfer_buf
[HIDEEP_TOUCH_EVENT_INDEX
];
717 const u8
*keys
= &ts
->xfer_buf
[HIDEEP_KEY_EVENT_INDEX
];
718 int touch_count
= ts
->xfer_buf
[0];
719 int key_count
= ts
->xfer_buf
[1] & 0x0f;
720 int lpm_count
= ts
->xfer_buf
[1] & 0xf0;
723 /* get touch event count */
724 dev_dbg(&ts
->client
->dev
, "mt = %d, key = %d, lpm = %02x",
725 touch_count
, key_count
, lpm_count
);
727 touch_count
= min(touch_count
, HIDEEP_MT_MAX
);
728 for (i
= 0; i
< touch_count
; i
++)
729 hideep_report_slot(ts
->input_dev
, events
+ i
);
731 key_count
= min(key_count
, HIDEEP_KEY_MAX
);
732 for (i
= 0; i
< key_count
; i
++) {
733 u8 key_data
= keys
[i
* 2];
735 input_report_key(ts
->input_dev
,
736 ts
->key_codes
[key_data
& HIDEEP_KEY_IDX_MASK
],
737 key_data
& HIDEEP_KEY_PRESSED_MASK
);
740 input_mt_sync_frame(ts
->input_dev
);
741 input_sync(ts
->input_dev
);
744 static irqreturn_t
hideep_irq(int irq
, void *handle
)
746 struct hideep_ts
*ts
= handle
;
749 BUILD_BUG_ON(HIDEEP_MAX_EVENT
> HIDEEP_XFER_BUF_SIZE
);
751 error
= regmap_bulk_read(ts
->reg
, HIDEEP_EVENT_ADDR
,
752 ts
->xfer_buf
, HIDEEP_MAX_EVENT
/ 2);
754 dev_err(&ts
->client
->dev
, "failed to read events: %d\n", error
);
758 hideep_parse_and_report(ts
);
764 static int hideep_get_axis_info(struct hideep_ts
*ts
)
769 error
= regmap_bulk_read(ts
->reg
, 0x28, val
, ARRAY_SIZE(val
));
773 ts
->prop
.max_x
= le16_to_cpup(val
);
774 ts
->prop
.max_y
= le16_to_cpup(val
+ 1);
776 dev_dbg(&ts
->client
->dev
, "X: %d, Y: %d",
777 ts
->prop
.max_x
, ts
->prop
.max_y
);
782 static int hideep_init_input(struct hideep_ts
*ts
)
784 struct device
*dev
= &ts
->client
->dev
;
788 ts
->input_dev
= devm_input_allocate_device(dev
);
789 if (!ts
->input_dev
) {
790 dev_err(dev
, "failed to allocate input device\n");
794 ts
->input_dev
->name
= HIDEEP_TS_NAME
;
795 ts
->input_dev
->id
.bustype
= BUS_I2C
;
796 input_set_drvdata(ts
->input_dev
, ts
);
798 input_set_capability(ts
->input_dev
, EV_ABS
, ABS_MT_POSITION_X
);
799 input_set_capability(ts
->input_dev
, EV_ABS
, ABS_MT_POSITION_Y
);
800 input_set_abs_params(ts
->input_dev
, ABS_MT_PRESSURE
, 0, 65535, 0, 0);
801 input_set_abs_params(ts
->input_dev
, ABS_MT_TOUCH_MAJOR
, 0, 255, 0, 0);
802 input_set_abs_params(ts
->input_dev
, ABS_MT_TOOL_TYPE
,
803 0, MT_TOOL_MAX
, 0, 0);
804 touchscreen_parse_properties(ts
->input_dev
, true, &ts
->prop
);
806 if (ts
->prop
.max_x
== 0 || ts
->prop
.max_y
== 0) {
807 error
= hideep_get_axis_info(ts
);
812 error
= input_mt_init_slots(ts
->input_dev
, HIDEEP_MT_MAX
,
817 ts
->key_num
= device_property_read_u32_array(dev
, "linux,keycodes",
819 if (ts
->key_num
> HIDEEP_KEY_MAX
) {
820 dev_err(dev
, "too many keys defined: %d\n",
825 if (ts
->key_num
<= 0) {
827 "missing or malformed 'linux,keycodes' property\n");
829 error
= device_property_read_u32_array(dev
, "linux,keycodes",
833 dev_dbg(dev
, "failed to read keymap: %d", error
);
838 ts
->input_dev
->keycode
= ts
->key_codes
;
839 ts
->input_dev
->keycodesize
= sizeof(ts
->key_codes
[0]);
840 ts
->input_dev
->keycodemax
= ts
->key_num
;
842 for (i
= 0; i
< ts
->key_num
; i
++)
843 input_set_capability(ts
->input_dev
, EV_KEY
,
848 error
= input_register_device(ts
->input_dev
);
850 dev_err(dev
, "failed to register input device: %d", error
);
857 static ssize_t
hideep_update_fw(struct device
*dev
,
858 struct device_attribute
*attr
,
859 const char *buf
, size_t count
)
861 struct i2c_client
*client
= to_i2c_client(dev
);
862 struct hideep_ts
*ts
= i2c_get_clientdata(client
);
863 const struct firmware
*fw_entry
;
868 error
= kstrtoint(buf
, 0, &mode
);
872 fw_name
= kasprintf(GFP_KERNEL
, "hideep_ts_%04x.bin",
873 be16_to_cpu(ts
->dwz_info
.product_id
));
877 error
= request_firmware(&fw_entry
, fw_name
, dev
);
879 dev_err(dev
, "failed to request firmware %s: %d",
881 goto out_free_fw_name
;
884 if (fw_entry
->size
% sizeof(__be32
)) {
885 dev_err(dev
, "invalid firmware size %zu\n", fw_entry
->size
);
890 if (fw_entry
->size
> ts
->fw_size
) {
891 dev_err(dev
, "fw size (%zu) is too big (memory size %d)\n",
892 fw_entry
->size
, ts
->fw_size
);
897 mutex_lock(&ts
->dev_mutex
);
898 disable_irq(client
->irq
);
900 error
= hideep_update_firmware(ts
, (const __be32
*)fw_entry
->data
,
903 enable_irq(client
->irq
);
904 mutex_unlock(&ts
->dev_mutex
);
907 release_firmware(fw_entry
);
911 return error
?: count
;
914 static ssize_t
hideep_fw_version_show(struct device
*dev
,
915 struct device_attribute
*attr
, char *buf
)
917 struct i2c_client
*client
= to_i2c_client(dev
);
918 struct hideep_ts
*ts
= i2c_get_clientdata(client
);
921 mutex_lock(&ts
->dev_mutex
);
922 len
= scnprintf(buf
, PAGE_SIZE
, "%04x\n",
923 be16_to_cpu(ts
->dwz_info
.release_ver
));
924 mutex_unlock(&ts
->dev_mutex
);
929 static ssize_t
hideep_product_id_show(struct device
*dev
,
930 struct device_attribute
*attr
, char *buf
)
932 struct i2c_client
*client
= to_i2c_client(dev
);
933 struct hideep_ts
*ts
= i2c_get_clientdata(client
);
936 mutex_lock(&ts
->dev_mutex
);
937 len
= scnprintf(buf
, PAGE_SIZE
, "%04x\n",
938 be16_to_cpu(ts
->dwz_info
.product_id
));
939 mutex_unlock(&ts
->dev_mutex
);
944 static DEVICE_ATTR(version
, 0664, hideep_fw_version_show
, NULL
);
945 static DEVICE_ATTR(product_id
, 0664, hideep_product_id_show
, NULL
);
946 static DEVICE_ATTR(update_fw
, 0664, NULL
, hideep_update_fw
);
948 static struct attribute
*hideep_ts_sysfs_entries
[] = {
949 &dev_attr_version
.attr
,
950 &dev_attr_product_id
.attr
,
951 &dev_attr_update_fw
.attr
,
955 static const struct attribute_group hideep_ts_attr_group
= {
956 .attrs
= hideep_ts_sysfs_entries
,
959 static int __maybe_unused
hideep_suspend(struct device
*dev
)
961 struct i2c_client
*client
= to_i2c_client(dev
);
962 struct hideep_ts
*ts
= i2c_get_clientdata(client
);
964 disable_irq(client
->irq
);
965 hideep_power_off(ts
);
970 static int __maybe_unused
hideep_resume(struct device
*dev
)
972 struct i2c_client
*client
= to_i2c_client(dev
);
973 struct hideep_ts
*ts
= i2c_get_clientdata(client
);
976 error
= hideep_power_on(ts
);
978 dev_err(&client
->dev
, "power on failed");
982 enable_irq(client
->irq
);
987 static SIMPLE_DEV_PM_OPS(hideep_pm_ops
, hideep_suspend
, hideep_resume
);
989 static const struct regmap_config hideep_regmap_config
= {
991 .reg_format_endian
= REGMAP_ENDIAN_LITTLE
,
993 .val_format_endian
= REGMAP_ENDIAN_LITTLE
,
994 .max_register
= 0xffff,
997 static int hideep_probe(struct i2c_client
*client
,
998 const struct i2c_device_id
*id
)
1000 struct hideep_ts
*ts
;
1004 if (!i2c_check_functionality(client
->adapter
, I2C_FUNC_I2C
)) {
1005 dev_err(&client
->dev
, "check i2c device error");
1009 if (client
->irq
<= 0) {
1010 dev_err(&client
->dev
, "missing irq: %d\n", client
->irq
);
1014 ts
= devm_kzalloc(&client
->dev
, sizeof(*ts
), GFP_KERNEL
);
1018 ts
->client
= client
;
1019 i2c_set_clientdata(client
, ts
);
1020 mutex_init(&ts
->dev_mutex
);
1022 ts
->reg
= devm_regmap_init_i2c(client
, &hideep_regmap_config
);
1023 if (IS_ERR(ts
->reg
)) {
1024 error
= PTR_ERR(ts
->reg
);
1025 dev_err(&client
->dev
,
1026 "failed to initialize regmap: %d\n", error
);
1030 ts
->vcc_vdd
= devm_regulator_get(&client
->dev
, "vdd");
1031 if (IS_ERR(ts
->vcc_vdd
))
1032 return PTR_ERR(ts
->vcc_vdd
);
1034 ts
->vcc_vid
= devm_regulator_get(&client
->dev
, "vid");
1035 if (IS_ERR(ts
->vcc_vid
))
1036 return PTR_ERR(ts
->vcc_vid
);
1038 ts
->reset_gpio
= devm_gpiod_get_optional(&client
->dev
,
1039 "reset", GPIOD_OUT_HIGH
);
1040 if (IS_ERR(ts
->reset_gpio
))
1041 return PTR_ERR(ts
->reset_gpio
);
1043 error
= hideep_power_on(ts
);
1045 dev_err(&client
->dev
, "power on failed: %d\n", error
);
1049 error
= devm_add_action_or_reset(&client
->dev
, hideep_power_off
, ts
);
1053 error
= hideep_load_dwz(ts
);
1055 dev_err(&client
->dev
, "failed to load dwz: %d", error
);
1059 error
= hideep_init_input(ts
);
1063 error
= devm_request_threaded_irq(&client
->dev
, client
->irq
,
1064 NULL
, hideep_irq
, IRQF_ONESHOT
,
1067 dev_err(&client
->dev
, "failed to request irq %d: %d\n",
1068 client
->irq
, error
);
1072 error
= devm_device_add_group(&client
->dev
, &hideep_ts_attr_group
);
1074 dev_err(&client
->dev
,
1075 "failed to add sysfs attributes: %d\n", error
);
1082 static const struct i2c_device_id hideep_i2c_id
[] = {
1083 { HIDEEP_I2C_NAME
, 0 },
1086 MODULE_DEVICE_TABLE(i2c
, hideep_i2c_id
);
1089 static const struct acpi_device_id hideep_acpi_id
[] = {
1093 MODULE_DEVICE_TABLE(acpi
, hideep_acpi_id
);
1097 static const struct of_device_id hideep_match_table
[] = {
1098 { .compatible
= "hideep,hideep-ts" },
1101 MODULE_DEVICE_TABLE(of
, hideep_match_table
);
1104 static struct i2c_driver hideep_driver
= {
1106 .name
= HIDEEP_I2C_NAME
,
1107 .of_match_table
= of_match_ptr(hideep_match_table
),
1108 .acpi_match_table
= ACPI_PTR(hideep_acpi_id
),
1109 .pm
= &hideep_pm_ops
,
1111 .id_table
= hideep_i2c_id
,
1112 .probe
= hideep_probe
,
1115 module_i2c_driver(hideep_driver
);
1117 MODULE_DESCRIPTION("Driver for HiDeep Touchscreen Controller");
1118 MODULE_AUTHOR("anthony.kim@hideep.com");
1119 MODULE_LICENSE("GPL v2");