/* * Copyright (c) 2026, Arm Limited. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #include #include #include #include #include #include /* Hardware handled coherency */ #if HW_ASSISTED_COHERENCY == 0 #error "Rosillo must be compiled with HW_ASSISTED_COHERENCY enabled" #endif /* 64-bit only core */ #if CTX_INCLUDE_AARCH32_REGS == 1 #error "Rosillo supports only AArch64. Compile with CTX_INCLUDE_AARCH32_REGS=0" #endif #if ERRATA_SME_POWER_DOWN == 0 #error "Rosillo needs ERRATA_SME_POWER_DOWN=1 to powerdown correctly" #endif cpu_reset_prologue rosillo cpu_reset_func_start rosillo /* ---------------------------------------------------- * Disable speculative loads * ---------------------------------------------------- */ msr SSBS, xzr enable_mpmm cpu_reset_func_end rosillo func rosillo_core_pwr_dwn /* --------------------------------------------------- * Flip CPU power down bit in power control register. * It will be set on powerdown and cleared on wakeup * --------------------------------------------------- */ sysreg_bit_toggle ROSILLO_IMP_CPUPWRCTLR_EL1, \ ROSILLO_IMP_CPUPWRCTLR_EL1_CORE_PWRDN_EN_BIT isb signal_pabandon_handled ret endfunc rosillo_core_pwr_dwn .section .rodata.rosillo_regs, "aS" rosillo_regs: /* The ASCII list of register names to be reported */ .asciz "cpuectlr_el1", "" func rosillo_cpu_reg_dump adr x6, rosillo_regs mrs x8, ROSILLO_IMP_CPUECTLR_EL1 ret endfunc rosillo_cpu_reg_dump declare_cpu_ops rosillo, ROSILLO_MIDR, \ rosillo_reset_func, \ rosillo_core_pwr_dwn