]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
crypto/fsl: allow accessing Job Ring from non-TrustZone
authorEmanuele Ghidoli <emanuele.ghidoli@toradex.com>
Thu, 28 Mar 2024 10:30:12 +0000 (11:30 +0100)
committerFabio Estevam <festevam@gmail.com>
Sat, 30 Mar 2024 16:59:10 +0000 (13:59 -0300)
Add a new kconfig option to allow non-secure world access
to the CAAM Job Ring.
This is needed, for example, when running linux without
OP-TEE services, as it's done on Colibri iMX7.

Fixes: 51f1357f3428 ("Revert "drivers/crypto/fsl: assign job-rings to non-TrustZone"")
Signed-off-by: Emanuele Ghidoli <emanuele.ghidoli@toradex.com>
drivers/crypto/fsl/Kconfig
drivers/crypto/fsl/jr.c
drivers/crypto/fsl/jr.h

index eaad19633f1dc9c83dd6aeae1cb6149f125692df..294e1c8a44ef78259b5ca4bdfd1a0e2a7b091443 100644 (file)
@@ -62,6 +62,12 @@ config SYS_FSL_SEC_LE
 
 if FSL_CAAM
 
+config FSL_CAAM_JR_NTZ_ACCESS
+       bool "Give CAAM Job Ring access to non-secure world"
+       help
+         It is needed when OP-TEE is not used and Freescale CAAM Job Ring linux
+         driver is used.
+
 config FSL_CAAM_RNG
        bool "Enable Random Number Generator support"
        depends on DM_RNG
index ceb66dd6270d92433d62ad56330df3559911999a..203f1625215955a3fc8edac0483eaf65d5dd6802 100644 (file)
@@ -673,6 +673,21 @@ static int rng_init(uint8_t sec_idx, ccsr_sec_t *sec)
        return ret;
 }
 
+#if CONFIG_IS_ENABLED(FSL_CAAM_JR_NTZ_ACCESS)
+static void jr_setown_non_trusted(ccsr_sec_t *sec)
+{
+       u32 jrown_ns;
+       int i;
+
+       /* Set ownership of job rings to non-TrustZone mode */
+       for (i = 0; i < ARRAY_SIZE(sec->jrliodnr); i++) {
+               jrown_ns = sec_in32(&sec->jrliodnr[i].ms);
+               jrown_ns |= JROWN_NS | JRMID_NS;
+               sec_out32(&sec->jrliodnr[i].ms, jrown_ns);
+       }
+}
+#endif
+
 int sec_init_idx(uint8_t sec_idx)
 {
        int ret = 0;
@@ -761,6 +776,10 @@ int sec_init_idx(uint8_t sec_idx)
 #if CONFIG_IS_ENABLED(OF_CONTROL)
 init:
 #endif
+#if CONFIG_IS_ENABLED(FSL_CAAM_JR_NTZ_ACCESS)
+       jr_setown_non_trusted(sec);
+#endif
+
        ret = jr_init(sec_idx, caam);
        if (ret < 0) {
                printf("SEC%u:  initialization failed\n", sec_idx);
index 4e4c4af5805f850a2db44197131fe5708269c440..b136cd8d05a9f64340f715c7a9c257649900f5e1 100644 (file)
@@ -37,6 +37,8 @@
 #define JRNSLIODN_MASK         0x0fff0000
 #define JRSLIODN_SHIFT         0
 #define JRSLIODN_MASK          0x00000fff
+#define JROWN_NS               0x00000008
+#define JRMID_NS               0x00000001
 
 #define JRDID_MS_PRIM_DID      BIT(0)
 #define JRDID_MS_PRIM_TZ       BIT(4)