mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	When IOMMU_IOVA is not built-in but host1x is, we get a link error:
drivers/gpu/host1x/dev.o: In function `host1x_remove':
dev.c:(.text.host1x_remove+0x50): undefined reference to `put_iova_domain'
drivers/gpu/host1x/dev.o: In function `host1x_probe':
dev.c:(.text.host1x_probe+0x31c): undefined reference to `init_iova_domain'
dev.c:(.text.host1x_probe+0x38c): undefined reference to `put_iova_domain'
drivers/gpu/host1x/cdma.o: In function `host1x_cdma_init':
cdma.c:(.text.host1x_cdma_init+0x238): undefined reference to `alloc_iova'
cdma.c:(.text.host1x_cdma_init+0x2c0): undefined reference to `__free_iova'
drivers/gpu/host1x/cdma.o: In function `host1x_cdma_deinit':
cdma.c:(.text.host1x_cdma_deinit+0xb0): undefined reference to `free_iova'
This adds the same select statement that we have for drm_tegra.
Fixes: 404bfb78da ("gpu: host1x: Add IOMMU support")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Mikko Perttunen <mperttunen@nvidia.com>
Signed-off-by: Sean Paul <seanpaul@chromium.org>
Link: http://patchwork.freedesktop.org/patch/msgid/20170419182449.885312-1-arnd@arndb.de
		
	
			
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			653 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			653 B
		
	
	
	
		
			Text
		
	
	
	
	
	
config TEGRA_HOST1X
 | 
						|
	tristate "NVIDIA Tegra host1x driver"
 | 
						|
	depends on ARCH_TEGRA || (ARM && COMPILE_TEST)
 | 
						|
	select IOMMU_IOVA if IOMMU_SUPPORT
 | 
						|
	help
 | 
						|
	  Driver for the NVIDIA Tegra host1x hardware.
 | 
						|
 | 
						|
	  The Tegra host1x module is the DMA engine for register access to
 | 
						|
	  Tegra's graphics- and multimedia-related modules. The modules served
 | 
						|
	  by host1x are referred to as clients. host1x includes some other
 | 
						|
	  functionality, such as synchronization.
 | 
						|
 | 
						|
if TEGRA_HOST1X
 | 
						|
 | 
						|
config TEGRA_HOST1X_FIREWALL
 | 
						|
	bool "Enable HOST1X security firewall"
 | 
						|
	default y
 | 
						|
	help
 | 
						|
	  Say yes if kernel should protect command streams from tampering.
 | 
						|
 | 
						|
	  If unsure, choose Y.
 | 
						|
 | 
						|
endif
 |