Commit d3f327dc authored by Ayush Singh's avatar Ayush Singh Committed by Benjamin Cabé
Browse files

boards: beagle: pocketbeagle_2: a53: Enable PSCI

Use both cores for Zephyr by default. I did enable SMP, however forgot
to enable PSCI to turn on the other cores in the initial PR.

Tested with samples: `tests/arch/arm64/arm64_psci/` and
`samples/arch/smp/pi`

Requires [0].

[0]: https://github.com/zephyrproject-rtos/zephyr/pull/95325



Signed-off-by: default avatarAyush Singh <ayush@beagleboard.org>
parent 3813b3cd
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -30,3 +30,5 @@ CONFIG_UART_CONSOLE=y

# Multicore Support
CONFIG_SMP=y
CONFIG_PM_CPU_OPS=y
CONFIG_MP_MAX_NUM_CPUS=2
+7 −0
Original line number Diff line number Diff line
@@ -26,6 +26,13 @@
		};
	};

	firmware {
		psci: psci {
			compatible = "arm,psci-1.1";
			method = "smc";
		};
	};

	oc_sram: memory@70000000 {
		reg = <0x70000000 DT_SIZE_K(64)>;
	};