huangcm
2025-03-10 313d899ea76a728046c194ded35c2d20909cb707
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
/*
 *
 * FocalTech ftxxxx TouchScreen driver.
 *
 * Copyright (c) 2012-2020, Focaltech Ltd. All rights reserved.
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
 * may be copied, distributed, and modified under those terms.
 *
 * This program is distributed in the hope that it will be useful,
 * 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.
 *
 */
 
/*****************************************************************************
*
* File Name: focaltech_ex_mode.c
*
* Author: Focaltech Driver Team
*
* Created: 2016-08-31
*
* Abstract:
*
* Reference:
*
*****************************************************************************/
 
/*****************************************************************************
* 1.Included header files
*****************************************************************************/
#include "focaltech_core.h"
 
/*****************************************************************************
* 2.Private constant and macro definitions using #define
*****************************************************************************/
 
/*****************************************************************************
* 3.Private enumerations, structures and unions using typedef
*****************************************************************************/
enum _ex_mode {
    MODE_GLOVE = 0,
    MODE_COVER,
    MODE_CHARGER,
    MODE_EARPHONE,
    MODE_EDGEPALM
};
 
/*****************************************************************************
* 4.Static variables
*****************************************************************************/
 
/*****************************************************************************
* 5.Global variable or extern global variabls/functions
*****************************************************************************/
 
/*****************************************************************************
* 6.Static function prototypes
*******************************************************************************/
static int fts_ex_mode_set_reg(u8 mode_regaddr, u8 mode_regval)
{
    int i = 0;
    u8 val = 0xFF;
 
    for (i = 0; i < FTS_MAX_RETRIES_WRITEREG; i++) {
        fts_read_reg(mode_regaddr, &val);
        if (val == mode_regval)
            break;
        fts_write_reg(mode_regaddr, mode_regval);
        fts_msleep(1);
    }
 
    if (i >= FTS_MAX_RETRIES_WRITEREG) {
        FTS_ERROR("set mode(%x) to %x failed,read val:%x", mode_regaddr, mode_regval, val);
        return -EIO;
    } else if (i > 0) {
        FTS_INFO("set mode(%x) to %x successfully", mode_regaddr, mode_regval);
    }
    return 0;
}
 
static int fts_ex_mode_switch(enum _ex_mode mode, int value)
{
    int ret = 0;
 
    switch (mode) {
    case MODE_GLOVE:
        ret = fts_ex_mode_set_reg(FTS_REG_GLOVE_MODE_EN, (value ? 0x01 : 0x00));
        if (ret) FTS_ERROR("Set MODE_GLOVE to %d failed", value);
        break;
    case MODE_COVER:
        ret = fts_ex_mode_set_reg(FTS_REG_COVER_MODE_EN, (value ? 0x01 : 0x00));
        if (ret) FTS_ERROR("Set MODE_COVER to %d failed", value);
        break;
    case MODE_CHARGER:
        ret = fts_ex_mode_set_reg(FTS_REG_CHARGER_MODE_EN, (value ? 0x01 : 0x00));
        if (ret) FTS_ERROR("Set MODE_CHARGER to %d failed", value);
        break;
    case MODE_EARPHONE:
        ret = fts_ex_mode_set_reg(FTS_REG_EARPHONE_MODE_EN, (value ? 0x01 : 0x00));
        if (ret) FTS_ERROR("Set MODE_EARPHONE to %d failed", value);
        break;
    case MODE_EDGEPALM:
        /* FW defines the following values: 0:vertical, 1:horizontal, USB on the right,
         *                                  2:horizontal, USB on the left
         * If host set the value not defined above, you should have a transition.
         */
        ret = fts_ex_mode_set_reg(FTS_REG_EDGEPALM_MODE_EN, (u8)value);
        if (ret) FTS_ERROR("Set MODE_EDGEPALM to %d failed", value);
        break;
    default:
        FTS_ERROR("mode(%d) unsupport", mode);
        ret = -EINVAL;
        break;
    }
 
    return ret;
}
 
static ssize_t fts_glove_mode_show(
    struct device *dev, struct device_attribute *attr, char *buf)
{
    int count = 0;
    u8 reg_addr = FTS_REG_GLOVE_MODE_EN;
    u8 reg_val = 0;
    struct fts_ts_data *ts_data = dev_get_drvdata(dev);
 
    mutex_lock(&ts_data->input_dev->mutex);
    fts_read_reg(reg_addr, &reg_val);
    count = snprintf(buf + count, PAGE_SIZE, "Glove Mode:%s\n",
                     ts_data->glove_mode ? "On" : "Off");
    count += snprintf(buf + count, PAGE_SIZE, "Glove Reg:0x%02x,val:%d\n", reg_addr, reg_val);
    mutex_unlock(&ts_data->input_dev->mutex);
 
    return count;
}
 
static ssize_t fts_glove_mode_store(
    struct device *dev,
    struct device_attribute *attr, const char *buf, size_t count)
{
    struct fts_ts_data *ts_data = dev_get_drvdata(dev);
 
    mutex_lock(&ts_data->input_dev->mutex);
    if (FTS_SYSFS_ECHO_ON(buf)) {
        FTS_DEBUG("enter glove mode");
        ts_data->glove_mode = ENABLE;
        fts_ex_mode_switch(MODE_GLOVE, ENABLE);
    } else if (FTS_SYSFS_ECHO_OFF(buf)) {
        FTS_DEBUG("exit glove mode");
        ts_data->glove_mode = DISABLE;
        fts_ex_mode_switch(MODE_GLOVE, DISABLE);
    }
    mutex_unlock(&ts_data->input_dev->mutex);
    return count;
}
 
 
static ssize_t fts_cover_mode_show(
    struct device *dev, struct device_attribute *attr, char *buf)
{
    int count = 0;
    u8 reg_addr = FTS_REG_COVER_MODE_EN;
    u8 reg_val = 0;
    struct fts_ts_data *ts_data = dev_get_drvdata(dev);
 
    mutex_lock(&ts_data->input_dev->mutex);
    fts_read_reg(reg_addr, &reg_val);
    count = snprintf(buf + count, PAGE_SIZE, "Cover Mode:%s\n",
                     ts_data->cover_mode ? "On" : "Off");
    count += snprintf(buf + count, PAGE_SIZE, "Cover Reg:0x%02x,val:%d\n", reg_addr, reg_val);
    mutex_unlock(&ts_data->input_dev->mutex);
 
    return count;
}
 
static ssize_t fts_cover_mode_store(
    struct device *dev,
    struct device_attribute *attr, const char *buf, size_t count)
{
    struct fts_ts_data *ts_data = dev_get_drvdata(dev);
 
    mutex_lock(&ts_data->input_dev->mutex);
    if (FTS_SYSFS_ECHO_ON(buf)) {
        FTS_DEBUG("enter cover mode");
        ts_data->cover_mode = ENABLE;
        fts_ex_mode_switch(MODE_COVER, ENABLE);
    } else if (FTS_SYSFS_ECHO_OFF(buf)) {
        FTS_DEBUG("exit cover mode");
        ts_data->cover_mode = DISABLE;
        fts_ex_mode_switch(MODE_COVER, DISABLE);
    }
    mutex_unlock(&ts_data->input_dev->mutex);
    return count;
}
 
static ssize_t fts_charger_mode_show(
    struct device *dev, struct device_attribute *attr, char *buf)
{
    int count = 0;
    u8 reg_addr = FTS_REG_CHARGER_MODE_EN;
    u8 reg_val = 0;
    struct fts_ts_data *ts_data = dev_get_drvdata(dev);
 
    mutex_lock(&ts_data->input_dev->mutex);
    fts_read_reg(reg_addr, &reg_val);
    count = snprintf(buf + count, PAGE_SIZE, "Charger Mode:%s\n",
                     ts_data->charger_mode ? "On" : "Off");
    count += snprintf(buf + count, PAGE_SIZE, "Charger Reg:0x%02x,val:%d\n", reg_addr, reg_val);
    mutex_unlock(&ts_data->input_dev->mutex);
 
    return count;
}
 
static ssize_t fts_charger_mode_store(
    struct device *dev,
    struct device_attribute *attr, const char *buf, size_t count)
{
    struct fts_ts_data *ts_data = dev_get_drvdata(dev);
 
    mutex_lock(&ts_data->input_dev->mutex);
    if (FTS_SYSFS_ECHO_ON(buf)) {
        FTS_DEBUG("enter charger mode");
        ts_data->charger_mode = ENABLE;
        fts_ex_mode_switch(MODE_CHARGER, ENABLE);
    } else if (FTS_SYSFS_ECHO_OFF(buf)) {
        FTS_DEBUG("exit charger mode");
        ts_data->charger_mode = DISABLE;
        fts_ex_mode_switch(MODE_CHARGER, DISABLE);
    }
    mutex_unlock(&ts_data->input_dev->mutex);
    return count;
}
 
/* sysfs node: fts_earphone_mode */
static ssize_t fts_earphone_show(
    struct device *dev, struct device_attribute *attr, char *buf)
{
    int count = 0;
    u8 reg_addr = FTS_REG_EARPHONE_MODE_EN;
    u8 reg_val = 0;
    struct fts_ts_data *ts_data = dev_get_drvdata(dev);
 
    mutex_lock(&ts_data->input_dev->mutex);
    fts_read_reg(reg_addr, &reg_val);
    count = snprintf(buf + count, PAGE_SIZE, "Earphone Mode:%s\n",
                     ts_data->earphone_mode ? "On" : "Off");
    count += snprintf(buf + count, PAGE_SIZE, "Earphone Reg:0x%02x,val:%d\n", reg_addr, reg_val);
    mutex_unlock(&ts_data->input_dev->mutex);
 
    return count;
}
 
static ssize_t fts_earphone_store(
    struct device *dev,
    struct device_attribute *attr, const char *buf, size_t count)
{
    struct fts_ts_data *ts_data = dev_get_drvdata(dev);
 
    mutex_lock(&ts_data->input_dev->mutex);
    if (FTS_SYSFS_ECHO_ON(buf)) {
        FTS_DEBUG("enter earphone mode");
        ts_data->earphone_mode = ENABLE;
        fts_ex_mode_switch(MODE_EARPHONE, ENABLE);
    } else if (FTS_SYSFS_ECHO_OFF(buf)) {
        FTS_DEBUG("exit earphone mode");
        ts_data->earphone_mode = DISABLE;
        fts_ex_mode_switch(MODE_EARPHONE, DISABLE);
    }
    mutex_unlock(&ts_data->input_dev->mutex);
    return count;
}
 
/* sysfs node: fts_edgepalm_mode */
static ssize_t fts_edgepalm_show(
    struct device *dev, struct device_attribute *attr, char *buf)
{
    int count = 0;
    u8 reg_addr = FTS_REG_EDGEPALM_MODE_EN;
    u8 reg_val = 0;
    struct fts_ts_data *ts_data = dev_get_drvdata(dev);
 
    mutex_lock(&ts_data->input_dev->mutex);
    fts_read_reg(reg_addr, &reg_val);
    count = snprintf(buf + count, PAGE_SIZE, "Edgepalm Mode:%s,value:%d\n",
                     ts_data->edgepalm_mode ? "On" : "Off", ts_data->edgepalm_value);
    count += snprintf(buf + count, PAGE_SIZE, "Edgepalm Reg:0x%02x,val:%d\n", reg_addr, reg_val);
    mutex_unlock(&ts_data->input_dev->mutex);
 
    return count;
}
 
static ssize_t fts_edgepalm_store(
    struct device *dev,
    struct device_attribute *attr, const char *buf, size_t count)
{
    int value = 0;
    int n = 0;
    struct fts_ts_data *ts_data = dev_get_drvdata(dev);
 
    mutex_lock(&ts_data->input_dev->mutex);
    n = sscanf(buf, "%d", &value);
    if (n == 1) {
        ts_data->edgepalm_value = value;
        ts_data->edgepalm_mode = !!value;
        fts_ex_mode_switch(MODE_EDGEPALM, value);
    }
    mutex_unlock(&ts_data->input_dev->mutex);
    return count;
}
 
 
/* read and write charger mode
 * read example: cat fts_glove_mode        ---read  glove mode
 * write example:echo 1 > fts_glove_mode   ---write glove mode to 01
 */
static DEVICE_ATTR(fts_glove_mode, S_IRUGO | S_IWUSR, fts_glove_mode_show, fts_glove_mode_store);
static DEVICE_ATTR(fts_cover_mode, S_IRUGO | S_IWUSR, fts_cover_mode_show, fts_cover_mode_store);
static DEVICE_ATTR(fts_charger_mode, S_IRUGO | S_IWUSR, fts_charger_mode_show, fts_charger_mode_store);
static DEVICE_ATTR(fts_earphone_mode, S_IRUGO | S_IWUSR, fts_earphone_show, fts_earphone_store);
static DEVICE_ATTR(fts_edgepalm_mode, S_IRUGO | S_IWUSR, fts_edgepalm_show, fts_edgepalm_store);
 
static struct attribute *fts_touch_mode_attrs[] = {
    &dev_attr_fts_glove_mode.attr,
    &dev_attr_fts_cover_mode.attr,
    &dev_attr_fts_charger_mode.attr,
    &dev_attr_fts_earphone_mode.attr,
    &dev_attr_fts_edgepalm_mode.attr,
    NULL,
};
 
static struct attribute_group fts_touch_mode_group = {
    .attrs = fts_touch_mode_attrs,
};
 
int fts_ex_mode_recovery(struct fts_ts_data *ts_data)
{
    if (ts_data->glove_mode) {
        fts_ex_mode_switch(MODE_GLOVE, ENABLE);
    }
 
    if (ts_data->cover_mode) {
        fts_ex_mode_switch(MODE_COVER, ENABLE);
    }
 
    if (ts_data->charger_mode) {
        fts_ex_mode_switch(MODE_CHARGER, ENABLE);
    }
 
    if (ts_data->earphone_mode) {
        fts_ex_mode_switch(MODE_EARPHONE, ENABLE);
    }
 
    if (ts_data->edgepalm_mode) {
        fts_ex_mode_switch(MODE_EDGEPALM, ts_data->edgepalm_value);
    }
 
    return 0;
}
 
int fts_ex_mode_init(struct fts_ts_data *ts_data)
{
    int ret = 0;
 
    ts_data->glove_mode = DISABLE;
    ts_data->cover_mode = DISABLE;
    ts_data->charger_mode = DISABLE;
    ts_data->earphone_mode = DISABLE;
    ts_data->edgepalm_mode = DISABLE;
 
    ret = sysfs_create_group(&ts_data->dev->kobj, &fts_touch_mode_group);
    if (ret < 0) {
        FTS_ERROR("create sysfs(ex_mode) fail");
        sysfs_remove_group(&ts_data->dev->kobj, &fts_touch_mode_group);
        return ret;
    } else {
        FTS_DEBUG("create sysfs(ex_mode) successfully");
    }
 
    return 0;
}
 
int fts_ex_mode_exit(struct fts_ts_data *ts_data)
{
    sysfs_remove_group(&ts_data->dev->kobj, &fts_touch_mode_group);
    return 0;
}