Nobuhiro Iwamatsu | e92c9518 | 2008-03-12 12:15:29 +0900 | [diff] [blame] | 1 | #ifndef __ASM_SH_CACHE_H |
| 2 | #define __ASM_SH_CACHE_H |
| 3 | |
| 4 | #if defined(CONFIG_SH4) || defined(CONFIG_SH4A) |
| 5 | |
Nobuhiro Iwamatsu | b5d10a1 | 2008-09-18 19:34:36 +0900 | [diff] [blame] | 6 | int cache_control(unsigned int cmd); |
| 7 | |
Nobuhiro Iwamatsu | e92c9518 | 2008-03-12 12:15:29 +0900 | [diff] [blame] | 8 | #define L1_CACHE_BYTES 32 |
Anton Staaf | 2482e3c | 2011-10-17 16:46:07 -0700 | [diff] [blame] | 9 | |
Nobuhiro Iwamatsu | e92c9518 | 2008-03-12 12:15:29 +0900 | [diff] [blame] | 10 | struct __large_struct { unsigned long buf[100]; }; |
| 11 | #define __m(x) (*(struct __large_struct *)(x)) |
| 12 | |
Mike Frysinger | 1721064 | 2011-10-27 04:59:59 -0400 | [diff] [blame] | 13 | void dcache_wback_range(u32 start, u32 end); |
| 14 | void dcache_invalid_range(u32 start, u32 end); |
Nobuhiro Iwamatsu | e92c9518 | 2008-03-12 12:15:29 +0900 | [diff] [blame] | 15 | |
Anton Staaf | 2482e3c | 2011-10-17 16:46:07 -0700 | [diff] [blame] | 16 | #else |
| 17 | |
| 18 | /* |
| 19 | * 32-bytes is the largest L1 data cache line size for SH the architecture. So |
| 20 | * it is a safe default for DMA alignment. |
| 21 | */ |
| 22 | #define ARCH_DMA_MINALIGN 32 |
| 23 | |
Nobuhiro Iwamatsu | e92c9518 | 2008-03-12 12:15:29 +0900 | [diff] [blame] | 24 | #endif /* CONFIG_SH4 || CONFIG_SH4A */ |
| 25 | |
Anton Staaf | 2482e3c | 2011-10-17 16:46:07 -0700 | [diff] [blame] | 26 | /* |
| 27 | * Use the L1 data cache line size value for the minimum DMA buffer alignment |
| 28 | * on SH. |
| 29 | */ |
| 30 | #ifndef ARCH_DMA_MINALIGN |
| 31 | #define ARCH_DMA_MINALIGN L1_CACHE_BYTES |
| 32 | #endif |
| 33 | |
Nobuhiro Iwamatsu | e92c9518 | 2008-03-12 12:15:29 +0900 | [diff] [blame] | 34 | #endif /* __ASM_SH_CACHE_H */ |