diff options
author | Olof Johansson <olof@lixom.net> | 2020-09-26 21:40:09 +0200 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2020-09-26 21:40:10 +0200 |
commit | 63e15ef136d31d14976797c59393666e77bd7f28 (patch) | |
tree | 3d8ee9f902c443e0bccdfc9e63b7f17d472c56a2 /drivers/firmware | |
parent | Merge tag 'tegra-for-5.10-soc' of git://git.kernel.org/pub/scm/linux/kernel/g... (diff) | |
parent | firmware: tegra: Enable BPMP support on Tegra234 (diff) | |
download | linux-63e15ef136d31d14976797c59393666e77bd7f28.tar.xz linux-63e15ef136d31d14976797c59393666e77bd7f28.zip |
Merge tag 'tegra-for-5.10-firmware' of git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux into arm/drivers
firmware: tegra: Changes for v5.10-rc1
This is a minor change that implements a BPMP workaround for pre-silicon
platforms and is needed to enable support for BPMP on Tegra234.
* tag 'tegra-for-5.10-firmware' of git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux:
firmware: tegra: Enable BPMP support on Tegra234
Link: https://lore.kernel.org/r/20200918150303.3938852-3-thierry.reding@gmail.com
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'drivers/firmware')
-rw-r--r-- | drivers/firmware/tegra/bpmp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/firmware/tegra/bpmp.c b/drivers/firmware/tegra/bpmp.c index 4d93d8925e14..0742a90cb844 100644 --- a/drivers/firmware/tegra/bpmp.c +++ b/drivers/firmware/tegra/bpmp.c @@ -856,7 +856,8 @@ static const struct tegra_bpmp_soc tegra210_soc = { static const struct of_device_id tegra_bpmp_match[] = { #if IS_ENABLED(CONFIG_ARCH_TEGRA_186_SOC) || \ - IS_ENABLED(CONFIG_ARCH_TEGRA_194_SOC) + IS_ENABLED(CONFIG_ARCH_TEGRA_194_SOC) || \ + IS_ENABLED(CONFIG_ARCH_TEGRA_234_SOC) { .compatible = "nvidia,tegra186-bpmp", .data = &tegra186_soc }, #endif #if IS_ENABLED(CONFIG_ARCH_TEGRA_210_SOC) |