mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 18:21:35 +03:00
Summary: Add debug fs to allow user to program the error control registers in RAS so mods can selectively disable errors if so desired. A current example of this usecase is disabling ras from throttling, which is thrown during the mods Soctherm OC throttling test Bug 200533168 Change-Id: Id9007e9e13ae9563ad2aae107b130bcd951f0bc4 Signed-off-by: Ellis Roberts <ellisr@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2224479 GVS: Gerrit_Virtual_Submit Reviewed-by: Kiran Kasamsetty <kkasamsetty@nvidia.com> Reviewed-by: Rohan Sreeram <rsreeram@nvidia.com> Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
17 lines
802 B
Makefile
17 lines
802 B
Makefile
obj-$(CONFIG_MODS) := mods.o
|
|
mods-y := mods_krnl.o
|
|
mods-y += mods_mem.o
|
|
mods-y += mods_irq.o
|
|
mods-y += mods_clock.o
|
|
mods-$(CONFIG_ARCH_TEGRA) += mods_tegraprod.o
|
|
mods-$(CONFIG_ARCH_TEGRA_19x_SOC) += mods_ras.o
|
|
mods-$(CONFIG_PCI) += mods_pci.o
|
|
mods-$(CONFIG_ACPI) += mods_acpi.o
|
|
mods-$(CONFIG_ARCH_TEGRA) += mods_dmabuf.o
|
|
mods-$(CONFIG_DMA_ENGINE) += mods_dma.o
|
|
mods-$(CONFIG_DEBUG_FS) += mods_debugfs.o
|
|
mods-$(CONFIG_TEGRA_DC) += mods_tegradc.o
|
|
mods-$(CONFIG_TEGRA_NVADSP) += mods_adsp.o
|
|
mods-$(CONFIG_NET) += mods_netdevice.o
|
|
mods-objs := mods.dtb.o
|