mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 00:11:51 +01:00 
			
		
		
		
	Starting J7200 SoC, ROM supports for loading sysfw directly from boot image. In such cases, SPL need not load sysfw from boot media, but need to receive boot notification message from sysfw. So separate out remoteproc calls for system controller from sysfw loader and just receive the boot notification if sysfw is already loaded. Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com> Reviewed-by: Suman Anna <s-anna@ti.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			359 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			359 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0+ */
 | |
| /*
 | |
|  * Copyright (C) 2019 Texas Instruments Incorporated - http://www.ti.com/
 | |
|  *	Andreas Dannenberg <dannenberg@ti.com>
 | |
|  */
 | |
| 
 | |
| #ifndef _SYSFW_LOADER_H_
 | |
| #define _SYSFW_LOADER_H_
 | |
| 
 | |
| void k3_sysfw_loader(bool rom_loaded_sysfw,
 | |
| 		     void (*config_pm_pre_callback)(void),
 | |
| 		     void (*config_pm_done_callback)(void));
 | |
| 
 | |
| #endif
 |