mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 02:15:45 +01:00 
			
		
		
		
	We move the SYS_CACHE_SHIFT_N options from arch/arm/Kconfig to arch/Kconfig, and introduce SYS_CACHE_SHIFT_4 to provide a size of 16. Introduce select statements for other architectures based on current usage. For MIPS, we take the existing arch-specific symbol and migrate to the generic symbol. This lets us remove a little bit of otherwise unused code. Cc: Alexey Brodkin <alexey.brodkin@synopsys.com> Cc: Anup Patel <anup.patel@wdc.com> Cc: Atish Patra <atish.patra@wdc.com> Cc: Bin Meng <bmeng.cn@gmail.com> Cc: Leo <ycliang@andestech.com> Cc: Palmer Dabbelt <palmer@dabbelt.com> Cc: Paul Walmsley <paul.walmsley@sifive.com> Cc: Sean Anderson <seanga2@gmail.com> Cc: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com> Acked-by: Sean Anderson <seanga2@gmail.com> Reviewed-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Reviewed-by: Rick Chen <rick@andestech.com>
		
			
				
	
	
		
			24 lines
		
	
	
		
			670 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			670 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0+ */
 | |
| /*
 | |
|  * Copyright (c) 2011 The Chromium OS Authors.
 | |
|  */
 | |
| 
 | |
| #ifndef __SANDBOX_CACHE_H__
 | |
| #define __SANDBOX_CACHE_H__
 | |
| 
 | |
| /*
 | |
|  * For native compilation of the sandbox we should still align
 | |
|  * the contents of stack buffers to something reasonable.  The
 | |
|  * GCC macro __BIGGEST_ALIGNMENT__ is defined to be the maximum
 | |
|  * required alignment for any basic type.  This seems reasonable.
 | |
|  * This is however GCC specific so if we don't have that available
 | |
|  * assume that 16 is large enough.
 | |
|  */
 | |
| #ifdef __BIGGEST_ALIGNMENT__
 | |
| #define ARCH_DMA_MINALIGN	__BIGGEST_ALIGNMENT__
 | |
| #else
 | |
| #define ARCH_DMA_MINALIGN	16
 | |
| #endif
 | |
| 
 | |
| #endif /* __SANDBOX_CACHE_H__ */
 |