Skip to content

Commit 94bce2c

Browse files
committed
firmware: tegra: bpmp: Add support on Tegra264
Support for Tegra264 depends on the Tegra186 support, so make sure the latter is enabled. Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Thierry Reding <[email protected]>
1 parent 78eb180 commit 94bce2c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

drivers/firmware/tegra/bpmp.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,8 @@ static const struct dev_pm_ops tegra_bpmp_pm_ops = {
836836

837837
#if IS_ENABLED(CONFIG_ARCH_TEGRA_186_SOC) || \
838838
IS_ENABLED(CONFIG_ARCH_TEGRA_194_SOC) || \
839-
IS_ENABLED(CONFIG_ARCH_TEGRA_234_SOC)
839+
IS_ENABLED(CONFIG_ARCH_TEGRA_234_SOC) || \
840+
IS_ENABLED(CONFIG_ARCH_TEGRA_264_SOC)
840841
static const struct tegra_bpmp_soc tegra186_soc = {
841842
.channels = {
842843
.cpu_tx = {
@@ -884,7 +885,8 @@ static const struct tegra_bpmp_soc tegra210_soc = {
884885
static const struct of_device_id tegra_bpmp_match[] = {
885886
#if IS_ENABLED(CONFIG_ARCH_TEGRA_186_SOC) || \
886887
IS_ENABLED(CONFIG_ARCH_TEGRA_194_SOC) || \
887-
IS_ENABLED(CONFIG_ARCH_TEGRA_234_SOC)
888+
IS_ENABLED(CONFIG_ARCH_TEGRA_234_SOC) || \
889+
IS_ENABLED(CONFIG_ARCH_TEGRA_264_SOC)
888890
{ .compatible = "nvidia,tegra186-bpmp", .data = &tegra186_soc },
889891
#endif
890892
#if IS_ENABLED(CONFIG_ARCH_TEGRA_210_SOC)

0 commit comments

Comments
 (0)