diff options
author | Timo Alho <talho@nvidia.com> | 2019-01-24 20:03:54 +0300 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2019-01-25 17:58:47 +0300 |
commit | 139251fc220830cc49b71331d281a8ad03a08ab7 (patch) | |
tree | 78c77de78f1da98ba29834e45cf81f0eeffaf1a9 /drivers/firmware/tegra/Makefile | |
parent | cdfa358b248efd36c6a9cb4d4d0a3ba7509f8387 (diff) | |
download | linux-139251fc220830cc49b71331d281a8ad03a08ab7.tar.xz |
firmware: tegra: add bpmp driver for Tegra210
This patch adds driver for Tegra210 BPMP firmware.
The BPMP is a specific processor in Tegra210 chip, which runs firmware
for assisting in entering deep low power states (suspend to ram), and
offloading DRAM memory clock scaling on some platforms.
Based on work by Sivaram Nair <sivaramn@nvidia.com>
Signed-off-by: Timo Alho <talho@nvidia.com>
Acked-by: Jon Hunter <jonathanh@nvidia.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/firmware/tegra/Makefile')
-rw-r--r-- | drivers/firmware/tegra/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/firmware/tegra/Makefile b/drivers/firmware/tegra/Makefile index 559355674bca..ba45e58f7647 100644 --- a/drivers/firmware/tegra/Makefile +++ b/drivers/firmware/tegra/Makefile @@ -1,4 +1,5 @@ tegra-bpmp-y = bpmp.o +tegra-bpmp-$(CONFIG_ARCH_TEGRA_210_SOC) += bpmp-tegra210.o tegra-bpmp-$(CONFIG_ARCH_TEGRA_186_SOC) += bpmp-tegra186.o tegra-bpmp-$(CONFIG_DEBUG_FS) += bpmp-debugfs.o obj-$(CONFIG_TEGRA_BPMP) += tegra-bpmp.o |