mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 20:18:18 +00:00 
			
		
		
		
	Some of the setups including cn9130 opens mmio window starting from 0xc0000000, reflect it in the u-boot code. Signed-off-by: Grzegorz Jaszczyk <jaz@semihalf.com> Signed-off-by: Kostya Porotchkin <kostap@marvell.com> Signed-off-by: Stefan Roese <sr@denx.de>
		
			
				
	
	
		
			19 lines
		
	
	
		
			400 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			400 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0 */
 | |
| /*
 | |
|  * Copyright (C) 2018 Marvell International Ltd.
 | |
|  */
 | |
| 
 | |
| #ifndef _FW_INFO_H_
 | |
| #define _FW_INFO_H_
 | |
| 
 | |
| /* Protected ATF and TEE region */
 | |
| #define ATF_REGION_START		0x4000000
 | |
| #define ATF_REGION_END			0x5400000
 | |
| 
 | |
| /* Firmware related definition used for SMC calls */
 | |
| #define MV_SIP_DRAM_SIZE		0x82000010
 | |
| 
 | |
| #define MMIO_REGS_PHY_BASE		0xc0000000
 | |
| 
 | |
| #endif /* _FW_INFO_H_ */
 |