hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
/* drivers/input/touchscreen/gt1x.c
 *
 * 2010 - 2014 Goodix Technology.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be a reference
 * to you, when you are integrating the GOODiX's CTP IC into your system,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * Version: 1.4
 * Release Date:  2015/07/10
 */
 
#include <linux/irq.h>
#include "gt1x.h"
#include <linux/input/mt.h>
 
static struct work_struct gt1x_work;
static struct input_dev *input_dev;
static struct workqueue_struct *gt1x_wq;
static const char *gt1x_ts_name = "goodix-ts";
static const char *input_dev_phys = "input/ts";
#ifdef CONFIG_PM
static const struct dev_pm_ops gt1x_ts_pm_ops;
#endif
#ifdef GTP_CONFIG_OF
bool gt1x_gt5688;
int gt1x_rst_gpio;
int gt1x_int_gpio;
static bool power_invert;
#endif
 
static int gt1x_register_powermanger(void);
static int gt1x_unregister_powermanger(void);
 
/**
 * gt1x_i2c_write - i2c write.
 * @addr: register address.
 * @buffer: data buffer.
 * @len: the bytes of data to write.
 *Return: 0: success, otherwise: failed
 */
s32 gt1x_i2c_write(u16 addr, u8 *buffer, s32 len)
{
   struct i2c_msg msg = {
       .flags = 0,
       .addr = gt1x_i2c_client->addr,
   };
   return _do_i2c_write(&msg, addr, buffer, len);
}
 
/**
 * gt1x_i2c_read - i2c read.
 * @addr: register address.
 * @buffer: data buffer.
 * @len: the bytes of data to write.
 *Return: 0: success, otherwise: failed
 */
s32 gt1x_i2c_read(u16 addr, u8 *buffer, s32 len)
{
   u8 addr_buf[GTP_ADDR_LENGTH] = { (addr >> 8) & 0xFF, addr & 0xFF };
   struct i2c_msg msgs[2] = {
       {
        .addr = gt1x_i2c_client->addr,
        .flags = 0,
        .buf = addr_buf,
        .len = GTP_ADDR_LENGTH},
       {
        .addr = gt1x_i2c_client->addr,
        .flags = I2C_M_RD}
   };
   return _do_i2c_read(msgs, addr, buffer, len);
}
 
static spinlock_t irq_lock;
static s32 irq_is_disable;
 
/**
 * gt1x_irq_enable - enable irq function.
 *
 */
void gt1x_irq_enable(void)
{
   unsigned long irqflags = 0;
 
   GTP_DEBUG_FUNC();
 
   spin_lock_irqsave(&irq_lock, irqflags);
   if (irq_is_disable) {
       enable_irq(gt1x_i2c_client->irq);
       irq_is_disable = 0;
   }
   spin_unlock_irqrestore(&irq_lock, irqflags);
}
 
/**
 * gt1x_irq_enable - disable irq function.
 *
 */
void gt1x_irq_disable(void)
{
   unsigned long irqflags;
 
   GTP_DEBUG_FUNC();
 
   spin_lock_irqsave(&irq_lock, irqflags);
   if (!irq_is_disable) {
       irq_is_disable = 1;
       disable_irq_nosync(gt1x_i2c_client->irq);
   }
   spin_unlock_irqrestore(&irq_lock, irqflags);
}
 
#ifndef GTP_CONFIG_OF
int gt1x_power_switch(s32 state)
{
    return 0;
}
#endif
 
int gt1x_debug_proc(u8 *buf, int count)
{
   return -1;
}
 
#if GTP_CHARGER_SWITCH
u32 gt1x_get_charger_status(void)
{
#error Need to get charger status of your platform.
}
#endif
 
/**
 * gt1x_ts_irq_handler - External interrupt service routine for interrupt mode.
 * @irq:  interrupt number.
 * @dev_id: private data pointer.
 * Return: Handle Result.
 *          IRQ_HANDLED: interrupt handled successfully
 */
static irqreturn_t gt1x_ts_irq_handler(int irq, void *dev_id)
{
   GTP_DEBUG_FUNC();
   gt1x_irq_disable();
   queue_work(gt1x_wq, &gt1x_work);
   return IRQ_HANDLED;
}
 
/**
 * gt1x_touch_down - Report touch point event .
 * @id: trackId
 * @x:  input x coordinate
 * @y:  input y coordinate
 * @w:  input pressure
 * Return: none.
 */
void gt1x_touch_down(s32 x, s32 y, s32 size, s32 id)
{
#if GTP_CHANGE_X2Y
   GTP_SWAP(x, y);
#endif
 
   if (gt1x_ics_slot_report) {
       input_mt_slot(input_dev, id);
       input_report_abs(input_dev, ABS_MT_PRESSURE, size);
       input_report_abs(input_dev, ABS_MT_TOUCH_MAJOR, size);
       input_report_abs(input_dev, ABS_MT_TRACKING_ID, id);
       input_report_abs(input_dev, ABS_MT_POSITION_X, x);
       input_report_abs(input_dev, ABS_MT_POSITION_Y, y);
   } else {
       input_report_key(input_dev, BTN_TOUCH, 1);
 
       if ((!size) && (!id)) {
           /* for virtual button */
           input_report_abs(input_dev, ABS_MT_PRESSURE, 100);
           input_report_abs(input_dev, ABS_MT_TOUCH_MAJOR, 100);
       } else {
           input_report_abs(input_dev, ABS_MT_PRESSURE, size);
           input_report_abs(input_dev, ABS_MT_TOUCH_MAJOR, size);
           input_report_abs(input_dev, ABS_MT_TRACKING_ID, id);
       }
       input_report_abs(input_dev, ABS_MT_POSITION_X, x);
       input_report_abs(input_dev, ABS_MT_POSITION_Y, y);
       input_mt_sync(input_dev);
 
   }
}
 
/**
 * gt1x_touch_up -  Report touch release event.
 * @id: trackId
 * Return: none.
 */
void gt1x_touch_up(s32 id)
{
   if (gt1x_ics_slot_report) {
       input_mt_slot(input_dev, id);
       input_report_abs(input_dev, ABS_MT_TRACKING_ID, -1);
   } else {
       input_report_key(input_dev, BTN_TOUCH, 0);
       input_mt_sync(input_dev);
   }
}
 
/**
 * gt1x_ts_work_func - Goodix touchscreen work function.
 * @iwork: work struct of gt1x_workqueue.
 * Return: none.
 */
static void gt1x_ts_work_func(struct work_struct *work)
{
   u8 end_cmd = 0;
   u8 finger = 0;
   s32 ret = 0;
   u8 point_data[11] = { 0 };
 
   if (update_info.status) {
       GTP_DEBUG("Ignore interrupts during fw update.");
       return;
   }
 
#if GTP_GESTURE_WAKEUP
   ret = gesture_event_handler(input_dev);
   if (ret >= 0) {
       goto exit_work_func;
   }
#endif
 
   if (gt1x_halt) {
       GTP_DEBUG("Ignore interrupts after suspend...");
       return;
   }
 
   ret = gt1x_i2c_read(GTP_READ_COOR_ADDR, point_data, sizeof(point_data));
   if (ret < 0) {
       GTP_ERROR("I2C transfer error!");
#if !GTP_ESD_PROTECT
       gt1x_power_reset();
#endif
       goto exit_work_func;
   }
 
   finger = point_data[0];
   if (finger == 0x00) {
       gt1x_request_event_handler();
   }
 
   if ((finger & 0x80) == 0) {
#if HOTKNOT_BLOCK_RW
       if (!hotknot_paired_flag)
#endif
       {
           /*GTP_ERROR("buffer not ready:0x%02x", finger);*/
           goto exit_eint;
       }
   }
#if HOTKNOT_BLOCK_RW
   ret = hotknot_event_handler(point_data);
   if (!ret) {
       goto exit_work_func;
   }
#endif
 
#if GTP_PROXIMITY
   ret = gt1x_prox_event_handler(point_data);
   if (ret > 0) {
       goto exit_work_func;
   }
#endif
 
#if GTP_WITH_STYLUS
   ret = gt1x_touch_event_handler(point_data, input_dev, pen_dev);
#else
   ret = gt1x_touch_event_handler(point_data, input_dev, NULL);
#endif
 
exit_work_func:
   if (!gt1x_rawdiff_mode && (ret >= 0 || ret == ERROR_VALUE)) {
       ret = gt1x_i2c_write(GTP_READ_COOR_ADDR, &end_cmd, 1);
       if (ret < 0) {
           GTP_ERROR("I2C write end_cmd  error!");
       }
   }
exit_eint:
   gt1x_irq_enable();
 
}
 
/*
 * Devices Tree support,
 */
#ifdef GTP_CONFIG_OF
 
static struct regulator *vdd_ana;
/**
 * gt1x_parse_dt - parse platform infomation form devices tree.
 */
static int gt1x_parse_dt(struct device *dev)
{
   struct device_node *np;
   const char *tp_type;
#ifdef CONFIG_PM
   struct device_node *root;
   const char *machine_compatible;
#endif
 
   if (!dev)
       return -ENODEV;
 
   np = dev->of_node;
 
   if (!of_property_read_string(np, "goodix,ic_type", &tp_type)) {
       GTP_INFO("GTP ic_type: %s", tp_type);
 
       if (strstr(tp_type, "gt5688"))
           gt1x_gt5688 = true;
   }
 
   gt1x_int_gpio = of_get_named_gpio(np, "goodix,irq-gpio", 0);
   gt1x_rst_gpio = of_get_named_gpio(np, "goodix,rst-gpio", 0);
 
   if (!gpio_is_valid(gt1x_int_gpio) && !gpio_is_valid(gt1x_rst_gpio)) {
       GTP_ERROR("Invalid GPIO, irq-gpio:%d, rst-gpio:%d",
               gt1x_int_gpio, gt1x_rst_gpio);
       return -EINVAL;
   }
 
   if (!gpio_is_valid(gt1x_int_gpio)) {
       GTP_ERROR("Invalid GPIO, irq-gpio:%d",
               gt1x_int_gpio);
       return -EINVAL;
   }
 
   vdd_ana = devm_regulator_get_optional(dev, "vdd_ana");
   if (PTR_ERR(vdd_ana) == -ENODEV) {
       GTP_ERROR("vdd_ana not specified, fallback to power-supply");
       vdd_ana = devm_regulator_get_optional(dev, "power");
       if (PTR_ERR(vdd_ana) == -ENODEV) {
           GTP_ERROR("power not specified, ignore power ctrl");
           vdd_ana = NULL;
       } else {
           power_invert = of_property_read_bool(np, "power-invert");
           GTP_INFO("Power Invert,%s ", power_invert ? "yes" : "no");
       }
   }
   if (IS_ERR(vdd_ana)) {
       GTP_ERROR("regulator get of vdd_ana/power-supply failed");
       return PTR_ERR(vdd_ana);
   }
 
   gt1x_ics_slot_report = of_property_read_bool(dev->of_node, "gtp_ics_slot_report");
#ifdef CONFIG_PM
   root = of_find_node_by_path("/");
   if (root) {
       machine_compatible = of_get_property(root, "compatible", NULL);
       of_node_put(root);
       if (strstr(machine_compatible, "linux"))
           dev->driver->pm = &gt1x_ts_pm_ops;
   }
#endif
 
   return 0;
}
 
/**
 * gt1x_power_switch - power switch .
 * @on: 1-switch on, 0-switch off.
 * return: 0-succeed, -1-faileds
 */
int gt1x_power_switch(int on)
{
   int ret = 0;
   struct i2c_client *client = gt1x_i2c_client;
 
   if (!client || !vdd_ana)
       return -1;
 
   if (on) {
       GTP_DEBUG("GTP power on.");
       if (power_invert) {
           if (regulator_is_enabled(vdd_ana) > 0)
               ret = regulator_disable(vdd_ana);
       } else {
           ret = regulator_enable(vdd_ana);
       }
   } else {
       GTP_DEBUG("GTP power off.");
       if (power_invert) {
           if (!regulator_is_enabled(vdd_ana))
               ret = regulator_enable(vdd_ana);
       } else {
           ret = regulator_disable(vdd_ana);
       }
   }
   return ret;
}
#endif
 
static void gt1x_remove_gpio_and_power(void)
{
   if (gpio_is_valid(gt1x_int_gpio))
       gpio_free(gt1x_int_gpio);
 
   if (gpio_is_valid(gt1x_rst_gpio))
       gpio_free(gt1x_rst_gpio);
 
   if (gt1x_i2c_client && gt1x_i2c_client->irq)
       free_irq(gt1x_i2c_client->irq, gt1x_i2c_client);
}
 
 
/**
 * gt1x_request_io_port - Request gpio(INT & RST) ports.
 */
static s32 gt1x_request_io_port(void)
{
   s32 ret = 0;
 
   GTP_DEBUG_FUNC();
   ret = gpio_request(GTP_INT_PORT, "GTP_INT_IRQ");
   if (ret < 0) {
       GTP_ERROR("Failed to request GPIO:%d, ERRNO:%d", (s32) GTP_INT_PORT, ret);
       return ret;
   }
 
   GTP_GPIO_AS_INT(GTP_INT_PORT);
   gt1x_i2c_client->irq = GTP_INT_IRQ;
 
   if (gpio_is_valid(gt1x_rst_gpio)) {
       ret = gpio_request(GTP_RST_PORT, "GTP_RST_PORT");
       if (ret < 0) {
           GTP_ERROR("Failed to request GPIO:%d, ERRNO:%d", (s32) GTP_RST_PORT, ret);
           gpio_free(GTP_INT_PORT);
           return ret;
       }
 
   GTP_GPIO_AS_INPUT(GTP_RST_PORT);
   }
 
   return 0;
}
 
/**
 * gt1x_request_irq - Request interrupt.
 * Return
 *      0: succeed, -1: failed.
 */
static s32 gt1x_request_irq(void)
{
   s32 ret = -1;
   const u8 irq_table[] = GTP_IRQ_TAB;
 
   GTP_DEBUG_FUNC();
   GTP_DEBUG("INT trigger type:%x", gt1x_int_type);
 
   ret = request_irq(gt1x_i2c_client->irq, gt1x_ts_irq_handler, irq_table[gt1x_int_type], gt1x_i2c_client->name, gt1x_i2c_client);
   if (ret) {
       GTP_ERROR("Request IRQ failed!ERRNO:%d.", ret);
       GTP_GPIO_AS_INPUT(GTP_INT_PORT);
       gpio_free(GTP_INT_PORT);
 
       return -1;
   } else {
       gt1x_irq_disable();
       return 0;
   }
}
 
/**
 * gt1x_request_input_dev -  Request input device Function.
 * Return
 *      0: succeed, -1: failed.
 */
static s8 gt1x_request_input_dev(void)
{
   s8 ret = -1;
#if GTP_HAVE_TOUCH_KEY
   u8 index = 0;
#endif
 
   GTP_DEBUG_FUNC();
 
   input_dev = input_allocate_device();
   if (input_dev == NULL) {
       GTP_ERROR("Failed to allocate input device.");
       return -ENOMEM;
   }
 
   input_dev->evbit[0] = BIT_MASK(EV_SYN) | BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
   if (gt1x_ics_slot_report) {
#if (LINUX_VERSION_CODE > KERNEL_VERSION(3, 7, 0))
       input_mt_init_slots(input_dev, 16, INPUT_MT_DIRECT);
#else
       input_mt_init_slots(input_dev, 16);
#endif
   } else {
       input_dev->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
   }
   set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
 
#if GTP_HAVE_TOUCH_KEY
   for (index = 0; index < GTP_MAX_KEY_NUM; index++) {
       input_set_capability(input_dev, EV_KEY, gt1x_touch_key_array[index]);
   }
#endif
 
#if GTP_GESTURE_WAKEUP
   input_set_capability(input_dev, EV_KEY, KEY_GES_REGULAR);
   input_set_capability(input_dev, EV_KEY, KEY_GES_CUSTOM);
#endif
 
#if GTP_CHANGE_X2Y
   input_set_abs_params(input_dev, ABS_MT_POSITION_X, 0, gt1x_abs_y_max, 0, 0);
   input_set_abs_params(input_dev, ABS_MT_POSITION_Y, 0, gt1x_abs_x_max, 0, 0);
#else
   input_set_abs_params(input_dev, ABS_MT_POSITION_X, 0, gt1x_abs_x_max, 0, 0);
   input_set_abs_params(input_dev, ABS_MT_POSITION_Y, 0, gt1x_abs_y_max, 0, 0);
#endif
   input_set_abs_params(input_dev, ABS_MT_PRESSURE, 0, 255, 0, 0);
   input_set_abs_params(input_dev, ABS_MT_TOUCH_MAJOR, 0, 255, 0, 0);
   input_set_abs_params(input_dev, ABS_MT_TRACKING_ID, 0, 255, 0, 0);
 
   input_set_abs_params(input_dev, ABS_X, 0, 255, 0, 0);
   input_set_abs_params(input_dev, ABS_Y, 0, 255, 0, 0);
 
   input_dev->name = gt1x_ts_name;
   input_dev->phys = input_dev_phys;
   input_dev->id.bustype = BUS_I2C;
   input_dev->id.vendor = 0xDEAD;
   input_dev->id.product = 0xBEEF;
   input_dev->id.version = 10427;
 
   ret = input_register_device(input_dev);
   if (ret) {
       GTP_ERROR("Register %s input device failed", input_dev->name);
       return -ENODEV;
   }
 
   return 0;
}
 
/**
 * gt1x_ts_probe -   I2c probe.
 * @client: i2c device struct.
 * @id: device id.
 * Return  0: succeed, -1: failed.
 */
static int gt1x_ts_probe(struct i2c_client *client, const struct i2c_device_id *id)
{
   s32 ret = -1;
#if GTP_AUTO_UPDATE
   struct task_struct *thread = NULL;
#endif
   /*do NOT remove these logs*/
   GTP_INFO("GTP Driver Version: %s", GTP_DRIVER_VERSION);
   GTP_INFO("GTP I2C Address: 0x%02x", client->addr);
 
   gt1x_i2c_client = client;
   spin_lock_init(&irq_lock);
 
   if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
       GTP_ERROR("I2C check functionality failed.");
       return -ENODEV;
   }
 
#ifdef GTP_CONFIG_OF    /* device tree support */
   if (client->dev.of_node) {
       ret = gt1x_parse_dt(&client->dev);
       if (ret)
           return ret;
   }
#endif
 
   ret = gt1x_request_io_port();
   if (ret < 0) {
       GTP_ERROR("GTP request IO port failed.");
       return ret;
   }
 
   ret = gt1x_init();
   if (ret != 0) {
       GTP_ERROR("GTP init failed!!!");
       return ret;
   }
 
   gt1x_wq = create_singlethread_workqueue("gt1x_wq");
   if (!gt1x_wq) {
       GTP_ERROR("Creat workqueue failed.");
       return -ENOMEM;
   }
 
   INIT_WORK(&gt1x_work, gt1x_ts_work_func);
 
   ret = gt1x_request_input_dev();
   if (ret < 0) {
       GTP_ERROR("GTP request input dev failed");
   }
 
   ret = gt1x_request_irq();
   if (ret < 0) {
       GTP_DEBUG("GTP works in polling mode.");
   } else {
       GTP_DEBUG("GTP works in interrupt mode.");
   }
 
#if GTP_GESTURE_WAKEUP
   enable_irq_wake(client->irq);
#endif
 
   gt1x_irq_enable();
 
#if GTP_ESD_PROTECT
   /*must before auto update*/
   gt1x_init_esd_protect();
   gt1x_esd_switch(SWITCH_ON);
#endif
 
#if GTP_AUTO_UPDATE
   thread = kthread_run(gt1x_auto_update_proc, (void *)NULL, "gt1x_auto_update");
   if (IS_ERR(thread)) {
       ret = PTR_ERR(thread);
       GTP_ERROR("Failed to create auto-update thread: %d.", ret);
   }
#endif
   gt1x_register_powermanger();
   return 0;
}
 
/**
 * gt1x_ts_remove -  Goodix touchscreen driver release function.
 * @client: i2c device struct.
 * Return  0: succeed, -1: failed.
 */
static int gt1x_ts_remove(struct i2c_client *client)
{
   GTP_DEBUG_FUNC();
   GTP_DEBUG("GTP driver removing...");
   gt1x_unregister_powermanger();
 
#if GTP_GESTURE_WAKEUP
   disable_irq_wake(client->irq);
#endif
   gt1x_deinit();
   input_unregister_device(input_dev);
   gt1x_remove_gpio_and_power();
   if (gt1x_wq) {
       destroy_workqueue(gt1x_wq);
   }
 
   return 0;
}
 
#if defined(CONFIG_FB)
#include <linux/async.h>
 
static void gt1x_resume_async(void *data, async_cookie_t cookie)
{
   gt1x_resume();
}
 
static void gt1x_suspend_async(void *data, async_cookie_t cookie)
{
   gt1x_suspend();
}
 
/* frame buffer notifier block control the suspend/resume procedure */
static struct notifier_block gt1x_fb_notifier;
static int tp_status;
 
static int gtp_fb_notifier_callback(struct notifier_block *noti, unsigned long event, void *data)
{
   struct fb_event *ev_data = data;
   int *blank;
 
#if GTP_INCELL_PANEL
#ifndef FB_EARLY_EVENT_BLANK
#error Need add FB_EARLY_EVENT_BLANK to fbmem.c
#endif
 
   if (ev_data && ev_data->data && event == FB_EARLY_EVENT_BLANK
       && tp_status != FB_BLANK_UNBLANK) {
       blank = ev_data->data;
       if (*blank == FB_BLANK_UNBLANK) {
           tp_status = *blank;
           GTP_DEBUG("Resume by fb notifier.");
           gt1x_resume();
       }
   }
#else
   if (ev_data && ev_data->data && event == FB_EVENT_BLANK
       && tp_status != FB_BLANK_UNBLANK) {
       blank = ev_data->data;
       if (*blank == FB_BLANK_UNBLANK) {
           tp_status = *blank;
           GTP_DEBUG("Resume by fb notifier.");
           async_schedule(gt1x_resume_async, NULL);
       }
   }
#endif
 
   if (ev_data && ev_data->data && event == FB_EVENT_BLANK
       && tp_status == FB_BLANK_UNBLANK) {
       blank = ev_data->data;
       if (*blank == FB_BLANK_POWERDOWN) {
           tp_status = *blank;
           GTP_DEBUG("Suspend by fb notifier.");
           async_schedule(gt1x_suspend_async, NULL);
       }
   }
 
   return 0;
}
#elif defined(CONFIG_HAS_EARLYSUSPEND)
/* earlysuspend module the suspend/resume procedure */
static void gt1x_ts_early_suspend(struct early_suspend *h)
{
   gt1x_suspend();
}
 
static void gt1x_ts_late_resume(struct early_suspend *h)
{
   gt1x_resume();
}
 
static struct early_suspend gt1x_early_suspend = {
   .level = EARLY_SUSPEND_LEVEL_BLANK_SCREEN + 1,
   .suspend = gt1x_ts_early_suspend,
   .resume = gt1x_ts_late_resume,
};
#endif
 
#ifdef CONFIG_PM
/**
 * gt1x_ts_suspend - i2c suspend callback function.
 * @dev: i2c device.
 * Return  0: succeed, -1: failed.
 */
static int gt1x_pm_suspend(struct device *dev)
{
    return gt1x_suspend();
}
 
/**
 * gt1x_ts_resume - i2c resume callback function.
 * @dev: i2c device.
 * Return  0: succeed, -1: failed.
 */
static int gt1x_pm_resume(struct device *dev)
{
   return gt1x_resume();
}
 
/* bus control the suspend/resume procedure */
static const struct dev_pm_ops gt1x_ts_pm_ops = {
   .suspend = gt1x_pm_suspend,
   .resume = gt1x_pm_resume,
};
#endif
 
static int gt1x_register_powermanger(void)
{
#if   defined(CONFIG_FB)
   tp_status = FB_BLANK_UNBLANK;
   gt1x_fb_notifier.notifier_call = gtp_fb_notifier_callback;
   fb_register_client(&gt1x_fb_notifier);
 
#elif defined(CONFIG_HAS_EARLYSUSPEND)
   register_early_suspend(&gt1x_early_suspend);
#endif
   return 0;
}
 
static int gt1x_unregister_powermanger(void)
{
#if   defined(CONFIG_FB)
   fb_unregister_client(&gt1x_fb_notifier);
 
#elif defined(CONFIG_HAS_EARLYSUSPEND)
   unregister_early_suspend(&gt1x_early_suspend);
#endif
   return 0;
}
 
#ifdef GTP_CONFIG_OF
static const struct of_device_id gt1x_match_table[] = {
       {.compatible = "goodix,gt1x",},
       { },
};
#endif
 
static const struct i2c_device_id gt1x_ts_id[] = {
   {GTP_I2C_NAME, 0},
   {}
};
 
static struct i2c_driver gt1x_ts_driver = {
   .probe = gt1x_ts_probe,
   .remove = gt1x_ts_remove,
   .id_table = gt1x_ts_id,
   .driver = {
          .name = GTP_I2C_NAME,
#ifdef GTP_CONFIG_OF
          .of_match_table = gt1x_match_table,
#endif
#if !defined(CONFIG_FB) && defined(CONFIG_PM)
          .pm = &gt1x_ts_pm_ops,
#endif
          .probe_type = PROBE_PREFER_ASYNCHRONOUS,
          },
};
 
/**
 * gt1x_ts_init - Driver Install function.
 * Return   0---succeed.
 */
static int __init gt1x_ts_init(void)
{
   GTP_DEBUG_FUNC();
   GTP_DEBUG("GTP driver installing...");
 
   return i2c_add_driver(&gt1x_ts_driver);
}
 
/**
 * gt1x_ts_exit - Driver uninstall function.
 * Return   0---succeed.
 */
static void __exit gt1x_ts_exit(void)
{
   GTP_DEBUG_FUNC();
   GTP_DEBUG("GTP driver exited.");
   i2c_del_driver(&gt1x_ts_driver);
}
 
module_init(gt1x_ts_init);
module_exit(gt1x_ts_exit);
 
MODULE_DESCRIPTION("GTP Series Driver");
MODULE_LICENSE("GPL");
MODULE_IMPORT_NS(VFS_internal_I_am_really_a_filesystem_and_am_NOT_a_driver);