forked from SanniZ/fpc1020-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fpc1020_input.c
240 lines (173 loc) · 5.84 KB
/
fpc1020_input.c
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
/* FPC1020 Touch sensor driver
*
* Copyright (c) 2013,2014 Fingerprint Cards AB <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License Version 2
* as published by the Free Software Foundation.
*/
#define DEBUG
#include <linux/input.h>
#include <linux/delay.h>
#ifndef CONFIG_OF
#include <linux/spi/fpc1020_common.h>
#include <linux/spi/fpc1020_input.h>
#else
#include "fpc1020_common.h"
#include "fpc1020_input.h"
#endif
/* -------------------------------------------------------------------- */
/* function prototypes */
/* -------------------------------------------------------------------- */
static int fpc1020_write_lpm_setup(fpc1020_data_t *fpc1020);
static int fpc1020_wait_finger_present_lpm(fpc1020_data_t *fpc1020);
/* -------------------------------------------------------------------- */
/* driver constants */
/* -------------------------------------------------------------------- */
#define FPC1020_KEY_FINGER_PRESENT KEY_F18 /* 188*/
#define FPC1020_INPUT_POLL_TIME_MS 1000u
/* -------------------------------------------------------------------- */
/* function definitions */
/* -------------------------------------------------------------------- */
int __devinit fpc1020_input_init(fpc1020_data_t *fpc1020)
{
int error = 0;
dev_dbg(&fpc1020->spi->dev, "%s\n", __func__);
fpc1020->input_dev = input_allocate_device();
if (!fpc1020->input_dev) {
dev_err(&fpc1020->spi->dev, "Input_allocate_device failed.\n");
error = -ENOMEM;
}
if (!error) {
fpc1020->input_dev->name = FPC1020_DEV_NAME;
set_bit(EV_KEY, fpc1020->input_dev->evbit);
set_bit(FPC1020_KEY_FINGER_PRESENT, fpc1020->input_dev->keybit);
error = input_register_device(fpc1020->input_dev);
}
if (error) {
dev_err(&fpc1020->spi->dev, "Input_register_device failed.\n");
input_free_device(fpc1020->input_dev);
fpc1020->input_dev = NULL;
}
return error;
}
/* -------------------------------------------------------------------- */
void __devexit fpc1020_input_destroy(fpc1020_data_t *fpc1020)
{
dev_dbg(&fpc1020->spi->dev, "%s\n", __func__);
if (fpc1020->input_dev != NULL)
input_free_device(fpc1020->input_dev);
}
/* -------------------------------------------------------------------- */
int fpc1020_input_enable(fpc1020_data_t *fpc1020, bool enabled)
{
dev_dbg(&fpc1020->spi->dev, "%s\n", __func__);
fpc1020->input.enabled = enabled;
return 0;
}
/* -------------------------------------------------------------------- */
int fpc1020_input_task(fpc1020_data_t *fpc1020)
{
int error = 0;
dev_dbg(&fpc1020->spi->dev, "%s\n", __func__);
while (!fpc1020->worker.stop_request && !error) {
error = fpc1020_wait_finger_present_lpm(fpc1020);
if (error == 0) {
input_report_key(fpc1020->input_dev,
FPC1020_KEY_FINGER_PRESENT, 1);
input_report_key(fpc1020->input_dev,
FPC1020_KEY_FINGER_PRESENT, 0);
input_sync(fpc1020->input_dev);
}
}
return error;
}
/* -------------------------------------------------------------------- */
static int fpc1020_write_lpm_setup(fpc1020_data_t *fpc1020)
{
const int mux = FPC1020_MAX_ADC_SETTINGS - 1;
int error = 0;
u16 temp_u16;
fpc1020_reg_access_t reg;
dev_dbg(&fpc1020->spi->dev, "%s %d\n", __func__, mux);
error = fpc1020_write_sensor_setup(fpc1020);
if(error)
goto out;
temp_u16 = fpc1020->setup.adc_shift[mux];
temp_u16 <<= 8;
temp_u16 |= fpc1020->setup.adc_gain[mux];
FPC1020_MK_REG_WRITE(reg, FPC102X_REG_ADC_SHIFT_GAIN, &temp_u16);
error = fpc1020_reg_access(fpc1020, ®);
if (error)
goto out;
temp_u16 = fpc1020->setup.pxl_ctrl[mux];
FPC1020_MK_REG_WRITE(reg, FPC102X_REG_PXL_CTRL, &temp_u16);
error = fpc1020_reg_access(fpc1020, ®);
if (error)
goto out;
out:
return error;
}
/* -------------------------------------------------------------------- */
static int fpc1020_wait_finger_present_lpm(fpc1020_data_t *fpc1020)
{
const int lpm_poll_delay_ms = FPC1020_INPUT_POLL_TIME_MS;
const int zmask_5 = 1 << 5;
const int zmask_6 = 1 << 6;
const int zmask_ext = FPC1020_FINGER_DETECT_ZONE_MASK;
int error = 0;
int zone_raw = 0;
bool wakeup_center = false;
bool wakeup_ext = false;
bool wakeup = false;
error = fpc1020_wake_up(fpc1020);
if (!error)
error = fpc1020_calc_finger_detect_threshold_min(fpc1020);
if (error >= 0)
error = fpc1020_set_finger_detect_threshold(fpc1020, error);
if (error >= 0)
error = fpc1020_write_lpm_setup(fpc1020);
if (!error) {
error = fpc1020_sleep(fpc1020, false);
if (error == -EAGAIN) {
error = fpc1020_sleep(fpc1020, false);
if (error == -EAGAIN)
error = 0;
}
}
while (!fpc1020->worker.stop_request && !error && !wakeup) {
if (!error)
error = fpc1020_wait_finger_present(fpc1020);
if (!error)
error = fpc1020_check_finger_present_raw(fpc1020);
zone_raw = (error >= 0) ? error : 0;
if (error >= 0) {
error = 0;
wakeup_center = (zone_raw & zmask_5) ||
(zone_raw & zmask_6);
/* Todo: refined extended processing ? */
wakeup_ext = ((zone_raw & zmask_ext) == zmask_ext);
} else {
wakeup_center =
wakeup_ext = false;
}
if (wakeup_center && wakeup_ext) {
dev_dbg(&fpc1020->spi->dev,
"%s Wake up !\n", __func__);
wakeup = true;
}
if (!wakeup && !error) {
error = fpc1020_sleep(fpc1020, false);
if (error == -EAGAIN)
error = 0;
if (!error)
msleep(lpm_poll_delay_ms);
}
}
if (error < 0)
dev_dbg(&fpc1020->spi->dev,
"%s %s %d!\n", __func__,
(error == -EINTR) ? "TERMINATED" : "FAILED", error);
return error;
}
/* -------------------------------------------------------------------- */