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