hc
2024-08-16 62c46c9150c4afde7e5b25436263fddf79d66f0b
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
/* drivers/input/sensors/access/kxtik.c
 *
 * Copyright (C) 2012-2015 ROCKCHIP.
 * Author: luowei <lw@rock-chips.com>
 *
 * 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.
 *
 */
#include <linux/interrupt.h>
#include <linux/i2c.h>
#include <linux/slab.h>
#include <linux/irq.h>
#include <linux/miscdevice.h>
#include <linux/gpio.h>
#include <linux/uaccess.h>
#include <asm/atomic.h>
#include <linux/delay.h>
#include <linux/input.h>
#include <linux/workqueue.h>
#include <linux/freezer.h>
#ifdef CONFIG_HAS_EARLYSUSPEND
#include <linux/earlysuspend.h>
#endif
#include <linux/sensor-dev.h>
 
 
#define AP3212B_NUM_CACHABLE_REGS    23
#define AP3216C_NUM_CACHABLE_REGS    26
 
#define AP3212B_RAN_COMMAND    0x10
#define AP3212B_RAN_MASK        0x30
#define AP3212B_RAN_SHIFT    (4)
 
#define AP3212B_MODE_COMMAND    0x00
#define AP3212B_MODE_SHIFT    (0)
#define AP3212B_MODE_MASK    0x07
 
#define AP3212B_INT_COMMAND    0x01
#define AP3212B_INT_SHIFT    (0)
#define AP3212B_INT_MASK        0x03
#define AP3212B_INT_PMASK        0x02
#define AP3212B_INT_AMASK        0x01
 
#define    AL3212_ADC_LSB        0x0c
#define    AL3212_ADC_MSB        0x0d
 
#define AP3212B_ALS_LTHL            0x1a
#define AP3212B_ALS_LTHL_SHIFT    (0)
#define AP3212B_ALS_LTHL_MASK    0xff
 
#define AP3212B_ALS_LTHH            0x1b
#define AP3212B_ALS_LTHH_SHIFT    (0)
#define AP3212B_ALS_LTHH_MASK    0xff
 
#define AP3212B_ALS_HTHL            0x1c
#define AP3212B_ALS_HTHL_SHIFT    (0)
#define AP3212B_ALS_HTHL_MASK    0xff
 
#define AP3212B_ALS_HTHH            0x1d
#define AP3212B_ALS_HTHH_SHIFT    (0)
#define AP3212B_ALS_HTHH_MASK    0xff
 
static u16 ap321xx_threshole[8] = {28,444,625,888,1778,3555,7222,0xffff};
 
/*
 * register access helpers
 */
 
static int __ap321xx_read_reg(struct i2c_client *client,
                  u32 reg, u8 mask, u8 shift)
{
   u8 val;
 
   val = i2c_smbus_read_byte_data(client, reg);
   return (val & mask) >> shift;
}
 
static int __ap321xx_write_reg(struct i2c_client *client,
               u32 reg, u8 mask, u8 shift, u8 val)
{
   int ret = 0;
   u8 tmp;
 
   tmp = i2c_smbus_read_byte_data(client, reg);
   tmp &= ~mask;
   tmp |= val << shift;
 
   ret = i2c_smbus_write_byte_data(client, reg, tmp);
 
   return ret;
}
 
 
/*
 * internally used functions
 */
/* range */
static int ap321xx_set_range(struct i2c_client *client, int range)
{
   return __ap321xx_write_reg(client, AP3212B_RAN_COMMAND,
       AP3212B_RAN_MASK, AP3212B_RAN_SHIFT, range);;
}
 
 
/* mode */
static int ap321xx_get_mode(struct i2c_client *client)
{
   struct sensor_private_data *sensor =
       (struct sensor_private_data *) i2c_get_clientdata(client);
   int ret;
 
   ret = __ap321xx_read_reg(client, sensor->ops->ctrl_reg,
           AP3212B_MODE_MASK, AP3212B_MODE_SHIFT);
   return ret;
}
static int ap321xx_set_mode(struct i2c_client *client, int mode)
{
   struct sensor_private_data *sensor =
       (struct sensor_private_data *) i2c_get_clientdata(client);
   int ret;
 
   ret = __ap321xx_write_reg(client, sensor->ops->ctrl_reg,
               AP3212B_MODE_MASK, AP3212B_MODE_SHIFT, mode);
   return ret;
}
 
static int ap321xx_get_adc_value(struct i2c_client *client)
{
   unsigned int lsb, msb, val;
   unsigned char index=0;
 
   lsb = i2c_smbus_read_byte_data(client, AL3212_ADC_LSB);
   if (lsb < 0) {
       return lsb;
   }
 
   msb = i2c_smbus_read_byte_data(client, AL3212_ADC_MSB);
   if (msb < 0)
       return msb;
 
   val = msb << 8 | lsb;
   for(index = 0; index < 7 && val > ap321xx_threshole[index];index++)
       ;
 
   return index;
}
 
/* ALS low threshold */
static int ap321xx_set_althres(struct i2c_client *client, int val)
{
   int lsb, msb, err;
 
   msb = val >> 8;
   lsb = val & AP3212B_ALS_LTHL_MASK;
 
   err = __ap321xx_write_reg(client, AP3212B_ALS_LTHL,
       AP3212B_ALS_LTHL_MASK, AP3212B_ALS_LTHL_SHIFT, lsb);
   if (err)
       return err;
 
   err = __ap321xx_write_reg(client, AP3212B_ALS_LTHH,
       AP3212B_ALS_LTHH_MASK, AP3212B_ALS_LTHH_SHIFT, msb);
 
   return err;
}
 
/* ALS high threshold */
static int ap321xx_set_ahthres(struct i2c_client *client, int val)
{
   int lsb, msb, err;
 
   msb = val >> 8;
   lsb = val & AP3212B_ALS_HTHL_MASK;
 
   err = __ap321xx_write_reg(client, AP3212B_ALS_HTHL,
       AP3212B_ALS_HTHL_MASK, AP3212B_ALS_HTHL_SHIFT, lsb);
   if (err)
       return err;
 
   err = __ap321xx_write_reg(client, AP3212B_ALS_HTHH,
       AP3212B_ALS_HTHH_MASK, AP3212B_ALS_HTHH_SHIFT, msb);
 
   return err;
}
 
static int ap321xx_get_intstat(struct i2c_client *client)
{
   struct sensor_private_data *sensor =
       (struct sensor_private_data *) i2c_get_clientdata(client);
   int val;
 
   val = i2c_smbus_read_byte_data(client, sensor->ops->int_status_reg);
   val &= AP3212B_INT_MASK;
 
   return val >> AP3212B_INT_SHIFT;
}
 
static int ap321xx_product_detect(struct i2c_client *client)
{
   int mid = i2c_smbus_read_byte_data(client, 0x03);
   int pid = i2c_smbus_read_byte_data(client, 0x04);
   int rid = i2c_smbus_read_byte_data(client, 0x05);
 
   if ( mid == 0x01 && pid == 0x01 &&
       (rid == 0x03 || rid == 0x04) )
   {
       //printk("RevID [%d], ==> DA3212 v1.5~1.8 ...... AP3212B detected\n", rid);
   }
   else if ( (mid == 0x01 && pid == 0x02 && rid == 0x00) ||
             (mid == 0x02 && pid == 0x02 && rid == 0x01))
   {
       //printk("RevID [%d], ==> DA3212 v2.0 ...... AP3212C/AP3216C detected\n", rid);
   }
   else
   {
       //printk("MakeID[%d] ProductID[%d] RevID[%d] .... can't detect ... bad reversion!!!\n", mid, pid, rid);
       return -EIO;
   }
 
   return 0;
}
 
static int ap321xx_init_client(struct i2c_client *client)
{
   /* set defaults */
   ap321xx_set_range(client, 0);
   ap321xx_set_mode(client, 0);
 
   return 0;
}
 
static int ap321xx_lsensor_enable(struct i2c_client *client)
{
   int ret = 0,mode;
 
   mode = ap321xx_get_mode(client);
   if((mode & 0x01) == 0){
       mode |= 0x01;
       ret = ap321xx_set_mode(client,mode);
   }
 
   return ret;
}
 
static int ap321xx_lsensor_disable(struct i2c_client *client)
{
   int ret = 0,mode;
 
   mode = ap321xx_get_mode(client);
   if(mode & 0x01){
       mode &= ~0x01;
       if(mode == 0x04)
           mode = 0;
       ret = ap321xx_set_mode(client,mode);
   }
 
   return ret;
}
 
static void ap321xx_change_ls_threshold(struct i2c_client *client)
{
   struct sensor_private_data *sensor =
       (struct sensor_private_data *) i2c_get_clientdata(client);
   int value;
 
   value = ap321xx_get_adc_value(client);
   DBG("ALS lux index: %u\n", value);
   if(value > 0){
       ap321xx_set_althres(client,ap321xx_threshole[value-1]);
       ap321xx_set_ahthres(client,ap321xx_threshole[value]);
   }
   else{
       ap321xx_set_althres(client,0);
       ap321xx_set_ahthres(client,ap321xx_threshole[value]);
   }
 
   input_report_abs(sensor->input_dev, ABS_MISC, value);
   input_sync(sensor->input_dev);
}
 
 
/****************operate according to sensor chip:start************/
 
static int sensor_active(struct i2c_client *client, int enable, int rate)
{
   int result = 0;
 
   //register setting according to chip datasheet
   if (enable){
       result = ap321xx_lsensor_enable(client);
       if(!result){
           msleep(200);
           ap321xx_change_ls_threshold(client);
       }
   }
   else
       result = ap321xx_lsensor_disable(client);
 
   if(result)
       printk("%s:fail to active sensor\n",__func__);
 
   return result;
 
}
 
 
static int sensor_init(struct i2c_client *client)
{
   struct sensor_private_data *sensor =
       (struct sensor_private_data *) i2c_get_clientdata(client);
   int result = 0;
 
   result = ap321xx_product_detect(client);
   if (result)
   {
       dev_err(&client->dev, "ret: %d, product version detect failed.\n",result);
       return result;
   }
 
   /* initialize the AP3212B chip */
   result = ap321xx_init_client(client);
   if (result)
       return result;
 
   result = sensor->ops->active(client,0,0);
   if(result)
   {
       printk("%s:line=%d,error\n",__func__,__LINE__);
       return result;
   }
 
   sensor->status_cur = SENSOR_OFF;
 
   return result;
}
 
static int sensor_report_value(struct i2c_client *client)
{
   int result = 0;
   u8 int_stat;
 
   int_stat = ap321xx_get_intstat(client);
   // ALS int
   if (int_stat & AP3212B_INT_AMASK)
   {
       ap321xx_change_ls_threshold(client);
   }
 
   return result;
}
 
static struct sensor_operate light_ap321xx_ops = {
   .name                = "ls_ap321xx",
   .type                = SENSOR_TYPE_LIGHT,    //sensor type and it should be correct
   .id_i2c                = LIGHT_ID_AP321XX,    //i2c id number
   .read_reg            = SENSOR_UNKNOW_DATA,    //read data        //there are two regs, we fix them in code.
   .read_len            = 1,            //data length
   .id_reg                = SENSOR_UNKNOW_DATA,    //read device id from this register   //there are 3 regs, we fix them in code.
   .id_data             = SENSOR_UNKNOW_DATA,    //device id
   .precision            = 16,            //8 bits
   .ctrl_reg             = AP3212B_MODE_COMMAND,        //enable or disable
   .int_status_reg         = AP3212B_INT_COMMAND,    //intterupt status register
   .range                = {100,65535},        //range
   .brightness                                        ={10,255},                          // brightness
   .trig                = IRQF_TRIGGER_FALLING | IRQF_ONESHOT | IRQF_SHARED,
   .active                = sensor_active,
   .init                = sensor_init,
   .report                = sensor_report_value,
};
 
/****************operate according to sensor chip:end************/
 
static int light_ap321xx_probe(struct i2c_client *client,
                  const struct i2c_device_id *devid)
{
   return sensor_register_device(client, NULL, devid, &light_ap321xx_ops);
}
 
static int light_ap321xx_remove(struct i2c_client *client)
{
   return sensor_unregister_device(client, NULL, &light_ap321xx_ops);
}
 
static const struct i2c_device_id light_ap321xx_id[] = {
   {"ls_ap321xx", LIGHT_ID_AP321XX},
   {}
};
 
static struct i2c_driver light_ap321xx_driver = {
   .probe = light_ap321xx_probe,
   .remove = light_ap321xx_remove,
   .shutdown = sensor_shutdown,
   .id_table = light_ap321xx_id,
   .driver = {
       .name = "light_ap321xx",
   #ifdef CONFIG_PM
       .pm = &sensor_pm_ops,
   #endif
   },
};
 
module_i2c_driver(light_ap321xx_driver);
 
MODULE_AUTHOR("luowei <lw@rock-chips.com>");
MODULE_DESCRIPTION("ap321xx light driver");
MODULE_LICENSE("GPL");