mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 10:11:26 +03:00
Actmon DFS for EMC has been moved to BPMP side. This driver simply reads the exponential moving average counter register of the MC_ALL client and export the value in the sysfs node to let tegrastats read the utilization value of the EMC. Bug 4041434 Signed-off-by: Johnny Liu <johnliu@nvidia.com> Change-Id: I2b7e6592094d27c47f738fc26ee9091ea209f630 Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2912315 Tested-by: mobile promotions <svcmobile_promotions@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
25 lines
618 B
Makefile
25 lines
618 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
|
|
tegra-bootloader-debug-objs := tegra_bootloader_debug.o
|
|
tegra-bootloader-debug-objs += tegra_bootloader_debug_init.o
|
|
obj-m += tegra-bootloader-debug.o
|
|
|
|
tegra-cactmon-objs := cactmon.o
|
|
tegra-cactmon-objs += actmon_common.o
|
|
obj-m += tegra-cactmon.o
|
|
obj-m += tegra-cactmon-mc-all.o
|
|
obj-m += tegra-fsicom.o
|
|
|
|
obj-m += mce/
|
|
ifdef CONFIG_PERF_EVENTS
|
|
obj-m += uncore_pmu/
|
|
endif
|
|
obj-m += mc-hwpm.o
|
|
obj-m += mc-utils/
|
|
obj-m += dce/
|
|
obj-m += psc/
|
|
obj-m += rtcpu/
|
|
obj-m += aon/
|
|
obj-m += tegra-uss-io-proxy.o
|