mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 10:34:43 +03:00
Client notification support is now added for the following: - stalling and non-stalling GR sema release - non-stalling FIFO channel intr - non-stalling CE2 nonblockpipe intr Bug 200097077 Change-Id: Icd3c076d7880e1c9ef1fcc0fc58eed9f23f39277 Signed-off-by: Aingara Paramakuru <aparamakuru@nvidia.com> Reviewed-on: http://git-master/r/736064 (cherry picked from commit 0585d1f14d5a5ae1ccde8ccb7b7daa5593b3d1bc) Reviewed-on: http://git-master/r/759824 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
94 lines
2.2 KiB
Makefile
94 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/ce2_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
|