mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-26 22:24:09 +08:00
783c8f4c84
Implement fuse driver for Tegra20, Tegra30, Tegra114 and Tegra124. This replaces functionality previously provided in arch/arm/mach-tegra, which is removed in this patch. While at it, move the only user of the global tegra_revision variable over to tegra_sku_info.revision and export tegra_fuse_readl() to allow drivers to read calibration fuses. Signed-off-by: Peter De Schrijver <pdeschrijver@nvidia.com> Signed-off-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
9 lines
348 B
Makefile
9 lines
348 B
Makefile
obj-y += fuse-tegra.o
|
|
obj-y += fuse-tegra30.o
|
|
obj-y += tegra-apbmisc.o
|
|
obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += fuse-tegra20.o
|
|
obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += speedo-tegra20.o
|
|
obj-$(CONFIG_ARCH_TEGRA_3x_SOC) += speedo-tegra30.o
|
|
obj-$(CONFIG_ARCH_TEGRA_114_SOC) += speedo-tegra114.o
|
|
obj-$(CONFIG_ARCH_TEGRA_124_SOC) += speedo-tegra124.o
|