start.S 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. #include <mips/asm.h>
  2. #include <boot.h>
  3. #include <mips/m32c0.h>
  4. #include <mips/regdef.h>
  5. /**************************************************************************************
  6. R E S E T E X C E P T I O N H A N D L E R
  7. **************************************************************************************/
  8. LEAF(__reset_vector)
  9. la v0,__ram_end
  10. li v1,0x12345678
  11. sw v1,0(v0)
  12. la a2, check_nmi
  13. mtc0 zero, C0_COUNT // Clear cp0 Count (Used to measure boot time.)
  14. jr a2
  15. // Note: adding code here may conflict with board ID register at 0xbfc0010.
  16. END(__reset_vector)
  17. /**************************************************************************************
  18. B O O T E X C E P T I O N H A N D L E R S
  19. **************************************************************************************/
  20. .org 0x200 /* TLB refill, 32 bit task. */
  21. LEAF(__boot_tlb_refill)
  22. PTR_MFC0 k0, C0_EPC
  23. PTR_MFC0 k1, C0_BADVADDR
  24. 1: wait
  25. b 1b /* Stay here */
  26. nop
  27. END(__boot_tlb_refill)
  28. .org 0x280 /* XTLB refill, 64 bit task. */
  29. LEAF(__boot_xtlb_refill)
  30. PTR_MFC0 k0, C0_EPC
  31. PTR_MFC0 k1, C0_BADVADDR
  32. 1: wait
  33. b 1b /* Stay here */
  34. nop
  35. END(__boot_xtlb_refill)
  36. .org 0x300 /* Cache error exception. */
  37. LEAF(__boot_cache_error)
  38. PTR_MFC0 k0, C0_EPC
  39. PTR_MFC0 k1, C0_BADVADDR
  40. 1: wait
  41. b 1b /* Stay here */
  42. nop
  43. END(__boot_cache_error)
  44. .extern _general_exception_handler
  45. .org 0x380 /* General exception. */
  46. LEAF(__boot_general_exception)
  47. PTR_MFC0 a0, C0_EPC
  48. PTR_MFC0 a1, C0_BADVADDR
  49. 1: wait
  50. b 1b /* Stay here */
  51. nop
  52. END(__boot_general_exception)
  53. .org 0x480 /* EJTAG debug exception (EJTAG Control Register[ProbTrap] == 0.) */
  54. LEAF(__boot_debug_exception)
  55. PTR_MFC0 k0, C0_DEPC
  56. PTR_MFC0 k1, C0_BADVADDR
  57. 1: wait
  58. b 1b /* Stay here */
  59. END(__boot_debug_exception)
  60. /**************************************************************************************
  61. **************************************************************************************/
  62. .org 0x500 /* Resume code past the boot exception vectors. */
  63. check_nmi: // Verify we are here due to a reset (and not NMI.)
  64. mfc0 a0, C0_STATUS // Read CP0 Status
  65. srl a0, 19 // Shift [NMI] into LSBs.
  66. andi a0, a0, 1 // Inspect CP0 Status[NMI]
  67. beqz a0, verify_isa // Branch if this is NOT an NMI exception.
  68. sdbbp // Failed assertion: not NMI.
  69. verify_isa: // Verify device ISA meets code requirements (RISC32R2 or later.)
  70. mfc0 a0, C0_CONFIG // Read CP0 Config
  71. srl a0, 10 // Shift [AT AR] into LSBs.
  72. andi a3, a0, 0x18 // Inspect CP0 Config[AT]
  73. beqz a3, is_mips32 // Branch if executing on RISC32 ISA.
  74. sdbbp // Failed assertion: RISC32R2.
  75. is_mips32:
  76. andi a3, a0, 0x07 // Inspect CP0 Config[AR]
  77. bnez a3, init_common_resources // Continue if ISA is RISC32R2 or later.
  78. sdbbp # Failed assertion RISC32R2.
  79. /**************************************************************************************
  80. What is initialized on execution depends on the core executing it.
  81. **************************************************************************************/
  82. init_common_resources: // initializes resources for virtual or physical "cpu".
  83. la a2,init_gpr // Fill register file with dummy value then boot info.
  84. jalr a2
  85. la a2, set_gpr_boot_values // Fill register file boot info.
  86. jalr a2
  87. la a2, init_cp0 // Init CP0 Status, Count, Compare, Watch*, and Cause.
  88. jalr a2
  89. // Determine if we have a TLB
  90. mfc0 v1, C0_CONFIG // read C0_Config
  91. ext v1, v1, 7, 3 // extract MT field
  92. li a3, 0x1 // load a 1 to check against
  93. bne v1, a3, done_tlb // no tlb?
  94. // determined if this is VPE 0 so skip shared TLB check
  95. beqz r9_vpe_num, do_tlb // VPE 0?
  96. // Must be VPE1 determined if TLB is shared if it is skip init_tlb (already done by VPE0)
  97. mfc0 a0, $0, 1 // MVPControl
  98. ext a0, a0, 3, 1 // MVPControl[STLB]
  99. beq a0, zero, done_tlb // TLB shared?
  100. do_tlb:
  101. la a2, init_tlb // Generate unique EntryHi contents per entry pair.
  102. jalr a2
  103. done_tlb:
  104. bnez r9_vpe_num, init_done // If we are not a vpe0 then we are done.
  105. init_sys_resources: # We are core0 vpe0.
  106. la a2, init_icache // Initialize the L1 instruction cache. (Executing using I$ on return.)
  107. jalr a2
  108. // The changing of Kernel mode cacheability must be done from KSEG1
  109. // Since the code is executing from KSEG0 It needs to do a jump to KSEG1 change K0 and jump back to KSEG0
  110. la a2, change_k0_cca
  111. li a1, 0xf
  112. ins a2, a1, 29, 1 // changed to KSEG1 address by setting bit 29
  113. jalr a2
  114. la a2, init_dcache // Initialize the L1 data cache
  115. jalr a2
  116. la a2, copy_c2_ram // Copy "C" code and data to RAM and zero bss (uncached.)
  117. jalr a2
  118. la a2, init_itc // Initialize Inter-Thread Communications unit
  119. jalr a2
  120. la a2, init_vpe1 // Set up MT ASE vpe1 to execute this boot code also.
  121. jalr a2
  122. init_done:
  123. // Prepare for eret to _start (sp and gp set up per vpe in set_gpr_boot_values).
  124. la ra, __exit // If main return then go to all_done:.
  125. la a1, _start
  126. mtc0 a1, C0_ERRPC // ErrorEPC
  127. ehb
  128. eret # Exit reset exception handler for this vpe and start execution of main().
  129. nop
  130. /**************************************************************************************
  131. **************************************************************************************/
  132. .global __exit
  133. __exit:
  134. all_done:
  135. # Looks like main returned. Just busy wait spin.
  136. b all_done