-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathriscv-csr.h
3791 lines (3638 loc) · 151 KB
/
riscv-csr.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Register access functions for RISC-V system registers.
SPDX-License-Identifier: Unlicense
https://five-embeddev.com/
*/
#ifndef RISCV_CSR_H
#define RISCV_CSR_H
#include <stdint.h>
#if __riscv_xlen==32
typedef uint32_t uint_xlen_t;
typedef uint32_t uint_csr32_t;
typedef uint32_t uint_csr64_t;
#elif __riscv_xlen==64
typedef uint64_t uint_xlen_t;
typedef uint32_t uint_csr32_t;
typedef uint64_t uint_csr64_t;
#else
#error "Unknown XLEN"
#endif
// Test for Zicsr extension, if relevant
#if defined(__riscv_arch_test)
#if !defined(__riscv_zicsr)
#error "-march must include zicsr to access CSRs"
#endif
#endif
/*******************************************
* misa - MRW - Machine ISA
*/
static inline uint_xlen_t csr_read_misa(void) {
uint_xlen_t value;
__asm__ volatile ("csrr %0, misa"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
static inline void csr_write_misa(uint_xlen_t value) {
__asm__ volatile ("csrw misa, %0"
: /* output: none */
: "r" (value) /* input : from register */
: /* clobbers: none */);
}
static inline uint_xlen_t csr_read_write_misa(uint_xlen_t new_value) {
uint_xlen_t prev_value;
__asm__ volatile ("csrrw %0, misa, %1"
: "=r" (prev_value) /* output: register %0 */
: "r" (new_value) /* input : register */
: /* clobbers: none */);
return prev_value;
}
/*******************************************
* mvendorid - MRO - Machine Vendor ID
*/
static inline uint32_t csr_read_mvendorid(void) {
uint_csr32_t value;
__asm__ volatile ("csrr %0, mvendorid"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
/*******************************************
* marchid - MRO - Machine Architecture ID
*/
static inline uint_xlen_t csr_read_marchid(void) {
uint_xlen_t value;
__asm__ volatile ("csrr %0, marchid"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
/*******************************************
* mimpid - MRO - Machine Implementation ID
*/
static inline uint_xlen_t csr_read_mimpid(void) {
uint_xlen_t value;
__asm__ volatile ("csrr %0, mimpid"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
/*******************************************
* mhartid - MRO - Hardware Thread ID
*/
static inline uint_xlen_t csr_read_mhartid(void) {
uint_xlen_t value;
__asm__ volatile ("csrr %0, mhartid"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
/*******************************************
* mstatus - MRW - Machine Status
*/
static inline uint_xlen_t csr_read_mstatus(void) {
uint_xlen_t value;
__asm__ volatile ("csrr %0, mstatus"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
static inline void csr_write_mstatus(uint_xlen_t value) {
__asm__ volatile ("csrw mstatus, %0"
: /* output: none */
: "r" (value) /* input : from register */
: /* clobbers: none */);
}
static inline uint_xlen_t csr_read_write_mstatus(uint_xlen_t new_value) {
uint_xlen_t prev_value;
__asm__ volatile ("csrrw %0, mstatus, %1"
: "=r" (prev_value) /* output: register %0 */
: "r" (new_value) /* input : register */
: /* clobbers: none */);
return prev_value;
}
/* Register CSR bit set and clear instructions */
static inline void csr_set_bits_mstatus(uint_xlen_t mask) {
__asm__ volatile ("csrrs zero, mstatus, %0"
: /* output: none */
: "r" (mask) /* input : register */
: /* clobbers: none */);
}
static inline void csr_clr_bits_mstatus(uint_xlen_t mask) {
__asm__ volatile ("csrrc zero, mstatus, %0"
: /* output: none */
: "r" (mask) /* input : register */
: /* clobbers: none */);
}
static inline uint_xlen_t csr_read_set_bits_mstatus(uint_xlen_t mask) {
uint_xlen_t value;
__asm__ volatile ("csrrs %0, mstatus, %1"
: "=r" (value) /* output: register %0 */
: "r" (mask) /* input : register */
: /* clobbers: none */);
return value;
}
static inline uint_xlen_t csr_read_clr_bits_mstatus(uint_xlen_t mask) {
uint_xlen_t value;
__asm__ volatile ("csrrc %0, mstatus, %1"
: "=r" (value) /* output: register %0 */
: "r" (mask) /* input : register */
: /* clobbers: none */);
return value;
}
/* mstatus, CSR write value via immediate value (only up to 5 bits) */
#define CSR_WRITE_IMM_MSTATUS(VALUE) \
__asm__ volatile ("csrrwi zero, mstatus, %0" \
: /* output: none */ \
: "i" (VALUE) /* input : immediate */ \
: /* clobbers: none */)
/* mstatus, CSR set bits via immediate value mask (only up to 5 bits) */
#define CSR_SET_BITS_IMM_MSTATUS(MASK) \
__asm__ volatile ("csrrsi zero, mstatus, %0" \
: /* output: none */ \
: "i" (MASK) /* input : immediate */ \
: /* clobbers: none */)
/* mstatus, CSR clear bits via immediate value mask (only up to 5 bits) */
#define CSR_CLR_BITS_IMM_MSTATUS(MASK) \
__asm__ volatile ("csrrci zero, mstatus, %0" \
: /* output: none */ \
: "i" (MASK) /* input : immediate */ \
: /* clobbers: none */)
#define MSTATUS_MIE_BIT_OFFSET 3
#define MSTATUS_MIE_BIT_WIDTH 1
#define MSTATUS_MIE_BIT_MASK 0x8
#define MSTATUS_MIE_ALL_SET_MASK 0x1
#define MSTATUS_SIE_BIT_OFFSET 2
#define MSTATUS_SIE_BIT_WIDTH 1
#define MSTATUS_SIE_BIT_MASK 0x4
#define MSTATUS_SIE_ALL_SET_MASK 0x1
#define MSTATUS_MPIE_BIT_OFFSET 7
#define MSTATUS_MPIE_BIT_WIDTH 1
#define MSTATUS_MPIE_BIT_MASK 0x80
#define MSTATUS_MPIE_ALL_SET_MASK 0x1
#define MSTATUS_SPIE_BIT_OFFSET 5
#define MSTATUS_SPIE_BIT_WIDTH 1
#define MSTATUS_SPIE_BIT_MASK 0x20
#define MSTATUS_SPIE_ALL_SET_MASK 0x1
#define MSTATUS_MPRV_BIT_OFFSET 17
#define MSTATUS_MPRV_BIT_WIDTH 1
#define MSTATUS_MPRV_BIT_MASK 0x20000
#define MSTATUS_MPRV_ALL_SET_MASK 0x1
#define MSTATUS_MPP_BIT_OFFSET 11
#define MSTATUS_MPP_BIT_WIDTH 2
#define MSTATUS_MPP_BIT_MASK 0x1800
#define MSTATUS_MPP_ALL_SET_MASK 0x3
#define MSTATUS_SPP_BIT_OFFSET 8
#define MSTATUS_SPP_BIT_WIDTH 1
#define MSTATUS_SPP_BIT_MASK 0x100
#define MSTATUS_SPP_ALL_SET_MASK 0x1
/*******************************************
* mstatush - MRW - Additional machine status register, RV32 only.
*/
static inline uint_xlen_t csr_read_mstatush(void) {
uint_xlen_t value;
__asm__ volatile ("csrr %0, mstatush"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
static inline void csr_write_mstatush(uint_xlen_t value) {
__asm__ volatile ("csrw mstatush, %0"
: /* output: none */
: "r" (value) /* input : from register */
: /* clobbers: none */);
}
static inline uint_xlen_t csr_read_write_mstatush(uint_xlen_t new_value) {
uint_xlen_t prev_value;
__asm__ volatile ("csrrw %0, mstatush, %1"
: "=r" (prev_value) /* output: register %0 */
: "r" (new_value) /* input : register */
: /* clobbers: none */);
return prev_value;
}
/*******************************************
* mtvec - MRW - Machine Trap Vector Base Address
*/
static inline uint_xlen_t csr_read_mtvec(void) {
uint_xlen_t value;
__asm__ volatile ("csrr %0, mtvec"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
static inline void csr_write_mtvec(uint_xlen_t value) {
__asm__ volatile ("csrw mtvec, %0"
: /* output: none */
: "r" (value) /* input : from register */
: /* clobbers: none */);
}
static inline uint_xlen_t csr_read_write_mtvec(uint_xlen_t new_value) {
uint_xlen_t prev_value;
__asm__ volatile ("csrrw %0, mtvec, %1"
: "=r" (prev_value) /* output: register %0 */
: "r" (new_value) /* input : register */
: /* clobbers: none */);
return prev_value;
}
/* Register CSR bit set and clear instructions */
static inline void csr_set_bits_mtvec(uint_xlen_t mask) {
__asm__ volatile ("csrrs zero, mtvec, %0"
: /* output: none */
: "r" (mask) /* input : register */
: /* clobbers: none */);
}
static inline void csr_clr_bits_mtvec(uint_xlen_t mask) {
__asm__ volatile ("csrrc zero, mtvec, %0"
: /* output: none */
: "r" (mask) /* input : register */
: /* clobbers: none */);
}
static inline uint_xlen_t csr_read_set_bits_mtvec(uint_xlen_t mask) {
uint_xlen_t value;
__asm__ volatile ("csrrs %0, mtvec, %1"
: "=r" (value) /* output: register %0 */
: "r" (mask) /* input : register */
: /* clobbers: none */);
return value;
}
static inline uint_xlen_t csr_read_clr_bits_mtvec(uint_xlen_t mask) {
uint_xlen_t value;
__asm__ volatile ("csrrc %0, mtvec, %1"
: "=r" (value) /* output: register %0 */
: "r" (mask) /* input : register */
: /* clobbers: none */);
return value;
}
/* mtvec, CSR write value via immediate value (only up to 5 bits) */
#define CSR_WRITE_IMM_MTVEC(VALUE) \
__asm__ volatile ("csrrwi zero, mtvec, %0" \
: /* output: none */ \
: "i" (VALUE) /* input : immediate */ \
: /* clobbers: none */)
/* mtvec, CSR set bits via immediate value mask (only up to 5 bits) */
#define CSR_SET_BITS_IMM_MTVEC(MASK) \
__asm__ volatile ("csrrsi zero, mtvec, %0" \
: /* output: none */ \
: "i" (MASK) /* input : immediate */ \
: /* clobbers: none */)
/* mtvec, CSR clear bits via immediate value mask (only up to 5 bits) */
#define CSR_CLR_BITS_IMM_MTVEC(MASK) \
__asm__ volatile ("csrrci zero, mtvec, %0" \
: /* output: none */ \
: "i" (MASK) /* input : immediate */ \
: /* clobbers: none */)
#define MTVEC_BASE_BIT_OFFSET 2
#define MTVEC_BASE_BIT_WIDTH ((__riscv_xlen-1)-(2) + 1)
#define MTVEC_BASE_BIT_MASK ((1UL<<(((__riscv_xlen-1)-(2) + 1)-1)) << (2))
#define MTVEC_BASE_ALL_SET_MASK ((1UL<<(((__riscv_xlen-1)-(2) + 1)-1)) << (0))
#define MTVEC_MODE_BIT_OFFSET 0
#define MTVEC_MODE_BIT_WIDTH 2
#define MTVEC_MODE_BIT_MASK 0x3
#define MTVEC_MODE_ALL_SET_MASK 0x3
/*******************************************
* medeleg - MRW - Machine Exception Delegation
*/
static inline uint_xlen_t csr_read_medeleg(void) {
uint_xlen_t value;
__asm__ volatile ("csrr %0, medeleg"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
static inline void csr_write_medeleg(uint_xlen_t value) {
__asm__ volatile ("csrw medeleg, %0"
: /* output: none */
: "r" (value) /* input : from register */
: /* clobbers: none */);
}
static inline uint_xlen_t csr_read_write_medeleg(uint_xlen_t new_value) {
uint_xlen_t prev_value;
__asm__ volatile ("csrrw %0, medeleg, %1"
: "=r" (prev_value) /* output: register %0 */
: "r" (new_value) /* input : register */
: /* clobbers: none */);
return prev_value;
}
/*******************************************
* mideleg - MRW - Machine Interrupt Delegation
*/
static inline uint_xlen_t csr_read_mideleg(void) {
uint_xlen_t value;
__asm__ volatile ("csrr %0, mideleg"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
static inline void csr_write_mideleg(uint_xlen_t value) {
__asm__ volatile ("csrw mideleg, %0"
: /* output: none */
: "r" (value) /* input : from register */
: /* clobbers: none */);
}
static inline uint_xlen_t csr_read_write_mideleg(uint_xlen_t new_value) {
uint_xlen_t prev_value;
__asm__ volatile ("csrrw %0, mideleg, %1"
: "=r" (prev_value) /* output: register %0 */
: "r" (new_value) /* input : register */
: /* clobbers: none */);
return prev_value;
}
/*******************************************
* mip - MRW - Machine Interrupt Pending
*/
static inline uint_xlen_t csr_read_mip(void) {
uint_xlen_t value;
__asm__ volatile ("csrr %0, mip"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
static inline void csr_write_mip(uint_xlen_t value) {
__asm__ volatile ("csrw mip, %0"
: /* output: none */
: "r" (value) /* input : from register */
: /* clobbers: none */);
}
static inline uint_xlen_t csr_read_write_mip(uint_xlen_t new_value) {
uint_xlen_t prev_value;
__asm__ volatile ("csrrw %0, mip, %1"
: "=r" (prev_value) /* output: register %0 */
: "r" (new_value) /* input : register */
: /* clobbers: none */);
return prev_value;
}
/* Register CSR bit set and clear instructions */
static inline void csr_set_bits_mip(uint_xlen_t mask) {
__asm__ volatile ("csrrs zero, mip, %0"
: /* output: none */
: "r" (mask) /* input : register */
: /* clobbers: none */);
}
static inline void csr_clr_bits_mip(uint_xlen_t mask) {
__asm__ volatile ("csrrc zero, mip, %0"
: /* output: none */
: "r" (mask) /* input : register */
: /* clobbers: none */);
}
static inline uint_xlen_t csr_read_set_bits_mip(uint_xlen_t mask) {
uint_xlen_t value;
__asm__ volatile ("csrrs %0, mip, %1"
: "=r" (value) /* output: register %0 */
: "r" (mask) /* input : register */
: /* clobbers: none */);
return value;
}
static inline uint_xlen_t csr_read_clr_bits_mip(uint_xlen_t mask) {
uint_xlen_t value;
__asm__ volatile ("csrrc %0, mip, %1"
: "=r" (value) /* output: register %0 */
: "r" (mask) /* input : register */
: /* clobbers: none */);
return value;
}
/* mip, CSR write value via immediate value (only up to 5 bits) */
#define CSR_WRITE_IMM_MIP(VALUE) \
__asm__ volatile ("csrrwi zero, mip, %0" \
: /* output: none */ \
: "i" (VALUE) /* input : immediate */ \
: /* clobbers: none */)
/* mip, CSR set bits via immediate value mask (only up to 5 bits) */
#define CSR_SET_BITS_IMM_MIP(MASK) \
__asm__ volatile ("csrrsi zero, mip, %0" \
: /* output: none */ \
: "i" (MASK) /* input : immediate */ \
: /* clobbers: none */)
/* mip, CSR clear bits via immediate value mask (only up to 5 bits) */
#define CSR_CLR_BITS_IMM_MIP(MASK) \
__asm__ volatile ("csrrci zero, mip, %0" \
: /* output: none */ \
: "i" (MASK) /* input : immediate */ \
: /* clobbers: none */)
#define MIP_MSI_BIT_OFFSET 3
#define MIP_MSI_BIT_WIDTH 1
#define MIP_MSI_BIT_MASK 0x8
#define MIP_MSI_ALL_SET_MASK 0x1
#define MIP_MTI_BIT_OFFSET 7
#define MIP_MTI_BIT_WIDTH 1
#define MIP_MTI_BIT_MASK 0x80
#define MIP_MTI_ALL_SET_MASK 0x1
#define MIP_MEI_BIT_OFFSET 11
#define MIP_MEI_BIT_WIDTH 1
#define MIP_MEI_BIT_MASK 0x800
#define MIP_MEI_ALL_SET_MASK 0x1
#define MIP_SSI_BIT_OFFSET 1
#define MIP_SSI_BIT_WIDTH 1
#define MIP_SSI_BIT_MASK 0x2
#define MIP_SSI_ALL_SET_MASK 0x1
#define MIP_STI_BIT_OFFSET 5
#define MIP_STI_BIT_WIDTH 1
#define MIP_STI_BIT_MASK 0x20
#define MIP_STI_ALL_SET_MASK 0x1
#define MIP_SEI_BIT_OFFSET 9
#define MIP_SEI_BIT_WIDTH 1
#define MIP_SEI_BIT_MASK 0x200
#define MIP_SEI_ALL_SET_MASK 0x1
#define MIP_USI_BIT_OFFSET 0
#define MIP_USI_BIT_WIDTH 1
#define MIP_USI_BIT_MASK 0x1
#define MIP_USI_ALL_SET_MASK 0x1
#define MIP_UTI_BIT_OFFSET 4
#define MIP_UTI_BIT_WIDTH 1
#define MIP_UTI_BIT_MASK 0x10
#define MIP_UTI_ALL_SET_MASK 0x1
#define MIP_UEI_BIT_OFFSET 8
#define MIP_UEI_BIT_WIDTH 1
#define MIP_UEI_BIT_MASK 0x100
#define MIP_UEI_ALL_SET_MASK 0x1
#define MIP_PLATFORM_DEFINED_BIT_OFFSET 16
#define MIP_PLATFORM_DEFINED_BIT_WIDTH ((__riscv_xlen)-(16) + 1)
#define MIP_PLATFORM_DEFINED_BIT_MASK ((1UL<<(((__riscv_xlen)-(16) + 1)-1)) << (16))
#define MIP_PLATFORM_DEFINED_ALL_SET_MASK ((1UL<<(((__riscv_xlen)-(16) + 1)-1)) << (0))
/*******************************************
* mie - MRW - Machine Interrupt Enable
*/
static inline uint_xlen_t csr_read_mie(void) {
uint_xlen_t value;
__asm__ volatile ("csrr %0, mie"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
static inline void csr_write_mie(uint_xlen_t value) {
__asm__ volatile ("csrw mie, %0"
: /* output: none */
: "r" (value) /* input : from register */
: /* clobbers: none */);
}
static inline uint_xlen_t csr_read_write_mie(uint_xlen_t new_value) {
uint_xlen_t prev_value;
__asm__ volatile ("csrrw %0, mie, %1"
: "=r" (prev_value) /* output: register %0 */
: "r" (new_value) /* input : register */
: /* clobbers: none */);
return prev_value;
}
/* Register CSR bit set and clear instructions */
static inline void csr_set_bits_mie(uint_xlen_t mask) {
__asm__ volatile ("csrrs zero, mie, %0"
: /* output: none */
: "r" (mask) /* input : register */
: /* clobbers: none */);
}
static inline void csr_clr_bits_mie(uint_xlen_t mask) {
__asm__ volatile ("csrrc zero, mie, %0"
: /* output: none */
: "r" (mask) /* input : register */
: /* clobbers: none */);
}
static inline uint_xlen_t csr_read_set_bits_mie(uint_xlen_t mask) {
uint_xlen_t value;
__asm__ volatile ("csrrs %0, mie, %1"
: "=r" (value) /* output: register %0 */
: "r" (mask) /* input : register */
: /* clobbers: none */);
return value;
}
static inline uint_xlen_t csr_read_clr_bits_mie(uint_xlen_t mask) {
uint_xlen_t value;
__asm__ volatile ("csrrc %0, mie, %1"
: "=r" (value) /* output: register %0 */
: "r" (mask) /* input : register */
: /* clobbers: none */);
return value;
}
/* mie, CSR write value via immediate value (only up to 5 bits) */
#define CSR_WRITE_IMM_MIE(VALUE) \
__asm__ volatile ("csrrwi zero, mie, %0" \
: /* output: none */ \
: "i" (VALUE) /* input : immediate */ \
: /* clobbers: none */)
/* mie, CSR set bits via immediate value mask (only up to 5 bits) */
#define CSR_SET_BITS_IMM_MIE(MASK) \
__asm__ volatile ("csrrsi zero, mie, %0" \
: /* output: none */ \
: "i" (MASK) /* input : immediate */ \
: /* clobbers: none */)
/* mie, CSR clear bits via immediate value mask (only up to 5 bits) */
#define CSR_CLR_BITS_IMM_MIE(MASK) \
__asm__ volatile ("csrrci zero, mie, %0" \
: /* output: none */ \
: "i" (MASK) /* input : immediate */ \
: /* clobbers: none */)
#define MIE_MSI_BIT_OFFSET 3
#define MIE_MSI_BIT_WIDTH 1
#define MIE_MSI_BIT_MASK 0x8
#define MIE_MSI_ALL_SET_MASK 0x1
#define MIE_MTI_BIT_OFFSET 7
#define MIE_MTI_BIT_WIDTH 1
#define MIE_MTI_BIT_MASK 0x80
#define MIE_MTI_ALL_SET_MASK 0x1
#define MIE_MEI_BIT_OFFSET 11
#define MIE_MEI_BIT_WIDTH 1
#define MIE_MEI_BIT_MASK 0x800
#define MIE_MEI_ALL_SET_MASK 0x1
#define MIE_SSI_BIT_OFFSET 1
#define MIE_SSI_BIT_WIDTH 1
#define MIE_SSI_BIT_MASK 0x2
#define MIE_SSI_ALL_SET_MASK 0x1
#define MIE_STI_BIT_OFFSET 5
#define MIE_STI_BIT_WIDTH 1
#define MIE_STI_BIT_MASK 0x20
#define MIE_STI_ALL_SET_MASK 0x1
#define MIE_SEI_BIT_OFFSET 9
#define MIE_SEI_BIT_WIDTH 1
#define MIE_SEI_BIT_MASK 0x200
#define MIE_SEI_ALL_SET_MASK 0x1
#define MIE_USI_BIT_OFFSET 0
#define MIE_USI_BIT_WIDTH 1
#define MIE_USI_BIT_MASK 0x1
#define MIE_USI_ALL_SET_MASK 0x1
#define MIE_UTI_BIT_OFFSET 4
#define MIE_UTI_BIT_WIDTH 1
#define MIE_UTI_BIT_MASK 0x10
#define MIE_UTI_ALL_SET_MASK 0x1
#define MIE_UEI_BIT_OFFSET 8
#define MIE_UEI_BIT_WIDTH 1
#define MIE_UEI_BIT_MASK 0x100
#define MIE_UEI_ALL_SET_MASK 0x1
#define MIE_PLATFORM_DEFINED_BIT_OFFSET 16
#define MIE_PLATFORM_DEFINED_BIT_WIDTH ((__riscv_xlen)-(16) + 1)
#define MIE_PLATFORM_DEFINED_BIT_MASK ((1UL<<(((__riscv_xlen)-(16) + 1)-1)) << (16))
#define MIE_PLATFORM_DEFINED_ALL_SET_MASK ((1UL<<(((__riscv_xlen)-(16) + 1)-1)) << (0))
/*******************************************
* mcountinhibit - MRW - Machine Counter Inhibit
*/
static inline uint32_t csr_read_mcountinhibit(void) {
uint_csr32_t value;
__asm__ volatile ("csrr %0, mcountinhibit"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
static inline void csr_write_mcountinhibit(uint_csr32_t value) {
__asm__ volatile ("csrw mcountinhibit, %0"
: /* output: none */
: "r" (value) /* input : from register */
: /* clobbers: none */);
}
static inline uint32_t csr_read_write_mcountinhibit(uint32_t new_value) {
uint_csr32_t prev_value;
__asm__ volatile ("csrrw %0, mcountinhibit, %1"
: "=r" (prev_value) /* output: register %0 */
: "r" (new_value) /* input : register */
: /* clobbers: none */);
return prev_value;
}
/* Register CSR bit set and clear instructions */
static inline void csr_set_bits_mcountinhibit(uint32_t mask) {
__asm__ volatile ("csrrs zero, mcountinhibit, %0"
: /* output: none */
: "r" (mask) /* input : register */
: /* clobbers: none */);
}
static inline void csr_clr_bits_mcountinhibit(uint32_t mask) {
__asm__ volatile ("csrrc zero, mcountinhibit, %0"
: /* output: none */
: "r" (mask) /* input : register */
: /* clobbers: none */);
}
static inline uint32_t csr_read_set_bits_mcountinhibit(uint32_t mask) {
uint_csr32_t value;
__asm__ volatile ("csrrs %0, mcountinhibit, %1"
: "=r" (value) /* output: register %0 */
: "r" (mask) /* input : register */
: /* clobbers: none */);
return value;
}
static inline uint32_t csr_read_clr_bits_mcountinhibit(uint32_t mask) {
uint_csr32_t value;
__asm__ volatile ("csrrc %0, mcountinhibit, %1"
: "=r" (value) /* output: register %0 */
: "r" (mask) /* input : register */
: /* clobbers: none */);
return value;
}
/* mcountinhibit, CSR write value via immediate value (only up to 5 bits) */
#define CSR_WRITE_IMM_MCOUNTINHIBIT(VALUE) \
__asm__ volatile ("csrrwi zero, mcountinhibit, %0" \
: /* output: none */ \
: "i" (VALUE) /* input : immediate */ \
: /* clobbers: none */)
/* mcountinhibit, CSR set bits via immediate value mask (only up to 5 bits) */
#define CSR_SET_BITS_IMM_MCOUNTINHIBIT(MASK) \
__asm__ volatile ("csrrsi zero, mcountinhibit, %0" \
: /* output: none */ \
: "i" (MASK) /* input : immediate */ \
: /* clobbers: none */)
/* mcountinhibit, CSR clear bits via immediate value mask (only up to 5 bits) */
#define CSR_CLR_BITS_IMM_MCOUNTINHIBIT(MASK) \
__asm__ volatile ("csrrci zero, mcountinhibit, %0" \
: /* output: none */ \
: "i" (MASK) /* input : immediate */ \
: /* clobbers: none */)
#define MCOUNTINHIBIT_CY_BIT_OFFSET 0
#define MCOUNTINHIBIT_CY_BIT_WIDTH 1
#define MCOUNTINHIBIT_CY_BIT_MASK 0x1
#define MCOUNTINHIBIT_CY_ALL_SET_MASK 0x1
#define MCOUNTINHIBIT_IR_BIT_OFFSET 2
#define MCOUNTINHIBIT_IR_BIT_WIDTH 1
#define MCOUNTINHIBIT_IR_BIT_MASK 0x4
#define MCOUNTINHIBIT_IR_ALL_SET_MASK 0x1
#define MCOUNTINHIBIT_HPM_BIT_OFFSET 3
#define MCOUNTINHIBIT_HPM_BIT_WIDTH 29
#define MCOUNTINHIBIT_HPM_BIT_MASK 0xfffffff8
#define MCOUNTINHIBIT_HPM_ALL_SET_MASK 0x1fffffff
/*******************************************
* mcycle - MRW - Clock Cycles Executed Counter
*/
static inline uint64_t csr_read_mcycle(void) {
uint_csr64_t value;
__asm__ volatile ("csrr %0, mcycle"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
static inline void csr_write_mcycle(uint_csr64_t value) {
__asm__ volatile ("csrw mcycle, %0"
: /* output: none */
: "r" (value) /* input : from register */
: /* clobbers: none */);
}
static inline uint64_t csr_read_write_mcycle(uint64_t new_value) {
uint_csr64_t prev_value;
__asm__ volatile ("csrrw %0, mcycle, %1"
: "=r" (prev_value) /* output: register %0 */
: "r" (new_value) /* input : register */
: /* clobbers: none */);
return prev_value;
}
/*******************************************
* minstret - MRW - Number of Instructions Retired Counter
*/
static inline uint64_t csr_read_minstret(void) {
uint_csr64_t value;
__asm__ volatile ("csrr %0, minstret"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
static inline void csr_write_minstret(uint_csr64_t value) {
__asm__ volatile ("csrw minstret, %0"
: /* output: none */
: "r" (value) /* input : from register */
: /* clobbers: none */);
}
static inline uint64_t csr_read_write_minstret(uint64_t new_value) {
uint_csr64_t prev_value;
__asm__ volatile ("csrrw %0, minstret, %1"
: "=r" (prev_value) /* output: register %0 */
: "r" (new_value) /* input : register */
: /* clobbers: none */);
return prev_value;
}
/*******************************************
* mhpmcounter3 - MRW - Event Counters
*/
static inline uint64_t csr_read_mhpmcounter3(void) {
uint_csr64_t value;
__asm__ volatile ("csrr %0, mhpmcounter3"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
static inline void csr_write_mhpmcounter3(uint_csr64_t value) {
__asm__ volatile ("csrw mhpmcounter3, %0"
: /* output: none */
: "r" (value) /* input : from register */
: /* clobbers: none */);
}
static inline uint64_t csr_read_write_mhpmcounter3(uint64_t new_value) {
uint_csr64_t prev_value;
__asm__ volatile ("csrrw %0, mhpmcounter3, %1"
: "=r" (prev_value) /* output: register %0 */
: "r" (new_value) /* input : register */
: /* clobbers: none */);
return prev_value;
}
/*******************************************
* mhpmevent3 - MRW - Event Counter Event Select
*/
static inline uint_xlen_t csr_read_mhpmevent3(void) {
uint_xlen_t value;
__asm__ volatile ("csrr %0, mhpmevent3"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
static inline void csr_write_mhpmevent3(uint_xlen_t value) {
__asm__ volatile ("csrw mhpmevent3, %0"
: /* output: none */
: "r" (value) /* input : from register */
: /* clobbers: none */);
}
static inline uint_xlen_t csr_read_write_mhpmevent3(uint_xlen_t new_value) {
uint_xlen_t prev_value;
__asm__ volatile ("csrrw %0, mhpmevent3, %1"
: "=r" (prev_value) /* output: register %0 */
: "r" (new_value) /* input : register */
: /* clobbers: none */);
return prev_value;
}
/*******************************************
* mcounteren - MRW - Counter Enable
*/
static inline uint32_t csr_read_mcounteren(void) {
uint_csr32_t value;
__asm__ volatile ("csrr %0, mcounteren"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
static inline void csr_write_mcounteren(uint_csr32_t value) {
__asm__ volatile ("csrw mcounteren, %0"
: /* output: none */
: "r" (value) /* input : from register */
: /* clobbers: none */);
}
static inline uint32_t csr_read_write_mcounteren(uint32_t new_value) {
uint_csr32_t prev_value;
__asm__ volatile ("csrrw %0, mcounteren, %1"
: "=r" (prev_value) /* output: register %0 */
: "r" (new_value) /* input : register */
: /* clobbers: none */);
return prev_value;
}
/* Register CSR bit set and clear instructions */
static inline void csr_set_bits_mcounteren(uint32_t mask) {
__asm__ volatile ("csrrs zero, mcounteren, %0"
: /* output: none */
: "r" (mask) /* input : register */
: /* clobbers: none */);
}
static inline void csr_clr_bits_mcounteren(uint32_t mask) {
__asm__ volatile ("csrrc zero, mcounteren, %0"
: /* output: none */
: "r" (mask) /* input : register */
: /* clobbers: none */);
}
static inline uint32_t csr_read_set_bits_mcounteren(uint32_t mask) {
uint_csr32_t value;
__asm__ volatile ("csrrs %0, mcounteren, %1"
: "=r" (value) /* output: register %0 */
: "r" (mask) /* input : register */
: /* clobbers: none */);
return value;
}
static inline uint32_t csr_read_clr_bits_mcounteren(uint32_t mask) {
uint_csr32_t value;
__asm__ volatile ("csrrc %0, mcounteren, %1"
: "=r" (value) /* output: register %0 */
: "r" (mask) /* input : register */
: /* clobbers: none */);
return value;
}
/* mcounteren, CSR write value via immediate value (only up to 5 bits) */
#define CSR_WRITE_IMM_MCOUNTEREN(VALUE) \
__asm__ volatile ("csrrwi zero, mcounteren, %0" \
: /* output: none */ \
: "i" (VALUE) /* input : immediate */ \
: /* clobbers: none */)
/* mcounteren, CSR set bits via immediate value mask (only up to 5 bits) */
#define CSR_SET_BITS_IMM_MCOUNTEREN(MASK) \
__asm__ volatile ("csrrsi zero, mcounteren, %0" \
: /* output: none */ \
: "i" (MASK) /* input : immediate */ \
: /* clobbers: none */)
/* mcounteren, CSR clear bits via immediate value mask (only up to 5 bits) */
#define CSR_CLR_BITS_IMM_MCOUNTEREN(MASK) \
__asm__ volatile ("csrrci zero, mcounteren, %0" \
: /* output: none */ \
: "i" (MASK) /* input : immediate */ \
: /* clobbers: none */)
#define MCOUNTEREN_CY_BIT_OFFSET 0
#define MCOUNTEREN_CY_BIT_WIDTH 1
#define MCOUNTEREN_CY_BIT_MASK 0x1
#define MCOUNTEREN_CY_ALL_SET_MASK 0x1
#define MCOUNTEREN_TM_BIT_OFFSET 1
#define MCOUNTEREN_TM_BIT_WIDTH 1
#define MCOUNTEREN_TM_BIT_MASK 0x2
#define MCOUNTEREN_TM_ALL_SET_MASK 0x1
#define MCOUNTEREN_IR_BIT_OFFSET 2
#define MCOUNTEREN_IR_BIT_WIDTH 1
#define MCOUNTEREN_IR_BIT_MASK 0x4
#define MCOUNTEREN_IR_ALL_SET_MASK 0x1
#define MCOUNTEREN_HPM_BIT_OFFSET 3
#define MCOUNTEREN_HPM_BIT_WIDTH 29
#define MCOUNTEREN_HPM_BIT_MASK 0xfffffff8
#define MCOUNTEREN_HPM_ALL_SET_MASK 0x1fffffff
/*******************************************
* scounteren - SRW - Counter Enable
*/
static inline uint_xlen_t csr_read_scounteren(void) {
uint_xlen_t value;
__asm__ volatile ("csrr %0, scounteren"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
static inline void csr_write_scounteren(uint_xlen_t value) {
__asm__ volatile ("csrw scounteren, %0"
: /* output: none */
: "r" (value) /* input : from register */
: /* clobbers: none */);
}
static inline uint_xlen_t csr_read_write_scounteren(uint_xlen_t new_value) {
uint_xlen_t prev_value;
__asm__ volatile ("csrrw %0, scounteren, %1"
: "=r" (prev_value) /* output: register %0 */
: "r" (new_value) /* input : register */
: /* clobbers: none */);
return prev_value;
}
/*******************************************
* mscratch - MRW - Machine Mode Scratch Register
*/
static inline uint_xlen_t csr_read_mscratch(void) {
uint_xlen_t value;
__asm__ volatile ("csrr %0, mscratch"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
static inline void csr_write_mscratch(uint_xlen_t value) {
__asm__ volatile ("csrw mscratch, %0"
: /* output: none */
: "r" (value) /* input : from register */
: /* clobbers: none */);
}
static inline uint_xlen_t csr_read_write_mscratch(uint_xlen_t new_value) {
uint_xlen_t prev_value;
__asm__ volatile ("csrrw %0, mscratch, %1"
: "=r" (prev_value) /* output: register %0 */
: "r" (new_value) /* input : register */
: /* clobbers: none */);
return prev_value;
}
/*******************************************
* mepc - MRW - Machine Exception Program Counter
*/
static inline uint_xlen_t csr_read_mepc(void) {
uint_xlen_t value;
__asm__ volatile ("csrr %0, mepc"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
static inline void csr_write_mepc(uint_xlen_t value) {
__asm__ volatile ("csrw mepc, %0"
: /* output: none */
: "r" (value) /* input : from register */
: /* clobbers: none */);
}
static inline uint_xlen_t csr_read_write_mepc(uint_xlen_t new_value) {
uint_xlen_t prev_value;
__asm__ volatile ("csrrw %0, mepc, %1"
: "=r" (prev_value) /* output: register %0 */
: "r" (new_value) /* input : register */
: /* clobbers: none */);
return prev_value;
}
/*******************************************
* mcause - MRW - Machine Exception Cause
*/
static inline uint_xlen_t csr_read_mcause(void) {
uint_xlen_t value;
__asm__ volatile ("csrr %0, mcause"
: "=r" (value) /* output : register */
: /* input : none */
: /* clobbers: none */);
return value;
}
static inline void csr_write_mcause(uint_xlen_t value) {
__asm__ volatile ("csrw mcause, %0"
: /* output: none */
: "r" (value) /* input : from register */
: /* clobbers: none */);
}
static inline uint_xlen_t csr_read_write_mcause(uint_xlen_t new_value) {
uint_xlen_t prev_value;
__asm__ volatile ("csrrw %0, mcause, %1"
: "=r" (prev_value) /* output: register %0 */
: "r" (new_value) /* input : register */
: /* clobbers: none */);
return prev_value;
}
/* Register CSR bit set and clear instructions */
static inline void csr_set_bits_mcause(uint_xlen_t mask) {
__asm__ volatile ("csrrs zero, mcause, %0"
: /* output: none */
: "r" (mask) /* input : register */
: /* clobbers: none */);
}
static inline void csr_clr_bits_mcause(uint_xlen_t mask) {
__asm__ volatile ("csrrc zero, mcause, %0"
: /* output: none */
: "r" (mask) /* input : register */
: /* clobbers: none */);
}
static inline uint_xlen_t csr_read_set_bits_mcause(uint_xlen_t mask) {
uint_xlen_t value;