From: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
To: Kyle Swenson <kyle.swenson@est.tech>,
pavel@ucw.cz, robh+dt@kernel.org, krzk+dt@kernel.org
Cc: linux-leds@vger.kernel.org, devicetree@vger.kernel.org
Subject: Re: [PATCH 2/2] dt-bindings: leds: Add aw21024 binding
Date: Tue, 17 May 2022 11:08:08 +0200 [thread overview]
Message-ID: <cb83fbab-7aa3-d1a7-ab80-d2b94a516f6d@linaro.org> (raw)
In-Reply-To: <20220513190409.3682501-2-kyle.swenson@est.tech>
On 13/05/2022 21:04, Kyle Swenson wrote:
> Add device-tree bindings for Awinic's aw21024 24 channel RGB LED Driver.
>
> Datasheet:
> https://www.awinic.com/Public/Uploads/uploadfile/files/20200511/20200511165751_5eb9138fcd9e3.PDF
>
> Signed-off-by: Kyle Swenson <kyle.swenson@est.tech>
> ---
> .../bindings/leds/leds-aw21024.yaml | 157 ++++++++++++++++++
> 1 file changed, 157 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/leds/leds-aw21024.yaml
>
> diff --git a/Documentation/devicetree/bindings/leds/leds-aw21024.yaml b/Documentation/devicetree/bindings/leds/leds-aw21024.yaml
> new file mode 100644
> index 000000000000..1180c02b5d21
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/leds/leds-aw21024.yaml
> @@ -0,0 +1,157 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/leds/leds-aw21024.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: AWINIC AW21024 24-channel LED Driver
> +
> +maintainers:
> + - Kyle Swenson <kyle.swenson@est.tech>
> +
> +description: |
> + The AW21024 is a 24-channel LED driver with an I2C interface.
> +
> + For more product information please see the link below:
> + https://www.awinic.com/en/index/pageview/catid/19/id/28.html
> +
> +properties:
> + compatible:
> + const: awinic,aw21024
> +
> + reg:
> + maxItems: 1
> + description:
> + I2C peripheral address
Skip description, it's obvious.
> +
> + enable-gpios:
> + maxItems: 1
> + description: GPIO pin to enable/disable the device.
Skip description, it's obvious.
> +
> + '#address-cells':
> + const: 1
> +
> + '#size-cells':
> + const: 0
> +
> +patternProperties:
> + '^multi-led@[0-9a-f]$':
> + type: object
> + $ref: leds-class-multicolor.yaml#
> + properties:
> + reg:
> + minItems: 1
> + maxItems: 24
> + description:
> + Denotes the LED indicies that should be grouped into a
> + single multi-color LED.
> +
> + patternProperties:
> + "(^led-[0-9a-f]$|led)":
How does this pass your own bindings? In the DTS you use underscofer
which is not here...
You need to test the bindings before sending them to people.
> + type: object
> + $ref: common.yaml#
> +
> +patternProperties:
> + "^led@[0-2]$":
> + type: object
> + $ref: common.yaml#
> +
> + properties:
> + reg:
> + description: Index of the LED.
> + minimum: 0
> + maximum: 23
> +
> + description:
> + Specifies a single LED at the specified index
> +
> +
Just one line. Plus errors pointed out by Rob's bot.
> +required:
> + - compatible
> + - reg
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/gpio/gpio.h>
> + #include <dt-bindings/leds/common.h>
> +
> + i2c {
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + led-controller@30 {
> + compatible = "awinic,aw21024";
> + #address-cells = <1>;
> + #size-cells = <0>;
> + reg = <0x30>;
reg after compatible.
> + enable-gpios = <&gpio1 23>;
> +
> + multi-led@1 {
> + #address-cells = <1>;
> + #size-cells = <2>;
> + reg = <0x0 0x1 0x2>;
This is confusing. Does not match unit address and address/size cells.
Perhaps you wanted three separate regs?
> + color = <LED_COLOR_ID_RGB>;
> + label = "RGB_LED1";
> +
> + led-0 {
> + color = <LED_COLOR_ID_RED>;
> + };
> +
> + led-1 {
> + color = <LED_COLOR_ID_GREEN>;
> + };
> +
> + led-2 {
> + color = <LED_COLOR_ID_BLUE>;
> + };
> +
> + };
> + multi-led@2 {
> + #address-cells = <1>;
> + #size-cells = <3>;
> + reg = <0x3 0x4 0x5 0x6>;
The same
> + color = <LED_COLOR_ID_RGB>;
> + label = "RGBW_LED1";
Why labels are upper-case?
> +
> + led-4 {
> + color = <LED_COLOR_ID_RED>;
> + };
> +
> + led-5 {
> + color = <LED_COLOR_ID_GREEN>;
> + };
> +
> + led-6 {
> + color = <LED_COLOR_ID_BLUE>;
> + };
> +
> + led-7 {
> + color = <LED_COLOR_ID_WHITE>;
> + };
> + };
> + ready_led@3 {
No underscores in node names. Generic node name, so just led.
> + #address-cells = <1>;
> + #size-cells = <1>;
> + reg = <0x7 0x8>;
The same problem with reg.
> + label = "READY";
> + color = <LED_COLOR_ID_MULTI>;
> +
> + led-8 {
> + color = <LED_COLOR_ID_RED>;
> + };
> +
> + led-9 {
> + color = <LED_COLOR_ID_GREEN>;
> + };
> + };
> + connected_led@4 {
> + reg = <0x9>;
> + label = "CONNECTED";
> + color = <LED_COLOR_ID_BLUE>;
> + };
> + };
> + };
> +
> +...
Best regards,
Krzysztof
next prev parent reply other threads:[~2022-05-17 9:10 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-13 19:04 [PATCH 1/2] leds: aw21024: Add support for Awinic's AW21024 Kyle Swenson
2022-05-13 19:04 ` [PATCH 2/2] dt-bindings: leds: Add aw21024 binding Kyle Swenson
2022-05-13 20:48 ` Rob Herring
2022-05-17 9:08 ` Krzysztof Kozlowski [this message]
2022-05-17 18:31 ` Kyle Swenson
2022-05-18 8:17 ` Krzysztof Kozlowski
2022-05-18 21:18 ` Kyle Swenson
2022-05-19 8:04 ` Krzysztof Kozlowski
2022-05-16 10:21 ` [PATCH 1/2] leds: aw21024: Add support for Awinic's AW21024 kernel test robot
2022-05-16 10:42 ` kernel test robot
2022-05-16 12:34 ` kernel test robot
2022-05-17 9:11 ` Krzysztof Kozlowski
2022-05-17 18:36 ` Kyle Swenson
2022-05-18 8:30 ` Krzysztof Kozlowski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cb83fbab-7aa3-d1a7-ab80-d2b94a516f6d@linaro.org \
--to=krzysztof.kozlowski@linaro.org \
--cc=devicetree@vger.kernel.org \
--cc=krzk+dt@kernel.org \
--cc=kyle.swenson@est.tech \
--cc=linux-leds@vger.kernel.org \
--cc=pavel@ucw.cz \
--cc=robh+dt@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).