]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
imx9: soc: Configure TRDC for M33 TCM access
authorYe Li <ye.li@nxp.com>
Thu, 19 Sep 2024 04:01:20 +0000 (12:01 +0800)
committerFabio Estevam <festevam@gmail.com>
Thu, 19 Sep 2024 03:12:41 +0000 (00:12 -0300)
On OSCCA part, M33 TCM is used for ROM PATCH and protected by ELE ROM.
So after release TRDC, we need to configure TRDC for M33 TCM,
otherwise A55 can't access the TCM.

Reviewed-by: Peng Fan <peng.fan@nxp.com>
Signed-off-by: Ye Li <ye.li@nxp.com>
arch/arm/include/asm/arch-imx9/imx-regs.h
arch/arm/mach-imx/imx9/soc.c

index 9953c33b73b670aa3fdc689ba724576749fe065f..fb6de533d12b99d9a8288017c21988cca5a2e3ee 100644 (file)
@@ -25,6 +25,7 @@
 #define ANATOP_BASE_ADDR    0x44480000UL
 
 #define BLK_CTRL_WAKEUPMIX_BASE_ADDR 0x42420000
+#define BLK_CTRL_NS_ANOMIX_BASE_ADDR  0x44210000
 #define BLK_CTRL_S_ANOMIX_BASE_ADDR  0x444f0000
 
 #define SRC_IPS_BASE_ADDR      (0x44460000)
index 3ee2f3d881fce5fade05e38b387b5ca8211e3e36..06032f2ff59f23decf51efb77ace02939739c83f 100644 (file)
@@ -792,7 +792,7 @@ int m33_prepare(void)
                (struct src_general_regs *)(ulong)SRC_GLOBAL_RBASE;
        struct blk_ctrl_s_aonmix_regs *s_regs =
                        (struct blk_ctrl_s_aonmix_regs *)BLK_CTRL_S_ANOMIX_BASE_ADDR;
-       u32 val;
+       u32 val, i;
 
        if (m33_is_rom_kicked())
                return -EPERM;
@@ -817,6 +817,18 @@ int m33_prepare(void)
        /* Set ELE LP handshake for M33 reset */
        setbits_le32(&s_regs->lp_handshake[0], BIT(6));
 
+       /* OSCCA enabled, reconfigure TRDC for TCM access, otherwise ECC init will raise error */
+       val = readl(BLK_CTRL_NS_ANOMIX_BASE_ADDR + 0x28);
+       if (val & BIT(0)) {
+               trdc_mbc_set_control(0x44270000, 1, 0, 0x6600);
+
+               for (i = 0; i < 32; i++)
+                       trdc_mbc_blk_config(0x44270000, 1, 3, 0, i, true, 0);
+
+               for (i = 0; i < 32; i++)
+                       trdc_mbc_blk_config(0x44270000, 1, 3, 1, i, true, 0);
+       }
+
        /* Clear M33 TCM for ECC */
        memset((void *)(ulong)0x201e0000, 0, 0x40000);