asm.S 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. #include "asm.h"
  2. .section .text.__nop
  3. .global __nop
  4. __nop:
  5. nop
  6. ret
  7. .section .text.__ebreak
  8. .global __ebreak
  9. __ebreak:
  10. ebreak
  11. ret
  12. .section .text.__wfi
  13. .global __wfi
  14. __wfi:
  15. wfi
  16. ret
  17. .section .text.__sfence_vma_all
  18. .global __sfence_vma_all
  19. __sfence_vma_all:
  20. sfence.vma
  21. ret
  22. .section .text.__sfence_vma
  23. .global __sfence_vma
  24. __sfence_vma:
  25. sfence.vma a0, a1
  26. ret
  27. .section .text.__delay
  28. .global __delay
  29. __delay:
  30. 1:
  31. addi a0, a0, -1
  32. bne a0, zero, 1b
  33. ret
  34. // User Trap Setup
  35. RW(0x000, ustatus) // User status register
  36. RW(0x004, uie) // User interrupt-enable register
  37. RW(0x005, utvec) // User trap handler base address
  38. // User Trap Handling
  39. RW(0x040, uscratch) // Scratch register for user trap handlers
  40. RW(0x041, uepc) // User exception program counter
  41. RW(0x042, ucause) // User trap cause
  42. RW(0x043, utval) // User bad address or instruction
  43. RW(0x044, uip) // User interrupt pending
  44. // User Floating-Point CSRs
  45. RW(0x001, fflags) // Floating-Point Accrued Exceptions
  46. RW(0x002, frm) // Floating-Point Dynamic Rounding Mode
  47. RW(0x003, fcsr) // Floating-Point Control and Status Register (frm + fflags)
  48. // User Counter/Timers
  49. RO( 0xC00, cycle) // Cycle counter for RDCYCLE instruction
  50. RO( 0xC01, time) // Timer for RDTIME instruction
  51. RO( 0xC02, instret) // Instructions-retired counter for RDINSTRET instruction
  52. RO( 0xC03, hpmcounter3) // Performance-monitoring counter
  53. RO( 0xC04, hpmcounter4) // Performance-monitoring counter
  54. RO( 0xC05, hpmcounter5) // Performance-monitoring counter
  55. RO( 0xC06, hpmcounter6) // Performance-monitoring counter
  56. RO( 0xC07, hpmcounter7) // Performance-monitoring counter
  57. RO( 0xC08, hpmcounter8) // Performance-monitoring counter
  58. RO( 0xC09, hpmcounter9) // Performance-monitoring counter
  59. RO( 0xC0A, hpmcounter10) // Performance-monitoring counter
  60. RO( 0xC0B, hpmcounter11) // Performance-monitoring counter
  61. RO( 0xC0C, hpmcounter12) // Performance-monitoring counter
  62. RO( 0xC0D, hpmcounter13) // Performance-monitoring counter
  63. RO( 0xC0E, hpmcounter14) // Performance-monitoring counter
  64. RO( 0xC0F, hpmcounter15) // Performance-monitoring counter
  65. RO( 0xC10, hpmcounter16) // Performance-monitoring counter
  66. RO( 0xC11, hpmcounter17) // Performance-monitoring counter
  67. RO( 0xC12, hpmcounter18) // Performance-monitoring counter
  68. RO( 0xC13, hpmcounter19) // Performance-monitoring counter
  69. RO( 0xC14, hpmcounter20) // Performance-monitoring counter
  70. RO( 0xC15, hpmcounter21) // Performance-monitoring counter
  71. RO( 0xC16, hpmcounter22) // Performance-monitoring counter
  72. RO( 0xC17, hpmcounter23) // Performance-monitoring counter
  73. RO( 0xC18, hpmcounter24) // Performance-monitoring counter
  74. RO( 0xC19, hpmcounter25) // Performance-monitoring counter
  75. RO( 0xC1A, hpmcounter26) // Performance-monitoring counter
  76. RO( 0xC1B, hpmcounter27) // Performance-monitoring counter
  77. RO( 0xC1C, hpmcounter28) // Performance-monitoring counter
  78. RO( 0xC1D, hpmcounter29) // Performance-monitoring counter
  79. RO( 0xC1E, hpmcounter30) // Performance-monitoring counter
  80. RO( 0xC1F, hpmcounter31) // Performance-monitoring counter
  81. RO32(0xC80, cycleh) // Upper 32 bits of cycle, RV32I only
  82. RO32(0xC81, timeh) // Upper 32 bits of time, RV32I only
  83. RO32(0xC82, instreth) // Upper 32 bits of instret, RV32I only
  84. RO32(0xC83, hpmcounter3h) // Upper 32 bits of hpmcounter3, RV32I only
  85. RO32(0xC84, hpmcounter4h)
  86. RO32(0xC85, hpmcounter5h)
  87. RO32(0xC86, hpmcounter6h)
  88. RO32(0xC87, hpmcounter7h)
  89. RO32(0xC88, hpmcounter8h)
  90. RO32(0xC89, hpmcounter9h)
  91. RO32(0xC8A, hpmcounter10h)
  92. RO32(0xC8B, hpmcounter11h)
  93. RO32(0xC8C, hpmcounter12h)
  94. RO32(0xC8D, hpmcounter13h)
  95. RO32(0xC8E, hpmcounter14h)
  96. RO32(0xC8F, hpmcounter15h)
  97. RO32(0xC90, hpmcounter16h)
  98. RO32(0xC91, hpmcounter17h)
  99. RO32(0xC92, hpmcounter18h)
  100. RO32(0xC93, hpmcounter19h)
  101. RO32(0xC94, hpmcounter20h)
  102. RO32(0xC95, hpmcounter21h)
  103. RO32(0xC96, hpmcounter22h)
  104. RO32(0xC97, hpmcounter23h)
  105. RO32(0xC98, hpmcounter24h)
  106. RO32(0xC99, hpmcounter25h)
  107. RO32(0xC9A, hpmcounter26h)
  108. RO32(0xC9B, hpmcounter27h)
  109. RO32(0xC9C, hpmcounter28h)
  110. RO32(0xC9D, hpmcounter29h)
  111. RO32(0xC9E, hpmcounter30h)
  112. RO32(0xC9F, hpmcounter31h)
  113. // Supervisor Trap Setup
  114. RW(0x100, sstatus) // Supervisor status register
  115. RW(0x102, sedeleg) // Supervisor exception delegation register
  116. RW(0x103, sideleg) // Supervisor interrupt delegation register
  117. RW(0x104, sie) // Supervisor interrupt-enable register
  118. RW(0x105, stvec) // Supervisor trap handler base address
  119. RW(0x106, scounteren) // Supervisor counter enable
  120. // Supervisor Trap Handling
  121. RW(0x140, sscratch) // Scratch register for supervisor trap handlers
  122. RW(0x141, sepc) // Supervisor exception program counter
  123. RW(0x142, scause) // Supervisor trap cause
  124. RW(0x143, stval) // Supervisor bad address or instruction
  125. RW(0x144, sip) // Supervisor interrupt pending
  126. // Supervisor Protection and Translation
  127. RW(0x180, satp) // Supervisor address translation and protection
  128. // Machine Information Registers
  129. RO(0xF11, mvendorid) // Vendor ID
  130. RO(0xF12, marchid) // Architecture ID
  131. RO(0xF13, mimpid) // Implementation ID
  132. RO(0xF14, mhartid) // Hardware thread ID
  133. // Machine Trap Setup
  134. RW(0x300, mstatus) // Machine status register
  135. RW(0x301, misa) // ISA and extensions
  136. RW(0x302, medeleg) // Machine exception delegation register
  137. RW(0x303, mideleg) // Machine interrupt delegation register
  138. RW(0x304, mie) // Machine interrupt-enable register
  139. RW(0x305, mtvec) // Machine trap handler base address
  140. RW(0x306, mcounteren) // Machine counter enable
  141. // Machine Trap Handling
  142. RW(0x340, mscratch) // Scratch register for machine trap handlers
  143. RW(0x341, mepc) // Machine exception program counter
  144. RW(0x342, mcause) // Machine trap cause
  145. RW(0x343, mtval) // Machine bad address or instruction
  146. RW(0x344, mip) // Machine interrupt pending
  147. // Machine Protection and Translation
  148. RW( 0x3A0, pmpcfg0) // Physical memory protection configuration
  149. RW32(0x3A1, pmpcfg1) // Physical memory protection configuration, RV32 only
  150. RW( 0x3A2, pmpcfg2) // Physical memory protection configuration
  151. RW32(0x3A3, pmpcfg3) // Physical memory protection configuration, RV32 only
  152. RW( 0x3B0, pmpaddr0) // Physical memory protection address register
  153. RW( 0x3B1, pmpaddr1) // Physical memory protection address register
  154. RW( 0x3B2, pmpaddr2) // Physical memory protection address register
  155. RW( 0x3B3, pmpaddr3) // Physical memory protection address register
  156. RW( 0x3B4, pmpaddr4) // Physical memory protection address register
  157. RW( 0x3B5, pmpaddr5) // Physical memory protection address register
  158. RW( 0x3B6, pmpaddr6) // Physical memory protection address register
  159. RW( 0x3B7, pmpaddr7) // Physical memory protection address register
  160. RW( 0x3B8, pmpaddr8) // Physical memory protection address register
  161. RW( 0x3B9, pmpaddr9) // Physical memory protection address register
  162. RW( 0x3BA, pmpaddr10) // Physical memory protection address register
  163. RW( 0x3BB, pmpaddr11) // Physical memory protection address register
  164. RW( 0x3BC, pmpaddr12) // Physical memory protection address register
  165. RW( 0x3BD, pmpaddr13) // Physical memory protection address register
  166. RW( 0x3BE, pmpaddr14) // Physical memory protection address register
  167. RW( 0x3BF, pmpaddr15) // Physical memory protection address register
  168. // Machine Counter/Timers
  169. RO( 0xB00, mcycle) // Machine cycle counter
  170. RO( 0xB02, minstret) // Machine instructions-retired counter
  171. RO( 0xB03, mhpmcounter3) // Machine performance-monitoring counter
  172. RO( 0xB04, mhpmcounter4) // Machine performance-monitoring counter
  173. RO( 0xB05, mhpmcounter5) // Machine performance-monitoring counter
  174. RO( 0xB06, mhpmcounter6) // Machine performance-monitoring counter
  175. RO( 0xB07, mhpmcounter7) // Machine performance-monitoring counter
  176. RO( 0xB08, mhpmcounter8) // Machine performance-monitoring counter
  177. RO( 0xB09, mhpmcounter9) // Machine performance-monitoring counter
  178. RO( 0xB0A, mhpmcounter10) // Machine performance-monitoring counter
  179. RO( 0xB0B, mhpmcounter11) // Machine performance-monitoring counter
  180. RO( 0xB0C, mhpmcounter12) // Machine performance-monitoring counter
  181. RO( 0xB0D, mhpmcounter13) // Machine performance-monitoring counter
  182. RO( 0xB0E, mhpmcounter14) // Machine performance-monitoring counter
  183. RO( 0xB0F, mhpmcounter15) // Machine performance-monitoring counter
  184. RO( 0xB10, mhpmcounter16) // Machine performance-monitoring counter
  185. RO( 0xB11, mhpmcounter17) // Machine performance-monitoring counter
  186. RO( 0xB12, mhpmcounter18) // Machine performance-monitoring counter
  187. RO( 0xB13, mhpmcounter19) // Machine performance-monitoring counter
  188. RO( 0xB14, mhpmcounter20) // Machine performance-monitoring counter
  189. RO( 0xB15, mhpmcounter21) // Machine performance-monitoring counter
  190. RO( 0xB16, mhpmcounter22) // Machine performance-monitoring counter
  191. RO( 0xB17, mhpmcounter23) // Machine performance-monitoring counter
  192. RO( 0xB18, mhpmcounter24) // Machine performance-monitoring counter
  193. RO( 0xB19, mhpmcounter25) // Machine performance-monitoring counter
  194. RO( 0xB1A, mhpmcounter26) // Machine performance-monitoring counter
  195. RO( 0xB1B, mhpmcounter27) // Machine performance-monitoring counter
  196. RO( 0xB1C, mhpmcounter28) // Machine performance-monitoring counter
  197. RO( 0xB1D, mhpmcounter29) // Machine performance-monitoring counter
  198. RO( 0xB1E, mhpmcounter30) // Machine performance-monitoring counter
  199. RO( 0xB1F, mhpmcounter31) // Machine performance-monitoring counter
  200. RO32(0xB80, mcycleh) // Upper 32 bits of mcycle, RV32I only
  201. RO32(0xB82, minstreth) // Upper 32 bits of minstret, RV32I only
  202. RO32(0xB83, mhpmcounter3h) // Upper 32 bits of mhpmcounter3, RV32I only
  203. RO32(0xB84, mhpmcounter4h)
  204. RO32(0xB85, mhpmcounter5h)
  205. RO32(0xB86, mhpmcounter6h)
  206. RO32(0xB87, mhpmcounter7h)
  207. RO32(0xB88, mhpmcounter8h)
  208. RO32(0xB89, mhpmcounter9h)
  209. RO32(0xB8A, mhpmcounter10h)
  210. RO32(0xB8B, mhpmcounter11h)
  211. RO32(0xB8C, mhpmcounter12h)
  212. RO32(0xB8D, mhpmcounter13h)
  213. RO32(0xB8E, mhpmcounter14h)
  214. RO32(0xB8F, mhpmcounter15h)
  215. RO32(0xB90, mhpmcounter16h)
  216. RO32(0xB91, mhpmcounter17h)
  217. RO32(0xB92, mhpmcounter18h)
  218. RO32(0xB93, mhpmcounter19h)
  219. RO32(0xB94, mhpmcounter20h)
  220. RO32(0xB95, mhpmcounter21h)
  221. RO32(0xB96, mhpmcounter22h)
  222. RO32(0xB97, mhpmcounter23h)
  223. RO32(0xB98, mhpmcounter24h)
  224. RO32(0xB99, mhpmcounter25h)
  225. RO32(0xB9A, mhpmcounter26h)
  226. RO32(0xB9B, mhpmcounter27h)
  227. RO32(0xB9C, mhpmcounter28h)
  228. RO32(0xB9D, mhpmcounter29h)
  229. RO32(0xB9E, mhpmcounter30h)
  230. RO32(0xB9F, mhpmcounter31h)
  231. RW(0x323, mhpmevent3) // Machine performance-monitoring event selector
  232. RW(0x324, mhpmevent4) // Machine performance-monitoring event selector
  233. RW(0x325, mhpmevent5) // Machine performance-monitoring event selector
  234. RW(0x326, mhpmevent6) // Machine performance-monitoring event selector
  235. RW(0x327, mhpmevent7) // Machine performance-monitoring event selector
  236. RW(0x328, mhpmevent8) // Machine performance-monitoring event selector
  237. RW(0x329, mhpmevent9) // Machine performance-monitoring event selector
  238. RW(0x32A, mhpmevent10) // Machine performance-monitoring event selector
  239. RW(0x32B, mhpmevent11) // Machine performance-monitoring event selector
  240. RW(0x32C, mhpmevent12) // Machine performance-monitoring event selector
  241. RW(0x32D, mhpmevent13) // Machine performance-monitoring event selector
  242. RW(0x32E, mhpmevent14) // Machine performance-monitoring event selector
  243. RW(0x32F, mhpmevent15) // Machine performance-monitoring event selector
  244. RW(0x330, mhpmevent16) // Machine performance-monitoring event selector
  245. RW(0x331, mhpmevent17) // Machine performance-monitoring event selector
  246. RW(0x332, mhpmevent18) // Machine performance-monitoring event selector
  247. RW(0x333, mhpmevent19) // Machine performance-monitoring event selector
  248. RW(0x334, mhpmevent20) // Machine performance-monitoring event selector
  249. RW(0x335, mhpmevent21) // Machine performance-monitoring event selector
  250. RW(0x336, mhpmevent22) // Machine performance-monitoring event selector
  251. RW(0x337, mhpmevent23) // Machine performance-monitoring event selector
  252. RW(0x338, mhpmevent24) // Machine performance-monitoring event selector
  253. RW(0x339, mhpmevent25) // Machine performance-monitoring event selector
  254. RW(0x33A, mhpmevent26) // Machine performance-monitoring event selector
  255. RW(0x33B, mhpmevent27) // Machine performance-monitoring event selector
  256. RW(0x33C, mhpmevent28) // Machine performance-monitoring event selector
  257. RW(0x33D, mhpmevent29) // Machine performance-monitoring event selector
  258. RW(0x33E, mhpmevent30) // Machine performance-monitoring event selector
  259. RW(0x33F, mhpmevent31) // Machine performance-monitoring event selector
  260. // Debug/Trace Registers (shared with Debug Mode)
  261. RW(0x7A0, tselect) // Debug/Trace trigger register select
  262. RW(0x7A1, tdata1) // First Debug/Trace trigger data register
  263. RW(0x7A2, tdata2) // Second Debug/Trace trigger data register
  264. RW(0x7A3, tdata3) // Third Debug/Trace trigger data register
  265. // Debug Mode Registers
  266. RW(0x7B0, dcsr) // Debug control and status register
  267. RW(0x7B1, dpc) // Debug PC
  268. RW(0x7B2, dscratch) // Debug scratch register