diff options
author | Arnd Bergmann <arnd@arndb.de> | 2022-05-09 23:12:49 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2022-05-09 23:12:50 +0200 |
commit | 6e6962ffe2ea8019877bc1db04b6105a4b3026bb (patch) | |
tree | 50315f8b93a8fd647c38475302cb7048fbcf0cc2 /drivers/memory/tegra/tegra186-emc.c | |
parent | Merge tag 'imx-drivers-5.19' of git://git.kernel.org/pub/scm/linux/kernel/git... (diff) | |
parent | memory: tegra: Add MC error logging on Tegra186 onward (diff) | |
download | linux-6e6962ffe2ea8019877bc1db04b6105a4b3026bb.tar.xz linux-6e6962ffe2ea8019877bc1db04b6105a4b3026bb.zip |
Merge tag 'memory-controller-drv-tegra-5.19' of git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl into arm/drivers
Memory controller drivers for v5.19 - Tegra SoC
Add support for Tegra234 memory controller and for logging memory
controller errors on Tegra186, Tegra194 and Tegra234.
* tag 'memory-controller-drv-tegra-5.19' of git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl:
memory: tegra: Add MC error logging on Tegra186 onward
memory: tegra: Add memory controller channels support
memory: tegra: Add APE memory clients for Tegra234
memory: tegra: Add Tegra234 support
Link: https://lore.kernel.org/r/20220509160807.154187-1-krzysztof.kozlowski@linaro.org
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'drivers/memory/tegra/tegra186-emc.c')
-rw-r--r-- | drivers/memory/tegra/tegra186-emc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/memory/tegra/tegra186-emc.c b/drivers/memory/tegra/tegra186-emc.c index 746c4ef2c0af..54b47ca33483 100644 --- a/drivers/memory/tegra/tegra186-emc.c +++ b/drivers/memory/tegra/tegra186-emc.c @@ -273,6 +273,9 @@ static const struct of_device_id tegra186_emc_of_match[] = { #if defined(CONFIG_ARCH_TEGRA_194_SOC) { .compatible = "nvidia,tegra194-emc" }, #endif +#if defined(CONFIG_ARCH_TEGRA_234_SOC) + { .compatible = "nvidia,tegra234-emc" }, +#endif { /* sentinel */ } }; MODULE_DEVICE_TABLE(of, tegra186_emc_of_match); |