wdenk | 931da93 | 2005-05-07 19:06:32 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2005 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 931da93 | 2005-05-07 19:06:32 +0000 | [diff] [blame] | 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 */ |