arm: dts: spear600: Add ssp controller nodes

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>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
Kory Maincent 2022-11-02 18:10:09 +01:00 committed by Arnd Bergmann
parent 0336e2ce34
commit 3f6f5ee179
No known key found for this signature in database
GPG Key ID: 9A6C79EFE60018D9

View File

@ -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";
};
};
};
};