mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-10-10 15:11:28 +02:00
ARM: dts: rmobile: Sync R8A77990 Ebisu DTS with Linux
Import the R8A77990 and Ebisu DTS from linux-next to get the latest version. This makes AVB ethernet work in U-Boot since the ethernet node is now present in DT, as well as GPIOs. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
This commit is contained in:
parent
63e22517a3
commit
0bb5d24852
@ -7,6 +7,7 @@
|
|||||||
|
|
||||||
/dts-v1/;
|
/dts-v1/;
|
||||||
#include "r8a77990.dtsi"
|
#include "r8a77990.dtsi"
|
||||||
|
#include <dt-bindings/gpio/gpio.h>
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
model = "Renesas Ebisu board based on r8a77990";
|
model = "Renesas Ebisu board based on r8a77990";
|
||||||
@ -14,6 +15,7 @@
|
|||||||
|
|
||||||
aliases {
|
aliases {
|
||||||
serial0 = &scif2;
|
serial0 = &scif2;
|
||||||
|
ethernet0 = &avb;
|
||||||
};
|
};
|
||||||
|
|
||||||
chosen {
|
chosen {
|
||||||
@ -28,10 +30,36 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&avb {
|
||||||
|
pinctrl-0 = <&avb_pins>;
|
||||||
|
pinctrl-names = "default";
|
||||||
|
renesas,no-ether-link;
|
||||||
|
phy-handle = <&phy0>;
|
||||||
|
phy-mode = "rgmii-txid";
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
phy0: ethernet-phy@0 {
|
||||||
|
rxc-skew-ps = <1500>;
|
||||||
|
reg = <0>;
|
||||||
|
interrupt-parent = <&gpio2>;
|
||||||
|
interrupts = <21 IRQ_TYPE_LEVEL_LOW>;
|
||||||
|
reset-gpios = <&gpio1 20 GPIO_ACTIVE_LOW>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
&extal_clk {
|
&extal_clk {
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&pfc {
|
||||||
|
avb_pins: avb {
|
||||||
|
mux {
|
||||||
|
groups = "avb_link", "avb_mii";
|
||||||
|
function = "avb";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
&scif2 {
|
&scif2 {
|
||||||
status = "okay";
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
@ -27,9 +27,8 @@
|
|||||||
enable-method = "psci";
|
enable-method = "psci";
|
||||||
};
|
};
|
||||||
|
|
||||||
L2_CA53: cache-controller@0 {
|
L2_CA53: cache-controller-0 {
|
||||||
compatible = "cache";
|
compatible = "cache";
|
||||||
reg = <0>;
|
|
||||||
power-domains = <&sysc 21>;
|
power-domains = <&sysc 21>;
|
||||||
cache-unified;
|
cache-unified;
|
||||||
cache-level = <2>;
|
cache-level = <2>;
|
||||||
@ -43,8 +42,14 @@
|
|||||||
clock-frequency = <0>;
|
clock-frequency = <0>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pmu_a53 {
|
||||||
|
compatible = "arm,cortex-a53-pmu";
|
||||||
|
interrupts-extended = <&gic GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
interrupt-affinity = <&a53_0>;
|
||||||
|
};
|
||||||
|
|
||||||
psci {
|
psci {
|
||||||
compatible = "arm,psci-0.2";
|
compatible = "arm,psci-1.0", "arm,psci-0.2";
|
||||||
method = "smc";
|
method = "smc";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -55,6 +60,194 @@
|
|||||||
#size-cells = <2>;
|
#size-cells = <2>;
|
||||||
ranges;
|
ranges;
|
||||||
|
|
||||||
|
gpio0: gpio@e6050000 {
|
||||||
|
compatible = "renesas,gpio-r8a77990",
|
||||||
|
"renesas,rcar-gen3-gpio";
|
||||||
|
reg = <0 0xe6050000 0 0x50>;
|
||||||
|
interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
#gpio-cells = <2>;
|
||||||
|
gpio-controller;
|
||||||
|
gpio-ranges = <&pfc 0 0 18>;
|
||||||
|
#interrupt-cells = <2>;
|
||||||
|
interrupt-controller;
|
||||||
|
clocks = <&cpg CPG_MOD 912>;
|
||||||
|
power-domains = <&sysc 32>;
|
||||||
|
resets = <&cpg 912>;
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio1: gpio@e6051000 {
|
||||||
|
compatible = "renesas,gpio-r8a77990",
|
||||||
|
"renesas,rcar-gen3-gpio";
|
||||||
|
reg = <0 0xe6051000 0 0x50>;
|
||||||
|
interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
#gpio-cells = <2>;
|
||||||
|
gpio-controller;
|
||||||
|
gpio-ranges = <&pfc 0 32 23>;
|
||||||
|
#interrupt-cells = <2>;
|
||||||
|
interrupt-controller;
|
||||||
|
clocks = <&cpg CPG_MOD 911>;
|
||||||
|
power-domains = <&sysc 32>;
|
||||||
|
resets = <&cpg 911>;
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio2: gpio@e6052000 {
|
||||||
|
compatible = "renesas,gpio-r8a77990",
|
||||||
|
"renesas,rcar-gen3-gpio";
|
||||||
|
reg = <0 0xe6052000 0 0x50>;
|
||||||
|
interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
#gpio-cells = <2>;
|
||||||
|
gpio-controller;
|
||||||
|
gpio-ranges = <&pfc 0 64 26>;
|
||||||
|
#interrupt-cells = <2>;
|
||||||
|
interrupt-controller;
|
||||||
|
clocks = <&cpg CPG_MOD 910>;
|
||||||
|
power-domains = <&sysc 32>;
|
||||||
|
resets = <&cpg 910>;
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio3: gpio@e6053000 {
|
||||||
|
compatible = "renesas,gpio-r8a77990",
|
||||||
|
"renesas,rcar-gen3-gpio";
|
||||||
|
reg = <0 0xe6053000 0 0x50>;
|
||||||
|
interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
#gpio-cells = <2>;
|
||||||
|
gpio-controller;
|
||||||
|
gpio-ranges = <&pfc 0 96 16>;
|
||||||
|
#interrupt-cells = <2>;
|
||||||
|
interrupt-controller;
|
||||||
|
clocks = <&cpg CPG_MOD 909>;
|
||||||
|
power-domains = <&sysc 32>;
|
||||||
|
resets = <&cpg 909>;
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio4: gpio@e6054000 {
|
||||||
|
compatible = "renesas,gpio-r8a77990",
|
||||||
|
"renesas,rcar-gen3-gpio";
|
||||||
|
reg = <0 0xe6054000 0 0x50>;
|
||||||
|
interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
#gpio-cells = <2>;
|
||||||
|
gpio-controller;
|
||||||
|
gpio-ranges = <&pfc 0 128 11>;
|
||||||
|
#interrupt-cells = <2>;
|
||||||
|
interrupt-controller;
|
||||||
|
clocks = <&cpg CPG_MOD 908>;
|
||||||
|
power-domains = <&sysc 32>;
|
||||||
|
resets = <&cpg 908>;
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio5: gpio@e6055000 {
|
||||||
|
compatible = "renesas,gpio-r8a77990",
|
||||||
|
"renesas,rcar-gen3-gpio";
|
||||||
|
reg = <0 0xe6055000 0 0x50>;
|
||||||
|
interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
#gpio-cells = <2>;
|
||||||
|
gpio-controller;
|
||||||
|
gpio-ranges = <&pfc 0 160 20>;
|
||||||
|
#interrupt-cells = <2>;
|
||||||
|
interrupt-controller;
|
||||||
|
clocks = <&cpg CPG_MOD 907>;
|
||||||
|
power-domains = <&sysc 32>;
|
||||||
|
resets = <&cpg 907>;
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio6: gpio@e6055400 {
|
||||||
|
compatible = "renesas,gpio-r8a77990",
|
||||||
|
"renesas,rcar-gen3-gpio";
|
||||||
|
reg = <0 0xe6055400 0 0x50>;
|
||||||
|
interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
#gpio-cells = <2>;
|
||||||
|
gpio-controller;
|
||||||
|
gpio-ranges = <&pfc 0 192 18>;
|
||||||
|
#interrupt-cells = <2>;
|
||||||
|
interrupt-controller;
|
||||||
|
clocks = <&cpg CPG_MOD 906>;
|
||||||
|
power-domains = <&sysc 32>;
|
||||||
|
resets = <&cpg 906>;
|
||||||
|
};
|
||||||
|
|
||||||
|
pfc: pin-controller@e6060000 {
|
||||||
|
compatible = "renesas,pfc-r8a77990";
|
||||||
|
reg = <0 0xe6060000 0 0x508>;
|
||||||
|
};
|
||||||
|
|
||||||
|
cpg: clock-controller@e6150000 {
|
||||||
|
compatible = "renesas,r8a77990-cpg-mssr";
|
||||||
|
reg = <0 0xe6150000 0 0x1000>;
|
||||||
|
clocks = <&extal_clk>;
|
||||||
|
clock-names = "extal";
|
||||||
|
#clock-cells = <2>;
|
||||||
|
#power-domain-cells = <0>;
|
||||||
|
#reset-cells = <1>;
|
||||||
|
};
|
||||||
|
|
||||||
|
rst: reset-controller@e6160000 {
|
||||||
|
compatible = "renesas,r8a77990-rst";
|
||||||
|
reg = <0 0xe6160000 0 0x0200>;
|
||||||
|
};
|
||||||
|
|
||||||
|
sysc: system-controller@e6180000 {
|
||||||
|
compatible = "renesas,r8a77990-sysc";
|
||||||
|
reg = <0 0xe6180000 0 0x0400>;
|
||||||
|
#power-domain-cells = <1>;
|
||||||
|
};
|
||||||
|
|
||||||
|
avb: ethernet@e6800000 {
|
||||||
|
compatible = "renesas,etheravb-r8a77990",
|
||||||
|
"renesas,etheravb-rcar-gen3";
|
||||||
|
reg = <0 0xe6800000 0 0x800>, <0 0xe6a00000 0 0x10000>;
|
||||||
|
interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 44 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 50 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 54 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 58 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 59 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>,
|
||||||
|
<GIC_SPI 63 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
interrupt-names = "ch0", "ch1", "ch2", "ch3",
|
||||||
|
"ch4", "ch5", "ch6", "ch7",
|
||||||
|
"ch8", "ch9", "ch10", "ch11",
|
||||||
|
"ch12", "ch13", "ch14", "ch15",
|
||||||
|
"ch16", "ch17", "ch18", "ch19",
|
||||||
|
"ch20", "ch21", "ch22", "ch23",
|
||||||
|
"ch24";
|
||||||
|
clocks = <&cpg CPG_MOD 812>;
|
||||||
|
power-domains = <&sysc 32>;
|
||||||
|
resets = <&cpg 812>;
|
||||||
|
phy-mode = "rgmii";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
scif2: serial@e6e88000 {
|
||||||
|
compatible = "renesas,scif-r8a77990",
|
||||||
|
"renesas,rcar-gen3-scif", "renesas,scif";
|
||||||
|
reg = <0 0xe6e88000 0 64>;
|
||||||
|
interrupts = <GIC_SPI 164 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
clocks = <&cpg CPG_MOD 310>;
|
||||||
|
clock-names = "fck";
|
||||||
|
power-domains = <&sysc 32>;
|
||||||
|
resets = <&cpg 310>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
gic: interrupt-controller@f1010000 {
|
gic: interrupt-controller@f1010000 {
|
||||||
compatible = "arm,gic-400";
|
compatible = "arm,gic-400";
|
||||||
#interrupt-cells = <3>;
|
#interrupt-cells = <3>;
|
||||||
@ -72,60 +265,17 @@
|
|||||||
resets = <&cpg 408>;
|
resets = <&cpg 408>;
|
||||||
};
|
};
|
||||||
|
|
||||||
timer {
|
|
||||||
compatible = "arm,armv8-timer";
|
|
||||||
interrupts = <GIC_PPI 13
|
|
||||||
(GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>,
|
|
||||||
<GIC_PPI 14
|
|
||||||
(GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>,
|
|
||||||
<GIC_PPI 11
|
|
||||||
(GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>,
|
|
||||||
<GIC_PPI 10
|
|
||||||
(GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>;
|
|
||||||
};
|
|
||||||
|
|
||||||
pmu_a53 {
|
|
||||||
compatible = "arm,cortex-a53-pmu";
|
|
||||||
interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>;
|
|
||||||
interrupt-affinity = <&a53_0>;
|
|
||||||
};
|
|
||||||
|
|
||||||
cpg: clock-controller@e6150000 {
|
|
||||||
compatible = "renesas,r8a77990-cpg-mssr";
|
|
||||||
reg = <0 0xe6150000 0 0x1000>;
|
|
||||||
clocks = <&extal_clk>;
|
|
||||||
clock-names = "extal";
|
|
||||||
#clock-cells = <2>;
|
|
||||||
#power-domain-cells = <0>;
|
|
||||||
#reset-cells = <1>;
|
|
||||||
};
|
|
||||||
|
|
||||||
rst: reset-controller@e6160000 {
|
|
||||||
compatible = "renesas,r8a77990-rst";
|
|
||||||
reg = <0 0xe6160000 0 0x0200>;
|
|
||||||
};
|
|
||||||
|
|
||||||
prr: chipid@fff00044 {
|
prr: chipid@fff00044 {
|
||||||
compatible = "renesas,prr";
|
compatible = "renesas,prr";
|
||||||
reg = <0 0xfff00044 0 4>;
|
reg = <0 0xfff00044 0 4>;
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
sysc: system-controller@e6180000 {
|
timer {
|
||||||
compatible = "renesas,r8a77990-sysc";
|
compatible = "arm,armv8-timer";
|
||||||
reg = <0 0xe6180000 0 0x0400>;
|
interrupts-extended = <&gic GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>,
|
||||||
#power-domain-cells = <1>;
|
<&gic GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>,
|
||||||
};
|
<&gic GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>,
|
||||||
|
<&gic GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(1) | IRQ_TYPE_LEVEL_LOW)>;
|
||||||
scif2: serial@e6e88000 {
|
|
||||||
compatible = "renesas,scif-r8a77990",
|
|
||||||
"renesas,rcar-gen3-scif", "renesas,scif";
|
|
||||||
reg = <0 0xe6e88000 0 64>;
|
|
||||||
interrupts = <GIC_SPI 164 IRQ_TYPE_LEVEL_HIGH>;
|
|
||||||
clocks = <&cpg CPG_MOD 310>;
|
|
||||||
clock-names = "fck";
|
|
||||||
power-domains = <&sysc 32>;
|
|
||||||
resets = <&cpg 310>;
|
|
||||||
status = "disabled";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user