From: Lee Jones <lee@kernel.org>
To: Dmitry Rokosov <ddrokosov@salutedevices.com>
Cc: pavel@ucw.cz, robh+dt@kernel.org,
krzysztof.kozlowski+dt@linaro.org, conor+dt@kernel.org,
andy.shevchenko@gmail.com, kernel@sberdevices.ru,
rockosov@gmail.com, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-leds@vger.kernel.org,
George Stark <gnstark@salutedevices.com>
Subject: Re: [PATCH v4 09/11] leds: aw200xx: add support for aw20108 device
Date: Thu, 23 Nov 2023 16:44:10 +0000 [thread overview]
Message-ID: <20231123164410.GH1354538@google.com> (raw)
In-Reply-To: <20231121202835.28152-10-ddrokosov@salutedevices.com>
On Tue, 21 Nov 2023, Dmitry Rokosov wrote:
> From: George Stark <gnstark@salutedevices.com>
>
> Add support for Awinic aw20108 device from the same LED drivers family.
> New device supports 108 LEDs using a matrix of 12x9 outputs.
>
> Signed-off-by: George Stark <gnstark@salutedevices.com>
> Signed-off-by: Dmitry Rokosov <ddrokosov@salutedevices.com>
> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
> ---
> drivers/leds/Kconfig | 14 +++++++++-----
> drivers/leds/leds-aw200xx.c | 10 +++++++++-
> 2 files changed, 18 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/leds/Kconfig b/drivers/leds/Kconfig
> index 6046dfeca16f..a879628e985c 100644
> --- a/drivers/leds/Kconfig
> +++ b/drivers/leds/Kconfig
> @@ -95,14 +95,18 @@ config LEDS_ARIEL
> Say Y to if your machine is a Dell Wyse 3020 thin client.
>
> config LEDS_AW200XX
> - tristate "LED support for Awinic AW20036/AW20054/AW20072"
> + tristate "LED support for Awinic AW20036/AW20054/AW20072/AW20108"
> depends on LEDS_CLASS
> depends on I2C
> help
> - This option enables support for the AW20036/AW20054/AW20072 LED driver.
> - It is a 3x12/6x9/6x12 matrix LED driver programmed via
> - an I2C interface, up to 36/54/72 LEDs or 12/18/24 RGBs,
> - 3 pattern controllers for auto breathing or group dimming control.
> + This option enables support for Awinic AW200XX LED controller.
"for ..." THE or AN.
Or put an 's' at the end of "controller".
> + It is a matrix LED driver programmed via an I2C interface. Devices have
> + a set of individually controlled leds and support 3 pattern controllers
LEDs
> + for auto breathing or group dimming control. Supported devices:
> + - AW20036 (3x12) 36 LEDs
> + - AW20054 (6x9) 54 LEDs
> + - AW20072 (6x12) 72 LEDs
> + - AW20108 (9x12) 108 LEDs
>
> To compile this driver as a module, choose M here: the module
> will be called leds-aw200xx.
> diff --git a/drivers/leds/leds-aw200xx.c b/drivers/leds/leds-aw200xx.c
> index c48aa11fd411..4b5036360887 100644
> --- a/drivers/leds/leds-aw200xx.c
> +++ b/drivers/leds/leds-aw200xx.c
> @@ -1,6 +1,6 @@
> // SPDX-License-Identifier: GPL-2.0
> /*
> - * Awinic AW20036/AW20054/AW20072 LED driver
> + * Awinic AW20036/AW20054/AW20072/AW20108 LED driver
> *
> * Copyright (c) 2023, SberDevices. All Rights Reserved.
> *
> @@ -620,10 +620,17 @@ static const struct aw200xx_chipdef aw20072_cdef = {
> .display_size_columns = 12,
> };
>
> +static const struct aw200xx_chipdef aw20108_cdef = {
> + .channels = 108,
> + .display_size_rows_max = 9,
> + .display_size_columns = 12,
> +};
> +
> static const struct i2c_device_id aw200xx_id[] = {
> { "aw20036" },
> { "aw20054" },
> { "aw20072" },
> + { "aw20108" },
> {}
> };
> MODULE_DEVICE_TABLE(i2c, aw200xx_id);
> @@ -632,6 +639,7 @@ static const struct of_device_id aw200xx_match_table[] = {
> { .compatible = "awinic,aw20036", .data = &aw20036_cdef, },
> { .compatible = "awinic,aw20054", .data = &aw20054_cdef, },
> { .compatible = "awinic,aw20072", .data = &aw20072_cdef, },
> + { .compatible = "awinic,aw20108", .data = &aw20108_cdef, },
> {}
> };
> MODULE_DEVICE_TABLE(of, aw200xx_match_table);
> --
> 2.36.0
>
--
Lee Jones [李琼斯]
next prev parent reply other threads:[~2023-11-23 16:44 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-21 20:28 [PATCH v4 00/11] leds: aw200xx: several driver updates Dmitry Rokosov
2023-11-21 20:28 ` [PATCH v4 01/11] leds: aw200xx: fix write to DIM parameter Dmitry Rokosov
2023-11-21 20:28 ` [PATCH v4 02/11] leds: aw200xx: support HWEN hardware control Dmitry Rokosov
2023-11-23 15:57 ` Lee Jones
2023-11-21 20:28 ` [PATCH v4 03/11] dt-bindings: leds: aw200xx: introduce optional enable-gpios property Dmitry Rokosov
2023-11-21 20:28 ` [PATCH v4 04/11] leds: aw200xx: calculate dts property display_rows in the driver Dmitry Rokosov
2023-11-23 16:32 ` Lee Jones
2023-11-24 9:41 ` Dmitry Rokosov
2023-11-27 8:57 ` Lee Jones
2023-11-27 11:41 ` Dmitry Rokosov
2023-11-21 20:28 ` [PATCH v4 05/11] dt-bindings: leds: aw200xx: remove property "awinic,display-rows" Dmitry Rokosov
2023-11-21 20:28 ` [PATCH v4 06/11] leds: aw200xx: add delay after software reset Dmitry Rokosov
2023-11-23 16:38 ` Lee Jones
2023-11-24 9:37 ` Dmitry Rokosov
2023-11-27 9:14 ` Lee Jones
2023-11-21 20:28 ` [PATCH v4 07/11] leds: aw200xx: enable disable_locking flag in regmap config Dmitry Rokosov
2023-11-21 20:28 ` [PATCH v4 08/11] leds: aw200xx: improve autodim calculation method Dmitry Rokosov
2023-11-21 20:28 ` [PATCH v4 09/11] leds: aw200xx: add support for aw20108 device Dmitry Rokosov
2023-11-23 16:44 ` Lee Jones [this message]
2023-11-21 20:28 ` [PATCH v4 10/11] dt-bindings: leds: awinic,aw200xx: add AW20108 device Dmitry Rokosov
2023-11-21 20:28 ` [PATCH v4 11/11] dt-bindings: leds: aw200xx: fix led pattern and add reg constraints Dmitry Rokosov
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=20231123164410.GH1354538@google.com \
--to=lee@kernel.org \
--cc=andy.shevchenko@gmail.com \
--cc=conor+dt@kernel.org \
--cc=ddrokosov@salutedevices.com \
--cc=devicetree@vger.kernel.org \
--cc=gnstark@salutedevices.com \
--cc=kernel@sberdevices.ru \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-leds@vger.kernel.org \
--cc=pavel@ucw.cz \
--cc=robh+dt@kernel.org \
--cc=rockosov@gmail.com \
/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).