mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 01:40:53 +07:00
a127e690b0
The memory and external memory controllers on Tegra194 are very similar to their predecessors from Tegra186. Add the necessary SoC-specific data to support the newer versions. Signed-off-by: Thierry Reding <treding@nvidia.com>
18 lines
661 B
Makefile
18 lines
661 B
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
|
|
|
|
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_ARCH_TEGRA_186_SOC) += tegra186.o tegra186-emc.o
|
|
obj-$(CONFIG_ARCH_TEGRA_194_SOC) += tegra186.o tegra186-emc.o
|