mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-30 03:28:16 +00:00 
			
		
		
		
	Move CONFIG_SYS_ARM_CACHE_WRITETHROUGH and CONFIG_SYS_ARM_CACHE_WRITEALLOC into Kconfig done by moveconfig.py. Kconfig uses a choice between the 3 values supported in U-Boot, including the new configuration CONFIG_SYS_ARM_CACHE_WRITEBACK (the default configuration). The patch also avoids to select simultaneously 2 configurations. Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			341 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			341 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0+ */
 | |
| /*
 | |
|  * Copyright 2014 Broadcom Corporation.
 | |
|  */
 | |
| 
 | |
| #ifndef __IPROC_COMMON_CONFIGS_H
 | |
| #define __IPROC_COMMON_CONFIGS_H
 | |
| 
 | |
| #include <linux/stringify.h>
 | |
| 
 | |
| /* Architecture, CPU, chip, etc */
 | |
| #define CONFIG_IPROC
 | |
| 
 | |
| /* Memory Info */
 | |
| #define CONFIG_SYS_SDRAM_BASE		0x61000000
 | |
| 
 | |
| #endif /* __IPROC_COMMON_CONFIGS_H */
 |