public inbox for linux-tegra@vger.kernel.org
 help / color / mirror / Atom feed
From: Jon Hunter <jonathanh@nvidia.com>
To: Ashish Mhetre <amhetre@nvidia.com>,
	krzk@kernel.org, robh@kernel.org, conor+dt@kernel.org,
	=thierry.reding@kernel.org, sumitg@nvidia.com
Cc: linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
	linux-tegra@vger.kernel.org
Subject: Re: [PATCH V2 2/2] memory: tegra: Add T238 MC support
Date: Wed, 29 Apr 2026 10:29:28 +0100	[thread overview]
Message-ID: <acde30a6-23b1-4f1e-8f09-ddfe20f22390@nvidia.com> (raw)
In-Reply-To: <20260427073419.567360-3-amhetre@nvidia.com>


On 27/04/2026 08:34, Ashish Mhetre wrote:

We prefer to use 'Tegra238' and not T238. However, don't worry too much 
about that unless there are other comments.

> Add Memory Controller driver support for Tegra238 SOC, including:
> - MC client definitions with Tegra238-specific stream IDs
> - Reuse of Tegra234 ICC operations for bandwidth management via BPMP-FW
> - Device tree compatible string "nvidia,tegra238-mc"
> 
> Export tegra234_mc_icc_ops so it can be shared with the Tegra238 MC
> driver, as both SoCs use the same ICC aggregation and bandwidth
> management logic.
> 
> Signed-off-by: Ashish Mhetre <amhetre@nvidia.com>
> ---
>   drivers/memory/tegra/Makefile   |   1 +
>   drivers/memory/tegra/mc.c       |   3 +
>   drivers/memory/tegra/mc.h       |   9 +
>   drivers/memory/tegra/tegra234.c |   2 +-
>   drivers/memory/tegra/tegra238.c | 391 ++++++++++++++++++++++++++++++++
>   5 files changed, 405 insertions(+), 1 deletion(-)
>   create mode 100644 drivers/memory/tegra/tegra238.c
> 
> diff --git a/drivers/memory/tegra/Makefile b/drivers/memory/tegra/Makefile
> index 6334601e6120..7c2fca12076b 100644
> --- a/drivers/memory/tegra/Makefile
> +++ b/drivers/memory/tegra/Makefile
> @@ -10,6 +10,7 @@ tegra-mc-$(CONFIG_ARCH_TEGRA_210_SOC) += tegra210.o
>   tegra-mc-$(CONFIG_ARCH_TEGRA_186_SOC) += tegra186.o
>   tegra-mc-$(CONFIG_ARCH_TEGRA_194_SOC) += tegra186.o tegra194.o
>   tegra-mc-$(CONFIG_ARCH_TEGRA_234_SOC) += tegra186.o tegra234.o
> +tegra-mc-$(CONFIG_ARCH_TEGRA_238_SOC) += tegra186.o tegra234.o tegra238.o
>   tegra-mc-$(CONFIG_ARCH_TEGRA_264_SOC) += tegra186.o tegra264.o
>   
>   obj-$(CONFIG_TEGRA_MC) += tegra-mc.o
> diff --git a/drivers/memory/tegra/mc.c b/drivers/memory/tegra/mc.c
> index d620660da331..10ef3c323e22 100644
> --- a/drivers/memory/tegra/mc.c
> +++ b/drivers/memory/tegra/mc.c
> @@ -49,6 +49,9 @@ static const struct of_device_id tegra_mc_of_match[] = {
>   #ifdef CONFIG_ARCH_TEGRA_234_SOC
>   	{ .compatible = "nvidia,tegra234-mc", .data = &tegra234_mc_soc },
>   #endif
> +#ifdef CONFIG_ARCH_TEGRA_238_SOC
> +	{ .compatible = "nvidia,tegra238-mc", .data = &tegra238_mc_soc },
> +#endif
>   #ifdef CONFIG_ARCH_TEGRA_264_SOC
>   	{ .compatible = "nvidia,tegra264-mc", .data = &tegra264_mc_soc },
>   #endif
> diff --git a/drivers/memory/tegra/mc.h b/drivers/memory/tegra/mc.h
> index 649b54369263..e94d265d7b67 100644
> --- a/drivers/memory/tegra/mc.h
> +++ b/drivers/memory/tegra/mc.h
> @@ -240,6 +240,14 @@ extern const struct tegra_mc_soc tegra194_mc_soc;
>   extern const struct tegra_mc_soc tegra234_mc_soc;
>   #endif
>   
> +#if defined(CONFIG_ARCH_TEGRA_234_SOC) || defined(CONFIG_ARCH_TEGRA_238_SOC)
> +extern const struct tegra_mc_icc_ops tegra234_mc_icc_ops;
> +#endif
> +
> +#ifdef CONFIG_ARCH_TEGRA_238_SOC
> +extern const struct tegra_mc_soc tegra238_mc_soc;
> +#endif
> +
>   #ifdef CONFIG_ARCH_TEGRA_264_SOC
>   extern const struct tegra_mc_soc tegra264_mc_soc;
>   #endif
> @@ -256,6 +264,7 @@ extern const struct tegra_mc_ops tegra30_mc_ops;
>   #if defined(CONFIG_ARCH_TEGRA_186_SOC) || \
>       defined(CONFIG_ARCH_TEGRA_194_SOC) || \
>       defined(CONFIG_ARCH_TEGRA_234_SOC) || \
> +    defined(CONFIG_ARCH_TEGRA_238_SOC) || \
>       defined(CONFIG_ARCH_TEGRA_264_SOC)
>   extern const struct tegra_mc_ops tegra186_mc_ops;
>   #endif
> diff --git a/drivers/memory/tegra/tegra234.c b/drivers/memory/tegra/tegra234.c
> index 87b22038a5fb..9fbd34d4abe0 100644
> --- a/drivers/memory/tegra/tegra234.c
> +++ b/drivers/memory/tegra/tegra234.c
> @@ -1125,7 +1125,7 @@ static int tegra234_mc_icc_get_init_bw(struct icc_node *node, u32 *avg, u32 *pea
>   	return 0;
>   }
>   
> -static const struct tegra_mc_icc_ops tegra234_mc_icc_ops = {
> +const struct tegra_mc_icc_ops tegra234_mc_icc_ops = {
>   	.xlate = tegra_mc_icc_xlate,
>   	.aggregate = tegra234_mc_icc_aggregate,
>   	.get_bw = tegra234_mc_icc_get_init_bw,
> diff --git a/drivers/memory/tegra/tegra238.c b/drivers/memory/tegra/tegra238.c
> new file mode 100644
> index 000000000000..938c8985600e
> --- /dev/null
> +++ b/drivers/memory/tegra/tegra238.c
> @@ -0,0 +1,391 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> +/*
> + * Copyright (C) 2026, NVIDIA CORPORATION.  All rights reserved.
> + */
> +
> +#include <soc/tegra/mc.h>
> +
> +#include <dt-bindings/memory/tegra234-mc.h>
> +#include <dt-bindings/memory/nvidia,tegra238-mc.h>
> +#include <linux/interconnect.h>
> +#include <linux/tegra-icc.h>
> +
> +#include <soc/tegra/bpmp.h>
> +#include "mc.h"
> +
> +static const struct tegra_mc_client tegra238_mc_clients[] = {
> +	{
> +		.id = TEGRA234_MEMORY_CLIENT_HDAR,
> +		.name = "hdar",
> +		.bpmp_id = TEGRA_ICC_BPMP_HDA,
> +		.type = TEGRA_ICC_ISO_AUDIO,
> +		.sid = TEGRA238_SID_HDA,
> +		.regs = {
> +			.sid = {
> +				.override = 0xa8,
> +				.security = 0xac,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_HDAW,
> +		.name = "hdaw",
> +		.bpmp_id = TEGRA_ICC_BPMP_HDA,
> +		.type = TEGRA_ICC_ISO_AUDIO,
> +		.sid = TEGRA238_SID_HDA,
> +		.regs = {
> +			.sid = {
> +				.override = 0x1a8,
> +				.security = 0x1ac,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_SDMMCRAB,
> +		.name = "sdmmcrab",
> +		.bpmp_id = TEGRA_ICC_BPMP_SDMMC_4,
> +		.type = TEGRA_ICC_NISO,
> +		.sid = TEGRA238_SID_SDMMC4A,
> +		.regs = {
> +			.sid = {
> +				.override = 0x318,
> +				.security = 0x31c,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_SDMMCWAB,
> +		.name = "sdmmcwab",
> +		.bpmp_id = TEGRA_ICC_BPMP_SDMMC_4,
> +		.type = TEGRA_ICC_NISO,
> +		.sid = TEGRA238_SID_SDMMC4A,
> +		.regs = {
> +			.sid = {
> +				.override = 0x338,
> +				.security = 0x33c,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_APER,
> +		.name = "aper",
> +		.bpmp_id = TEGRA_ICC_BPMP_APE,
> +		.type = TEGRA_ICC_ISO_AUDIO,
> +		.sid = TEGRA238_SID_ISO_APE0,
> +		.regs = {
> +			.sid = {
> +				.override = 0x3d0,
> +				.security = 0x3d4,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_APEW,
> +		.name = "apew",
> +		.bpmp_id = TEGRA_ICC_BPMP_APE,
> +		.type = TEGRA_ICC_ISO_AUDIO,
> +		.sid = TEGRA238_SID_ISO_APE0,
> +		.regs = {
> +			.sid = {
> +				.override = 0x3d8,
> +				.security = 0x3dc,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_NVDISPLAYR,
> +		.name = "nvdisplayr",
> +		.bpmp_id = TEGRA_ICC_BPMP_DISPLAY,
> +		.type = TEGRA_ICC_ISO_DISPLAY,
> +		.sid = TEGRA238_SID_ISO_NVDISPLAY,
> +		.regs = {
> +			.sid = {
> +				.override = 0x490,
> +				.security = 0x494,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_NVDISPLAYR1,
> +		.name = "nvdisplayr1",
> +		.bpmp_id = TEGRA_ICC_BPMP_DISPLAY,
> +		.type = TEGRA_ICC_ISO_DISPLAY,
> +		.sid = TEGRA238_SID_ISO_NVDISPLAY,
> +		.regs = {
> +			.sid = {
> +				.override = 0x508,
> +				.security = 0x50c,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_BPMPR,
> +		.name = "bpmpr",
> +		.sid = TEGRA238_SID_BPMP,
> +		.regs = {
> +			.sid = {
> +				.override = 0x498,
> +				.security = 0x49c,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_BPMPW,
> +		.name = "bpmpw",
> +		.sid = TEGRA238_SID_BPMP,
> +		.regs = {
> +			.sid = {
> +				.override = 0x4a0,
> +				.security = 0x4a4,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_BPMPDMAR,
> +		.name = "bpmpdmar",
> +		.sid = TEGRA238_SID_BPMP,
> +		.regs = {
> +			.sid = {
> +				.override = 0x4a8,
> +				.security = 0x4ac,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_BPMPDMAW,
> +		.name = "bpmpdmaw",
> +		.sid = TEGRA238_SID_BPMP,
> +		.regs = {
> +			.sid = {
> +				.override = 0x4b0,
> +				.security = 0x4b4,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_APEDMAR,
> +		.name = "apedmar",
> +		.bpmp_id = TEGRA_ICC_BPMP_APEDMA,
> +		.type = TEGRA_ICC_ISO_AUDIO,
> +		.sid = TEGRA238_SID_ISO_APE1,
> +		.regs = {
> +			.sid = {
> +				.override = 0x4f8,
> +				.security = 0x4fc,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_APEDMAW,
> +		.name = "apedmaw",
> +		.bpmp_id = TEGRA_ICC_BPMP_APEDMA,
> +		.type = TEGRA_ICC_ISO_AUDIO,
> +		.sid = TEGRA238_SID_ISO_APE1,
> +		.regs = {
> +			.sid = {
> +				.override = 0x500,
> +				.security = 0x504,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_VICSRD,
> +		.name = "vicsrd",
> +		.bpmp_id = TEGRA_ICC_BPMP_VIC,
> +		.type = TEGRA_ICC_NISO,
> +		.sid = TEGRA238_SID_VIC,
> +		.regs = {
> +			.sid = {
> +				.override = 0x360,
> +				.security = 0x364,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_VICSWR,
> +		.name = "vicswr",
> +		.bpmp_id = TEGRA_ICC_BPMP_VIC,
> +		.type = TEGRA_ICC_NISO,
> +		.sid = TEGRA238_SID_VIC,
> +		.regs = {
> +			.sid = {
> +				.override = 0x368,
> +				.security = 0x36c,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_NVDECSRD,
> +		.name = "nvdecsrd",
> +		.bpmp_id = TEGRA_ICC_BPMP_NVDEC,
> +		.type = TEGRA_ICC_NISO,
> +		.sid = TEGRA238_SID_NVDEC,
> +		.regs = {
> +			.sid = {
> +				.override = 0x3c0,
> +				.security = 0x3c4,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_NVDECSWR,
> +		.name = "nvdecswr",
> +		.bpmp_id = TEGRA_ICC_BPMP_NVDEC,
> +		.type = TEGRA_ICC_NISO,
> +		.sid = TEGRA238_SID_NVDEC,
> +		.regs = {
> +			.sid = {
> +				.override = 0x3c8,
> +				.security = 0x3cc,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_NVENCSRD,
> +		.name = "nvencsrd",
> +		.bpmp_id = TEGRA_ICC_BPMP_NVENC,
> +		.type = TEGRA_ICC_NISO,
> +		.sid = TEGRA238_SID_NVENC,
> +		.regs = {
> +			.sid = {
> +				.override = 0xe0,
> +				.security = 0xe4,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_NVENCSWR,
> +		.name = "nvencswr",
> +		.bpmp_id = TEGRA_ICC_BPMP_NVENC,
> +		.type = TEGRA_ICC_NISO,
> +		.sid = TEGRA238_SID_NVENC,
> +		.regs = {
> +			.sid = {
> +				.override = 0x158,
> +				.security = 0x15c,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_PCIE0R,
> +		.name = "pcie0r",
> +		.bpmp_id = TEGRA_ICC_BPMP_PCIE_0,
> +		.type = TEGRA_ICC_NISO,
> +		.sid = TEGRA238_SID_PCIE0,
> +		.regs = {
> +			.sid = {
> +				.override = 0x6c0,
> +				.security = 0x6c4,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_PCIE0W,
> +		.name = "pcie0w",
> +		.bpmp_id = TEGRA_ICC_BPMP_PCIE_0,
> +		.type = TEGRA_ICC_NISO,
> +		.sid = TEGRA238_SID_PCIE0,
> +		.regs = {
> +			.sid = {
> +				.override = 0x6c8,
> +				.security = 0x6cc,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_PCIE1R,
> +		.name = "pcie1r",
> +		.bpmp_id = TEGRA_ICC_BPMP_PCIE_1,
> +		.type = TEGRA_ICC_NISO,
> +		.sid = TEGRA238_SID_PCIE1,
> +		.regs = {
> +			.sid = {
> +				.override = 0x6d0,
> +				.security = 0x6d4,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_PCIE1W,
> +		.name = "pcie1w",
> +		.bpmp_id = TEGRA_ICC_BPMP_PCIE_1,
> +		.type = TEGRA_ICC_NISO,
> +		.sid = TEGRA238_SID_PCIE1,
> +		.regs = {
> +			.sid = {
> +				.override = 0x6d8,
> +				.security = 0x6dc,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_PCIE2AR,
> +		.name = "pcie2ar",
> +		.bpmp_id = TEGRA_ICC_BPMP_PCIE_2,
> +		.type = TEGRA_ICC_NISO,
> +		.sid = TEGRA238_SID_PCIE2,
> +		.regs = {
> +			.sid = {
> +				.override = 0x6e0,
> +				.security = 0x6e4,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_PCIE2AW,
> +		.name = "pcie2aw",
> +		.bpmp_id = TEGRA_ICC_BPMP_PCIE_2,
> +		.type = TEGRA_ICC_NISO,
> +		.sid = TEGRA238_SID_PCIE2,
> +		.regs = {
> +			.sid = {
> +				.override = 0x6e8,
> +				.security = 0x6ec,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_PCIE3R,
> +		.name = "pcie3r",
> +		.bpmp_id = TEGRA_ICC_BPMP_PCIE_3,
> +		.type = TEGRA_ICC_NISO,
> +		.sid = TEGRA238_SID_PCIE3,
> +		.regs = {
> +			.sid = {
> +				.override = 0x6f0,
> +				.security = 0x6f4,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_PCIE3W,
> +		.name = "pcie3w",
> +		.bpmp_id = TEGRA_ICC_BPMP_PCIE_3,
> +		.type = TEGRA_ICC_NISO,
> +		.sid = TEGRA238_SID_PCIE3,
> +		.regs = {
> +			.sid = {
> +				.override = 0x6f8,
> +				.security = 0x6fc,
> +			},
> +		},
> +	}, {
> +		.id = TEGRA_ICC_MC_CPU_CLUSTER0,
> +		.name = "sw_cluster0",
> +		.bpmp_id = TEGRA_ICC_BPMP_CPU_CLUSTER0,
> +		.type = TEGRA_ICC_NISO,
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_NVL1R,
> +		.name = "nvl1r",
> +		.bpmp_id = TEGRA_ICC_BPMP_GPU,
> +		.type = TEGRA_ICC_NISO,
> +	}, {
> +		.id = TEGRA234_MEMORY_CLIENT_NVL1W,
> +		.name = "nvl1w",
> +		.bpmp_id = TEGRA_ICC_BPMP_GPU,
> +		.type = TEGRA_ICC_NISO,
> +	}
> +};
> +
> +static const struct tegra_mc_intmask tegra238_mc_intmasks[] = {
> +	{
> +		.reg = MC_INTMASK,
> +		.mask = MC_INT_DECERR_ROUTE_SANITY | MC_INT_DECERR_GENERALIZED_CARVEOUT |
> +			MC_INT_DECERR_MTS | MC_INT_SECERR_SEC | MC_INT_DECERR_VPR |
> +			MC_INT_SECURITY_VIOLATION | MC_INT_DECERR_EMEM,
> +	},
> +};
> +
> +const struct tegra_mc_soc tegra238_mc_soc = {
> +	.num_clients = ARRAY_SIZE(tegra238_mc_clients),
> +	.clients = tegra238_mc_clients,
> +	.num_address_bits = 40,
> +	.num_channels = 8,
> +	.client_id_mask = 0x1ff,
> +	.intmasks = tegra238_mc_intmasks,
> +	.num_intmasks = ARRAY_SIZE(tegra238_mc_intmasks),
> +	.has_addr_hi_reg = true,
> +	.ops = &tegra186_mc_ops,
> +	.icc_ops = &tegra234_mc_icc_ops,
> +	.ch_intmask = 0x0000ff00,
> +	.global_intstatus_channel_shift = 8,
> +	.num_carveouts = 32,
> +	.regs = &tegra20_mc_regs,
> +	.handle_irq = tegra30_mc_irq_handlers,
> +	.num_interrupts = ARRAY_SIZE(tegra30_mc_irq_handlers),
> +	.mc_addr_hi_mask = 0x3,
> +	.mc_err_status_type_mask = (0x7 << 28),
> +};

Reviewed-by: Jon Hunter <jonathanh@nvidia.com>

Thanks!
Jon

-- 
nvpublic


  reply	other threads:[~2026-04-29  9:29 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-27  7:34 [PATCH V2 0/2] memory: tegra: Add Tegra238 memory controller support Ashish Mhetre
2026-04-27  7:34 ` [PATCH V2 1/2] dt-bindings: memory: tegra: Add nvidia,tegra238-mc compatible Ashish Mhetre
2026-04-29  9:27   ` Jon Hunter
2026-04-27  7:34 ` [PATCH V2 2/2] memory: tegra: Add T238 MC support Ashish Mhetre
2026-04-29  9:29   ` Jon Hunter [this message]
2026-05-04 17:48 ` [PATCH V2 0/2] memory: tegra: Add Tegra238 memory controller support Krzysztof Kozlowski

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=acde30a6-23b1-4f1e-8f09-ddfe20f22390@nvidia.com \
    --to=jonathanh@nvidia.com \
    --cc==thierry.reding@kernel.org \
    --cc=amhetre@nvidia.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=krzk@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-tegra@vger.kernel.org \
    --cc=robh@kernel.org \
    --cc=sumitg@nvidia.com \
    /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