diff options
author | Thierry Reding <treding@nvidia.com> | 2020-09-17 13:07:47 +0300 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2020-09-18 16:55:29 +0300 |
commit | 1f44febf71ba3d8a8694669197ec5a384c8d3011 (patch) | |
tree | 7c617661ed31c21c5b45ea3d4aa41b29c4dada76 /drivers/soc/tegra/fuse/fuse.h | |
parent | 52e6d399a41da68125ec107f5f5f688a74ab7ac4 (diff) | |
download | linux-1f44febf71ba3d8a8694669197ec5a384c8d3011.tar.xz |
soc/tegra: fuse: Add Tegra234 support
Add support for FUSE block found on the Tegra234 SoC, which is largely
similar to the IP found on previous generations.
Reviewed-by: Jon Hunter <jonathanh@nvidia.com>
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 | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/soc/tegra/fuse/fuse.h b/drivers/soc/tegra/fuse/fuse.h index 9d4fc315a007..e057a58e2060 100644 --- a/drivers/soc/tegra/fuse/fuse.h +++ b/drivers/soc/tegra/fuse/fuse.h @@ -115,9 +115,17 @@ extern const struct tegra_fuse_soc tegra210_fuse_soc; extern const struct tegra_fuse_soc tegra186_fuse_soc; #endif +#if IS_ENABLED(CONFIG_ARCH_TEGRA_194_SOC) || \ + IS_ENABLED(CONFIG_ARCH_TEGRA_234_SOC) +extern const struct attribute_group tegra194_soc_attr_group; +#endif + #ifdef CONFIG_ARCH_TEGRA_194_SOC extern const struct tegra_fuse_soc tegra194_fuse_soc; -extern const struct attribute_group tegra194_soc_attr_group; +#endif + +#ifdef CONFIG_ARCH_TEGRA_234_SOC +extern const struct tegra_fuse_soc tegra234_fuse_soc; #endif #endif |