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 | |
Rick Chen | b66af37 | 2018-05-29 09:54:40 +0800 | [diff] [blame] | 11 | config TARGET_AX25_AE350 |
| 12 | bool "Support ax25-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 | |
Sean Anderson | edc32ab | 2020-06-24 06:41:25 -0400 | [diff] [blame] | 27 | config TARGET_SIPEED_MAIX |
| 28 | bool "Support Sipeed Maix Board" |
Tom Rini | 3ef67ae | 2021-08-26 11:47:59 -0400 | [diff] [blame^] | 29 | select SYS_CACHE_SHIFT_6 |
Sean Anderson | edc32ab | 2020-06-24 06:41:25 -0400 | [diff] [blame] | 30 | |
Tianrui Wei | 2ef594d | 2021-07-01 12:54:19 +0800 | [diff] [blame] | 31 | config TARGET_OPENPITON_RISCV64 |
| 32 | bool "Support RISC-V cores on OpenPiton SoC" |
| 33 | |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 34 | endchoice |
| 35 | |
Trevor Woerner | ba64b8b | 2019-05-03 09:40:59 -0400 | [diff] [blame] | 36 | config SYS_ICACHE_OFF |
| 37 | bool "Do not enable icache" |
| 38 | default n |
| 39 | help |
| 40 | Do not enable instruction cache in U-Boot. |
| 41 | |
Trevor Woerner | 43ec7e0 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 42 | config SPL_SYS_ICACHE_OFF |
| 43 | bool "Do not enable icache in SPL" |
| 44 | depends on SPL |
| 45 | default SYS_ICACHE_OFF |
| 46 | help |
| 47 | Do not enable instruction cache in SPL. |
| 48 | |
Trevor Woerner | ba64b8b | 2019-05-03 09:40:59 -0400 | [diff] [blame] | 49 | config SYS_DCACHE_OFF |
| 50 | bool "Do not enable dcache" |
| 51 | default n |
| 52 | help |
| 53 | Do not enable data cache in U-Boot. |
| 54 | |
Trevor Woerner | 43ec7e0 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 55 | config SPL_SYS_DCACHE_OFF |
| 56 | bool "Do not enable dcache in SPL" |
| 57 | depends on SPL |
| 58 | default SYS_DCACHE_OFF |
| 59 | help |
| 60 | Do not enable data cache in SPL. |
| 61 | |
Rick Chen | 842d580 | 2018-11-07 09:34:06 +0800 | [diff] [blame] | 62 | # board-specific options below |
Rick Chen | b66af37 | 2018-05-29 09:54:40 +0800 | [diff] [blame] | 63 | source "board/AndesTech/ax25-ae350/Kconfig" |
Bin Meng | 8a8694d | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 64 | source "board/emulation/qemu-riscv/Kconfig" |
Padmarao Begari | 4216f34 | 2019-05-28 15:47:51 +0530 | [diff] [blame] | 65 | source "board/microchip/mpfs_icicle/Kconfig" |
Bin Meng | e9ead4a | 2021-03-17 11:10:58 +0800 | [diff] [blame] | 66 | source "board/sifive/unleashed/Kconfig" |
Green Wan | 2e5da52 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 67 | source "board/sifive/unmatched/Kconfig" |
Tianrui Wei | 2ef594d | 2021-07-01 12:54:19 +0800 | [diff] [blame] | 68 | source "board/openpiton/riscv64/Kconfig" |
Sean Anderson | edc32ab | 2020-06-24 06:41:25 -0400 | [diff] [blame] | 69 | source "board/sipeed/maix/Kconfig" |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 70 | |
Rick Chen | 842d580 | 2018-11-07 09:34:06 +0800 | [diff] [blame] | 71 | # platform-specific options below |
| 72 | source "arch/riscv/cpu/ax25/Kconfig" |
Pragnesh Patel | 25269c0 | 2020-05-29 11:33:34 +0530 | [diff] [blame] | 73 | source "arch/riscv/cpu/fu540/Kconfig" |
Green Wan | 7f33743 | 2021-05-27 06:52:07 -0700 | [diff] [blame] | 74 | source "arch/riscv/cpu/fu740/Kconfig" |
Anup Patel | 1240cd6 | 2019-02-25 08:14:10 +0000 | [diff] [blame] | 75 | source "arch/riscv/cpu/generic/Kconfig" |
Rick Chen | 842d580 | 2018-11-07 09:34:06 +0800 | [diff] [blame] | 76 | |
| 77 | # architecture-specific options below |
| 78 | |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 79 | choice |
Lukas Auer | 54ebfe7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 80 | prompt "Base ISA" |
| 81 | default ARCH_RV32I |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 82 | |
Lukas Auer | 54ebfe7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 83 | config ARCH_RV32I |
| 84 | bool "RV32I" |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 85 | select 32BIT |
| 86 | help |
Lukas Auer | 54ebfe7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 87 | Choose this option to target the RV32I base integer instruction set. |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 88 | |
Lukas Auer | 54ebfe7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 89 | config ARCH_RV64I |
| 90 | bool "RV64I" |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 91 | select 64BIT |
Lukas Auer | 7ab1df0 | 2018-11-22 11:26:13 +0100 | [diff] [blame] | 92 | select PHYS_64BIT |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 93 | help |
Lukas Auer | 54ebfe7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 94 | Choose this option to target the RV64I base integer instruction set. |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 95 | |
| 96 | endchoice |
| 97 | |
Lukas Auer | ecc5d83 | 2018-12-12 06:12:23 -0800 | [diff] [blame] | 98 | choice |
| 99 | prompt "Code Model" |
| 100 | default CMODEL_MEDLOW |
| 101 | |
| 102 | config CMODEL_MEDLOW |
| 103 | bool "medium low code model" |
| 104 | help |
| 105 | U-Boot and its statically defined symbols must lie within a single 2 GiB |
| 106 | address range and must lie between absolute addresses -2 GiB and +2 GiB. |
| 107 | |
| 108 | config CMODEL_MEDANY |
| 109 | bool "medium any code model" |
| 110 | help |
| 111 | U-Boot and its statically defined symbols must be within any single 2 GiB |
| 112 | address range. |
| 113 | |
| 114 | endchoice |
| 115 | |
Anup Patel | 2788177 | 2018-12-12 06:12:29 -0800 | [diff] [blame] | 116 | choice |
| 117 | prompt "Run Mode" |
| 118 | default RISCV_MMODE |
| 119 | |
| 120 | config RISCV_MMODE |
| 121 | bool "Machine" |
| 122 | help |
| 123 | Choose this option to build U-Boot for RISC-V M-Mode. |
| 124 | |
| 125 | config RISCV_SMODE |
| 126 | bool "Supervisor" |
| 127 | help |
| 128 | Choose this option to build U-Boot for RISC-V S-Mode. |
| 129 | |
| 130 | endchoice |
| 131 | |
Lukas Auer | 6134659 | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 132 | choice |
| 133 | prompt "SPL Run Mode" |
| 134 | default SPL_RISCV_MMODE |
| 135 | depends on SPL |
| 136 | |
| 137 | config SPL_RISCV_MMODE |
| 138 | bool "Machine" |
| 139 | help |
| 140 | Choose this option to build U-Boot SPL for RISC-V M-Mode. |
| 141 | |
| 142 | config SPL_RISCV_SMODE |
| 143 | bool "Supervisor" |
| 144 | help |
| 145 | Choose this option to build U-Boot SPL for RISC-V S-Mode. |
| 146 | |
| 147 | endchoice |
| 148 | |
Lukas Auer | 002012f | 2018-11-22 11:26:14 +0100 | [diff] [blame] | 149 | config RISCV_ISA_C |
| 150 | bool "Emit compressed instructions" |
| 151 | default y |
| 152 | help |
| 153 | Adds "C" to the ISA subsets that the toolchain is allowed to emit |
| 154 | when building U-Boot, which results in compressed instructions in the |
| 155 | U-Boot binary. |
| 156 | |
| 157 | config RISCV_ISA_A |
| 158 | def_bool y |
| 159 | |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 160 | config 32BIT |
| 161 | bool |
| 162 | |
| 163 | config 64BIT |
| 164 | bool |
| 165 | |
Padmarao Begari | a235d43 | 2021-01-15 08:20:35 +0530 | [diff] [blame] | 166 | config DMA_ADDR_T_64BIT |
| 167 | bool |
| 168 | default y if 64BIT |
| 169 | |
Bin Meng | b6ee5e1 | 2018-12-12 06:12:30 -0800 | [diff] [blame] | 170 | config SIFIVE_CLINT |
| 171 | bool |
Bin Meng | 614b1d8 | 2021-05-11 20:04:12 +0800 | [diff] [blame] | 172 | depends on RISCV_MMODE |
| 173 | help |
| 174 | The SiFive CLINT block holds memory-mapped control and status registers |
| 175 | associated with software and timer interrupts. |
| 176 | |
| 177 | config SPL_SIFIVE_CLINT |
| 178 | bool |
| 179 | depends on SPL_RISCV_MMODE |
Bin Meng | b6ee5e1 | 2018-12-12 06:12:30 -0800 | [diff] [blame] | 180 | help |
| 181 | The SiFive CLINT block holds memory-mapped control and status registers |
| 182 | associated with software and timer interrupts. |
| 183 | |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 184 | config ANDES_PLIC |
| 185 | bool |
Lukas Auer | 6134659 | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 186 | depends on RISCV_MMODE || SPL_RISCV_MMODE |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 187 | select REGMAP |
| 188 | select SYSCON |
Lukas Auer | 6134659 | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 189 | select SPL_REGMAP if SPL |
| 190 | select SPL_SYSCON if SPL |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 191 | help |
| 192 | The Andes PLIC block holds memory-mapped claim and pending registers |
| 193 | associated with software interrupt. |
| 194 | |
Bin Meng | dada2d1 | 2018-12-12 06:12:33 -0800 | [diff] [blame] | 195 | config SYS_MALLOC_F_LEN |
| 196 | default 0x1000 |
| 197 | |
Lukas Auer | 83d573d | 2019-03-17 19:28:32 +0100 | [diff] [blame] | 198 | config SMP |
| 199 | bool "Symmetric Multi-Processing" |
Bin Meng | 4997522 | 2020-04-16 08:09:31 -0700 | [diff] [blame] | 200 | depends on SBI_V01 || !RISCV_SMODE |
Lukas Auer | 83d573d | 2019-03-17 19:28:32 +0100 | [diff] [blame] | 201 | help |
| 202 | This enables support for systems with more than one CPU. If |
| 203 | you say N here, U-Boot will run on single and multiprocessor |
| 204 | machines, but will use only one CPU of a multiprocessor |
| 205 | machine. If you say Y here, U-Boot will run on many, but not |
| 206 | all, single processor machines. |
| 207 | |
Bin Meng | b161f90 | 2020-04-16 08:09:30 -0700 | [diff] [blame] | 208 | config SPL_SMP |
| 209 | bool "Symmetric Multi-Processing in SPL" |
| 210 | depends on SPL && SPL_RISCV_MMODE |
| 211 | default y |
| 212 | help |
| 213 | This enables support for systems with more than one CPU in SPL. |
| 214 | If you say N here, U-Boot SPL will run on single and multiprocessor |
| 215 | machines, but will use only one CPU of a multiprocessor |
| 216 | machine. If you say Y here, U-Boot SPL will run on many, but not |
| 217 | all, single processor machines. |
| 218 | |
Lukas Auer | 83d573d | 2019-03-17 19:28:32 +0100 | [diff] [blame] | 219 | config NR_CPUS |
| 220 | int "Maximum number of CPUs (2-32)" |
| 221 | range 2 32 |
Bin Meng | b161f90 | 2020-04-16 08:09:30 -0700 | [diff] [blame] | 222 | depends on SMP || SPL_SMP |
Lukas Auer | 83d573d | 2019-03-17 19:28:32 +0100 | [diff] [blame] | 223 | default 8 |
| 224 | help |
| 225 | On multiprocessor machines, U-Boot sets up a stack for each CPU. |
| 226 | Stack memory is pre-allocated. U-Boot must therefore know the |
| 227 | maximum number of CPUs that may be present. |
| 228 | |
Bin Meng | ee3bcd0 | 2020-03-09 19:35:28 -0700 | [diff] [blame] | 229 | config SBI |
| 230 | bool |
| 231 | default y if RISCV_SMODE || SPL_RISCV_SMODE |
| 232 | |
Bin Meng | a75325e | 2020-04-16 08:09:32 -0700 | [diff] [blame] | 233 | choice |
| 234 | prompt "SBI support" |
Bin Meng | 3aecc4b | 2020-04-16 08:09:33 -0700 | [diff] [blame] | 235 | default SBI_V02 |
Bin Meng | a75325e | 2020-04-16 08:09:32 -0700 | [diff] [blame] | 236 | |
Bin Meng | 887d809 | 2020-03-09 19:35:30 -0700 | [diff] [blame] | 237 | config SBI_V01 |
| 238 | bool "SBI v0.1 support" |
Bin Meng | 887d809 | 2020-03-09 19:35:30 -0700 | [diff] [blame] | 239 | depends on SBI |
| 240 | help |
| 241 | This config allows kernel to use SBI v0.1 APIs. This will be |
| 242 | deprecated in future once legacy M-mode software are no longer in use. |
| 243 | |
Bin Meng | a75325e | 2020-04-16 08:09:32 -0700 | [diff] [blame] | 244 | config SBI_V02 |
| 245 | bool "SBI v0.2 support" |
| 246 | depends on SBI |
| 247 | help |
| 248 | This config allows kernel to use SBI v0.2 APIs. SBI v0.2 is more |
| 249 | scalable and extendable to handle future needs for RISC-V supervisor |
| 250 | interfaces. For example, with SBI v0.2 HSM extension, only a single |
| 251 | hart need to boot and enter operating system. The booting hart can |
| 252 | bring up secondary harts one by one afterwards. |
| 253 | |
| 254 | Choose this option if OpenSBI v0.7 or above release is used together |
| 255 | with U-Boot. |
| 256 | |
| 257 | endchoice |
| 258 | |
Lukas Auer | e79178b | 2019-03-17 19:28:34 +0100 | [diff] [blame] | 259 | config SBI_IPI |
| 260 | bool |
Bin Meng | ee3bcd0 | 2020-03-09 19:35:28 -0700 | [diff] [blame] | 261 | depends on SBI |
Lukas Auer | 6134659 | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 262 | default y if RISCV_SMODE || SPL_RISCV_SMODE |
Lukas Auer | e79178b | 2019-03-17 19:28:34 +0100 | [diff] [blame] | 263 | depends on SMP |
| 264 | |
Rick Chen | e5e6c36 | 2019-04-30 13:49:33 +0800 | [diff] [blame] | 265 | config XIP |
| 266 | bool "XIP mode" |
| 267 | help |
| 268 | XIP (eXecute In Place) is a method for executing code directly |
| 269 | from a NOR flash memory without copying the code to ram. |
| 270 | Say yes here if U-Boot boots from flash directly. |
| 271 | |
Sean Anderson | e8b46a1 | 2019-12-25 00:27:44 -0500 | [diff] [blame] | 272 | config SHOW_REGS |
| 273 | bool "Show registers on unhandled exception" |
| 274 | |
Sean Anderson | 7f4b666 | 2020-06-24 06:41:19 -0400 | [diff] [blame] | 275 | config RISCV_PRIV_1_9 |
| 276 | bool "Use version 1.9 of the RISC-V priviledged specification" |
| 277 | help |
| 278 | Older versions of the RISC-V priviledged specification had |
| 279 | separate counter enable CSRs for each privilege mode. Writing |
| 280 | to the unified mcounteren CSR on a processor implementing the |
| 281 | old specification will result in an illegal instruction |
| 282 | exception. In addition to counter CSR changes, the way virtual |
| 283 | memory is configured was also changed. |
| 284 | |
Lukas Auer | a359665 | 2019-03-17 19:28:37 +0100 | [diff] [blame] | 285 | config STACK_SIZE_SHIFT |
| 286 | int |
Lukas Auer | 0381370 | 2019-10-20 20:53:47 +0200 | [diff] [blame] | 287 | default 14 |
Lukas Auer | a359665 | 2019-03-17 19:28:37 +0100 | [diff] [blame] | 288 | |
Bin Meng | 2bdcd05 | 2020-06-25 18:16:08 -0700 | [diff] [blame] | 289 | config OF_BOARD_FIXUP |
Sean Anderson | 584a5ee | 2020-09-05 09:22:11 -0400 | [diff] [blame] | 290 | default y if OF_SEPARATE && RISCV_SMODE |
Bin Meng | 2bdcd05 | 2020-06-25 18:16:08 -0700 | [diff] [blame] | 291 | |
Bin Meng | ce64bd3 | 2021-05-13 16:46:18 +0800 | [diff] [blame] | 292 | menu "Use assembly optimized implementation of memory routines" |
| 293 | |
Heinrich Schuchardt | 23caf66 | 2021-03-27 12:37:04 +0100 | [diff] [blame] | 294 | config USE_ARCH_MEMCPY |
| 295 | bool "Use an assembly optimized implementation of memcpy" |
| 296 | default y |
| 297 | help |
| 298 | Enable the generation of an optimized version of memcpy. |
| 299 | Such an implementation may be faster under some conditions |
| 300 | but may increase the binary size. |
| 301 | |
| 302 | config SPL_USE_ARCH_MEMCPY |
| 303 | bool "Use an assembly optimized implementation of memcpy for SPL" |
| 304 | default y if USE_ARCH_MEMCPY |
| 305 | depends on SPL |
| 306 | help |
| 307 | Enable the generation of an optimized version of memcpy. |
| 308 | Such an implementation may be faster under some conditions |
| 309 | but may increase the binary size. |
| 310 | |
| 311 | config TPL_USE_ARCH_MEMCPY |
| 312 | bool "Use an assembly optimized implementation of memcpy for TPL" |
| 313 | default y if USE_ARCH_MEMCPY |
| 314 | depends on TPL |
| 315 | help |
| 316 | Enable the generation of an optimized version of memcpy. |
| 317 | Such an implementation may be faster under some conditions |
| 318 | but may increase the binary size. |
| 319 | |
| 320 | config USE_ARCH_MEMMOVE |
| 321 | bool "Use an assembly optimized implementation of memmove" |
| 322 | default y |
| 323 | help |
| 324 | Enable the generation of an optimized version of memmove. |
| 325 | Such an implementation may be faster under some conditions |
| 326 | but may increase the binary size. |
| 327 | |
| 328 | config SPL_USE_ARCH_MEMMOVE |
| 329 | bool "Use an assembly optimized implementation of memmove for SPL" |
| 330 | default y if USE_ARCH_MEMCPY |
| 331 | depends on SPL |
| 332 | help |
| 333 | Enable the generation of an optimized version of memmove. |
| 334 | Such an implementation may be faster under some conditions |
| 335 | but may increase the binary size. |
| 336 | |
| 337 | config TPL_USE_ARCH_MEMMOVE |
| 338 | bool "Use an assembly optimized implementation of memmove for TPL" |
| 339 | default y if USE_ARCH_MEMCPY |
| 340 | depends on TPL |
| 341 | help |
| 342 | Enable the generation of an optimized version of memmove. |
| 343 | Such an implementation may be faster under some conditions |
| 344 | but may increase the binary size. |
| 345 | |
| 346 | config USE_ARCH_MEMSET |
| 347 | bool "Use an assembly optimized implementation of memset" |
| 348 | default y |
| 349 | help |
| 350 | Enable the generation of an optimized version of memset. |
| 351 | Such an implementation may be faster under some conditions |
| 352 | but may increase the binary size. |
| 353 | |
| 354 | config SPL_USE_ARCH_MEMSET |
| 355 | bool "Use an assembly optimized implementation of memset for SPL" |
| 356 | default y if USE_ARCH_MEMSET |
| 357 | depends on SPL |
| 358 | help |
| 359 | Enable the generation of an optimized version of memset. |
| 360 | Such an implementation may be faster under some conditions |
| 361 | but may increase the binary size. |
| 362 | |
| 363 | config TPL_USE_ARCH_MEMSET |
| 364 | bool "Use an assembly optimized implementation of memset for TPL" |
| 365 | default y if USE_ARCH_MEMSET |
| 366 | depends on TPL |
| 367 | help |
| 368 | Enable the generation of an optimized version of memset. |
| 369 | Such an implementation may be faster under some conditions |
| 370 | but may increase the binary size. |
| 371 | |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 372 | endmenu |
Bin Meng | ce64bd3 | 2021-05-13 16:46:18 +0800 | [diff] [blame] | 373 | |
| 374 | endmenu |