init_tlb.S 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * init_tlb.S
  3. *
  4. * Common TLB initialization for MIPS cores
  5. */
  6. /*
  7. Copyright (c) 2007-2018, MIPS Tech, LLC and/or its affiliated group companies or licensors
  8. All rights reserved.
  9. Redistribution and use in source and binary forms, with or without modification, are
  10. permitted provided that the following conditions are met:
  11. 1. Redistributions of source code must retain the above copyright notice, this list of
  12. conditions and the following disclaimer.
  13. 2. Redistributions in binary form must reproduce the above copyright notice, this list
  14. of conditions and the following disclaimer in the documentation and/or other materials
  15. provided with the distribution.
  16. 3. Neither the name of the copyright holder nor the names of its contributors may be
  17. used to endorse or promote products derived from this software without specific prior
  18. written permission.
  19. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
  20. EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  21. OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
  22. SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
  24. OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  25. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  26. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  27. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28. */
  29. #include <mips/asm.h>
  30. #include <core_config.h>
  31. #include <mips/regdef.h>
  32. #include <mips/m32c0.h>
  33. /**************************************************************************************
  34. **************************************************************************************/
  35. LEAF(init_tlb)
  36. check_for_tlb:
  37. // Determine if we have a TLB
  38. mfc0 a0, C0_CONFIG // read C0_Config
  39. ext a0, a0, 7, 3 // extract MT field
  40. li a2, 0x1 // load a 1 to check against
  41. bne a0, a2, done_init_tlb
  42. mfc0 a1, C0_CONFIG1 // C0_Config1
  43. start_init_tlb:
  44. // Config1MMUSize == Number of TLB entries - 1
  45. ext a0, a1, CFG1_MMUSSHIFT, 6 // extract MMU Size
  46. mtc0 zero, C0_ENTRYLO0 // write C0_EntryLo0
  47. mtc0 zero, C0_ENTRYLO1 // write C0_EntryLo1
  48. mtc0 zero, C0_PAGEMASK // write C0_PageMask
  49. mtc0 zero, C0_WIRED // write C0_Wired
  50. li a3, 0x80000000
  51. next_tlb_entry_pair:
  52. mtc0 a0, C0_INDEX // write C0_Index
  53. mtc0 a3, C0_ENTRYHI // write C0_EntryHi
  54. ehb
  55. tlbwi
  56. add a3, 0x2000 // Add 8K to the address to avoid TLB conflict with previous entry
  57. add a0, -1
  58. bgez a0, next_tlb_entry_pair
  59. done_init_tlb:
  60. jr ra
  61. END(init_tlb)