All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] irqchip/uniphier-aidet: Introduce UniPhier NX1 SoC support
@ 2022-05-20  5:17 ` Kunihiko Hayashi
  0 siblings, 0 replies; 10+ 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


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH 0/2] irqchip/uniphier-aidet: Introduce UniPhier NX1 SoC support
@ 2022-05-20  5:17 ` Kunihiko Hayashi
  0 siblings, 0 replies; 10+ 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] 10+ messages in thread

* [PATCH 1/2] dt-bindings: interrupt-controller/uniphier-aidet: Add bindings for NX1 SoC
  2022-05-20  5:17 ` Kunihiko Hayashi
@ 2022-05-20  5:17   ` Kunihiko Hayashi
  -1 siblings, 0 replies; 10+ 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


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH 1/2] dt-bindings: interrupt-controller/uniphier-aidet: Add bindings for NX1 SoC
@ 2022-05-20  5:17   ` Kunihiko Hayashi
  0 siblings, 0 replies; 10+ 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] 10+ messages in thread

* [PATCH 2/2] irqchip/uniphier-aidet: Add compatible string for NX1 SoC
  2022-05-20  5:17 ` Kunihiko Hayashi
@ 2022-05-20  5:17   ` Kunihiko Hayashi
  -1 siblings, 0 replies; 10+ 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


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH 2/2] irqchip/uniphier-aidet: Add compatible string for NX1 SoC
@ 2022-05-20  5:17   ` Kunihiko Hayashi
  0 siblings, 0 replies; 10+ 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] 10+ messages in thread

* Re: [PATCH 1/2] dt-bindings: interrupt-controller/uniphier-aidet: Add bindings for NX1 SoC
  2022-05-20  5:17   ` Kunihiko Hayashi
@ 2022-06-01 21:18     ` Rob Herring
  -1 siblings, 0 replies; 10+ 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>

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH 1/2] dt-bindings: interrupt-controller/uniphier-aidet: Add bindings for NX1 SoC
@ 2022-06-01 21:18     ` Rob Herring
  0 siblings, 0 replies; 10+ 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] 10+ messages in thread

* [irqchip: irq/irqchip-fixes] irqchip/uniphier-aidet: Add compatible string for NX1 SoC
  2022-05-20  5:17   ` Kunihiko Hayashi
  (?)
@ 2022-06-09 16:50   ` irqchip-bot for Kunihiko Hayashi
  -1 siblings, 0 replies; 10+ messages in thread
From: irqchip-bot for Kunihiko Hayashi @ 2022-06-09 16:50 UTC (permalink / raw)
  To: linux-kernel; +Cc: Kunihiko Hayashi, Marc Zyngier, tglx

The following commit has been merged into the irq/irqchip-fixes branch of irqchip:

Commit-ID:     e3f056a7aafabe4ac3ad4b7465ba821b44a7e639
Gitweb:        https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms/e3f056a7aafabe4ac3ad4b7465ba821b44a7e639
Author:        Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
AuthorDate:    Fri, 20 May 2022 14:17:02 +09:00
Committer:     Marc Zyngier <maz@kernel.org>
CommitterDate: Thu, 09 Jun 2022 17:41:57 +01:00

irqchip/uniphier-aidet: Add compatible string for NX1 SoC

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>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/1653023822-19229-3-git-send-email-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 89121b3..716b1bb 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 */ }
 };
 

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

* [irqchip: irq/irqchip-fixes] dt-bindings: interrupt-controller/uniphier-aidet: Add bindings for NX1 SoC
  2022-05-20  5:17   ` Kunihiko Hayashi
  (?)
  (?)
@ 2022-06-09 16:50   ` irqchip-bot for Kunihiko Hayashi
  -1 siblings, 0 replies; 10+ messages in thread
From: irqchip-bot for Kunihiko Hayashi @ 2022-06-09 16:50 UTC (permalink / raw)
  To: linux-kernel; +Cc: Kunihiko Hayashi, Rob Herring, Marc Zyngier, tglx

The following commit has been merged into the irq/irqchip-fixes branch of irqchip:

Commit-ID:     df089e6f07e3c94cb7a330dc74f5041db800009c
Gitweb:        https://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms/df089e6f07e3c94cb7a330dc74f5041db800009c
Author:        Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
AuthorDate:    Fri, 20 May 2022 14:17:01 +09:00
Committer:     Marc Zyngier <maz@kernel.org>
CommitterDate: Thu, 09 Jun 2022 17:41:57 +01:00

dt-bindings: interrupt-controller/uniphier-aidet: Add bindings for NX1 SoC

Update uniphier-aidet binding document for UniPhier NX1 SoC.

Signed-off-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/1653023822-19229-2-git-send-email-hayashi.kunihiko@socionext.com
---
 Documentation/devicetree/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 f89ebde..de7c5e5 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

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

end of thread, other threads:[~2022-06-09 16:50 UTC | newest]

Thread overview: 10+ 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 ` 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
2022-06-01 21:18   ` Rob Herring
2022-06-01 21:18     ` Rob Herring
2022-06-09 16:50   ` [irqchip: irq/irqchip-fixes] " irqchip-bot for Kunihiko Hayashi
2022-05-20  5:17 ` [PATCH 2/2] irqchip/uniphier-aidet: Add compatible string " Kunihiko Hayashi
2022-05-20  5:17   ` Kunihiko Hayashi
2022-06-09 16:50   ` [irqchip: irq/irqchip-fixes] " irqchip-bot for Kunihiko Hayashi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.