risc_flush_cache.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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 "cache.h"
  29. /* Writeback and invalidate all caches */
  30. void __attribute__ ((use_hazard_barrier_return)) _MIPS_HAL_NOMIPS16
  31. mips_flush_cache (void)
  32. {
  33. /* Calculate cache sizes */
  34. mips_size_cache ();
  35. /* If D-cache is present */
  36. if (mips_dcache_size > 0)
  37. mips_cache_op ((vaddr_t) KSEG0_BASE, mips_dcache_size,
  38. mips_dcache_linesize, Index_Writeback_Inv_D);
  39. /* If I-cache is present */
  40. if (mips_icache_size > 0)
  41. mips_cache_op ((vaddr_t) KSEG0_BASE, mips_icache_size,
  42. mips_icache_linesize, Index_Invalidate_I);
  43. /* If L2-cache is present */
  44. if (mips_scache_size > 0)
  45. {
  46. mips_sync ();
  47. mips_cache_op ((vaddr_t) KSEG0_BASE, mips_scache_size,
  48. mips_scache_linesize, Index_Writeback_Inv_S);
  49. }
  50. mips_sync ();
  51. return;
  52. }
  53. /* Writeback and invalidate D-cache */
  54. void __attribute__ ((use_hazard_barrier_return)) _MIPS_HAL_NOMIPS16
  55. mips_flush_dcache (void)
  56. {
  57. /* Calculate cache sizes */
  58. mips_size_cache ();
  59. /* If D-cache is present */
  60. if (mips_dcache_size > 0)
  61. mips_cache_op ((vaddr_t) KSEG0_BASE, mips_dcache_size,
  62. mips_dcache_linesize, Index_Writeback_Inv_D);
  63. /* If L2-cache is present */
  64. if (mips_scache_size > 0)
  65. {
  66. mips_sync ();
  67. mips_cache_op ((vaddr_t) KSEG0_BASE, mips_scache_size,
  68. mips_scache_linesize, Index_Writeback_Inv_S);
  69. }
  70. mips_sync ();
  71. return;
  72. }
  73. /* Writeback and invalidate I-cache */
  74. void __attribute__ ((use_hazard_barrier_return)) _MIPS_HAL_NOMIPS16
  75. mips_flush_icache (void)
  76. {
  77. /* Calculate cache sizes */
  78. mips_size_cache ();
  79. /* If I-cache is present */
  80. if (mips_icache_size > 0)
  81. mips_cache_op ((vaddr_t) KSEG0_BASE, mips_icache_size,
  82. mips_icache_linesize, Index_Invalidate_I);
  83. /* If L2-cache is present */
  84. if (mips_scache_size > 0)
  85. {
  86. mips_sync ();
  87. mips_cache_op ((vaddr_t) KSEG0_BASE, mips_scache_size,
  88. mips_scache_linesize, Index_Writeback_Inv_S);
  89. }
  90. mips_sync ();
  91. return;
  92. }