diff options
author | Timo Alho <talho@nvidia.com> | 2017-03-06 15:47:20 +0200 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2017-12-13 12:43:29 +0100 |
commit | 83468fe259bf827f350b118f25bce99dc0bdf597 (patch) | |
tree | 4797a04a576b1acbc891448f719a66599c4382d3 /drivers/soc/tegra/fuse/fuse.h | |
parent | 753863d7f8b739c10c87b8f8c356c7918d37fdcd (diff) |
soc/tegra: fuse: Add Tegra186 support
Tegra210 and Tegra186 are mostly compatible from a fuses point of view.
However, speedo support is implemented in the BPMP firmware, hence the
implementation needs to be skipped in the fuses driver.
Signed-off-by: Timo Alho <talho@nvidia.com>
Reviewed-by: Mikko Perttunen <mperttunen@nvidia.com>
[treding@nvidia.com: reword commit message]
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/soc/tegra/fuse/fuse.h')
-rw-r--r-- | drivers/soc/tegra/fuse/fuse.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/soc/tegra/fuse/fuse.h b/drivers/soc/tegra/fuse/fuse.h index 10c2076d5089..f355b9d54915 100644 --- a/drivers/soc/tegra/fuse/fuse.h +++ b/drivers/soc/tegra/fuse/fuse.h @@ -105,4 +105,8 @@ extern const struct tegra_fuse_soc tegra124_fuse_soc; extern const struct tegra_fuse_soc tegra210_fuse_soc; #endif +#ifdef CONFIG_ARCH_TEGRA_186_SOC +extern const struct tegra_fuse_soc tegra186_fuse_soc; +#endif + #endif |