2019-05-19 13:07:45 +01:00
# SPDX-License-Identifier: GPL-2.0-only
2014-04-16 09:24:44 +02:00
config TEGRA_MC
bool "NVIDIA Tegra Memory Controller support"
default y
2021-06-01 05:31:13 +03:00
depends on ARCH_TEGRA || (COMPILE_TEST && COMMON_CLK)
2020-11-04 19:49:08 +03:00
select INTERCONNECT
2014-04-16 09:24:44 +02:00
help
This driver supports the Memory Controller (MC) hardware found on
NVIDIA Tegra SoCs.
2015-03-12 15:48:03 +01:00
2021-06-01 05:31:13 +03:00
if TEGRA_MC
2018-10-21 21:30:52 +03:00
config TEGRA20_EMC
2020-11-04 19:49:09 +03:00
tristate "NVIDIA Tegra20 External Memory Controller driver"
2018-10-21 21:30:52 +03:00
default y
2021-06-01 05:31:13 +03:00
depends on ARCH_TEGRA_2x_SOC || COMPILE_TEST
2020-11-11 04:14:34 +03:00
select DEVFREQ_GOV_SIMPLE_ONDEMAND
select PM_DEVFREQ
2021-10-07 01:46:59 +03:00
select DDR
2018-10-21 21:30:52 +03:00
help
This driver is for the External Memory Controller (EMC) found on
Tegra20 chips. The EMC controls the external DRAM on the board.
This driver is required to change memory timings / clock rate for
external memory.
2019-08-12 00:00:40 +03:00
config TEGRA30_EMC
2020-11-11 04:14:37 +03:00
tristate "NVIDIA Tegra30 External Memory Controller driver"
2019-08-12 00:00:40 +03:00
default y
2021-06-01 05:31:13 +03:00
depends on ARCH_TEGRA_3x_SOC || COMPILE_TEST
2020-12-03 22:24:32 +03:00
select PM_OPP
2021-12-22 07:32:14 +03:00
select DDR
2019-08-12 00:00:40 +03:00
help
This driver is for the External Memory Controller (EMC) found on
Tegra30 chips. The EMC controls the external DRAM on the board.
This driver is required to change memory timings / clock rate for
external memory.
2015-03-12 15:48:03 +01:00
config TEGRA124_EMC
2020-12-28 18:49:16 +03:00
tristate "NVIDIA Tegra124 External Memory Controller driver"
2015-03-12 15:48:03 +01:00
default y
2021-06-01 05:31:13 +03:00
depends on ARCH_TEGRA_124_SOC || COMPILE_TEST
select TEGRA124_CLK_EMC if ARCH_TEGRA
2020-12-28 18:49:18 +03:00
select PM_OPP
2015-03-12 15:48:03 +01:00
help
This driver is for the External Memory Controller (EMC) found on
Tegra124 chips. The EMC controls the external DRAM on the board.
This driver is required to change memory timings / clock rate for
external memory.
2019-05-29 16:21:36 +08:00
config TEGRA210_EMC_TABLE
bool
2021-06-01 05:31:13 +03:00
depends on ARCH_TEGRA_210_SOC || COMPILE_TEST
2019-05-29 16:21:36 +08:00
config TEGRA210_EMC
tristate "NVIDIA Tegra210 External Memory Controller driver"
2021-06-01 05:31:13 +03:00
depends on ARCH_TEGRA_210_SOC || COMPILE_TEST
2019-05-29 16:21:36 +08:00
select TEGRA210_EMC_TABLE
help
This driver is for the External Memory Controller (EMC) found on
Tegra210 chips. The EMC controls the external DRAM on the board.
This driver is required to change memory timings / clock rate for
external memory.
2021-06-01 05:31:13 +03:00
endif