asm.S 13 KB

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