mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-13 08:04:27 +00:00

Similar to the cpu_rev_var and cpu_ger_rev_var functions, inline the call_reset_handler handler. This way we skip the costly branch at no extra cost as this is the only place where this is called. While we're at it, drop the options for CPU_NO_RESET_FUNC. The only cpus that need that are virtual cpus which can spare the tiny bit of performance lost. The rest are real cores which can save on the check for zero. Now is a good time to put the assert for a missing cpu in the get_cpu_ops_ptr function so that it's a bit better encapsulated. Change-Id: Ia7c3dcd13b75e5d7c8bafad4698994ea65f42406 Signed-off-by: Boyan Karatotev <boyan.karatotev@arm.com>
43 lines
1.1 KiB
ArmAsm
43 lines
1.1 KiB
ArmAsm
/*
|
|
* Copyright (c) 2022, Fujitsu Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
#include <arch.h>
|
|
#include <asm_macros.S>
|
|
#include <assert_macros.S>
|
|
#include <a64fx.h>
|
|
#include <cpu_macros.S>
|
|
#include <plat_macros.S>
|
|
|
|
func a64fx_core_pwr_dwn
|
|
endfunc a64fx_core_pwr_dwn
|
|
|
|
func a64fx_cluster_pwr_dwn
|
|
endfunc a64fx_cluster_pwr_dwn
|
|
|
|
/* ---------------------------------------------
|
|
* This function provides cpu specific
|
|
* register information for crash reporting.
|
|
* It needs to return with x6 pointing to
|
|
* a list of register names in ascii and
|
|
* x8 - x15 having values of registers to be
|
|
* reported.
|
|
* ---------------------------------------------
|
|
*/
|
|
.section .rodata.a64fx_regs, "aS"
|
|
a64fx_regs: /* The ascii list of register names to be reported */
|
|
.asciz ""
|
|
|
|
cpu_reset_func_start a64fx
|
|
cpu_reset_func_end a64fx
|
|
|
|
func a64fx_cpu_reg_dump
|
|
adr x6, a64fx_regs
|
|
ret
|
|
endfunc a64fx_cpu_reg_dump
|
|
|
|
declare_cpu_ops a64fx, A64FX_MIDR, a64fx_reset_func \
|
|
a64fx_core_pwr_dwn, \
|
|
a64fx_cluster_pwr_dwn
|
|
|