mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 10:34:43 +03:00
That is a kernel supporting code for cyclestats mode E. Cyclestats mode E implemented following Windows-design in user-space and required the following operations to be implemented: - attach a client for shared hardware buffer of device - detach client from shared hardware buffer - flush means copy of available data from hardware buffer to private client buffers according to perfmon IDs assigned for clients - perfmon IDs management for user-space clients - a NVGPU_GPU_FLAGS_SUPPORT_CYCLE_STATS_SNAPSHOT capability added Bug 1573150 Change-Id: I9e09f0fbb2be5a95c47e6d80a2e23fa839b46f9a Signed-off-by: Leonid Moiseichuk <lmoiseichuk@nvidia.com> Reviewed-on: http://git-master/r/740653 (cherry picked from commit 79fe89fd4cea39d8ab9dbef0558cd806ddfda87f) Reviewed-on: http://git-master/r/753274 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com> Tested-by: Terje Bergstrom <tbergstrom@nvidia.com>
93 lines
2.2 KiB
Makefile
93 lines
2.2 KiB
Makefile
GCOV_PROFILE := y
|
|
|
|
ccflags-y += -Idrivers/gpu/nvgpu
|
|
ccflags-y += -Idrivers/video/tegra/host
|
|
ccflags-y += -Idrivers/devfreq
|
|
ccflags-y += -Wno-multichar
|
|
ccflags-y += -Werror
|
|
ccflags-y += -Wno-error=cpp
|
|
|
|
ifeq ($(CONFIG_ARCH_TEGRA_18x_SOC),y)
|
|
ccflags-$(CONFIG_GK20A) += -I$(srctree)/../kernel-t18x/drivers/gpu/nvgpu
|
|
ccflags-$(CONFIG_GK20A) += -I$(srctree)/../kernel-t18x/include
|
|
ccflags-$(CONFIG_GK20A) += -I$(srctree)/../kernel-t18x/include/uapi
|
|
endif
|
|
|
|
obj-$(CONFIG_GK20A) := nvgpu.o
|
|
|
|
nvgpu-y := \
|
|
gk20a/gk20a.o \
|
|
gk20a/as_gk20a.o \
|
|
gk20a/ctrl_gk20a.o \
|
|
gk20a/ce2_gk20a.o \
|
|
gk20a/fifo_gk20a.o \
|
|
gk20a/channel_gk20a.o \
|
|
gk20a/channel_sync_gk20a.o \
|
|
gk20a/debug_gk20a.o \
|
|
gk20a/dbg_gpu_gk20a.o \
|
|
gk20a/regops_gk20a.o \
|
|
gk20a/gr_gk20a.o \
|
|
gk20a/kind_gk20a.o \
|
|
gk20a/mm_gk20a.o \
|
|
gk20a/pmu_gk20a.o \
|
|
gk20a/priv_ring_gk20a.o \
|
|
gk20a/semaphore_gk20a.o \
|
|
gk20a/fence_gk20a.o \
|
|
gk20a/therm_gk20a.o \
|
|
gk20a/gr_ctx_gk20a_sim.o \
|
|
gk20a/gr_ctx_gk20a.o \
|
|
gk20a/gk20a_gating_reglist.o \
|
|
gk20a/gk20a_sysfs.o \
|
|
gk20a/ltc_gk20a.o \
|
|
gk20a/fb_gk20a.o \
|
|
gk20a/hal.o \
|
|
gk20a/hal_gk20a.o \
|
|
gk20a/gk20a_allocator.o \
|
|
gk20a/cde_gk20a.o \
|
|
gk20a/platform_gk20a_generic.o \
|
|
gk20a/tsg_gk20a.o \
|
|
gk20a/mc_gk20a.o \
|
|
gm20b/hal_gm20b.o \
|
|
gm20b/ltc_gm20b.o \
|
|
gm20b/ce2_gm20b.o \
|
|
gm20b/gr_gm20b.o \
|
|
gm20b/gr_gm20b.o \
|
|
gm20b/fb_gm20b.o \
|
|
gm20b/fifo_gm20b.o \
|
|
gm20b/gr_ctx_gm20b.o \
|
|
gm20b/gm20b_gating_reglist.o \
|
|
gm20b/acr_gm20b.o \
|
|
gm20b/pmu_gm20b.o \
|
|
gm20b/mm_gm20b.o \
|
|
gm20b/regops_gm20b.o \
|
|
gm20b/mc_gm20b.o \
|
|
gm20b/debug_gm20b.o
|
|
|
|
nvgpu-$(CONFIG_TEGRA_GK20A) += gk20a/platform_gk20a_tegra.o
|
|
nvgpu-$(CONFIG_SYNC) += gk20a/sync_gk20a.o
|
|
|
|
nvgpu-$(CONFIG_TEGRA_GR_VIRTUALIZATION) += \
|
|
gk20a/platform_vgpu_tegra.o \
|
|
vgpu/ltc_vgpu.o \
|
|
vgpu/gr_vgpu.o \
|
|
vgpu/fifo_vgpu.o \
|
|
vgpu/mm_vgpu.o \
|
|
vgpu/debug_vgpu.o \
|
|
vgpu/vgpu.o
|
|
|
|
nvgpu-$(CONFIG_TEGRA_CLK_FRAMEWORK) += \
|
|
gm20b/clk_gm20b.o \
|
|
gk20a/clk_gk20a.o
|
|
|
|
nvgpu-$(CONFIG_GK20A_DEVFREQ) += \
|
|
gk20a/gk20a_scale.o
|
|
|
|
nvgpu-$(CONFIG_GK20A_CYCLE_STATS) += \
|
|
gk20a/css_gr_gk20a.o
|
|
|
|
ifeq ($(CONFIG_ARCH_TEGRA_18x_SOC),y)
|
|
ccflags-$(CONFIG_GK20A) += -I$(srctree)/../kernel-t18x/drivers/gpu/nvgpu
|
|
ccflags-$(CONFIG_GK20A) += -I$(srctree)/../kernel-t18x/include
|
|
obj-$(CONFIG_GK20A) += ../../../../kernel-t18x/drivers/gpu/nvgpu/
|
|
endif
|