copy_c2_ram.S 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /*
  2. * copy_c2_ram.S
  3. *
  4. * Copy code and data to ram then clear BSS
  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 <mips/regdef.h>
  31. #include <core_config.h>
  32. #define all_ones $17 /* at Will hold 0xffffffff to simplify bit insertion of 1's. */
  33. #define data $4 /* data to be moved */
  34. #define source_addr $5 /* from address */
  35. #define destination_addr $6 /* to address */
  36. #define end_addr $7 /* ending address */
  37. .set noat # Don't allow the assembler to use r1(at) for synthetic instr.
  38. /**************************************************************************************
  39. **************************************************************************************/
  40. LEAF(copy_c2_ram)
  41. li all_ones, 0xffffffff
  42. # Copy code and read-only/initialized data from FLASH to (uncached) RAM.
  43. LA source_addr, _boot_text_lma
  44. LA destination_addr, __boot_text_start
  45. LA end_addr, __boot_rodata_end
  46. #if !defined(EVA) && !defined(MPU) // NOTE EVA mode assumed to be uncached
  47. // Switch address to uncached (kseg1) so copy will go directly
  48. // to memory
  49. ins destination_addr, all_ones, 29, 1
  50. ins end_addr, all_ones, 29, 1
  51. #endif
  52. beq destination_addr, end_addr, copy_data
  53. next_ram_word:
  54. lw data, 0(source_addr)
  55. sw data, 0(destination_addr)
  56. addiu destination_addr, 4
  57. addiu source_addr, 4
  58. bne end_addr, destination_addr, next_ram_word
  59. copy_data:
  60. // now copy the data
  61. LA source_addr, _boot_data_lma
  62. LA destination_addr, __boot_data_start
  63. LA end_addr, boot_vector_end
  64. #if !defined(EVA) && !defined(MPU) // NOTE EVA mode assumed to be uncached
  65. // Switch address to uncached (kseg1) so copy will go directly
  66. // to memory
  67. ins destination_addr, all_ones, 29, 1
  68. ins end_addr, all_ones, 29, 1
  69. #endif
  70. beq destination_addr, end_addr, zero_bss // if no data skip ahead
  71. next_ram_dword:
  72. lw data, 0(source_addr)
  73. sw data, 0(destination_addr)
  74. addiu destination_addr, 4
  75. addiu source_addr, 4
  76. bne end_addr, destination_addr, next_ram_dword
  77. zero_bss:
  78. LA destination_addr, __boot_bss_start
  79. LA end_addr, __boot_bss_end
  80. #ifndef EVA // NOTE EVA mode assumed to be uncached
  81. // Switch address to uncached (kseg1) so copy will go directly
  82. // to memory
  83. ins destination_addr, all_ones, 29, 1
  84. ins end_addr, all_ones, 29, 1
  85. #endif
  86. beq destination_addr, end_addr, copy_c2_ram_done
  87. next_bss_word:
  88. sw zero, 0(destination_addr)
  89. addiu destination_addr, 4
  90. bne destination_addr, end_addr, next_bss_word
  91. copy_c2_ram_done:
  92. jalr zero, ra
  93. .set at
  94. END(copy_c2_ram)