risc_size_cache.c 3.3 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. int mips_icache_size = -1;
  30. int mips_icache_linesize = -1;
  31. int mips_icache_ways = 1;
  32. int mips_dcache_size = -1;
  33. int mips_dcache_linesize = -1;
  34. int mips_dcache_ways = 1;
  35. int mips_scache_size = -1;
  36. int mips_scache_linesize = -1;
  37. int mips_scache_ways = 1;
  38. int mips_tcache_size = -1;
  39. int mips_tcache_linesize = -1;
  40. int mips_tcache_ways = 1;
  41. extern void __cache_size_hook (void);
  42. /*
  43. * Size caches without reinitialising and losing dirty cache lines.
  44. * Update mips_icache_* and mips_dcache_* global variables.
  45. */
  46. void _MIPS_HAL_NOMIPS16
  47. mips_size_cache (void)
  48. {
  49. int lsize, ways;
  50. unsigned int cfg;
  51. /* Return if sizes are already known */
  52. if (mips_icache_size > 0)
  53. return;
  54. /* Check presence of Config1 */
  55. cfg = mips32_getconfig0 ();
  56. if ((cfg & CFG0_M))
  57. {
  58. /* Check if I-cache is present */
  59. cfg = mips32_getconfig1 ();
  60. lsize = (cfg & CFG1_IL_MASK) >> CFG1_IL_SHIFT;
  61. if (lsize)
  62. {
  63. lsize++;
  64. /* Get number of I-cache ways */
  65. ways = ((cfg & CFG1_IA_MASK) >> CFG1_IA_SHIFT) + 1;
  66. mips_icache_ways = ways;
  67. mips_icache_linesize = 1 << lsize;
  68. ways = ways << lsize;
  69. /* Get I-cache lines per way */
  70. lsize = ((((cfg & CFG1_IS_MASK) >> CFG1_IS_SHIFT) + 1) & 7) + 5;
  71. mips_icache_size = ways << lsize;
  72. }
  73. /* Check if D-cache is present */
  74. lsize = (cfg & CFG1_DL_MASK) >> CFG1_DL_SHIFT;
  75. if (lsize)
  76. {
  77. lsize++;
  78. /* Get number of D-cache ways */
  79. ways = ((cfg & CFG1_DA_MASK) >> CFG1_DA_SHIFT) + 1;
  80. mips_dcache_ways = ways;
  81. mips_dcache_linesize = 1 << lsize;
  82. ways = ways << lsize;
  83. /* Get D-cache lines per way */
  84. lsize = ((((cfg & CFG1_DS_MASK) >> CFG1_DS_SHIFT) + 1) & 7) + 5;
  85. mips_dcache_size = ways << lsize;
  86. }
  87. }
  88. __cache_size_hook ();
  89. return;
  90. }