8211783f16
Now since Christian reworked TTM to always keep objects on the LRU list unless they are pinned we shouldn't need the reservation semaphore. It makes the driver code a lot cleaner, especially because it was a little hard to reason when and where the reservation semaphore needed to be held. Signed-off-by: Zack Rusin <zackr@vmware.com> Reviewed-by: Roland Scheidegger <sroland@vmware.com> Link: https://patchwork.freedesktop.org/patch/msgid/20210505035740.286923-5-zackr@vmware.com
18 lines
835 B
Makefile
18 lines
835 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
vmwgfx-y := vmwgfx_execbuf.o vmwgfx_gmr.o vmwgfx_kms.o vmwgfx_drv.o \
|
|
vmwgfx_ioctl.o vmwgfx_resource.o vmwgfx_ttm_buffer.o \
|
|
vmwgfx_cmd.o vmwgfx_irq.o vmwgfx_ldu.o vmwgfx_ttm_glue.o \
|
|
vmwgfx_overlay.o vmwgfx_gmrid_manager.o vmwgfx_fence.o \
|
|
vmwgfx_bo.o vmwgfx_scrn.o vmwgfx_context.o \
|
|
vmwgfx_surface.o vmwgfx_prime.o vmwgfx_mob.o vmwgfx_shader.o \
|
|
vmwgfx_cmdbuf_res.o vmwgfx_cmdbuf.o vmwgfx_stdu.o \
|
|
vmwgfx_cotable.o vmwgfx_so.o vmwgfx_binding.o vmwgfx_msg.o \
|
|
vmwgfx_simple_resource.o vmwgfx_va.o vmwgfx_blit.o \
|
|
vmwgfx_validation.o vmwgfx_page_dirty.o vmwgfx_streamoutput.o \
|
|
ttm_object.o ttm_memory.o
|
|
|
|
vmwgfx-$(CONFIG_DRM_FBDEV_EMULATION) += vmwgfx_fb.o
|
|
vmwgfx-$(CONFIG_TRANSPARENT_HUGEPAGE) += vmwgfx_thp.o
|
|
|
|
obj-$(CONFIG_DRM_VMWGFX) := vmwgfx.o
|