wdenk | ef3386f | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2004, Psyent Corporation <www.psyent.com> |
| 3 | * Scott McNutt <smcnutt@psyent.com> |
| 4 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame^] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | ef3386f | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __ASM_NIOS2_CACHE_H_ |
| 9 | #define __ASM_NIOS2_CACHE_H_ |
| 10 | |
| 11 | extern void flush_dcache (unsigned long start, unsigned long size); |
| 12 | extern void flush_icache (unsigned long start, unsigned long size); |
| 13 | |
Anton Staaf | 4b17083 | 2011-10-17 16:46:05 -0700 | [diff] [blame] | 14 | /* |
| 15 | * Valid L1 data cache line sizes for the NIOS2 architecture are 4, 16, and 32 |
| 16 | * bytes. If the board configuration has not specified one we default to the |
| 17 | * largest of these values for alignment of DMA buffers. |
| 18 | */ |
| 19 | #ifdef CONFIG_SYS_CACHELINE_SIZE |
| 20 | #define ARCH_DMA_MINALIGN CONFIG_SYS_CACHELINE_SIZE |
| 21 | #else |
| 22 | #define ARCH_DMA_MINALIGN 32 |
| 23 | #endif |
| 24 | |
wdenk | ef3386f | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 25 | #endif /* __ASM_NIOS2_CACHE_H_ */ |