MLK-11471-01 input: misc: isl29023: Add isl29023 driver support on i.MX6Q/DL/SX platform.
Add isl29023 driver support for i.MX6Q/DL/SX platform. The code derives from 3.10.y branch. Signed-off-by: Luwei Zhou <b45643@freescale.com> Signed-off-by: Fugang Duan <B38611@freescale.com> (cherry picked from commit: b0134420bba0022151499f1bb15e0d5daba970fa)
This commit is contained in:
@ -801,4 +801,14 @@ config SENSOR_FXLS8471
|
||||
depends on I2C
|
||||
default n
|
||||
|
||||
config INPUT_ISL29023
|
||||
tristate "Intersil ISL29023 ambient light sensor"
|
||||
depends on I2C && SYSFS
|
||||
help
|
||||
If you say yes here you get support for the Intersil ISL29023
|
||||
ambient light sensor.
|
||||
|
||||
This driver can also be built as a module. If so, the module
|
||||
will be called isl29023.
|
||||
|
||||
endif
|
||||
|
||||
@ -76,3 +76,4 @@ obj-$(CONFIG_INPUT_YEALINK) += yealink.o
|
||||
obj-$(CONFIG_INPUT_IDEAPAD_SLIDEBAR) += ideapad_slidebar.o
|
||||
obj-$(CONFIG_INPUT_MPL3115) += mpl3115.o
|
||||
obj-$(CONFIG_SENSOR_FXLS8471) += fxls8471.o fxls8471_i2c.o
|
||||
obj-$(CONFIG_INPUT_ISL29023) += isl29023.o
|
||||
|
||||
1075
drivers/input/misc/isl29023.c
Normal file
1075
drivers/input/misc/isl29023.c
Normal file
File diff suppressed because it is too large
Load Diff
47
include/linux/isl29023.h
Normal file
47
include/linux/isl29023.h
Normal file
@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Copyright (C) 2011-2014 Freescale Semiconductor, Inc. All Rights Reserved.
|
||||
*/
|
||||
|
||||
/*
|
||||
* 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 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.
|
||||
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
#ifndef __ISL29023_H__
|
||||
#define __ISL29023_H__
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
#define ISL29023_PD_MODE 0x0
|
||||
#define ISL29023_ALS_ONCE_MODE 0x1
|
||||
#define ISL29023_IR_ONCE_MODE 0x2
|
||||
#define ISL29023_ALS_CONT_MODE 0x5
|
||||
#define ISL29023_IR_CONT_MODE 0x6
|
||||
|
||||
#define ISL29023_INT_PERSISTS_1 0x0
|
||||
#define ISL29023_INT_PERSISTS_4 0x1
|
||||
#define ISL29023_INT_PERSISTS_8 0x2
|
||||
#define ISL29023_INT_PERSISTS_16 0x3
|
||||
|
||||
#define ISL29023_RES_16 0x0
|
||||
#define ISL29023_RES_12 0x1
|
||||
#define ISL29023_RES_8 0x2
|
||||
#define ISL29023_RES_4 0x3
|
||||
|
||||
#define ISL29023_RANGE_1K 0x0
|
||||
#define ISL29023_RANGE_4K 0x1
|
||||
#define ISL29023_RANGE_16K 0x2
|
||||
#define ISL29023_RANGE_64K 0x3
|
||||
|
||||
#endif
|
||||
47
include/uapi/linux/isl29023.h
Normal file
47
include/uapi/linux/isl29023.h
Normal file
@ -0,0 +1,47 @@
|
||||
/*
|
||||
* Copyright (C) 2011-2014 Freescale Semiconductor, Inc. All Rights Reserved.
|
||||
*/
|
||||
|
||||
/*
|
||||
* 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 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.
|
||||
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
#ifndef __UAPI_LINUX_ISL29023_H__
|
||||
#define __UAPI_LINUX_ISL29023_H__
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
#define ISL29023_PD_MODE 0x0
|
||||
#define ISL29023_ALS_ONCE_MODE 0x1
|
||||
#define ISL29023_IR_ONCE_MODE 0x2
|
||||
#define ISL29023_ALS_CONT_MODE 0x5
|
||||
#define ISL29023_IR_CONT_MODE 0x6
|
||||
|
||||
#define ISL29023_INT_PERSISTS_1 0x0
|
||||
#define ISL29023_INT_PERSISTS_4 0x1
|
||||
#define ISL29023_INT_PERSISTS_8 0x2
|
||||
#define ISL29023_INT_PERSISTS_16 0x3
|
||||
|
||||
#define ISL29023_RES_16 0x0
|
||||
#define ISL29023_RES_12 0x1
|
||||
#define ISL29023_RES_8 0x2
|
||||
#define ISL29023_RES_4 0x3
|
||||
|
||||
#define ISL29023_RANGE_1K 0x0
|
||||
#define ISL29023_RANGE_4K 0x1
|
||||
#define ISL29023_RANGE_16K 0x2
|
||||
#define ISL29023_RANGE_64K 0x3
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user