forked from Mirrors/opensbi
		
	Add a simple FDT based mailbox framework which is built on top of the generic mailbox library. The phandle of FDT mailbox DT node is treated as the unique mailbox controller ID which is required by the generic mailbox library. The FDT based mailbox drivers will be probed on-demand from fdt_mailbox_request_chan() called by the mailbox client drivers. Signed-off-by: Anup Patel <apatel@ventanamicro.com>
		
			
				
	
	
		
			16 lines
		
	
	
		
			221 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			221 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 | 
						|
menu "Mailbox Support"
 | 
						|
 | 
						|
config FDT_MAILBOX
 | 
						|
	bool "FDT based mailbox drivers"
 | 
						|
	depends on FDT
 | 
						|
	select MAILBOX
 | 
						|
	default n
 | 
						|
 | 
						|
config MAILBOX
 | 
						|
	bool "Mailbox support"
 | 
						|
	default n
 | 
						|
 | 
						|
endmenu
 |