[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <e2558820-f36f-406d-8f83-95c7188c0ce3@beagleboard.org>
Date: Sat, 31 Aug 2024 23:41:35 +0530
From: Ayush Singh <ayush@...gleboard.org>
To: Michael Walle <mwalle@...nel.org>, Mark Brown <broonie@...nel.org>,
Vaishnav M A <vaishnav@...gleboard.org>, Rob Herring <robh@...nel.org>,
Krzysztof Kozlowski <krzk+dt@...nel.org>, Conor Dooley
<conor+dt@...nel.org>, Derek Kiernan <derek.kiernan@....com>,
Dragan Cvetic <dragan.cvetic@....com>, Arnd Bergmann <arnd@...db.de>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>, Nishanth Menon <nm@...com>,
Vignesh Raghavendra <vigneshr@...com>, Tero Kristo <kristo@...nel.org>,
Andrew Lunn <andrew@...n.ch>, jkridner@...gleboard.org,
robertcnelson@...gleboard.org
Cc: linux-spi@...r.kernel.org, linux-kernel@...r.kernel.org,
devicetree@...r.kernel.org, linux-arm-kernel@...ts.infradead.org
Subject: Re: [PATCH v5 1/7] dt-bindings: connector: Add mikrobus-connector
>> But here you can have subnodes, no? These could then be just
>> enumerated as usual.
>>
>> &mikrobus_board {
>> mikrobus_gpio: gpio {
>> gpio-controller;
>> #gpio-cells = <1>;
>> };
>>
>> spi {
>> cs-gpios = <&mikrobus_gpio 1>;
>>
>> spi@0 {
>> compatible = "mydevice";
>> reg = <0>;
>> };
>> };
>> };
>>
Hi, I am now working on an approach for mikroBUS based on the apprach
described here: [1]
I am thinking of the gpio-controller approach you seem to have used
here. So I wanted to inquire if there already exists a gpio-controller
driver that can create a proxy controller that forwards stuff to the
underlying actual controller. So something like the following:
&mikrobus_gpio: gpio {
gpio-controller;
#gpio-cells = <2>;
gpios = <&gpio1 0>, <&gpi2 1>;
};
spi {
cs-gpios = <&mikrobus_gpio 1 GPIO_ACTIVE_HIGH>;
};
There does exist gpio0-virtio, but that seems to be for vm context.
[1]:
https://lore.kernel.org/linux-arm-kernel/20240702164403.29067-1-afd@ti.com/
Ayush Singh
Powered by blists - more mailing lists