init_vpe_s.S 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. /*
  2. * init_vpe1.S
  3. *
  4. * Initialize the second vpe and additional TCs
  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 <boot.h>
  31. #include <mips/mt.h>
  32. #include <mips/regdef.h>
  33. #include <mips/m32c0.h>
  34. #define target_TC a3 // will hold the current TC being configured
  35. #define target_VPE t0 // will hold the current VPE
  36. /**************************************************************************************
  37. **************************************************************************************/
  38. LEAF(init_vpe_s)
  39. // each vpe will need to set up additional TC bound to it
  40. // If there are more TCs than VPEs the remaining TCs will be bound to
  41. // the highest numbered VPE
  42. beqz r21_more_tcs, done_init_vpe // return if there is no more TCs
  43. li target_TC, 1
  44. li target_VPE, 0 // preset the target VPE to 0
  45. beqz r20_more_vpes, just_1_VPE // If there is no other vpes then leave target_VPE set to 0
  46. li target_VPE, 1 // Since there are more than 1 VPEs start with VPE1
  47. just_1_VPE:
  48. // This is executing on TC0 bound to VPE0. Therefore VPEConf0.MVP is already set.
  49. // Enable Virtual Processor Configuration to enter configuration mode
  50. mfc0 a0, C0_MVPCONTROL // read C0_MVPCtl
  51. or a0, (1 << 1) // set VPC to enable Virtual Processor Configuration
  52. mtc0 a0, C0_MVPCONTROL // write C0_MVPCtl
  53. ehb
  54. // Initialize target_TC, target_TC will be incremented at the
  55. // bottom of the loop if there are more TCs
  56. nexttc:
  57. // Set TargTC in the CP0 VPECONTROL register
  58. // TargTC Selects the TC number of the "other thread context" for any
  59. // Move to Thread Context or Move from Thread Context instructions
  60. // (any instructions that begin with mtt or mft)
  61. mfc0 a0, C0_VPECONTROL // read C0_VPECTL
  62. ins a0, target_TC, 0, 8 // insert TargTC
  63. mtc0 a0, C0_VPECONTROL // write C0_VPECTL
  64. ehb
  65. // Halt target_TC being configured
  66. li a0, 1 // set Halt bit
  67. mttc0 a0, C0_TCHALT // write C0_TCHALT
  68. ehb
  69. // Set up TCStatus register:
  70. // Disable Coprocessor Usable bits
  71. // Disable MDMX/DSP ASE
  72. // Clear Dirty target_TC
  73. // not dynamically allocatable
  74. // not allocated
  75. // Kernel mode
  76. // interrupt exempt
  77. // ASID 0
  78. // NOTE: Only bit that needs to be set is IXMT
  79. li a0, (1 << 10) // set IXMT
  80. mttc0 a0, C0_TCSTATUS // write C0_TCSTATUS of target TC
  81. // Initialize the target_TC's register file (NOTE: $2 is in the gpr of the tc executing this code)
  82. // NOTE: Good practice but not programmatically necessary
  83. li $2, 0xdeadbeef
  84. .set noat
  85. mttgpr $2, $1
  86. .set at
  87. mttgpr $2, $2
  88. mttgpr $2, $3
  89. mttgpr $2, $4
  90. mttgpr $2, $5
  91. mttgpr $2, $6
  92. mttgpr $2, $7
  93. mttgpr $2, $8
  94. mttgpr $2, $9
  95. mttgpr $2, $10
  96. mttgpr $2, $11
  97. mttgpr $2, $12
  98. mttgpr $2, $13
  99. mttgpr $2, $14
  100. mttgpr $2, $15
  101. mttgpr $2, $16
  102. mttgpr $2, $17
  103. mttgpr $2, $18
  104. mttgpr $2, $19
  105. mttgpr $2, $20
  106. mttgpr $2, $21
  107. mttgpr $2, $22
  108. mttgpr $2, $23
  109. mttgpr $2, $24
  110. mttgpr $2, $25
  111. mttgpr $2, $26
  112. mttgpr $2, $27
  113. mttgpr $2, $28
  114. mttgpr $2, $29
  115. mttgpr $2, $30
  116. mttgpr $2, $31
  117. // Bind TC to VPE context
  118. // All mftc0 and mttc0 instructions
  119. // will then operate on the VPE's CP0 registers
  120. mftc0 a1, C0_TCBIND // Read C0_TCBind
  121. ins a1, target_VPE, 0, 4 // insert vpe into CurVPE field
  122. mttc0 a1, C0_TCBIND // write C0_TCBind
  123. // Only what one TC per VPE to execute. Since each TC will be assigned
  124. // to a VPE in order then when the TC number exceeds the VPE number
  125. // Don't continue to set it up to execute the boot code
  126. bgt target_TC, target_VPE, check_for_more
  127. // setup to execute the boot code
  128. // Set XTC for target_TC (sets TC1 to be the only TC runnable on the VPE1)
  129. mftc0 a0, C0_VPECONF0 // read C0_VPECONF0
  130. ins a0, target_TC, 21, 8 // insert XTC
  131. mttc0 a0, C0_VPECONF0 // write C0_VPECONF0
  132. // Disable multi-threading for VPE1
  133. mftc0 a0, C0_VPECONTROL // read C0_VPECTL
  134. ins a0, zero, 15, 1 // clear TE
  135. mttc0 a0, C0_VPECONTROL // write C0_VPECTL
  136. // Just Clear VPA to prevent any TC bound to VPE from executing
  137. // and set master VPE so CP0 registers are writable
  138. mftc0 a0, C0_VPECONF0 // read C0_VPECONF0
  139. ins a0, zero, 0, 1 // clear VPA
  140. or a0, (1 << 1) // set MVP
  141. mttc0 a0, C0_VPECONF0 // write C0_VPECONF0
  142. mfc0 a0, C0_STATUS // read C0_STATUS
  143. mttc0 a0, C0_STATUS // write C0_Status
  144. li a0, 0x12345678
  145. mttc0 a0, C0_EPC // write C0_EPC
  146. mttc0 zero, C0_CAUSE // write C0_CAUSE
  147. mfc0 a0, C0_CONFIG // read VPE 0 C0_CONFIG
  148. mttc0 a0, C0_CONFIG // write it to VPE 1 C0_CONFIG
  149. mftc0 a0, C0_EBASE // read C0_EBASE
  150. ext a0, a0, 0, 10 // extract CPUNum
  151. mttgpr a0, r23_cpu_num // write CPUNum to GPR 23 of target TC
  152. // Load the C0_TCRESTART with the reset vector so each VPE will execute
  153. // the boot code
  154. la a1, __reset_vector // load boot code starting address
  155. // If this is not a EVA or MPU systm then the __reset_vector address to
  156. // cached address vpe other than 0 of each core can execute cached as
  157. // it's L1 I$ has already been initialized and the L2$ has been initialized or "disabled".
  158. #if !defined(EVA) && !defined(MPU)
  159. ins a1, zero, 29, 1 // Convert to cached kseg0 address in case we linked to kseg1.
  160. #endif
  161. mttc0 a1, C0_TCRESTART // write C0_TCRestart so TC 1 on VPE 1
  162. // will execute this boot code once EVP is set in C0_MVPCtl below
  163. // now set TC1 to take interrupts and set TC1 to active
  164. mftc0 a0, C0_TCSTATUS // read C0_TCSTATUS
  165. ins a0, zero, 10, 1 // insert IXMT to enable this TC to take interrupts
  166. li a1, 1
  167. ins a0, a1, 13, 1 // set A to Activate this TC
  168. mttc0 a0, C0_TCSTATUS // write C0_TCSTATUS
  169. mftc0 a0, C0_VPECONF0 // read C0_VPECONF0
  170. ori a0, 1 // set VPA (Virtual Processor Activated)
  171. mttc0 a0, C0_VPECONF0 // write C0_VPECONF0 so this TC is able to execute once EVP is set in C0_MVPCtl below
  172. // For this boot code only TC1 bound to VPE1 will be needed to execute (unhalted)
  173. // The other TCs if any will remain in a Halted state assuming they will later be
  174. // started by the OS.
  175. // Clear H in TCHalt to unhalt this TC
  176. // NOTE will not execute until EVP is set in C0_MVPCtl below
  177. mttc0 zero, C0_TCHALT
  178. check_for_more: // Done initializing VPE
  179. // If incrementing the target_VPE would be greater than or equal to higest vpe number
  180. // then all VPEs have a TC bound to them to execute. If there are any remaining
  181. // TCs bind them to the last VPE
  182. addu a0, target_VPE, 1 // Set up a0 for the check
  183. beq a0, r20_more_vpes, more_vpe
  184. bgt a0, r20_more_vpes, more_tc
  185. // NOTE Never can be less than!
  186. more_vpe:
  187. move target_VPE, a0 // else advance target_VPE and fall through to check for more TC's
  188. more_tc:
  189. addu target_TC, 1 // advance TC number
  190. ble target_TC, r21_more_tcs, nexttc // if no more TCs then fall through
  191. // No more TC's to bind
  192. // Exit config mode
  193. mfc0 a0, C0_MVPCONTROL // read C0_MVPCtl
  194. ori a0, 1 // set EVP (Enable Virtual Processing) to enable execution by vpe1
  195. ins a0, zero, 1, 1 // Clear VPC (VPE Configuration State) bit
  196. mtc0 a0, C0_MVPCONTROL // write C0_MVPCtl
  197. ehb
  198. done_init_vpe:
  199. jr ra
  200. END(init_vpe_s)
  201. #undef target_TC
  202. #undef target_VPE