linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] arm64: dts: ti: k3-j721s2-mcu-wakeup: Fix the interrupt-parent for wkup_gpioX instances
@ 2022-02-03 13:26 Aswath Govindraju
  2022-02-17 15:41 ` Kishon Vijay Abraham I
  2022-02-22 19:31 ` Nishanth Menon
  0 siblings, 2 replies; 3+ messages in thread
From: Aswath Govindraju @ 2022-02-03 13:26 UTC (permalink / raw)
  Cc: Keerthy, Aswath Govindraju, Nishanth Menon, Vignesh Raghavendra,
	Tero Kristo, Rob Herring, Kishon Vijay Abraham I,
	linux-arm-kernel, devicetree, linux-kernel

From: Keerthy <j-keerthy@ti.com>

The interrupt-parent for wkup_gpioX instances are wrongly assigned as
main_gpio_intr instead of wkup_gpio_intr. Fix it.

Fixes: b8545f9d3a54 ("arm64: dts: ti: Add initial support for J721S2 SoC")
Signed-off-by: Keerthy <j-keerthy@ti.com>
Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>
---
 arch/arm64/boot/dts/ti/k3-j721s2-mcu-wakeup.dtsi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm64/boot/dts/ti/k3-j721s2-mcu-wakeup.dtsi b/arch/arm64/boot/dts/ti/k3-j721s2-mcu-wakeup.dtsi
index 7521963719ff..6c5c02edb375 100644
--- a/arch/arm64/boot/dts/ti/k3-j721s2-mcu-wakeup.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-j721s2-mcu-wakeup.dtsi
@@ -108,7 +108,7 @@
 		reg = <0x00 0x42110000 0x00 0x100>;
 		gpio-controller;
 		#gpio-cells = <2>;
-		interrupt-parent = <&main_gpio_intr>;
+		interrupt-parent = <&wkup_gpio_intr>;
 		interrupts = <103>, <104>, <105>, <106>, <107>, <108>;
 		interrupt-controller;
 		#interrupt-cells = <2>;
@@ -124,7 +124,7 @@
 		reg = <0x00 0x42100000 0x00 0x100>;
 		gpio-controller;
 		#gpio-cells = <2>;
-		interrupt-parent = <&main_gpio_intr>;
+		interrupt-parent = <&wkup_gpio_intr>;
 		interrupts = <112>, <113>, <114>, <115>, <116>, <117>;
 		interrupt-controller;
 		#interrupt-cells = <2>;
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] arm64: dts: ti: k3-j721s2-mcu-wakeup: Fix the interrupt-parent for wkup_gpioX instances
  2022-02-03 13:26 [PATCH] arm64: dts: ti: k3-j721s2-mcu-wakeup: Fix the interrupt-parent for wkup_gpioX instances Aswath Govindraju
@ 2022-02-17 15:41 ` Kishon Vijay Abraham I
  2022-02-22 19:31 ` Nishanth Menon
  1 sibling, 0 replies; 3+ messages in thread
From: Kishon Vijay Abraham I @ 2022-02-17 15:41 UTC (permalink / raw)
  To: Aswath Govindraju
  Cc: Keerthy, Nishanth Menon, Vignesh Raghavendra, Tero Kristo,
	Rob Herring, linux-arm-kernel, devicetree, linux-kernel



On 03/02/22 6:56 pm, Aswath Govindraju wrote:
> From: Keerthy <j-keerthy@ti.com>
> 
> The interrupt-parent for wkup_gpioX instances are wrongly assigned as
> main_gpio_intr instead of wkup_gpio_intr. Fix it.
> 
> Fixes: b8545f9d3a54 ("arm64: dts: ti: Add initial support for J721S2 SoC")
> Signed-off-by: Keerthy <j-keerthy@ti.com>
> Signed-off-by: Aswath Govindraju <a-govindraju@ti.com>

Reviewed-by: Kishon Vijay Abraham I <kishon@ti.com>
> ---
>  arch/arm64/boot/dts/ti/k3-j721s2-mcu-wakeup.dtsi | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/arm64/boot/dts/ti/k3-j721s2-mcu-wakeup.dtsi b/arch/arm64/boot/dts/ti/k3-j721s2-mcu-wakeup.dtsi
> index 7521963719ff..6c5c02edb375 100644
> --- a/arch/arm64/boot/dts/ti/k3-j721s2-mcu-wakeup.dtsi
> +++ b/arch/arm64/boot/dts/ti/k3-j721s2-mcu-wakeup.dtsi
> @@ -108,7 +108,7 @@
>  		reg = <0x00 0x42110000 0x00 0x100>;
>  		gpio-controller;
>  		#gpio-cells = <2>;
> -		interrupt-parent = <&main_gpio_intr>;
> +		interrupt-parent = <&wkup_gpio_intr>;
>  		interrupts = <103>, <104>, <105>, <106>, <107>, <108>;
>  		interrupt-controller;
>  		#interrupt-cells = <2>;
> @@ -124,7 +124,7 @@
>  		reg = <0x00 0x42100000 0x00 0x100>;
>  		gpio-controller;
>  		#gpio-cells = <2>;
> -		interrupt-parent = <&main_gpio_intr>;
> +		interrupt-parent = <&wkup_gpio_intr>;
>  		interrupts = <112>, <113>, <114>, <115>, <116>, <117>;
>  		interrupt-controller;
>  		#interrupt-cells = <2>;
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] arm64: dts: ti: k3-j721s2-mcu-wakeup: Fix the interrupt-parent for wkup_gpioX instances
  2022-02-03 13:26 [PATCH] arm64: dts: ti: k3-j721s2-mcu-wakeup: Fix the interrupt-parent for wkup_gpioX instances Aswath Govindraju
  2022-02-17 15:41 ` Kishon Vijay Abraham I
@ 2022-02-22 19:31 ` Nishanth Menon
  1 sibling, 0 replies; 3+ messages in thread
From: Nishanth Menon @ 2022-02-22 19:31 UTC (permalink / raw)
  To: Aswath Govindraju
  Cc: Nishanth Menon, Tero Kristo, Rob Herring, linux-kernel,
	Kishon Vijay Abraham I, linux-arm-kernel, devicetree,
	Vignesh Raghavendra, Keerthy

Hi Aswath Govindraju,

On Thu, 3 Feb 2022 18:56:47 +0530, Aswath Govindraju wrote:
> From: Keerthy <j-keerthy@ti.com>
> 
> The interrupt-parent for wkup_gpioX instances are wrongly assigned as
> main_gpio_intr instead of wkup_gpio_intr. Fix it.
> 
> 

I have applied the following to branch ti-k3-dts-next on [1].
Thank you!

[1/1] arm64: dts: ti: k3-j721s2-mcu-wakeup: Fix the interrupt-parent for wkup_gpioX instances
      commit: 223d9ac45efb9311e7b2b0494c3ed25c701c6a5d

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent up the chain during
the next merge window (or sooner if it is a relevant bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

[1] git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
-- 
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3  1A34 DDB5 849D 1736 249D


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-02-22 19:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-03 13:26 [PATCH] arm64: dts: ti: k3-j721s2-mcu-wakeup: Fix the interrupt-parent for wkup_gpioX instances Aswath Govindraju
2022-02-17 15:41 ` Kishon Vijay Abraham I
2022-02-22 19:31 ` Nishanth Menon

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).