mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 08:21:36 +01:00 
			
		
		
		
	Tegra186's HSP module implements doorbells, mailboxes, semaphores, and shared interrupts. This patch provides a driver for HSP, and hooks it into the mailbox API. Currently, only doorbells are supported. Signed-off-by: Stephen Warren <swarren@nvidia.com> Reviewed-by: Simon Glass <sjg@chromium.org> Acked-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			9 lines
		
	
	
		
			259 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			259 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # Copyright (c) 2016, NVIDIA CORPORATION.
 | |
| #
 | |
| # SPDX-License-Identifier: GPL-2.0
 | |
| 
 | |
| obj-$(CONFIG_DM_MAILBOX) += mailbox-uclass.o
 | |
| obj-$(CONFIG_SANDBOX_MBOX) += sandbox-mbox.o
 | |
| obj-$(CONFIG_SANDBOX_MBOX) += sandbox-mbox-test.o
 | |
| obj-$(CONFIG_TEGRA_HSP) += tegra-hsp.o
 |