Commit 5bb98db2 authored by Adrian Ściepura's avatar Adrian Ściepura Committed by Chris Friedt
Browse files

boards: x86_64: add missing cpu nodes



Some x86_64 platforms have only one CPU node defined in their
respective devicetree files, while setting `CONFIG_MP_MAX_NUM_CPUS`
to two.

This commit adds missing CPU nodes in said devicetree files.

Signed-off-by: default avatarAdrian Ściepura <asciepura@internships.antmicro.com>
parent 14d24b16
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -17,6 +17,15 @@
	model = "ACRN";
	compatible = "acrn";

	cpus {
		cpu@1 {
			device_type = "cpu";
			compatible = "intel,x86_64";
			d-cache-line-size = <64>;
			reg = <1>;
		};
	};

	aliases {
		uart-0 = &uart0;
		uart-1 = &uart1;
+7 −0
Original line number Diff line number Diff line
@@ -20,6 +20,13 @@
			d-cache-line-size = <64>;
			reg = <0>;
		};

		cpu@1 {
			device_type = "cpu";
			compatible = "intel,bartlett-lake";
			d-cache-line-size = <64>;
			reg = <1>;
		};
	};

	dram0: memory@0 {
+7 −0
Original line number Diff line number Diff line
@@ -20,6 +20,13 @@
			d-cache-line-size = <64>;
			reg = <0>;
		};

		cpu@1 {
			device_type = "cpu";
			compatible = "intel,elkhart-lake", "intel,x86_64";
			d-cache-line-size = <64>;
			reg = <1>;
		};
	};

	chosen {