1 // SPDX-License-Identifier: GPL-2.0-only
3 * adjd_s311.c - Support for ADJD-S311-CR999 digital color sensor
7 * driver for ADJD-S311-CR999 digital color sensor (10-bit channels for
8 * red, green, blue, clear); 7-bit I2C slave address 0x74
10 * limitations: no calibration, no offset mode, no sleep mode
13 #include <linux/module.h>
14 #include <linux/interrupt.h>
15 #include <linux/i2c.h>
16 #include <linux/slab.h>
17 #include <linux/delay.h>
18 #include <linux/bitmap.h>
19 #include <linux/err.h>
20 #include <linux/irq.h>
22 #include <linux/iio/iio.h>
23 #include <linux/iio/sysfs.h>
24 #include <linux/iio/trigger_consumer.h>
25 #include <linux/iio/buffer.h>
26 #include <linux/iio/triggered_buffer.h>
28 #define ADJD_S311_DRV_NAME "adjd_s311"
30 #define ADJD_S311_CTRL 0x00
31 #define ADJD_S311_CONFIG 0x01
32 #define ADJD_S311_CAP_RED 0x06
33 #define ADJD_S311_CAP_GREEN 0x07
34 #define ADJD_S311_CAP_BLUE 0x08
35 #define ADJD_S311_CAP_CLEAR 0x09
36 #define ADJD_S311_INT_RED 0x0a
37 #define ADJD_S311_INT_GREEN 0x0c
38 #define ADJD_S311_INT_BLUE 0x0e
39 #define ADJD_S311_INT_CLEAR 0x10
40 #define ADJD_S311_DATA_RED 0x40
41 #define ADJD_S311_DATA_GREEN 0x42
42 #define ADJD_S311_DATA_BLUE 0x44
43 #define ADJD_S311_DATA_CLEAR 0x46
44 #define ADJD_S311_OFFSET_RED 0x48
45 #define ADJD_S311_OFFSET_GREEN 0x49
46 #define ADJD_S311_OFFSET_BLUE 0x4a
47 #define ADJD_S311_OFFSET_CLEAR 0x4b
49 #define ADJD_S311_CTRL_GOFS 0x02
50 #define ADJD_S311_CTRL_GSSR 0x01
51 #define ADJD_S311_CAP_MASK 0x0f
52 #define ADJD_S311_INT_MASK 0x0fff
53 #define ADJD_S311_DATA_MASK 0x03ff
55 struct adjd_s311_data {
56 struct i2c_client *client;
63 enum adjd_s311_channel_idx {
64 IDX_RED, IDX_GREEN, IDX_BLUE, IDX_CLEAR
67 #define ADJD_S311_DATA_REG(chan) (ADJD_S311_DATA_RED + (chan) * 2)
68 #define ADJD_S311_INT_REG(chan) (ADJD_S311_INT_RED + (chan) * 2)
69 #define ADJD_S311_CAP_REG(chan) (ADJD_S311_CAP_RED + (chan))
71 static int adjd_s311_req_data(struct iio_dev *indio_dev)
73 struct adjd_s311_data *data = iio_priv(indio_dev);
76 int ret = i2c_smbus_write_byte_data(data->client, ADJD_S311_CTRL,
82 ret = i2c_smbus_read_byte_data(data->client, ADJD_S311_CTRL);
85 if (!(ret & ADJD_S311_CTRL_GSSR))
91 dev_err(&data->client->dev,
92 "adjd_s311_req_data() failed, data not ready\n");
99 static int adjd_s311_read_data(struct iio_dev *indio_dev, u8 reg, int *val)
101 struct adjd_s311_data *data = iio_priv(indio_dev);
103 int ret = adjd_s311_req_data(indio_dev);
107 ret = i2c_smbus_read_word_data(data->client, reg);
111 *val = ret & ADJD_S311_DATA_MASK;
116 static irqreturn_t adjd_s311_trigger_handler(int irq, void *p)
118 struct iio_poll_func *pf = p;
119 struct iio_dev *indio_dev = pf->indio_dev;
120 struct adjd_s311_data *data = iio_priv(indio_dev);
121 s64 time_ns = iio_get_time_ns(indio_dev);
124 int ret = adjd_s311_req_data(indio_dev);
128 iio_for_each_active_channel(indio_dev, i) {
129 ret = i2c_smbus_read_word_data(data->client,
130 ADJD_S311_DATA_REG(i));
134 data->scan.chans[j++] = ret & ADJD_S311_DATA_MASK;
137 iio_push_to_buffers_with_timestamp(indio_dev, &data->scan, time_ns);
140 iio_trigger_notify_done(indio_dev->trig);
145 #define ADJD_S311_CHANNEL(_color, _scan_idx) { \
146 .type = IIO_INTENSITY, \
148 .address = (IDX_##_color), \
149 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
150 BIT(IIO_CHAN_INFO_HARDWAREGAIN) | \
151 BIT(IIO_CHAN_INFO_INT_TIME), \
152 .channel2 = (IIO_MOD_LIGHT_##_color), \
153 .scan_index = (_scan_idx), \
158 .endianness = IIO_CPU, \
162 static const struct iio_chan_spec adjd_s311_channels[] = {
163 ADJD_S311_CHANNEL(RED, 0),
164 ADJD_S311_CHANNEL(GREEN, 1),
165 ADJD_S311_CHANNEL(BLUE, 2),
166 ADJD_S311_CHANNEL(CLEAR, 3),
167 IIO_CHAN_SOFT_TIMESTAMP(4),
170 static int adjd_s311_read_raw(struct iio_dev *indio_dev,
171 struct iio_chan_spec const *chan,
172 int *val, int *val2, long mask)
174 struct adjd_s311_data *data = iio_priv(indio_dev);
178 case IIO_CHAN_INFO_RAW:
179 ret = adjd_s311_read_data(indio_dev,
180 ADJD_S311_DATA_REG(chan->address), val);
184 case IIO_CHAN_INFO_HARDWAREGAIN:
185 ret = i2c_smbus_read_byte_data(data->client,
186 ADJD_S311_CAP_REG(chan->address));
189 *val = ret & ADJD_S311_CAP_MASK;
191 case IIO_CHAN_INFO_INT_TIME:
192 ret = i2c_smbus_read_word_data(data->client,
193 ADJD_S311_INT_REG(chan->address));
198 * not documented, based on measurement:
199 * 4095 LSBs correspond to roughly 4 ms
201 *val2 = ret & ADJD_S311_INT_MASK;
202 return IIO_VAL_INT_PLUS_MICRO;
207 static int adjd_s311_write_raw(struct iio_dev *indio_dev,
208 struct iio_chan_spec const *chan,
209 int val, int val2, long mask)
211 struct adjd_s311_data *data = iio_priv(indio_dev);
214 case IIO_CHAN_INFO_HARDWAREGAIN:
215 if (val < 0 || val > ADJD_S311_CAP_MASK)
218 return i2c_smbus_write_byte_data(data->client,
219 ADJD_S311_CAP_REG(chan->address), val);
220 case IIO_CHAN_INFO_INT_TIME:
221 if (val != 0 || val2 < 0 || val2 > ADJD_S311_INT_MASK)
224 return i2c_smbus_write_word_data(data->client,
225 ADJD_S311_INT_REG(chan->address), val2);
230 static const struct iio_info adjd_s311_info = {
231 .read_raw = adjd_s311_read_raw,
232 .write_raw = adjd_s311_write_raw,
235 static int adjd_s311_probe(struct i2c_client *client)
237 struct adjd_s311_data *data;
238 struct iio_dev *indio_dev;
241 indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*data));
242 if (indio_dev == NULL)
245 data = iio_priv(indio_dev);
246 data->client = client;
248 indio_dev->info = &adjd_s311_info;
249 indio_dev->name = ADJD_S311_DRV_NAME;
250 indio_dev->channels = adjd_s311_channels;
251 indio_dev->num_channels = ARRAY_SIZE(adjd_s311_channels);
252 indio_dev->modes = INDIO_DIRECT_MODE;
254 err = devm_iio_triggered_buffer_setup(&client->dev, indio_dev, NULL,
255 adjd_s311_trigger_handler, NULL);
259 return devm_iio_device_register(&client->dev, indio_dev);
262 static const struct i2c_device_id adjd_s311_id[] = {
266 MODULE_DEVICE_TABLE(i2c, adjd_s311_id);
268 static struct i2c_driver adjd_s311_driver = {
270 .name = ADJD_S311_DRV_NAME,
272 .probe = adjd_s311_probe,
273 .id_table = adjd_s311_id,
275 module_i2c_driver(adjd_s311_driver);
278 MODULE_DESCRIPTION("ADJD-S311 color sensor");
279 MODULE_LICENSE("GPL");