test_burst.h 486 B

12345678910111213141516171819202122
  1. /*
  2. * (C) Copyright 2005
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef _TEST_BURST_H
  8. #define _TEST_BURST_H
  9. /* Cache line size */
  10. #define CACHE_LINE_SIZE 16
  11. /* Binary logarithm of the cache line size */
  12. #define LG_CACHE_LINE_SIZE 4
  13. #ifndef __ASSEMBLY__
  14. extern void mmu_init(void);
  15. extern void caches_init(void);
  16. extern void flush_dcache_range(unsigned long start, unsigned long stop);
  17. #endif
  18. #endif /* _TEST_BURST_H */