mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Marco Felsch <m.felsch@pengutronix.de>
To: Sascha Hauer <s.hauer@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 3/5] ARM: mach-imx: tzasc: add region configure helpers
Date: Mon, 23 Jun 2025 10:23:29 +0200	[thread overview]
Message-ID: <20250623082329.7qtmxoe4szlp7sjr@pengutronix.de> (raw)
In-Reply-To: <aFVY9WegA7J0Tb7L@pengutronix.de>

On 25-06-20, Sascha Hauer wrote:
> On Thu, Jun 19, 2025 at 05:25:54PM +0200, Marco Felsch wrote:
> > At the moment the TZC380 driver is very limited and focused on minimal
> > platform setup unlike the TZC400 driver.
> > 
> > This commit adds helper functions to setup any number of TZASC regions
> > of any size which is required by later commits to setup an early
> > non-secure TZASC region1.
> > 
> > The code is based on the TZC400 barebox driver and the TZC380 OP-TEE
> > driver.
> > 
> > Signed-off-by: Marco Felsch <m.felsch@pengutronix.de>
> > ---
> >  arch/arm/mach-imx/tzasc.c | 235 ++++++++++++++++++++++++++++++++++++++
> >  1 file changed, 235 insertions(+)
> > 
> > diff --git a/arch/arm/mach-imx/tzasc.c b/arch/arm/mach-imx/tzasc.c
> > index 4cb4d7c5cffc..4f6da6016601 100644
> > --- a/arch/arm/mach-imx/tzasc.c
> > +++ b/arch/arm/mach-imx/tzasc.c
> > @@ -1,11 +1,76 @@
> >  // SPDX-License-Identifier: GPL-2.0-only
> >  
> > +#define pr_fmt(fmt) "tzc380: " fmt
> > +
> > +#include <common.h>
> >  #include <mach/imx/generic.h>
> >  #include <mach/imx/tzasc.h>
> > +#include <linux/bitfield.h>
> >  #include <linux/bitops.h>
> > +#include <linux/log2.h>
> > +#include <linux/sizes.h>
> >  #include <mach/imx/imx8m-regs.h>
> >  #include <io.h>
> >  
> > +/*******************************************************************************
> > + *                         TZC380 defines
> > + ******************************************************************************/
> > +
> > +#define TZC380_BUILD_CONFIG		0x000
> > +#define   TZC380_BUILD_CONFIG_AW	GENMASK(13, 8)
> > +#define   TZC380_BUILD_CONFIG_NR	GENMASK(4, 0)
> > +
> > +/*
> > + * All TZC region configuration registers are placed one after another. It
> > + * depicts size of block of registers for programming each region.
> > + */
> > +#define TZC380_REGION_REG_SIZE		0x10
> > +
> > +#define TZC380_REGION_SETUP_LOW_0	0x100
> > +#define TZC380_REGION_SETUP_HIGH_0	0x104
> > +#define TZC380_REGION_ATTR_0		0x108
> > +#define   TZC380_REGION_SP		GENMASK(31, 28)
> > +#define   TZC380_SUBREGION_DIS_MASK	GENMASK(15, 8)
> > +#define   TZC380_REGION_SIZE		GENMASK(6, 1)
> > +#define   TZC380_REGION_EN		BIT(0)
> > +
> > +/* ID Registers */
> > +#define TZC380_PID0_OFF			0xfe0
> > +#define TZC380_PID1_OFF			0xfe4
> > +#define   TZC380_PERIPHERAL_ID		0x380
> > +#define TZC380_PID2_OFF			0xfe8
> > +#define TZC380_PID3_OFF			0xfec
> > +#define TZC380_PID4_OFF			0xfd0
> > +#define TZC380_CID0_OFF			0xff0
> > +#define TZC380_CID1_OFF			0xff4
> > +#define TZC380_CID2_OFF			0xff8
> > +
> > +#define TZC380_REGION_OFFSET(region_no)		\
> > +		(TZC380_REGION_REG_SIZE * (region_no))
> > +#define TZC380_REGION_SETUP_LOW(region_no)	\
> > +		(TZC380_REGION_OFFSET(region_no) + TZC380_REGION_SETUP_LOW_0)
> > +#define TZC380_REGION_SETUP_HIGH(region_no)	\
> > +		(TZC380_REGION_OFFSET(region_no) + TZC380_REGION_SETUP_HIGH_0)
> > +#define TZC380_REGION_ATTR(region_no)		\
> > +		(TZC380_REGION_OFFSET(region_no) + TZC380_REGION_ATTR_0)
> > +
> > +#define TZC380_REGION_SP_NS_W		FIELD_PREP(TZC380_REGION_SP, BIT(0))
> > +#define TZC380_REGION_SP_NS_R		FIELD_PREP(TZC380_REGION_SP, BIT(1))
> > +#define TZC380_REGION_SP_S_W		FIELD_PREP(TZC380_REGION_SP, BIT(2))
> > +#define TZC380_REGION_SP_S_R		FIELD_PREP(TZC380_REGION_SP, BIT(3))
> > +
> > +#define TZC380_REGION_SP_ALL		\
> > +		(TZC380_REGION_SP_NS_W | TZC380_REGION_SP_NS_R | \
> > +		 TZC380_REGION_SP_S_W | TZC380_REGION_SP_S_R)
> > +#define TZC380_REGION_SP_S_RW		\
> > +		(TZC380_REGION_SP_S_W | TZC380_REGION_SP_S_R)
> > +#define TZC380_REGION_SP_NS_RW		\
> > +		(TZC380_REGION_SP_NS_W | TZC380_REGION_SP_NS_R)
> > +
> > +/*******************************************************************************
> > + *                         SoC specific defines
> > + ******************************************************************************/
> > +
> >  #define GPR_TZASC_EN					BIT(0)
> >  #define GPR_TZASC_ID_SWAP_BYPASS		BIT(1)
> >  #define GPR_TZASC_EN_LOCK				BIT(16)
> > @@ -14,6 +79,176 @@
> >  #define MX8M_TZASC_REGION_ATTRIBUTES_0		(MX8M_TZASC_BASE_ADDR + 0x108)
> >  #define MX8M_TZASC_REGION_ATTRIBUTES_0_SP	GENMASK(31, 28)
> >  
> > +/*
> > + * Implementation defined values used to validate inputs later.
> > + * Filters : max of 4 ; 0 to 3
> > + * Regions : max of 9 ; 0 to 8
> > + * Address width : Values between 32 to 64
> > + */
> > +struct tzc380_instance {
> > +	void __iomem *base;
> > +	uint8_t addr_width;
> > +	uint8_t num_regions;
> > +};
> > +/* Some platforms like i.MX6 does have two tzc380 controllers */
> > +static struct tzc380_instance tzc380_inst[2];
> > +
> > +static inline unsigned int tzc_read_peripheral_id(void __iomem *base)
> > +{
> > +	unsigned int id;
> > +
> > +	id = in_le32(base + TZC380_PID0_OFF);
> > +	/* Masks DESC part in PID1 */
> > +	id |= ((in_le32(base + TZC380_PID1_OFF) & 0xFU) << 8U);
> > +
> > +	return id;
> > +}
> > +
> > +static struct tzc380_instance *tzc380_init(void __iomem *base)
> > +{
> > +	struct tzc380_instance *tzc380 = &tzc380_inst[0];
> > +	unsigned int tzc380_id;
> > +	unsigned int tzc380_build;
> > +
> > +	if (tzc380->base)
> > +		tzc380 = &tzc380_inst[1];
> > +
> > +	if (tzc380->base)
> > +		panic("TZC-380: No free memory\n");
> > +
> > +	tzc380->base = base;
> > +
> > +	tzc380_id = tzc_read_peripheral_id(base);
> > +	if (tzc380_id != TZC380_PERIPHERAL_ID)
> > +		panic("TZC-380 : Wrong device ID (0x%x).\n", tzc380_id);
> > +
> > +	/* Save values we will use later. */
> > +	tzc380_build = in_le32(base + TZC380_BUILD_CONFIG);
> > +	tzc380->addr_width  = FIELD_GET(TZC380_BUILD_CONFIG_AW, tzc380_build) + 1;
> > +	tzc380->num_regions = FIELD_GET(TZC380_BUILD_CONFIG_NR, tzc380_build) + 1;
> > +
> > +	return tzc380;
> > +}
> > +
> > +static void
> > +tzc380_configure_region(struct tzc380_instance *tzc380, unsigned int region,
> > +			uint64_t region_base, unsigned int region_attr)
> > +{
> > +	void __iomem *base = tzc380->base;
> > +
> > +	/* Do range checks on regions */
> > +	ASSERT((region < tzc380->num_regions));
> > +
> > +	pr_debug("TrustZone : Configuring region %u\n", region);
> 
> pr_fmt is already set, so this expands to "tzc380: TrustZone :" which
> seems redundant. We should remove the "TrustZone :" No need to resend
> just for that, I can fix it while applying.

You're right, thanks for the fixup :)

Regards,
  Marco

> 
> Sascha
> 
> -- 
> 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 |
> 



  reply	other threads:[~2025-06-23  8:24 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-19 15:25 [PATCH 1/5] ARM: i.MX6QDL: add TZASC1/2 defines Marco Felsch
2025-06-19 15:25 ` [PATCH 2/5] ARM: i.MX6Q: add imx6_get_mmdc_sdram_size Marco Felsch
2025-06-24 10:35   ` Ahmad Fatoum
2025-06-19 15:25 ` [PATCH 3/5] ARM: mach-imx: tzasc: add region configure helpers Marco Felsch
2025-06-20 12:49   ` Sascha Hauer
2025-06-23  8:23     ` Marco Felsch [this message]
2025-06-24 10:40   ` Ahmad Fatoum
2025-06-19 15:25 ` [PATCH 4/5] ARM: mach-imx: tzasc: add imx6q_tzc380_early_ns_region1() Marco Felsch
2025-06-24 10:38   ` Ahmad Fatoum
2025-06-24 10:55     ` Marco Felsch
2025-06-24 15:44       ` Ahmad Fatoum
2025-06-19 15:25 ` [PATCH 5/5] ARM: mach-imx: tzasc: add imx6q_tzc380_is_enabled Marco Felsch
2025-06-24 10:36   ` Ahmad Fatoum
2025-06-24 10:34 ` [PATCH 1/5] ARM: i.MX6QDL: add TZASC1/2 defines Ahmad Fatoum

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=20250623082329.7qtmxoe4szlp7sjr@pengutronix.de \
    --to=m.felsch@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