mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-02 09:46:37 +03:00
caam: don't write memory at 0 on PPC
For non-secure boot environments pamu_init() isn't called but the CAAM will still call sec_config_pamu_table() -> config_pamu() which then uses an uninitialized ppaact variable. In fact, that variable is initialized with 0, so the config_pamu() will happily assume the structure is there and will operate on that memory. Call pamu_init() in the non-secure boot case, too. Signed-off-by: Michael Walle <mwalle@kernel.org> Signed-off-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
@@ -41,10 +41,12 @@
|
||||
#ifdef CONFIG_FSL_CAAM
|
||||
#include <fsl_sec.h>
|
||||
#endif
|
||||
#if defined(CONFIG_NXP_ESBC) && defined(CONFIG_FSL_CORENET)
|
||||
#if defined(CONFIG_FSL_CORENET)
|
||||
#include <asm/fsl_pamu.h>
|
||||
#if defined(CONFIG_NXP_ESBC)
|
||||
#include <fsl_secboot_err.h>
|
||||
#endif
|
||||
#endif
|
||||
#ifdef CONFIG_SYS_QE_FMAN_FW_IN_NAND
|
||||
#include <nand.h>
|
||||
#include <errno.h>
|
||||
@@ -899,6 +901,8 @@ int cpu_init_r(void)
|
||||
#if defined(CONFIG_NXP_ESBC) && defined(CONFIG_FSL_CORENET)
|
||||
if (pamu_init() < 0)
|
||||
fsl_secboot_handle_error(ERROR_ESBC_PAMU_INIT);
|
||||
#elif defined(CONFIG_FSL_CORENET)
|
||||
pamu_init();
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_FSL_CAAM
|
||||
|
||||
Reference in New Issue
Block a user