Commit c0e50d27 authored by Huifeng Zhang's avatar Huifeng Zhang Committed by Fabio Baltieri
Browse files

boards: arm64: fvp_base_revc_2xaemv8a: add more cpu nodes



fvp_base_revc_2xaemv8a supports up to 2 clusters and 8 cores, each
cluster has 4 cores.

Due to zephyr supports up to 4 cores, for now, I add another 3 cores,
they all belong to cluster0.

Signed-off-by: default avatarHuifeng Zhang <Huifeng.Zhang@arm.com>
parent 3d81d7f2
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
@@ -23,6 +23,11 @@
		zephyr,shell-uart = &uart0;
	};

	psci {
		compatible = "arm,psci-0.2";
		method = "smc";
	};

	cpus {
		#address-cells = <1>;
		#size-cells = <0>;
@@ -32,6 +37,24 @@
			compatible = "arm,cortex-a53";
			reg = <0>;
		};

		cpu@100 {
			device_type = "cpu";
			compatible = "arm,cortex-a53";
			reg = <0x100>;
		};

		cpu@200 {
			device_type = "cpu";
			compatible = "arm,cortex-a53";
			reg = <0x200>;
		};

		cpu@300 {
			device_type = "cpu";
			compatible = "arm,cortex-a53";
			reg = <0x300>;
		};
	};

	timer {