xref: /freebsd/sys/contrib/device-tree/Bindings/leds/irled/pwm-ir-tx.txt (revision 5ca8e32633c4ffbbcd6762e5888b6a4ba0708c6c)
1Device tree bindings for IR LED connected through pwm pin which is used as
2remote controller transmitter.
3
4Required properties:
5	- compatible: should be "pwm-ir-tx".
6	- pwms : PWM property to point to the PWM device (phandle)/port (id)
7	  and to specify the period time to be used: <&phandle id period_ns>;
8
9Example:
10	irled {
11		compatible = "pwm-ir-tx";
12		pwms = <&pwm0 0 10000000>;
13	};
14