]> git.ipfire.org Git - people/ms/u-boot.git/blame - examples/standalone/test_burst.h
examples: move api/ and standalone/ entry to examples/Makefile
[people/ms/u-boot.git] / examples / standalone / test_burst.h
CommitLineData
931da93e
WD
1/*
2 * (C) Copyright 2005
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
931da93e
WD
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 */