2 * AFE4404 Heart Rate Monitors and Low-Cost Pulse Oximeters
4 * Copyright (C) 2015-2016 Texas Instruments Incorporated - http://www.ti.com/
5 * Andrew F. Davis <afd@ti.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
17 #include <linux/device.h>
18 #include <linux/err.h>
19 #include <linux/interrupt.h>
20 #include <linux/i2c.h>
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/regmap.h>
24 #include <linux/sysfs.h>
25 #include <linux/regulator/consumer.h>
27 #include <linux/iio/iio.h>
28 #include <linux/iio/sysfs.h>
29 #include <linux/iio/buffer.h>
30 #include <linux/iio/trigger.h>
31 #include <linux/iio/triggered_buffer.h>
32 #include <linux/iio/trigger_consumer.h>
36 #define AFE4404_DRIVER_NAME "afe4404"
38 /* AFE4404 registers */
39 #define AFE4404_TIA_GAIN_SEP 0x20
40 #define AFE4404_TIA_GAIN 0x21
41 #define AFE4404_PROG_TG_STC 0x34
42 #define AFE4404_PROG_TG_ENDC 0x35
43 #define AFE4404_LED3LEDSTC 0x36
44 #define AFE4404_LED3LEDENDC 0x37
45 #define AFE4404_CLKDIV_PRF 0x39
46 #define AFE4404_OFFDAC 0x3a
47 #define AFE4404_DEC 0x3d
48 #define AFE4404_AVG_LED2_ALED2VAL 0x3f
49 #define AFE4404_AVG_LED1_ALED1VAL 0x40
51 /* AFE4404 CONTROL2 register fields */
52 #define AFE440X_CONTROL2_OSC_ENABLE BIT(9)
56 F_TIA_GAIN_SEP
, F_TIA_CF_SEP
,
60 F_ILED1
, F_ILED2
, F_ILED3
,
63 F_OFFDAC_AMB2
, F_OFFDAC_LED1
, F_OFFDAC_AMB1
, F_OFFDAC_LED2
,
69 static const struct reg_field afe4404_reg_fields
[] = {
71 [F_TIA_GAIN_SEP
] = REG_FIELD(AFE4404_TIA_GAIN_SEP
, 0, 2),
72 [F_TIA_CF_SEP
] = REG_FIELD(AFE4404_TIA_GAIN_SEP
, 3, 5),
73 [F_TIA_GAIN
] = REG_FIELD(AFE4404_TIA_GAIN
, 0, 2),
74 [TIA_CF
] = REG_FIELD(AFE4404_TIA_GAIN
, 3, 5),
76 [F_ILED1
] = REG_FIELD(AFE440X_LEDCNTRL
, 0, 5),
77 [F_ILED2
] = REG_FIELD(AFE440X_LEDCNTRL
, 6, 11),
78 [F_ILED3
] = REG_FIELD(AFE440X_LEDCNTRL
, 12, 17),
80 [F_OFFDAC_AMB2
] = REG_FIELD(AFE4404_OFFDAC
, 0, 4),
81 [F_OFFDAC_LED1
] = REG_FIELD(AFE4404_OFFDAC
, 5, 9),
82 [F_OFFDAC_AMB1
] = REG_FIELD(AFE4404_OFFDAC
, 10, 14),
83 [F_OFFDAC_LED2
] = REG_FIELD(AFE4404_OFFDAC
, 15, 19),
87 * struct afe4404_data - AFE4404 device instance data
88 * @dev: Device structure
89 * @regmap: Register map of the device
90 * @fields: Register fields of the device
91 * @regulator: Pointer to the regulator for the IC
92 * @trig: IIO trigger for this device
93 * @irq: ADC_RDY line interrupt number
97 struct regmap
*regmap
;
98 struct regmap_field
*fields
[F_MAX_FIELDS
];
99 struct regulator
*regulator
;
100 struct iio_trigger
*trig
;
104 enum afe4404_chan_id
{
113 static const unsigned int afe4404_channel_values
[] = {
114 [LED2
] = AFE440X_LED2VAL
,
115 [ALED2
] = AFE440X_ALED2VAL
,
116 [LED1
] = AFE440X_LED1VAL
,
117 [ALED1
] = AFE440X_ALED1VAL
,
118 [LED2_ALED2
] = AFE440X_LED2_ALED2VAL
,
119 [LED1_ALED1
] = AFE440X_LED1_ALED1VAL
,
122 static const unsigned int afe4404_channel_leds
[] = {
128 static const unsigned int afe4404_channel_offdacs
[] = {
129 [LED2
] = F_OFFDAC_LED2
,
130 [ALED2
] = F_OFFDAC_AMB2
,
131 [LED1
] = F_OFFDAC_LED1
,
132 [ALED1
] = F_OFFDAC_AMB1
,
135 static const struct iio_chan_spec afe4404_channels
[] = {
137 AFE440X_INTENSITY_CHAN(LED2
, BIT(IIO_CHAN_INFO_OFFSET
)),
138 AFE440X_INTENSITY_CHAN(ALED2
, BIT(IIO_CHAN_INFO_OFFSET
)),
139 AFE440X_INTENSITY_CHAN(LED1
, BIT(IIO_CHAN_INFO_OFFSET
)),
140 AFE440X_INTENSITY_CHAN(ALED1
, BIT(IIO_CHAN_INFO_OFFSET
)),
141 AFE440X_INTENSITY_CHAN(LED2_ALED2
, 0),
142 AFE440X_INTENSITY_CHAN(LED1_ALED1
, 0),
144 AFE440X_CURRENT_CHAN(LED2
),
145 AFE440X_CURRENT_CHAN(ALED2
),
146 AFE440X_CURRENT_CHAN(LED1
),
149 static const struct afe440x_val_table afe4404_res_table
[] = {
150 { .integer
= 500000, .fract
= 0 },
151 { .integer
= 250000, .fract
= 0 },
152 { .integer
= 100000, .fract
= 0 },
153 { .integer
= 50000, .fract
= 0 },
154 { .integer
= 25000, .fract
= 0 },
155 { .integer
= 10000, .fract
= 0 },
156 { .integer
= 1000000, .fract
= 0 },
157 { .integer
= 2000000, .fract
= 0 },
159 AFE440X_TABLE_ATTR(in_intensity_resistance_available
, afe4404_res_table
);
161 static const struct afe440x_val_table afe4404_cap_table
[] = {
162 { .integer
= 0, .fract
= 5000 },
163 { .integer
= 0, .fract
= 2500 },
164 { .integer
= 0, .fract
= 10000 },
165 { .integer
= 0, .fract
= 7500 },
166 { .integer
= 0, .fract
= 20000 },
167 { .integer
= 0, .fract
= 17500 },
168 { .integer
= 0, .fract
= 25000 },
169 { .integer
= 0, .fract
= 22500 },
171 AFE440X_TABLE_ATTR(in_intensity_capacitance_available
, afe4404_cap_table
);
173 static ssize_t
afe440x_show_register(struct device
*dev
,
174 struct device_attribute
*attr
,
177 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
178 struct afe4404_data
*afe
= iio_priv(indio_dev
);
179 struct afe440x_attr
*afe440x_attr
= to_afe440x_attr(attr
);
180 unsigned int reg_val
;
184 ret
= regmap_field_read(afe
->fields
[afe440x_attr
->field
], ®_val
);
188 if (reg_val
>= afe440x_attr
->table_size
)
191 vals
[0] = afe440x_attr
->val_table
[reg_val
].integer
;
192 vals
[1] = afe440x_attr
->val_table
[reg_val
].fract
;
194 return iio_format_value(buf
, IIO_VAL_INT_PLUS_MICRO
, 2, vals
);
197 static ssize_t
afe440x_store_register(struct device
*dev
,
198 struct device_attribute
*attr
,
199 const char *buf
, size_t count
)
201 struct iio_dev
*indio_dev
= dev_to_iio_dev(dev
);
202 struct afe4404_data
*afe
= iio_priv(indio_dev
);
203 struct afe440x_attr
*afe440x_attr
= to_afe440x_attr(attr
);
204 int val
, integer
, fract
, ret
;
206 ret
= iio_str_to_fixpoint(buf
, 100000, &integer
, &fract
);
210 for (val
= 0; val
< afe440x_attr
->table_size
; val
++)
211 if (afe440x_attr
->val_table
[val
].integer
== integer
&&
212 afe440x_attr
->val_table
[val
].fract
== fract
)
214 if (val
== afe440x_attr
->table_size
)
217 ret
= regmap_field_write(afe
->fields
[afe440x_attr
->field
], val
);
224 static AFE440X_ATTR(in_intensity1_resistance
, F_TIA_GAIN_SEP
, afe4404_res_table
);
225 static AFE440X_ATTR(in_intensity1_capacitance
, F_TIA_CF_SEP
, afe4404_cap_table
);
227 static AFE440X_ATTR(in_intensity2_resistance
, F_TIA_GAIN_SEP
, afe4404_res_table
);
228 static AFE440X_ATTR(in_intensity2_capacitance
, F_TIA_CF_SEP
, afe4404_cap_table
);
230 static AFE440X_ATTR(in_intensity3_resistance
, F_TIA_GAIN
, afe4404_res_table
);
231 static AFE440X_ATTR(in_intensity3_capacitance
, TIA_CF
, afe4404_cap_table
);
233 static AFE440X_ATTR(in_intensity4_resistance
, F_TIA_GAIN
, afe4404_res_table
);
234 static AFE440X_ATTR(in_intensity4_capacitance
, TIA_CF
, afe4404_cap_table
);
236 static struct attribute
*afe440x_attributes
[] = {
237 &dev_attr_in_intensity_resistance_available
.attr
,
238 &dev_attr_in_intensity_capacitance_available
.attr
,
239 &afe440x_attr_in_intensity1_resistance
.dev_attr
.attr
,
240 &afe440x_attr_in_intensity1_capacitance
.dev_attr
.attr
,
241 &afe440x_attr_in_intensity2_resistance
.dev_attr
.attr
,
242 &afe440x_attr_in_intensity2_capacitance
.dev_attr
.attr
,
243 &afe440x_attr_in_intensity3_resistance
.dev_attr
.attr
,
244 &afe440x_attr_in_intensity3_capacitance
.dev_attr
.attr
,
245 &afe440x_attr_in_intensity4_resistance
.dev_attr
.attr
,
246 &afe440x_attr_in_intensity4_capacitance
.dev_attr
.attr
,
250 static const struct attribute_group afe440x_attribute_group
= {
251 .attrs
= afe440x_attributes
254 static int afe4404_read_raw(struct iio_dev
*indio_dev
,
255 struct iio_chan_spec
const *chan
,
256 int *val
, int *val2
, long mask
)
258 struct afe4404_data
*afe
= iio_priv(indio_dev
);
259 unsigned int value_reg
= afe4404_channel_values
[chan
->address
];
260 unsigned int led_field
= afe4404_channel_leds
[chan
->address
];
261 unsigned int offdac_field
= afe4404_channel_offdacs
[chan
->address
];
264 switch (chan
->type
) {
267 case IIO_CHAN_INFO_RAW
:
268 ret
= regmap_read(afe
->regmap
, value_reg
, val
);
272 case IIO_CHAN_INFO_OFFSET
:
273 ret
= regmap_field_read(afe
->fields
[offdac_field
], val
);
281 case IIO_CHAN_INFO_RAW
:
282 ret
= regmap_field_read(afe
->fields
[led_field
], val
);
286 case IIO_CHAN_INFO_SCALE
:
289 return IIO_VAL_INT_PLUS_MICRO
;
299 static int afe4404_write_raw(struct iio_dev
*indio_dev
,
300 struct iio_chan_spec
const *chan
,
301 int val
, int val2
, long mask
)
303 struct afe4404_data
*afe
= iio_priv(indio_dev
);
304 unsigned int led_field
= afe4404_channel_leds
[chan
->address
];
305 unsigned int offdac_field
= afe4404_channel_offdacs
[chan
->address
];
307 switch (chan
->type
) {
310 case IIO_CHAN_INFO_OFFSET
:
311 return regmap_field_write(afe
->fields
[offdac_field
], val
);
316 case IIO_CHAN_INFO_RAW
:
317 return regmap_field_write(afe
->fields
[led_field
], val
);
327 static const struct iio_info afe4404_iio_info
= {
328 .attrs
= &afe440x_attribute_group
,
329 .read_raw
= afe4404_read_raw
,
330 .write_raw
= afe4404_write_raw
,
333 static irqreturn_t
afe4404_trigger_handler(int irq
, void *private)
335 struct iio_poll_func
*pf
= private;
336 struct iio_dev
*indio_dev
= pf
->indio_dev
;
337 struct afe4404_data
*afe
= iio_priv(indio_dev
);
341 for_each_set_bit(bit
, indio_dev
->active_scan_mask
,
342 indio_dev
->masklength
) {
343 ret
= regmap_read(afe
->regmap
, afe4404_channel_values
[bit
],
349 iio_push_to_buffers_with_timestamp(indio_dev
, buffer
, pf
->timestamp
);
351 iio_trigger_notify_done(indio_dev
->trig
);
356 static const struct iio_trigger_ops afe4404_trigger_ops
= {
359 /* Default timings from data-sheet */
360 #define AFE4404_TIMING_PAIRS \
361 { AFE440X_PRPCOUNT, 39999 }, \
362 { AFE440X_LED2LEDSTC, 0 }, \
363 { AFE440X_LED2LEDENDC, 398 }, \
364 { AFE440X_LED2STC, 80 }, \
365 { AFE440X_LED2ENDC, 398 }, \
366 { AFE440X_ADCRSTSTCT0, 5600 }, \
367 { AFE440X_ADCRSTENDCT0, 5606 }, \
368 { AFE440X_LED2CONVST, 5607 }, \
369 { AFE440X_LED2CONVEND, 6066 }, \
370 { AFE4404_LED3LEDSTC, 400 }, \
371 { AFE4404_LED3LEDENDC, 798 }, \
372 { AFE440X_ALED2STC, 480 }, \
373 { AFE440X_ALED2ENDC, 798 }, \
374 { AFE440X_ADCRSTSTCT1, 6068 }, \
375 { AFE440X_ADCRSTENDCT1, 6074 }, \
376 { AFE440X_ALED2CONVST, 6075 }, \
377 { AFE440X_ALED2CONVEND, 6534 }, \
378 { AFE440X_LED1LEDSTC, 800 }, \
379 { AFE440X_LED1LEDENDC, 1198 }, \
380 { AFE440X_LED1STC, 880 }, \
381 { AFE440X_LED1ENDC, 1198 }, \
382 { AFE440X_ADCRSTSTCT2, 6536 }, \
383 { AFE440X_ADCRSTENDCT2, 6542 }, \
384 { AFE440X_LED1CONVST, 6543 }, \
385 { AFE440X_LED1CONVEND, 7003 }, \
386 { AFE440X_ALED1STC, 1280 }, \
387 { AFE440X_ALED1ENDC, 1598 }, \
388 { AFE440X_ADCRSTSTCT3, 7005 }, \
389 { AFE440X_ADCRSTENDCT3, 7011 }, \
390 { AFE440X_ALED1CONVST, 7012 }, \
391 { AFE440X_ALED1CONVEND, 7471 }, \
392 { AFE440X_PDNCYCLESTC, 7671 }, \
393 { AFE440X_PDNCYCLEENDC, 39199 }
395 static const struct reg_sequence afe4404_reg_sequences
[] = {
396 AFE4404_TIMING_PAIRS
,
397 { AFE440X_CONTROL1
, AFE440X_CONTROL1_TIMEREN
},
398 { AFE4404_TIA_GAIN_SEP
, AFE440X_TIAGAIN_ENSEPGAIN
},
399 { AFE440X_CONTROL2
, AFE440X_CONTROL2_OSC_ENABLE
},
402 static const struct regmap_range afe4404_yes_ranges
[] = {
403 regmap_reg_range(AFE440X_LED2VAL
, AFE440X_LED1_ALED1VAL
),
404 regmap_reg_range(AFE4404_AVG_LED2_ALED2VAL
, AFE4404_AVG_LED1_ALED1VAL
),
407 static const struct regmap_access_table afe4404_volatile_table
= {
408 .yes_ranges
= afe4404_yes_ranges
,
409 .n_yes_ranges
= ARRAY_SIZE(afe4404_yes_ranges
),
412 static const struct regmap_config afe4404_regmap_config
= {
416 .max_register
= AFE4404_AVG_LED1_ALED1VAL
,
417 .cache_type
= REGCACHE_RBTREE
,
418 .volatile_table
= &afe4404_volatile_table
,
421 static const struct of_device_id afe4404_of_match
[] = {
422 { .compatible
= "ti,afe4404", },
425 MODULE_DEVICE_TABLE(of
, afe4404_of_match
);
427 static int __maybe_unused
afe4404_suspend(struct device
*dev
)
429 struct iio_dev
*indio_dev
= i2c_get_clientdata(to_i2c_client(dev
));
430 struct afe4404_data
*afe
= iio_priv(indio_dev
);
433 ret
= regmap_update_bits(afe
->regmap
, AFE440X_CONTROL2
,
434 AFE440X_CONTROL2_PDN_AFE
,
435 AFE440X_CONTROL2_PDN_AFE
);
439 ret
= regulator_disable(afe
->regulator
);
441 dev_err(dev
, "Unable to disable regulator\n");
448 static int __maybe_unused
afe4404_resume(struct device
*dev
)
450 struct iio_dev
*indio_dev
= i2c_get_clientdata(to_i2c_client(dev
));
451 struct afe4404_data
*afe
= iio_priv(indio_dev
);
454 ret
= regulator_enable(afe
->regulator
);
456 dev_err(dev
, "Unable to enable regulator\n");
460 ret
= regmap_update_bits(afe
->regmap
, AFE440X_CONTROL2
,
461 AFE440X_CONTROL2_PDN_AFE
, 0);
468 static SIMPLE_DEV_PM_OPS(afe4404_pm_ops
, afe4404_suspend
, afe4404_resume
);
470 static int afe4404_probe(struct i2c_client
*client
,
471 const struct i2c_device_id
*id
)
473 struct iio_dev
*indio_dev
;
474 struct afe4404_data
*afe
;
477 indio_dev
= devm_iio_device_alloc(&client
->dev
, sizeof(*afe
));
481 afe
= iio_priv(indio_dev
);
482 i2c_set_clientdata(client
, indio_dev
);
484 afe
->dev
= &client
->dev
;
485 afe
->irq
= client
->irq
;
487 afe
->regmap
= devm_regmap_init_i2c(client
, &afe4404_regmap_config
);
488 if (IS_ERR(afe
->regmap
)) {
489 dev_err(afe
->dev
, "Unable to allocate register map\n");
490 return PTR_ERR(afe
->regmap
);
493 for (i
= 0; i
< F_MAX_FIELDS
; i
++) {
494 afe
->fields
[i
] = devm_regmap_field_alloc(afe
->dev
, afe
->regmap
,
495 afe4404_reg_fields
[i
]);
496 if (IS_ERR(afe
->fields
[i
])) {
497 dev_err(afe
->dev
, "Unable to allocate regmap fields\n");
498 return PTR_ERR(afe
->fields
[i
]);
502 afe
->regulator
= devm_regulator_get(afe
->dev
, "tx_sup");
503 if (IS_ERR(afe
->regulator
)) {
504 dev_err(afe
->dev
, "Unable to get regulator\n");
505 return PTR_ERR(afe
->regulator
);
507 ret
= regulator_enable(afe
->regulator
);
509 dev_err(afe
->dev
, "Unable to enable regulator\n");
513 ret
= regmap_write(afe
->regmap
, AFE440X_CONTROL0
,
514 AFE440X_CONTROL0_SW_RESET
);
516 dev_err(afe
->dev
, "Unable to reset device\n");
520 ret
= regmap_multi_reg_write(afe
->regmap
, afe4404_reg_sequences
,
521 ARRAY_SIZE(afe4404_reg_sequences
));
523 dev_err(afe
->dev
, "Unable to set register defaults\n");
527 indio_dev
->modes
= INDIO_DIRECT_MODE
;
528 indio_dev
->dev
.parent
= afe
->dev
;
529 indio_dev
->channels
= afe4404_channels
;
530 indio_dev
->num_channels
= ARRAY_SIZE(afe4404_channels
);
531 indio_dev
->name
= AFE4404_DRIVER_NAME
;
532 indio_dev
->info
= &afe4404_iio_info
;
535 afe
->trig
= devm_iio_trigger_alloc(afe
->dev
,
540 dev_err(afe
->dev
, "Unable to allocate IIO trigger\n");
545 iio_trigger_set_drvdata(afe
->trig
, indio_dev
);
547 afe
->trig
->ops
= &afe4404_trigger_ops
;
548 afe
->trig
->dev
.parent
= afe
->dev
;
550 ret
= iio_trigger_register(afe
->trig
);
552 dev_err(afe
->dev
, "Unable to register IIO trigger\n");
556 ret
= devm_request_threaded_irq(afe
->dev
, afe
->irq
,
557 iio_trigger_generic_data_rdy_poll
,
562 dev_err(afe
->dev
, "Unable to request IRQ\n");
567 ret
= iio_triggered_buffer_setup(indio_dev
, &iio_pollfunc_store_time
,
568 afe4404_trigger_handler
, NULL
);
570 dev_err(afe
->dev
, "Unable to setup buffer\n");
571 goto unregister_trigger
;
574 ret
= iio_device_register(indio_dev
);
576 dev_err(afe
->dev
, "Unable to register IIO device\n");
577 goto unregister_triggered_buffer
;
582 unregister_triggered_buffer
:
583 iio_triggered_buffer_cleanup(indio_dev
);
586 iio_trigger_unregister(afe
->trig
);
588 regulator_disable(afe
->regulator
);
593 static int afe4404_remove(struct i2c_client
*client
)
595 struct iio_dev
*indio_dev
= i2c_get_clientdata(client
);
596 struct afe4404_data
*afe
= iio_priv(indio_dev
);
599 iio_device_unregister(indio_dev
);
601 iio_triggered_buffer_cleanup(indio_dev
);
604 iio_trigger_unregister(afe
->trig
);
606 ret
= regulator_disable(afe
->regulator
);
608 dev_err(afe
->dev
, "Unable to disable regulator\n");
615 static const struct i2c_device_id afe4404_ids
[] = {
619 MODULE_DEVICE_TABLE(i2c
, afe4404_ids
);
621 static struct i2c_driver afe4404_i2c_driver
= {
623 .name
= AFE4404_DRIVER_NAME
,
624 .of_match_table
= afe4404_of_match
,
625 .pm
= &afe4404_pm_ops
,
627 .probe
= afe4404_probe
,
628 .remove
= afe4404_remove
,
629 .id_table
= afe4404_ids
,
631 module_i2c_driver(afe4404_i2c_driver
);
633 MODULE_AUTHOR("Andrew F. Davis <afd@ti.com>");
634 MODULE_DESCRIPTION("TI AFE4404 Heart Rate Monitor and Pulse Oximeter AFE");
635 MODULE_LICENSE("GPL v2");