cacheflush.c 5.4 KB

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