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
|
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (C) 2015 Regents of the University of California
*/
#ifndef _ASM_RISCV_CSR_H
#define _ASM_RISCV_CSR_H
#include <asm/asm.h>
#include <xen/const.h>
#include <asm/riscv_encoding.h>
#ifndef __ASSEMBLY__
#define csr_read(csr) \
({ \
register unsigned long __v; \
__asm__ __volatile__ ( "csrr %0, " __ASM_STR(csr) \
: "=r" (__v) \
: : "memory" ); \
__v; \
})
#define csr_write(csr, val) \
({ \
unsigned long __v = (unsigned long)(val); \
__asm__ __volatile__ ( "csrw " __ASM_STR(csr) ", %0" \
: /* no outputs */ \
: "rK" (__v) \
: "memory" ); \
})
#define csr_swap(csr, val) \
({ \
unsigned long __v = (unsigned long)(val); \
__asm__ __volatile__ ( "csrrw %0, " __ASM_STR(csr) ", %1" \
: "=r" (__v) \
: "rK" (__v) \
: "memory" ); \
__v; \
})
#define csr_read_set(csr, val) \
({ \
unsigned long __v = (unsigned long)(val); \
__asm__ __volatile__ ( "csrrs %0, " __ASM_STR(csr) ", %1" \
: "=r" (__v) \
: "rK" (__v) \
: "memory" ); \
__v; \
})
#define csr_set(csr, val) \
({ \
unsigned long __v = (unsigned long)(val); \
__asm__ __volatile__ ( "csrs " __ASM_STR(csr) ", %0" \
: /* no outputs */ \
: "rK" (__v) \
: "memory" ); \
})
#define csr_read_clear(csr, val) \
({ \
unsigned long __v = (unsigned long)(val); \
__asm__ __volatile__ ( "csrrc %0, " __ASM_STR(csr) ", %1" \
: "=r" (__v) \
: "rK" (__v) \
: "memory" ); \
__v; \
})
#define csr_clear(csr, val) \
({ \
unsigned long __v = (unsigned long)(val); \
__asm__ __volatile__ ( "csrc " __ASM_STR(csr) ", %0" \
: /* no outputs */ \
: "rK" (__v) \
: "memory" ); \
})
#endif /* __ASSEMBLY__ */
#endif /* _ASM_RISCV_CSR_H */
|