Thomas Gleixner | c942fdd | 2019-05-27 08:55:06 +0200 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 2 | /* |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 3 | * A iio driver for the light sensor ISL 29018/29023/29035. |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 4 | * |
| 5 | * IIO driver for monitoring ambient light intensity in luxi, proximity |
| 6 | * sensing and infrared sensing. |
| 7 | * |
| 8 | * Copyright (c) 2010, NVIDIA Corporation. |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <linux/module.h> |
| 12 | #include <linux/i2c.h> |
| 13 | #include <linux/err.h> |
| 14 | #include <linux/mutex.h> |
| 15 | #include <linux/delay.h> |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 16 | #include <linux/regmap.h> |
Anson Huang | 1a02d12 | 2019-01-08 09:09:39 +0000 | [diff] [blame] | 17 | #include <linux/regulator/consumer.h> |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 18 | #include <linux/slab.h> |
Jonathan Cameron | 06458e2 | 2012-04-25 15:54:58 +0100 | [diff] [blame] | 19 | #include <linux/iio/iio.h> |
| 20 | #include <linux/iio/sysfs.h> |
Laurentiu Palcu | dc4ecaf | 2014-01-09 10:20:00 +0000 | [diff] [blame] | 21 | #include <linux/acpi.h> |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 22 | |
Peter Meerwald-Stadler | 13e6d63 | 2016-07-05 13:55:36 +0200 | [diff] [blame] | 23 | #define ISL29018_CONV_TIME_MS 100 |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 24 | |
| 25 | #define ISL29018_REG_ADD_COMMAND1 0x00 |
Peter Meerwald-Stadler | 13e6d63 | 2016-07-05 13:55:36 +0200 | [diff] [blame] | 26 | #define ISL29018_CMD1_OPMODE_SHIFT 5 |
| 27 | #define ISL29018_CMD1_OPMODE_MASK (7 << ISL29018_CMD1_OPMODE_SHIFT) |
| 28 | #define ISL29018_CMD1_OPMODE_POWER_DOWN 0 |
| 29 | #define ISL29018_CMD1_OPMODE_ALS_ONCE 1 |
| 30 | #define ISL29018_CMD1_OPMODE_IR_ONCE 2 |
| 31 | #define ISL29018_CMD1_OPMODE_PROX_ONCE 3 |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 32 | |
Peter Meerwald-Stadler | 13e6d63 | 2016-07-05 13:55:36 +0200 | [diff] [blame] | 33 | #define ISL29018_REG_ADD_COMMAND2 0x01 |
| 34 | #define ISL29018_CMD2_RESOLUTION_SHIFT 2 |
| 35 | #define ISL29018_CMD2_RESOLUTION_MASK (0x3 << ISL29018_CMD2_RESOLUTION_SHIFT) |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 36 | |
Peter Meerwald-Stadler | 13e6d63 | 2016-07-05 13:55:36 +0200 | [diff] [blame] | 37 | #define ISL29018_CMD2_RANGE_SHIFT 0 |
| 38 | #define ISL29018_CMD2_RANGE_MASK (0x3 << ISL29018_CMD2_RANGE_SHIFT) |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 39 | |
Peter Meerwald-Stadler | 13e6d63 | 2016-07-05 13:55:36 +0200 | [diff] [blame] | 40 | #define ISL29018_CMD2_SCHEME_SHIFT 7 |
| 41 | #define ISL29018_CMD2_SCHEME_MASK (0x1 << ISL29018_CMD2_SCHEME_SHIFT) |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 42 | |
| 43 | #define ISL29018_REG_ADD_DATA_LSB 0x02 |
| 44 | #define ISL29018_REG_ADD_DATA_MSB 0x03 |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 45 | |
Grant Grundler | 176f9f2 | 2011-08-09 15:18:14 -0700 | [diff] [blame] | 46 | #define ISL29018_REG_TEST 0x08 |
| 47 | #define ISL29018_TEST_SHIFT 0 |
| 48 | #define ISL29018_TEST_MASK (0xFF << ISL29018_TEST_SHIFT) |
| 49 | |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 50 | #define ISL29035_REG_DEVICE_ID 0x0F |
| 51 | #define ISL29035_DEVICE_ID_SHIFT 0x03 |
| 52 | #define ISL29035_DEVICE_ID_MASK (0x7 << ISL29035_DEVICE_ID_SHIFT) |
| 53 | #define ISL29035_DEVICE_ID 0x5 |
| 54 | #define ISL29035_BOUT_SHIFT 0x07 |
| 55 | #define ISL29035_BOUT_MASK (0x01 << ISL29035_BOUT_SHIFT) |
| 56 | |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 57 | enum isl29018_int_time { |
| 58 | ISL29018_INT_TIME_16, |
| 59 | ISL29018_INT_TIME_12, |
| 60 | ISL29018_INT_TIME_8, |
| 61 | ISL29018_INT_TIME_4, |
| 62 | }; |
| 63 | |
| 64 | static const unsigned int isl29018_int_utimes[3][4] = { |
| 65 | {90000, 5630, 351, 21}, |
| 66 | {90000, 5600, 352, 22}, |
| 67 | {105000, 6500, 410, 25}, |
| 68 | }; |
| 69 | |
| 70 | static const struct isl29018_scale { |
| 71 | unsigned int scale; |
| 72 | unsigned int uscale; |
| 73 | } isl29018_scales[4][4] = { |
| 74 | { {0, 15258}, {0, 61035}, {0, 244140}, {0, 976562} }, |
| 75 | { {0, 244140}, {0, 976562}, {3, 906250}, {15, 625000} }, |
| 76 | { {3, 906250}, {15, 625000}, {62, 500000}, {250, 0} }, |
| 77 | { {62, 500000}, {250, 0}, {1000, 0}, {4000, 0} } |
| 78 | }; |
| 79 | |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 80 | struct isl29018_chip { |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 81 | struct regmap *regmap; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 82 | struct mutex lock; |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 83 | int type; |
Roberta Dobrescu | 809a591 | 2015-04-16 22:20:58 +0300 | [diff] [blame] | 84 | unsigned int calibscale; |
| 85 | unsigned int ucalibscale; |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 86 | unsigned int int_time; |
| 87 | struct isl29018_scale scale; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 88 | int prox_scheme; |
Bryan Freed | 1e45cf3 | 2012-10-25 00:39:00 +0100 | [diff] [blame] | 89 | bool suspended; |
Anson Huang | 1a02d12 | 2019-01-08 09:09:39 +0000 | [diff] [blame] | 90 | struct regulator *vcc_reg; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 91 | }; |
| 92 | |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 93 | static int isl29018_set_integration_time(struct isl29018_chip *chip, |
| 94 | unsigned int utime) |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 95 | { |
Brian Masney | ea908ab | 2016-09-25 07:41:07 -0400 | [diff] [blame] | 96 | unsigned int i; |
| 97 | int ret; |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 98 | unsigned int int_time, new_int_time; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 99 | |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 100 | for (i = 0; i < ARRAY_SIZE(isl29018_int_utimes[chip->type]); ++i) { |
| 101 | if (utime == isl29018_int_utimes[chip->type][i]) { |
| 102 | new_int_time = i; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 103 | break; |
| 104 | } |
| 105 | } |
| 106 | |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 107 | if (i >= ARRAY_SIZE(isl29018_int_utimes[chip->type])) |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 108 | return -EINVAL; |
| 109 | |
Peter Meerwald-Stadler | 13e6d63 | 2016-07-05 13:55:36 +0200 | [diff] [blame] | 110 | ret = regmap_update_bits(chip->regmap, ISL29018_REG_ADD_COMMAND2, |
| 111 | ISL29018_CMD2_RESOLUTION_MASK, |
| 112 | i << ISL29018_CMD2_RESOLUTION_SHIFT); |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 113 | if (ret < 0) |
| 114 | return ret; |
| 115 | |
Peter Meerwald-Stadler | 96273f43 | 2016-07-05 13:55:39 +0200 | [diff] [blame] | 116 | /* Keep the same range when integration time changes */ |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 117 | int_time = chip->int_time; |
| 118 | for (i = 0; i < ARRAY_SIZE(isl29018_scales[int_time]); ++i) { |
| 119 | if (chip->scale.scale == isl29018_scales[int_time][i].scale && |
| 120 | chip->scale.uscale == isl29018_scales[int_time][i].uscale) { |
| 121 | chip->scale = isl29018_scales[new_int_time][i]; |
| 122 | break; |
| 123 | } |
| 124 | } |
| 125 | chip->int_time = new_int_time; |
| 126 | |
| 127 | return 0; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 128 | } |
| 129 | |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 130 | static int isl29018_set_scale(struct isl29018_chip *chip, int scale, int uscale) |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 131 | { |
Brian Masney | ea908ab | 2016-09-25 07:41:07 -0400 | [diff] [blame] | 132 | unsigned int i; |
| 133 | int ret; |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 134 | struct isl29018_scale new_scale; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 135 | |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 136 | for (i = 0; i < ARRAY_SIZE(isl29018_scales[chip->int_time]); ++i) { |
| 137 | if (scale == isl29018_scales[chip->int_time][i].scale && |
| 138 | uscale == isl29018_scales[chip->int_time][i].uscale) { |
| 139 | new_scale = isl29018_scales[chip->int_time][i]; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 140 | break; |
| 141 | } |
| 142 | } |
| 143 | |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 144 | if (i >= ARRAY_SIZE(isl29018_scales[chip->int_time])) |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 145 | return -EINVAL; |
| 146 | |
Peter Meerwald-Stadler | 13e6d63 | 2016-07-05 13:55:36 +0200 | [diff] [blame] | 147 | ret = regmap_update_bits(chip->regmap, ISL29018_REG_ADD_COMMAND2, |
| 148 | ISL29018_CMD2_RANGE_MASK, |
| 149 | i << ISL29018_CMD2_RANGE_SHIFT); |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 150 | if (ret < 0) |
| 151 | return ret; |
| 152 | |
| 153 | chip->scale = new_scale; |
| 154 | |
| 155 | return 0; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 156 | } |
| 157 | |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 158 | static int isl29018_read_sensor_input(struct isl29018_chip *chip, int mode) |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 159 | { |
| 160 | int status; |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 161 | unsigned int lsb; |
| 162 | unsigned int msb; |
Alison Schofield | 6467086 | 2016-02-22 12:34:32 -0800 | [diff] [blame] | 163 | struct device *dev = regmap_get_device(chip->regmap); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 164 | |
| 165 | /* Set mode */ |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 166 | status = regmap_write(chip->regmap, ISL29018_REG_ADD_COMMAND1, |
Peter Meerwald-Stadler | 13e6d63 | 2016-07-05 13:55:36 +0200 | [diff] [blame] | 167 | mode << ISL29018_CMD1_OPMODE_SHIFT); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 168 | if (status) { |
Alison Schofield | 6467086 | 2016-02-22 12:34:32 -0800 | [diff] [blame] | 169 | dev_err(dev, |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 170 | "Error in setting operating mode err %d\n", status); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 171 | return status; |
| 172 | } |
Peter Meerwald-Stadler | 13e6d63 | 2016-07-05 13:55:36 +0200 | [diff] [blame] | 173 | msleep(ISL29018_CONV_TIME_MS); |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 174 | status = regmap_read(chip->regmap, ISL29018_REG_ADD_DATA_LSB, &lsb); |
| 175 | if (status < 0) { |
Alison Schofield | 6467086 | 2016-02-22 12:34:32 -0800 | [diff] [blame] | 176 | dev_err(dev, |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 177 | "Error in reading LSB DATA with err %d\n", status); |
| 178 | return status; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 179 | } |
| 180 | |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 181 | status = regmap_read(chip->regmap, ISL29018_REG_ADD_DATA_MSB, &msb); |
| 182 | if (status < 0) { |
Alison Schofield | 6467086 | 2016-02-22 12:34:32 -0800 | [diff] [blame] | 183 | dev_err(dev, |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 184 | "Error in reading MSB DATA with error %d\n", status); |
| 185 | return status; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 186 | } |
Alison Schofield | 6467086 | 2016-02-22 12:34:32 -0800 | [diff] [blame] | 187 | dev_vdbg(dev, "MSB 0x%x and LSB 0x%x\n", msb, lsb); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 188 | |
| 189 | return (msb << 8) | lsb; |
| 190 | } |
| 191 | |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 192 | static int isl29018_read_lux(struct isl29018_chip *chip, int *lux) |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 193 | { |
| 194 | int lux_data; |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 195 | unsigned int data_x_range; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 196 | |
Peter Meerwald-Stadler | 13e6d63 | 2016-07-05 13:55:36 +0200 | [diff] [blame] | 197 | lux_data = isl29018_read_sensor_input(chip, |
| 198 | ISL29018_CMD1_OPMODE_ALS_ONCE); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 199 | if (lux_data < 0) |
| 200 | return lux_data; |
| 201 | |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 202 | data_x_range = lux_data * chip->scale.scale + |
| 203 | lux_data * chip->scale.uscale / 1000000; |
| 204 | *lux = data_x_range * chip->calibscale + |
| 205 | data_x_range * chip->ucalibscale / 1000000; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 206 | |
| 207 | return 0; |
| 208 | } |
| 209 | |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 210 | static int isl29018_read_ir(struct isl29018_chip *chip, int *ir) |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 211 | { |
| 212 | int ir_data; |
| 213 | |
Peter Meerwald-Stadler | 13e6d63 | 2016-07-05 13:55:36 +0200 | [diff] [blame] | 214 | ir_data = isl29018_read_sensor_input(chip, |
| 215 | ISL29018_CMD1_OPMODE_IR_ONCE); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 216 | if (ir_data < 0) |
| 217 | return ir_data; |
| 218 | |
| 219 | *ir = ir_data; |
| 220 | |
| 221 | return 0; |
| 222 | } |
| 223 | |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 224 | static int isl29018_read_proximity_ir(struct isl29018_chip *chip, int scheme, |
Eva Rachel Retuya | ca52c88 | 2016-02-18 15:35:36 +0800 | [diff] [blame] | 225 | int *near_ir) |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 226 | { |
| 227 | int status; |
| 228 | int prox_data = -1; |
| 229 | int ir_data = -1; |
Alison Schofield | 6467086 | 2016-02-22 12:34:32 -0800 | [diff] [blame] | 230 | struct device *dev = regmap_get_device(chip->regmap); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 231 | |
| 232 | /* Do proximity sensing with required scheme */ |
Peter Meerwald-Stadler | 13e6d63 | 2016-07-05 13:55:36 +0200 | [diff] [blame] | 233 | status = regmap_update_bits(chip->regmap, ISL29018_REG_ADD_COMMAND2, |
| 234 | ISL29018_CMD2_SCHEME_MASK, |
| 235 | scheme << ISL29018_CMD2_SCHEME_SHIFT); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 236 | if (status) { |
Alison Schofield | 6467086 | 2016-02-22 12:34:32 -0800 | [diff] [blame] | 237 | dev_err(dev, "Error in setting operating mode\n"); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 238 | return status; |
| 239 | } |
| 240 | |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 241 | prox_data = isl29018_read_sensor_input(chip, |
Peter Meerwald-Stadler | 13e6d63 | 2016-07-05 13:55:36 +0200 | [diff] [blame] | 242 | ISL29018_CMD1_OPMODE_PROX_ONCE); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 243 | if (prox_data < 0) |
| 244 | return prox_data; |
| 245 | |
| 246 | if (scheme == 1) { |
| 247 | *near_ir = prox_data; |
| 248 | return 0; |
| 249 | } |
| 250 | |
Peter Meerwald-Stadler | 13e6d63 | 2016-07-05 13:55:36 +0200 | [diff] [blame] | 251 | ir_data = isl29018_read_sensor_input(chip, |
| 252 | ISL29018_CMD1_OPMODE_IR_ONCE); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 253 | if (ir_data < 0) |
| 254 | return ir_data; |
| 255 | |
| 256 | if (prox_data >= ir_data) |
| 257 | *near_ir = prox_data - ir_data; |
| 258 | else |
| 259 | *near_ir = 0; |
| 260 | |
| 261 | return 0; |
| 262 | } |
| 263 | |
Brian Masney | 0281996 | 2016-09-26 20:20:17 -0400 | [diff] [blame] | 264 | static ssize_t in_illuminance_scale_available_show |
| 265 | (struct device *dev, struct device_attribute *attr, |
| 266 | char *buf) |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 267 | { |
| 268 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
| 269 | struct isl29018_chip *chip = iio_priv(indio_dev); |
Brian Masney | ea908ab | 2016-09-25 07:41:07 -0400 | [diff] [blame] | 270 | unsigned int i; |
| 271 | int len = 0; |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 272 | |
Brian Masney | 5faf98c | 2016-09-26 20:20:18 -0400 | [diff] [blame] | 273 | mutex_lock(&chip->lock); |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 274 | for (i = 0; i < ARRAY_SIZE(isl29018_scales[chip->int_time]); ++i) |
| 275 | len += sprintf(buf + len, "%d.%06d ", |
| 276 | isl29018_scales[chip->int_time][i].scale, |
| 277 | isl29018_scales[chip->int_time][i].uscale); |
Brian Masney | 5faf98c | 2016-09-26 20:20:18 -0400 | [diff] [blame] | 278 | mutex_unlock(&chip->lock); |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 279 | |
| 280 | buf[len - 1] = '\n'; |
| 281 | |
| 282 | return len; |
| 283 | } |
| 284 | |
Brian Masney | 0281996 | 2016-09-26 20:20:17 -0400 | [diff] [blame] | 285 | static ssize_t in_illuminance_integration_time_available_show |
| 286 | (struct device *dev, struct device_attribute *attr, |
| 287 | char *buf) |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 288 | { |
| 289 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
| 290 | struct isl29018_chip *chip = iio_priv(indio_dev); |
Brian Masney | ea908ab | 2016-09-25 07:41:07 -0400 | [diff] [blame] | 291 | unsigned int i; |
| 292 | int len = 0; |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 293 | |
| 294 | for (i = 0; i < ARRAY_SIZE(isl29018_int_utimes[chip->type]); ++i) |
| 295 | len += sprintf(buf + len, "0.%06d ", |
| 296 | isl29018_int_utimes[chip->type][i]); |
| 297 | |
| 298 | buf[len - 1] = '\n'; |
| 299 | |
| 300 | return len; |
| 301 | } |
| 302 | |
Brian Masney | e748e28 | 2016-10-06 20:48:34 -0400 | [diff] [blame] | 303 | /* |
| 304 | * From ISL29018 Data Sheet (FN6619.4, Oct 8, 2012) regarding the |
| 305 | * infrared suppression: |
| 306 | * |
| 307 | * Proximity Sensing Scheme: Bit 7. This bit programs the function |
| 308 | * of the proximity detection. Logic 0 of this bit, Scheme 0, makes |
| 309 | * full n (4, 8, 12, 16) bits (unsigned) proximity detection. The range |
| 310 | * of Scheme 0 proximity count is from 0 to 2^n. Logic 1 of this bit, |
| 311 | * Scheme 1, makes n-1 (3, 7, 11, 15) bits (2's complementary) |
| 312 | * proximity_less_ambient detection. The range of Scheme 1 |
| 313 | * proximity count is from -2^(n-1) to 2^(n-1) . The sign bit is extended |
| 314 | * for resolutions less than 16. While Scheme 0 has wider dynamic |
| 315 | * range, Scheme 1 proximity detection is less affected by the |
| 316 | * ambient IR noise variation. |
| 317 | * |
| 318 | * 0 Sensing IR from LED and ambient |
| 319 | * 1 Sensing IR from LED with ambient IR rejection |
| 320 | */ |
Brian Masney | 0281996 | 2016-09-26 20:20:17 -0400 | [diff] [blame] | 321 | static ssize_t proximity_on_chip_ambient_infrared_suppression_show |
| 322 | (struct device *dev, struct device_attribute *attr, |
| 323 | char *buf) |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 324 | { |
Lars-Peter Clausen | 96f691f | 2012-05-12 15:39:51 +0200 | [diff] [blame] | 325 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Jonathan Cameron | 927afbe | 2011-06-27 13:07:57 +0100 | [diff] [blame] | 326 | struct isl29018_chip *chip = iio_priv(indio_dev); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 327 | |
Eva Rachel Retuya | 7f3829a | 2016-02-18 15:35:38 +0800 | [diff] [blame] | 328 | /* |
Peter Meerwald-Stadler | 96273f43 | 2016-07-05 13:55:39 +0200 | [diff] [blame] | 329 | * Return the "proximity scheme" i.e. if the chip does on chip |
Eva Rachel Retuya | 7f3829a | 2016-02-18 15:35:38 +0800 | [diff] [blame] | 330 | * infrared suppression (1 means perform on chip suppression) |
| 331 | */ |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 332 | return sprintf(buf, "%d\n", chip->prox_scheme); |
| 333 | } |
| 334 | |
Brian Masney | 0281996 | 2016-09-26 20:20:17 -0400 | [diff] [blame] | 335 | static ssize_t proximity_on_chip_ambient_infrared_suppression_store |
| 336 | (struct device *dev, struct device_attribute *attr, |
| 337 | const char *buf, size_t count) |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 338 | { |
Lars-Peter Clausen | 96f691f | 2012-05-12 15:39:51 +0200 | [diff] [blame] | 339 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
Jonathan Cameron | 927afbe | 2011-06-27 13:07:57 +0100 | [diff] [blame] | 340 | struct isl29018_chip *chip = iio_priv(indio_dev); |
Jingoo Han | e5e26dd | 2013-08-20 03:31:00 +0100 | [diff] [blame] | 341 | int val; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 342 | |
Jingoo Han | e5e26dd | 2013-08-20 03:31:00 +0100 | [diff] [blame] | 343 | if (kstrtoint(buf, 10, &val)) |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 344 | return -EINVAL; |
Peter Meerwald-Stadler | ab5b949 | 2016-07-05 13:55:37 +0200 | [diff] [blame] | 345 | if (!(val == 0 || val == 1)) |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 346 | return -EINVAL; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 347 | |
Eva Rachel Retuya | 7f3829a | 2016-02-18 15:35:38 +0800 | [diff] [blame] | 348 | /* |
Peter Meerwald-Stadler | 96273f43 | 2016-07-05 13:55:39 +0200 | [diff] [blame] | 349 | * Get the "proximity scheme" i.e. if the chip does on chip |
Eva Rachel Retuya | 7f3829a | 2016-02-18 15:35:38 +0800 | [diff] [blame] | 350 | * infrared suppression (1 means perform on chip suppression) |
| 351 | */ |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 352 | mutex_lock(&chip->lock); |
Jingoo Han | e5e26dd | 2013-08-20 03:31:00 +0100 | [diff] [blame] | 353 | chip->prox_scheme = val; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 354 | mutex_unlock(&chip->lock); |
| 355 | |
| 356 | return count; |
| 357 | } |
| 358 | |
Bryan Freed | 01e57c5 | 2011-07-07 12:01:56 -0700 | [diff] [blame] | 359 | static int isl29018_write_raw(struct iio_dev *indio_dev, |
| 360 | struct iio_chan_spec const *chan, |
| 361 | int val, |
| 362 | int val2, |
| 363 | long mask) |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 364 | { |
Bryan Freed | 01e57c5 | 2011-07-07 12:01:56 -0700 | [diff] [blame] | 365 | struct isl29018_chip *chip = iio_priv(indio_dev); |
| 366 | int ret = -EINVAL; |
| 367 | |
| 368 | mutex_lock(&chip->lock); |
Brian Masney | 0005356 | 2016-09-26 20:20:20 -0400 | [diff] [blame] | 369 | if (chip->suspended) { |
| 370 | ret = -EBUSY; |
| 371 | goto write_done; |
| 372 | } |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 373 | switch (mask) { |
| 374 | case IIO_CHAN_INFO_CALIBSCALE: |
| 375 | if (chan->type == IIO_LIGHT) { |
| 376 | chip->calibscale = val; |
| 377 | chip->ucalibscale = val2; |
| 378 | ret = 0; |
| 379 | } |
| 380 | break; |
| 381 | case IIO_CHAN_INFO_INT_TIME: |
Brian Masney | 528021f | 2016-09-25 07:41:06 -0400 | [diff] [blame] | 382 | if (chan->type == IIO_LIGHT && !val) |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 383 | ret = isl29018_set_integration_time(chip, val2); |
| 384 | break; |
| 385 | case IIO_CHAN_INFO_SCALE: |
| 386 | if (chan->type == IIO_LIGHT) |
| 387 | ret = isl29018_set_scale(chip, val, val2); |
| 388 | break; |
| 389 | default: |
| 390 | break; |
Bryan Freed | 01e57c5 | 2011-07-07 12:01:56 -0700 | [diff] [blame] | 391 | } |
Bryan Freed | 01e57c5 | 2011-07-07 12:01:56 -0700 | [diff] [blame] | 392 | |
Brian Masney | 0005356 | 2016-09-26 20:20:20 -0400 | [diff] [blame] | 393 | write_done: |
| 394 | mutex_unlock(&chip->lock); |
Brian Masney | 744ef62 | 2016-10-10 03:19:55 -0400 | [diff] [blame] | 395 | |
Wei Yongjun | 6dc973d | 2012-11-08 09:05:00 +0000 | [diff] [blame] | 396 | return ret; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 397 | } |
| 398 | |
Bryan Freed | 01e57c5 | 2011-07-07 12:01:56 -0700 | [diff] [blame] | 399 | static int isl29018_read_raw(struct iio_dev *indio_dev, |
| 400 | struct iio_chan_spec const *chan, |
| 401 | int *val, |
| 402 | int *val2, |
| 403 | long mask) |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 404 | { |
Bryan Freed | 01e57c5 | 2011-07-07 12:01:56 -0700 | [diff] [blame] | 405 | int ret = -EINVAL; |
| 406 | struct isl29018_chip *chip = iio_priv(indio_dev); |
Bryan Freed | 01e57c5 | 2011-07-07 12:01:56 -0700 | [diff] [blame] | 407 | |
| 408 | mutex_lock(&chip->lock); |
Bryan Freed | 1e45cf3 | 2012-10-25 00:39:00 +0100 | [diff] [blame] | 409 | if (chip->suspended) { |
Brian Masney | 5611cd6 | 2016-09-26 20:20:19 -0400 | [diff] [blame] | 410 | ret = -EBUSY; |
| 411 | goto read_done; |
Bryan Freed | 1e45cf3 | 2012-10-25 00:39:00 +0100 | [diff] [blame] | 412 | } |
Bryan Freed | 01e57c5 | 2011-07-07 12:01:56 -0700 | [diff] [blame] | 413 | switch (mask) { |
Jonathan Cameron | 90354d0 | 2012-04-15 17:41:22 +0100 | [diff] [blame] | 414 | case IIO_CHAN_INFO_RAW: |
| 415 | case IIO_CHAN_INFO_PROCESSED: |
Bryan Freed | 01e57c5 | 2011-07-07 12:01:56 -0700 | [diff] [blame] | 416 | switch (chan->type) { |
| 417 | case IIO_LIGHT: |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 418 | ret = isl29018_read_lux(chip, val); |
Bryan Freed | 01e57c5 | 2011-07-07 12:01:56 -0700 | [diff] [blame] | 419 | break; |
| 420 | case IIO_INTENSITY: |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 421 | ret = isl29018_read_ir(chip, val); |
Bryan Freed | 01e57c5 | 2011-07-07 12:01:56 -0700 | [diff] [blame] | 422 | break; |
| 423 | case IIO_PROXIMITY: |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 424 | ret = isl29018_read_proximity_ir(chip, |
Eva Rachel Retuya | ca52c88 | 2016-02-18 15:35:36 +0800 | [diff] [blame] | 425 | chip->prox_scheme, |
| 426 | val); |
Bryan Freed | 01e57c5 | 2011-07-07 12:01:56 -0700 | [diff] [blame] | 427 | break; |
| 428 | default: |
| 429 | break; |
| 430 | } |
| 431 | if (!ret) |
| 432 | ret = IIO_VAL_INT; |
| 433 | break; |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 434 | case IIO_CHAN_INFO_INT_TIME: |
| 435 | if (chan->type == IIO_LIGHT) { |
| 436 | *val = 0; |
| 437 | *val2 = isl29018_int_utimes[chip->type][chip->int_time]; |
| 438 | ret = IIO_VAL_INT_PLUS_MICRO; |
| 439 | } |
| 440 | break; |
| 441 | case IIO_CHAN_INFO_SCALE: |
| 442 | if (chan->type == IIO_LIGHT) { |
| 443 | *val = chip->scale.scale; |
| 444 | *val2 = chip->scale.uscale; |
| 445 | ret = IIO_VAL_INT_PLUS_MICRO; |
| 446 | } |
| 447 | break; |
Jonathan Cameron | c8a9f80 | 2011-10-26 17:41:36 +0100 | [diff] [blame] | 448 | case IIO_CHAN_INFO_CALIBSCALE: |
Bryan Freed | 01e57c5 | 2011-07-07 12:01:56 -0700 | [diff] [blame] | 449 | if (chan->type == IIO_LIGHT) { |
Roberta Dobrescu | 809a591 | 2015-04-16 22:20:58 +0300 | [diff] [blame] | 450 | *val = chip->calibscale; |
| 451 | *val2 = chip->ucalibscale; |
Bryan Freed | 932323b | 2012-09-05 20:55:00 +0100 | [diff] [blame] | 452 | ret = IIO_VAL_INT_PLUS_MICRO; |
Bryan Freed | 01e57c5 | 2011-07-07 12:01:56 -0700 | [diff] [blame] | 453 | } |
| 454 | break; |
| 455 | default: |
| 456 | break; |
| 457 | } |
Brian Masney | 5611cd6 | 2016-09-26 20:20:19 -0400 | [diff] [blame] | 458 | |
| 459 | read_done: |
Bryan Freed | 01e57c5 | 2011-07-07 12:01:56 -0700 | [diff] [blame] | 460 | mutex_unlock(&chip->lock); |
Brian Masney | 744ef62 | 2016-10-10 03:19:55 -0400 | [diff] [blame] | 461 | |
Bryan Freed | 01e57c5 | 2011-07-07 12:01:56 -0700 | [diff] [blame] | 462 | return ret; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 463 | } |
| 464 | |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 465 | #define ISL29018_LIGHT_CHANNEL { \ |
| 466 | .type = IIO_LIGHT, \ |
| 467 | .indexed = 1, \ |
| 468 | .channel = 0, \ |
| 469 | .info_mask_separate = BIT(IIO_CHAN_INFO_PROCESSED) | \ |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 470 | BIT(IIO_CHAN_INFO_CALIBSCALE) | \ |
| 471 | BIT(IIO_CHAN_INFO_SCALE) | \ |
| 472 | BIT(IIO_CHAN_INFO_INT_TIME), \ |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 473 | } |
| 474 | |
| 475 | #define ISL29018_IR_CHANNEL { \ |
| 476 | .type = IIO_INTENSITY, \ |
| 477 | .modified = 1, \ |
| 478 | .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \ |
| 479 | .channel2 = IIO_MOD_LIGHT_IR, \ |
| 480 | } |
| 481 | |
| 482 | #define ISL29018_PROXIMITY_CHANNEL { \ |
| 483 | .type = IIO_PROXIMITY, \ |
| 484 | .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \ |
| 485 | } |
| 486 | |
Bryan Freed | 01e57c5 | 2011-07-07 12:01:56 -0700 | [diff] [blame] | 487 | static const struct iio_chan_spec isl29018_channels[] = { |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 488 | ISL29018_LIGHT_CHANNEL, |
| 489 | ISL29018_IR_CHANNEL, |
| 490 | ISL29018_PROXIMITY_CHANNEL, |
| 491 | }; |
| 492 | |
| 493 | static const struct iio_chan_spec isl29023_channels[] = { |
| 494 | ISL29018_LIGHT_CHANNEL, |
| 495 | ISL29018_IR_CHANNEL, |
Bryan Freed | 01e57c5 | 2011-07-07 12:01:56 -0700 | [diff] [blame] | 496 | }; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 497 | |
Brian Masney | 0281996 | 2016-09-26 20:20:17 -0400 | [diff] [blame] | 498 | static IIO_DEVICE_ATTR_RO(in_illuminance_integration_time_available, 0); |
| 499 | static IIO_DEVICE_ATTR_RO(in_illuminance_scale_available, 0); |
| 500 | static IIO_DEVICE_ATTR_RW(proximity_on_chip_ambient_infrared_suppression, 0); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 501 | |
| 502 | #define ISL29018_DEV_ATTR(name) (&iio_dev_attr_##name.dev_attr.attr) |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 503 | |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 504 | static struct attribute *isl29018_attributes[] = { |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 505 | ISL29018_DEV_ATTR(in_illuminance_scale_available), |
| 506 | ISL29018_DEV_ATTR(in_illuminance_integration_time_available), |
Peter Meerwald | 2a1d45e | 2012-06-18 20:33:07 +0200 | [diff] [blame] | 507 | ISL29018_DEV_ATTR(proximity_on_chip_ambient_infrared_suppression), |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 508 | NULL |
| 509 | }; |
| 510 | |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 511 | static struct attribute *isl29023_attributes[] = { |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 512 | ISL29018_DEV_ATTR(in_illuminance_scale_available), |
| 513 | ISL29018_DEV_ATTR(in_illuminance_integration_time_available), |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 514 | NULL |
| 515 | }; |
| 516 | |
Laurentiu Palcu | 5b4b5b9 | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 517 | static const struct attribute_group isl29018_group = { |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 518 | .attrs = isl29018_attributes, |
| 519 | }; |
| 520 | |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 521 | static const struct attribute_group isl29023_group = { |
| 522 | .attrs = isl29023_attributes, |
| 523 | }; |
| 524 | |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 525 | enum { |
| 526 | isl29018, |
| 527 | isl29023, |
| 528 | isl29035, |
| 529 | }; |
| 530 | |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 531 | static int isl29018_chip_init(struct isl29018_chip *chip) |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 532 | { |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 533 | int status; |
Alison Schofield | 6467086 | 2016-02-22 12:34:32 -0800 | [diff] [blame] | 534 | struct device *dev = regmap_get_device(chip->regmap); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 535 | |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 536 | if (chip->type == isl29035) { |
Brian Masney | 8281101 | 2016-10-10 03:19:56 -0400 | [diff] [blame] | 537 | unsigned int id; |
| 538 | |
| 539 | status = regmap_read(chip->regmap, ISL29035_REG_DEVICE_ID, &id); |
| 540 | if (status < 0) { |
| 541 | dev_err(dev, |
| 542 | "Error reading ID register with error %d\n", |
| 543 | status); |
| 544 | return status; |
| 545 | } |
| 546 | |
| 547 | id = (id & ISL29035_DEVICE_ID_MASK) >> ISL29035_DEVICE_ID_SHIFT; |
| 548 | |
| 549 | if (id != ISL29035_DEVICE_ID) |
| 550 | return -ENODEV; |
| 551 | |
| 552 | /* Clear brownout bit */ |
| 553 | status = regmap_update_bits(chip->regmap, |
| 554 | ISL29035_REG_DEVICE_ID, |
| 555 | ISL29035_BOUT_MASK, 0); |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 556 | if (status < 0) |
| 557 | return status; |
| 558 | } |
| 559 | |
Brian Masney | 19a00a9 | 2016-10-10 03:19:57 -0400 | [diff] [blame] | 560 | /* |
| 561 | * Code added per Intersil Application Note 1534: |
Grant Grundler | 176f9f2 | 2011-08-09 15:18:14 -0700 | [diff] [blame] | 562 | * When VDD sinks to approximately 1.8V or below, some of |
| 563 | * the part's registers may change their state. When VDD |
| 564 | * recovers to 2.25V (or greater), the part may thus be in an |
| 565 | * unknown mode of operation. The user can return the part to |
| 566 | * a known mode of operation either by (a) setting VDD = 0V for |
| 567 | * 1 second or more and then powering back up with a slew rate |
| 568 | * of 0.5V/ms or greater, or (b) via I2C disable all ALS/PROX |
| 569 | * conversions, clear the test registers, and then rewrite all |
| 570 | * registers to the desired values. |
| 571 | * ... |
Peter Meerwald-Stadler | 96273f43 | 2016-07-05 13:55:39 +0200 | [diff] [blame] | 572 | * For ISL29011, ISL29018, ISL29021, ISL29023 |
Grant Grundler | 176f9f2 | 2011-08-09 15:18:14 -0700 | [diff] [blame] | 573 | * 1. Write 0x00 to register 0x08 (TEST) |
| 574 | * 2. Write 0x00 to register 0x00 (CMD1) |
| 575 | * 3. Rewrite all registers to the desired values |
| 576 | * |
| 577 | * ISL29018 Data Sheet (FN6619.1, Feb 11, 2010) essentially says |
| 578 | * the same thing EXCEPT the data sheet asks for a 1ms delay after |
| 579 | * writing the CMD1 register. |
| 580 | */ |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 581 | status = regmap_write(chip->regmap, ISL29018_REG_TEST, 0x0); |
Grant Grundler | 176f9f2 | 2011-08-09 15:18:14 -0700 | [diff] [blame] | 582 | if (status < 0) { |
Alison Schofield | 6467086 | 2016-02-22 12:34:32 -0800 | [diff] [blame] | 583 | dev_err(dev, "Failed to clear isl29018 TEST reg.(%d)\n", |
Roberta Dobrescu | ad3e646 | 2014-09-25 20:09:09 +0300 | [diff] [blame] | 584 | status); |
Grant Grundler | 176f9f2 | 2011-08-09 15:18:14 -0700 | [diff] [blame] | 585 | return status; |
| 586 | } |
| 587 | |
Brian Masney | 19a00a9 | 2016-10-10 03:19:57 -0400 | [diff] [blame] | 588 | /* |
| 589 | * See Intersil AN1534 comments above. |
Grant Grundler | 176f9f2 | 2011-08-09 15:18:14 -0700 | [diff] [blame] | 590 | * "Operating Mode" (COMMAND1) register is reprogrammed when |
| 591 | * data is read from the device. |
| 592 | */ |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 593 | status = regmap_write(chip->regmap, ISL29018_REG_ADD_COMMAND1, 0); |
Grant Grundler | 176f9f2 | 2011-08-09 15:18:14 -0700 | [diff] [blame] | 594 | if (status < 0) { |
Alison Schofield | 6467086 | 2016-02-22 12:34:32 -0800 | [diff] [blame] | 595 | dev_err(dev, "Failed to clear isl29018 CMD1 reg.(%d)\n", |
Roberta Dobrescu | ad3e646 | 2014-09-25 20:09:09 +0300 | [diff] [blame] | 596 | status); |
Grant Grundler | 176f9f2 | 2011-08-09 15:18:14 -0700 | [diff] [blame] | 597 | return status; |
| 598 | } |
| 599 | |
Vaishali Thakkar | 890d228 | 2014-09-23 09:22:30 +0530 | [diff] [blame] | 600 | usleep_range(1000, 2000); /* per data sheet, page 10 */ |
Grant Grundler | 176f9f2 | 2011-08-09 15:18:14 -0700 | [diff] [blame] | 601 | |
Peter Meerwald-Stadler | 96273f43 | 2016-07-05 13:55:39 +0200 | [diff] [blame] | 602 | /* Set defaults */ |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 603 | status = isl29018_set_scale(chip, chip->scale.scale, |
| 604 | chip->scale.uscale); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 605 | if (status < 0) { |
Alison Schofield | 6467086 | 2016-02-22 12:34:32 -0800 | [diff] [blame] | 606 | dev_err(dev, "Init of isl29018 fails\n"); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 607 | return status; |
| 608 | } |
| 609 | |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 610 | status = isl29018_set_integration_time(chip, |
| 611 | isl29018_int_utimes[chip->type][chip->int_time]); |
Brian Masney | aba1a8d | 2016-10-10 03:19:58 -0400 | [diff] [blame] | 612 | if (status < 0) |
Alison Schofield | 6467086 | 2016-02-22 12:34:32 -0800 | [diff] [blame] | 613 | dev_err(dev, "Init of isl29018 fails\n"); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 614 | |
Brian Masney | aba1a8d | 2016-10-10 03:19:58 -0400 | [diff] [blame] | 615 | return status; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 616 | } |
| 617 | |
Laurentiu Palcu | 5b4b5b9 | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 618 | static const struct iio_info isl29018_info = { |
| 619 | .attrs = &isl29018_group, |
Bhumika Goyal | 6d9b10c | 2016-02-12 20:40:27 +0530 | [diff] [blame] | 620 | .read_raw = isl29018_read_raw, |
| 621 | .write_raw = isl29018_write_raw, |
Jonathan Cameron | 6fe8135 | 2011-05-18 14:42:37 +0100 | [diff] [blame] | 622 | }; |
| 623 | |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 624 | static const struct iio_info isl29023_info = { |
| 625 | .attrs = &isl29023_group, |
Bhumika Goyal | 6d9b10c | 2016-02-12 20:40:27 +0530 | [diff] [blame] | 626 | .read_raw = isl29018_read_raw, |
| 627 | .write_raw = isl29018_write_raw, |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 628 | }; |
| 629 | |
Peter Meerwald-Stadler | 9219376 | 2016-07-05 13:55:40 +0200 | [diff] [blame] | 630 | static bool isl29018_is_volatile_reg(struct device *dev, unsigned int reg) |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 631 | { |
| 632 | switch (reg) { |
| 633 | case ISL29018_REG_ADD_DATA_LSB: |
| 634 | case ISL29018_REG_ADD_DATA_MSB: |
| 635 | case ISL29018_REG_ADD_COMMAND1: |
| 636 | case ISL29018_REG_TEST: |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 637 | case ISL29035_REG_DEVICE_ID: |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 638 | return true; |
| 639 | default: |
| 640 | return false; |
| 641 | } |
| 642 | } |
| 643 | |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 644 | static const struct regmap_config isl29018_regmap_config = { |
| 645 | .reg_bits = 8, |
| 646 | .val_bits = 8, |
Peter Meerwald-Stadler | 9219376 | 2016-07-05 13:55:40 +0200 | [diff] [blame] | 647 | .volatile_reg = isl29018_is_volatile_reg, |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 648 | .max_register = ISL29018_REG_TEST, |
| 649 | .num_reg_defaults_raw = ISL29018_REG_TEST + 1, |
| 650 | .cache_type = REGCACHE_RBTREE, |
| 651 | }; |
| 652 | |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 653 | static const struct regmap_config isl29035_regmap_config = { |
| 654 | .reg_bits = 8, |
| 655 | .val_bits = 8, |
Peter Meerwald-Stadler | 9219376 | 2016-07-05 13:55:40 +0200 | [diff] [blame] | 656 | .volatile_reg = isl29018_is_volatile_reg, |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 657 | .max_register = ISL29035_REG_DEVICE_ID, |
| 658 | .num_reg_defaults_raw = ISL29035_REG_DEVICE_ID + 1, |
| 659 | .cache_type = REGCACHE_RBTREE, |
| 660 | }; |
| 661 | |
Peter Meerwald-Stadler | 9219376 | 2016-07-05 13:55:40 +0200 | [diff] [blame] | 662 | struct isl29018_chip_info { |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 663 | const struct iio_chan_spec *channels; |
| 664 | int num_channels; |
| 665 | const struct iio_info *indio_info; |
| 666 | const struct regmap_config *regmap_cfg; |
| 667 | }; |
| 668 | |
Peter Meerwald-Stadler | 9219376 | 2016-07-05 13:55:40 +0200 | [diff] [blame] | 669 | static const struct isl29018_chip_info isl29018_chip_info_tbl[] = { |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 670 | [isl29018] = { |
| 671 | .channels = isl29018_channels, |
| 672 | .num_channels = ARRAY_SIZE(isl29018_channels), |
| 673 | .indio_info = &isl29018_info, |
| 674 | .regmap_cfg = &isl29018_regmap_config, |
| 675 | }, |
| 676 | [isl29023] = { |
| 677 | .channels = isl29023_channels, |
| 678 | .num_channels = ARRAY_SIZE(isl29023_channels), |
| 679 | .indio_info = &isl29023_info, |
| 680 | .regmap_cfg = &isl29018_regmap_config, |
| 681 | }, |
| 682 | [isl29035] = { |
| 683 | .channels = isl29023_channels, |
| 684 | .num_channels = ARRAY_SIZE(isl29023_channels), |
| 685 | .indio_info = &isl29023_info, |
| 686 | .regmap_cfg = &isl29035_regmap_config, |
| 687 | }, |
| 688 | }; |
| 689 | |
Laurentiu Palcu | dc4ecaf | 2014-01-09 10:20:00 +0000 | [diff] [blame] | 690 | static const char *isl29018_match_acpi_device(struct device *dev, int *data) |
| 691 | { |
| 692 | const struct acpi_device_id *id; |
| 693 | |
| 694 | id = acpi_match_device(dev->driver->acpi_match_table, dev); |
| 695 | |
| 696 | if (!id) |
| 697 | return NULL; |
| 698 | |
Eva Rachel Retuya | 79783b3 | 2016-02-18 15:35:37 +0800 | [diff] [blame] | 699 | *data = (int)id->driver_data; |
Laurentiu Palcu | dc4ecaf | 2014-01-09 10:20:00 +0000 | [diff] [blame] | 700 | |
| 701 | return dev_name(dev); |
| 702 | } |
| 703 | |
Anson Huang | 1a02d12 | 2019-01-08 09:09:39 +0000 | [diff] [blame] | 704 | static void isl29018_disable_regulator_action(void *_data) |
| 705 | { |
| 706 | struct isl29018_chip *chip = _data; |
| 707 | int err; |
| 708 | |
| 709 | err = regulator_disable(chip->vcc_reg); |
| 710 | if (err) |
| 711 | pr_err("failed to disable isl29018's VCC regulator!\n"); |
| 712 | } |
| 713 | |
Bill Pemberton | 4ae1c61 | 2012-11-19 13:21:57 -0500 | [diff] [blame] | 714 | static int isl29018_probe(struct i2c_client *client, |
Eva Rachel Retuya | ca52c88 | 2016-02-18 15:35:36 +0800 | [diff] [blame] | 715 | const struct i2c_device_id *id) |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 716 | { |
| 717 | struct isl29018_chip *chip; |
Jonathan Cameron | 927afbe | 2011-06-27 13:07:57 +0100 | [diff] [blame] | 718 | struct iio_dev *indio_dev; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 719 | int err; |
Laurentiu Palcu | dc4ecaf | 2014-01-09 10:20:00 +0000 | [diff] [blame] | 720 | const char *name = NULL; |
| 721 | int dev_id = 0; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 722 | |
Sachin Kamat | e434dcf | 2013-07-22 12:03:00 +0100 | [diff] [blame] | 723 | indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*chip)); |
Peter Meerwald-Stadler | ab5b949 | 2016-07-05 13:55:37 +0200 | [diff] [blame] | 724 | if (!indio_dev) |
Sachin Kamat | e434dcf | 2013-07-22 12:03:00 +0100 | [diff] [blame] | 725 | return -ENOMEM; |
Brian Masney | 744ef62 | 2016-10-10 03:19:55 -0400 | [diff] [blame] | 726 | |
Jonathan Cameron | 927afbe | 2011-06-27 13:07:57 +0100 | [diff] [blame] | 727 | chip = iio_priv(indio_dev); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 728 | |
Jonathan Cameron | 927afbe | 2011-06-27 13:07:57 +0100 | [diff] [blame] | 729 | i2c_set_clientdata(client, indio_dev); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 730 | |
Laurentiu Palcu | dc4ecaf | 2014-01-09 10:20:00 +0000 | [diff] [blame] | 731 | if (id) { |
| 732 | name = id->name; |
| 733 | dev_id = id->driver_data; |
| 734 | } |
| 735 | |
| 736 | if (ACPI_HANDLE(&client->dev)) |
| 737 | name = isl29018_match_acpi_device(&client->dev, &dev_id); |
| 738 | |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 739 | mutex_init(&chip->lock); |
| 740 | |
Laurentiu Palcu | dc4ecaf | 2014-01-09 10:20:00 +0000 | [diff] [blame] | 741 | chip->type = dev_id; |
Roberta Dobrescu | 809a591 | 2015-04-16 22:20:58 +0300 | [diff] [blame] | 742 | chip->calibscale = 1; |
| 743 | chip->ucalibscale = 0; |
Roberta Dobrescu | 6920ccf | 2015-04-16 22:20:59 +0300 | [diff] [blame] | 744 | chip->int_time = ISL29018_INT_TIME_16; |
| 745 | chip->scale = isl29018_scales[chip->int_time][0]; |
Bryan Freed | 1e45cf3 | 2012-10-25 00:39:00 +0100 | [diff] [blame] | 746 | chip->suspended = false; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 747 | |
Anson Huang | 1a02d12 | 2019-01-08 09:09:39 +0000 | [diff] [blame] | 748 | chip->vcc_reg = devm_regulator_get(&client->dev, "vcc"); |
| 749 | if (IS_ERR(chip->vcc_reg)) { |
| 750 | err = PTR_ERR(chip->vcc_reg); |
| 751 | if (err != -EPROBE_DEFER) |
| 752 | dev_err(&client->dev, "failed to get VCC regulator!\n"); |
| 753 | return err; |
| 754 | } |
| 755 | |
| 756 | err = regulator_enable(chip->vcc_reg); |
| 757 | if (err) { |
| 758 | dev_err(&client->dev, "failed to enable VCC regulator!\n"); |
| 759 | return err; |
| 760 | } |
| 761 | |
| 762 | err = devm_add_action_or_reset(&client->dev, isl29018_disable_regulator_action, |
| 763 | chip); |
| 764 | if (err) { |
| 765 | dev_err(&client->dev, "failed to setup regulator cleanup action!\n"); |
| 766 | return err; |
| 767 | } |
| 768 | |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 769 | chip->regmap = devm_regmap_init_i2c(client, |
Peter Meerwald-Stadler | 9219376 | 2016-07-05 13:55:40 +0200 | [diff] [blame] | 770 | isl29018_chip_info_tbl[dev_id].regmap_cfg); |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 771 | if (IS_ERR(chip->regmap)) { |
| 772 | err = PTR_ERR(chip->regmap); |
Alison Schofield | 6467086 | 2016-02-22 12:34:32 -0800 | [diff] [blame] | 773 | dev_err(&client->dev, "regmap initialization fails: %d\n", err); |
Sachin Kamat | e434dcf | 2013-07-22 12:03:00 +0100 | [diff] [blame] | 774 | return err; |
Laxman Dewangan | 057340e | 2012-04-20 12:57:38 +0530 | [diff] [blame] | 775 | } |
| 776 | |
| 777 | err = isl29018_chip_init(chip); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 778 | if (err) |
Sachin Kamat | e434dcf | 2013-07-22 12:03:00 +0100 | [diff] [blame] | 779 | return err; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 780 | |
Peter Meerwald-Stadler | 9219376 | 2016-07-05 13:55:40 +0200 | [diff] [blame] | 781 | indio_dev->info = isl29018_chip_info_tbl[dev_id].indio_info; |
| 782 | indio_dev->channels = isl29018_chip_info_tbl[dev_id].channels; |
| 783 | indio_dev->num_channels = isl29018_chip_info_tbl[dev_id].num_channels; |
Laurentiu Palcu | dc4ecaf | 2014-01-09 10:20:00 +0000 | [diff] [blame] | 784 | indio_dev->name = name; |
Jonathan Cameron | 927afbe | 2011-06-27 13:07:57 +0100 | [diff] [blame] | 785 | indio_dev->dev.parent = &client->dev; |
| 786 | indio_dev->modes = INDIO_DIRECT_MODE; |
Brian Masney | 744ef62 | 2016-10-10 03:19:55 -0400 | [diff] [blame] | 787 | |
Peter Meerwald-Stadler | ab5b949 | 2016-07-05 13:55:37 +0200 | [diff] [blame] | 788 | return devm_iio_device_register(&client->dev, indio_dev); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 789 | } |
| 790 | |
Bryan Freed | 1e45cf3 | 2012-10-25 00:39:00 +0100 | [diff] [blame] | 791 | #ifdef CONFIG_PM_SLEEP |
| 792 | static int isl29018_suspend(struct device *dev) |
| 793 | { |
| 794 | struct isl29018_chip *chip = iio_priv(dev_get_drvdata(dev)); |
Anson Huang | 1a02d12 | 2019-01-08 09:09:39 +0000 | [diff] [blame] | 795 | int ret; |
Bryan Freed | 1e45cf3 | 2012-10-25 00:39:00 +0100 | [diff] [blame] | 796 | |
| 797 | mutex_lock(&chip->lock); |
| 798 | |
Brian Masney | 19a00a9 | 2016-10-10 03:19:57 -0400 | [diff] [blame] | 799 | /* |
| 800 | * Since this driver uses only polling commands, we are by default in |
Bryan Freed | 1e45cf3 | 2012-10-25 00:39:00 +0100 | [diff] [blame] | 801 | * auto shutdown (ie, power-down) mode. |
| 802 | * So we do not have much to do here. |
| 803 | */ |
| 804 | chip->suspended = true; |
Anson Huang | 1a02d12 | 2019-01-08 09:09:39 +0000 | [diff] [blame] | 805 | ret = regulator_disable(chip->vcc_reg); |
| 806 | if (ret) |
| 807 | dev_err(dev, "failed to disable VCC regulator\n"); |
Bryan Freed | 1e45cf3 | 2012-10-25 00:39:00 +0100 | [diff] [blame] | 808 | |
| 809 | mutex_unlock(&chip->lock); |
Brian Masney | 744ef62 | 2016-10-10 03:19:55 -0400 | [diff] [blame] | 810 | |
Anson Huang | 1a02d12 | 2019-01-08 09:09:39 +0000 | [diff] [blame] | 811 | return ret; |
Bryan Freed | 1e45cf3 | 2012-10-25 00:39:00 +0100 | [diff] [blame] | 812 | } |
| 813 | |
| 814 | static int isl29018_resume(struct device *dev) |
| 815 | { |
| 816 | struct isl29018_chip *chip = iio_priv(dev_get_drvdata(dev)); |
| 817 | int err; |
| 818 | |
| 819 | mutex_lock(&chip->lock); |
| 820 | |
Anson Huang | 1a02d12 | 2019-01-08 09:09:39 +0000 | [diff] [blame] | 821 | err = regulator_enable(chip->vcc_reg); |
| 822 | if (err) { |
| 823 | dev_err(dev, "failed to enable VCC regulator\n"); |
| 824 | mutex_unlock(&chip->lock); |
| 825 | return err; |
| 826 | } |
| 827 | |
Bryan Freed | 1e45cf3 | 2012-10-25 00:39:00 +0100 | [diff] [blame] | 828 | err = isl29018_chip_init(chip); |
| 829 | if (!err) |
| 830 | chip->suspended = false; |
| 831 | |
| 832 | mutex_unlock(&chip->lock); |
Brian Masney | 744ef62 | 2016-10-10 03:19:55 -0400 | [diff] [blame] | 833 | |
Bryan Freed | 1e45cf3 | 2012-10-25 00:39:00 +0100 | [diff] [blame] | 834 | return err; |
| 835 | } |
| 836 | |
| 837 | static SIMPLE_DEV_PM_OPS(isl29018_pm_ops, isl29018_suspend, isl29018_resume); |
| 838 | #define ISL29018_PM_OPS (&isl29018_pm_ops) |
| 839 | #else |
| 840 | #define ISL29018_PM_OPS NULL |
| 841 | #endif |
| 842 | |
Matthias Kaehlcke | 14b39dc | 2017-05-19 14:28:53 -0700 | [diff] [blame] | 843 | #ifdef CONFIG_ACPI |
Laurentiu Palcu | dc4ecaf | 2014-01-09 10:20:00 +0000 | [diff] [blame] | 844 | static const struct acpi_device_id isl29018_acpi_match[] = { |
| 845 | {"ISL29018", isl29018}, |
| 846 | {"ISL29023", isl29023}, |
| 847 | {"ISL29035", isl29035}, |
| 848 | {}, |
| 849 | }; |
| 850 | MODULE_DEVICE_TABLE(acpi, isl29018_acpi_match); |
Matthias Kaehlcke | 14b39dc | 2017-05-19 14:28:53 -0700 | [diff] [blame] | 851 | #endif |
Laurentiu Palcu | dc4ecaf | 2014-01-09 10:20:00 +0000 | [diff] [blame] | 852 | |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 853 | static const struct i2c_device_id isl29018_id[] = { |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 854 | {"isl29018", isl29018}, |
| 855 | {"isl29023", isl29023}, |
| 856 | {"isl29035", isl29035}, |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 857 | {} |
| 858 | }; |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 859 | MODULE_DEVICE_TABLE(i2c, isl29018_id); |
| 860 | |
Olof Johansson | 4ee1952 | 2011-12-22 18:44:43 -0800 | [diff] [blame] | 861 | static const struct of_device_id isl29018_of_match[] = { |
Laxman Dewangan | 610202d | 2012-04-24 11:41:38 +0530 | [diff] [blame] | 862 | { .compatible = "isil,isl29018", }, |
Laurentiu Palcu | 609acef | 2014-08-29 15:26:00 +0100 | [diff] [blame] | 863 | { .compatible = "isil,isl29023", }, |
| 864 | { .compatible = "isil,isl29035", }, |
Olof Johansson | 4ee1952 | 2011-12-22 18:44:43 -0800 | [diff] [blame] | 865 | { }, |
| 866 | }; |
| 867 | MODULE_DEVICE_TABLE(of, isl29018_of_match); |
| 868 | |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 869 | static struct i2c_driver isl29018_driver = { |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 870 | .driver = { |
| 871 | .name = "isl29018", |
Laurentiu Palcu | dc4ecaf | 2014-01-09 10:20:00 +0000 | [diff] [blame] | 872 | .acpi_match_table = ACPI_PTR(isl29018_acpi_match), |
Bryan Freed | 1e45cf3 | 2012-10-25 00:39:00 +0100 | [diff] [blame] | 873 | .pm = ISL29018_PM_OPS, |
Olof Johansson | 4ee1952 | 2011-12-22 18:44:43 -0800 | [diff] [blame] | 874 | .of_match_table = isl29018_of_match, |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 875 | }, |
| 876 | .probe = isl29018_probe, |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 877 | .id_table = isl29018_id, |
| 878 | }; |
Lars-Peter Clausen | 6e5af18 | 2011-11-16 10:13:38 +0100 | [diff] [blame] | 879 | module_i2c_driver(isl29018_driver); |
Rhyland Klein | 9404287 | 2010-10-07 15:48:09 -0700 | [diff] [blame] | 880 | |
| 881 | MODULE_DESCRIPTION("ISL29018 Ambient Light Sensor driver"); |
| 882 | MODULE_LICENSE("GPL"); |