11d9aa24bSDan Murphy* Texas Instruments - LM3692x Highly Efficient White LED Driver
21d9aa24bSDan Murphy
31d9aa24bSDan MurphyThe LM3692x is an ultra-compact, highly efficient,
41d9aa24bSDan Murphywhite-LED driver designed for LCD display backlighting.
51d9aa24bSDan Murphy
61d9aa24bSDan MurphyThe main difference between the LM36922 and LM36923 is the number of
71d9aa24bSDan MurphyLED strings it supports.  The LM36922 supports two strings while the LM36923
81d9aa24bSDan Murphysupports three strings.
91d9aa24bSDan Murphy
101d9aa24bSDan MurphyRequired properties:
111d9aa24bSDan Murphy	- compatible:
121d9aa24bSDan Murphy		"ti,lm36922"
131d9aa24bSDan Murphy		"ti,lm36923"
141d9aa24bSDan Murphy	- reg :  I2C slave address
151d9aa24bSDan Murphy	- #address-cells : 1
161d9aa24bSDan Murphy	- #size-cells : 0
171d9aa24bSDan Murphy
181d9aa24bSDan MurphyOptional properties:
191d9aa24bSDan Murphy	- enable-gpios : gpio pin to enable/disable the device.
201d9aa24bSDan Murphy	- vled-supply : LED supply
211d9aa24bSDan Murphy
221d9aa24bSDan MurphyRequired child properties:
231d9aa24bSDan Murphy	- reg : 0
241d9aa24bSDan Murphy
251d9aa24bSDan MurphyOptional child properties:
261d9aa24bSDan Murphy	- label : see Documentation/devicetree/bindings/leds/common.txt
271d9aa24bSDan Murphy	- linux,default-trigger :
281d9aa24bSDan Murphy	   see Documentation/devicetree/bindings/leds/common.txt
291d9aa24bSDan Murphy
301d9aa24bSDan MurphyExample:
311d9aa24bSDan Murphy
321d9aa24bSDan Murphyled-controller@36 {
331d9aa24bSDan Murphy	compatible = "ti,lm3692x";
341d9aa24bSDan Murphy	reg = <0x36>;
351d9aa24bSDan Murphy	#address-cells = <1>;
361d9aa24bSDan Murphy	#size-cells = <0>;
371d9aa24bSDan Murphy
381d9aa24bSDan Murphy	enable-gpios = <&gpio1 28 GPIO_ACTIVE_HIGH>;
391d9aa24bSDan Murphy	vled-supply = <&vbatt>;
401d9aa24bSDan Murphy
411d9aa24bSDan Murphy	led@0 {
421d9aa24bSDan Murphy		reg = <0>;
431d9aa24bSDan Murphy		label = "white:backlight_cluster";
441d9aa24bSDan Murphy		linux,default-trigger = "backlight";
451d9aa24bSDan Murphy	};
461d9aa24bSDan Murphy}
471d9aa24bSDan Murphy
481d9aa24bSDan MurphyFor more product information please see the link below:
491d9aa24bSDan Murphyhttp://www.ti.com/lit/ds/snvsa29/snvsa29.pdf
50