35 lines
		
	
	
		
			851 B
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			851 B
		
	
	
	
		
			Plaintext
		
	
	
	
| #
 | |
| # (C) Copyright 2015
 | |
| # Texas Instruments Incorporated - http://www.ti.com/
 | |
| # SPDX-License-Identifier:	GPL-2.0+
 | |
| #
 | |
| 
 | |
| menu "Remote Processor drivers"
 | |
| 
 | |
| # REMOTEPROC gets selected by drivers as needed
 | |
| # All users should depend on DM
 | |
| config REMOTEPROC
 | |
| 	bool
 | |
| 	depends on DM
 | |
| 
 | |
| # Please keep the configuration alphabetically sorted.
 | |
| config REMOTEPROC_SANDBOX
 | |
| 	bool "Support for Test processor for Sandbox"
 | |
| 	select REMOTEPROC
 | |
| 	depends on DM
 | |
| 	depends on SANDBOX
 | |
| 	help
 | |
| 	  Say 'y' here to add support for test processor which does dummy
 | |
| 	  operations for sandbox platform.
 | |
| 
 | |
| config REMOTEPROC_TI_POWER
 | |
| 	bool "Support for TI Power processor"
 | |
| 	select REMOTEPROC
 | |
| 	depends on DM
 | |
| 	depends on ARCH_KEYSTONE
 | |
| 	depends on OF_CONTROL
 | |
| 	help
 | |
| 	  Say 'y' here to add support for TI power processors such as those
 | |
| 	  found on certain TI keystone and OMAP generation SoCs.
 | |
| endmenu
 |