devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] irqchip/uniphier-aidet: Introduce UniPhier NX1 SoC support
@ 2022-05-20  5:17 Kunihiko Hayashi
  2022-05-20  5:17 ` [PATCH 1/2] dt-bindings: interrupt-controller/uniphier-aidet: Add bindings for NX1 SoC Kunihiko Hayashi
  2022-05-20  5:17 ` [PATCH 2/2] irqchip/uniphier-aidet: Add compatible string " Kunihiko Hayashi
  0 siblings, 2 replies; 4+ messages in thread
From: Kunihiko Hayashi @ 2022-05-20  5:17 UTC (permalink / raw)
  To: Thomas Gleixner, Marc Zyngier, Rob Herring, Krzysztof Kozlowski,
	Masami Hiramatsu
  Cc: devicetree, linux-arm-kernel, linux-kernel, Kunihiko Hayashi

This series includes patches to add basic support for new UniPhier NX1 SoC.
NX1 SoC also has the same kinds of controls as the other UniPhier SoCs.

Kunihiko Hayashi (2):
  dt-bindings: interrupt-controller/uniphier-aidet: Add bindings for NX1
    SoC
  irqchip/uniphier-aidet: Add compatible string for NX1 SoC

 .../bindings/interrupt-controller/socionext,uniphier-aidet.yaml  | 1 +
 drivers/irqchip/irq-uniphier-aidet.c                             | 1 +
 2 files changed, 2 insertions(+)

-- 
2.25.1


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

* [PATCH 1/2] dt-bindings: interrupt-controller/uniphier-aidet: Add bindings for NX1 SoC
  2022-05-20  5:17 [PATCH 0/2] irqchip/uniphier-aidet: Introduce UniPhier NX1 SoC support Kunihiko Hayashi
@ 2022-05-20  5:17 ` Kunihiko Hayashi
  2022-06-01 21:18   ` Rob Herring
  2022-05-20  5:17 ` [PATCH 2/2] irqchip/uniphier-aidet: Add compatible string " Kunihiko Hayashi
  1 sibling, 1 reply; 4+ messages in thread
From: Kunihiko Hayashi @ 2022-05-20  5:17 UTC (permalink / raw)
  To: Thomas Gleixner, Marc Zyngier, Rob Herring, Krzysztof Kozlowski,
	Masami Hiramatsu
  Cc: devicetree, linux-arm-kernel, linux-kernel, Kunihiko Hayashi

Update uniphier-aidet binding document for UniPhier NX1 SoC.

Signed-off-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
---
 .../bindings/interrupt-controller/socionext,uniphier-aidet.yaml  | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/interrupt-controller/socionext,uniphier-aidet.yaml b/Documentation/devicetree/bindings/interrupt-controller/socionext,uniphier-aidet.yaml
index f89ebde76dab..de7c5e59bae1 100644
--- a/Documentation/devicetree/bindings/interrupt-controller/socionext,uniphier-aidet.yaml
+++ b/Documentation/devicetree/bindings/interrupt-controller/socionext,uniphier-aidet.yaml
@@ -30,6 +30,7 @@ properties:
       - socionext,uniphier-ld11-aidet
       - socionext,uniphier-ld20-aidet
       - socionext,uniphier-pxs3-aidet
+      - socionext,uniphier-nx1-aidet
 
   reg:
     maxItems: 1
-- 
2.25.1


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

* [PATCH 2/2] irqchip/uniphier-aidet: Add compatible string for NX1 SoC
  2022-05-20  5:17 [PATCH 0/2] irqchip/uniphier-aidet: Introduce UniPhier NX1 SoC support Kunihiko Hayashi
  2022-05-20  5:17 ` [PATCH 1/2] dt-bindings: interrupt-controller/uniphier-aidet: Add bindings for NX1 SoC Kunihiko Hayashi
@ 2022-05-20  5:17 ` Kunihiko Hayashi
  1 sibling, 0 replies; 4+ messages in thread
From: Kunihiko Hayashi @ 2022-05-20  5:17 UTC (permalink / raw)
  To: Thomas Gleixner, Marc Zyngier, Rob Herring, Krzysztof Kozlowski,
	Masami Hiramatsu
  Cc: devicetree, linux-arm-kernel, linux-kernel, Kunihiko Hayashi

Add the compatible string to support UniPhier NX1 SoC, which has the same
kinds of controls as the other UniPhier SoCs.

Signed-off-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
---
 drivers/irqchip/irq-uniphier-aidet.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/irqchip/irq-uniphier-aidet.c b/drivers/irqchip/irq-uniphier-aidet.c
index 89121b39be26..716b1bb88bf2 100644
--- a/drivers/irqchip/irq-uniphier-aidet.c
+++ b/drivers/irqchip/irq-uniphier-aidet.c
@@ -237,6 +237,7 @@ static const struct of_device_id uniphier_aidet_match[] = {
 	{ .compatible = "socionext,uniphier-ld11-aidet" },
 	{ .compatible = "socionext,uniphier-ld20-aidet" },
 	{ .compatible = "socionext,uniphier-pxs3-aidet" },
+	{ .compatible = "socionext,uniphier-nx1-aidet" },
 	{ /* sentinel */ }
 };
 
-- 
2.25.1


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

* Re: [PATCH 1/2] dt-bindings: interrupt-controller/uniphier-aidet: Add bindings for NX1 SoC
  2022-05-20  5:17 ` [PATCH 1/2] dt-bindings: interrupt-controller/uniphier-aidet: Add bindings for NX1 SoC Kunihiko Hayashi
@ 2022-06-01 21:18   ` Rob Herring
  0 siblings, 0 replies; 4+ messages in thread
From: Rob Herring @ 2022-06-01 21:18 UTC (permalink / raw)
  To: Kunihiko Hayashi
  Cc: Rob Herring, Thomas Gleixner, devicetree, Marc Zyngier,
	Krzysztof Kozlowski, Masami Hiramatsu, linux-kernel,
	linux-arm-kernel

On Fri, 20 May 2022 14:17:01 +0900, Kunihiko Hayashi wrote:
> Update uniphier-aidet binding document for UniPhier NX1 SoC.
> 
> Signed-off-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
> ---
>  .../bindings/interrupt-controller/socionext,uniphier-aidet.yaml  | 1 +
>  1 file changed, 1 insertion(+)
> 

Acked-by: Rob Herring <robh@kernel.org>

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

end of thread, other threads:[~2022-06-01 21:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-20  5:17 [PATCH 0/2] irqchip/uniphier-aidet: Introduce UniPhier NX1 SoC support Kunihiko Hayashi
2022-05-20  5:17 ` [PATCH 1/2] dt-bindings: interrupt-controller/uniphier-aidet: Add bindings for NX1 SoC Kunihiko Hayashi
2022-06-01 21:18   ` Rob Herring
2022-05-20  5:17 ` [PATCH 2/2] irqchip/uniphier-aidet: Add compatible string " Kunihiko Hayashi

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