Commit 0212be85 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski Committed by Rob Herring
Browse files

dt-bindings: leds: irled: pwm-ir-tx: convert to DT schema

parent 0542aac4
Loading
Loading
Loading
Loading
+0 −13
Original line number Diff line number Diff line
Device tree bindings for IR LED connected through pwm pin which is used as
remote controller transmitter.

Required properties:
	- compatible: should be "pwm-ir-tx".
	- pwms : PWM property to point to the PWM device (phandle)/port (id)
	  and to specify the period time to be used: <&phandle id period_ns>;

Example:
	irled {
		compatible = "pwm-ir-tx";
		pwms = <&pwm0 0 10000000>;
	};
+34 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
%YAML 1.2
---
$id: http://devicetree.org/schemas/leds/irled/pwm-ir-tx.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: IR LED connected through PWM pin

maintainers:
  - Sean Young <sean@mess.org>

description:
  IR LED connected through PWM pin which is used as remote controller
  transmitter.

properties:
  compatible:
    const: pwm-ir-tx

  pwms:
    maxItems: 1

required:
  - compatible
  - pwms

additionalProperties: false

examples:
  - |
    irled {
        compatible = "pwm-ir-tx";
        pwms = <&pwm0 0 10000000>;
    };
+1 −0
Original line number Diff line number Diff line
@@ -16722,6 +16722,7 @@ PWM IR Transmitter
M:	Sean Young <sean@mess.org>
L:	linux-media@vger.kernel.org
S:	Maintained
F:	Documentation/devicetree/bindings/leds/irled/pwm-ir-tx.yaml
F:	drivers/media/rc/pwm-ir-tx.c
PWM SUBSYSTEM