@@ -24,8 +24,12 @@
};
cpus {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
cpu@0 {
compatible = "arm,cortex-a15";
+ reg = <0x0>;
timer {
compatible = "arm,armv7-timer";
interrupts = <1 13 0xf08>;
@@ -34,6 +38,7 @@
};
cpu@1 {
compatible = "arm,cortex-a15";
+ reg = <0x1>;
timer {
compatible = "arm,armv7-timer";
interrupts = <1 14 0xf08>;
@@ -42,6 +47,7 @@
};
cpu@2 {
compatible = "arm,cortex-a15";
+ reg = <0x2>;
timer {
compatible = "arm,armv7-timer";
interrupts = <1 14 0xf08>;
@@ -50,6 +56,7 @@
};
cpu@3 {
compatible = "arm,cortex-a15";
+ reg = <0x3>;
timer {
compatible = "arm,armv7-timer";
interrupts = <1 14 0xf08>;
This patch updates the in-kernel dts files according to the latest cpus and cpu bindings updates for ARM. Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> --- arch/arm/boot/dts/exynos5440.dtsi | 7 +++++++ 1 file changed, 7 insertions(+)