From: "Nuno Sá" <noname.nuno@gmail.com>
To: Antoniu Miclaus <antoniu.miclaus@analog.com>,
Linus Walleij <linus.walleij@linaro.org>,
Bartosz Golaszewski <brgl@bgdev.pl>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
linux-gpio@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 1/2] dt-bindings: gpio: adg1712: add adg1712 support
Date: Wed, 12 Nov 2025 09:13:56 +0000 [thread overview]
Message-ID: <96a30c1236cbca467b4f152e54b46ea290cb134e.camel@gmail.com> (raw)
In-Reply-To: <20251108174055.3665-2-antoniu.miclaus@analog.com>
On Sat, 2025-11-08 at 17:40 +0000, Antoniu Miclaus wrote:
> Add devicetree bindings for adg1712 SPST quad switch.
>
> Signed-off-by: Antoniu Miclaus <antoniu.miclaus@analog.com>
> ---
> Changes in v2:
> - Replace individual GPIO properties (switch1-gpios, switch2-gpios, etc.)
> with a single GPIO array property (switch-gpios)
> - Update required properties list accordingly
> - Simplify device tree example to use array notation
> ---
Antoniu,
See the discussion in [1] and reply there. Linus gave a suggestion on how
this could be implemented. See if it fits the usecases this chip is being
used and if not we need to discuss alternatives or if we can allow
gpiochip .set()/.get()
[1]: https://lore.kernel.org/linux-gpio/20251031160710.13343-1-antoniu.miclaus@analog.com/T/#m3f4397526ee7cb2a737a30673934578b3b290c1c
- Nuno Sá
> .../devicetree/bindings/gpio/adi,adg1712.yaml | 65 +++++++++++++++++++
> 1 file changed, 65 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/gpio/adi,adg1712.yaml
>
> diff --git a/Documentation/devicetree/bindings/gpio/adi,adg1712.yaml
> b/Documentation/devicetree/bindings/gpio/adi,adg1712.yaml
> new file mode 100644
> index 000000000000..d6000a788d6e
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/gpio/adi,adg1712.yaml
> @@ -0,0 +1,65 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/gpio/adi,adg1712.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Analog Devices ADG1712 quad SPST switch GPIO controller
> +
> +maintainers:
> + - Antoniu Miclaus <antoniu.miclaus@analog.com>
> +
> +description: |
> + Bindings for Analog Devices ADG1712 quad single-pole, single-throw (SPST)
> + switch controlled by GPIOs. The device features four independent switches,
> + each controlled by a dedicated GPIO input pin.
> +
> + Each GPIO line exposed by this controller corresponds to one of the four
> + switches (SW1-SW4) on the ADG1712. Setting a GPIO line high enables the
> + corresponding switch, while setting it low disables the switch.
> +
> +properties:
> + compatible:
> + const: adi,adg1712
> +
> + switch-gpios:
> + description: |
> + Array of GPIOs connected to the IN1-IN4 control pins.
> + Index 0 corresponds to IN1 (controls SW1),
> + Index 1 corresponds to IN2 (controls SW2),
> + Index 2 corresponds to IN3 (controls SW3),
> + Index 3 corresponds to IN4 (controls SW4).
> + minItems: 4
> + maxItems: 4
> +
> + gpio-controller: true
> +
> + "#gpio-cells":
> + const: 2
> + description: |
> + The first cell is the GPIO number (0-3 corresponding to SW1-SW4).
> + The second cell specifies GPIO flags.
> +
> +required:
> + - compatible
> + - switch-gpios
> + - gpio-controller
> + - "#gpio-cells"
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/gpio/gpio.h>
> +
> + adg1712: gpio-expander {
> + compatible = "adi,adg1712";
> + gpio-controller;
> + #gpio-cells = <2>;
> +
> + switch-gpios = <&gpio 10 GPIO_ACTIVE_HIGH>,
> + <&gpio 11 GPIO_ACTIVE_HIGH>,
> + <&gpio 12 GPIO_ACTIVE_HIGH>,
> + <&gpio 13 GPIO_ACTIVE_HIGH>;
> + };
> +...
next prev parent reply other threads:[~2025-11-12 9:13 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-08 17:40 [PATCH v2 0/2] gpio: Add support for ADG1712 quad SPST switch Antoniu Miclaus
2025-11-08 17:40 ` [PATCH v2 1/2] dt-bindings: gpio: adg1712: add adg1712 support Antoniu Miclaus
2025-11-10 19:16 ` Conor Dooley
2025-11-11 10:27 ` Linus Walleij
2025-11-12 9:13 ` Nuno Sá [this message]
2025-11-08 17:40 ` [PATCH v2 2/2] gpio: adg1712: add driver support Antoniu Miclaus
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=96a30c1236cbca467b4f152e54b46ea290cb134e.camel@gmail.com \
--to=noname.nuno@gmail.com \
--cc=antoniu.miclaus@analog.com \
--cc=brgl@bgdev.pl \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=robh@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).