public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
From: Krzysztof Kozlowski <krzk@kernel.org>
To: "Miclaus, Antoniu" <Antoniu.Miclaus@analog.com>
Cc: Peter Rosin <peda@axentia.se>, Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Srinivas Kandagatla <srini@kernel.org>,
	Johan Hovold <johan+linaro@kernel.org>,
	Bartosz Golaszewski <bartosz.golaszewski@linaro.org>,
	Linus Walleij <linus.walleij@linaro.org>,
	David Lechner <dlechner@baylibre.com>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v3 4/4] mux: gpio-mux: add adi,adg2404 support
Date: Fri, 16 Jan 2026 11:42:27 +0100	[thread overview]
Message-ID: <eb7acb38-8993-4203-a13d-7e5be4b9c6ec@kernel.org> (raw)
In-Reply-To: <CY4PR03MB339943974F603BCB61ECDE609B8DA@CY4PR03MB3399.namprd03.prod.outlook.com>

On 16/01/2026 10:48, Miclaus, Antoniu wrote:
>> -----Original Message-----
>> From: Krzysztof Kozlowski <krzk@kernel.org>
>> Sent: Friday, January 16, 2026 10:33 AM
>> To: Miclaus, Antoniu <Antoniu.Miclaus@analog.com>
>> Cc: Peter Rosin <peda@axentia.se>; Rob Herring <robh@kernel.org>; Krzysztof
>> Kozlowski <krzk+dt@kernel.org>; Conor Dooley <conor+dt@kernel.org>;
>> Srinivas Kandagatla <srini@kernel.org>; Johan Hovold
>> <johan+linaro@kernel.org>; Bartosz Golaszewski
>> <bartosz.golaszewski@linaro.org>; Linus Walleij <linus.walleij@linaro.org>;
>> David Lechner <dlechner@baylibre.com>; devicetree@vger.kernel.org; linux-
>> kernel@vger.kernel.org
>> Subject: Re: [PATCH v3 4/4] mux: gpio-mux: add adi,adg2404 support
>>
>> [External]
>>
>> On Thu, Jan 15, 2026 at 02:18:22PM +0200, Antoniu Miclaus wrote:
>>> Add adi,adg2404 to the compatible list. The ADG2404 is a 4:1 analog
>>> multiplexer that benefits from the enable GPIO support to prevent
>>> glitches during channel transitions.
>>>
>>> Signed-off-by: Antoniu Miclaus <antoniu.miclaus@analog.com>
>>> ---
>>> changes in v3:
>>>  * integrate with gpio-mux driver instead of standalone adg2404 driver
>>> ---
>>>  drivers/mux/gpio.c | 1 +
>>>  1 file changed, 1 insertion(+)
>>>
>>> diff --git a/drivers/mux/gpio.c b/drivers/mux/gpio.c
>>> index 93487483e81f..bd8f0c617dd6 100644
>>> --- a/drivers/mux/gpio.c
>>> +++ b/drivers/mux/gpio.c
>>> @@ -59,6 +59,7 @@ static const struct mux_control_ops mux_gpio_ops = {
>>>
>>>  static const struct of_device_id mux_gpio_dt_ids[] = {
>>>  	{ .compatible = "gpio-mux", },
>>> +	{ .compatible = "adi,adg2404", },
>>
>> Why do you need the compatible? I do not understand this patchset. You
>> are saying you integrate it into gpio-mux, but what you did is to
>> duplicate the compatible and binding.
>>
>> Half of your patches are not necessary, you only needed to add
>> enable-gpios to gpio-mux with argument that ADG2404 can use such binding
>> (in complete/full/proper way).
> 
> I am a bit confused on how can I emphasize to the users explicitly:
> "Hey, you can use adg2404 directly with gpio-mux"
> The same issue I had with adg1712 series which can be used straight away with gpio-mux.
> If there are people/customers looking for adg2404/adg1712 there should be a hint somewhere.


This is a bit different problem. Why would we care about message to
customers? Following such approach this driver and dozen of others might
have soon 1000 entries for every possible device which is supported by it.

IMO the best way is to submit good DTS using this with a comment that it
IS ADG-foobar which also has other benefits - helps reviewing of
bindings and driver. I would accept also a short/concise list of device
names/models in the binding description.

Best regards,
Krzysztof

  reply	other threads:[~2026-01-16 10:42 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-15 12:18 [PATCH v3 0/4] mux: gpio-mux: add enable GPIO support and ADG2404 Antoniu Miclaus
2026-01-15 12:18 ` [PATCH v3 1/4] dt-bindings: mux: gpio-mux: add enable-gpios support Antoniu Miclaus
2026-01-16  8:30   ` Krzysztof Kozlowski
2026-01-15 12:18 ` [PATCH v3 2/4] mux: gpio-mux: add support for enable GPIO Antoniu Miclaus
2026-01-15 12:18 ` [PATCH v3 3/4] dt-bindings: mux: gpio-mux: add adi,adg2404 support Antoniu Miclaus
2026-01-16  8:29   ` Krzysztof Kozlowski
2026-01-16  8:34     ` Krzysztof Kozlowski
2026-01-15 12:18 ` [PATCH v3 4/4] " Antoniu Miclaus
2026-01-16  8:32   ` Krzysztof Kozlowski
2026-01-16  8:34     ` Krzysztof Kozlowski
2026-01-16  9:48     ` Miclaus, Antoniu
2026-01-16 10:42       ` Krzysztof Kozlowski [this message]
2026-01-16  8:37 ` [PATCH v3 0/4] mux: gpio-mux: add enable GPIO support and ADG2404 Krzysztof Kozlowski
2026-01-16  9:00   ` Johan Hovold
2026-01-16  9:39     ` Miclaus, Antoniu
2026-01-16 10:31       ` Krzysztof Kozlowski
2026-01-16 15:26         ` Miclaus, Antoniu
2026-01-16 16:06           ` Krzysztof Kozlowski
2026-01-16 16:17             ` Miclaus, Antoniu

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=eb7acb38-8993-4203-a13d-7e5be4b9c6ec@kernel.org \
    --to=krzk@kernel.org \
    --cc=Antoniu.Miclaus@analog.com \
    --cc=bartosz.golaszewski@linaro.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dlechner@baylibre.com \
    --cc=johan+linaro@kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=peda@axentia.se \
    --cc=robh@kernel.org \
    --cc=srini@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