blob: 999bf7e52f42425dceba7dc8e9cee7bc5edc45d2 (
plain) (
blame)
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
|
#ifndef __APM_16D_H__
#define __APM_16D_H__
#include <linux/ioctl.h>
/*ALSPS REGS*/
#define ALS_CMD 0x01
#define ALS_DT1 0x02
#define ALS_DT2 0x03
#define ALS_THDH1 0x04
#define ALS_THDH2 0x05
#define ALS_THDL1 0x06
#define ALS_THDL2 0x07
#define ALSPS_STATUS 0x08
#define PS_CMD 0x09
#define PS_DT 0x0A
#define PS_THDH 0x0B
#define PS_THDL 0x0C
/*ALS Command*/
#define SD_ALS (1 << 0)
#define INT_ALS (1 << 1)
#define IT_ALS (0x03 << 2)
#define THD_ALS (0x03 << 4)
#define GAIN_ALS (0x03 << 6)
/*Proximity sensor command*/
#define SD_PS (1 << 0)
#define INT_PS (1 << 1)
#define IT_PS (0x03 << 2)
#define DR_PS (1 << 4)
#define SLP_PS (0x03 << 5)
#define INTM_PS (1 << 7)
#endif
|