[PATCH 1/1] gpio: aggregator: add gpio-aggregator DT compatible
From: James Hilliard
Date: Tue Feb 10 2026 - 23:43:04 EST
Add an OF match entry for gpio-aggregator so the forwarder can be
instantiated without using the delay-specific compatible.
Add a minimal DT schema for gpio-aggregator documenting compatible.
Signed-off-by: James Hilliard <james.hilliard1@xxxxxxxxx>
---
.../bindings/gpio/gpio-aggregator.yaml | 57 +++++++++++++++++++
drivers/gpio/gpio-aggregator.c | 3 +
2 files changed, 60 insertions(+)
create mode 100644 Documentation/devicetree/bindings/gpio/gpio-aggregator.yaml
diff --git a/Documentation/devicetree/bindings/gpio/gpio-aggregator.yaml b/Documentation/devicetree/bindings/gpio/gpio-aggregator.yaml
new file mode 100644
index 000000000000..ec1d08f3db2c
--- /dev/null
+++ b/Documentation/devicetree/bindings/gpio/gpio-aggregator.yaml
@@ -0,0 +1,57 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/gpio/gpio-aggregator.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: GPIO aggregator controller
+
+maintainers:
+ - Alexander Stein <linux@xxxxxxxxxxxxxxx>
+
+description: |
+ This binding describes a GPIO forwarder that exposes selected GPIO
+ lines as a virtual GPIO controller.
+
+properties:
+ compatible:
+ const: gpio-aggregator
+
+ "#gpio-cells":
+ description: Specifies the line offset and GPIO flags.
+ const: 2
+
+ gpios:
+ description: Array of GPIOs to aggregate
+ minItems: 1
+ maxItems: 32
+
+ gpio-controller: true
+
+ gpio-line-names:
+ minItems: 1
+ maxItems: 32
+
+required:
+ - compatible
+ - "#gpio-cells"
+ - gpio-controller
+ - gpios
+
+additionalProperties: false
+
+examples:
+ - |
+ #include <dt-bindings/gpio/gpio.h>
+
+ gpio_agg: gpio-aggregator {
+ compatible = "gpio-aggregator";
+ #gpio-cells = <2>;
+ gpio-controller;
+ gpios = <&gpio0 3 GPIO_ACTIVE_LOW>,
+ <&gpio3 1 GPIO_ACTIVE_HIGH>;
+ };
+
+ consumer {
+ enable-gpios = <&gpio_agg 0 GPIO_ACTIVE_LOW>;
+ };
diff --git a/drivers/gpio/gpio-aggregator.c b/drivers/gpio/gpio-aggregator.c
index 416f265d09d0..a09752fc5fe2 100644
--- a/drivers/gpio/gpio-aggregator.c
+++ b/drivers/gpio/gpio-aggregator.c
@@ -1635,6 +1635,9 @@ static int gpio_aggregator_probe(struct platform_device *pdev)
}
static const struct of_device_id gpio_aggregator_dt_ids[] = {
+ {
+ .compatible = "gpio-aggregator",
+ },
{
.compatible = "gpio-delay",
.data = (void *)FWD_FEATURE_DELAY,
--
2.43.0