Another pass at removing unnecessary use of 'allOf' with a '$ref'. json-schema versions draft7 and earlier have a weird behavior in that any keywords combined with a '$ref' are ignored (silently). The correct form was to put a '$ref' under an 'allOf'. This behavior is now changed in the 2019-09 json-schema spec and '$ref' can be mixed with other keywords. Cc: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Cc: Thierry Reding <thierry.reding@gmail.com> Cc: Sam Ravnborg <sam@ravnborg.org> Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com> Cc: Pavel Machek <pavel@ucw.cz> Cc: Guenter Roeck <groeck@chromium.org> Cc: Richard Weinberger <richard@nod.at> Cc: Vignesh Raghavendra <vigneshr@ti.com> Cc: "David S. Miller" <davem@davemloft.net> Cc: Kishon Vijay Abraham I <kishon@ti.com> Cc: Sebastian Reichel <sre@kernel.org> Cc: Mathieu Poirier <mathieu.poirier@linaro.org> Signed-off-by: Rob Herring <robh@kernel.org> Acked-by: Mark Brown <broonie@kernel.org> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Acked-By: Vinod Koul <vkoul@kernel.org> Acked-by: Lee Jones <lee.jones@linaro.org> Acked-by: Marek Behún <kabel@kernel.org> Acked-by: Miquel Raynal <miquel.raynal@bootlin.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Jakub Kicinski <kuba@kernel.org> Acked-by: Bjorn Andersson <bjorn.andersson@linaro.org> Link: https://lore.kernel.org/r/20220228213802.1639658-1-robh@kernel.org
90 lines
2.1 KiB
YAML
90 lines
2.1 KiB
YAML
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/leds/cznic,turris-omnia-leds.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: CZ.NIC's Turris Omnia LEDs driver
|
|
|
|
maintainers:
|
|
- Marek Behún <kabel@kernel.org>
|
|
|
|
description:
|
|
This module adds support for the RGB LEDs found on the front panel of the
|
|
Turris Omnia router. There are 12 RGB LEDs that are controlled by a
|
|
microcontroller that communicates via the I2C bus. Each LED is described
|
|
as a subnode of this I2C device.
|
|
|
|
properties:
|
|
compatible:
|
|
const: cznic,turris-omnia-leds
|
|
|
|
reg:
|
|
description: I2C slave address of the microcontroller.
|
|
maxItems: 1
|
|
|
|
"#address-cells":
|
|
const: 1
|
|
|
|
"#size-cells":
|
|
const: 0
|
|
|
|
patternProperties:
|
|
"^multi-led@[0-9a-b]$":
|
|
type: object
|
|
$ref: leds-class-multicolor.yaml#
|
|
description:
|
|
This node represents one of the RGB LED devices on Turris Omnia.
|
|
No subnodes need to be added for subchannels since this controller only
|
|
supports RGB LEDs.
|
|
|
|
properties:
|
|
reg:
|
|
minimum: 0
|
|
maximum: 11
|
|
description:
|
|
This property identifies one of the LEDs on the front panel of the
|
|
Turris Omnia router.
|
|
|
|
required:
|
|
- reg
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
|
|
#include <dt-bindings/leds/common.h>
|
|
|
|
i2c0 {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
led-controller@2b {
|
|
compatible = "cznic,turris-omnia-leds";
|
|
reg = <0x2b>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
multi-led@0 {
|
|
/*
|
|
* No subnodes are needed, this controller only supports RGB
|
|
* LEDs.
|
|
*/
|
|
reg = <0>;
|
|
color = <LED_COLOR_ID_MULTI>;
|
|
function = LED_FUNCTION_POWER;
|
|
linux,default-trigger = "heartbeat";
|
|
};
|
|
|
|
multi-led@a {
|
|
reg = <0xa>;
|
|
color = <LED_COLOR_ID_MULTI>;
|
|
function = LED_FUNCTION_INDICATOR;
|
|
function-enumerator = <1>;
|
|
};
|
|
};
|
|
};
|
|
|
|
...
|