Merge tag 'nfsd-4.15' of git://linux-nfs.org/~bfields/linux
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / iio / health / max30100.txt
1 Maxim MAX30100 heart rate and pulse oximeter sensor
2
3 * https://datasheets.maximintegrated.com/en/ds/MAX30100.pdf
4
5 Required properties:
6   - compatible: must be "maxim,max30100"
7   - reg: the I2C address of the sensor
8   - interrupt-parent: should be the phandle for the interrupt controller
9   - interrupts: the sole interrupt generated by the device
10
11   Refer to interrupt-controller/interrupts.txt for generic
12   interrupt client node bindings.
13
14 Optional properties:
15   - maxim,led-current-microamp: configuration for LED current in microamperes
16     while the engine is running. First indexed value is the configuration for
17     the RED LED, and second value is for the IR LED.
18
19     Refer to the datasheet for the allowed current values.
20
21 Example:
22
23 max30100@57 {
24         compatible = "maxim,max30100";
25         reg = <0x57>;
26         maxim,led-current-microamp = <24000 50000>;
27         interrupt-parent = <&gpio1>;
28         interrupts = <16 2>;
29 };