On Wed, Sep 22, 2021 at 11:29:21AM +0200, Bartosz Golaszewski wrote: > On Tue, Sep 7, 2021 at 9:32 AM Prathamesh Shete wrote: > > > > From: pshete > > > > Tegra19x supports 8 entries for GPIO controller. > > This change adds the required interrupt entires for all GPIO controllers. > > > > Signed-off-by: Prathamesh Shete > > --- > > arch/arm64/boot/dts/nvidia/tegra194.dtsi | 49 +++++++++++++++++++++++- > > 1 file changed, 47 insertions(+), 2 deletions(-) > > > > diff --git a/arch/arm64/boot/dts/nvidia/tegra194.dtsi b/arch/arm64/boot/dts/nvidia/tegra194.dtsi > > index b7d532841390..c681a79c44ec 100644 > > --- a/arch/arm64/boot/dts/nvidia/tegra194.dtsi > > +++ b/arch/arm64/boot/dts/nvidia/tegra194.dtsi > > @@ -34,11 +34,53 @@ > > reg = <0x2200000 0x10000>, > > <0x2210000 0x10000>; > > interrupts = , > > + , > > + , > > + , > > + , > > + , > > + , > > + , > > , > > + , > > + , > > + , > > + , > > + , > > + , > > + , > > , > > + , > > + , > > + , > > + , > > + , > > + , > > + , > > , > > + , > > + , > > + , > > + , > > + , > > + , > > + , > > , > > - ; > > + , > > + , > > + , > > + , > > + , > > + , > > + , > > + , > > + , > > + , > > + , > > + , > > + , > > + , > > + ; > > #interrupt-cells = <2>; > > interrupt-controller; > > #gpio-cells = <2>; > > @@ -1273,7 +1315,10 @@ > > reg-names = "security", "gpio"; > > reg = <0xc2f0000 0x1000>, > > <0xc2f1000 0x1000>; > > - interrupts = ; > > + interrupts = , > > + , > > + , > > + ; > > gpio-controller; > > #gpio-cells = <2>; > > interrupt-controller; > > -- > > 2.17.1 > > > > Prathamesh: what are the changes between the three versions of this > patch I have in my inbox? Please always include a brief list of > updates when resending. > > Thierry: does this make sense to you? Hi Bartosz, the following patches from me that you applied earlier: [PATCH 1/2] gpio: tegra186: Force one interrupt per bank [PATCH 2/2] gpio: tegra186: Support multiple interrupts per bank are replacements for patch 1 in this series, so that should no longer be needed. Patch 2 of this series (the DT change) I plan to pick up into the Tegra tree for v5.16. Thierry