]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - examples/standalone/test_burst.h
avr32: delete non generic board mimc200
[karo-tx-uboot.git] / examples / standalone / test_burst.h
1 /*
2  * (C) Copyright 2005
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #ifndef _TEST_BURST_H
9 #define _TEST_BURST_H
10
11 /* Cache line size */
12 #define CACHE_LINE_SIZE         16
13 /* Binary logarithm of the cache line size */
14 #define LG_CACHE_LINE_SIZE      4
15
16 #ifndef __ASSEMBLY__
17 extern void mmu_init(void);
18 extern void caches_init(void);
19 extern void flush_dcache_range(unsigned long start, unsigned long stop);
20 #endif
21
22 #endif /* _TEST_BURST_H */