1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27#include <linux/module.h>
28#include <linux/i2c.h>
29#include <linux/interrupt.h>
30#include <linux/irq.h>
31#include <linux/sched.h>
32#include <linux/mutex.h>
33#include <linux/delay.h>
34#include <linux/pm.h>
35#include <linux/err.h>
36#include <linux/slab.h>
37
38#include <linux/iio/iio.h>
39#include <linux/iio/sysfs.h>
40#include <linux/iio/events.h>
41#include <linux/platform_data/tsl2563.h>
42
43
44#define ADC_FRAC_BITS 14
45
46
47#define FRAC10K(f) (((f) * (1L << (ADC_FRAC_BITS))) / (10000))
48
49
50#define CALIB_FRAC_BITS 10
51
52#define CALIB_FRAC_HALF (1 << (CALIB_FRAC_BITS - 1))
53
54#define CALIB_FRAC(n, b) (((n) << CALIB_FRAC_BITS) / (b))
55
56#define CALIB_BASE_SYSFS 1000
57
58#define TSL2563_CMD 0x80
59#define TSL2563_CLEARINT 0x40
60
61#define TSL2563_REG_CTRL 0x00
62#define TSL2563_REG_TIMING 0x01
63#define TSL2563_REG_LOWLOW 0x02
64#define TSL2563_REG_LOWHIGH 0x03
65#define TSL2563_REG_HIGHLOW 0x04
66#define TSL2563_REG_HIGHHIGH 0x05
67#define TSL2563_REG_INT 0x06
68#define TSL2563_REG_ID 0x0a
69#define TSL2563_REG_DATA0LOW 0x0c
70#define TSL2563_REG_DATA0HIGH 0x0d
71#define TSL2563_REG_DATA1LOW 0x0e
72#define TSL2563_REG_DATA1HIGH 0x0f
73
74#define TSL2563_CMD_POWER_ON 0x03
75#define TSL2563_CMD_POWER_OFF 0x00
76#define TSL2563_CTRL_POWER_MASK 0x03
77
78#define TSL2563_TIMING_13MS 0x00
79#define TSL2563_TIMING_100MS 0x01
80#define TSL2563_TIMING_400MS 0x02
81#define TSL2563_TIMING_MASK 0x03
82#define TSL2563_TIMING_GAIN16 0x10
83#define TSL2563_TIMING_GAIN1 0x00
84
85#define TSL2563_INT_DISBLED 0x00
86#define TSL2563_INT_LEVEL 0x10
87#define TSL2563_INT_PERSIST(n) ((n) & 0x0F)
88
89struct tsl2563_gainlevel_coeff {
90 u8 gaintime;
91 u16 min;
92 u16 max;
93};
94
95static const struct tsl2563_gainlevel_coeff tsl2563_gainlevel_table[] = {
96 {
97 .gaintime = TSL2563_TIMING_400MS | TSL2563_TIMING_GAIN16,
98 .min = 0,
99 .max = 65534,
100 }, {
101 .gaintime = TSL2563_TIMING_400MS | TSL2563_TIMING_GAIN1,
102 .min = 2048,
103 .max = 65534,
104 }, {
105 .gaintime = TSL2563_TIMING_100MS | TSL2563_TIMING_GAIN1,
106 .min = 4095,
107 .max = 37177,
108 }, {
109 .gaintime = TSL2563_TIMING_13MS | TSL2563_TIMING_GAIN1,
110 .min = 3000,
111 .max = 65535,
112 },
113};
114
115struct tsl2563_chip {
116 struct mutex lock;
117 struct i2c_client *client;
118 struct delayed_work poweroff_work;
119
120
121 bool suspended;
122
123 struct tsl2563_gainlevel_coeff const *gainlevel;
124
125 u16 low_thres;
126 u16 high_thres;
127 u8 intr;
128 bool int_enabled;
129
130
131 u32 calib0;
132 u32 calib1;
133 int cover_comp_gain;
134
135
136 u32 data0;
137 u32 data1;
138};
139
140static int tsl2563_set_power(struct tsl2563_chip *chip, int on)
141{
142 struct i2c_client *client = chip->client;
143 u8 cmd;
144
145 cmd = on ? TSL2563_CMD_POWER_ON : TSL2563_CMD_POWER_OFF;
146 return i2c_smbus_write_byte_data(client,
147 TSL2563_CMD | TSL2563_REG_CTRL, cmd);
148}
149
150
151
152
153
154static int tsl2563_get_power(struct tsl2563_chip *chip)
155{
156 struct i2c_client *client = chip->client;
157 int ret;
158
159 ret = i2c_smbus_read_byte_data(client, TSL2563_CMD | TSL2563_REG_CTRL);
160 if (ret < 0)
161 return ret;
162
163 return (ret & TSL2563_CTRL_POWER_MASK) == TSL2563_CMD_POWER_ON;
164}
165
166static int tsl2563_configure(struct tsl2563_chip *chip)
167{
168 int ret;
169
170 ret = i2c_smbus_write_byte_data(chip->client,
171 TSL2563_CMD | TSL2563_REG_TIMING,
172 chip->gainlevel->gaintime);
173 if (ret)
174 goto error_ret;
175 ret = i2c_smbus_write_byte_data(chip->client,
176 TSL2563_CMD | TSL2563_REG_HIGHLOW,
177 chip->high_thres & 0xFF);
178 if (ret)
179 goto error_ret;
180 ret = i2c_smbus_write_byte_data(chip->client,
181 TSL2563_CMD | TSL2563_REG_HIGHHIGH,
182 (chip->high_thres >> 8) & 0xFF);
183 if (ret)
184 goto error_ret;
185 ret = i2c_smbus_write_byte_data(chip->client,
186 TSL2563_CMD | TSL2563_REG_LOWLOW,
187 chip->low_thres & 0xFF);
188 if (ret)
189 goto error_ret;
190 ret = i2c_smbus_write_byte_data(chip->client,
191 TSL2563_CMD | TSL2563_REG_LOWHIGH,
192 (chip->low_thres >> 8) & 0xFF);
193
194
195
196
197error_ret:
198 return ret;
199}
200
201static void tsl2563_poweroff_work(struct work_struct *work)
202{
203 struct tsl2563_chip *chip =
204 container_of(work, struct tsl2563_chip, poweroff_work.work);
205 tsl2563_set_power(chip, 0);
206}
207
208static int tsl2563_detect(struct tsl2563_chip *chip)
209{
210 int ret;
211
212 ret = tsl2563_set_power(chip, 1);
213 if (ret)
214 return ret;
215
216 ret = tsl2563_get_power(chip);
217 if (ret < 0)
218 return ret;
219
220 return ret ? 0 : -ENODEV;
221}
222
223static int tsl2563_read_id(struct tsl2563_chip *chip, u8 *id)
224{
225 struct i2c_client *client = chip->client;
226 int ret;
227
228 ret = i2c_smbus_read_byte_data(client, TSL2563_CMD | TSL2563_REG_ID);
229 if (ret < 0)
230 return ret;
231
232 *id = ret;
233
234 return 0;
235}
236
237
238
239
240
241
242
243static int tsl2563_adc_shiftbits(u8 timing)
244{
245 int shift = 0;
246
247 switch (timing & TSL2563_TIMING_MASK) {
248 case TSL2563_TIMING_13MS:
249 shift += 5;
250 break;
251 case TSL2563_TIMING_100MS:
252 shift += 2;
253 break;
254 case TSL2563_TIMING_400MS:
255
256 break;
257 }
258
259 if (!(timing & TSL2563_TIMING_GAIN16))
260 shift += 4;
261
262 return shift;
263}
264
265
266static u32 tsl2563_normalize_adc(u16 adc, u8 timing)
267{
268 return adc << tsl2563_adc_shiftbits(timing);
269}
270
271static void tsl2563_wait_adc(struct tsl2563_chip *chip)
272{
273 unsigned int delay;
274
275 switch (chip->gainlevel->gaintime & TSL2563_TIMING_MASK) {
276 case TSL2563_TIMING_13MS:
277 delay = 14;
278 break;
279 case TSL2563_TIMING_100MS:
280 delay = 101;
281 break;
282 default:
283 delay = 402;
284 }
285
286
287
288
289 schedule_timeout_interruptible(msecs_to_jiffies(delay) + 2);
290}
291
292static int tsl2563_adjust_gainlevel(struct tsl2563_chip *chip, u16 adc)
293{
294 struct i2c_client *client = chip->client;
295
296 if (adc > chip->gainlevel->max || adc < chip->gainlevel->min) {
297
298 (adc > chip->gainlevel->max) ?
299 chip->gainlevel++ : chip->gainlevel--;
300
301 i2c_smbus_write_byte_data(client,
302 TSL2563_CMD | TSL2563_REG_TIMING,
303 chip->gainlevel->gaintime);
304
305 tsl2563_wait_adc(chip);
306 tsl2563_wait_adc(chip);
307
308 return 1;
309 } else
310 return 0;
311}
312
313static int tsl2563_get_adc(struct tsl2563_chip *chip)
314{
315 struct i2c_client *client = chip->client;
316 u16 adc0, adc1;
317 int retry = 1;
318 int ret = 0;
319
320 if (chip->suspended)
321 goto out;
322
323 if (!chip->int_enabled) {
324 cancel_delayed_work(&chip->poweroff_work);
325
326 if (!tsl2563_get_power(chip)) {
327 ret = tsl2563_set_power(chip, 1);
328 if (ret)
329 goto out;
330 ret = tsl2563_configure(chip);
331 if (ret)
332 goto out;
333 tsl2563_wait_adc(chip);
334 }
335 }
336
337 while (retry) {
338 ret = i2c_smbus_read_word_data(client,
339 TSL2563_CMD | TSL2563_REG_DATA0LOW);
340 if (ret < 0)
341 goto out;
342 adc0 = ret;
343
344 ret = i2c_smbus_read_word_data(client,
345 TSL2563_CMD | TSL2563_REG_DATA1LOW);
346 if (ret < 0)
347 goto out;
348 adc1 = ret;
349
350 retry = tsl2563_adjust_gainlevel(chip, adc0);
351 }
352
353 chip->data0 = tsl2563_normalize_adc(adc0, chip->gainlevel->gaintime);
354 chip->data1 = tsl2563_normalize_adc(adc1, chip->gainlevel->gaintime);
355
356 if (!chip->int_enabled)
357 schedule_delayed_work(&chip->poweroff_work, 5 * HZ);
358
359 ret = 0;
360out:
361 return ret;
362}
363
364static inline int tsl2563_calib_to_sysfs(u32 calib)
365{
366 return (int) (((calib * CALIB_BASE_SYSFS) +
367 CALIB_FRAC_HALF) >> CALIB_FRAC_BITS);
368}
369
370static inline u32 tsl2563_calib_from_sysfs(int value)
371{
372 return (((u32) value) << CALIB_FRAC_BITS) / CALIB_BASE_SYSFS;
373}
374
375
376
377
378
379
380
381
382
383
384
385
386struct tsl2563_lux_coeff {
387 unsigned long ch_ratio;
388 unsigned long ch0_coeff;
389 unsigned long ch1_coeff;
390};
391
392static const struct tsl2563_lux_coeff lux_table[] = {
393 {
394 .ch_ratio = FRAC10K(1300),
395 .ch0_coeff = FRAC10K(315),
396 .ch1_coeff = FRAC10K(262),
397 }, {
398 .ch_ratio = FRAC10K(2600),
399 .ch0_coeff = FRAC10K(337),
400 .ch1_coeff = FRAC10K(430),
401 }, {
402 .ch_ratio = FRAC10K(3900),
403 .ch0_coeff = FRAC10K(363),
404 .ch1_coeff = FRAC10K(529),
405 }, {
406 .ch_ratio = FRAC10K(5200),
407 .ch0_coeff = FRAC10K(392),
408 .ch1_coeff = FRAC10K(605),
409 }, {
410 .ch_ratio = FRAC10K(6500),
411 .ch0_coeff = FRAC10K(229),
412 .ch1_coeff = FRAC10K(291),
413 }, {
414 .ch_ratio = FRAC10K(8000),
415 .ch0_coeff = FRAC10K(157),
416 .ch1_coeff = FRAC10K(180),
417 }, {
418 .ch_ratio = FRAC10K(13000),
419 .ch0_coeff = FRAC10K(34),
420 .ch1_coeff = FRAC10K(26),
421 }, {
422 .ch_ratio = ULONG_MAX,
423 .ch0_coeff = 0,
424 .ch1_coeff = 0,
425 },
426};
427
428
429static unsigned int tsl2563_adc_to_lux(u32 adc0, u32 adc1)
430{
431 const struct tsl2563_lux_coeff *lp = lux_table;
432 unsigned long ratio, lux, ch0 = adc0, ch1 = adc1;
433
434 ratio = ch0 ? ((ch1 << ADC_FRAC_BITS) / ch0) : ULONG_MAX;
435
436 while (lp->ch_ratio < ratio)
437 lp++;
438
439 lux = ch0 * lp->ch0_coeff - ch1 * lp->ch1_coeff;
440
441 return (unsigned int) (lux >> ADC_FRAC_BITS);
442}
443
444
445static u32 tsl2563_calib_adc(u32 adc, u32 calib)
446{
447 unsigned long scaled = adc;
448
449 scaled *= calib;
450 scaled >>= CALIB_FRAC_BITS;
451
452 return (u32) scaled;
453}
454
455static int tsl2563_write_raw(struct iio_dev *indio_dev,
456 struct iio_chan_spec const *chan,
457 int val,
458 int val2,
459 long mask)
460{
461 struct tsl2563_chip *chip = iio_priv(indio_dev);
462
463 if (mask != IIO_CHAN_INFO_CALIBSCALE)
464 return -EINVAL;
465 if (chan->channel2 == IIO_MOD_LIGHT_BOTH)
466 chip->calib0 = tsl2563_calib_from_sysfs(val);
467 else if (chan->channel2 == IIO_MOD_LIGHT_IR)
468 chip->calib1 = tsl2563_calib_from_sysfs(val);
469 else
470 return -EINVAL;
471
472 return 0;
473}
474
475static int tsl2563_read_raw(struct iio_dev *indio_dev,
476 struct iio_chan_spec const *chan,
477 int *val,
478 int *val2,
479 long mask)
480{
481 int ret = -EINVAL;
482 u32 calib0, calib1;
483 struct tsl2563_chip *chip = iio_priv(indio_dev);
484
485 mutex_lock(&chip->lock);
486 switch (mask) {
487 case IIO_CHAN_INFO_RAW:
488 case IIO_CHAN_INFO_PROCESSED:
489 switch (chan->type) {
490 case IIO_LIGHT:
491 ret = tsl2563_get_adc(chip);
492 if (ret)
493 goto error_ret;
494 calib0 = tsl2563_calib_adc(chip->data0, chip->calib0) *
495 chip->cover_comp_gain;
496 calib1 = tsl2563_calib_adc(chip->data1, chip->calib1) *
497 chip->cover_comp_gain;
498 *val = tsl2563_adc_to_lux(calib0, calib1);
499 ret = IIO_VAL_INT;
500 break;
501 case IIO_INTENSITY:
502 ret = tsl2563_get_adc(chip);
503 if (ret)
504 goto error_ret;
505 if (chan->channel2 == IIO_MOD_LIGHT_BOTH)
506 *val = chip->data0;
507 else
508 *val = chip->data1;
509 ret = IIO_VAL_INT;
510 break;
511 default:
512 break;
513 }
514 break;
515
516 case IIO_CHAN_INFO_CALIBSCALE:
517 if (chan->channel2 == IIO_MOD_LIGHT_BOTH)
518 *val = tsl2563_calib_to_sysfs(chip->calib0);
519 else
520 *val = tsl2563_calib_to_sysfs(chip->calib1);
521 ret = IIO_VAL_INT;
522 break;
523 default:
524 ret = -EINVAL;
525 goto error_ret;
526 }
527
528error_ret:
529 mutex_unlock(&chip->lock);
530 return ret;
531}
532
533static const struct iio_event_spec tsl2563_events[] = {
534 {
535 .type = IIO_EV_TYPE_THRESH,
536 .dir = IIO_EV_DIR_RISING,
537 .mask_separate = BIT(IIO_EV_INFO_VALUE) |
538 BIT(IIO_EV_INFO_ENABLE),
539 }, {
540 .type = IIO_EV_TYPE_THRESH,
541 .dir = IIO_EV_DIR_FALLING,
542 .mask_separate = BIT(IIO_EV_INFO_VALUE) |
543 BIT(IIO_EV_INFO_ENABLE),
544 },
545};
546
547static const struct iio_chan_spec tsl2563_channels[] = {
548 {
549 .type = IIO_LIGHT,
550 .indexed = 1,
551 .info_mask_separate = BIT(IIO_CHAN_INFO_PROCESSED),
552 .channel = 0,
553 }, {
554 .type = IIO_INTENSITY,
555 .modified = 1,
556 .channel2 = IIO_MOD_LIGHT_BOTH,
557 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) |
558 BIT(IIO_CHAN_INFO_CALIBSCALE),
559 .event_spec = tsl2563_events,
560 .num_event_specs = ARRAY_SIZE(tsl2563_events),
561 }, {
562 .type = IIO_INTENSITY,
563 .modified = 1,
564 .channel2 = IIO_MOD_LIGHT_IR,
565 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) |
566 BIT(IIO_CHAN_INFO_CALIBSCALE),
567 }
568};
569
570static int tsl2563_read_thresh(struct iio_dev *indio_dev,
571 const struct iio_chan_spec *chan, enum iio_event_type type,
572 enum iio_event_direction dir, enum iio_event_info info, int *val,
573 int *val2)
574{
575 struct tsl2563_chip *chip = iio_priv(indio_dev);
576
577 switch (dir) {
578 case IIO_EV_DIR_RISING:
579 *val = chip->high_thres;
580 break;
581 case IIO_EV_DIR_FALLING:
582 *val = chip->low_thres;
583 break;
584 default:
585 return -EINVAL;
586 }
587
588 return IIO_VAL_INT;
589}
590
591static int tsl2563_write_thresh(struct iio_dev *indio_dev,
592 const struct iio_chan_spec *chan, enum iio_event_type type,
593 enum iio_event_direction dir, enum iio_event_info info, int val,
594 int val2)
595{
596 struct tsl2563_chip *chip = iio_priv(indio_dev);
597 int ret;
598 u8 address;
599
600 if (dir == IIO_EV_DIR_RISING)
601 address = TSL2563_REG_HIGHLOW;
602 else
603 address = TSL2563_REG_LOWLOW;
604 mutex_lock(&chip->lock);
605 ret = i2c_smbus_write_byte_data(chip->client, TSL2563_CMD | address,
606 val & 0xFF);
607 if (ret)
608 goto error_ret;
609 ret = i2c_smbus_write_byte_data(chip->client,
610 TSL2563_CMD | (address + 1),
611 (val >> 8) & 0xFF);
612 if (dir == IIO_EV_DIR_RISING)
613 chip->high_thres = val;
614 else
615 chip->low_thres = val;
616
617error_ret:
618 mutex_unlock(&chip->lock);
619
620 return ret;
621}
622
623static irqreturn_t tsl2563_event_handler(int irq, void *private)
624{
625 struct iio_dev *dev_info = private;
626 struct tsl2563_chip *chip = iio_priv(dev_info);
627
628 iio_push_event(dev_info,
629 IIO_UNMOD_EVENT_CODE(IIO_INTENSITY,
630 0,
631 IIO_EV_TYPE_THRESH,
632 IIO_EV_DIR_EITHER),
633 iio_get_time_ns(dev_info));
634
635
636 i2c_smbus_write_byte(chip->client, TSL2563_CMD | TSL2563_CLEARINT);
637 return IRQ_HANDLED;
638}
639
640static int tsl2563_write_interrupt_config(struct iio_dev *indio_dev,
641 const struct iio_chan_spec *chan, enum iio_event_type type,
642 enum iio_event_direction dir, int state)
643{
644 struct tsl2563_chip *chip = iio_priv(indio_dev);
645 int ret = 0;
646
647 mutex_lock(&chip->lock);
648 if (state && !(chip->intr & 0x30)) {
649 chip->intr &= ~0x30;
650 chip->intr |= 0x10;
651
652 cancel_delayed_work(&chip->poweroff_work);
653 if (!tsl2563_get_power(chip)) {
654 ret = tsl2563_set_power(chip, 1);
655 if (ret)
656 goto out;
657 ret = tsl2563_configure(chip);
658 if (ret)
659 goto out;
660 }
661 ret = i2c_smbus_write_byte_data(chip->client,
662 TSL2563_CMD | TSL2563_REG_INT,
663 chip->intr);
664 chip->int_enabled = true;
665 }
666
667 if (!state && (chip->intr & 0x30)) {
668 chip->intr &= ~0x30;
669 ret = i2c_smbus_write_byte_data(chip->client,
670 TSL2563_CMD | TSL2563_REG_INT,
671 chip->intr);
672 chip->int_enabled = false;
673
674 schedule_delayed_work(&chip->poweroff_work, 5 * HZ);
675 }
676out:
677 mutex_unlock(&chip->lock);
678
679 return ret;
680}
681
682static int tsl2563_read_interrupt_config(struct iio_dev *indio_dev,
683 const struct iio_chan_spec *chan, enum iio_event_type type,
684 enum iio_event_direction dir)
685{
686 struct tsl2563_chip *chip = iio_priv(indio_dev);
687 int ret;
688
689 mutex_lock(&chip->lock);
690 ret = i2c_smbus_read_byte_data(chip->client,
691 TSL2563_CMD | TSL2563_REG_INT);
692 mutex_unlock(&chip->lock);
693 if (ret < 0)
694 return ret;
695
696 return !!(ret & 0x30);
697}
698
699static const struct iio_info tsl2563_info_no_irq = {
700 .read_raw = &tsl2563_read_raw,
701 .write_raw = &tsl2563_write_raw,
702};
703
704static const struct iio_info tsl2563_info = {
705 .read_raw = &tsl2563_read_raw,
706 .write_raw = &tsl2563_write_raw,
707 .read_event_value = &tsl2563_read_thresh,
708 .write_event_value = &tsl2563_write_thresh,
709 .read_event_config = &tsl2563_read_interrupt_config,
710 .write_event_config = &tsl2563_write_interrupt_config,
711};
712
713static int tsl2563_probe(struct i2c_client *client,
714 const struct i2c_device_id *device_id)
715{
716 struct iio_dev *indio_dev;
717 struct tsl2563_chip *chip;
718 struct tsl2563_platform_data *pdata = client->dev.platform_data;
719 struct device_node *np = client->dev.of_node;
720 int err = 0;
721 u8 id = 0;
722
723 indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*chip));
724 if (!indio_dev)
725 return -ENOMEM;
726
727 chip = iio_priv(indio_dev);
728
729 i2c_set_clientdata(client, chip);
730 chip->client = client;
731
732 err = tsl2563_detect(chip);
733 if (err) {
734 dev_err(&client->dev, "detect error %d\n", -err);
735 return err;
736 }
737
738 err = tsl2563_read_id(chip, &id);
739 if (err) {
740 dev_err(&client->dev, "read id error %d\n", -err);
741 return err;
742 }
743
744 mutex_init(&chip->lock);
745
746
747 chip->low_thres = 0x0;
748 chip->high_thres = 0xffff;
749 chip->gainlevel = tsl2563_gainlevel_table;
750 chip->intr = TSL2563_INT_PERSIST(4);
751 chip->calib0 = tsl2563_calib_from_sysfs(CALIB_BASE_SYSFS);
752 chip->calib1 = tsl2563_calib_from_sysfs(CALIB_BASE_SYSFS);
753
754 if (pdata)
755 chip->cover_comp_gain = pdata->cover_comp_gain;
756 else if (np)
757 of_property_read_u32(np, "amstaos,cover-comp-gain",
758 &chip->cover_comp_gain);
759 else
760 chip->cover_comp_gain = 1;
761
762 dev_info(&client->dev, "model %d, rev. %d\n", id >> 4, id & 0x0f);
763 indio_dev->name = client->name;
764 indio_dev->channels = tsl2563_channels;
765 indio_dev->num_channels = ARRAY_SIZE(tsl2563_channels);
766 indio_dev->dev.parent = &client->dev;
767 indio_dev->modes = INDIO_DIRECT_MODE;
768
769 if (client->irq)
770 indio_dev->info = &tsl2563_info;
771 else
772 indio_dev->info = &tsl2563_info_no_irq;
773
774 if (client->irq) {
775 err = devm_request_threaded_irq(&client->dev, client->irq,
776 NULL,
777 &tsl2563_event_handler,
778 IRQF_TRIGGER_RISING | IRQF_ONESHOT,
779 "tsl2563_event",
780 indio_dev);
781 if (err) {
782 dev_err(&client->dev, "irq request error %d\n", -err);
783 return err;
784 }
785 }
786
787 err = tsl2563_configure(chip);
788 if (err) {
789 dev_err(&client->dev, "configure error %d\n", -err);
790 return err;
791 }
792
793 INIT_DELAYED_WORK(&chip->poweroff_work, tsl2563_poweroff_work);
794
795
796 schedule_delayed_work(&chip->poweroff_work, 5 * HZ);
797
798 err = iio_device_register(indio_dev);
799 if (err) {
800 dev_err(&client->dev, "iio registration error %d\n", -err);
801 goto fail;
802 }
803
804 return 0;
805
806fail:
807 cancel_delayed_work_sync(&chip->poweroff_work);
808 return err;
809}
810
811static int tsl2563_remove(struct i2c_client *client)
812{
813 struct tsl2563_chip *chip = i2c_get_clientdata(client);
814 struct iio_dev *indio_dev = iio_priv_to_dev(chip);
815
816 iio_device_unregister(indio_dev);
817 if (!chip->int_enabled)
818 cancel_delayed_work(&chip->poweroff_work);
819
820 chip->intr &= ~0x30;
821 i2c_smbus_write_byte_data(chip->client, TSL2563_CMD | TSL2563_REG_INT,
822 chip->intr);
823 flush_scheduled_work();
824 tsl2563_set_power(chip, 0);
825
826 return 0;
827}
828
829#ifdef CONFIG_PM_SLEEP
830static int tsl2563_suspend(struct device *dev)
831{
832 struct tsl2563_chip *chip = i2c_get_clientdata(to_i2c_client(dev));
833 int ret;
834
835 mutex_lock(&chip->lock);
836
837 ret = tsl2563_set_power(chip, 0);
838 if (ret)
839 goto out;
840
841 chip->suspended = true;
842
843out:
844 mutex_unlock(&chip->lock);
845 return ret;
846}
847
848static int tsl2563_resume(struct device *dev)
849{
850 struct tsl2563_chip *chip = i2c_get_clientdata(to_i2c_client(dev));
851 int ret;
852
853 mutex_lock(&chip->lock);
854
855 ret = tsl2563_set_power(chip, 1);
856 if (ret)
857 goto out;
858
859 ret = tsl2563_configure(chip);
860 if (ret)
861 goto out;
862
863 chip->suspended = false;
864
865out:
866 mutex_unlock(&chip->lock);
867 return ret;
868}
869
870static SIMPLE_DEV_PM_OPS(tsl2563_pm_ops, tsl2563_suspend, tsl2563_resume);
871#define TSL2563_PM_OPS (&tsl2563_pm_ops)
872#else
873#define TSL2563_PM_OPS NULL
874#endif
875
876static const struct i2c_device_id tsl2563_id[] = {
877 { "tsl2560", 0 },
878 { "tsl2561", 1 },
879 { "tsl2562", 2 },
880 { "tsl2563", 3 },
881 {}
882};
883MODULE_DEVICE_TABLE(i2c, tsl2563_id);
884
885static const struct of_device_id tsl2563_of_match[] = {
886 { .compatible = "amstaos,tsl2560" },
887 { .compatible = "amstaos,tsl2561" },
888 { .compatible = "amstaos,tsl2562" },
889 { .compatible = "amstaos,tsl2563" },
890 {}
891};
892MODULE_DEVICE_TABLE(of, tsl2563_of_match);
893
894static struct i2c_driver tsl2563_i2c_driver = {
895 .driver = {
896 .name = "tsl2563",
897 .of_match_table = tsl2563_of_match,
898 .pm = TSL2563_PM_OPS,
899 },
900 .probe = tsl2563_probe,
901 .remove = tsl2563_remove,
902 .id_table = tsl2563_id,
903};
904module_i2c_driver(tsl2563_i2c_driver);
905
906MODULE_AUTHOR("Nokia Corporation");
907MODULE_DESCRIPTION("tsl2563 light sensor driver");
908MODULE_LICENSE("GPL");
909