mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
4b18e83f5d
Signed-off-by: Geert Uytterhoeven <geert+renesas@linux-m68k.org> Acked-by: Magnus Damm <damm@opensource.se> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
112 lines
2.6 KiB
Plaintext
112 lines
2.6 KiB
Plaintext
/*
|
|
* Device Tree Source for the r7s72100 SoC
|
|
*
|
|
* Copyright (C) 2013 Renesas Solutions Corp.
|
|
*
|
|
* This file is licensed under the terms of the GNU General Public License
|
|
* version 2. This program is licensed "as is" without any warranty of any
|
|
* kind, whether express or implied.
|
|
*/
|
|
|
|
#include <dt-bindings/interrupt-controller/irq.h>
|
|
|
|
/ {
|
|
compatible = "renesas,r7s72100";
|
|
interrupt-parent = <&gic>;
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
aliases {
|
|
spi0 = &spi0;
|
|
spi1 = &spi1;
|
|
spi2 = &spi2;
|
|
spi3 = &spi3;
|
|
spi4 = &spi4;
|
|
};
|
|
|
|
cpus {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
cpu@0 {
|
|
device_type = "cpu";
|
|
compatible = "arm,cortex-a9";
|
|
reg = <0>;
|
|
};
|
|
};
|
|
|
|
gic: interrupt-controller@e8201000 {
|
|
compatible = "arm,cortex-a9-gic";
|
|
#interrupt-cells = <3>;
|
|
#address-cells = <0>;
|
|
interrupt-controller;
|
|
reg = <0xe8201000 0x1000>,
|
|
<0xe8202000 0x1000>;
|
|
};
|
|
|
|
spi0: spi@e800c800 {
|
|
compatible = "renesas,rspi-r7s72100", "renesas,rspi-rz";
|
|
reg = <0xe800c800 0x24>;
|
|
interrupts = <0 238 IRQ_TYPE_LEVEL_HIGH>,
|
|
<0 239 IRQ_TYPE_LEVEL_HIGH>,
|
|
<0 240 IRQ_TYPE_LEVEL_HIGH>;
|
|
interrupt-names = "error", "rx", "tx";
|
|
num-cs = <1>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
status = "disabled";
|
|
};
|
|
|
|
spi1: spi@e800d000 {
|
|
compatible = "renesas,rspi-r7s72100", "renesas,rspi-rz";
|
|
reg = <0xe800d000 0x24>;
|
|
interrupts = <0 241 IRQ_TYPE_LEVEL_HIGH>,
|
|
<0 242 IRQ_TYPE_LEVEL_HIGH>,
|
|
<0 243 IRQ_TYPE_LEVEL_HIGH>;
|
|
interrupt-names = "error", "rx", "tx";
|
|
num-cs = <1>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
status = "disabled";
|
|
};
|
|
|
|
spi2: spi@e800d800 {
|
|
compatible = "renesas,rspi-r7s72100", "renesas,rspi-rz";
|
|
reg = <0xe800d800 0x24>;
|
|
interrupts = <0 244 IRQ_TYPE_LEVEL_HIGH>,
|
|
<0 245 IRQ_TYPE_LEVEL_HIGH>,
|
|
<0 246 IRQ_TYPE_LEVEL_HIGH>;
|
|
interrupt-names = "error", "rx", "tx";
|
|
num-cs = <1>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
status = "disabled";
|
|
};
|
|
|
|
spi3: spi@e800e000 {
|
|
compatible = "renesas,rspi-r7s72100", "renesas,rspi-rz";
|
|
reg = <0xe800e000 0x24>;
|
|
interrupts = <0 247 IRQ_TYPE_LEVEL_HIGH>,
|
|
<0 248 IRQ_TYPE_LEVEL_HIGH>,
|
|
<0 249 IRQ_TYPE_LEVEL_HIGH>;
|
|
interrupt-names = "error", "rx", "tx";
|
|
num-cs = <1>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
status = "disabled";
|
|
};
|
|
|
|
spi4: spi@e800e800 {
|
|
compatible = "renesas,rspi-r7s72100", "renesas,rspi-rz";
|
|
reg = <0xe800e800 0x24>;
|
|
interrupts = <0 250 IRQ_TYPE_LEVEL_HIGH>,
|
|
<0 251 IRQ_TYPE_LEVEL_HIGH>,
|
|
<0 252 IRQ_TYPE_LEVEL_HIGH>;
|
|
interrupt-names = "error", "rx", "tx";
|
|
num-cs = <1>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
status = "disabled";
|
|
};
|
|
};
|