cache.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * Copyright (C) 2014-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. #define __MIPS_NO_IMPLICIT_EHB /* No implicit EHB after mtc0 */
  29. #include <mips/cpu.h>
  30. #include <mips/cm3.h>
  31. #include <mips/m32c0.h>
  32. #include <mips/m64c0.h>
  33. #include <mips/hal.h>
  34. #if defined(__mips64) || (__mips == 64)
  35. #define mips_getentryhi() mips64_getentryhi()
  36. #define mips_setentryhi(v) mips64_setentryhi(v)
  37. #define mips_getentrylo0() mips64_getentrylo0()
  38. #define mips_setentrylo0(v) mips64_setentrylo0(v)
  39. #define mips_getentrylo1() mips64_getentrylo1()
  40. #define mips_setentrylo1(v) mips64_setentrylo1(v)
  41. #define mips_getpagemask() mips64_getpagemask()
  42. #define mips_setpagemask(v) mips64_setpagemask(v)
  43. #define mips_getindex() mips64_getindex()
  44. #define mips_setindex(v) mips64_setindex(v)
  45. #define mips_getcmgcrbase() mips64_get_c0(C0_CMGCRBASE)
  46. #else
  47. #define mips_getentryhi() mips32_getentryhi()
  48. #define mips_setentryhi(v) mips32_setentryhi(v)
  49. #define mips_getentrylo0() mips32_getentrylo0()
  50. #define mips_setentrylo0(v) mips32_setentrylo0(v)
  51. #define mips_getentrylo1() mips32_getentrylo1()
  52. #define mips_setentrylo1(v) mips32_setentrylo1(v)
  53. #define mips_getpagemask() mips32_getpagemask()
  54. #define mips_setpagemask(v) mips32_setpagemask(v)
  55. #define mips_getindex() mips32_getindex()
  56. #define mips_setindex(v) mips32_setindex(v)
  57. #define mips_getcmgcrbase() mips32_get_c0(C0_CMGCRBASE)
  58. #endif
  59. static inline __attribute__((always_inline)) _MIPS_HAL_NOMIPS16
  60. void mips_cache_op (vaddr_t kva, size_t n, int lsize, const int op)
  61. {
  62. vaddr_t addr, maxaddr, mask;
  63. if (n <= 0)
  64. return;
  65. mask = ~ (lsize - 1);
  66. addr = (kva & mask) - lsize;
  67. maxaddr = ((kva + n) - 1) & mask;
  68. do
  69. {
  70. addr = addr + lsize;
  71. mips_cache (op, addr);
  72. }
  73. while (addr != maxaddr);
  74. return;
  75. }