]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
arm: vexpress64: Enable SYSRESET and SYSRESET_PSCI
authorDebbie Horsfall <debbie.horsfall@arm.com>
Wed, 17 Sep 2025 16:22:22 +0000 (17:22 +0100)
committerTom Rini <trini@konsulko.com>
Fri, 26 Sep 2025 22:49:37 +0000 (16:49 -0600)
Select SYSRESET on Vexpress64 to enable system reset to support other
features, such as capsule-on-disk. Select SYSRESET_PSCI if PSCI is
inferred from the firmware (via ARM_PSCI_FW).
Select ARM_SMCCC for Vexpress64 boards which in turn selects
ARM_PSCI_FW.

The sysreset uclass unconditionally implements a reset_cpu() function.
Remove the empty reset_cpu() in vexpress64 board code.

Signed-off-by: Debbie Horsfall <debbie.horsfall@arm.com>
arch/arm/Kconfig
board/armltd/vexpress64/Kconfig
board/armltd/vexpress64/vexpress64.c

index 16db046f4b8de0183ae11f4da1a7983f3d412138..0a1bd6958fe69779ca7a3be904f5d3482759f83f 100644 (file)
@@ -1418,6 +1418,8 @@ config ARCH_VEXPRESS64
        select MTD_NOR_FLASH if MTD
        select FLASH_CFI_DRIVER if MTD
        select ENV_IS_IN_FLASH if MTD
+       select SYSRESET
+       select SYSRESET_PSCI if ARM_PSCI_FW
        imply DISTRO_DEFAULTS
 
 config TARGET_CORSTONE1000
index 610ab0ac37dc967e0892ecb62fe07dc300a6c1a2..9ef3fa1b379f72bf611d0155a5bb5ec0610ce463 100644 (file)
@@ -23,6 +23,7 @@ config VEXPRESS64_BASE_MODEL
        select POSITION_INDEPENDENT
        imply DM_RNG
        imply RNG_ARM_RNDR
+       select ARM_SMCCC
 
 choice
        prompt "VExpress64 board variant"
@@ -48,6 +49,7 @@ config TARGET_VEXPRESS64_JUNO
        select USB_EHCI_GENERIC if USB
        select USB_OHCI_HCD if USB
        select USB_OHCI_GENERIC if USB
+       select ARM_SMCCC
        imply OF_HAS_PRIOR_STAGE
 
 endchoice
index 0b75c1358f0b5fc583b1b423a55ce81b64309336..e8f1c2fe9fe26e7007d73b64cdd2155c6e742743 100644 (file)
@@ -206,11 +206,6 @@ int board_fdt_blob_setup(void **fdtp)
 #endif
 #endif
 
-/* Actual reset is done via PSCI. */
-void reset_cpu(void)
-{
-}
-
 /*
  * Board specific ethernet initialization routine.
  */