mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-15 00:54:22 +00:00

Errata printing is done directly via generic_errata_report. This commit removes the unused \_cpu\()_errata_report functions for all cores, and removes errata_func from cpu_ops. Change-Id: I04fefbde5f0ff63b1f1cd17c864557a14070d68c Signed-off-by: Ryan Everett <ryan.everett@arm.com>
40 lines
1.1 KiB
ArmAsm
40 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 ""
|
|
|
|
func a64fx_cpu_reg_dump
|
|
adr x6, a64fx_regs
|
|
ret
|
|
endfunc a64fx_cpu_reg_dump
|
|
|
|
declare_cpu_ops a64fx, A64FX_MIDR, CPU_NO_RESET_FUNC \
|
|
a64fx_core_pwr_dwn, \
|
|
a64fx_cluster_pwr_dwn
|
|
|