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

Add new soc errata a010539 support. Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com> Change-Id: Idbd8caaac12da8ab4f39dc0019cb656bcf4f3401
28 lines
441 B
C
28 lines
441 B
C
/*
|
|
* Copyright 2021-2022 NXP
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
*/
|
|
|
|
#ifndef ERRATA_LIST_H
|
|
#define ERRATA_LIST_H
|
|
|
|
#ifdef ERRATA_SOC_A050426
|
|
void erratum_a050426(void);
|
|
#endif
|
|
|
|
#ifdef ERRATA_SOC_A008850
|
|
void erratum_a008850_early(void);
|
|
void erratum_a008850_post(void);
|
|
#endif
|
|
|
|
#ifdef ERRATA_SOC_A009660
|
|
void erratum_a009660(void);
|
|
#endif
|
|
|
|
#ifdef ERRATA_SOC_A010539
|
|
void erratum_a010539(void);
|
|
#endif
|
|
|
|
#endif /* ERRATA_LIST_H */
|