From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rob Herring Subject: Re: [PATCH 2/2] gpio: Support cascaded GPIO chip lookup for OF Date: Tue, 7 Jun 2016 16:00:53 -0500 Message-ID: References: <1464985616-11821-1-git-send-email-pantelis.antoniou@konsulko.com> <1464985616-11821-3-git-send-email-pantelis.antoniou@konsulko.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: In-Reply-To: <1464985616-11821-3-git-send-email-pantelis.antoniou@konsulko.com> Sender: linux-kernel-owner@vger.kernel.org To: Pantelis Antoniou Cc: Linus Walleij , Alexandre Courbot , Frank Rowand , Matt Porter , Koen Kooi , Geert Uytterhoeven , Guenter Roeck , Marek Vasut , "devicetree@vger.kernel.org" , "linux-kernel@vger.kernel.org" , "linux-gpio@vger.kernel.org" , Pantelis Antoniou , Mark Rutland List-Id: devicetree@vger.kernel.org +Mark R On Fri, Jun 3, 2016 at 3:26 PM, Pantelis Antoniou wrote: > In certain cases it makes sense to create cascaded GPIO which > are not real GPIOs, merely point to the real backend GPIO chip. In what cases? Make it clear what this is for. Connectors of course, but are there any other use cases you have in mind. > In order to support this, cascaded of_xlate lookup need to be > performed. > > For example let's take a connector that we want to abstract > having two GPIO pins from different GPIO controllers, connector > pin #0 connected to gpioA controller with offset 10 and gpioB > with 4. A connector's GPIO number may or may not be related to connector pins. > In pseudo DT form this is analogous to: > > gpioA: gpioa@80000 { > compatible = "foocorp,gpio"; > ... > }; > > gpioB: gpiob@80800 { > compatible = "foocorp,gpio"; > .... > }; > > gpioC: controller_gpio { > compatible = "cascaded-gpio"; This compatible is kind of meaningless. I'd expect this to be a connector compatible. > gpios = <&gpioA 10>, <&gpioB 5>; As we discussed at ELC, I think this should be modeled after interrupt-map property like this: gpio-map = <0 0 &soc_gpio 10 0>, <1 0 &soc_gpio 5 0>; gpio-map-mask = <0xff 0>; This is more flexible, a known pattern, and allows remapping of flag cells. Also, we will likely have interrupt capable GPIOs, so they are going to need interrupt-map anyway. Rob