1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (c) 2016 Masaki Ota <masaki.ota@jp.alps.com>
6 #include <linux/kernel.h>
8 #include <linux/input.h>
9 #include <linux/input/mt.h>
10 #include <linux/module.h>
11 #include <asm/unaligned.h>
14 /* ALPS Device Product ID */
15 #define HID_PRODUCT_ID_T3_BTNLESS 0xD0C0
16 #define HID_PRODUCT_ID_COSMO 0x1202
17 #define HID_PRODUCT_ID_U1_PTP_1 0x1207
18 #define HID_PRODUCT_ID_U1 0x1209
19 #define HID_PRODUCT_ID_U1_PTP_2 0x120A
20 #define HID_PRODUCT_ID_U1_DUAL 0x120B
21 #define HID_PRODUCT_ID_T4_BTNLESS 0x120C
23 #define DEV_SINGLEPOINT 0x01
24 #define DEV_DUALPOINT 0x02
26 #define U1_MOUSE_REPORT_ID 0x01 /* Mouse data ReportID */
27 #define U1_ABSOLUTE_REPORT_ID 0x03 /* Absolute data ReportID */
28 #define U1_ABSOLUTE_REPORT_ID_SECD 0x02 /* FW-PTP Absolute data ReportID */
29 #define U1_FEATURE_REPORT_ID 0x05 /* Feature ReportID */
30 #define U1_SP_ABSOLUTE_REPORT_ID 0x06 /* Feature ReportID */
32 #define U1_FEATURE_REPORT_LEN 0x08 /* Feature Report Length */
33 #define U1_FEATURE_REPORT_LEN_ALL 0x0A
34 #define U1_CMD_REGISTER_READ 0xD1
35 #define U1_CMD_REGISTER_WRITE 0xD2
37 #define U1_DEVTYPE_SP_SUPPORT 0x10 /* SP Support */
38 #define U1_DISABLE_DEV 0x01
39 #define U1_TP_ABS_MODE 0x02
40 #define U1_SP_ABS_MODE 0x80
42 #define ADDRESS_U1_DEV_CTRL_1 0x00800040
43 #define ADDRESS_U1_DEVICE_TYP 0x00800043
44 #define ADDRESS_U1_NUM_SENS_X 0x00800047
45 #define ADDRESS_U1_NUM_SENS_Y 0x00800048
46 #define ADDRESS_U1_PITCH_SENS_X 0x00800049
47 #define ADDRESS_U1_PITCH_SENS_Y 0x0080004A
48 #define ADDRESS_U1_RESO_DWN_ABS 0x0080004E
49 #define ADDRESS_U1_PAD_BTN 0x00800052
50 #define ADDRESS_U1_SP_BTN 0x0080009F
52 #define T4_INPUT_REPORT_LEN sizeof(struct t4_input_report)
53 #define T4_FEATURE_REPORT_LEN T4_INPUT_REPORT_LEN
54 #define T4_FEATURE_REPORT_ID 7
55 #define T4_CMD_REGISTER_READ 0x08
56 #define T4_CMD_REGISTER_WRITE 0x07
58 #define T4_ADDRESS_BASE 0xC2C0
59 #define PRM_SYS_CONFIG_1 (T4_ADDRESS_BASE + 0x0002)
60 #define T4_PRM_FEED_CONFIG_1 (T4_ADDRESS_BASE + 0x0004)
61 #define T4_PRM_FEED_CONFIG_4 (T4_ADDRESS_BASE + 0x001A)
62 #define T4_PRM_ID_CONFIG_3 (T4_ADDRESS_BASE + 0x00B0)
65 #define T4_FEEDCFG4_ADVANCED_ABS_ENABLE 0x01
66 #define T4_I2C_ABS 0x78
68 #define T4_COUNT_PER_ELECTRODE 256
79 * @input: pointer to the kernel input device
80 * @input2: pointer to the kernel input2 device
81 * @hdev: pointer to the struct hid_device
83 * @dev_type: device type
84 * @max_fingers: total number of fingers
85 * @has_sp: boolean of sp existense
86 * @sp_btn_info: button information
87 * @x_active_len_mm: active area length of X (mm)
88 * @y_active_len_mm: active area length of Y (mm)
89 * @x_max: maximum x coordinate value
90 * @y_max: maximum y coordinate value
91 * @x_min: minimum x coordinate value
92 * @y_min: minimum y coordinate value
93 * @btn_cnt: number of buttons
94 * @sp_btn_cnt: number of stick buttons
97 struct input_dev
*input
;
98 struct input_dev
*input2
;
99 struct hid_device
*hdev
;
101 enum dev_num dev_type
;
115 struct t4_contact_data
{
123 struct t4_input_report
{
126 struct t4_contact_data contact
[5];
135 static u16
t4_calc_check_sum(u8
*buffer
,
136 unsigned long offset
, unsigned long length
)
138 u16 sum1
= 0xFF, sum2
= 0xFF;
141 if (offset
+ length
>= 50)
145 u32 tlen
= length
> 20 ? 20 : length
;
150 sum1
+= buffer
[offset
+ i
];
153 } while (--tlen
> 0);
155 sum1
= (sum1
& 0xFF) + (sum1
>> 8);
156 sum2
= (sum2
& 0xFF) + (sum2
>> 8);
159 sum1
= (sum1
& 0xFF) + (sum1
>> 8);
160 sum2
= (sum2
& 0xFF) + (sum2
>> 8);
162 return(sum2
<< 8 | sum1
);
165 static int t4_read_write_register(struct hid_device
*hdev
, u32 address
,
166 u8
*read_val
, u8 write_val
, bool read_flag
)
173 input
= kzalloc(T4_FEATURE_REPORT_LEN
, GFP_KERNEL
);
177 input
[0] = T4_FEATURE_REPORT_ID
;
179 input
[1] = T4_CMD_REGISTER_READ
;
182 input
[1] = T4_CMD_REGISTER_WRITE
;
183 input
[8] = write_val
;
185 put_unaligned_le32(address
, input
+ 2);
189 /* Calculate the checksum */
190 check_sum
= t4_calc_check_sum(input
, 1, 8);
191 input
[9] = (u8
)check_sum
;
192 input
[10] = (u8
)(check_sum
>> 8);
195 ret
= hid_hw_raw_request(hdev
, T4_FEATURE_REPORT_ID
, input
,
196 T4_FEATURE_REPORT_LEN
,
197 HID_FEATURE_REPORT
, HID_REQ_SET_REPORT
);
200 dev_err(&hdev
->dev
, "failed to read command (%d)\n", ret
);
205 readbuf
= kzalloc(T4_FEATURE_REPORT_LEN
, GFP_KERNEL
);
211 ret
= hid_hw_raw_request(hdev
, T4_FEATURE_REPORT_ID
, readbuf
,
212 T4_FEATURE_REPORT_LEN
,
213 HID_FEATURE_REPORT
, HID_REQ_GET_REPORT
);
215 dev_err(&hdev
->dev
, "failed read register (%d)\n", ret
);
221 if (*(u32
*)&readbuf
[6] != address
) {
222 dev_err(&hdev
->dev
, "read register address error (%x,%x)\n",
223 *(u32
*)&readbuf
[6], address
);
227 if (*(u16
*)&readbuf
[10] != 1) {
228 dev_err(&hdev
->dev
, "read register size error (%x)\n",
229 *(u16
*)&readbuf
[10]);
233 check_sum
= t4_calc_check_sum(readbuf
, 6, 7);
234 if (*(u16
*)&readbuf
[13] != check_sum
) {
235 dev_err(&hdev
->dev
, "read register checksum error (%x,%x)\n",
236 *(u16
*)&readbuf
[13], check_sum
);
240 *read_val
= readbuf
[12];
252 static int u1_read_write_register(struct hid_device
*hdev
, u32 address
,
253 u8
*read_val
, u8 write_val
, bool read_flag
)
260 input
= kzalloc(U1_FEATURE_REPORT_LEN
, GFP_KERNEL
);
264 input
[0] = U1_FEATURE_REPORT_ID
;
266 input
[1] = U1_CMD_REGISTER_READ
;
269 input
[1] = U1_CMD_REGISTER_WRITE
;
270 input
[6] = write_val
;
273 put_unaligned_le32(address
, input
+ 2);
275 /* Calculate the checksum */
276 check_sum
= U1_FEATURE_REPORT_LEN_ALL
;
277 for (i
= 0; i
< U1_FEATURE_REPORT_LEN
- 1; i
++)
278 check_sum
+= input
[i
];
280 input
[7] = check_sum
;
281 ret
= hid_hw_raw_request(hdev
, U1_FEATURE_REPORT_ID
, input
,
282 U1_FEATURE_REPORT_LEN
,
283 HID_FEATURE_REPORT
, HID_REQ_SET_REPORT
);
286 dev_err(&hdev
->dev
, "failed to read command (%d)\n", ret
);
291 readbuf
= kzalloc(U1_FEATURE_REPORT_LEN
, GFP_KERNEL
);
297 ret
= hid_hw_raw_request(hdev
, U1_FEATURE_REPORT_ID
, readbuf
,
298 U1_FEATURE_REPORT_LEN
,
299 HID_FEATURE_REPORT
, HID_REQ_GET_REPORT
);
302 dev_err(&hdev
->dev
, "failed read register (%d)\n", ret
);
307 *read_val
= readbuf
[6];
319 static int t4_raw_event(struct alps_dev
*hdata
, u8
*data
, int size
)
321 unsigned int x
, y
, z
;
323 struct t4_input_report
*p_report
= (struct t4_input_report
*)data
;
327 for (i
= 0; i
< hdata
->max_fingers
; i
++) {
328 x
= p_report
->contact
[i
].x_hi
<< 8 | p_report
->contact
[i
].x_lo
;
329 y
= p_report
->contact
[i
].y_hi
<< 8 | p_report
->contact
[i
].y_lo
;
330 y
= hdata
->y_max
- y
+ hdata
->y_min
;
331 z
= (p_report
->contact
[i
].palm
< 0x80 &&
332 p_report
->contact
[i
].palm
> 0) * 62;
338 input_mt_slot(hdata
->input
, i
);
340 input_mt_report_slot_state(hdata
->input
,
341 MT_TOOL_FINGER
, z
!= 0);
346 input_report_abs(hdata
->input
, ABS_MT_POSITION_X
, x
);
347 input_report_abs(hdata
->input
, ABS_MT_POSITION_Y
, y
);
348 input_report_abs(hdata
->input
, ABS_MT_PRESSURE
, z
);
350 input_mt_sync_frame(hdata
->input
);
352 input_report_key(hdata
->input
, BTN_LEFT
, p_report
->button
);
354 input_sync(hdata
->input
);
358 static int u1_raw_event(struct alps_dev
*hdata
, u8
*data
, int size
)
360 unsigned int x
, y
, z
;
367 case U1_MOUSE_REPORT_ID
:
369 case U1_FEATURE_REPORT_ID
:
371 case U1_ABSOLUTE_REPORT_ID
:
372 case U1_ABSOLUTE_REPORT_ID_SECD
:
373 for (i
= 0; i
< hdata
->max_fingers
; i
++) {
374 u8
*contact
= &data
[i
* 5];
376 x
= get_unaligned_le16(contact
+ 3);
377 y
= get_unaligned_le16(contact
+ 5);
378 z
= contact
[7] & 0x7F;
380 input_mt_slot(hdata
->input
, i
);
383 input_mt_report_slot_state(hdata
->input
,
385 input_report_abs(hdata
->input
,
386 ABS_MT_POSITION_X
, x
);
387 input_report_abs(hdata
->input
,
388 ABS_MT_POSITION_Y
, y
);
389 input_report_abs(hdata
->input
,
392 input_mt_report_slot_inactive(hdata
->input
);
396 input_mt_sync_frame(hdata
->input
);
398 input_report_key(hdata
->input
, BTN_LEFT
,
400 input_report_key(hdata
->input
, BTN_RIGHT
,
402 input_report_key(hdata
->input
, BTN_MIDDLE
,
405 input_sync(hdata
->input
);
409 case U1_SP_ABSOLUTE_REPORT_ID
:
410 sp_x
= get_unaligned_le16(data
+2);
411 sp_y
= get_unaligned_le16(data
+4);
416 input_report_rel(hdata
->input2
, REL_X
, sp_x
);
417 input_report_rel(hdata
->input2
, REL_Y
, sp_y
);
419 input_report_key(hdata
->input2
, BTN_LEFT
,
421 input_report_key(hdata
->input2
, BTN_RIGHT
,
423 input_report_key(hdata
->input2
, BTN_MIDDLE
,
426 input_sync(hdata
->input2
);
434 static int alps_raw_event(struct hid_device
*hdev
,
435 struct hid_report
*report
, u8
*data
, int size
)
438 struct alps_dev
*hdata
= hid_get_drvdata(hdev
);
440 switch (hdev
->product
) {
441 case HID_PRODUCT_ID_T4_BTNLESS
:
442 ret
= t4_raw_event(hdata
, data
, size
);
445 ret
= u1_raw_event(hdata
, data
, size
);
451 static int __maybe_unused
alps_post_reset(struct hid_device
*hdev
)
454 struct alps_dev
*data
= hid_get_drvdata(hdev
);
456 switch (data
->dev_type
) {
458 ret
= t4_read_write_register(hdev
, T4_PRM_FEED_CONFIG_1
,
459 NULL
, T4_I2C_ABS
, false);
461 dev_err(&hdev
->dev
, "failed T4_PRM_FEED_CONFIG_1 (%d)\n",
466 ret
= t4_read_write_register(hdev
, T4_PRM_FEED_CONFIG_4
,
467 NULL
, T4_FEEDCFG4_ADVANCED_ABS_ENABLE
, false);
469 dev_err(&hdev
->dev
, "failed T4_PRM_FEED_CONFIG_4 (%d)\n",
475 ret
= u1_read_write_register(hdev
,
476 ADDRESS_U1_DEV_CTRL_1
, NULL
,
477 U1_TP_ABS_MODE
| U1_SP_ABS_MODE
, false);
479 dev_err(&hdev
->dev
, "failed to change TP mode (%d)\n",
492 static int __maybe_unused
alps_post_resume(struct hid_device
*hdev
)
494 return alps_post_reset(hdev
);
497 static int u1_init(struct hid_device
*hdev
, struct alps_dev
*pri_data
)
500 u8 tmp
, dev_ctrl
, sen_line_num_x
, sen_line_num_y
;
501 u8 pitch_x
, pitch_y
, resolution
;
503 /* Device initialization */
504 ret
= u1_read_write_register(hdev
, ADDRESS_U1_DEV_CTRL_1
,
507 dev_err(&hdev
->dev
, "failed U1_DEV_CTRL_1 (%d)\n", ret
);
511 dev_ctrl
&= ~U1_DISABLE_DEV
;
512 dev_ctrl
|= U1_TP_ABS_MODE
;
513 ret
= u1_read_write_register(hdev
, ADDRESS_U1_DEV_CTRL_1
,
514 NULL
, dev_ctrl
, false);
516 dev_err(&hdev
->dev
, "failed to change TP mode (%d)\n", ret
);
520 ret
= u1_read_write_register(hdev
, ADDRESS_U1_NUM_SENS_X
,
521 &sen_line_num_x
, 0, true);
523 dev_err(&hdev
->dev
, "failed U1_NUM_SENS_X (%d)\n", ret
);
527 ret
= u1_read_write_register(hdev
, ADDRESS_U1_NUM_SENS_Y
,
528 &sen_line_num_y
, 0, true);
530 dev_err(&hdev
->dev
, "failed U1_NUM_SENS_Y (%d)\n", ret
);
534 ret
= u1_read_write_register(hdev
, ADDRESS_U1_PITCH_SENS_X
,
537 dev_err(&hdev
->dev
, "failed U1_PITCH_SENS_X (%d)\n", ret
);
541 ret
= u1_read_write_register(hdev
, ADDRESS_U1_PITCH_SENS_Y
,
544 dev_err(&hdev
->dev
, "failed U1_PITCH_SENS_Y (%d)\n", ret
);
548 ret
= u1_read_write_register(hdev
, ADDRESS_U1_RESO_DWN_ABS
,
549 &resolution
, 0, true);
551 dev_err(&hdev
->dev
, "failed U1_RESO_DWN_ABS (%d)\n", ret
);
554 pri_data
->x_active_len_mm
=
555 (pitch_x
* (sen_line_num_x
- 1)) / 10;
556 pri_data
->y_active_len_mm
=
557 (pitch_y
* (sen_line_num_y
- 1)) / 10;
560 (resolution
<< 2) * (sen_line_num_x
- 1);
563 (resolution
<< 2) * (sen_line_num_y
- 1);
566 ret
= u1_read_write_register(hdev
, ADDRESS_U1_PAD_BTN
,
569 dev_err(&hdev
->dev
, "failed U1_PAD_BTN (%d)\n", ret
);
572 if ((tmp
& 0x0F) == (tmp
& 0xF0) >> 4) {
573 pri_data
->btn_cnt
= (tmp
& 0x0F);
576 pri_data
->btn_cnt
= 1;
579 pri_data
->has_sp
= 0;
580 /* Check StickPointer device */
581 ret
= u1_read_write_register(hdev
, ADDRESS_U1_DEVICE_TYP
,
584 dev_err(&hdev
->dev
, "failed U1_DEVICE_TYP (%d)\n", ret
);
587 if (tmp
& U1_DEVTYPE_SP_SUPPORT
) {
588 dev_ctrl
|= U1_SP_ABS_MODE
;
589 ret
= u1_read_write_register(hdev
, ADDRESS_U1_DEV_CTRL_1
,
590 NULL
, dev_ctrl
, false);
592 dev_err(&hdev
->dev
, "failed SP mode (%d)\n", ret
);
596 ret
= u1_read_write_register(hdev
, ADDRESS_U1_SP_BTN
,
597 &pri_data
->sp_btn_info
, 0, true);
599 dev_err(&hdev
->dev
, "failed U1_SP_BTN (%d)\n", ret
);
602 pri_data
->has_sp
= 1;
604 pri_data
->max_fingers
= 5;
609 static int T4_init(struct hid_device
*hdev
, struct alps_dev
*pri_data
)
612 u8 tmp
, sen_line_num_x
, sen_line_num_y
;
614 ret
= t4_read_write_register(hdev
, T4_PRM_ID_CONFIG_3
, &tmp
, 0, true);
616 dev_err(&hdev
->dev
, "failed T4_PRM_ID_CONFIG_3 (%d)\n", ret
);
619 sen_line_num_x
= 16 + ((tmp
& 0x0F) | (tmp
& 0x08 ? 0xF0 : 0));
620 sen_line_num_y
= 12 + (((tmp
& 0xF0) >> 4) | (tmp
& 0x80 ? 0xF0 : 0));
622 pri_data
->x_max
= sen_line_num_x
* T4_COUNT_PER_ELECTRODE
;
623 pri_data
->x_min
= T4_COUNT_PER_ELECTRODE
;
624 pri_data
->y_max
= sen_line_num_y
* T4_COUNT_PER_ELECTRODE
;
625 pri_data
->y_min
= T4_COUNT_PER_ELECTRODE
;
626 pri_data
->x_active_len_mm
= pri_data
->y_active_len_mm
= 0;
627 pri_data
->btn_cnt
= 1;
629 ret
= t4_read_write_register(hdev
, PRM_SYS_CONFIG_1
, &tmp
, 0, true);
631 dev_err(&hdev
->dev
, "failed PRM_SYS_CONFIG_1 (%d)\n", ret
);
635 ret
= t4_read_write_register(hdev
, PRM_SYS_CONFIG_1
, NULL
, tmp
, false);
637 dev_err(&hdev
->dev
, "failed PRM_SYS_CONFIG_1 (%d)\n", ret
);
641 ret
= t4_read_write_register(hdev
, T4_PRM_FEED_CONFIG_1
,
642 NULL
, T4_I2C_ABS
, false);
644 dev_err(&hdev
->dev
, "failed T4_PRM_FEED_CONFIG_1 (%d)\n", ret
);
648 ret
= t4_read_write_register(hdev
, T4_PRM_FEED_CONFIG_4
, NULL
,
649 T4_FEEDCFG4_ADVANCED_ABS_ENABLE
, false);
651 dev_err(&hdev
->dev
, "failed T4_PRM_FEED_CONFIG_4 (%d)\n", ret
);
654 pri_data
->max_fingers
= 5;
655 pri_data
->has_sp
= 0;
660 static int alps_sp_open(struct input_dev
*dev
)
662 struct hid_device
*hid
= input_get_drvdata(dev
);
664 return hid_hw_open(hid
);
667 static void alps_sp_close(struct input_dev
*dev
)
669 struct hid_device
*hid
= input_get_drvdata(dev
);
674 static int alps_input_configured(struct hid_device
*hdev
, struct hid_input
*hi
)
676 struct alps_dev
*data
= hid_get_drvdata(hdev
);
677 struct input_dev
*input
= hi
->input
, *input2
;
683 hid_dbg(hdev
, "Opening low level driver\n");
684 ret
= hid_hw_open(hdev
);
688 /* Allow incoming hid reports */
689 hid_device_io_start(hdev
);
690 switch (data
->dev_type
) {
692 ret
= T4_init(hdev
, data
);
695 ret
= u1_init(hdev
, data
);
704 __set_bit(EV_ABS
, input
->evbit
);
705 input_set_abs_params(input
, ABS_MT_POSITION_X
,
706 data
->x_min
, data
->x_max
, 0, 0);
707 input_set_abs_params(input
, ABS_MT_POSITION_Y
,
708 data
->y_min
, data
->y_max
, 0, 0);
710 if (data
->x_active_len_mm
&& data
->y_active_len_mm
) {
711 res_x
= (data
->x_max
- 1) / data
->x_active_len_mm
;
712 res_y
= (data
->y_max
- 1) / data
->y_active_len_mm
;
714 input_abs_set_res(input
, ABS_MT_POSITION_X
, res_x
);
715 input_abs_set_res(input
, ABS_MT_POSITION_Y
, res_y
);
718 input_set_abs_params(input
, ABS_MT_PRESSURE
, 0, 64, 0, 0);
720 input_mt_init_slots(input
, data
->max_fingers
, INPUT_MT_POINTER
);
722 __set_bit(EV_KEY
, input
->evbit
);
724 if (data
->btn_cnt
== 1)
725 __set_bit(INPUT_PROP_BUTTONPAD
, input
->propbit
);
727 for (i
= 0; i
< data
->btn_cnt
; i
++)
728 __set_bit(BTN_LEFT
+ i
, input
->keybit
);
730 /* Stick device initialization */
732 input2
= input_allocate_device();
738 data
->input2
= input2
;
739 input2
->phys
= input
->phys
;
740 input2
->name
= "DualPoint Stick";
741 input2
->id
.bustype
= BUS_I2C
;
742 input2
->id
.vendor
= input
->id
.vendor
;
743 input2
->id
.product
= input
->id
.product
;
744 input2
->id
.version
= input
->id
.version
;
745 input2
->dev
.parent
= input
->dev
.parent
;
747 input_set_drvdata(input2
, hdev
);
748 input2
->open
= alps_sp_open
;
749 input2
->close
= alps_sp_close
;
751 __set_bit(EV_KEY
, input2
->evbit
);
752 data
->sp_btn_cnt
= (data
->sp_btn_info
& 0x0F);
753 for (i
= 0; i
< data
->sp_btn_cnt
; i
++)
754 __set_bit(BTN_LEFT
+ i
, input2
->keybit
);
756 __set_bit(EV_REL
, input2
->evbit
);
757 __set_bit(REL_X
, input2
->relbit
);
758 __set_bit(REL_Y
, input2
->relbit
);
759 __set_bit(INPUT_PROP_POINTER
, input2
->propbit
);
760 __set_bit(INPUT_PROP_POINTING_STICK
, input2
->propbit
);
762 if (input_register_device(data
->input2
)) {
763 input_free_device(input2
);
769 hid_device_io_stop(hdev
);
774 static int alps_input_mapping(struct hid_device
*hdev
,
775 struct hid_input
*hi
, struct hid_field
*field
,
776 struct hid_usage
*usage
, unsigned long **bit
, int *max
)
781 static int alps_probe(struct hid_device
*hdev
, const struct hid_device_id
*id
)
783 struct alps_dev
*data
= NULL
;
785 data
= devm_kzalloc(&hdev
->dev
, sizeof(struct alps_dev
), GFP_KERNEL
);
790 hid_set_drvdata(hdev
, data
);
792 hdev
->quirks
|= HID_QUIRK_NO_INIT_REPORTS
;
794 ret
= hid_parse(hdev
);
796 hid_err(hdev
, "parse failed\n");
800 switch (hdev
->product
) {
801 case HID_DEVICE_ID_ALPS_T4_BTNLESS
:
804 case HID_DEVICE_ID_ALPS_U1_DUAL
:
805 case HID_DEVICE_ID_ALPS_U1
:
806 case HID_DEVICE_ID_ALPS_U1_UNICORN_LEGACY
:
810 data
->dev_type
= UNKNOWN
;
813 ret
= hid_hw_start(hdev
, HID_CONNECT_DEFAULT
);
815 hid_err(hdev
, "hw start failed\n");
822 static void alps_remove(struct hid_device
*hdev
)
827 static const struct hid_device_id alps_id
[] = {
828 { HID_DEVICE(HID_BUS_ANY
, HID_GROUP_ANY
,
829 USB_VENDOR_ID_ALPS_JP
, HID_DEVICE_ID_ALPS_U1_DUAL
) },
830 { HID_DEVICE(HID_BUS_ANY
, HID_GROUP_ANY
,
831 USB_VENDOR_ID_ALPS_JP
, HID_DEVICE_ID_ALPS_U1
) },
832 { HID_DEVICE(HID_BUS_ANY
, HID_GROUP_ANY
,
833 USB_VENDOR_ID_ALPS_JP
, HID_DEVICE_ID_ALPS_T4_BTNLESS
) },
836 MODULE_DEVICE_TABLE(hid
, alps_id
);
838 static struct hid_driver alps_driver
= {
842 .remove
= alps_remove
,
843 .raw_event
= alps_raw_event
,
844 .input_mapping
= alps_input_mapping
,
845 .input_configured
= alps_input_configured
,
847 .resume
= alps_post_resume
,
848 .reset_resume
= alps_post_reset
,
852 module_hid_driver(alps_driver
);
854 MODULE_AUTHOR("Masaki Ota <masaki.ota@jp.alps.com>");
855 MODULE_DESCRIPTION("ALPS HID driver");
856 MODULE_LICENSE("GPL");