7a45231ef6aa05675978ba49a5cb7f206c99bba5
[firefly-linux-kernel-4.4.55.git] / drivers / hid / hid-alps.c
1 /*
2  *  Copyright (c) 2016 Masaki Ota <masaki.ota@jp.alps.com>
3  *
4  * This program is free software; you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License as published by the Free
6  * Software Foundation; either version 2 of the License, or (at your option)
7  * any later version.
8  */
9
10 #include <linux/kernel.h>
11 #include <linux/hid.h>
12 #include <linux/input.h>
13 #include <linux/input/mt.h>
14 #include <linux/module.h>
15 #include <asm/unaligned.h>
16 #include "hid-ids.h"
17
18 /* ALPS Device Product ID */
19 #define HID_PRODUCT_ID_T3_BTNLESS       0xD0C0
20 #define HID_PRODUCT_ID_COSMO            0x1202
21 #define HID_PRODUCT_ID_U1_PTP_1         0x1207
22 #define HID_PRODUCT_ID_U1                       0x1209
23 #define HID_PRODUCT_ID_U1_PTP_2         0x120A
24 #define HID_PRODUCT_ID_U1_DUAL          0x120B
25 #define HID_PRODUCT_ID_T4_BTNLESS       0x120C
26
27 #define DEV_SINGLEPOINT                         0x01
28 #define DEV_DUALPOINT                           0x02
29
30 #define U1_MOUSE_REPORT_ID                      0x01 /* Mouse data ReportID */
31 #define U1_ABSOLUTE_REPORT_ID           0x03 /* Absolute data ReportID */
32 #define U1_FEATURE_REPORT_ID            0x05 /* Feature ReportID */
33 #define U1_SP_ABSOLUTE_REPORT_ID        0x06 /* Feature ReportID */
34
35 #define U1_FEATURE_REPORT_LEN           0x08 /* Feature Report Length */
36 #define U1_FEATURE_REPORT_LEN_ALL       0x0A
37 #define U1_CMD_REGISTER_READ            0xD1
38 #define U1_CMD_REGISTER_WRITE           0xD2
39
40 #define U1_DEVTYPE_SP_SUPPORT           0x10 /* SP Support */
41 #define U1_DISABLE_DEV                          0x01
42 #define U1_TP_ABS_MODE                          0x02
43 #define U1_SP_ABS_MODE                          0x80
44
45 #define ADDRESS_U1_DEV_CTRL_1   0x00800040
46 #define ADDRESS_U1_DEVICE_TYP   0x00800043
47 #define ADDRESS_U1_NUM_SENS_X   0x00800047
48 #define ADDRESS_U1_NUM_SENS_Y   0x00800048
49 #define ADDRESS_U1_PITCH_SENS_X 0x00800049
50 #define ADDRESS_U1_PITCH_SENS_Y 0x0080004A
51 #define ADDRESS_U1_RESO_DWN_ABS 0x0080004E
52 #define ADDRESS_U1_PAD_BTN              0x00800052
53 #define ADDRESS_U1_SP_BTN               0x0080009F
54
55 #define T4_INPUT_REPORT_LEN                     sizeof(T4_INPUT_REPORT)
56 #define T4_FEATURE_REPORT_LEN           T4_INPUT_REPORT_LEN
57 #define T4_FEATURE_REPORT_ID            7
58 #define T4_CMD_REGISTER_READ                    0x08
59 #define T4_CMD_REGISTER_WRITE                   0x07
60
61 #define T4_ADDRESS_BASE                         0xC2C0
62 #define PRM_SYS_CONFIG_1                        (T4_ADDRESS_BASE + 0x0002)
63 #define T4_PRM_FEED_CONFIG_1            (T4_ADDRESS_BASE + 0x0004)
64 #define T4_PRM_FEED_CONFIG_4            (T4_ADDRESS_BASE + 0x001A)
65 #define T4_PRM_ID_CONFIG_3                      (T4_ADDRESS_BASE + 0x00B0)
66
67 #define T4_FEEDCFG4_ADVANCED_ABS_ENABLE                 0x01
68 #define T4_I2C_ABS      0x78
69
70 #define T4_COUNT_PER_ELECTRODE          256
71 #define MAX_TOUCHES     5
72
73 typedef enum {
74         U1,
75         T4,
76         UNKNOWN,
77 } DEV_TYPE;
78 /**
79  * struct u1_data
80  *
81  * @input: pointer to the kernel input device
82  * @input2: pointer to the kernel input2 device
83  * @hdev: pointer to the struct hid_device
84  *
85  * @dev_type: device type
86  * @max_fingers: total number of fingers
87  * @has_sp: boolean of sp existense
88  * @sp_btn_info: button information
89  * @x_active_len_mm: active area length of X (mm)
90  * @y_active_len_mm: active area length of Y (mm)
91  * @x_max: maximum x coordinate value
92  * @y_max: maximum y coordinate value
93  * @x_min: minimum x coordinate value
94  * @y_min: minimum y coordinate value
95  * @btn_cnt: number of buttons
96  * @sp_btn_cnt: number of stick buttons
97  */
98 struct alps_dev {
99         struct input_dev *input;
100         struct input_dev *input2;
101         struct hid_device *hdev;
102
103         DEV_TYPE dev_type;
104         u8  max_fingers;
105         u8  has_sp;
106         u8      sp_btn_info;
107         u32     x_active_len_mm;
108         u32     y_active_len_mm;
109         u32     x_max;
110         u32     y_max;
111         u32     x_min;
112         u32     y_min;
113         u32     btn_cnt;
114         u32     sp_btn_cnt;
115 };
116
117 typedef struct _T4_CONTACT_DATA {
118         u8  Palm;
119         u8      x_lo;
120         u8      x_hi;
121         u8      y_lo;
122         u8      y_hi;
123 } T4_CONTACT_DATA, *PT4_CONTACT_DATA;
124
125 typedef struct _T4_INPUT_REPORT {
126         u8  ReportID;
127         u8  NumContacts;
128         T4_CONTACT_DATA Contact[5];
129         u8  Button;
130         u8  Track[5];
131         u8  ZX[5], ZY[5];
132         u8  PalmTime[5];
133         u8  Kilroy;
134         u16 TimeStamp;
135 } T4_INPUT_REPORT, *PT4_INPUT_REPORT;
136
137 static u16 t4_calc_check_sum(u8 *buffer, unsigned long offset, unsigned long length)
138 {
139         u16 sum1 = 0xFF, sum2 = 0xFF;
140         unsigned long i = 0;
141
142         if (offset + length >= 50)
143                 return 0;
144
145         while (length > 0) {
146                 u32 tlen = length > 20 ? 20 : length;
147
148                 length -= tlen;
149
150                 do {
151                         sum1 += buffer[offset + i];
152                         sum2 += sum1;
153                         i++;
154                 } while (--tlen > 0);
155
156                 sum1 = (sum1 & 0xFF) + (sum1 >> 8);
157                 sum2 = (sum2 & 0xFF) + (sum2 >> 8);
158         }
159
160         sum1 = (sum1 & 0xFF) + (sum1 >> 8);
161         sum2 = (sum2 & 0xFF) + (sum2 >> 8);
162
163         return(sum2 << 8 | sum1);
164 }
165
166 static int T4_read_write_register(struct hid_device *hdev, u32 address,
167         u8 *read_val, u8 write_val, bool read_flag)
168 {
169         int ret;
170         u16 check_sum;
171         u8 *input;
172         u8 *readbuf;
173
174         input = kzalloc(T4_FEATURE_REPORT_LEN, GFP_KERNEL);
175         if (!input)
176                 return -ENOMEM;
177
178         input[0] = T4_FEATURE_REPORT_ID;
179         if (read_flag) {
180                 input[1] = T4_CMD_REGISTER_READ;
181                 input[8] = 0x00;
182         } else {
183                 input[1] = T4_CMD_REGISTER_WRITE;
184                 input[8] = write_val;
185         }
186         put_unaligned_le32(address, input + 2);
187         input[6] = 1;
188         input[7] = 0;
189
190         /*Calculate amd append the checksum*/
191         check_sum = t4_calc_check_sum(input, 1, 8);
192         input[9] = (u8)check_sum;
193         input[10] = (u8)(check_sum >> 8);
194         input[11] = 0;
195
196         ret = hid_hw_raw_request(hdev, T4_FEATURE_REPORT_ID, input,
197                         T4_FEATURE_REPORT_LEN,
198                         HID_FEATURE_REPORT, HID_REQ_SET_REPORT);
199
200         if (ret < 0) {
201                 dev_err(&hdev->dev, "failed to read command (%d)\n", ret);
202                 goto exit;
203         }
204
205         if (read_flag) {
206                 readbuf = kzalloc(T4_FEATURE_REPORT_LEN, GFP_KERNEL);
207                 if (!readbuf) {
208                         kfree(input);
209                         return -ENOMEM;
210                 }
211
212                 ret = hid_hw_raw_request(hdev, T4_FEATURE_REPORT_ID, readbuf,
213                                 T4_FEATURE_REPORT_LEN,
214                                 HID_FEATURE_REPORT, HID_REQ_GET_REPORT);
215                 if (ret < 0) {
216                         dev_err(&hdev->dev, "failed read register (%d)\n", ret);
217                         goto exit;
218                 }
219                 if (*(u32 *)&readbuf[6] != address)
220                         hid_alert(hdev, "T4_read_write_register address error %x %x\n", *(u32 *)&readbuf[6], address);
221                 if (*(u16 *)&readbuf[10] != 1)
222                         hid_alert(hdev, "T4_read_write_register size error %x\n", *(u16 *)&readbuf[10]);
223                 check_sum = t4_calc_check_sum(readbuf, 6, 7);
224                 if (*(u16 *)&readbuf[13] != check_sum)
225                         hid_alert(hdev, "T4_read_write_register checksum error %x %x\n", *(u16 *)&readbuf[13], check_sum);
226                 *read_val = readbuf[12];
227
228                 kfree(readbuf);
229         }
230
231         ret = 0;
232
233 exit:
234         kfree(input);
235         return ret;
236 }
237
238 static int u1_read_write_register(struct hid_device *hdev, u32 address,
239         u8 *read_val, u8 write_val, bool read_flag)
240 {
241         int ret, i;
242         u8 check_sum;
243         u8 *input;
244         u8 *readbuf;
245
246         input = kzalloc(U1_FEATURE_REPORT_LEN, GFP_KERNEL);
247         if (!input)
248                 return -ENOMEM;
249
250         input[0] = U1_FEATURE_REPORT_ID;
251         if (read_flag) {
252                 input[1] = U1_CMD_REGISTER_READ;
253                 input[6] = 0x00;
254         } else {
255                 input[1] = U1_CMD_REGISTER_WRITE;
256                 input[6] = write_val;
257         }
258
259         put_unaligned_le32(address, input + 2);
260
261         /* Calculate the checksum */
262         check_sum = U1_FEATURE_REPORT_LEN_ALL;
263         for (i = 0; i < U1_FEATURE_REPORT_LEN - 1; i++)
264                 check_sum += input[i];
265
266         input[7] = check_sum;
267         ret = hid_hw_raw_request(hdev, U1_FEATURE_REPORT_ID, input,
268                         U1_FEATURE_REPORT_LEN,
269                         HID_FEATURE_REPORT, HID_REQ_SET_REPORT);
270
271         if (ret < 0) {
272                 dev_err(&hdev->dev, "failed to read command (%d)\n", ret);
273                 goto exit;
274         }
275
276         if (read_flag) {
277                 readbuf = kzalloc(U1_FEATURE_REPORT_LEN, GFP_KERNEL);
278                 if (!readbuf) {
279                         kfree(input);
280                         return -ENOMEM;
281                 }
282
283                 ret = hid_hw_raw_request(hdev, U1_FEATURE_REPORT_ID, readbuf,
284                                 U1_FEATURE_REPORT_LEN,
285                                 HID_FEATURE_REPORT, HID_REQ_GET_REPORT);
286
287                 if (ret < 0) {
288                         dev_err(&hdev->dev, "failed read register (%d)\n", ret);
289                         goto exit;
290                 }
291
292                 *read_val = readbuf[6];
293
294                 kfree(readbuf);
295         }
296
297         ret = 0;
298
299 exit:
300         kfree(input);
301         return ret;
302 }
303
304 static int T4_raw_event(struct alps_dev *hdata, u8 *data, int size)
305 {
306         unsigned int x, y, z;
307         int i;
308         PT4_INPUT_REPORT p_report = (PT4_INPUT_REPORT)data;
309
310         if (!data)
311                 return 0;
312         for (i = 0; i < hdata->max_fingers; i++) {
313                 x = p_report->Contact[i].x_hi << 8 | p_report->Contact[i].x_lo;
314                 y = p_report->Contact[i].y_hi << 8 | p_report->Contact[i].y_lo;
315                 y = hdata->y_max - y + hdata->y_min;
316                 z = (p_report->Contact[i].Palm < 0x80 && p_report->Contact[i].Palm > 0) * 62;
317                 if (x == 0xffff)
318                         x = 0, y = 0, z = 0;
319                 input_mt_slot(hdata->input, i);
320
321                 if (z != 0) {
322                         input_mt_report_slot_state(hdata->input, MT_TOOL_FINGER, 1);
323                 } else {
324                         input_mt_report_slot_state(hdata->input, MT_TOOL_FINGER, 0);
325                         continue;
326                 }
327
328                 input_report_abs(hdata->input, ABS_MT_POSITION_X, x);
329                 input_report_abs(hdata->input, ABS_MT_POSITION_Y, y);
330                 input_report_abs(hdata->input, ABS_MT_PRESSURE, z);
331         }
332         input_mt_sync_frame(hdata->input);
333
334         input_report_key(hdata->input, BTN_LEFT,        p_report->Button);
335
336         input_sync(hdata->input);
337         return 1;
338 }
339
340 static int U1_raw_event(struct alps_dev *hdata, u8 *data, int size)
341 {
342         unsigned int x, y, z;
343         short sp_x, sp_y;
344         int i;
345
346         if (!data)
347                 return 0;
348         switch (data[0]) {
349         case U1_MOUSE_REPORT_ID:
350                 break;
351         case U1_FEATURE_REPORT_ID:
352                 break;
353         case U1_ABSOLUTE_REPORT_ID:
354                 for (i = 0; i < hdata->max_fingers; i++) {
355                         u8 *contact = &data[i * 5];
356
357                         x = get_unaligned_le16(contact + 3);
358                         y = get_unaligned_le16(contact + 5);
359                         z = contact[7] & 0x7F;
360
361                         input_mt_slot(hdata->input, i);
362
363                         if (z != 0) {
364                                 input_mt_report_slot_state(hdata->input,
365                                         MT_TOOL_FINGER, 1);
366
367                                 input_report_abs(hdata->input, ABS_MT_POSITION_X, x);
368                                 input_report_abs(hdata->input, ABS_MT_POSITION_Y, y);
369                                 input_report_abs(hdata->input, ABS_MT_PRESSURE, z);
370                         } else {
371                                 input_mt_report_slot_state(hdata->input,
372                                         MT_TOOL_FINGER, 0);
373                         }
374                 }
375
376                 input_mt_sync_frame(hdata->input);
377
378                 input_report_key(hdata->input, BTN_LEFT,
379                         data[1] & 0x1);
380                 input_report_key(hdata->input, BTN_RIGHT,
381                         (data[1] & 0x2) >> 1);
382                 input_report_key(hdata->input, BTN_MIDDLE,
383                         (data[1] & 0x4) >> 2);
384
385                 input_sync(hdata->input);
386
387                 return 1;
388
389         case U1_SP_ABSOLUTE_REPORT_ID:
390                 sp_x = get_unaligned_le16(data + 2);
391                 sp_y = get_unaligned_le16(data + 4);
392
393                 sp_x = sp_x / 8;
394                 sp_y = sp_y / 8;
395
396                 input_report_rel(hdata->input2, REL_X, sp_x);
397                 input_report_rel(hdata->input2, REL_Y, sp_y);
398
399                 input_report_key(hdata->input2, BTN_LEFT,
400                         data[1] & 0x1);
401                 input_report_key(hdata->input2, BTN_RIGHT,
402                         (data[1] & 0x2) >> 1);
403                 input_report_key(hdata->input2, BTN_MIDDLE,
404                         (data[1] & 0x4) >> 2);
405
406                 input_sync(hdata->input2);
407
408                 return 1;
409         }
410         return 0;
411 }
412
413 static int alps_raw_event(struct hid_device *hdev,
414                 struct hid_report *report, u8 *data, int size)
415 {
416         int ret = 0;
417         struct alps_dev *hdata = hid_get_drvdata(hdev);
418
419         if (hdev->product == HID_PRODUCT_ID_T4_BTNLESS)
420                 ret = T4_raw_event(hdata, data, size);
421         else
422                 ret = U1_raw_event(hdata, data, size);
423         return ret;
424 }
425
426 #ifdef CONFIG_PM
427 static int alps_post_reset(struct hid_device *hdev)
428 {
429         int ret = -1;
430         struct alps_dev *data = hid_get_drvdata(hdev);
431
432         switch (data->dev_type) {
433         case T4:
434                 ret = T4_read_write_register(hdev, T4_PRM_FEED_CONFIG_1,
435                         NULL, T4_I2C_ABS, false);
436                 ret = T4_read_write_register(hdev, T4_PRM_FEED_CONFIG_4,
437                         NULL, T4_FEEDCFG4_ADVANCED_ABS_ENABLE, false);
438                 break;
439         case U1:
440                 ret = u1_read_write_register(hdev, ADDRESS_U1_DEV_CTRL_1,
441                         NULL, U1_TP_ABS_MODE | U1_SP_ABS_MODE, false);
442                 break;
443         default:
444                 break;
445         }
446         return ret;
447 }
448
449 static int alps_post_resume(struct hid_device *hdev)
450 {
451         return alps_post_reset(hdev);
452 }
453 #endif /* CONFIG_PM */
454
455 static int u1_init(struct hid_device *hdev, struct alps_dev *pri_data)
456 {
457         int ret;
458         u8 tmp, dev_ctrl, sen_line_num_x, sen_line_num_y, pitch_x, pitch_y, resolution;
459         /* Device initialization */
460         ret = u1_read_write_register(hdev, ADDRESS_U1_DEV_CTRL_1,
461                         &dev_ctrl, 0, true);
462         if (ret < 0) {
463                 dev_err(&hdev->dev, "failed U1_DEV_CTRL_1 (%d)\n", ret);
464                 goto exit;
465         }
466
467         dev_ctrl &= ~U1_DISABLE_DEV;
468         dev_ctrl |= U1_TP_ABS_MODE;
469         ret = u1_read_write_register(hdev, ADDRESS_U1_DEV_CTRL_1,
470                         NULL, dev_ctrl, false);
471         if (ret < 0) {
472                 dev_err(&hdev->dev, "failed to change TP mode (%d)\n", ret);
473                 goto exit;
474         }
475
476         ret = u1_read_write_register(hdev, ADDRESS_U1_NUM_SENS_X,
477                         &sen_line_num_x, 0, true);
478         if (ret < 0) {
479                 dev_err(&hdev->dev, "failed U1_NUM_SENS_X (%d)\n", ret);
480                 goto exit;
481         }
482
483         ret = u1_read_write_register(hdev, ADDRESS_U1_NUM_SENS_Y,
484                         &sen_line_num_y, 0, true);
485                 if (ret < 0) {
486                 dev_err(&hdev->dev, "failed U1_NUM_SENS_Y (%d)\n", ret);
487                 goto exit;
488         }
489
490         ret = u1_read_write_register(hdev, ADDRESS_U1_PITCH_SENS_X,
491                         &pitch_x, 0, true);
492         if (ret < 0) {
493                 dev_err(&hdev->dev, "failed U1_PITCH_SENS_X (%d)\n", ret);
494                 goto exit;
495         }
496
497         ret = u1_read_write_register(hdev, ADDRESS_U1_PITCH_SENS_Y,
498                         &pitch_y, 0, true);
499         if (ret < 0) {
500                 dev_err(&hdev->dev, "failed U1_PITCH_SENS_Y (%d)\n", ret);
501                 goto exit;
502         }
503
504         ret = u1_read_write_register(hdev, ADDRESS_U1_RESO_DWN_ABS,
505                 &resolution, 0, true);
506         if (ret < 0) {
507                 dev_err(&hdev->dev, "failed U1_RESO_DWN_ABS (%d)\n", ret);
508                 goto exit;
509         }
510         pri_data->x_active_len_mm =
511                 (pitch_x * (sen_line_num_x - 1)) / 10;
512         pri_data->y_active_len_mm =
513                 (pitch_y * (sen_line_num_y - 1)) / 10;
514
515         pri_data->x_max =
516                 (resolution << 2) * (sen_line_num_x - 1);
517         pri_data->x_min = 1;
518         pri_data->y_max =
519                 (resolution << 2) * (sen_line_num_y - 1);
520         pri_data->y_min = 1;
521
522         ret = u1_read_write_register(hdev, ADDRESS_U1_PAD_BTN,
523                         &tmp, 0, true);
524         if (ret < 0) {
525                 dev_err(&hdev->dev, "failed U1_PAD_BTN (%d)\n", ret);
526                 goto exit;
527         }
528         if ((tmp & 0x0F) == (tmp & 0xF0) >> 4) {
529                 pri_data->btn_cnt = (tmp & 0x0F);
530         } else {
531                 /* Button pad */
532                 pri_data->btn_cnt = 1;
533         }
534
535         pri_data->has_sp = 0;
536         /* Check StickPointer device */
537         ret = u1_read_write_register(hdev, ADDRESS_U1_DEVICE_TYP,
538                         &tmp, 0, true);
539         if (ret < 0) {
540                 dev_err(&hdev->dev, "failed U1_DEVICE_TYP (%d)\n", ret);
541                 goto exit;
542         }
543         if (tmp & U1_DEVTYPE_SP_SUPPORT) {
544                 dev_ctrl |= U1_SP_ABS_MODE;
545                 ret = u1_read_write_register(hdev, ADDRESS_U1_DEV_CTRL_1,
546                         NULL, dev_ctrl, false);
547                 if (ret < 0) {
548                         dev_err(&hdev->dev, "failed SP mode (%d)\n", ret);
549                         goto exit;
550                 }
551
552                 ret = u1_read_write_register(hdev, ADDRESS_U1_SP_BTN,
553                         &pri_data->sp_btn_info, 0, true);
554                 if (ret < 0) {
555                         dev_err(&hdev->dev, "failed U1_SP_BTN (%d)\n", ret);
556                         goto exit;
557                 }
558                 pri_data->has_sp = 1;
559         }
560         pri_data->max_fingers = 5;
561 exit:
562         return ret;
563 }
564
565 static int T4_init(struct hid_device *hdev, struct alps_dev *pri_data)
566 {
567         int ret;
568         u8 tmp, sen_line_num_x, sen_line_num_y;
569
570         ret = T4_read_write_register(hdev, T4_PRM_ID_CONFIG_3, &tmp, 0, true);
571         if (ret < 0) {
572                 dev_err(&hdev->dev, "failed T4_PRM_ID_CONFIG_3 (%d)\n", ret);
573                 goto exit;
574         }
575         sen_line_num_x = 16 + ((tmp & 0x0F)  | (tmp & 0x08 ? 0xF0 : 0));
576         sen_line_num_y = 12 + (((tmp & 0xF0) >> 4)  | (tmp & 0x80 ? 0xF0 : 0));
577
578         pri_data->x_max = sen_line_num_x * T4_COUNT_PER_ELECTRODE;
579         pri_data->x_min = T4_COUNT_PER_ELECTRODE;
580         pri_data->y_max = sen_line_num_y * T4_COUNT_PER_ELECTRODE;
581         pri_data->y_min = T4_COUNT_PER_ELECTRODE;
582         pri_data->x_active_len_mm = 0;
583         pri_data->y_active_len_mm = 0;
584         pri_data->btn_cnt = 1;
585
586         ret = T4_read_write_register(hdev, PRM_SYS_CONFIG_1, &tmp, 0, true);
587         if (ret < 0) {
588                 dev_err(&hdev->dev, "failed PRM_SYS_CONFIG_1 (%d)\n", ret);
589                 goto exit;
590         }
591         tmp |= 0x02;
592         ret = T4_read_write_register(hdev, PRM_SYS_CONFIG_1, NULL, tmp, false);
593         if (ret < 0) {
594                 dev_err(&hdev->dev, "failed PRM_SYS_CONFIG_1 (%d)\n", ret);
595                 goto exit;
596         }
597
598         ret = T4_read_write_register(hdev, T4_PRM_FEED_CONFIG_1, NULL, T4_I2C_ABS, false);
599         if (ret < 0) {
600                 dev_err(&hdev->dev, "failed T4_PRM_FEED_CONFIG_1 (%d)\n", ret);
601                 goto exit;
602         }
603
604         ret = T4_read_write_register (hdev, T4_PRM_FEED_CONFIG_4, NULL, T4_FEEDCFG4_ADVANCED_ABS_ENABLE, false);
605         if (ret < 0) {
606                 dev_err(&hdev->dev, "failed T4_PRM_FEED_CONFIG_4 (%d)\n", ret);
607                 goto exit;
608         }
609         pri_data->max_fingers = 5;
610         pri_data->has_sp = 0;
611 exit:
612         return ret;
613 }
614
615 static int alps_input_configured(struct hid_device *hdev, struct hid_input *hi)
616 {
617         struct alps_dev *data = hid_get_drvdata(hdev);
618         struct input_dev *input = hi->input, *input2;
619         int ret;
620         int res_x, res_y, i;
621
622         data->input = input;
623
624         hid_dbg(hdev, "Opening low level driver\n");
625         ret = hid_hw_open(hdev);
626         if (ret)
627                 return ret;
628
629         /* Allow incoming hid reports */
630         hid_device_io_start(hdev);
631         if (data->dev_type == T4)
632                 ret = T4_init(hdev, data);
633         else
634                 ret = u1_init(hdev, data);
635         if (ret)
636                 goto exit;
637
638         __set_bit(EV_ABS, input->evbit);
639         input_set_abs_params(input, ABS_MT_POSITION_X, data->x_min, data->x_max, 0, 0);
640         input_set_abs_params(input, ABS_MT_POSITION_Y, data->y_min, data->y_max, 0, 0);
641
642         if (data->x_active_len_mm && data->y_active_len_mm) {
643                 res_x = (data->x_max - 1) / data->x_active_len_mm;
644                 res_y = (data->y_max - 1) / data->y_active_len_mm;
645
646                 input_abs_set_res(input, ABS_MT_POSITION_X, res_x);
647                 input_abs_set_res(input, ABS_MT_POSITION_Y, res_y);
648         }
649
650         input_set_abs_params(input, ABS_MT_PRESSURE, 0, 64, 0, 0);
651
652         input_mt_init_slots(input, data->max_fingers, INPUT_MT_POINTER);
653
654         __set_bit(EV_KEY, input->evbit);
655
656         if (data->btn_cnt == 1)
657                 __set_bit(INPUT_PROP_BUTTONPAD, input->propbit);
658
659         for (i = 0; i < data->btn_cnt; i++)
660                 __set_bit(BTN_LEFT + i, input->keybit);
661
662         /* Stick device initialization */
663         if (data->has_sp) {
664                 input2 = input_allocate_device();
665                 if (!input2) {
666                         input_free_device(input2);
667                         goto exit;
668                 }
669
670                 data->input2 = input2;
671                 input2->phys = input->phys;
672                 input2->name = "DualPoint Stick";
673                 input2->id.bustype = BUS_I2C;
674                 input2->id.vendor  = input->id.vendor;
675                 input2->id.product = input->id.product;
676                 input2->id.version = input->id.version;
677                 input2->dev.parent = input->dev.parent;
678
679                 __set_bit(EV_KEY, input2->evbit);
680                 data->sp_btn_cnt = (data->sp_btn_info & 0x0F);
681                 for (i = 0; i < data->sp_btn_cnt; i++)
682                         __set_bit(BTN_LEFT + i, input2->keybit);
683
684                 __set_bit(EV_REL, input2->evbit);
685                 __set_bit(REL_X, input2->relbit);
686                 __set_bit(REL_Y, input2->relbit);
687                 __set_bit(INPUT_PROP_POINTER, input2->propbit);
688                 __set_bit(INPUT_PROP_POINTING_STICK, input2->propbit);
689
690                 if (input_register_device(data->input2)) {
691                         input_free_device(input2);
692                         goto exit;
693                 }
694         }
695
696 exit:
697         hid_device_io_stop(hdev);
698         hid_hw_close(hdev);
699         return ret;
700 }
701
702 static int alps_input_mapping(struct hid_device *hdev,
703                 struct hid_input *hi, struct hid_field *field,
704                 struct hid_usage *usage, unsigned long **bit, int *max)
705 {
706         return -1;
707 }
708
709 static int alps_probe(struct hid_device *hdev, const struct hid_device_id *id)
710 {
711         struct alps_dev *data = NULL;
712         int ret;
713
714         data = devm_kzalloc(&hdev->dev, sizeof(struct alps_dev), GFP_KERNEL);
715         if (!data)
716                 return -ENOMEM;
717
718         data->hdev = hdev;
719         hid_set_drvdata(hdev, data);
720
721         hdev->quirks |= HID_QUIRK_NO_INIT_REPORTS;
722
723         ret = hid_parse(hdev);
724         if (ret) {
725                 hid_err(hdev, "parse failed\n");
726                 return ret;
727         }
728         switch (hdev->product) {
729         case HID_DEVICE_ID_ALPS_T4_BTNLESS:
730                 data->dev_type = T4;
731                 break;
732         case HID_DEVICE_ID_ALPS_U1_DUAL:
733         case HID_DEVICE_ID_ALPS_U1:
734                 data->dev_type = U1;
735                 break;
736         default:
737                 data->dev_type = UNKNOWN;
738                 break;
739         }
740         ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT);
741         if (ret) {
742                 hid_err(hdev, "hw start failed\n");
743                 return ret;
744         }
745
746         return 0;
747 }
748
749 static void alps_remove(struct hid_device *hdev)
750 {
751         hid_hw_stop(hdev);
752 }
753
754 static const struct hid_device_id alps_id[] = {
755         { HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY,
756                 USB_VENDOR_ID_ALPS_JP, HID_DEVICE_ID_ALPS_U1_DUAL) },
757         { HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY,
758                 USB_VENDOR_ID_ALPS_JP, HID_DEVICE_ID_ALPS_U1) },
759         { HID_DEVICE(HID_BUS_ANY, HID_GROUP_ANY,
760                 USB_VENDOR_ID_ALPS_JP, HID_DEVICE_ID_ALPS_T4_BTNLESS) },
761         { }
762 };
763 MODULE_DEVICE_TABLE(hid, alps_id);
764
765 static struct hid_driver alps_driver = {
766         .name = "hid-alps",
767         .id_table               = alps_id,
768         .probe                  = alps_probe,
769         .remove                 = alps_remove,
770         .raw_event              = alps_raw_event,
771         .input_mapping          = alps_input_mapping,
772         .input_configured       = alps_input_configured,
773 #ifdef CONFIG_PM
774         .resume                 = alps_post_resume,
775         .reset_resume           = alps_post_reset,
776 #endif
777 };
778
779 module_hid_driver(alps_driver);
780
781 MODULE_AUTHOR("Masaki Ota <masaki.ota@jp.alps.com>");
782 MODULE_DESCRIPTION("ALPS HID driver");
783 MODULE_LICENSE("GPL");