Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 771969ec authored by Linus Walleij's avatar Linus Walleij
Browse files

ARM: ux500: define CPU topology



The CPU topology is unspecified for Ux500 but will be needed
for things like CoreSight. Let's just add it.

Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent b787f68c
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
@@ -22,6 +22,32 @@
		interrupt-parent = <&intc>;
		ranges;

		cpus {
			#address-cells = <1>;
			#size-cells = <0>;

			cpu-map {
				cluster0 {
					core0 {
						cpu = <&CPU0>;
					};
					core1 {
						cpu = <&CPU1>;
					};
				};
			};
			CPU0: cpu@0 {
				device_type = "cpu";
				compatible = "arm,cortex-a9";
				reg = <0>;
			};
			CPU1: cpu@1 {
				device_type = "cpu";
				compatible = "arm,cortex-a9";
				reg = <1>;
			};
		};

		intc: interrupt-controller@a0411000 {
			compatible = "arm,cortex-a9-gic";
			#interrupt-cells = <3>;