xref: /rk3399_ARM-atf/plat/nxp/common/soc_errata/errata.c (revision e3a234971abb2402cbf376eca6fcb657a7709fae)
1 /*
2  * Copyright 2021 NXP
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  */
7 
8 #include <common/debug.h>
9 
10 #include "errata_list.h"
11 
12 void soc_errata(void)
13 {
14 #ifdef ERRATA_SOC_A050426
15 	INFO("SoC workaround for Errata A050426 was applied\n");
16 	erratum_a050426();
17 #endif
18 #ifdef ERRATA_SOC_A008850
19 	INFO("SoC workaround for Errata A008850 Early-Phase was applied\n");
20 	erratum_a008850_early();
21 #endif
22 	/*
23 	 * The following DDR Erratas workaround are implemented in DDR driver,
24 	 * but print information here.
25 	 */
26 #if ERRATA_DDR_A011396
27 	INFO("SoC workaround for DDR Errata A011396 was applied\n");
28 #endif
29 #if ERRATA_DDR_A050450
30 	INFO("SoC workaround for DDR Errata A050450 was applied\n");
31 #endif
32 }
33