cacheflush.c 5.5 KB

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