mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
72c81bb670
The memory controller and external memory controller found on Tegra234 is similar to the version found on earlier SoCs but supports a number of new memory clients. Add initial memory client definitions for the Tegra234 so that the SMMU stream ID override registers can be properly programmed at boot time. Signed-off-by: Thierry Reding <treding@nvidia.com> Link: https://lore.kernel.org/r/20220506132312.3910637-2-thierry.reding@gmail.com Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
26 lines
1.0 KiB
Makefile
26 lines
1.0 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
tegra-mc-y := mc.o
|
|
|
|
tegra-mc-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra20.o
|
|
tegra-mc-$(CONFIG_ARCH_TEGRA_3x_SOC) += tegra30.o
|
|
tegra-mc-$(CONFIG_ARCH_TEGRA_114_SOC) += tegra114.o
|
|
tegra-mc-$(CONFIG_ARCH_TEGRA_124_SOC) += tegra124.o
|
|
tegra-mc-$(CONFIG_ARCH_TEGRA_132_SOC) += tegra124.o
|
|
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
|
|
|
|
obj-$(CONFIG_TEGRA_MC) += tegra-mc.o
|
|
|
|
obj-$(CONFIG_TEGRA20_EMC) += tegra20-emc.o
|
|
obj-$(CONFIG_TEGRA30_EMC) += tegra30-emc.o
|
|
obj-$(CONFIG_TEGRA124_EMC) += tegra124-emc.o
|
|
obj-$(CONFIG_TEGRA210_EMC_TABLE) += tegra210-emc-table.o
|
|
obj-$(CONFIG_TEGRA210_EMC) += tegra210-emc.o
|
|
obj-$(CONFIG_ARCH_TEGRA_186_SOC) += tegra186-emc.o
|
|
obj-$(CONFIG_ARCH_TEGRA_194_SOC) += tegra186-emc.o
|
|
obj-$(CONFIG_ARCH_TEGRA_234_SOC) += tegra186-emc.o
|
|
|
|
tegra210-emc-y := tegra210-emc-core.o tegra210-emc-cc-r21021.o
|