risc_clean_cache.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /*
  2. * Copyright (C) 2017-2018 MIPS Tech, LLC
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are met:
  6. *
  7. * 1. Redistributions of source code must retain the above copyright notice,
  8. * this list of conditions and the following disclaimer.
  9. * 2. Redistributions in binary form must reproduce the above copyright notice,
  10. * this list of conditions and the following disclaimer in the documentation
  11. * and/or other materials provided with the distribution.
  12. * 3. Neither the name of the copyright holder nor the names of its
  13. * contributors may be used to endorse or promote products derived from this
  14. * software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  17. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  18. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  19. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
  20. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  21. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  22. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  23. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  24. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  25. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  26. * POSSIBILITY OF SUCH DAMAGE.
  27. */
  28. #include <mips/hal.h>
  29. #include "cache.h"
  30. /* Writeback and invalidate address range in all caches */
  31. void __attribute__ ((use_hazard_barrier_return)) _MIPS_HAL_NOMIPS16
  32. mips_clean_cache (vaddr_t kva, size_t n)
  33. {
  34. /* Calculate cache sizes */
  35. mips_size_cache ();
  36. /* If D-cache is present */
  37. if (mips_dcache_linesize > 0)
  38. mips_cache_op (kva, n, mips_dcache_linesize, Hit_Writeback_Inv_D);
  39. /* If I-cache is present */
  40. if (mips_icache_linesize > 0)
  41. mips_cache_op (kva, n, mips_icache_linesize, Hit_Invalidate_I);
  42. /* If L2-cache is present */
  43. if (mips_scache_linesize > 0)
  44. mips_cache_op (kva, n, mips_scache_linesize, Hit_Writeback_Inv_S);
  45. mips_sync ();
  46. return;
  47. }
  48. /* Writeback and invalidate address range in I-cache */
  49. void __attribute__ ((use_hazard_barrier_return)) _MIPS_HAL_NOMIPS16
  50. mips_clean_icache (vaddr_t kva, size_t n)
  51. {
  52. /* Calculate cache sizes */
  53. mips_size_cache ();
  54. /* If I-cache is present */
  55. if (mips_icache_linesize > 0)
  56. mips_cache_op (kva, n, mips_icache_linesize, Hit_Invalidate_I);
  57. /* If L2-cache is present */
  58. if (mips_scache_linesize > 0)
  59. mips_cache_op (kva, n, mips_scache_linesize, Hit_Writeback_Inv_S);
  60. mips_sync ();
  61. return;
  62. }
  63. /* Writeback and invalidate address range in D-cache */
  64. void __attribute__ ((use_hazard_barrier_return)) _MIPS_HAL_NOMIPS16
  65. mips_clean_dcache (vaddr_t kva, size_t n)
  66. {
  67. /* Calculate cache sizes */
  68. mips_size_cache ();
  69. /* If D-cache is present */
  70. if (mips_dcache_linesize > 0)
  71. mips_cache_op (kva, n, mips_dcache_linesize, Hit_Writeback_Inv_D);
  72. /* If L2-cache is present */
  73. if (mips_scache_linesize > 0)
  74. mips_cache_op (kva, n, mips_scache_linesize, Hit_Writeback_Inv_S);
  75. mips_sync ();
  76. return;
  77. }
  78. /*
  79. * Invalidate but don't writeback address range in data caches
  80. * Only safe if region is totally cache-line aligned.
  81. */
  82. void __attribute__ ((use_hazard_barrier_return)) _MIPS_HAL_NOMIPS16
  83. mips_clean_dcache_nowrite (vaddr_t kva, size_t n)
  84. {
  85. /* Calculate cache sizes */
  86. mips_size_cache ();
  87. /* If D-cache is present */
  88. if (mips_dcache_linesize > 0)
  89. mips_cache_op (kva, n, mips_dcache_linesize, Hit_Invalidate_D);
  90. /* If L2-cache is present */
  91. if (mips_scache_linesize > 0)
  92. mips_cache_op (kva, n, mips_scache_linesize, Hit_Invalidate_S);
  93. mips_sync ();
  94. return;
  95. }