set_gpr_boot_values.S 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * set_gpr_boot_values.S
  3. *
  4. */
  5. /*
  6. Copyright (c) 2007-2018, MIPS Tech, LLC and/or its affiliated group companies or licensors
  7. All rights reserved.
  8. Redistribution and use in source and binary forms, with or without modification, are
  9. permitted provided that the following conditions are met:
  10. 1. Redistributions of source code must retain the above copyright notice, this list of
  11. conditions and the following disclaimer.
  12. 2. Redistributions in binary form must reproduce the above copyright notice, this list
  13. of conditions and the following disclaimer in the documentation and/or other materials
  14. provided with the distribution.
  15. 3. Neither the name of the copyright holder nor the names of its contributors may be
  16. used to endorse or promote products derived from this software without specific prior
  17. written permission.
  18. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
  19. EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  20. OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
  21. SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  22. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
  23. OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  24. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  25. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  26. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27. */
  28. #include <mips/asm.h>
  29. #include <boot.h>
  30. #include <mips/m32c0.h>
  31. #include <mips/regdef.h>
  32. // defines not yet in m32c0.h
  33. #define C0_MVPCTL $0, 1
  34. #define C0_MVPCONF0 $0, 2
  35. #define C0_VPECTL $1, 1
  36. #define C0_VPECONF0 $1, 2
  37. #define C0_TCSTATUS $2, 1
  38. #define C0_TCRESTART $2, 3
  39. #define C0_TCHALT $2, 4
  40. #define C0_TCBIND $2, 2
  41. /**************************************************************************************
  42. **************************************************************************************/
  43. LEAF(set_gpr_boot_values)
  44. mfc0 a0, C0_EBASE // Read CP0 EBase
  45. ext r23_cpu_num, a0, 0, 4 // Extract CPUNum
  46. la gp, _gp // All vpe share globals.
  47. la sp, __boot_stack // Set up stack base.
  48. // ins sp, r23_cpu_num, STACK_SIZE_LOG2 // only one VPE, use arbitrary stack
  49. // Every vpe will set up the following to simplify resource initialization.
  50. mfc0 a0, C0_TCBIND // Read CP0 TCBind
  51. ext r9_vpe_num, a0, 0, 4 // Extract CurVPE
  52. ext r18_tc_num, a0, 21, 8 // Extract CurTC
  53. mfc0 a0, C0_MVPCONF0 // C0_MVPConf0
  54. ext r21_more_tcs, a0, 0, 8 // Extract PTC
  55. ext r20_more_vpes, a0, 10, 4 // Extract VPE
  56. is_not_cps: // This processor is not part of a Coherent Processing System. Set up valid defaults.
  57. li r11_is_cps, 0
  58. li r8_core_num, 0
  59. li r19_more_cores, 0
  60. done_init_gpr:
  61. jr ra
  62. END(set_gpr_boot_values)