A few very simple testcases to exercise the dma-fence-chain API. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Venkata Sandeep Dhanalakota <venkata.s.dhanalakota@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20200409110101.18400-3-chris@chris-wilson.co.uk
		
			
				
	
	
		
			16 lines
		
	
	
		
			472 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			472 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # SPDX-License-Identifier: GPL-2.0-only
 | |
| obj-y := dma-buf.o dma-fence.o dma-fence-array.o dma-fence-chain.o \
 | |
| 	 dma-resv.o seqno-fence.o
 | |
| obj-$(CONFIG_DMABUF_HEAPS)	+= dma-heap.o
 | |
| obj-$(CONFIG_DMABUF_HEAPS)	+= heaps/
 | |
| obj-$(CONFIG_SYNC_FILE)		+= sync_file.o
 | |
| obj-$(CONFIG_SW_SYNC)		+= sw_sync.o sync_debug.o
 | |
| obj-$(CONFIG_UDMABUF)		+= udmabuf.o
 | |
| 
 | |
| dmabuf_selftests-y := \
 | |
| 	selftest.o \
 | |
| 	st-dma-fence.o \
 | |
| 	st-dma-fence-chain.o
 | |
| 
 | |
| obj-$(CONFIG_DMABUF_SELFTESTS)	+= dmabuf_selftests.o
 |