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 | |
Anup Patel | 7a167f2 | 2019-02-25 08:15:19 +0000 | [diff] [blame] | 20 | config TARGET_SIFIVE_FU540 |
| 21 | bool "Support SiFive FU540 Board" |
| 22 | |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 23 | endchoice |
| 24 | |
Trevor Woerner | ba64b8b | 2019-05-03 09:40:59 -0400 | [diff] [blame] | 25 | config SYS_ICACHE_OFF |
| 26 | bool "Do not enable icache" |
| 27 | default n |
| 28 | help |
| 29 | Do not enable instruction cache in U-Boot. |
| 30 | |
Trevor Woerner | 43ec7e0 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 31 | config SPL_SYS_ICACHE_OFF |
| 32 | bool "Do not enable icache in SPL" |
| 33 | depends on SPL |
| 34 | default SYS_ICACHE_OFF |
| 35 | help |
| 36 | Do not enable instruction cache in SPL. |
| 37 | |
Trevor Woerner | ba64b8b | 2019-05-03 09:40:59 -0400 | [diff] [blame] | 38 | config SYS_DCACHE_OFF |
| 39 | bool "Do not enable dcache" |
| 40 | default n |
| 41 | help |
| 42 | Do not enable data cache in U-Boot. |
| 43 | |
Trevor Woerner | 43ec7e0 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 44 | config SPL_SYS_DCACHE_OFF |
| 45 | bool "Do not enable dcache in SPL" |
| 46 | depends on SPL |
| 47 | default SYS_DCACHE_OFF |
| 48 | help |
| 49 | Do not enable data cache in SPL. |
| 50 | |
Rick Chen | 842d580 | 2018-11-07 09:34:06 +0800 | [diff] [blame] | 51 | # board-specific options below |
Rick Chen | b66af37 | 2018-05-29 09:54:40 +0800 | [diff] [blame] | 52 | source "board/AndesTech/ax25-ae350/Kconfig" |
Bin Meng | 8a8694d | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 53 | source "board/emulation/qemu-riscv/Kconfig" |
Padmarao Begari | 4216f34 | 2019-05-28 15:47:51 +0530 | [diff] [blame] | 54 | source "board/microchip/mpfs_icicle/Kconfig" |
Anup Patel | 7a167f2 | 2019-02-25 08:15:19 +0000 | [diff] [blame] | 55 | source "board/sifive/fu540/Kconfig" |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 56 | |
Rick Chen | 842d580 | 2018-11-07 09:34:06 +0800 | [diff] [blame] | 57 | # platform-specific options below |
| 58 | source "arch/riscv/cpu/ax25/Kconfig" |
Pragnesh Patel | 25269c0 | 2020-05-29 11:33:34 +0530 | [diff] [blame] | 59 | source "arch/riscv/cpu/fu540/Kconfig" |
Anup Patel | 1240cd6 | 2019-02-25 08:14:10 +0000 | [diff] [blame] | 60 | source "arch/riscv/cpu/generic/Kconfig" |
Rick Chen | 842d580 | 2018-11-07 09:34:06 +0800 | [diff] [blame] | 61 | |
| 62 | # architecture-specific options below |
| 63 | |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 64 | choice |
Lukas Auer | 54ebfe7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 65 | prompt "Base ISA" |
| 66 | default ARCH_RV32I |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 67 | |
Lukas Auer | 54ebfe7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 68 | config ARCH_RV32I |
| 69 | bool "RV32I" |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 70 | select 32BIT |
| 71 | help |
Lukas Auer | 54ebfe7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 72 | Choose this option to target the RV32I base integer instruction set. |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 73 | |
Lukas Auer | 54ebfe7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 74 | config ARCH_RV64I |
| 75 | bool "RV64I" |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 76 | select 64BIT |
Lukas Auer | 7ab1df0 | 2018-11-22 11:26:13 +0100 | [diff] [blame] | 77 | select PHYS_64BIT |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 78 | help |
Lukas Auer | 54ebfe7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 79 | Choose this option to target the RV64I base integer instruction set. |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 80 | |
| 81 | endchoice |
| 82 | |
Lukas Auer | ecc5d83 | 2018-12-12 06:12:23 -0800 | [diff] [blame] | 83 | choice |
| 84 | prompt "Code Model" |
| 85 | default CMODEL_MEDLOW |
| 86 | |
| 87 | config CMODEL_MEDLOW |
| 88 | bool "medium low code model" |
| 89 | help |
| 90 | U-Boot and its statically defined symbols must lie within a single 2 GiB |
| 91 | address range and must lie between absolute addresses -2 GiB and +2 GiB. |
| 92 | |
| 93 | config CMODEL_MEDANY |
| 94 | bool "medium any code model" |
| 95 | help |
| 96 | U-Boot and its statically defined symbols must be within any single 2 GiB |
| 97 | address range. |
| 98 | |
| 99 | endchoice |
| 100 | |
Anup Patel | 2788177 | 2018-12-12 06:12:29 -0800 | [diff] [blame] | 101 | choice |
| 102 | prompt "Run Mode" |
| 103 | default RISCV_MMODE |
| 104 | |
| 105 | config RISCV_MMODE |
| 106 | bool "Machine" |
| 107 | help |
| 108 | Choose this option to build U-Boot for RISC-V M-Mode. |
| 109 | |
| 110 | config RISCV_SMODE |
| 111 | bool "Supervisor" |
| 112 | help |
| 113 | Choose this option to build U-Boot for RISC-V S-Mode. |
| 114 | |
| 115 | endchoice |
| 116 | |
Lukas Auer | 6134659 | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 117 | choice |
| 118 | prompt "SPL Run Mode" |
| 119 | default SPL_RISCV_MMODE |
| 120 | depends on SPL |
| 121 | |
| 122 | config SPL_RISCV_MMODE |
| 123 | bool "Machine" |
| 124 | help |
| 125 | Choose this option to build U-Boot SPL for RISC-V M-Mode. |
| 126 | |
| 127 | config SPL_RISCV_SMODE |
| 128 | bool "Supervisor" |
| 129 | help |
| 130 | Choose this option to build U-Boot SPL for RISC-V S-Mode. |
| 131 | |
| 132 | endchoice |
| 133 | |
Lukas Auer | 002012f | 2018-11-22 11:26:14 +0100 | [diff] [blame] | 134 | config RISCV_ISA_C |
| 135 | bool "Emit compressed instructions" |
| 136 | default y |
| 137 | help |
| 138 | Adds "C" to the ISA subsets that the toolchain is allowed to emit |
| 139 | when building U-Boot, which results in compressed instructions in the |
| 140 | U-Boot binary. |
| 141 | |
| 142 | config RISCV_ISA_A |
| 143 | def_bool y |
| 144 | |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 145 | config 32BIT |
| 146 | bool |
| 147 | |
| 148 | config 64BIT |
| 149 | bool |
| 150 | |
Bin Meng | b6ee5e1 | 2018-12-12 06:12:30 -0800 | [diff] [blame] | 151 | config SIFIVE_CLINT |
| 152 | bool |
Lukas Auer | 6134659 | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 153 | depends on RISCV_MMODE || SPL_RISCV_MMODE |
Bin Meng | b6ee5e1 | 2018-12-12 06:12:30 -0800 | [diff] [blame] | 154 | select REGMAP |
| 155 | select SYSCON |
Lukas Auer | 6134659 | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 156 | select SPL_REGMAP if SPL |
| 157 | select SPL_SYSCON if SPL |
Bin Meng | b6ee5e1 | 2018-12-12 06:12:30 -0800 | [diff] [blame] | 158 | help |
| 159 | The SiFive CLINT block holds memory-mapped control and status registers |
| 160 | associated with software and timer interrupts. |
| 161 | |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 162 | config ANDES_PLIC |
| 163 | bool |
Lukas Auer | 6134659 | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 164 | depends on RISCV_MMODE || SPL_RISCV_MMODE |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 165 | select REGMAP |
| 166 | select SYSCON |
Lukas Auer | 6134659 | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 167 | select SPL_REGMAP if SPL |
| 168 | select SPL_SYSCON if SPL |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 169 | help |
| 170 | The Andes PLIC block holds memory-mapped claim and pending registers |
| 171 | associated with software interrupt. |
| 172 | |
Rick Chen | 7376677 | 2019-04-02 15:56:40 +0800 | [diff] [blame] | 173 | config ANDES_PLMT |
| 174 | bool |
Lukas Auer | 6134659 | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 175 | depends on RISCV_MMODE || SPL_RISCV_MMODE |
Rick Chen | 7376677 | 2019-04-02 15:56:40 +0800 | [diff] [blame] | 176 | select REGMAP |
| 177 | select SYSCON |
Lukas Auer | 6134659 | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 178 | select SPL_REGMAP if SPL |
| 179 | select SPL_SYSCON if SPL |
Rick Chen | 7376677 | 2019-04-02 15:56:40 +0800 | [diff] [blame] | 180 | help |
| 181 | The Andes PLMT block holds memory-mapped mtime register |
| 182 | associated with timer tick. |
| 183 | |
Anup Patel | f3c8479 | 2018-12-12 06:12:31 -0800 | [diff] [blame] | 184 | config RISCV_RDTIME |
| 185 | bool |
Lukas Auer | 6134659 | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 186 | default y if RISCV_SMODE || SPL_RISCV_SMODE |
Anup Patel | f3c8479 | 2018-12-12 06:12:31 -0800 | [diff] [blame] | 187 | help |
| 188 | The provides the riscv_get_time() API that is implemented using the |
| 189 | standard rdtime instruction. This is the case for S-mode U-Boot, and |
| 190 | is useful for processors that support rdtime in M-mode too. |
| 191 | |
Bin Meng | dada2d1 | 2018-12-12 06:12:33 -0800 | [diff] [blame] | 192 | config SYS_MALLOC_F_LEN |
| 193 | default 0x1000 |
| 194 | |
Lukas Auer | 83d573d | 2019-03-17 19:28:32 +0100 | [diff] [blame] | 195 | config SMP |
| 196 | bool "Symmetric Multi-Processing" |
Bin Meng | 4997522 | 2020-04-16 08:09:31 -0700 | [diff] [blame] | 197 | depends on SBI_V01 || !RISCV_SMODE |
Lukas Auer | 83d573d | 2019-03-17 19:28:32 +0100 | [diff] [blame] | 198 | help |
| 199 | This enables support for systems with more than one CPU. If |
| 200 | you say N here, U-Boot will run on single and multiprocessor |
| 201 | machines, but will use only one CPU of a multiprocessor |
| 202 | machine. If you say Y here, U-Boot will run on many, but not |
| 203 | all, single processor machines. |
| 204 | |
Bin Meng | b161f90 | 2020-04-16 08:09:30 -0700 | [diff] [blame] | 205 | config SPL_SMP |
| 206 | bool "Symmetric Multi-Processing in SPL" |
| 207 | depends on SPL && SPL_RISCV_MMODE |
| 208 | default y |
| 209 | help |
| 210 | This enables support for systems with more than one CPU in SPL. |
| 211 | If you say N here, U-Boot SPL will run on single and multiprocessor |
| 212 | machines, but will use only one CPU of a multiprocessor |
| 213 | machine. If you say Y here, U-Boot SPL will run on many, but not |
| 214 | all, single processor machines. |
| 215 | |
Lukas Auer | 83d573d | 2019-03-17 19:28:32 +0100 | [diff] [blame] | 216 | config NR_CPUS |
| 217 | int "Maximum number of CPUs (2-32)" |
| 218 | range 2 32 |
Bin Meng | b161f90 | 2020-04-16 08:09:30 -0700 | [diff] [blame] | 219 | depends on SMP || SPL_SMP |
Lukas Auer | 83d573d | 2019-03-17 19:28:32 +0100 | [diff] [blame] | 220 | default 8 |
| 221 | help |
| 222 | On multiprocessor machines, U-Boot sets up a stack for each CPU. |
| 223 | Stack memory is pre-allocated. U-Boot must therefore know the |
| 224 | maximum number of CPUs that may be present. |
| 225 | |
Bin Meng | ee3bcd0 | 2020-03-09 19:35:28 -0700 | [diff] [blame] | 226 | config SBI |
| 227 | bool |
| 228 | default y if RISCV_SMODE || SPL_RISCV_SMODE |
| 229 | |
Bin Meng | a75325e | 2020-04-16 08:09:32 -0700 | [diff] [blame] | 230 | choice |
| 231 | prompt "SBI support" |
Bin Meng | 3aecc4b | 2020-04-16 08:09:33 -0700 | [diff] [blame] | 232 | default SBI_V02 |
Bin Meng | a75325e | 2020-04-16 08:09:32 -0700 | [diff] [blame] | 233 | |
Bin Meng | 887d809 | 2020-03-09 19:35:30 -0700 | [diff] [blame] | 234 | config SBI_V01 |
| 235 | bool "SBI v0.1 support" |
Bin Meng | 887d809 | 2020-03-09 19:35:30 -0700 | [diff] [blame] | 236 | depends on SBI |
| 237 | help |
| 238 | This config allows kernel to use SBI v0.1 APIs. This will be |
| 239 | deprecated in future once legacy M-mode software are no longer in use. |
| 240 | |
Bin Meng | a75325e | 2020-04-16 08:09:32 -0700 | [diff] [blame] | 241 | config SBI_V02 |
| 242 | bool "SBI v0.2 support" |
| 243 | depends on SBI |
| 244 | help |
| 245 | This config allows kernel to use SBI v0.2 APIs. SBI v0.2 is more |
| 246 | scalable and extendable to handle future needs for RISC-V supervisor |
| 247 | interfaces. For example, with SBI v0.2 HSM extension, only a single |
| 248 | hart need to boot and enter operating system. The booting hart can |
| 249 | bring up secondary harts one by one afterwards. |
| 250 | |
| 251 | Choose this option if OpenSBI v0.7 or above release is used together |
| 252 | with U-Boot. |
| 253 | |
| 254 | endchoice |
| 255 | |
Lukas Auer | e79178b | 2019-03-17 19:28:34 +0100 | [diff] [blame] | 256 | config SBI_IPI |
| 257 | bool |
Bin Meng | ee3bcd0 | 2020-03-09 19:35:28 -0700 | [diff] [blame] | 258 | depends on SBI |
Lukas Auer | 6134659 | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 259 | default y if RISCV_SMODE || SPL_RISCV_SMODE |
Lukas Auer | e79178b | 2019-03-17 19:28:34 +0100 | [diff] [blame] | 260 | depends on SMP |
| 261 | |
Rick Chen | e5e6c36 | 2019-04-30 13:49:33 +0800 | [diff] [blame] | 262 | config XIP |
| 263 | bool "XIP mode" |
| 264 | help |
| 265 | XIP (eXecute In Place) is a method for executing code directly |
| 266 | from a NOR flash memory without copying the code to ram. |
| 267 | Say yes here if U-Boot boots from flash directly. |
| 268 | |
Sean Anderson | e8b46a1 | 2019-12-25 00:27:44 -0500 | [diff] [blame] | 269 | config SHOW_REGS |
| 270 | bool "Show registers on unhandled exception" |
| 271 | |
Sean Anderson | 7f4b666 | 2020-06-24 06:41:19 -0400 | [diff] [blame] | 272 | config RISCV_PRIV_1_9 |
| 273 | bool "Use version 1.9 of the RISC-V priviledged specification" |
| 274 | help |
| 275 | Older versions of the RISC-V priviledged specification had |
| 276 | separate counter enable CSRs for each privilege mode. Writing |
| 277 | to the unified mcounteren CSR on a processor implementing the |
| 278 | old specification will result in an illegal instruction |
| 279 | exception. In addition to counter CSR changes, the way virtual |
| 280 | memory is configured was also changed. |
| 281 | |
Lukas Auer | a359665 | 2019-03-17 19:28:37 +0100 | [diff] [blame] | 282 | config STACK_SIZE_SHIFT |
| 283 | int |
Lukas Auer | 0381370 | 2019-10-20 20:53:47 +0200 | [diff] [blame] | 284 | default 14 |
Lukas Auer | a359665 | 2019-03-17 19:28:37 +0100 | [diff] [blame] | 285 | |
Rick Chen | 64d4ead | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 286 | endmenu |