All of lore.kernel.org
 help / color / mirror / Atom feed
From: Steffen Trumtrar <s.trumtrar@pengutronix.de>
To: Jacek Anaszewski <jacek.anaszewski@gmail.com>
Cc: Nam Tran <trannamatk@gmail.com>,  Lee Jones <lee@kernel.org>,
	 Pavel Machek <pavel@kernel.org>,
	 linux-kernel@vger.kernel.org, linux-leds@vger.kernel.org
Subject: Re: [PATCH v9] leds: add support for TI LP5860 LED driver chip
Date: Sun, 03 May 2026 20:19:44 +0200	[thread overview]
Message-ID: <87zf2gqrsv.fsf@pengutronix.de> (raw)
In-Reply-To: <aae0901b-ebfd-4d40-9880-116b881c9a90@gmail.com> (Jacek Anaszewski's message of "Sun, 26 Apr 2026 14:41:09 +0200")

On 2026-04-26 at 14:41 +02, Jacek Anaszewski <jacek.anaszewski@gmail.com> wrote:

Hi,

> Hi Steffen,
> 
> On 4/24/26 3:28 PM, Steffen Trumtrar wrote:
> > Add support for the Texas Instruments LP5860 LED driver chip
> > via SPI interfaces.
> > The LP5860 is an LED matrix driver for up to 196 LEDs, which supports
> > short and open detection of the individual channel select lines.
> > It can be connected to SPI or I2C bus. For now add support for SPI only.
> > Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>
> > ---
> [...]
> > diff --git a/drivers/leds/rgb/leds-lp5860-core.c b/drivers/leds/rgb/leds-lp5860-core.c
> > new file mode 100644
> > index 0000000000000..648bf168f94bf
> > --- /dev/null
> > +++ b/drivers/leds/rgb/leds-lp5860-core.c
> > @@ -0,0 +1,231 @@
> > +// SPDX-License-Identifier: GPL-2.0-only
> > +/*
> > + * Copyright (c) 2025 Pengutronix
> > + *
> > + * Author: Steffen Trumtrar <kernel@pengutronix.de>
> > + */
> > +
> > +#include <linux/led-class-multicolor.h>
> > +#include <linux/module.h>
> > +#include <linux/of_platform.h>
> > +#include <linux/property.h>
> > +#include <linux/regmap.h>
> > +
> > +#include "leds-lp5860.h"
> > +
> > +static struct lp5860_led *mcled_cdev_to_led(struct led_classdev_mc *mc_cdev)
> > +{
> > +	return container_of(mc_cdev, struct lp5860_led, mc_cdev);
> > +}
> > +
> > +static int lp5860_set_dot_onoff(struct lp5860_led *led, unsigned int dot, bool enable)
> > +{
> > +	unsigned int offset = dot / LP5860_MAX_DOT_ONOFF_GROUP_NUM;
> > +	unsigned int mask = BIT(dot % LP5860_MAX_DOT_ONOFF_GROUP_NUM);
> > +
> > +	if (dot > LP5860_MAX_LED)
> > +		return -EINVAL;
> > +
> > +	return regmap_update_bits(led->chip->regmap,
> > +				  LP5860_REG_DOT_ONOFF_START + offset, mask,
> > +				  enable ? LP5860_DOT_ALL_ON : LP5860_DOT_ALL_OFF);
> > +}
> > +
> > +static int lp5860_set_mc_brightness(struct led_classdev *cdev,
> > +				    enum led_brightness brightness)
> > +{
> > +	struct led_classdev_mc *mc_cdev = lcdev_to_mccdev(cdev);
> > +	struct lp5860_led *led = mcled_cdev_to_led(mc_cdev);
> 
> You need mutex locking while accessing hw to avoid leaving the
> device in an inconsistent state in case of two parallel requests from
> different processes.
>

The hw is only accessed via regmap. It handles locking AFAIK or do I misunderstand you?


Best regards,
Steffen

-- 
Pengutronix e.K.                | Dipl.-Inform. Steffen Trumtrar |
Steuerwalder Str. 21            | https://www.pengutronix.de/    |
31137 Hildesheim, Germany       | Phone: +49-5121-206917-0       |
Amtsgericht Hildesheim, HRA 2686| Fax:   +49-5121-206917-5555    |

  reply	other threads:[~2026-05-03 18:19 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-24 13:28 [PATCH v9] leds: add support for TI LP5860 LED driver chip Steffen Trumtrar
2026-04-26 12:41 ` Jacek Anaszewski
2026-05-03 18:19   ` Steffen Trumtrar [this message]
2026-05-04 19:33     ` Jacek Anaszewski
2026-05-05  5:16       ` Steffen Trumtrar
2026-04-26 20:37 ` Christophe JAILLET

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=87zf2gqrsv.fsf@pengutronix.de \
    --to=s.trumtrar@pengutronix.de \
    --cc=jacek.anaszewski@gmail.com \
    --cc=lee@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-leds@vger.kernel.org \
    --cc=pavel@kernel.org \
    --cc=trannamatk@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.