riscv: Add basic support for SBI v0.2
[oweals/u-boot.git] / arch / riscv / lib / sbi.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * SBI initialilization and all extension implementation.
4  *
5  * Copyright (c) 2020 Western Digital Corporation or its affiliates.
6  *
7  * Taken from Linux arch/riscv/kernel/sbi.c
8  */
9
10 #include <common.h>
11 #include <asm/encoding.h>
12 #include <asm/sbi.h>
13
14 /* default SBI version is 0.1 */
15 unsigned long sbi_spec_version = SBI_SPEC_VERSION_DEFAULT;
16
17 struct sbiret sbi_ecall(int ext, int fid, unsigned long arg0,
18                         unsigned long arg1, unsigned long arg2,
19                         unsigned long arg3, unsigned long arg4,
20                         unsigned long arg5)
21 {
22         struct sbiret ret;
23
24         register uintptr_t a0 asm ("a0") = (uintptr_t)(arg0);
25         register uintptr_t a1 asm ("a1") = (uintptr_t)(arg1);
26         register uintptr_t a2 asm ("a2") = (uintptr_t)(arg2);
27         register uintptr_t a3 asm ("a3") = (uintptr_t)(arg3);
28         register uintptr_t a4 asm ("a4") = (uintptr_t)(arg4);
29         register uintptr_t a5 asm ("a5") = (uintptr_t)(arg5);
30         register uintptr_t a6 asm ("a6") = (uintptr_t)(fid);
31         register uintptr_t a7 asm ("a7") = (uintptr_t)(ext);
32         asm volatile ("ecall"
33                       : "+r" (a0), "+r" (a1)
34                       : "r" (a2), "r" (a3), "r" (a4), "r" (a5), "r" (a6), "r" (a7)
35                       : "memory");
36         ret.error = a0;
37         ret.value = a1;
38
39         return ret;
40 }
41
42 /**
43  * sbi_console_putchar() - Writes given character to the console device.
44  * @ch: The data to be written to the console.
45  *
46  * Return: None
47  */
48 void sbi_console_putchar(int ch)
49 {
50         sbi_ecall(SBI_EXT_0_1_CONSOLE_PUTCHAR, 0, ch, 0, 0, 0, 0, 0);
51 }
52
53 /**
54  * sbi_console_getchar() - Reads a byte from console device.
55  *
56  * Returns the value read from console.
57  */
58 int sbi_console_getchar(void)
59 {
60         struct sbiret ret;
61
62         ret = sbi_ecall(SBI_EXT_0_1_CONSOLE_GETCHAR, 0, 0, 0, 0, 0, 0, 0);
63
64         return ret.error;
65 }
66
67 /**
68  * sbi_clear_ipi() - Clear any pending IPIs for the calling hart.
69  *
70  * Return: None
71  */
72 void sbi_clear_ipi(void)
73 {
74         sbi_ecall(SBI_EXT_0_1_CLEAR_IPI, 0, 0, 0, 0, 0, 0, 0);
75 }
76
77 /**
78  * sbi_shutdown() - Remove all the harts from executing supervisor code.
79  *
80  * Return: None
81  */
82 void sbi_shutdown(void)
83 {
84         sbi_ecall(SBI_EXT_0_1_SHUTDOWN, 0, 0, 0, 0, 0, 0, 0);
85 }
86
87 /**
88  * sbi_set_timer() - Program the timer for next timer event.
89  * @stime_value: The value after which next timer event should fire.
90  *
91  * Return: None
92  */
93 void sbi_set_timer(uint64_t stime_value)
94 {
95 #if __riscv_xlen == 32
96         sbi_ecall(SBI_EXT_0_1_SET_TIMER, 0, stime_value,
97                   stime_value >> 32, 0, 0, 0, 0);
98 #else
99         sbi_ecall(SBI_EXT_0_1_SET_TIMER, 0, stime_value, 0, 0, 0, 0, 0);
100 #endif
101 }
102
103 /**
104  * sbi_send_ipi() - Send an IPI to any hart.
105  * @hart_mask: A cpu mask containing all the target harts.
106  *
107  * Return: None
108  */
109 void sbi_send_ipi(const unsigned long *hart_mask)
110 {
111         sbi_ecall(SBI_EXT_0_1_SEND_IPI, 0, (unsigned long)hart_mask,
112                   0, 0, 0, 0, 0);
113 }
114
115 /**
116  * sbi_remote_fence_i() - Execute FENCE.I instruction on given remote harts.
117  * @hart_mask: A cpu mask containing all the target harts.
118  *
119  * Return: None
120  */
121 void sbi_remote_fence_i(const unsigned long *hart_mask)
122 {
123         sbi_ecall(SBI_EXT_0_1_REMOTE_FENCE_I, 0, (unsigned long)hart_mask,
124                   0, 0, 0, 0, 0);
125 }
126
127 /**
128  * sbi_remote_sfence_vma() - Execute SFENCE.VMA instructions on given remote
129  *                           harts for the specified virtual address range.
130  * @hart_mask: A cpu mask containing all the target harts.
131  * @start: Start of the virtual address
132  * @size: Total size of the virtual address range.
133  *
134  * Return: None
135  */
136 void sbi_remote_sfence_vma(const unsigned long *hart_mask,
137                            unsigned long start,
138                            unsigned long size)
139 {
140         sbi_ecall(SBI_EXT_0_1_REMOTE_SFENCE_VMA, 0,
141                   (unsigned long)hart_mask, start, size, 0, 0, 0);
142 }
143
144 /**
145  * sbi_remote_sfence_vma_asid() - Execute SFENCE.VMA instructions on given
146  * remote harts for a virtual address range belonging to a specific ASID.
147  *
148  * @hart_mask: A cpu mask containing all the target harts.
149  * @start: Start of the virtual address
150  * @size: Total size of the virtual address range.
151  * @asid: The value of address space identifier (ASID).
152  *
153  * Return: None
154  */
155 void sbi_remote_sfence_vma_asid(const unsigned long *hart_mask,
156                                 unsigned long start,
157                                 unsigned long size,
158                                 unsigned long asid)
159 {
160         sbi_ecall(SBI_EXT_0_1_REMOTE_SFENCE_VMA_ASID, 0,
161                   (unsigned long)hart_mask, start, size, asid, 0, 0);
162 }
163
164 /**
165  * sbi_probe_extension() - Check if an SBI extension ID is supported or not.
166  * @extid: The extension ID to be probed.
167  *
168  * Return: Extension specific nonzero value f yes, -ENOTSUPP otherwise.
169  */
170 int sbi_probe_extension(int extid)
171 {
172         struct sbiret ret;
173
174         ret = sbi_ecall(SBI_EXT_BASE, SBI_EXT_BASE_PROBE_EXT, extid,
175                         0, 0, 0, 0, 0);
176         if (!ret.error)
177                 if (ret.value)
178                         return ret.value;
179
180         return -ENOTSUPP;
181 }