diff options
author | Gaurav Jain <gaurav.jain@nxp.com> | 2022-03-24 11:50:35 +0530 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2022-04-12 11:20:01 +0200 |
commit | 8976556a8a9207116d64014d9caeca60799d5f8a (patch) | |
tree | a27957e73a299920e4339ce2b11401aa3462f394 /board/freescale/ls1046aqds | |
parent | 88071ca2bb80d8b59fbd3ab5ae60b4519bb40aa9 (diff) | |
download | u-boot-8976556a8a9207116d64014d9caeca60799d5f8a.tar.gz u-boot-8976556a8a9207116d64014d9caeca60799d5f8a.tar.bz2 u-boot-8976556a8a9207116d64014d9caeca60799d5f8a.zip |
Layerscape: Enable Job ring driver model.
LS(1021/1012/1028/1043/1046/1088/2088), LX2160, LX2162
platforms are enabled with JR driver model.
removed sec_init() call from board files.
sec is initialized based on job ring information processed
from device tree.
Signed-off-by: Gaurav Jain <gaurav.jain@nxp.com>
Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
Reviewed-by: Michael Walle <michael@walle.cc>
Diffstat (limited to 'board/freescale/ls1046aqds')
-rw-r--r-- | board/freescale/ls1046aqds/ls1046aqds.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/board/freescale/ls1046aqds/ls1046aqds.c b/board/freescale/ls1046aqds/ls1046aqds.c index 8481c45a58..e5b5441e2c 100644 --- a/board/freescale/ls1046aqds/ls1046aqds.c +++ b/board/freescale/ls1046aqds/ls1046aqds.c @@ -1,7 +1,7 @@ // SPDX-License-Identifier: GPL-2.0+ /* * Copyright 2016 Freescale Semiconductor, Inc. - * Copyright 2019-2020 NXP + * Copyright 2019-2021 NXP */ #include <common.h> @@ -28,7 +28,6 @@ #include <fsl_csu.h> #include <fsl_esdhc.h> #include <fsl_ifc.h> -#include <fsl_sec.h> #include <spl.h> #include "../common/i2c_mux.h" @@ -421,10 +420,6 @@ int board_init(void) out_le32(SMMU_NSCR0, val); #endif -#ifdef CONFIG_FSL_CAAM - sec_init(); -#endif - return 0; } |