Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: dts: omap: cpus/cpu nodes dts updates

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>

+24 -1
+5 -1
arch/arm/boot/dts/omap2.dtsi
··· 21 21 }; 22 22 23 23 cpus { 24 - cpu@0 { 24 + #address-cells = <0>; 25 + #size-cells = <0>; 26 + 27 + cpu { 25 28 compatible = "arm,arm1136jf-s"; 29 + device_type = "cpu"; 26 30 }; 27 31 }; 28 32
+5
arch/arm/boot/dts/omap3.dtsi
··· 21 21 }; 22 22 23 23 cpus { 24 + #address-cells = <1>; 25 + #size-cells = <0>; 26 + 24 27 cpu@0 { 25 28 compatible = "arm,cortex-a8"; 29 + device_type = "cpu"; 30 + reg = <0x0>; 26 31 }; 27 32 }; 28 33
+7
arch/arm/boot/dts/omap4.dtsi
··· 28 28 }; 29 29 30 30 cpus { 31 + #address-cells = <1>; 32 + #size-cells = <0>; 33 + 31 34 cpu@0 { 32 35 compatible = "arm,cortex-a9"; 36 + device_type = "cpu"; 33 37 next-level-cache = <&L2>; 38 + reg = <0x0>; 34 39 }; 35 40 cpu@1 { 36 41 compatible = "arm,cortex-a9"; 42 + device_type = "cpu"; 37 43 next-level-cache = <&L2>; 44 + reg = <0x1>; 38 45 }; 39 46 }; 40 47
+7
arch/arm/boot/dts/omap5.dtsi
··· 34 34 }; 35 35 36 36 cpus { 37 + #address-cells = <1>; 38 + #size-cells = <0>; 39 + 37 40 cpu@0 { 41 + device_type = "cpu"; 38 42 compatible = "arm,cortex-a15"; 43 + reg = <0x0>; 39 44 }; 40 45 cpu@1 { 46 + device_type = "cpu"; 41 47 compatible = "arm,cortex-a15"; 48 + reg = <0x1>; 42 49 }; 43 50 }; 44 51