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/init.h>
18 #include <linux/interrupt.h>
19 #include <linux/i2c.h>
20 #include <linux/slab.h>
21 #include <linux/delay.h>
22 #include <linux/bitmap.h>
23 #include <linux/err.h>
24 #include <linux/irq.h>
26 #include <linux/iio/iio.h>
27 #include <linux/iio/sysfs.h>
28 #include <linux/iio/trigger_consumer.h>
29 #include <linux/iio/buffer.h>
30 #include <linux/iio/triggered_buffer.h>
32 #define ADJD_S311_DRV_NAME "adjd_s311"
34 #define ADJD_S311_CTRL 0x00
35 #define ADJD_S311_CONFIG 0x01
36 #define ADJD_S311_CAP_RED 0x06
37 #define ADJD_S311_CAP_GREEN 0x07
38 #define ADJD_S311_CAP_BLUE 0x08
39 #define ADJD_S311_CAP_CLEAR 0x09
40 #define ADJD_S311_INT_RED 0x0a
41 #define ADJD_S311_INT_GREEN 0x0c
42 #define ADJD_S311_INT_BLUE 0x0e
43 #define ADJD_S311_INT_CLEAR 0x10
44 #define ADJD_S311_DATA_RED 0x40
45 #define ADJD_S311_DATA_GREEN 0x42
46 #define ADJD_S311_DATA_BLUE 0x44
47 #define ADJD_S311_DATA_CLEAR 0x46
48 #define ADJD_S311_OFFSET_RED 0x48
49 #define ADJD_S311_OFFSET_GREEN 0x49
50 #define ADJD_S311_OFFSET_BLUE 0x4a
51 #define ADJD_S311_OFFSET_CLEAR 0x4b
53 #define ADJD_S311_CTRL_GOFS 0x02
54 #define ADJD_S311_CTRL_GSSR 0x01
55 #define ADJD_S311_CAP_MASK 0x0f
56 #define ADJD_S311_INT_MASK 0x0fff
57 #define ADJD_S311_DATA_MASK 0x03ff
59 struct adjd_s311_data
{
60 struct i2c_client
*client
;
64 enum adjd_s311_channel_idx
{
65 IDX_RED
, IDX_GREEN
, IDX_BLUE
, IDX_CLEAR
68 #define ADJD_S311_DATA_REG(chan) (ADJD_S311_DATA_RED + (chan) * 2)
69 #define ADJD_S311_INT_REG(chan) (ADJD_S311_INT_RED + (chan) * 2)
70 #define ADJD_S311_CAP_REG(chan) (ADJD_S311_CAP_RED + (chan))
72 static int adjd_s311_req_data(struct iio_dev
*indio_dev
)
74 struct adjd_s311_data
*data
= iio_priv(indio_dev
);
77 int ret
= i2c_smbus_write_byte_data(data
->client
, ADJD_S311_CTRL
,
83 ret
= i2c_smbus_read_byte_data(data
->client
, ADJD_S311_CTRL
);
86 if (!(ret
& ADJD_S311_CTRL_GSSR
))
92 dev_err(&data
->client
->dev
,
93 "adjd_s311_req_data() failed, data not ready\n");
100 static int adjd_s311_read_data(struct iio_dev
*indio_dev
, u8 reg
, int *val
)
102 struct adjd_s311_data
*data
= iio_priv(indio_dev
);
104 int ret
= adjd_s311_req_data(indio_dev
);
108 ret
= i2c_smbus_read_word_data(data
->client
, reg
);
112 *val
= ret
& ADJD_S311_DATA_MASK
;
117 static ssize_t
adjd_s311_read_int_time(struct iio_dev
*indio_dev
,
118 uintptr_t private, const struct iio_chan_spec
*chan
, char *buf
)
120 struct adjd_s311_data
*data
= iio_priv(indio_dev
);
123 ret
= i2c_smbus_read_word_data(data
->client
,
124 ADJD_S311_INT_REG(chan
->address
));
128 return sprintf(buf
, "%d\n", ret
& ADJD_S311_INT_MASK
);
131 static ssize_t
adjd_s311_write_int_time(struct iio_dev
*indio_dev
,
132 uintptr_t private, const struct iio_chan_spec
*chan
, const char *buf
,
135 struct adjd_s311_data
*data
= iio_priv(indio_dev
);
136 unsigned long int_time
;
139 ret
= kstrtoul(buf
, 10, &int_time
);
143 if (int_time
> ADJD_S311_INT_MASK
)
146 ret
= i2c_smbus_write_word_data(data
->client
,
147 ADJD_S311_INT_REG(chan
->address
), int_time
);
154 static irqreturn_t
adjd_s311_trigger_handler(int irq
, void *p
)
156 struct iio_poll_func
*pf
= p
;
157 struct iio_dev
*indio_dev
= pf
->indio_dev
;
158 struct adjd_s311_data
*data
= iio_priv(indio_dev
);
159 s64 time_ns
= iio_get_time_ns();
163 int ret
= adjd_s311_req_data(indio_dev
);
167 for_each_set_bit(i
, indio_dev
->active_scan_mask
,
168 indio_dev
->masklength
) {
169 ret
= i2c_smbus_read_word_data(data
->client
,
170 ADJD_S311_DATA_REG(i
));
174 data
->buffer
[j
++] = ret
& ADJD_S311_DATA_MASK
;
178 if (indio_dev
->scan_timestamp
)
179 *(s64
*)((u8
*)data
->buffer
+ ALIGN(len
, sizeof(s64
)))
181 iio_push_to_buffers(indio_dev
, (u8
*)data
->buffer
);
184 iio_trigger_notify_done(indio_dev
->trig
);
189 static const struct iio_chan_spec_ext_info adjd_s311_ext_info
[] = {
191 .name
= "integration_time",
192 .read
= adjd_s311_read_int_time
,
193 .write
= adjd_s311_write_int_time
,
198 #define ADJD_S311_CHANNEL(_color, _scan_idx) { \
199 .type = IIO_INTENSITY, \
201 .address = (IDX_##_color), \
202 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
203 BIT(IIO_CHAN_INFO_HARDWAREGAIN), \
204 .channel2 = (IIO_MOD_LIGHT_##_color), \
205 .scan_index = (_scan_idx), \
206 .scan_type = IIO_ST('u', 10, 16, 0), \
207 .ext_info = adjd_s311_ext_info, \
210 static const struct iio_chan_spec adjd_s311_channels
[] = {
211 ADJD_S311_CHANNEL(RED
, 0),
212 ADJD_S311_CHANNEL(GREEN
, 1),
213 ADJD_S311_CHANNEL(BLUE
, 2),
214 ADJD_S311_CHANNEL(CLEAR
, 3),
215 IIO_CHAN_SOFT_TIMESTAMP(4),
218 static int adjd_s311_read_raw(struct iio_dev
*indio_dev
,
219 struct iio_chan_spec
const *chan
,
220 int *val
, int *val2
, long mask
)
222 struct adjd_s311_data
*data
= iio_priv(indio_dev
);
226 case IIO_CHAN_INFO_RAW
:
227 ret
= adjd_s311_read_data(indio_dev
,
228 ADJD_S311_DATA_REG(chan
->address
), val
);
232 case IIO_CHAN_INFO_HARDWAREGAIN
:
233 ret
= i2c_smbus_read_byte_data(data
->client
,
234 ADJD_S311_CAP_REG(chan
->address
));
237 *val
= ret
& ADJD_S311_CAP_MASK
;
243 static int adjd_s311_write_raw(struct iio_dev
*indio_dev
,
244 struct iio_chan_spec
const *chan
,
245 int val
, int val2
, long mask
)
247 struct adjd_s311_data
*data
= iio_priv(indio_dev
);
251 case IIO_CHAN_INFO_HARDWAREGAIN
:
252 if (val
< 0 || val
> ADJD_S311_CAP_MASK
)
255 ret
= i2c_smbus_write_byte_data(data
->client
,
256 ADJD_S311_CAP_REG(chan
->address
), val
);
262 static int adjd_s311_update_scan_mode(struct iio_dev
*indio_dev
,
263 const unsigned long *scan_mask
)
265 struct adjd_s311_data
*data
= iio_priv(indio_dev
);
268 data
->buffer
= kmalloc(indio_dev
->scan_bytes
, GFP_KERNEL
);
269 if (data
->buffer
== NULL
)
275 static const struct iio_info adjd_s311_info
= {
276 .read_raw
= adjd_s311_read_raw
,
277 .write_raw
= adjd_s311_write_raw
,
278 .update_scan_mode
= adjd_s311_update_scan_mode
,
279 .driver_module
= THIS_MODULE
,
282 static int adjd_s311_probe(struct i2c_client
*client
,
283 const struct i2c_device_id
*id
)
285 struct adjd_s311_data
*data
;
286 struct iio_dev
*indio_dev
;
289 indio_dev
= devm_iio_device_alloc(&client
->dev
, sizeof(*data
));
290 if (indio_dev
== NULL
)
293 data
= iio_priv(indio_dev
);
294 i2c_set_clientdata(client
, indio_dev
);
295 data
->client
= client
;
297 indio_dev
->dev
.parent
= &client
->dev
;
298 indio_dev
->info
= &adjd_s311_info
;
299 indio_dev
->name
= ADJD_S311_DRV_NAME
;
300 indio_dev
->channels
= adjd_s311_channels
;
301 indio_dev
->num_channels
= ARRAY_SIZE(adjd_s311_channels
);
302 indio_dev
->modes
= INDIO_DIRECT_MODE
;
304 err
= iio_triggered_buffer_setup(indio_dev
, NULL
,
305 adjd_s311_trigger_handler
, NULL
);
309 err
= iio_device_register(indio_dev
);
311 goto exit_unreg_buffer
;
313 dev_info(&client
->dev
, "ADJD-S311 color sensor registered\n");
318 iio_triggered_buffer_cleanup(indio_dev
);
322 static int adjd_s311_remove(struct i2c_client
*client
)
324 struct iio_dev
*indio_dev
= i2c_get_clientdata(client
);
325 struct adjd_s311_data
*data
= iio_priv(indio_dev
);
327 iio_device_unregister(indio_dev
);
328 iio_triggered_buffer_cleanup(indio_dev
);
334 static const struct i2c_device_id adjd_s311_id
[] = {
338 MODULE_DEVICE_TABLE(i2c
, adjd_s311_id
);
340 static struct i2c_driver adjd_s311_driver
= {
342 .name
= ADJD_S311_DRV_NAME
,
344 .probe
= adjd_s311_probe
,
345 .remove
= adjd_s311_remove
,
346 .id_table
= adjd_s311_id
,
348 module_i2c_driver(adjd_s311_driver
);
350 MODULE_AUTHOR("Peter Meerwald <pmeerw@pmeerw.net>");
351 MODULE_DESCRIPTION("ADJD-S311 color sensor");
352 MODULE_LICENSE("GPL");