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 | |
Leo Yu-Chi Liang | 8900e2b | 2023-02-14 20:42:49 +0800 | [diff] [blame] | 11 | config TARGET_AE350 |
| 12 | bool "Support 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 | |
Bin Meng | ae2d950 | 2021-03-17 11:10:58 +0800 | [diff] [blame] | 20 | config TARGET_SIFIVE_UNLEASHED |
| 21 | bool "Support SiFive Unleashed Board" |
Anup Patel | 3fda026 | 2019-02-25 08:15:19 +0000 | [diff] [blame] | 22 | |
Green Wan | 70415e1 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 23 | config TARGET_SIFIVE_UNMATCHED |
| 24 | bool "Support SiFive Unmatched Board" |
Tom Rini | ab92b38 | 2021-08-26 11:47:59 -0400 | [diff] [blame] | 25 | select SYS_CACHE_SHIFT_6 |
Green Wan | 70415e1 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 26 | |
Yanhong Wang | 331ad93 | 2023-03-29 11:42:20 +0800 | [diff] [blame] | 27 | config TARGET_STARFIVE_VISIONFIVE2 |
| 28 | bool "Support StarFive VisionFive2 Board" |
| 29 | |
Yixun Lan | 5f3a7fd | 2023-07-08 19:24:32 +0800 | [diff] [blame] | 30 | config TARGET_TH1520_LPI4A |
| 31 | bool "Support Sipeed's TH1520 Lichee PI 4A Board" |
| 32 | select SYS_CACHE_SHIFT_6 |
| 33 | |
Sean Anderson | a7c81fc | 2020-06-24 06:41:25 -0400 | [diff] [blame] | 34 | config TARGET_SIPEED_MAIX |
| 35 | bool "Support Sipeed Maix Board" |
Tom Rini | ab92b38 | 2021-08-26 11:47:59 -0400 | [diff] [blame] | 36 | select SYS_CACHE_SHIFT_6 |
Sean Anderson | a7c81fc | 2020-06-24 06:41:25 -0400 | [diff] [blame] | 37 | |
Tianrui Wei | 8a44fe6 | 2021-07-01 12:54:19 +0800 | [diff] [blame] | 38 | config TARGET_OPENPITON_RISCV64 |
| 39 | bool "Support RISC-V cores on OpenPiton SoC" |
| 40 | |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 41 | endchoice |
| 42 | |
Trevor Woerner | a0aba8a | 2019-05-03 09:40:59 -0400 | [diff] [blame] | 43 | config SYS_ICACHE_OFF |
| 44 | bool "Do not enable icache" |
Trevor Woerner | a0aba8a | 2019-05-03 09:40:59 -0400 | [diff] [blame] | 45 | help |
| 46 | Do not enable instruction cache in U-Boot. |
| 47 | |
Trevor Woerner | 1001502 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 48 | config SPL_SYS_ICACHE_OFF |
| 49 | bool "Do not enable icache in SPL" |
| 50 | depends on SPL |
| 51 | default SYS_ICACHE_OFF |
| 52 | help |
| 53 | Do not enable instruction cache in SPL. |
| 54 | |
Trevor Woerner | a0aba8a | 2019-05-03 09:40:59 -0400 | [diff] [blame] | 55 | config SYS_DCACHE_OFF |
| 56 | bool "Do not enable dcache" |
Trevor Woerner | a0aba8a | 2019-05-03 09:40:59 -0400 | [diff] [blame] | 57 | help |
| 58 | Do not enable data cache in U-Boot. |
| 59 | |
Trevor Woerner | 1001502 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 60 | config SPL_SYS_DCACHE_OFF |
| 61 | bool "Do not enable dcache in SPL" |
| 62 | depends on SPL |
| 63 | default SYS_DCACHE_OFF |
| 64 | help |
| 65 | Do not enable data cache in SPL. |
| 66 | |
Shengyu Qu | d365f66 | 2023-08-09 21:11:31 +0800 | [diff] [blame] | 67 | config SPL_ZERO_MEM_BEFORE_USE |
| 68 | bool "Zero memory before use" |
| 69 | depends on SPL |
| 70 | default n |
| 71 | help |
| 72 | Zero stack/GD/malloc area in SPL before using them, this is needed for |
| 73 | Sifive core devices that uses L2 cache to store SPL. |
| 74 | |
Rick Chen | 52923c6 | 2018-11-07 09:34:06 +0800 | [diff] [blame] | 75 | # board-specific options below |
Leo Yu-Chi Liang | 8900e2b | 2023-02-14 20:42:49 +0800 | [diff] [blame] | 76 | source "board/AndesTech/ae350/Kconfig" |
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 77 | source "board/emulation/qemu-riscv/Kconfig" |
Padmarao Begari | 3949482 | 2019-05-28 15:47:51 +0530 | [diff] [blame] | 78 | source "board/microchip/mpfs_icicle/Kconfig" |
Bin Meng | ae2d950 | 2021-03-17 11:10:58 +0800 | [diff] [blame] | 79 | source "board/sifive/unleashed/Kconfig" |
Green Wan | 70415e1 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 80 | source "board/sifive/unmatched/Kconfig" |
Yixun Lan | 5f3a7fd | 2023-07-08 19:24:32 +0800 | [diff] [blame] | 81 | source "board/thead/th1520_lpi4a/Kconfig" |
Tianrui Wei | 8a44fe6 | 2021-07-01 12:54:19 +0800 | [diff] [blame] | 82 | source "board/openpiton/riscv64/Kconfig" |
Sean Anderson | a7c81fc | 2020-06-24 06:41:25 -0400 | [diff] [blame] | 83 | source "board/sipeed/maix/Kconfig" |
Yanhong Wang | 331ad93 | 2023-03-29 11:42:20 +0800 | [diff] [blame] | 84 | source "board/starfive/visionfive2/Kconfig" |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 85 | |
Rick Chen | 52923c6 | 2018-11-07 09:34:06 +0800 | [diff] [blame] | 86 | # platform-specific options below |
Leo Yu-Chi Liang | 8900e2b | 2023-02-14 20:42:49 +0800 | [diff] [blame] | 87 | source "arch/riscv/cpu/andesv5/Kconfig" |
Pragnesh Patel | 7c45fc9 | 2020-05-29 11:33:34 +0530 | [diff] [blame] | 88 | source "arch/riscv/cpu/fu540/Kconfig" |
Green Wan | a74e9d8 | 2021-05-27 06:52:07 -0700 | [diff] [blame] | 89 | source "arch/riscv/cpu/fu740/Kconfig" |
Anup Patel | fdff1f9 | 2019-02-25 08:14:10 +0000 | [diff] [blame] | 90 | source "arch/riscv/cpu/generic/Kconfig" |
Yanhong Wang | 331ad93 | 2023-03-29 11:42:20 +0800 | [diff] [blame] | 91 | source "arch/riscv/cpu/jh7110/Kconfig" |
Rick Chen | 52923c6 | 2018-11-07 09:34:06 +0800 | [diff] [blame] | 92 | |
| 93 | # architecture-specific options below |
| 94 | |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 95 | choice |
Lukas Auer | 862e2e7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 96 | prompt "Base ISA" |
| 97 | default ARCH_RV32I |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 98 | |
Lukas Auer | 862e2e7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 99 | config ARCH_RV32I |
| 100 | bool "RV32I" |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 101 | select 32BIT |
| 102 | help |
Lukas Auer | 862e2e7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 103 | Choose this option to target the RV32I base integer instruction set. |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 104 | |
Lukas Auer | 862e2e7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 105 | config ARCH_RV64I |
| 106 | bool "RV64I" |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 107 | select 64BIT |
Lukas Auer | 7115856 | 2018-11-22 11:26:13 +0100 | [diff] [blame] | 108 | select PHYS_64BIT |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 109 | help |
Lukas Auer | 862e2e7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 110 | Choose this option to target the RV64I base integer instruction set. |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 111 | |
| 112 | endchoice |
| 113 | |
Lukas Auer | 8176ea4 | 2018-12-12 06:12:23 -0800 | [diff] [blame] | 114 | choice |
| 115 | prompt "Code Model" |
| 116 | default CMODEL_MEDLOW |
| 117 | |
| 118 | config CMODEL_MEDLOW |
| 119 | bool "medium low code model" |
| 120 | help |
| 121 | U-Boot and its statically defined symbols must lie within a single 2 GiB |
| 122 | address range and must lie between absolute addresses -2 GiB and +2 GiB. |
| 123 | |
| 124 | config CMODEL_MEDANY |
| 125 | bool "medium any code model" |
| 126 | help |
| 127 | U-Boot and its statically defined symbols must be within any single 2 GiB |
| 128 | address range. |
| 129 | |
| 130 | endchoice |
| 131 | |
Anup Patel | 3cfc825 | 2018-12-12 06:12:29 -0800 | [diff] [blame] | 132 | choice |
| 133 | prompt "Run Mode" |
| 134 | default RISCV_MMODE |
| 135 | |
| 136 | config RISCV_MMODE |
| 137 | bool "Machine" |
| 138 | help |
| 139 | Choose this option to build U-Boot for RISC-V M-Mode. |
| 140 | |
| 141 | config RISCV_SMODE |
| 142 | bool "Supervisor" |
| 143 | help |
| 144 | Choose this option to build U-Boot for RISC-V S-Mode. |
| 145 | |
| 146 | endchoice |
| 147 | |
Lukas Auer | fbfd92b | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 148 | choice |
| 149 | prompt "SPL Run Mode" |
| 150 | default SPL_RISCV_MMODE |
| 151 | depends on SPL |
| 152 | |
| 153 | config SPL_RISCV_MMODE |
| 154 | bool "Machine" |
| 155 | help |
| 156 | Choose this option to build U-Boot SPL for RISC-V M-Mode. |
| 157 | |
| 158 | config SPL_RISCV_SMODE |
| 159 | bool "Supervisor" |
| 160 | help |
| 161 | Choose this option to build U-Boot SPL for RISC-V S-Mode. |
| 162 | |
| 163 | endchoice |
| 164 | |
Lukas Auer | d57ffa6 | 2018-11-22 11:26:14 +0100 | [diff] [blame] | 165 | config RISCV_ISA_C |
| 166 | bool "Emit compressed instructions" |
| 167 | default y |
| 168 | help |
| 169 | Adds "C" to the ISA subsets that the toolchain is allowed to emit |
| 170 | when building U-Boot, which results in compressed instructions in the |
| 171 | U-Boot binary. |
| 172 | |
Heinrich Schuchardt | e67f34f | 2022-10-12 14:59:51 +0200 | [diff] [blame] | 173 | config RISCV_ISA_F |
| 174 | bool "Standard extension for Single-Precision Floating Point" |
| 175 | default y |
| 176 | help |
| 177 | Adds "F" to the ISA string passed to the compiler. |
| 178 | |
| 179 | config RISCV_ISA_D |
| 180 | bool "Standard extension for Double-Precision Floating Point" |
| 181 | depends on RISCV_ISA_F |
| 182 | default y |
| 183 | help |
| 184 | Adds "D" to the ISA string passed to the compiler and changes the |
| 185 | riscv32 ABI from ilp32 to ilp32d and the riscv64 ABI from lp64 to |
| 186 | lp64d. |
| 187 | |
Lukas Auer | d57ffa6 | 2018-11-22 11:26:14 +0100 | [diff] [blame] | 188 | config RISCV_ISA_A |
| 189 | def_bool y |
| 190 | |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 191 | config 32BIT |
| 192 | bool |
| 193 | |
| 194 | config 64BIT |
| 195 | bool |
| 196 | |
Padmarao Begari | 5af3574 | 2021-01-15 08:20:35 +0530 | [diff] [blame] | 197 | config DMA_ADDR_T_64BIT |
| 198 | bool |
| 199 | default y if 64BIT |
| 200 | |
Bin Meng | 9675d92 | 2023-06-21 23:11:46 +0800 | [diff] [blame] | 201 | config RISCV_ACLINT |
Bin Meng | 644a3cd | 2018-12-12 06:12:30 -0800 | [diff] [blame] | 202 | bool |
Bin Meng | a6d7e8c | 2021-05-11 20:04:12 +0800 | [diff] [blame] | 203 | depends on RISCV_MMODE |
Bin Meng | 7f1a30f | 2023-06-21 23:11:45 +0800 | [diff] [blame] | 204 | select REGMAP |
| 205 | select SYSCON |
Bin Meng | a6d7e8c | 2021-05-11 20:04:12 +0800 | [diff] [blame] | 206 | help |
Bin Meng | 9675d92 | 2023-06-21 23:11:46 +0800 | [diff] [blame] | 207 | The RISC-V ACLINT block holds memory-mapped control and status registers |
Bin Meng | a6d7e8c | 2021-05-11 20:04:12 +0800 | [diff] [blame] | 208 | associated with software and timer interrupts. |
| 209 | |
Bin Meng | 9675d92 | 2023-06-21 23:11:46 +0800 | [diff] [blame] | 210 | config SPL_RISCV_ACLINT |
Bin Meng | a6d7e8c | 2021-05-11 20:04:12 +0800 | [diff] [blame] | 211 | bool |
| 212 | depends on SPL_RISCV_MMODE |
Bin Meng | 7f1a30f | 2023-06-21 23:11:45 +0800 | [diff] [blame] | 213 | select SPL_REGMAP |
| 214 | select SPL_SYSCON |
Bin Meng | 644a3cd | 2018-12-12 06:12:30 -0800 | [diff] [blame] | 215 | help |
Bin Meng | 9675d92 | 2023-06-21 23:11:46 +0800 | [diff] [blame] | 216 | The RISC-V ACLINT block holds memory-mapped control and status registers |
Bin Meng | 644a3cd | 2018-12-12 06:12:30 -0800 | [diff] [blame] | 217 | associated with software and timer interrupts. |
| 218 | |
Zong Li | 213ed17 | 2021-09-01 15:01:41 +0800 | [diff] [blame] | 219 | config SIFIVE_CACHE |
| 220 | bool |
| 221 | help |
| 222 | This enables the operations to configure SiFive cache |
| 223 | |
Yu Chien Peter Lin | a5dfa3b | 2022-10-25 23:03:50 +0800 | [diff] [blame] | 224 | config ANDES_PLICSW |
Rick Chen | 0d38946 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 225 | bool |
Lukas Auer | fbfd92b | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 226 | depends on RISCV_MMODE || SPL_RISCV_MMODE |
Rick Chen | 0d38946 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 227 | select REGMAP |
| 228 | select SYSCON |
Lukas Auer | fbfd92b | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 229 | select SPL_REGMAP if SPL |
| 230 | select SPL_SYSCON if SPL |
Rick Chen | 0d38946 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 231 | help |
Yu Chien Peter Lin | a5dfa3b | 2022-10-25 23:03:50 +0800 | [diff] [blame] | 232 | The Andes PLICSW block holds memory-mapped claim and pending |
| 233 | registers associated with software interrupt. |
Rick Chen | 0d38946 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 234 | |
Lukas Auer | fa33f08 | 2019-03-17 19:28:32 +0100 | [diff] [blame] | 235 | config SMP |
| 236 | bool "Symmetric Multi-Processing" |
Bin Meng | 6fa022e | 2020-04-16 08:09:31 -0700 | [diff] [blame] | 237 | depends on SBI_V01 || !RISCV_SMODE |
Lukas Auer | fa33f08 | 2019-03-17 19:28:32 +0100 | [diff] [blame] | 238 | help |
| 239 | This enables support for systems with more than one CPU. If |
| 240 | you say N here, U-Boot will run on single and multiprocessor |
| 241 | machines, but will use only one CPU of a multiprocessor |
| 242 | machine. If you say Y here, U-Boot will run on many, but not |
| 243 | all, single processor machines. |
| 244 | |
Bin Meng | 191636e | 2020-04-16 08:09:30 -0700 | [diff] [blame] | 245 | config SPL_SMP |
| 246 | bool "Symmetric Multi-Processing in SPL" |
| 247 | depends on SPL && SPL_RISCV_MMODE |
| 248 | default y |
| 249 | help |
| 250 | This enables support for systems with more than one CPU in SPL. |
| 251 | If you say N here, U-Boot SPL will run on single and multiprocessor |
| 252 | machines, but will use only one CPU of a multiprocessor |
| 253 | machine. If you say Y here, U-Boot SPL will run on many, but not |
| 254 | all, single processor machines. |
| 255 | |
Lukas Auer | fa33f08 | 2019-03-17 19:28:32 +0100 | [diff] [blame] | 256 | config NR_CPUS |
| 257 | int "Maximum number of CPUs (2-32)" |
| 258 | range 2 32 |
Bin Meng | 191636e | 2020-04-16 08:09:30 -0700 | [diff] [blame] | 259 | depends on SMP || SPL_SMP |
Lukas Auer | fa33f08 | 2019-03-17 19:28:32 +0100 | [diff] [blame] | 260 | default 8 |
| 261 | help |
| 262 | On multiprocessor machines, U-Boot sets up a stack for each CPU. |
| 263 | Stack memory is pre-allocated. U-Boot must therefore know the |
| 264 | maximum number of CPUs that may be present. |
| 265 | |
Bin Meng | f58fc34 | 2020-03-09 19:35:28 -0700 | [diff] [blame] | 266 | config SBI |
| 267 | bool |
| 268 | default y if RISCV_SMODE || SPL_RISCV_SMODE |
| 269 | |
Bin Meng | ff0fa6c | 2020-04-16 08:09:32 -0700 | [diff] [blame] | 270 | choice |
| 271 | prompt "SBI support" |
Bin Meng | fa16ec2 | 2020-04-16 08:09:33 -0700 | [diff] [blame] | 272 | default SBI_V02 |
Bin Meng | ff0fa6c | 2020-04-16 08:09:32 -0700 | [diff] [blame] | 273 | |
Bin Meng | 1b3c8d6 | 2020-03-09 19:35:30 -0700 | [diff] [blame] | 274 | config SBI_V01 |
| 275 | bool "SBI v0.1 support" |
Bin Meng | 1b3c8d6 | 2020-03-09 19:35:30 -0700 | [diff] [blame] | 276 | depends on SBI |
| 277 | help |
| 278 | This config allows kernel to use SBI v0.1 APIs. This will be |
| 279 | deprecated in future once legacy M-mode software are no longer in use. |
| 280 | |
Bin Meng | ff0fa6c | 2020-04-16 08:09:32 -0700 | [diff] [blame] | 281 | config SBI_V02 |
Heinrich Schuchardt | 5c89467 | 2022-11-08 15:53:12 +0100 | [diff] [blame] | 282 | bool "SBI v0.2 or later support" |
Bin Meng | ff0fa6c | 2020-04-16 08:09:32 -0700 | [diff] [blame] | 283 | depends on SBI |
| 284 | help |
Heinrich Schuchardt | 5c89467 | 2022-11-08 15:53:12 +0100 | [diff] [blame] | 285 | The SBI specification introduced the concept of extensions in version |
| 286 | v0.2. With this configuration option U-Boot can detect and use SBI |
| 287 | extensions. With the HSM extension introduced in SBI 0.2, only a |
| 288 | single hart needs to boot and enter the operating system. The booting |
| 289 | hart can bring up secondary harts one by one afterwards. |
Bin Meng | ff0fa6c | 2020-04-16 08:09:32 -0700 | [diff] [blame] | 290 | |
Heinrich Schuchardt | 5c89467 | 2022-11-08 15:53:12 +0100 | [diff] [blame] | 291 | Choose this option if OpenSBI release v0.7 or above is used together |
Bin Meng | ff0fa6c | 2020-04-16 08:09:32 -0700 | [diff] [blame] | 292 | with U-Boot. |
| 293 | |
| 294 | endchoice |
| 295 | |
Lukas Auer | f152feb | 2019-03-17 19:28:34 +0100 | [diff] [blame] | 296 | config SBI_IPI |
| 297 | bool |
Bin Meng | f58fc34 | 2020-03-09 19:35:28 -0700 | [diff] [blame] | 298 | depends on SBI |
Lukas Auer | fbfd92b | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 299 | default y if RISCV_SMODE || SPL_RISCV_SMODE |
Lukas Auer | f152feb | 2019-03-17 19:28:34 +0100 | [diff] [blame] | 300 | depends on SMP |
| 301 | |
Rick Chen | bdce389 | 2019-04-30 13:49:33 +0800 | [diff] [blame] | 302 | config XIP |
| 303 | bool "XIP mode" |
| 304 | help |
| 305 | XIP (eXecute In Place) is a method for executing code directly |
| 306 | from a NOR flash memory without copying the code to ram. |
| 307 | Say yes here if U-Boot boots from flash directly. |
| 308 | |
Nikita Shubin | c2bdf02 | 2022-09-02 11:47:39 +0300 | [diff] [blame] | 309 | config SPL_XIP |
| 310 | bool "Enable XIP mode for SPL" |
| 311 | help |
| 312 | If SPL starts in read-only memory (XIP for example) then we shouldn't |
| 313 | rely on lock variables (for example hart_lottery and available_harts_lock), |
| 314 | this affects only SPL, other stages should proceed as non-XIP. |
| 315 | |
Rick Chen | e0465f8 | 2022-09-21 14:34:54 +0800 | [diff] [blame] | 316 | config AVAILABLE_HARTS |
| 317 | bool "Send IPI by available harts" |
| 318 | default y |
| 319 | help |
| 320 | By default, IPI sending mechanism will depend on available_harts. |
| 321 | If disable this, it will send IPI by CPUs node numbers of device tree. |
| 322 | |
Sean Anderson | fd1f6e9 | 2019-12-25 00:27:44 -0500 | [diff] [blame] | 323 | config SHOW_REGS |
| 324 | bool "Show registers on unhandled exception" |
| 325 | |
Sean Anderson | b8bc120 | 2020-06-24 06:41:19 -0400 | [diff] [blame] | 326 | config RISCV_PRIV_1_9 |
| 327 | bool "Use version 1.9 of the RISC-V priviledged specification" |
| 328 | help |
| 329 | Older versions of the RISC-V priviledged specification had |
| 330 | separate counter enable CSRs for each privilege mode. Writing |
| 331 | to the unified mcounteren CSR on a processor implementing the |
| 332 | old specification will result in an illegal instruction |
| 333 | exception. In addition to counter CSR changes, the way virtual |
| 334 | memory is configured was also changed. |
| 335 | |
Lukas Auer | 3dea63c | 2019-03-17 19:28:37 +0100 | [diff] [blame] | 336 | config STACK_SIZE_SHIFT |
| 337 | int |
Lukas Auer | 6b20dc1 | 2019-10-20 20:53:47 +0200 | [diff] [blame] | 338 | default 14 |
Lukas Auer | 3dea63c | 2019-03-17 19:28:37 +0100 | [diff] [blame] | 339 | |
Bin Meng | 1c17e55 | 2020-06-25 18:16:08 -0700 | [diff] [blame] | 340 | config OF_BOARD_FIXUP |
Sean Anderson | 32cef69 | 2020-09-05 09:22:11 -0400 | [diff] [blame] | 341 | default y if OF_SEPARATE && RISCV_SMODE |
Bin Meng | 1c17e55 | 2020-06-25 18:16:08 -0700 | [diff] [blame] | 342 | |
Bin Meng | 8941927 | 2021-05-13 16:46:18 +0800 | [diff] [blame] | 343 | menu "Use assembly optimized implementation of memory routines" |
| 344 | |
Heinrich Schuchardt | 8f0dc4c | 2021-03-27 12:37:04 +0100 | [diff] [blame] | 345 | config USE_ARCH_MEMCPY |
| 346 | bool "Use an assembly optimized implementation of memcpy" |
| 347 | default y |
| 348 | help |
| 349 | Enable the generation of an optimized version of memcpy. |
| 350 | Such an implementation may be faster under some conditions |
| 351 | but may increase the binary size. |
| 352 | |
| 353 | config SPL_USE_ARCH_MEMCPY |
| 354 | bool "Use an assembly optimized implementation of memcpy for SPL" |
| 355 | default y if USE_ARCH_MEMCPY |
| 356 | depends on SPL |
| 357 | help |
| 358 | Enable the generation of an optimized version of memcpy. |
| 359 | Such an implementation may be faster under some conditions |
| 360 | but may increase the binary size. |
| 361 | |
| 362 | config TPL_USE_ARCH_MEMCPY |
| 363 | bool "Use an assembly optimized implementation of memcpy for TPL" |
| 364 | default y if USE_ARCH_MEMCPY |
| 365 | depends on TPL |
| 366 | help |
| 367 | Enable the generation of an optimized version of memcpy. |
| 368 | Such an implementation may be faster under some conditions |
| 369 | but may increase the binary size. |
| 370 | |
| 371 | config USE_ARCH_MEMMOVE |
| 372 | bool "Use an assembly optimized implementation of memmove" |
| 373 | default y |
| 374 | help |
| 375 | Enable the generation of an optimized version of memmove. |
| 376 | Such an implementation may be faster under some conditions |
| 377 | but may increase the binary size. |
| 378 | |
| 379 | config SPL_USE_ARCH_MEMMOVE |
| 380 | bool "Use an assembly optimized implementation of memmove for SPL" |
| 381 | default y if USE_ARCH_MEMCPY |
| 382 | depends on SPL |
| 383 | help |
| 384 | Enable the generation of an optimized version of memmove. |
| 385 | Such an implementation may be faster under some conditions |
| 386 | but may increase the binary size. |
| 387 | |
| 388 | config TPL_USE_ARCH_MEMMOVE |
| 389 | bool "Use an assembly optimized implementation of memmove for TPL" |
| 390 | default y if USE_ARCH_MEMCPY |
| 391 | depends on TPL |
| 392 | help |
| 393 | Enable the generation of an optimized version of memmove. |
| 394 | Such an implementation may be faster under some conditions |
| 395 | but may increase the binary size. |
| 396 | |
| 397 | config USE_ARCH_MEMSET |
| 398 | bool "Use an assembly optimized implementation of memset" |
| 399 | default y |
| 400 | help |
| 401 | Enable the generation of an optimized version of memset. |
| 402 | Such an implementation may be faster under some conditions |
| 403 | but may increase the binary size. |
| 404 | |
| 405 | config SPL_USE_ARCH_MEMSET |
| 406 | bool "Use an assembly optimized implementation of memset for SPL" |
| 407 | default y if USE_ARCH_MEMSET |
| 408 | depends on SPL |
| 409 | help |
| 410 | Enable the generation of an optimized version of memset. |
| 411 | Such an implementation may be faster under some conditions |
| 412 | but may increase the binary size. |
| 413 | |
| 414 | config TPL_USE_ARCH_MEMSET |
| 415 | bool "Use an assembly optimized implementation of memset for TPL" |
| 416 | default y if USE_ARCH_MEMSET |
| 417 | depends on TPL |
| 418 | help |
| 419 | Enable the generation of an optimized version of memset. |
| 420 | Such an implementation may be faster under some conditions |
| 421 | but may increase the binary size. |
| 422 | |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 423 | endmenu |
Bin Meng | 8941927 | 2021-05-13 16:46:18 +0800 | [diff] [blame] | 424 | |
| 425 | endmenu |