]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/sparc/include/asm/cache.h
usb: dfu: make nand upload working
[karo-tx-uboot.git] / arch / sparc / include / asm / cache.h
1 /*
2  * (C) Copyright 2008,
3  * Daniel Hellstrom, Gaisler Research, daniel@gaisler.com.
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #ifndef __SPARC_CACHE_H__
9 #define __SPARC_CACHE_H__
10
11 #include <linux/config.h>
12 #include <asm/processor.h>
13
14 /*
15  * If CONFIG_SYS_CACHELINE_SIZE is defined use it for DMA alignment.  Otherwise
16  * use 32-bytes, the cacheline size for Sparc.
17  */
18 #ifdef CONFIG_SYS_CACHELINE_SIZE
19 #define ARCH_DMA_MINALIGN       CONFIG_SYS_CACHELINE_SIZE
20 #else
21 #define ARCH_DMA_MINALIGN       32
22 #endif
23
24 #endif