Commit 1e65b2f1 authored by Robert Eshleman's avatar Robert Eshleman Committed by Jonathan Cameron
Browse files

dt-bindings: iio: light: Add max44009



Adds device tree bindings for the max44009 light sensor.

Signed-off-by: default avatarRobert Eshleman <bobbyeshleman@gmail.com>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 6aef699a
Loading
Loading
Loading
Loading
+24 −0
Original line number Diff line number Diff line
* MAX44009 Ambient Light Sensor

Required properties:

- compatible: should be "maxim,max44009"
- reg: the I2C address of the device (default is <0x4a>)

Optional properties:

- interrupts: interrupt mapping for GPIO IRQ. Should be configured with
  IRQ_TYPE_EDGE_FALLING.

Refer to interrupt-controller/interrupts.txt for generic interrupt client
node bindings.

Example:

light-sensor@4a {
	compatible = "maxim,max44009";
	reg = <0x4a>;

	interrupt-parent = <&gpio1>;
	interrupts = <17 IRQ_TYPE_EDGE_FALLING>;
};