1Analog devices AS3645A device tree bindings
2
3The AS3645A flash LED controller can drive two LEDs, one high current
4flash LED and one indicator LED. The high current flash LED can be
5used in torch mode as well.
6
7Ranges below noted as [a, b] are closed ranges between a and b, i.e. a
8and b are included in the range.
9
10Please also see common.txt in the same directory.
11
12
13Required properties
14===================
15
16compatible	: Must be "ams,as3645a".
17reg		: The I2C address of the device. Typically 0x30.
18#address-cells	: 1
19#size-cells	: 0
20
21
22Required properties of the flash child node (0)
23===============================================
24
25reg: 0
26flash-timeout-us: Flash timeout in microseconds. The value must be in
27		  the range [100000, 850000] and divisible by 50000.
28flash-max-microamp: Maximum flash current in microamperes. Has to be
29		    in the range between [200000, 500000] and
30		    divisible by 20000.
31led-max-microamp: Maximum torch (assist) current in microamperes. The
32		  value must be in the range between [20000, 160000] and
33		  divisible by 20000.
34ams,input-max-microamp: Maximum flash controller input current. The
35			value must be in the range [1250000, 2000000]
36			and divisible by 50000.
37
38
39Optional properties of the flash child node
40===========================================
41
42label		: The label of the flash LED.
43
44
45Required properties of the indicator child node (1)
46===================================================
47
48reg: 1
49led-max-microamp: Maximum indicator current. The allowed values are
50		  2500, 5000, 7500 and 10000.
51
52Optional properties of the indicator child node
53===============================================
54
55label		: The label of the indicator LED.
56
57
58Example
59=======
60
61	as3645a@30 {
62		#address-cells: 1
63		#size-cells: 0
64		reg = <0x30>;
65		compatible = "ams,as3645a";
66		flash@0 {
67			reg = <0x0>;
68			flash-timeout-us = <150000>;
69			flash-max-microamp = <320000>;
70			led-max-microamp = <60000>;
71			ams,input-max-microamp = <1750000>;
72			label = "as3645a:flash";
73		};
74		indicator@1 {
75			reg = <0x1>;
76			led-max-microamp = <10000>;
77			label = "as3645a:indicator";
78		};
79	};
80