init_cp0.S 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  2. * init_cp0.S
  3. *
  4. * Common CP0 register initializations
  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_cp0)
  36. // Initialize Status
  37. li a1, 0x00400404 // (M_StatusERL | M_StatusIPL1 | M_StatusBEV)
  38. mtc0 a1, C0_STATUS // write C0_Status
  39. // Initialize Watch registers if implemented.
  40. mfc0 a0, C0_CONFIG1 // read C0_Config1
  41. ext a1, a0, 3, 1 // extract bit 3 WR (Watch registers implemented)
  42. beq a1, zero, done_wr
  43. li a1, 0x7 // (M_WatchHiI | M_WatchHiR | M_WatchHiW)
  44. // Clear Watch Status bits and disable watch exceptions
  45. mtc0 a1, C0_WATCHHI // write C0_WatchHi0
  46. mtc0 zero, C0_WATCHLO // write C0_WatchLo0
  47. mtc0 a1, C0_WATCHHI, 1 // write C0_WatchHi1
  48. mtc0 zero, C0_WATCHLO, 1 // write C0_WatchLo1
  49. mtc0 a1, C0_WATCHHI, 2 // write C0_WatchHi2
  50. mtc0 zero, C0_WATCHLO, 2 // write C0_WatchLo2
  51. mtc0 a1, C0_WATCHHI, 3 // write C0_WatchHi3
  52. mtc0 zero, C0_WATCHLO, 3 // write C0_WatchLo3
  53. mtc0 a1, C0_WATCHHI, 4 // write C0_WatchHi4
  54. mtc0 zero, C0_WATCHLO, 4 // write C0_WatchLo4
  55. mtc0 a1, C0_WATCHHI, 5 // write C0_WatchHi5
  56. mtc0 zero, C0_WATCHLO, 5 // write C0_WatchLo5
  57. mtc0 a1, C0_WATCHHI, 6 // write C0_WatchHi6
  58. mtc0 zero, C0_WATCHLO, 6 // write C0_WatchLo6
  59. mtc0 a1, C0_WATCHHI, 7 // write C0_WatchHi7
  60. mtc0 zero, C0_WATCHLO, 7 // write C0_WatchLo7
  61. done_wr:
  62. // Clear WP bit to avoid watch exception upon user code entry, IV, and software interrupts.
  63. mtc0 zero, C0_CAUSE // write C0_Cause: Init AFTER init of CP0 WatchHi/Lo registers.
  64. // Clear timer interrupt. (Count was cleared at the reset vector to allow timing boot.)
  65. mtc0 zero, C0_COMPARE // write C0_Compare
  66. jr ra
  67. END(init_cp0)