blob: 87f5927a8e9125fa8aba385b4b3ab5a35b136679 [file] [log] [blame]
The Android Open Source Project8360ac12021-04-07 09:00:04 -07001/*
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__
17extern void mmu_init(void);
18extern void caches_init(void);
19extern void flush_dcache_range(unsigned long start, unsigned long stop);
20#endif
21
22#endif /* _TEST_BURST_H */