cacheflush.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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 <linux/export.h>
  15. #include <asm/page.h>
  16. #include <asm/cacheflush.h>
  17. #include <arch/icache.h>
  18. #include <arch/spr_def.h>
  19. void __flush_icache_range(unsigned long start, unsigned long end)
  20. {
  21. invalidate_icache((const void *)start, end - start, PAGE_SIZE);
  22. }
  23. /* Force a load instruction to issue. */
  24. static inline void force_load(char *p)
  25. {
  26. *(volatile char *)p;
  27. }
  28. /*
  29. * Flush and invalidate a VA range that is homed remotely on a single
  30. * core (if "!hfh") or homed via hash-for-home (if "hfh"), waiting
  31. * until the memory controller holds the flushed values.
  32. */
  33. void __attribute__((optimize("omit-frame-pointer")))
  34. finv_buffer_remote(void *buffer, size_t size, int hfh)
  35. {
  36. char *p, *base;
  37. size_t step_size, load_count;
  38. /*
  39. * On TILEPro the striping granularity is a fixed 8KB; on
  40. * TILE-Gx it is configurable, and we rely on the fact that
  41. * the hypervisor always configures maximum striping, so that
  42. * bits 9 and 10 of the PA are part of the stripe function, so
  43. * every 512 bytes we hit a striping boundary.
  44. *
  45. */
  46. #ifdef __tilegx__
  47. const unsigned long STRIPE_WIDTH = 512;
  48. #else
  49. const unsigned long STRIPE_WIDTH = 8192;
  50. #endif
  51. #ifdef __tilegx__
  52. /*
  53. * On TILE-Gx, we must disable the dstream prefetcher before doing
  54. * a cache flush; otherwise, we could end up with data in the cache
  55. * that we don't want there. Note that normally we'd do an mf
  56. * after the SPR write to disabling the prefetcher, but we do one
  57. * below, before any further loads, so there's no need to do it
  58. * here.
  59. */
  60. uint_reg_t old_dstream_pf = __insn_mfspr(SPR_DSTREAM_PF);
  61. __insn_mtspr(SPR_DSTREAM_PF, 0);
  62. #endif
  63. /*
  64. * Flush and invalidate the buffer out of the local L1/L2
  65. * and request the home cache to flush and invalidate as well.
  66. */
  67. __finv_buffer(buffer, size);
  68. /*
  69. * Wait for the home cache to acknowledge that it has processed
  70. * all the flush-and-invalidate requests. This does not mean
  71. * that the flushed data has reached the memory controller yet,
  72. * but it does mean the home cache is processing the flushes.
  73. */
  74. __insn_mf();
  75. /*
  76. * Issue a load to the last cache line, which can't complete
  77. * until all the previously-issued flushes to the same memory
  78. * controller have also completed. If we weren't striping
  79. * memory, that one load would be sufficient, but since we may
  80. * be, we also need to back up to the last load issued to
  81. * another memory controller, which would be the point where
  82. * we crossed a "striping" boundary (the granularity of striping
  83. * across memory controllers). Keep backing up and doing this
  84. * until we are before the beginning of the buffer, or have
  85. * hit all the controllers.
  86. *
  87. * If we are flushing a hash-for-home buffer, it's even worse.
  88. * Each line may be homed on a different tile, and each tile
  89. * may have up to four lines that are on different
  90. * controllers. So as we walk backwards, we have to touch
  91. * enough cache lines to satisfy these constraints. In
  92. * practice this ends up being close enough to "load from
  93. * every cache line on a full memory stripe on each
  94. * controller" that we simply do that, to simplify the logic.
  95. *
  96. * On TILE-Gx the hash-for-home function is much more complex,
  97. * with the upshot being we can't readily guarantee we have
  98. * hit both entries in the 128-entry AMT that were hit by any
  99. * load in the entire range, so we just re-load them all.
  100. * With larger buffers, we may want to consider using a hypervisor
  101. * trap to issue loads directly to each hash-for-home tile for
  102. * each controller (doing it from Linux would trash the TLB).
  103. */
  104. if (hfh) {
  105. step_size = L2_CACHE_BYTES;
  106. #ifdef __tilegx__
  107. load_count = (size + L2_CACHE_BYTES - 1) / L2_CACHE_BYTES;
  108. #else
  109. load_count = (STRIPE_WIDTH / L2_CACHE_BYTES) *
  110. (1 << CHIP_LOG_NUM_MSHIMS());
  111. #endif
  112. } else {
  113. step_size = STRIPE_WIDTH;
  114. load_count = (1 << CHIP_LOG_NUM_MSHIMS());
  115. }
  116. /* Load the last byte of the buffer. */
  117. p = (char *)buffer + size - 1;
  118. force_load(p);
  119. /* Bump down to the end of the previous stripe or cache line. */
  120. p -= step_size;
  121. p = (char *)((unsigned long)p | (step_size - 1));
  122. /* Figure out how far back we need to go. */
  123. base = p - (step_size * (load_count - 2));
  124. if ((unsigned long)base < (unsigned long)buffer)
  125. base = buffer;
  126. /*
  127. * Fire all the loads we need. The MAF only has eight entries
  128. * so we can have at most eight outstanding loads, so we
  129. * unroll by that amount.
  130. */
  131. #pragma unroll 8
  132. for (; p >= base; p -= step_size)
  133. force_load(p);
  134. /*
  135. * Repeat, but with finv's instead of loads, to get rid of the
  136. * data we just loaded into our own cache and the old home L3.
  137. * No need to unroll since finv's don't target a register.
  138. * The finv's are guaranteed not to actually flush the data in
  139. * the buffer back to their home, since we just read it, so the
  140. * lines are clean in cache; we will only invalidate those lines.
  141. */
  142. p = (char *)buffer + size - 1;
  143. __insn_finv(p);
  144. p -= step_size;
  145. p = (char *)((unsigned long)p | (step_size - 1));
  146. for (; p >= base; p -= step_size)
  147. __insn_finv(p);
  148. /* Wait for these finv's (and thus the first finvs) to be done. */
  149. __insn_mf();
  150. #ifdef __tilegx__
  151. /* Reenable the prefetcher. */
  152. __insn_mtspr(SPR_DSTREAM_PF, old_dstream_pf);
  153. #endif
  154. }
  155. EXPORT_SYMBOL_GPL(finv_buffer_remote);