cache.c 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * (C) Copyright 2016 Vasily Khoruzhick <anarsoul@gmail.com>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <linux/types.h>
  7. #include <common.h>
  8. #ifndef CONFIG_SYS_DCACHE_OFF
  9. void invalidate_dcache_all(void)
  10. {
  11. /* Flush/Invalidate I cache */
  12. asm volatile("mcr p15, 0, %0, c7, c5, 0\n" : : "r"(0));
  13. /* Flush/Invalidate D cache */
  14. asm volatile("mcr p15, 0, %0, c7, c6, 0\n" : : "r"(0));
  15. }
  16. void flush_dcache_all(void)
  17. {
  18. return invalidate_dcache_all();
  19. }
  20. void invalidate_dcache_range(unsigned long start, unsigned long stop)
  21. {
  22. start &= ~(CONFIG_SYS_CACHELINE_SIZE - 1);
  23. stop &= ~(CONFIG_SYS_CACHELINE_SIZE - 1);
  24. while (start <= stop) {
  25. asm volatile("mcr p15, 0, %0, c7, c6, 1\n" : : "r"(start));
  26. start += CONFIG_SYS_CACHELINE_SIZE;
  27. }
  28. }
  29. void flush_dcache_range(unsigned long start, unsigned long stop)
  30. {
  31. return invalidate_dcache_range(start, stop);
  32. }
  33. #else /* #ifndef CONFIG_SYS_DCACHE_OFF */
  34. void invalidate_dcache_all(void)
  35. {
  36. }
  37. void flush_dcache_all(void)
  38. {
  39. }
  40. #endif /* #ifndef CONFIG_SYS_DCACHE_OFF */
  41. /*
  42. * Stub implementations for l2 cache operations
  43. */
  44. __weak void l2_cache_disable(void) {}
  45. #if defined CONFIG_SYS_THUMB_BUILD
  46. __weak void invalidate_l2_cache(void) {}
  47. #endif