Bin Meng | 6b69775 | 2018-09-26 06:55:06 -0700 | [diff] [blame] | 1 | menu "RISC-V architecture" |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 2 | depends on RISCV |
| 3 | |
| 4 | config SYS_ARCH |
| 5 | default "riscv" |
| 6 | |
| 7 | choice |
| 8 | prompt "Target select" |
| 9 | optional |
| 10 | |
Randolph | 6c9c5ba | 2023-09-25 17:24:51 +0800 | [diff] [blame] | 11 | config TARGET_ANDES_AE350 |
| 12 | bool "Support Andes ae350" |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 13 | |
Padmarao Begari | 4216f34 | 2019-05-28 15:47:51 +0530 | [diff] [blame] | 14 | config TARGET_MICROCHIP_ICICLE |
| 15 | bool "Support Microchip PolarFire-SoC Icicle Board" |
| 16 | |
Bin Meng | 8a8694d | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 17 | config TARGET_QEMU_VIRT |
| 18 | bool "Support QEMU Virt Board" |
| 19 | |
Bin Meng | e9ead4a | 2021-03-17 11:10:58 +0800 | [diff] [blame] | 20 | config TARGET_SIFIVE_UNLEASHED |
| 21 | bool "Support SiFive Unleashed Board" |
Anup Patel | 7a167f2 | 2019-02-25 08:15:19 +0000 | [diff] [blame] | 22 | |
Green Wan | 2e5da52 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 23 | config TARGET_SIFIVE_UNMATCHED |
| 24 | bool "Support SiFive Unmatched Board" |
Tom Rini | 3ef67ae | 2021-08-26 11:47:59 -0400 | [diff] [blame] | 25 | select SYS_CACHE_SHIFT_6 |
Green Wan | 2e5da52 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 26 | |
Yanhong Wang | 3867879 | 2023-03-29 11:42:20 +0800 | [diff] [blame] | 27 | config TARGET_STARFIVE_VISIONFIVE2 |
| 28 | bool "Support StarFive VisionFive2 Board" |
Heinrich Schuchardt | 03a885b | 2023-09-07 13:21:28 +0200 | [diff] [blame] | 29 | select BOARD_LATE_INIT |
Yanhong Wang | 3867879 | 2023-03-29 11:42:20 +0800 | [diff] [blame] | 30 | |
Yixun Lan | 5dfa901 | 2023-07-08 19:24:32 +0800 | [diff] [blame] | 31 | config TARGET_TH1520_LPI4A |
| 32 | bool "Support Sipeed's TH1520 Lichee PI 4A Board" |
| 33 | select SYS_CACHE_SHIFT_6 |
| 34 | |
Sean Anderson | edc32ab | 2020-06-24 06:41:25 -0400 | [diff] [blame] | 35 | config TARGET_SIPEED_MAIX |
| 36 | bool "Support Sipeed Maix Board" |
Tom Rini | 3ef67ae | 2021-08-26 11:47:59 -0400 | [diff] [blame] | 37 | select SYS_CACHE_SHIFT_6 |
Sean Anderson | edc32ab | 2020-06-24 06:41:25 -0400 | [diff] [blame] | 38 | |
Tianrui Wei | 2ef594d | 2021-07-01 12:54:19 +0800 | [diff] [blame] | 39 | config TARGET_OPENPITON_RISCV64 |
| 40 | bool "Support RISC-V cores on OpenPiton SoC" |
| 41 | |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 42 | endchoice |
| 43 | |
Trevor Woerner | ba64b8b | 2019-05-03 09:40:59 -0400 | [diff] [blame] | 44 | config SYS_ICACHE_OFF |
| 45 | bool "Do not enable icache" |
Trevor Woerner | ba64b8b | 2019-05-03 09:40:59 -0400 | [diff] [blame] | 46 | help |
| 47 | Do not enable instruction cache in U-Boot. |
| 48 | |
Trevor Woerner | 43ec7e0 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 49 | config SPL_SYS_ICACHE_OFF |
| 50 | bool "Do not enable icache in SPL" |
| 51 | depends on SPL |
| 52 | default SYS_ICACHE_OFF |
| 53 | help |
| 54 | Do not enable instruction cache in SPL. |
| 55 | |
Trevor Woerner | ba64b8b | 2019-05-03 09:40:59 -0400 | [diff] [blame] | 56 | config SYS_DCACHE_OFF |
| 57 | bool "Do not enable dcache" |
Trevor Woerner | ba64b8b | 2019-05-03 09:40:59 -0400 | [diff] [blame] | 58 | help |
| 59 | Do not enable data cache in U-Boot. |
| 60 | |
Trevor Woerner | 43ec7e0 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 61 | config SPL_SYS_DCACHE_OFF |
| 62 | bool "Do not enable dcache in SPL" |
| 63 | depends on SPL |
| 64 | default SYS_DCACHE_OFF |
| 65 | help |
| 66 | Do not enable data cache in SPL. |
| 67 | |
Shengyu Qu | d1a3254 | 2023-08-09 21:11:31 +0800 | [diff] [blame] | 68 | config SPL_ZERO_MEM_BEFORE_USE |
| 69 | bool "Zero memory before use" |
| 70 | depends on SPL |
| 71 | default n |
| 72 | help |
| 73 | Zero stack/GD/malloc area in SPL before using them, this is needed for |
| 74 | Sifive core devices that uses L2 cache to store SPL. |
| 75 | |
Rick Chen | 842d580 | 2018-11-07 09:34:06 +0800 | [diff] [blame] | 76 | # board-specific options below |
Leo Yu-Chi Liang | 249ce73 | 2023-02-14 20:42:49 +0800 | [diff] [blame] | 77 | source "board/AndesTech/ae350/Kconfig" |
Bin Meng | 8a8694d | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 78 | source "board/emulation/qemu-riscv/Kconfig" |
Padmarao Begari | 4216f34 | 2019-05-28 15:47:51 +0530 | [diff] [blame] | 79 | source "board/microchip/mpfs_icicle/Kconfig" |
Bin Meng | e9ead4a | 2021-03-17 11:10:58 +0800 | [diff] [blame] | 80 | source "board/sifive/unleashed/Kconfig" |
Green Wan | 2e5da52 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 81 | source "board/sifive/unmatched/Kconfig" |
Yixun Lan | 5dfa901 | 2023-07-08 19:24:32 +0800 | [diff] [blame] | 82 | source "board/thead/th1520_lpi4a/Kconfig" |
Tianrui Wei | 2ef594d | 2021-07-01 12:54:19 +0800 | [diff] [blame] | 83 | source "board/openpiton/riscv64/Kconfig" |
Sean Anderson | edc32ab | 2020-06-24 06:41:25 -0400 | [diff] [blame] | 84 | source "board/sipeed/maix/Kconfig" |
Yanhong Wang | 3867879 | 2023-03-29 11:42:20 +0800 | [diff] [blame] | 85 | source "board/starfive/visionfive2/Kconfig" |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 86 | |
Rick Chen | 842d580 | 2018-11-07 09:34:06 +0800 | [diff] [blame] | 87 | # platform-specific options below |
Leo Yu-Chi Liang | 249ce73 | 2023-02-14 20:42:49 +0800 | [diff] [blame] | 88 | source "arch/riscv/cpu/andesv5/Kconfig" |
Pragnesh Patel | 25269c0 | 2020-05-29 11:33:34 +0530 | [diff] [blame] | 89 | source "arch/riscv/cpu/fu540/Kconfig" |
Green Wan | 7f33743 | 2021-05-27 06:52:07 -0700 | [diff] [blame] | 90 | source "arch/riscv/cpu/fu740/Kconfig" |
Anup Patel | 1240cd6 | 2019-02-25 08:14:10 +0000 | [diff] [blame] | 91 | source "arch/riscv/cpu/generic/Kconfig" |
Yanhong Wang | 3867879 | 2023-03-29 11:42:20 +0800 | [diff] [blame] | 92 | source "arch/riscv/cpu/jh7110/Kconfig" |
Rick Chen | 842d580 | 2018-11-07 09:34:06 +0800 | [diff] [blame] | 93 | |
| 94 | # architecture-specific options below |
| 95 | |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 96 | choice |
Lukas Auer | 54ebfe7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 97 | prompt "Base ISA" |
| 98 | default ARCH_RV32I |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 99 | |
Lukas Auer | 54ebfe7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 100 | config ARCH_RV32I |
| 101 | bool "RV32I" |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 102 | select 32BIT |
| 103 | help |
Lukas Auer | 54ebfe7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 104 | Choose this option to target the RV32I base integer instruction set. |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 105 | |
Lukas Auer | 54ebfe7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 106 | config ARCH_RV64I |
| 107 | bool "RV64I" |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 108 | select 64BIT |
Lukas Auer | 7ab1df0 | 2018-11-22 11:26:13 +0100 | [diff] [blame] | 109 | select PHYS_64BIT |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 110 | help |
Lukas Auer | 54ebfe7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 111 | Choose this option to target the RV64I base integer instruction set. |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 112 | |
| 113 | endchoice |
| 114 | |
Lukas Auer | ecc5d83 | 2018-12-12 06:12:23 -0800 | [diff] [blame] | 115 | choice |
| 116 | prompt "Code Model" |
| 117 | default CMODEL_MEDLOW |
| 118 | |
| 119 | config CMODEL_MEDLOW |
| 120 | bool "medium low code model" |
| 121 | help |
| 122 | U-Boot and its statically defined symbols must lie within a single 2 GiB |
| 123 | address range and must lie between absolute addresses -2 GiB and +2 GiB. |
| 124 | |
| 125 | config CMODEL_MEDANY |
| 126 | bool "medium any code model" |
| 127 | help |
| 128 | U-Boot and its statically defined symbols must be within any single 2 GiB |
| 129 | address range. |
| 130 | |
| 131 | endchoice |
| 132 | |
Anup Patel | 2788177 | 2018-12-12 06:12:29 -0800 | [diff] [blame] | 133 | choice |
| 134 | prompt "Run Mode" |
| 135 | default RISCV_MMODE |
| 136 | |
| 137 | config RISCV_MMODE |
| 138 | bool "Machine" |
| 139 | help |
| 140 | Choose this option to build U-Boot for RISC-V M-Mode. |
| 141 | |
| 142 | config RISCV_SMODE |
| 143 | bool "Supervisor" |
Heinrich Schuchardt | 20964b6 | 2023-09-23 01:35:26 +0200 | [diff] [blame] | 144 | imply DEBUG_UART |
Anup Patel | 2788177 | 2018-12-12 06:12:29 -0800 | [diff] [blame] | 145 | help |
| 146 | Choose this option to build U-Boot for RISC-V S-Mode. |
| 147 | |
| 148 | endchoice |
| 149 | |
Lukas Auer | 6134659 | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 150 | choice |
| 151 | prompt "SPL Run Mode" |
| 152 | default SPL_RISCV_MMODE |
| 153 | depends on SPL |
| 154 | |
| 155 | config SPL_RISCV_MMODE |
| 156 | bool "Machine" |
| 157 | help |
| 158 | Choose this option to build U-Boot SPL for RISC-V M-Mode. |
| 159 | |
| 160 | config SPL_RISCV_SMODE |
| 161 | bool "Supervisor" |
| 162 | help |
| 163 | Choose this option to build U-Boot SPL for RISC-V S-Mode. |
| 164 | |
| 165 | endchoice |
| 166 | |
Lukas Auer | 002012f | 2018-11-22 11:26:14 +0100 | [diff] [blame] | 167 | config RISCV_ISA_C |
| 168 | bool "Emit compressed instructions" |
| 169 | default y |
| 170 | help |
| 171 | Adds "C" to the ISA subsets that the toolchain is allowed to emit |
| 172 | when building U-Boot, which results in compressed instructions in the |
| 173 | U-Boot binary. |
| 174 | |
Heinrich Schuchardt | c66c950 | 2022-10-12 14:59:51 +0200 | [diff] [blame] | 175 | config RISCV_ISA_F |
| 176 | bool "Standard extension for Single-Precision Floating Point" |
| 177 | default y |
| 178 | help |
| 179 | Adds "F" to the ISA string passed to the compiler. |
| 180 | |
| 181 | config RISCV_ISA_D |
| 182 | bool "Standard extension for Double-Precision Floating Point" |
| 183 | depends on RISCV_ISA_F |
| 184 | default y |
| 185 | help |
| 186 | Adds "D" to the ISA string passed to the compiler and changes the |
| 187 | riscv32 ABI from ilp32 to ilp32d and the riscv64 ABI from lp64 to |
| 188 | lp64d. |
| 189 | |
Yu Chien Peter Lin | 60814cb | 2023-08-09 18:49:30 +0800 | [diff] [blame] | 190 | config RISCV_ISA_ZBB |
| 191 | bool "Zbb extension support for bit manipulation instructions" |
| 192 | help |
| 193 | Adds ZBB extension (basic bit manipulation) to the ISA subsets |
| 194 | that the toolchain is allowed to emit when building U-Boot. |
| 195 | The Zbb extension provides instructions to accelerate a number |
| 196 | of bit-specific operations (count bit population, sign extending, |
| 197 | bitrotation, etc) and enables optimized string routines. |
| 198 | |
| 199 | menu "Use assembly optimized implementation of string routines" |
| 200 | |
| 201 | config USE_ARCH_STRLEN |
| 202 | bool "Use an assembly optimized implementation of strlen" |
| 203 | default y |
| 204 | depends on RISCV_ISA_ZBB |
| 205 | help |
| 206 | Enable the generation of an optimized version of strlen using |
| 207 | Zbb extension. |
| 208 | |
| 209 | config SPL_USE_ARCH_STRLEN |
| 210 | bool "Use an assembly optimized implementation of strlen for SPL" |
| 211 | default y if USE_ARCH_STRLEN |
| 212 | depends on RISCV_ISA_ZBB |
| 213 | depends on SPL |
| 214 | help |
| 215 | Enable the generation of an optimized version of strlen using |
| 216 | Zbb extension. |
| 217 | |
| 218 | config TPL_USE_ARCH_STRLEN |
| 219 | bool "Use an assembly optimized implementation of strlen for TPL" |
| 220 | default y if USE_ARCH_STRLEN |
| 221 | depends on RISCV_ISA_ZBB |
| 222 | depends on TPL |
| 223 | help |
| 224 | Enable the generation of an optimized version of strlen using |
| 225 | Zbb extension. |
| 226 | |
| 227 | config USE_ARCH_STRCMP |
| 228 | bool "Use an assembly optimized implementation of strcmp" |
| 229 | default y |
| 230 | depends on RISCV_ISA_ZBB |
| 231 | help |
| 232 | Enable the generation of an optimized version of strcmp using |
| 233 | Zbb extension. |
| 234 | |
| 235 | config SPL_USE_ARCH_STRCMP |
| 236 | bool "Use an assembly optimized implementation of strcmp for SPL" |
| 237 | default y if USE_ARCH_STRCMP |
| 238 | depends on RISCV_ISA_ZBB |
| 239 | depends on SPL |
| 240 | help |
| 241 | Enable the generation of an optimized version of strcmp using |
| 242 | Zbb extension. |
| 243 | |
| 244 | config TPL_USE_ARCH_STRCMP |
| 245 | bool "Use an assembly optimized implementation of strcmp for TPL" |
| 246 | default y if USE_ARCH_STRCMP |
| 247 | depends on RISCV_ISA_ZBB |
| 248 | depends on TPL |
| 249 | help |
| 250 | Enable the generation of an optimized version of strcmp using |
| 251 | Zbb extension. |
| 252 | |
| 253 | config USE_ARCH_STRNCMP |
| 254 | bool "Use an assembly optimized implementation of strncmp" |
| 255 | default y |
| 256 | depends on RISCV_ISA_ZBB |
| 257 | help |
| 258 | Enable the generation of an optimized version of strncmp using |
| 259 | Zbb extension. |
| 260 | |
| 261 | config SPL_USE_ARCH_STRNCMP |
| 262 | bool "Use an assembly optimized implementation of strncmp for SPL" |
| 263 | default y if USE_ARCH_STRNCMP |
| 264 | depends on RISCV_ISA_ZBB |
| 265 | depends on SPL |
| 266 | help |
| 267 | Enable the generation of an optimized version of strncmp using |
| 268 | Zbb extension. |
| 269 | |
| 270 | config TPL_USE_ARCH_STRNCMP |
| 271 | bool "Use an assembly optimized implementation of strncmp for TPL" |
| 272 | default y if USE_ARCH_STRNCMP |
| 273 | depends on RISCV_ISA_ZBB |
| 274 | depends on TPL |
| 275 | help |
| 276 | Enable the generation of an optimized version of strncmp using |
| 277 | Zbb extension. |
| 278 | |
| 279 | endmenu |
| 280 | |
Lukas Auer | 002012f | 2018-11-22 11:26:14 +0100 | [diff] [blame] | 281 | config RISCV_ISA_A |
| 282 | def_bool y |
| 283 | |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 284 | config 32BIT |
| 285 | bool |
| 286 | |
| 287 | config 64BIT |
| 288 | bool |
| 289 | |
Padmarao Begari | a235d43 | 2021-01-15 08:20:35 +0530 | [diff] [blame] | 290 | config DMA_ADDR_T_64BIT |
| 291 | bool |
| 292 | default y if 64BIT |
| 293 | |
Bin Meng | b5f0372 | 2023-06-21 23:11:46 +0800 | [diff] [blame] | 294 | config RISCV_ACLINT |
Bin Meng | b6ee5e1 | 2018-12-12 06:12:30 -0800 | [diff] [blame] | 295 | bool |
Bin Meng | 614b1d8 | 2021-05-11 20:04:12 +0800 | [diff] [blame] | 296 | depends on RISCV_MMODE |
Bin Meng | 08b8d26 | 2023-06-21 23:11:45 +0800 | [diff] [blame] | 297 | select REGMAP |
| 298 | select SYSCON |
Bin Meng | 614b1d8 | 2021-05-11 20:04:12 +0800 | [diff] [blame] | 299 | help |
Bin Meng | b5f0372 | 2023-06-21 23:11:46 +0800 | [diff] [blame] | 300 | The RISC-V ACLINT block holds memory-mapped control and status registers |
Bin Meng | 614b1d8 | 2021-05-11 20:04:12 +0800 | [diff] [blame] | 301 | associated with software and timer interrupts. |
| 302 | |
Bin Meng | b5f0372 | 2023-06-21 23:11:46 +0800 | [diff] [blame] | 303 | config SPL_RISCV_ACLINT |
Bin Meng | 614b1d8 | 2021-05-11 20:04:12 +0800 | [diff] [blame] | 304 | bool |
| 305 | depends on SPL_RISCV_MMODE |
Bin Meng | 08b8d26 | 2023-06-21 23:11:45 +0800 | [diff] [blame] | 306 | select SPL_REGMAP |
| 307 | select SPL_SYSCON |
Bin Meng | b6ee5e1 | 2018-12-12 06:12:30 -0800 | [diff] [blame] | 308 | help |
Bin Meng | b5f0372 | 2023-06-21 23:11:46 +0800 | [diff] [blame] | 309 | The RISC-V ACLINT block holds memory-mapped control and status registers |
Bin Meng | b6ee5e1 | 2018-12-12 06:12:30 -0800 | [diff] [blame] | 310 | associated with software and timer interrupts. |
| 311 | |
Zong Li | c39544c | 2021-09-01 15:01:41 +0800 | [diff] [blame] | 312 | config SIFIVE_CACHE |
| 313 | bool |
| 314 | help |
| 315 | This enables the operations to configure SiFive cache |
| 316 | |
Yu Chien Peter Lin | 739cd6f | 2022-10-25 23:03:50 +0800 | [diff] [blame] | 317 | config ANDES_PLICSW |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 318 | bool |
Lukas Auer | 6134659 | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 319 | depends on RISCV_MMODE || SPL_RISCV_MMODE |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 320 | select REGMAP |
| 321 | select SYSCON |
Lukas Auer | 6134659 | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 322 | select SPL_REGMAP if SPL |
| 323 | select SPL_SYSCON if SPL |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 324 | help |
Yu Chien Peter Lin | 739cd6f | 2022-10-25 23:03:50 +0800 | [diff] [blame] | 325 | The Andes PLICSW block holds memory-mapped claim and pending |
| 326 | registers associated with software interrupt. |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 327 | |
Lukas Auer | 83d573d | 2019-03-17 19:28:32 +0100 | [diff] [blame] | 328 | config SMP |
| 329 | bool "Symmetric Multi-Processing" |
Bin Meng | 4997522 | 2020-04-16 08:09:31 -0700 | [diff] [blame] | 330 | depends on SBI_V01 || !RISCV_SMODE |
Lukas Auer | 83d573d | 2019-03-17 19:28:32 +0100 | [diff] [blame] | 331 | help |
| 332 | This enables support for systems with more than one CPU. If |
| 333 | you say N here, U-Boot will run on single and multiprocessor |
| 334 | machines, but will use only one CPU of a multiprocessor |
| 335 | machine. If you say Y here, U-Boot will run on many, but not |
| 336 | all, single processor machines. |
| 337 | |
Bin Meng | b161f90 | 2020-04-16 08:09:30 -0700 | [diff] [blame] | 338 | config SPL_SMP |
| 339 | bool "Symmetric Multi-Processing in SPL" |
| 340 | depends on SPL && SPL_RISCV_MMODE |
| 341 | default y |
| 342 | help |
| 343 | This enables support for systems with more than one CPU in SPL. |
| 344 | If you say N here, U-Boot SPL will run on single and multiprocessor |
| 345 | machines, but will use only one CPU of a multiprocessor |
| 346 | machine. If you say Y here, U-Boot SPL will run on many, but not |
| 347 | all, single processor machines. |
| 348 | |
Lukas Auer | 83d573d | 2019-03-17 19:28:32 +0100 | [diff] [blame] | 349 | config NR_CPUS |
| 350 | int "Maximum number of CPUs (2-32)" |
| 351 | range 2 32 |
Bin Meng | b161f90 | 2020-04-16 08:09:30 -0700 | [diff] [blame] | 352 | depends on SMP || SPL_SMP |
Lukas Auer | 83d573d | 2019-03-17 19:28:32 +0100 | [diff] [blame] | 353 | default 8 |
| 354 | help |
| 355 | On multiprocessor machines, U-Boot sets up a stack for each CPU. |
| 356 | Stack memory is pre-allocated. U-Boot must therefore know the |
| 357 | maximum number of CPUs that may be present. |
| 358 | |
Bin Meng | ee3bcd0 | 2020-03-09 19:35:28 -0700 | [diff] [blame] | 359 | config SBI |
| 360 | bool |
| 361 | default y if RISCV_SMODE || SPL_RISCV_SMODE |
| 362 | |
Bin Meng | a75325e | 2020-04-16 08:09:32 -0700 | [diff] [blame] | 363 | choice |
| 364 | prompt "SBI support" |
Bin Meng | 3aecc4b | 2020-04-16 08:09:33 -0700 | [diff] [blame] | 365 | default SBI_V02 |
Bin Meng | a75325e | 2020-04-16 08:09:32 -0700 | [diff] [blame] | 366 | |
Bin Meng | 887d809 | 2020-03-09 19:35:30 -0700 | [diff] [blame] | 367 | config SBI_V01 |
| 368 | bool "SBI v0.1 support" |
Bin Meng | 887d809 | 2020-03-09 19:35:30 -0700 | [diff] [blame] | 369 | depends on SBI |
| 370 | help |
| 371 | This config allows kernel to use SBI v0.1 APIs. This will be |
| 372 | deprecated in future once legacy M-mode software are no longer in use. |
| 373 | |
Bin Meng | a75325e | 2020-04-16 08:09:32 -0700 | [diff] [blame] | 374 | config SBI_V02 |
Heinrich Schuchardt | 693baee | 2022-11-08 15:53:12 +0100 | [diff] [blame] | 375 | bool "SBI v0.2 or later support" |
Bin Meng | a75325e | 2020-04-16 08:09:32 -0700 | [diff] [blame] | 376 | depends on SBI |
| 377 | help |
Heinrich Schuchardt | 693baee | 2022-11-08 15:53:12 +0100 | [diff] [blame] | 378 | The SBI specification introduced the concept of extensions in version |
| 379 | v0.2. With this configuration option U-Boot can detect and use SBI |
| 380 | extensions. With the HSM extension introduced in SBI 0.2, only a |
| 381 | single hart needs to boot and enter the operating system. The booting |
| 382 | hart can bring up secondary harts one by one afterwards. |
Bin Meng | a75325e | 2020-04-16 08:09:32 -0700 | [diff] [blame] | 383 | |
Heinrich Schuchardt | 693baee | 2022-11-08 15:53:12 +0100 | [diff] [blame] | 384 | Choose this option if OpenSBI release v0.7 or above is used together |
Bin Meng | a75325e | 2020-04-16 08:09:32 -0700 | [diff] [blame] | 385 | with U-Boot. |
| 386 | |
| 387 | endchoice |
| 388 | |
Lukas Auer | e79178b | 2019-03-17 19:28:34 +0100 | [diff] [blame] | 389 | config SBI_IPI |
| 390 | bool |
Bin Meng | ee3bcd0 | 2020-03-09 19:35:28 -0700 | [diff] [blame] | 391 | depends on SBI |
Lukas Auer | 6134659 | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 392 | default y if RISCV_SMODE || SPL_RISCV_SMODE |
Lukas Auer | e79178b | 2019-03-17 19:28:34 +0100 | [diff] [blame] | 393 | depends on SMP |
| 394 | |
Rick Chen | e5e6c36 | 2019-04-30 13:49:33 +0800 | [diff] [blame] | 395 | config XIP |
| 396 | bool "XIP mode" |
| 397 | help |
| 398 | XIP (eXecute In Place) is a method for executing code directly |
| 399 | from a NOR flash memory without copying the code to ram. |
| 400 | Say yes here if U-Boot boots from flash directly. |
| 401 | |
Nikita Shubin | 7e5e029 | 2022-09-02 11:47:39 +0300 | [diff] [blame] | 402 | config SPL_XIP |
| 403 | bool "Enable XIP mode for SPL" |
| 404 | help |
| 405 | If SPL starts in read-only memory (XIP for example) then we shouldn't |
| 406 | rely on lock variables (for example hart_lottery and available_harts_lock), |
| 407 | this affects only SPL, other stages should proceed as non-XIP. |
| 408 | |
Rick Chen | 9c4d5c1 | 2022-09-21 14:34:54 +0800 | [diff] [blame] | 409 | config AVAILABLE_HARTS |
| 410 | bool "Send IPI by available harts" |
| 411 | default y |
| 412 | help |
| 413 | By default, IPI sending mechanism will depend on available_harts. |
| 414 | If disable this, it will send IPI by CPUs node numbers of device tree. |
| 415 | |
Sean Anderson | e8b46a1 | 2019-12-25 00:27:44 -0500 | [diff] [blame] | 416 | config SHOW_REGS |
| 417 | bool "Show registers on unhandled exception" |
| 418 | |
Sean Anderson | 7f4b666 | 2020-06-24 06:41:19 -0400 | [diff] [blame] | 419 | config RISCV_PRIV_1_9 |
| 420 | bool "Use version 1.9 of the RISC-V priviledged specification" |
| 421 | help |
| 422 | Older versions of the RISC-V priviledged specification had |
| 423 | separate counter enable CSRs for each privilege mode. Writing |
| 424 | to the unified mcounteren CSR on a processor implementing the |
| 425 | old specification will result in an illegal instruction |
| 426 | exception. In addition to counter CSR changes, the way virtual |
| 427 | memory is configured was also changed. |
| 428 | |
Lukas Auer | a359665 | 2019-03-17 19:28:37 +0100 | [diff] [blame] | 429 | config STACK_SIZE_SHIFT |
| 430 | int |
Lukas Auer | 0381370 | 2019-10-20 20:53:47 +0200 | [diff] [blame] | 431 | default 14 |
Lukas Auer | a359665 | 2019-03-17 19:28:37 +0100 | [diff] [blame] | 432 | |
Bin Meng | 2bdcd05 | 2020-06-25 18:16:08 -0700 | [diff] [blame] | 433 | config OF_BOARD_FIXUP |
Sean Anderson | 584a5ee | 2020-09-05 09:22:11 -0400 | [diff] [blame] | 434 | default y if OF_SEPARATE && RISCV_SMODE |
Bin Meng | 2bdcd05 | 2020-06-25 18:16:08 -0700 | [diff] [blame] | 435 | |
Bin Meng | ce64bd3 | 2021-05-13 16:46:18 +0800 | [diff] [blame] | 436 | menu "Use assembly optimized implementation of memory routines" |
| 437 | |
Heinrich Schuchardt | 23caf66 | 2021-03-27 12:37:04 +0100 | [diff] [blame] | 438 | config USE_ARCH_MEMCPY |
| 439 | bool "Use an assembly optimized implementation of memcpy" |
| 440 | default y |
| 441 | help |
| 442 | Enable the generation of an optimized version of memcpy. |
| 443 | Such an implementation may be faster under some conditions |
| 444 | but may increase the binary size. |
| 445 | |
| 446 | config SPL_USE_ARCH_MEMCPY |
| 447 | bool "Use an assembly optimized implementation of memcpy for SPL" |
| 448 | default y if USE_ARCH_MEMCPY |
| 449 | depends on SPL |
| 450 | help |
| 451 | Enable the generation of an optimized version of memcpy. |
| 452 | Such an implementation may be faster under some conditions |
| 453 | but may increase the binary size. |
| 454 | |
| 455 | config TPL_USE_ARCH_MEMCPY |
| 456 | bool "Use an assembly optimized implementation of memcpy for TPL" |
| 457 | default y if USE_ARCH_MEMCPY |
| 458 | depends on TPL |
| 459 | help |
| 460 | Enable the generation of an optimized version of memcpy. |
| 461 | Such an implementation may be faster under some conditions |
| 462 | but may increase the binary size. |
| 463 | |
| 464 | config USE_ARCH_MEMMOVE |
| 465 | bool "Use an assembly optimized implementation of memmove" |
| 466 | default y |
| 467 | help |
| 468 | Enable the generation of an optimized version of memmove. |
| 469 | Such an implementation may be faster under some conditions |
| 470 | but may increase the binary size. |
| 471 | |
| 472 | config SPL_USE_ARCH_MEMMOVE |
| 473 | bool "Use an assembly optimized implementation of memmove for SPL" |
| 474 | default y if USE_ARCH_MEMCPY |
| 475 | depends on SPL |
| 476 | help |
| 477 | Enable the generation of an optimized version of memmove. |
| 478 | Such an implementation may be faster under some conditions |
| 479 | but may increase the binary size. |
| 480 | |
| 481 | config TPL_USE_ARCH_MEMMOVE |
| 482 | bool "Use an assembly optimized implementation of memmove for TPL" |
| 483 | default y if USE_ARCH_MEMCPY |
| 484 | depends on TPL |
| 485 | help |
| 486 | Enable the generation of an optimized version of memmove. |
| 487 | Such an implementation may be faster under some conditions |
| 488 | but may increase the binary size. |
| 489 | |
| 490 | config USE_ARCH_MEMSET |
| 491 | bool "Use an assembly optimized implementation of memset" |
| 492 | default y |
| 493 | help |
| 494 | Enable the generation of an optimized version of memset. |
| 495 | Such an implementation may be faster under some conditions |
| 496 | but may increase the binary size. |
| 497 | |
| 498 | config SPL_USE_ARCH_MEMSET |
| 499 | bool "Use an assembly optimized implementation of memset for SPL" |
| 500 | default y if USE_ARCH_MEMSET |
| 501 | depends on SPL |
| 502 | help |
| 503 | Enable the generation of an optimized version of memset. |
| 504 | Such an implementation may be faster under some conditions |
| 505 | but may increase the binary size. |
| 506 | |
| 507 | config TPL_USE_ARCH_MEMSET |
| 508 | bool "Use an assembly optimized implementation of memset for TPL" |
| 509 | default y if USE_ARCH_MEMSET |
| 510 | depends on TPL |
| 511 | help |
| 512 | Enable the generation of an optimized version of memset. |
| 513 | Such an implementation may be faster under some conditions |
| 514 | but may increase the binary size. |
| 515 | |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 516 | endmenu |
Bin Meng | ce64bd3 | 2021-05-13 16:46:18 +0800 | [diff] [blame] | 517 | |
Randolph | b1bc7a7 | 2023-10-12 14:35:04 +0800 | [diff] [blame] | 518 | config SPL_LOAD_FIT_OPENSBI_OS_BOOT |
| 519 | bool "Enable SPL (OpenSBI OS boot mode) applying linux from FIT" |
| 520 | depends on SPL_LOAD_FIT |
| 521 | help |
| 522 | Use fw_dynamic from the FIT image, and u-boot SPL will invoke it directly. |
| 523 | This is a shortcut boot flow, from u-boot SPL -> OpenSBI -> u-boot proper |
| 524 | -> linux to u-boot SPL -> OpenSBI -> linux. |
| 525 | |
Bin Meng | ce64bd3 | 2021-05-13 16:46:18 +0800 | [diff] [blame] | 526 | endmenu |