mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-23 17:55:05 +03:00
Add API for reading the activity monitor average count for VIC, NVENC, and NVDEC. There is currently no support for initializing actmon, so this relies on someone else on a virtualized system having initialized it (and mapped the actmon region read-only). Bug 3973633 Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com> Change-Id: Ia1bfec6a090d4effb288b17cbac4d42bf5d0b4e5 Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvidia/+/2864719 Reviewed-by: svc_kernel_abi <svc_kernel_abi@nvidia.com> Reviewed-by: Jonathan Hunter <jonathanh@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
31 lines
478 B
Makefile
31 lines
478 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
srctree.host1x := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST))))
|
|
|
|
ccflags-y := -I$(srctree.host1x)/include
|
|
|
|
host1x-next-y = \
|
|
bus.o \
|
|
syncpt.o \
|
|
dev.o \
|
|
intr.o \
|
|
cdma.o \
|
|
channel.o \
|
|
job.o \
|
|
debug.o \
|
|
mipi.o \
|
|
fence.o \
|
|
actmon.o \
|
|
hw/host1x01.o \
|
|
hw/host1x02.o \
|
|
hw/host1x04.o \
|
|
hw/host1x05.o \
|
|
hw/host1x06.o \
|
|
hw/host1x07.o \
|
|
hw/host1x08.o
|
|
|
|
host1x-next-$(CONFIG_IOMMU_API) += \
|
|
context.o
|
|
|
|
obj-m := host1x-next.o
|