From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: Sascha Hauer <s.hauer@pengutronix.de>,
Barebox List <barebox@lists.infradead.org>
Subject: Re: [PATCH 03/25] ARM: i.MX: Add i.MX93 trdc support
Date: Mon, 13 Nov 2023 08:24:21 +0100 [thread overview]
Message-ID: <e055b94e-3116-992f-de16-8e37ed1b634d@pengutronix.de> (raw)
In-Reply-To: <20231110125800.1901232-4-s.hauer@pengutronix.de>
On 10.11.23 13:57, Sascha Hauer wrote:
> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
TRDC is presumably Tsomething Resource Domain Controller?
Would be nice to have a commit message spelling it out and describing
why this needs to be done in PBL for future reference.
Thanks,
Ahmad
> ---
> arch/arm/mach-imx/Makefile | 2 +-
> arch/arm/mach-imx/imx93-trdc.c | 364 +++++++++++++++++++++++++++++++++
> include/soc/imx9/trdc.h | 11 +
> 3 files changed, 376 insertions(+), 1 deletion(-)
> create mode 100644 arch/arm/mach-imx/imx93-trdc.c
> create mode 100644 include/soc/imx9/trdc.h
>
> diff --git a/arch/arm/mach-imx/Makefile b/arch/arm/mach-imx/Makefile
> index 4efac08ee8..8a1ccabe15 100644
> --- a/arch/arm/mach-imx/Makefile
> +++ b/arch/arm/mach-imx/Makefile
> @@ -33,4 +33,4 @@ obj-$(CONFIG_RESET_IMX_SRC) += src.o
> lwl-y += cpu_init.o
> pbl-y += xload-spi.o xload-common.o xload-imx-nand.o xload-gpmi-nand.o
> pbl-y += xload-qspi.o
> -pbl-$(CONFIG_ARCH_IMX93) += imx93-s4mu.o
> +pbl-$(CONFIG_ARCH_IMX93) += imx93-s4mu.o imx93-trdc.o
> diff --git a/arch/arm/mach-imx/imx93-trdc.c b/arch/arm/mach-imx/imx93-trdc.c
> new file mode 100644
> index 0000000000..a1c7d49515
> --- /dev/null
> +++ b/arch/arm/mach-imx/imx93-trdc.c
> @@ -0,0 +1,364 @@
> +// SPDX-License-Identifier: GPL-2.0+
> +/*
> + * Copyright 2022 NXP
> + */
> +#define pr_fmt(fmt) "trdc: " fmt
> +
> +#include <common.h>
> +#include <io.h>
> +#include <soc/imx9/mu_hal.h>
> +#include <soc/imx9/s400_api.h>
> +#include <soc/imx9/trdc.h>
> +#include <mach/imx/imx9-regs.h>
> +
> +#define DID_NUM 16
> +#define MBC_MAX_NUM 4
> +#define MRC_MAX_NUM 2
> +#define MBC_NUM(HWCFG) ((HWCFG >> 16) & 0xF)
> +#define MRC_NUM(HWCFG) ((HWCFG >> 24) & 0x1F)
> +
> +struct mbc_mem_dom {
> + u32 mem_glbcfg[4];
> + u32 nse_blk_index;
> + u32 nse_blk_set;
> + u32 nse_blk_clr;
> + u32 nsr_blk_clr_all;
> + u32 memn_glbac[8];
> + /* The upper only existed in the beginning of each MBC */
> + u32 mem0_blk_cfg_w[64];
> + u32 mem0_blk_nse_w[16];
> + u32 mem1_blk_cfg_w[8];
> + u32 mem1_blk_nse_w[2];
> + u32 mem2_blk_cfg_w[8];
> + u32 mem2_blk_nse_w[2];
> + u32 mem3_blk_cfg_w[8];
> + u32 mem3_blk_nse_w[2];/*0x1F0, 0x1F4 */
> + u32 reserved[2];
> +};
> +
> +struct mrc_rgn_dom {
> + u32 mrc_glbcfg[4];
> + u32 nse_rgn_indirect;
> + u32 nse_rgn_set;
> + u32 nse_rgn_clr;
> + u32 nse_rgn_clr_all;
> + u32 memn_glbac[8];
> + /* The upper only existed in the beginning of each MRC */
> + u32 rgn_desc_words[16][2]; /* 16 regions at max, 2 words per region */
> + u32 rgn_nse;
> + u32 reserved2[15];
> +};
> +
> +struct mda_inst {
> + u32 mda_w[8];
> +};
> +
> +struct trdc_mgr {
> + u32 trdc_cr;
> + u32 res0[59];
> + u32 trdc_hwcfg0;
> + u32 trdc_hwcfg1;
> + u32 res1[450];
> + struct mda_inst mda[8];
> + u32 res2[15808];
> +};
> +
> +struct trdc_mbc {
> + struct mbc_mem_dom mem_dom[DID_NUM];
> +};
> +
> +struct trdc_mrc {
> + struct mrc_rgn_dom mrc_dom[DID_NUM];
> +};
> +
> +static void *trdc_get_mbc_base(ulong trdc_reg, u32 mbc_x)
> +{
> + struct trdc_mgr *trdc_base = (struct trdc_mgr *)trdc_reg;
> + u32 mbc_num = MBC_NUM(trdc_base->trdc_hwcfg0);
> +
> + if (mbc_x >= mbc_num)
> + return 0;
> +
> + return (void *)trdc_reg + 0x10000 + 0x2000 * mbc_x;
> +}
> +
> +static void *trdc_get_mrc_base(ulong trdc_reg, u32 mrc_x)
> +{
> + struct trdc_mgr *trdc_base = (struct trdc_mgr *)trdc_reg;
> + u32 mbc_num = MBC_NUM(trdc_base->trdc_hwcfg0);
> + u32 mrc_num = MRC_NUM(trdc_base->trdc_hwcfg0);
> +
> + if (mrc_x >= mrc_num)
> + return 0;
> +
> + return (void *)trdc_reg + 0x10000 + 0x2000 * mbc_num + 0x1000 * mrc_x;
> +}
> +
> +static int trdc_mbc_set_control(ulong trdc_reg, u32 mbc_x, u32 glbac_id,
> + u32 glbac_val)
> +{
> + struct trdc_mbc *mbc_base = trdc_get_mbc_base(trdc_reg, mbc_x);
> + struct mbc_mem_dom *mbc_dom;
> +
> + if (mbc_base == 0 || glbac_id >= 8)
> + return -EINVAL;
> +
> + /* only first dom has the glbac */
> + mbc_dom = &mbc_base->mem_dom[0];
> +
> + writel(glbac_val, &mbc_dom->memn_glbac[glbac_id]);
> +
> + return 0;
> +}
> +
> +static int trdc_mbc_blk_config(ulong trdc_reg, u32 mbc_x, u32 dom_x, u32 mem_x,
> + u32 blk_x, bool sec_access, u32 glbac_id)
> +{
> + struct trdc_mbc *mbc_base = trdc_get_mbc_base(trdc_reg, mbc_x);
> + struct mbc_mem_dom *mbc_dom;
> + u32 *cfg_w, *nse_w;
> + u32 index, offset, val;
> +
> + if (mbc_base == 0 || glbac_id >= 8)
> + return -EINVAL;
> +
> + mbc_dom = &mbc_base->mem_dom[dom_x];
> +
> + switch (mem_x) {
> + case 0:
> + cfg_w = &mbc_dom->mem0_blk_cfg_w[blk_x / 8];
> + nse_w = &mbc_dom->mem0_blk_nse_w[blk_x / 32];
> + break;
> + case 1:
> + cfg_w = &mbc_dom->mem1_blk_cfg_w[blk_x / 8];
> + nse_w = &mbc_dom->mem1_blk_nse_w[blk_x / 32];
> + break;
> + case 2:
> + cfg_w = &mbc_dom->mem2_blk_cfg_w[blk_x / 8];
> + nse_w = &mbc_dom->mem2_blk_nse_w[blk_x / 32];
> + break;
> + case 3:
> + cfg_w = &mbc_dom->mem3_blk_cfg_w[blk_x / 8];
> + nse_w = &mbc_dom->mem3_blk_nse_w[blk_x / 32];
> + break;
> + default:
> + return -EINVAL;
> + };
> +
> + index = blk_x % 8;
> + offset = index * 4;
> +
> + val = readl((void __iomem *)cfg_w);
> +
> + val &= ~(0xFU << offset);
> +
> + /* MBC0-3
> + * Global 0, 0x7777 secure pri/user read/write/execute, S400 has already set it.
> + * So select MBC0_MEMN_GLBAC0
> + */
> + if (sec_access) {
> + val |= ((0x0 | (glbac_id & 0x7)) << offset);
> + writel(val, (void __iomem *)cfg_w);
> + } else {
> + val |= ((0x8 | (glbac_id & 0x7)) << offset); /* nse bit set */
> + writel(val, (void __iomem *)cfg_w);
> + }
> +
> + return 0;
> +}
> +
> +static int trdc_mrc_set_control(ulong trdc_reg, u32 mrc_x, u32 glbac_id, u32 glbac_val)
> +{
> + struct trdc_mrc *mrc_base = trdc_get_mrc_base(trdc_reg, mrc_x);
> + struct mrc_rgn_dom *mrc_dom;
> +
> + if (mrc_base == 0 || glbac_id >= 8)
> + return -EINVAL;
> +
> + /* only first dom has the glbac */
> + mrc_dom = &mrc_base->mrc_dom[0];
> +
> + pr_vdebug("mrc_dom 0x%lx\n", (ulong)mrc_dom);
> +
> + writel(glbac_val, &mrc_dom->memn_glbac[glbac_id]);
> +
> + return 0;
> +}
> +
> +static int trdc_mrc_region_config(ulong trdc_reg, u32 mrc_x, u32 dom_x, u32 addr_start,
> + u32 addr_end, bool sec_access, u32 glbac_id)
> +{
> + struct trdc_mrc *mrc_base = trdc_get_mrc_base(trdc_reg, mrc_x);
> + struct mrc_rgn_dom *mrc_dom;
> + u32 *desc_w;
> + u32 start, end;
> + u32 i, free = 8;
> + bool vld, hit = false;
> +
> + if (mrc_base == 0 || glbac_id >= 8)
> + return -EINVAL;
> +
> + mrc_dom = &mrc_base->mrc_dom[dom_x];
> +
> + addr_start &= ~0x3fff;
> + addr_end &= ~0x3fff;
> +
> + for (i = 0; i < 8; i++) {
> + desc_w = &mrc_dom->rgn_desc_words[i][0];
> +
> + start = readl((void __iomem *)desc_w) & (~0x3fff);
> + end = readl((void __iomem *)(desc_w + 1));
> + vld = end & 0x1;
> + end = end & (~0x3fff);
> +
> + if (start == 0 && end == 0 && !vld && free >= 8)
> + free = i;
> +
> + /* Check all the region descriptors, even overlap */
> + if (addr_start >= end || addr_end <= start || !vld)
> + continue;
> +
> + /* MRC0,1
> + * Global 0, 0x7777 secure pri/user read/write/execute, S400 has already set it.
> + * So select MRCx_MEMN_GLBAC0
> + */
> + if (sec_access) {
> + writel(start | (glbac_id & 0x7), (void __iomem *)desc_w);
> + writel(end | 0x1, (void __iomem *)(desc_w + 1));
> + } else {
> + writel(start | (glbac_id & 0x7), (void __iomem *)desc_w);
> + writel(end | 0x1 | 0x10, (void __iomem *)(desc_w + 1));
> + }
> +
> + if (addr_start >= start && addr_end <= end)
> + hit = true;
> + }
> +
> + if (!hit) {
> + if (free >= 8)
> + return -EFAULT;
> +
> + desc_w = &mrc_dom->rgn_desc_words[free][0];
> +
> + if (sec_access) {
> + writel(addr_start | (glbac_id & 0x7), (void __iomem *)desc_w);
> + writel(addr_end | 0x1, (void __iomem *)(desc_w + 1));
> + } else {
> + writel(addr_start | (glbac_id & 0x7), (void __iomem *)desc_w);
> + writel((addr_end | 0x1 | 0x10), (void __iomem *)(desc_w + 1));
> + }
> + }
> +
> + return 0;
> +}
> +
> +static bool trdc_mrc_enabled(ulong trdc_base)
> +{
> + return (!!(readl((void __iomem *)trdc_base) & 0x8000));
> +}
> +
> +static int release_rdc(u8 xrdc)
> +{
> + ulong s_mu_base = 0x47520000UL;
> + struct sentinel_msg msg;
> + int ret;
> + u32 rdc_id;
> +
> + switch (xrdc) {
> + case 0:
> + rdc_id = 0x74;
> + break;
> + case 1:
> + rdc_id = 0x78;
> + break;
> + case 2:
> + rdc_id = 0x82;
> + break;
> + case 3:
> + rdc_id = 0x86;
> + break;
> + default:
> + return -EINVAL;
> + }
> +
> + msg.version = AHAB_VERSION;
> + msg.tag = AHAB_CMD_TAG;
> + msg.size = 2;
> + msg.command = ELE_RELEASE_RDC_REQ;
> + msg.data[0] = (rdc_id << 8) | 0x2; /* A55 */
> +
> + mu_hal_init(s_mu_base);
> + mu_hal_sendmsg(s_mu_base, 0, *((u32 *)&msg));
> + mu_hal_sendmsg(s_mu_base, 1, msg.data[0]);
> +
> + ret = mu_hal_receivemsg(s_mu_base, 0, (u32 *)&msg);
> + if (ret)
> + return ret;
> +
> + ret = mu_hal_receivemsg(s_mu_base, 1, &msg.data[0]);
> + if (ret)
> + return -EIO;
> +
> + if ((msg.data[0] & 0xff) == 0xd6)
> + return 0;
> +
> + return -EIO;
> +}
> +
> +void imx9_trdc_init(void)
> +{
> + unsigned long base = MX9_TRDC_NICMIX_BASE_ADDR;
> + int ret = 0, i;
> +
> + ret |= release_rdc(0);
> + ret |= release_rdc(2);
> + ret |= release_rdc(1);
> + ret |= release_rdc(3);
> +
> + if (ret)
> + return;
> +
> + /* Set OCRAM to RWX for secure, when OEM_CLOSE, the image is RX only */
> + trdc_mbc_set_control(base, 3, 0, 0x7700);
> +
> + for (i = 0; i < 40; i++)
> + trdc_mbc_blk_config(base, 3, 3, 0, i, true, 0);
> +
> + for (i = 0; i < 40; i++)
> + trdc_mbc_blk_config(base, 3, 3, 1, i, true, 0);
> +
> + for (i = 0; i < 40; i++)
> + trdc_mbc_blk_config(base, 3, 0, 0, i, true, 0);
> +
> + for (i = 0; i < 40; i++)
> + trdc_mbc_blk_config(base, 3, 0, 1, i, true, 0);
> +
> + /* TRDC mega */
> + if (!trdc_mrc_enabled(base))
> + return;
> +
> + /* DDR */
> + trdc_mrc_set_control(base, 0, 0, 0x7777);
> + /* S400*/
> + trdc_mrc_region_config(base, 0, 0, 0x80000000, 0xFFFFFFFF, false, 0);
> + /* MTR */
> + trdc_mrc_region_config(base, 0, 1, 0x80000000, 0xFFFFFFFF, false, 0);
> + /* M33 */
> + trdc_mrc_region_config(base, 0, 2, 0x80000000, 0xFFFFFFFF, false, 0);
> + /* A55*/
> + trdc_mrc_region_config(base, 0, 3, 0x80000000, 0xFFFFFFFF, false, 0);
> + /* For USDHC1 to DDR, USDHC1 is default force to non-secure */
> + trdc_mrc_region_config(base, 0, 5, 0x80000000, 0xFFFFFFFF, false, 0);
> + /* For USDHC2 to DDR, USDHC2 is default force to non-secure */
> + trdc_mrc_region_config(base, 0, 6, 0x80000000, 0xFFFFFFFF, false, 0);
> + /* eDMA */
> + trdc_mrc_region_config(base, 0, 7, 0x80000000, 0xFFFFFFFF, false, 0);
> + /* CoreSight, TestPort */
> + trdc_mrc_region_config(base, 0, 8, 0x80000000, 0xFFFFFFFF, false, 0);
> + /* DAP */
> + trdc_mrc_region_config(base, 0, 9, 0x80000000, 0xFFFFFFFF, false, 0);
> + /* SoC masters */
> + trdc_mrc_region_config(base, 0, 10, 0x80000000, 0xFFFFFFFF, false, 0);
> + /* USB */
> + trdc_mrc_region_config(base, 0, 11, 0x80000000, 0xFFFFFFFF, false, 0);
> +}
> diff --git a/include/soc/imx9/trdc.h b/include/soc/imx9/trdc.h
> new file mode 100644
> index 0000000000..624e267ab6
> --- /dev/null
> +++ b/include/soc/imx9/trdc.h
> @@ -0,0 +1,11 @@
> +/* SPDX-License-Identifier: GPL-2.0+ */
> +/*
> + * Copyright 2022 NXP
> + */
> +
> +#ifndef __ASM_ARCH_IMX9_TRDC_H
> +#define __ASM_ARCH_IMX9_TRDC_H
> +
> +void imx9_trdc_init(void);
> +
> +#endif
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
next prev parent reply other threads:[~2023-11-13 7:25 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-10 12:57 [PATCH 00/25] Add i.MX93 support Sascha Hauer
2023-11-10 12:57 ` [PATCH 01/25] ARM: initial i.MX9 support Sascha Hauer
2023-11-10 12:57 ` [PATCH 02/25] ARM: i.MX: Add i.MX93 s4mu support Sascha Hauer
2023-11-13 7:25 ` Ahmad Fatoum
2023-11-10 12:57 ` [PATCH 03/25] ARM: i.MX: Add i.MX93 trdc support Sascha Hauer
2023-11-13 7:24 ` Ahmad Fatoum [this message]
2023-11-13 8:11 ` Sascha Hauer
2023-11-10 12:57 ` [PATCH 04/25] scripts: Add imx9image tool Sascha Hauer
2023-11-10 12:57 ` [PATCH 05/25] scripts: imx9image: Add PBL size option Sascha Hauer
2023-11-10 12:57 ` [PATCH 06/25] clk: Add i.MX93 clock support Sascha Hauer
2023-11-10 12:57 ` [PATCH 07/25] clk: imx: clk-fracn-gppll: make usable from PBL Sascha Hauer
2023-11-10 12:57 ` [PATCH 08/25] gpio-vf610: Add i.MX93 support Sascha Hauer
2023-11-10 12:57 ` [PATCH 09/25] iomux: " Sascha Hauer
2023-11-10 12:57 ` [PATCH 10/25] watchdog: Add ULP wdog support Sascha Hauer
2023-11-10 12:57 ` [PATCH 11/25] I2c: Add i2c_8bit_addr_from_msg() Sascha Hauer
2023-11-10 12:57 ` [PATCH 12/25] i2c: Add lpi2c support Sascha Hauer
2023-11-10 12:57 ` [PATCH 13/25] ARM: Add imx93.dtsi for USB Sascha Hauer
2023-11-10 12:57 ` [PATCH 14/25] serial: Add lpuart32 driver Sascha Hauer
2023-11-10 12:57 ` [PATCH 15/25] ARM: i.MX: add i.MX9 debug_ll support Sascha Hauer
2023-11-10 12:57 ` [PATCH 16/25] ARM: Add TQ MBA9XXXCA board support Sascha Hauer
2023-11-10 12:57 ` [PATCH 17/25] ARM: i.MX93: Add DDR size read support Sascha Hauer
2023-11-10 12:57 ` [PATCH 18/25] ARM: i.MX: romapi: rename functions to *romapi* Sascha Hauer
2023-11-10 12:57 ` [PATCH 19/25] ARM: i.MX: romapi: Implement i.MX93 support Sascha Hauer
2023-11-10 12:57 ` [PATCH 20/25] ARM: i.MX: atf: add imx93_load_and_start_image_via_tfa() Sascha Hauer
2023-11-10 12:57 ` [PATCH 21/25] imx-usb-loader: Add i.MX9 support Sascha Hauer
2023-11-10 12:57 ` [PATCH 22/25] spi: spi-nxp-fspi: Enable for i.MX9 Sascha Hauer
2023-11-10 12:57 ` [PATCH 23/25] usb: i.MX chipidea: Enable usbmisc driver " Sascha Hauer
2023-11-10 12:57 ` [PATCH 24/25] ARM: Update imx_v8_defconfig Sascha Hauer
2023-11-10 12:58 ` [PATCH 25/25] ARM: multi_v8_defconfig: enable i.MX9 boards Sascha Hauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=e055b94e-3116-992f-de16-8e37ed1b634d@pengutronix.de \
--to=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=s.hauer@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox