2 * adjd_s311.c - Support for ADJD-S311-CR999 digital color sensor
4 * Copyright (C) 2012 Peter Meerwald <pmeerw@pmeerw.net>
6 * This file is subject to the terms and conditions of version 2 of
7 * the GNU General Public License. See the file COPYING in the main
8 * directory of this archive for more details.
10 * driver for ADJD-S311-CR999 digital color sensor (10-bit channels for
11 * red, green, blue, clear); 7-bit I2C slave address 0x74
13 * limitations: no calibration, no offset mode, no sleep mode
16 #include <linux/module.h>
17 #include <linux/interrupt.h>
18 #include <linux/i2c.h>
19 #include <linux/slab.h>
20 #include <linux/delay.h>
21 #include <linux/bitmap.h>
22 #include <linux/err.h>
23 #include <linux/irq.h>
25 #include <linux/iio/iio.h>
26 #include <linux/iio/sysfs.h>
27 #include <linux/iio/trigger_consumer.h>
28 #include <linux/iio/buffer.h>
29 #include <linux/iio/triggered_buffer.h>
31 #define ADJD_S311_DRV_NAME "adjd_s311"
33 #define ADJD_S311_CTRL 0x00
34 #define ADJD_S311_CONFIG 0x01
35 #define ADJD_S311_CAP_RED 0x06
36 #define ADJD_S311_CAP_GREEN 0x07
37 #define ADJD_S311_CAP_BLUE 0x08
38 #define ADJD_S311_CAP_CLEAR 0x09
39 #define ADJD_S311_INT_RED 0x0a
40 #define ADJD_S311_INT_GREEN 0x0c
41 #define ADJD_S311_INT_BLUE 0x0e
42 #define ADJD_S311_INT_CLEAR 0x10
43 #define ADJD_S311_DATA_RED 0x40
44 #define ADJD_S311_DATA_GREEN 0x42
45 #define ADJD_S311_DATA_BLUE 0x44
46 #define ADJD_S311_DATA_CLEAR 0x46
47 #define ADJD_S311_OFFSET_RED 0x48
48 #define ADJD_S311_OFFSET_GREEN 0x49
49 #define ADJD_S311_OFFSET_BLUE 0x4a
50 #define ADJD_S311_OFFSET_CLEAR 0x4b
52 #define ADJD_S311_CTRL_GOFS 0x02
53 #define ADJD_S311_CTRL_GSSR 0x01
54 #define ADJD_S311_CAP_MASK 0x0f
55 #define ADJD_S311_INT_MASK 0x0fff
56 #define ADJD_S311_DATA_MASK 0x03ff
58 struct adjd_s311_data
{
59 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();
124 int ret
= adjd_s311_req_data(indio_dev
);
128 for_each_set_bit(i
, indio_dev
->active_scan_mask
,
129 indio_dev
->masklength
) {
130 ret
= i2c_smbus_read_word_data(data
->client
,
131 ADJD_S311_DATA_REG(i
));
135 data
->buffer
[j
++] = ret
& ADJD_S311_DATA_MASK
;
138 iio_push_to_buffers_with_timestamp(indio_dev
, data
->buffer
, time_ns
);
141 iio_trigger_notify_done(indio_dev
->trig
);
146 #define ADJD_S311_CHANNEL(_color, _scan_idx) { \
147 .type = IIO_INTENSITY, \
149 .address = (IDX_##_color), \
150 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
151 BIT(IIO_CHAN_INFO_HARDWAREGAIN) | \
152 BIT(IIO_CHAN_INFO_INT_TIME), \
153 .channel2 = (IIO_MOD_LIGHT_##_color), \
154 .scan_index = (_scan_idx), \
159 .endianness = IIO_CPU, \
163 static const struct iio_chan_spec adjd_s311_channels
[] = {
164 ADJD_S311_CHANNEL(RED
, 0),
165 ADJD_S311_CHANNEL(GREEN
, 1),
166 ADJD_S311_CHANNEL(BLUE
, 2),
167 ADJD_S311_CHANNEL(CLEAR
, 3),
168 IIO_CHAN_SOFT_TIMESTAMP(4),
171 static int adjd_s311_read_raw(struct iio_dev
*indio_dev
,
172 struct iio_chan_spec
const *chan
,
173 int *val
, int *val2
, long mask
)
175 struct adjd_s311_data
*data
= iio_priv(indio_dev
);
179 case IIO_CHAN_INFO_RAW
:
180 ret
= adjd_s311_read_data(indio_dev
,
181 ADJD_S311_DATA_REG(chan
->address
), val
);
185 case IIO_CHAN_INFO_HARDWAREGAIN
:
186 ret
= i2c_smbus_read_byte_data(data
->client
,
187 ADJD_S311_CAP_REG(chan
->address
));
190 *val
= ret
& ADJD_S311_CAP_MASK
;
192 case IIO_CHAN_INFO_INT_TIME
:
193 ret
= i2c_smbus_read_word_data(data
->client
,
194 ADJD_S311_INT_REG(chan
->address
));
199 * not documented, based on measurement:
200 * 4095 LSBs correspond to roughly 4 ms
202 *val2
= ret
& ADJD_S311_INT_MASK
;
203 return IIO_VAL_INT_PLUS_MICRO
;
208 static int adjd_s311_write_raw(struct iio_dev
*indio_dev
,
209 struct iio_chan_spec
const *chan
,
210 int val
, int val2
, long mask
)
212 struct adjd_s311_data
*data
= iio_priv(indio_dev
);
215 case IIO_CHAN_INFO_HARDWAREGAIN
:
216 if (val
< 0 || val
> ADJD_S311_CAP_MASK
)
219 return i2c_smbus_write_byte_data(data
->client
,
220 ADJD_S311_CAP_REG(chan
->address
), val
);
221 case IIO_CHAN_INFO_INT_TIME
:
222 if (val
!= 0 || val2
< 0 || val2
> ADJD_S311_INT_MASK
)
225 return i2c_smbus_write_word_data(data
->client
,
226 ADJD_S311_INT_REG(chan
->address
), val2
);
231 static int adjd_s311_update_scan_mode(struct iio_dev
*indio_dev
,
232 const unsigned long *scan_mask
)
234 struct adjd_s311_data
*data
= iio_priv(indio_dev
);
237 data
->buffer
= kmalloc(indio_dev
->scan_bytes
, GFP_KERNEL
);
238 if (data
->buffer
== NULL
)
244 static const struct iio_info adjd_s311_info
= {
245 .read_raw
= adjd_s311_read_raw
,
246 .write_raw
= adjd_s311_write_raw
,
247 .update_scan_mode
= adjd_s311_update_scan_mode
,
248 .driver_module
= THIS_MODULE
,
251 static int adjd_s311_probe(struct i2c_client
*client
,
252 const struct i2c_device_id
*id
)
254 struct adjd_s311_data
*data
;
255 struct iio_dev
*indio_dev
;
258 indio_dev
= devm_iio_device_alloc(&client
->dev
, sizeof(*data
));
259 if (indio_dev
== NULL
)
262 data
= iio_priv(indio_dev
);
263 i2c_set_clientdata(client
, indio_dev
);
264 data
->client
= client
;
266 indio_dev
->dev
.parent
= &client
->dev
;
267 indio_dev
->info
= &adjd_s311_info
;
268 indio_dev
->name
= ADJD_S311_DRV_NAME
;
269 indio_dev
->channels
= adjd_s311_channels
;
270 indio_dev
->num_channels
= ARRAY_SIZE(adjd_s311_channels
);
271 indio_dev
->modes
= INDIO_DIRECT_MODE
;
273 err
= iio_triggered_buffer_setup(indio_dev
, NULL
,
274 adjd_s311_trigger_handler
, NULL
);
278 err
= iio_device_register(indio_dev
);
280 goto exit_unreg_buffer
;
282 dev_info(&client
->dev
, "ADJD-S311 color sensor registered\n");
287 iio_triggered_buffer_cleanup(indio_dev
);
291 static int adjd_s311_remove(struct i2c_client
*client
)
293 struct iio_dev
*indio_dev
= i2c_get_clientdata(client
);
294 struct adjd_s311_data
*data
= iio_priv(indio_dev
);
296 iio_device_unregister(indio_dev
);
297 iio_triggered_buffer_cleanup(indio_dev
);
303 static const struct i2c_device_id adjd_s311_id
[] = {
307 MODULE_DEVICE_TABLE(i2c
, adjd_s311_id
);
309 static struct i2c_driver adjd_s311_driver
= {
311 .name
= ADJD_S311_DRV_NAME
,
313 .probe
= adjd_s311_probe
,
314 .remove
= adjd_s311_remove
,
315 .id_table
= adjd_s311_id
,
317 module_i2c_driver(adjd_s311_driver
);
319 MODULE_AUTHOR("Peter Meerwald <pmeerw@pmeerw.net>");
320 MODULE_DESCRIPTION("ADJD-S311 color sensor");
321 MODULE_LICENSE("GPL");