* [PATCH 2/6] arm: dts: spear600: Fix clcd interrupt
[not found] <20221019133208.319626-1-kory.maincent@bootlin.com>
@ 2022-10-19 13:32 ` Köry Maincent
2022-10-20 4:35 ` Viresh Kumar
2022-10-19 13:32 ` [PATCH 5/6] arm: dts: spear600: Add ssp controller nodes Köry Maincent
1 sibling, 1 reply; 4+ messages in thread
From: Köry Maincent @ 2022-10-19 13:32 UTC (permalink / raw)
To: Rajeev Kumar, Bhavna Yadav, Viresh Kumar, Deepak Sikri,
Vijay Kumar Mishra, linux-arm-kernel, devicetree, linux-kernel
Cc: thomas.petazzoni, Kory Maincent, Viresh Kumar, Shiraz Hashim, soc,
Rob Herring, Krzysztof Kozlowski, Vipin Kumar, Vipul Kumar Samar
From: Kory Maincent <kory.maincent@bootlin.com>
Interrupt 12 of the Interrupt controller belongs to the SMI controller,
the right one for the display controller is the interrupt 13.
Fixes: 8113ba917dfa ("ARM: SPEAr: DT: Update device nodes")
Signed-off-by: Kory Maincent <kory.maincent@bootlin.com>
---
arch/arm/boot/dts/spear600.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/boot/dts/spear600.dtsi b/arch/arm/boot/dts/spear600.dtsi
index fd41243a0b2c..9d5a04a46b14 100644
--- a/arch/arm/boot/dts/spear600.dtsi
+++ b/arch/arm/boot/dts/spear600.dtsi
@@ -47,7 +47,7 @@ clcd: clcd@fc200000 {
compatible = "arm,pl110", "arm,primecell";
reg = <0xfc200000 0x1000>;
interrupt-parent = <&vic1>;
- interrupts = <12>;
+ interrupts = <13>;
status = "disabled";
};
--
2.25.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 5/6] arm: dts: spear600: Add ssp controller nodes
[not found] <20221019133208.319626-1-kory.maincent@bootlin.com>
2022-10-19 13:32 ` [PATCH 2/6] arm: dts: spear600: Fix clcd interrupt Köry Maincent
@ 2022-10-19 13:32 ` Köry Maincent
2022-10-20 4:36 ` Viresh Kumar
1 sibling, 1 reply; 4+ messages in thread
From: Köry Maincent @ 2022-10-19 13:32 UTC (permalink / raw)
To: linux-arm-kernel, devicetree, linux-kernel
Cc: thomas.petazzoni, Kory Maincent, Viresh Kumar, Shiraz Hashim, soc,
Rob Herring, Krzysztof Kozlowski
From: Kory Maincent <kory.maincent@bootlin.com>
The SPEAr600 has three Synchronous serial port to enables synchronous
serial communication with slave or master peripherals (SPI). Lets add these
nodes to be able to use them.
Signed-off-by: Kory Maincent <kory.maincent@bootlin.com>
---
arch/arm/boot/dts/spear600.dtsi | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/arch/arm/boot/dts/spear600.dtsi b/arch/arm/boot/dts/spear600.dtsi
index 9d5a04a46b14..6b67c0ceaed9 100644
--- a/arch/arm/boot/dts/spear600.dtsi
+++ b/arch/arm/boot/dts/spear600.dtsi
@@ -207,6 +207,36 @@ adc: adc@d820b000 {
interrupts = <6>;
status = "disabled";
};
+
+ ssp1: spi@d0100000 {
+ compatible = "arm,pl022", "arm,primecell";
+ reg = <0xd0100000 0x1000>;
+ #address-cells = <1>;
+ #size-cells = <0>;
+ interrupt-parent = <&vic0>;
+ interrupts = <26>;
+ status = "disabled";
+ };
+
+ ssp2: spi@d0180000 {
+ compatible = "arm,pl022", "arm,primecell";
+ reg = <0xd0180000 0x1000>;
+ #address-cells = <1>;
+ #size-cells = <0>;
+ interrupt-parent = <&vic0>;
+ interrupts = <27>;
+ status = "disabled";
+ };
+
+ ssp3: spi@d8180000 {
+ compatible = "arm,pl022", "arm,primecell";
+ reg = <0xd8180000 0x1000>;
+ #address-cells = <1>;
+ #size-cells = <0>;
+ interrupt-parent = <&vic1>;
+ interrupts = <5>;
+ status = "disabled";
+ };
};
};
};
--
2.25.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 2/6] arm: dts: spear600: Fix clcd interrupt
2022-10-19 13:32 ` [PATCH 2/6] arm: dts: spear600: Fix clcd interrupt Köry Maincent
@ 2022-10-20 4:35 ` Viresh Kumar
0 siblings, 0 replies; 4+ messages in thread
From: Viresh Kumar @ 2022-10-20 4:35 UTC (permalink / raw)
To: Köry Maincent
Cc: Rajeev Kumar, Bhavna Yadav, Deepak Sikri, Vijay Kumar Mishra,
linux-arm-kernel, devicetree, linux-kernel, thomas.petazzoni,
Viresh Kumar, Shiraz Hashim, soc, Rob Herring,
Krzysztof Kozlowski, Vipin Kumar, Vipul Kumar Samar
On 19-10-22, 15:32, Köry Maincent wrote:
> From: Kory Maincent <kory.maincent@bootlin.com>
>
> Interrupt 12 of the Interrupt controller belongs to the SMI controller,
> the right one for the display controller is the interrupt 13.
>
> Fixes: 8113ba917dfa ("ARM: SPEAr: DT: Update device nodes")
> Signed-off-by: Kory Maincent <kory.maincent@bootlin.com>
> ---
> arch/arm/boot/dts/spear600.dtsi | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/boot/dts/spear600.dtsi b/arch/arm/boot/dts/spear600.dtsi
> index fd41243a0b2c..9d5a04a46b14 100644
> --- a/arch/arm/boot/dts/spear600.dtsi
> +++ b/arch/arm/boot/dts/spear600.dtsi
> @@ -47,7 +47,7 @@ clcd: clcd@fc200000 {
> compatible = "arm,pl110", "arm,primecell";
> reg = <0xfc200000 0x1000>;
> interrupt-parent = <&vic1>;
> - interrupts = <12>;
> + interrupts = <13>;
> status = "disabled";
> };
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
--
viresh
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 5/6] arm: dts: spear600: Add ssp controller nodes
2022-10-19 13:32 ` [PATCH 5/6] arm: dts: spear600: Add ssp controller nodes Köry Maincent
@ 2022-10-20 4:36 ` Viresh Kumar
0 siblings, 0 replies; 4+ messages in thread
From: Viresh Kumar @ 2022-10-20 4:36 UTC (permalink / raw)
To: Köry Maincent
Cc: linux-arm-kernel, devicetree, linux-kernel, thomas.petazzoni,
Viresh Kumar, Shiraz Hashim, soc, Rob Herring,
Krzysztof Kozlowski
On 19-10-22, 15:32, Köry Maincent wrote:
> From: Kory Maincent <kory.maincent@bootlin.com>
>
> The SPEAr600 has three Synchronous serial port to enables synchronous
> serial communication with slave or master peripherals (SPI). Lets add these
> nodes to be able to use them.
>
> Signed-off-by: Kory Maincent <kory.maincent@bootlin.com>
> ---
> arch/arm/boot/dts/spear600.dtsi | 30 ++++++++++++++++++++++++++++++
> 1 file changed, 30 insertions(+)
>
> diff --git a/arch/arm/boot/dts/spear600.dtsi b/arch/arm/boot/dts/spear600.dtsi
> index 9d5a04a46b14..6b67c0ceaed9 100644
> --- a/arch/arm/boot/dts/spear600.dtsi
> +++ b/arch/arm/boot/dts/spear600.dtsi
> @@ -207,6 +207,36 @@ adc: adc@d820b000 {
> interrupts = <6>;
> status = "disabled";
> };
> +
> + ssp1: spi@d0100000 {
> + compatible = "arm,pl022", "arm,primecell";
> + reg = <0xd0100000 0x1000>;
> + #address-cells = <1>;
> + #size-cells = <0>;
> + interrupt-parent = <&vic0>;
> + interrupts = <26>;
> + status = "disabled";
> + };
> +
> + ssp2: spi@d0180000 {
> + compatible = "arm,pl022", "arm,primecell";
> + reg = <0xd0180000 0x1000>;
> + #address-cells = <1>;
> + #size-cells = <0>;
> + interrupt-parent = <&vic0>;
> + interrupts = <27>;
> + status = "disabled";
> + };
> +
> + ssp3: spi@d8180000 {
> + compatible = "arm,pl022", "arm,primecell";
> + reg = <0xd8180000 0x1000>;
> + #address-cells = <1>;
> + #size-cells = <0>;
> + interrupt-parent = <&vic1>;
> + interrupts = <5>;
> + status = "disabled";
> + };
> };
> };
> };
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
--
viresh
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-10-20 4:36 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20221019133208.319626-1-kory.maincent@bootlin.com>
2022-10-19 13:32 ` [PATCH 2/6] arm: dts: spear600: Fix clcd interrupt Köry Maincent
2022-10-20 4:35 ` Viresh Kumar
2022-10-19 13:32 ` [PATCH 5/6] arm: dts: spear600: Add ssp controller nodes Köry Maincent
2022-10-20 4:36 ` Viresh Kumar
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).