1* OMAP PWM for dual-mode timers
2
3Required properties:
4- compatible: Shall contain "ti,omap-dmtimer-pwm".
5- ti,timers: phandle to PWM capable OMAP timer. See arm/omap/timer.txt for info
6  about these timers.
7- #pwm-cells: Should be 3. See pwm.txt in this directory for a description of
8  the cells format.
9
10Optional properties:
11- ti,prescaler: Should be a value between 0 and 7, see the timers datasheet
12
13Example:
14	pwm9: dmtimer-pwm@9 {
15		compatible = "ti,omap-dmtimer-pwm";
16		ti,timers = <&timer9>;
17		#pwm-cells = <3>;
18	};
19