cacheflush.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*
  2. * Copyright 2010 Tilera Corporation. All Rights Reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation, version 2.
  7. *
  8. * This program is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  11. * NON INFRINGEMENT. See the GNU General Public License for
  12. * more details.
  13. */
  14. #include <asm/page.h>
  15. #include <asm/cacheflush.h>
  16. #include <arch/icache.h>
  17. #include <arch/spr_def.h>
  18. void __flush_icache_range(unsigned long start, unsigned long end)
  19. {
  20. invalidate_icache((const void *)start, end - start, PAGE_SIZE);
  21. }
  22. /* Force a load instruction to issue. */
  23. static inline void force_load(char *p)
  24. {
  25. *(volatile char *)p;
  26. }
  27. /*
  28. * Flush and invalidate a VA range that is homed remotely on a single
  29. * core (if "!hfh") or homed via hash-for-home (if "hfh"), waiting
  30. * until the memory controller holds the flushed values.
  31. */
  32. void finv_buffer_remote(void *buffer, size_t size, int hfh)
  33. {
  34. char *p, *base;
  35. size_t step_size, load_count;
  36. const unsigned long STRIPE_WIDTH = 8192;
  37. #ifdef __tilegx__
  38. /*
  39. * On TILE-Gx, we must disable the dstream prefetcher before doing
  40. * a cache flush; otherwise, we could end up with data in the cache
  41. * that we don't want there. Note that normally we'd do an mf
  42. * after the SPR write to disabling the prefetcher, but we do one
  43. * below, before any further loads, so there's no need to do it
  44. * here.
  45. */
  46. uint_reg_t old_dstream_pf = __insn_mfspr(SPR_DSTREAM_PF);
  47. __insn_mtspr(SPR_DSTREAM_PF, 0);
  48. #endif
  49. /*
  50. * Flush and invalidate the buffer out of the local L1/L2
  51. * and request the home cache to flush and invalidate as well.
  52. */
  53. __finv_buffer(buffer, size);
  54. /*
  55. * Wait for the home cache to acknowledge that it has processed
  56. * all the flush-and-invalidate requests. This does not mean
  57. * that the flushed data has reached the memory controller yet,
  58. * but it does mean the home cache is processing the flushes.
  59. */
  60. __insn_mf();
  61. /*
  62. * Issue a load to the last cache line, which can't complete
  63. * until all the previously-issued flushes to the same memory
  64. * controller have also completed. If we weren't striping
  65. * memory, that one load would be sufficient, but since we may
  66. * be, we also need to back up to the last load issued to
  67. * another memory controller, which would be the point where
  68. * we crossed an 8KB boundary (the granularity of striping
  69. * across memory controllers). Keep backing up and doing this
  70. * until we are before the beginning of the buffer, or have
  71. * hit all the controllers.
  72. *
  73. * If we are flushing a hash-for-home buffer, it's even worse.
  74. * Each line may be homed on a different tile, and each tile
  75. * may have up to four lines that are on different
  76. * controllers. So as we walk backwards, we have to touch
  77. * enough cache lines to satisfy these constraints. In
  78. * practice this ends up being close enough to "load from
  79. * every cache line on a full memory stripe on each
  80. * controller" that we simply do that, to simplify the logic.
  81. *
  82. * FIXME: See bug 9535 for some issues with this code.
  83. */
  84. if (hfh) {
  85. step_size = L2_CACHE_BYTES;
  86. load_count = (STRIPE_WIDTH / L2_CACHE_BYTES) *
  87. (1 << CHIP_LOG_NUM_MSHIMS());
  88. } else {
  89. step_size = STRIPE_WIDTH;
  90. load_count = (1 << CHIP_LOG_NUM_MSHIMS());
  91. }
  92. /* Load the last byte of the buffer. */
  93. p = (char *)buffer + size - 1;
  94. force_load(p);
  95. /* Bump down to the end of the previous stripe or cache line. */
  96. p -= step_size;
  97. p = (char *)((unsigned long)p | (step_size - 1));
  98. /* Figure out how far back we need to go. */
  99. base = p - (step_size * (load_count - 2));
  100. if ((long)base < (long)buffer)
  101. base = buffer;
  102. /*
  103. * Fire all the loads we need. The MAF only has eight entries
  104. * so we can have at most eight outstanding loads, so we
  105. * unroll by that amount.
  106. */
  107. #pragma unroll 8
  108. for (; p >= base; p -= step_size)
  109. force_load(p);
  110. /*
  111. * Repeat, but with inv's instead of loads, to get rid of the
  112. * data we just loaded into our own cache and the old home L3.
  113. * No need to unroll since inv's don't target a register.
  114. */
  115. p = (char *)buffer + size - 1;
  116. __insn_inv(p);
  117. p -= step_size;
  118. p = (char *)((unsigned long)p | (step_size - 1));
  119. for (; p >= base; p -= step_size)
  120. __insn_inv(p);
  121. /* Wait for the load+inv's (and thus finvs) to have completed. */
  122. __insn_mf();
  123. #ifdef __tilegx__
  124. /* Reenable the prefetcher. */
  125. __insn_mtspr(SPR_DSTREAM_PF, old_dstream_pf);
  126. #endif
  127. }