arm-trusted-firmware/plat/nxp/common/soc_errata/errata.c
Jiafei Pan 1ca7229529 refactor(plat/nxp): each errata use a seperate source file
Don't mix erratas together in one file.

Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com>
Change-Id: Ib1671011b91a41b0653210e4706d62b7e946c642
2021-08-25 09:53:20 +08:00

29 lines
564 B
C

/*
* Copyright 2021 NXP
*
* SPDX-License-Identifier: BSD-3-Clause
*
*/
#include <common/debug.h>
#include "errata_list.h"
void soc_errata(void)
{
#ifdef ERRATA_SOC_A050426
INFO("SoC workaround for Errata A050426 was applied\n");
erratum_a050426();
#endif
/*
* The following DDR Erratas workaround are implemented in DDR driver,
* but print information here.
*/
#if ERRATA_DDR_A011396
INFO("SoC workaround for DDR Errata A011396 was applied\n");
#endif
#if ERRATA_DDR_A050450
INFO("SoC workaround for DDR Errata A050450 was applied\n");
#endif
}