risc_l2size.c 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. #include <mips/uhi_syscalls.h>
  30. static void __attribute__ ((noreturn)) _MIPS_HAL_NOMIPS16
  31. __boot_fail (void)
  32. {
  33. register long arg1 asm ("$4") = __MIPS_UHI_BF_CACHE; /* L2 cache configuration error */
  34. register long op asm ("$25") = __MIPS_UHI_BOOTFAIL;
  35. register long ret asm ("$2") = __MIPS_UHI_SYSCALL_NUM;
  36. __asm__ volatile (" # %0 = bootfail(%0, %1) op=%2\n"
  37. SYSCALL (__MIPS_UHI_SYSCALL_NUM)
  38. : "+r" (ret)
  39. : "r" (arg1), "r" (op));
  40. __boot_fail ();
  41. }
  42. /*
  43. * Internal routine to determine cache sizes by looking at config
  44. * registers. Sizing information is stored directly to memory.
  45. */
  46. void _MIPS_HAL_NOMIPS16
  47. __def_cache_size_hook (void)
  48. {
  49. /*
  50. * Fall back to Config2 based L2 if Config3[M] or Config4[M]
  51. * or Config5[L2C] is not present.
  52. */
  53. if ((mips32_getconfig3 () & CFG3_M) == 0
  54. || (mips32_getconfig4 () & CFG4_M) == 0
  55. || (mips32_getconfig5 () & CFG5_L2C) == 0)
  56. {
  57. unsigned int cfg, tmp1, tmp2;
  58. cfg = mips32_getconfig2 ();
  59. /* Get S-cache line size (log2) */
  60. tmp1 = (cfg & CFG2_SL_MASK) >> CFG2_SL_SHIFT;
  61. if (tmp1 == 0)
  62. return; /* No S-cache */
  63. tmp1++;
  64. /* Get number of S-cache ways */
  65. mips_scache_ways = ((cfg & CFG2_SA_MASK) >> CFG2_SA_SHIFT) + 1;
  66. /* Total scache size = lines/way * linesize * ways */
  67. mips_scache_linesize = 1 << tmp1;
  68. tmp2 = mips_scache_ways << tmp1;
  69. /* Get scache lines per way */
  70. tmp1 = ((cfg & CFG2_SS_MASK) >> CFG2_SS_SHIFT) + 6;
  71. mips_scache_size = tmp2 << tmp1;
  72. return;
  73. }
  74. /*
  75. * No CM3 code supplied but we have a memory mapped L2 config.
  76. * Report a boot failure through UHI.
  77. */
  78. __boot_fail ();
  79. }
  80. void __cache_size_hook (void) __attribute__ ((weak, alias ("__def_cache_size_hook")));