diff options
author | Gaurav Jain | 2022-03-24 11:50:33 +0530 |
---|---|---|
committer | Stefano Babic | 2022-04-12 11:19:21 +0200 |
commit | cb5d0419f5517c507685577dca41c9085b7d77c4 (patch) | |
tree | 5635a18f1c829f70a510f0e4ce9ac47de3b3c4e9 /board/freescale/imx8qxp_mek | |
parent | 0b9c444559df7910d0bfff3f52ac17c6d3ba209c (diff) |
crypto/fsl: i.MX8: Enable Job ring driver model.
i.MX8(QM/QXP) - added support for JR driver model.
sec is initialized based on job ring information processed
from device tree.
Signed-off-by: Gaurav Jain <gaurav.jain@nxp.com>
Signed-off-by: Horia Geantă <horia.geanta@nxp.com>
Reviewed-by: Ye Li <ye.li@nxp.com>
Diffstat (limited to 'board/freescale/imx8qxp_mek')
-rw-r--r-- | board/freescale/imx8qxp_mek/spl.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/board/freescale/imx8qxp_mek/spl.c b/board/freescale/imx8qxp_mek/spl.c index ae6b64ff6ea..2fa68400561 100644 --- a/board/freescale/imx8qxp_mek/spl.c +++ b/board/freescale/imx8qxp_mek/spl.c @@ -1,7 +1,7 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* - * Copyright 2018 NXP + * Copyright 2018, 2021 NXP * - * SPDX-License-Identifier: GPL-2.0+ */ #include <common.h> @@ -39,6 +39,8 @@ void spl_board_init(void) { struct udevice *dev; + uclass_get_device_by_driver(UCLASS_MISC, DM_DRIVER_GET(imx8_scu), &dev); + uclass_find_first_device(UCLASS_MISC, &dev); for (; dev; uclass_find_next_device(&dev)) { |