mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 02:15:45 +01:00 
			
		
		
		
	This patch enables the cache command, mostly for convenience of testing. Signed-off-by: Hiroyuki Yokoyama <hiroyuki.yokoyama.vx@renesas.com> Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
		
			
				
	
	
		
			23 lines
		
	
	
		
			367 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			367 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| if ARCH_RMOBILE
 | |
| 
 | |
| choice
 | |
| 	prompt "Target Renesas SoC select"
 | |
| 	default RCAR_32
 | |
| 
 | |
| config RCAR_32
 | |
| 	bool "Renesas ARM SoCs R-Car Gen1/Gen2 (32bit)"
 | |
| 	select CPU_V7A
 | |
| 
 | |
| config RCAR_GEN3
 | |
| 	bool "Renesas ARM SoCs R-Car Gen3 (64bit)"
 | |
| 	select ARM64
 | |
| 	select PHY
 | |
| 	select CMD_CACHE
 | |
| 
 | |
| endchoice
 | |
| 
 | |
| source "arch/arm/mach-rmobile/Kconfig.32"
 | |
| source "arch/arm/mach-rmobile/Kconfig.64"
 | |
| 
 | |
| endif
 |