Re: [PATCH v2 3/3] dt-bindings: leds: backlight: Convert TPS65217 to DT schema

From: Krzysztof Kozlowski

Date: Mon Jul 20 2026 - 02:55:09 EST


On Sat, Jul 18, 2026 at 09:56:32PM +0000, Eduard Bostina wrote:
+
> + patternProperties:
> + "^regulator@[0-6]$":
> + type: object
> + $ref: /schemas/regulator/regulator.yaml#
> + unevaluatedProperties: false
> +
> + properties:
> + reg:
> + maxItems: 1
> +
> + regulator-compatible:
> + $ref: /schemas/types.yaml#/definitions/string

You should not need this property, it is already in regulator.yaml.

> +
> + charger:
> + $ref: /schemas/power/supply/tps65217-charger.yaml#

unevaluatedProperties: false

> +
> + pwrbutton:
> + $ref: /schemas/input/ti,tps65217-pwrbutton.yaml#

unevaluatedProperties: false

> +
> +
> +required:
> + - compatible
> + - reg
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + i2c {
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + tps@24 {

pmic@24

Please make the example mostly complete - add rest of properties and nodes.

> + reg = <0x24>;
> + compatible = "ti,tps65217";
> +
> + backlight {
> + isel = <1>; /* 1 - ISET1, 2 ISET2 */
> + fdim = <100>; /* TPS65217_BL_FDIM_100HZ */
> + default-brightness = <50>;
> + };
> + };

Best regards,
Krzysztof