mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 03:58:17 +00:00 
			
		
		
		
	Moved the config FSL_PPA_ARMV8_PSCI from fsl-layerscape's Kconfig to Kconfig under armv8 and renamed it to SEC_FIRMWARE_ARMV8_PSCI. Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com> Reviewed-by: York Sun <york.sun@nxp.com>
		
			
				
	
	
		
			23 lines
		
	
	
		
			534 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			534 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright 2016 NXP Semiconductor, Inc.
 | |
|  *
 | |
|  * SPDX-License-Identifier:	GPL-2.0+
 | |
|  */
 | |
| 
 | |
| #ifndef __SEC_FIRMWARE_H_
 | |
| #define __SEC_FIRMWARE_H_
 | |
| 
 | |
| #ifdef CONFIG_FSL_LS_PPA
 | |
| #include <asm/arch/ppa.h>
 | |
| #endif
 | |
| 
 | |
| int sec_firmware_init(const void *, u32 *, u32 *);
 | |
| int _sec_firmware_entry(const void *, u32 *, u32 *);
 | |
| bool sec_firmware_is_valid(const void *);
 | |
| #ifdef CONFIG_SEC_FIRMWARE_ARMV8_PSCI
 | |
| unsigned int sec_firmware_support_psci_version(void);
 | |
| unsigned int _sec_firmware_support_psci_version(void);
 | |
| #endif
 | |
| 
 | |
| #endif /* __SEC_FIRMWARE_H_ */
 |