]> git.baikalelectronics.ru Git - uboot.git/commitdiff
i.MX6: Enable Job ring driver model.
authorGaurav Jain <gaurav.jain@nxp.com>
Thu, 24 Mar 2022 06:20:29 +0000 (11:50 +0530)
committerStefano Babic <sbabic@denx.de>
Tue, 12 Apr 2022 09:18:34 +0000 (11:18 +0200)
i.MX6,i.MX6SX,i.MX6UL - added support for JR driver model.

removed sec_init() call, sec is initialized based on
job ring information processed from device tree.

Signed-off-by: Gaurav Jain <gaurav.jain@nxp.com>
Reviewed-by: Ye Li <ye.li@nxp.com>
arch/arm/mach-imx/mx6/Kconfig
arch/arm/mach-imx/mx6/soc.c

index 98df4d4e42813373362e9070375152fe35ae3721..3d675fcd73ec1818c262a787c84dd01257b63ddf 100644 (file)
@@ -354,6 +354,8 @@ config TARGET_MX6SABREAUTO
        select DM_THERMAL
        select SUPPORT_SPL
        imply CMD_DM
+       select FSL_CAAM
+       select ARCH_MISC_INIT
 
 config TARGET_MX6SABRESD
        bool "mx6sabresd"
@@ -364,6 +366,8 @@ config TARGET_MX6SABRESD
        select DM_THERMAL
        select SUPPORT_SPL
        imply CMD_DM
+       select FSL_CAAM
+       select ARCH_MISC_INIT
 
 config TARGET_MX6SLEVK
        bool "mx6slevk"
@@ -386,6 +390,8 @@ config TARGET_MX6SXSABRESD
        select DM
        select DM_THERMAL
        select SUPPORT_SPL
+       select FSL_CAAM
+       select ARCH_MISC_INIT
 
 config TARGET_MX6SXSABREAUTO
        bool "mx6sxsabreauto"
@@ -404,6 +410,8 @@ config TARGET_MX6UL_9X9_EVK
        select DM_THERMAL
        select SUPPORT_SPL
        imply CMD_DM
+       select FSL_CAAM
+       select ARCH_MISC_INIT
 
 config TARGET_MX6UL_14X14_EVK
        bool "mx6ul_14x14_evk"
@@ -413,6 +421,8 @@ config TARGET_MX6UL_14X14_EVK
        select DM_THERMAL
        select SUPPORT_SPL
        imply CMD_DM
+       select FSL_CAAM
+       select ARCH_MISC_INIT
 
 config TARGET_MX6UL_ENGICAM
        bool "Support Engicam GEAM6UL/Is.IoT"
index 03d6b8c1ce9d80c5d2312652dda3da72602ac05f..2434bcfa9877acbffa75317d2bafecbde939901a 100644 (file)
@@ -4,6 +4,7 @@
  * Sascha Hauer, Pengutronix
  *
  * (C) Copyright 2009 Freescale Semiconductor, Inc.
+ * Copyright 2021 NXP
  */
 
 #include <common.h>
@@ -23,7 +24,6 @@
 #include <asm/arch/mxc_hdmi.h>
 #include <asm/arch/crm_regs.h>
 #include <dm.h>
-#include <fsl_sec.h>
 #include <imx_thermal.h>
 #include <mmc.h>
 
@@ -738,9 +738,14 @@ static void setup_serial_number(void)
 
 int arch_misc_init(void)
 {
-#ifdef CONFIG_FSL_CAAM
-       sec_init();
-#endif
+       if (IS_ENABLED(CONFIG_FSL_CAAM)) {
+               struct udevice *dev;
+               int ret;
+
+               ret = uclass_get_device_by_driver(UCLASS_MISC, DM_DRIVER_GET(caam_jr), &dev);
+               if (ret)
+                       printf("Failed to initialize %s: %d\n", dev->name, ret);
+       }
        setup_serial_number();
        return 0;
 }