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 | |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 23 | endchoice |
| 24 | |
Trevor Woerner | a0aba8a | 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 | 1001502 | 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 | a0aba8a | 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 | 1001502 | 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 | 52923c6 | 2018-11-07 09:34:06 +0800 | [diff] [blame] | 51 | # board-specific options below |
Rick Chen | 6f4dd62 | 2018-05-29 09:54:40 +0800 | [diff] [blame] | 52 | source "board/AndesTech/ax25-ae350/Kconfig" |
Bin Meng | 510e379 | 2018-09-26 06:55:21 -0700 | [diff] [blame] | 53 | source "board/emulation/qemu-riscv/Kconfig" |
Padmarao Begari | 3949482 | 2019-05-28 15:47:51 +0530 | [diff] [blame] | 54 | source "board/microchip/mpfs_icicle/Kconfig" |
Anup Patel | 3fda026 | 2019-02-25 08:15:19 +0000 | [diff] [blame] | 55 | source "board/sifive/fu540/Kconfig" |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 56 | |
Rick Chen | 52923c6 | 2018-11-07 09:34:06 +0800 | [diff] [blame] | 57 | # platform-specific options below |
| 58 | source "arch/riscv/cpu/ax25/Kconfig" |
Anup Patel | fdff1f9 | 2019-02-25 08:14:10 +0000 | [diff] [blame] | 59 | source "arch/riscv/cpu/generic/Kconfig" |
Rick Chen | 52923c6 | 2018-11-07 09:34:06 +0800 | [diff] [blame] | 60 | |
| 61 | # architecture-specific options below |
| 62 | |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 63 | choice |
Lukas Auer | 862e2e7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 64 | prompt "Base ISA" |
| 65 | default ARCH_RV32I |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 66 | |
Lukas Auer | 862e2e7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 67 | config ARCH_RV32I |
| 68 | bool "RV32I" |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 69 | select 32BIT |
| 70 | help |
Lukas Auer | 862e2e7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 71 | Choose this option to target the RV32I base integer instruction set. |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 72 | |
Lukas Auer | 862e2e7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 73 | config ARCH_RV64I |
| 74 | bool "RV64I" |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 75 | select 64BIT |
Lukas Auer | 7115856 | 2018-11-22 11:26:13 +0100 | [diff] [blame] | 76 | select PHYS_64BIT |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 77 | help |
Lukas Auer | 862e2e7 | 2018-11-22 11:26:12 +0100 | [diff] [blame] | 78 | Choose this option to target the RV64I base integer instruction set. |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 79 | |
| 80 | endchoice |
| 81 | |
Lukas Auer | 8176ea4 | 2018-12-12 06:12:23 -0800 | [diff] [blame] | 82 | choice |
| 83 | prompt "Code Model" |
| 84 | default CMODEL_MEDLOW |
| 85 | |
| 86 | config CMODEL_MEDLOW |
| 87 | bool "medium low code model" |
| 88 | help |
| 89 | U-Boot and its statically defined symbols must lie within a single 2 GiB |
| 90 | address range and must lie between absolute addresses -2 GiB and +2 GiB. |
| 91 | |
| 92 | config CMODEL_MEDANY |
| 93 | bool "medium any code model" |
| 94 | help |
| 95 | U-Boot and its statically defined symbols must be within any single 2 GiB |
| 96 | address range. |
| 97 | |
| 98 | endchoice |
| 99 | |
Anup Patel | 3cfc825 | 2018-12-12 06:12:29 -0800 | [diff] [blame] | 100 | choice |
| 101 | prompt "Run Mode" |
| 102 | default RISCV_MMODE |
| 103 | |
| 104 | config RISCV_MMODE |
| 105 | bool "Machine" |
| 106 | help |
| 107 | Choose this option to build U-Boot for RISC-V M-Mode. |
| 108 | |
| 109 | config RISCV_SMODE |
| 110 | bool "Supervisor" |
| 111 | help |
| 112 | Choose this option to build U-Boot for RISC-V S-Mode. |
| 113 | |
| 114 | endchoice |
| 115 | |
Lukas Auer | fbfd92b | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 116 | choice |
| 117 | prompt "SPL Run Mode" |
| 118 | default SPL_RISCV_MMODE |
| 119 | depends on SPL |
| 120 | |
| 121 | config SPL_RISCV_MMODE |
| 122 | bool "Machine" |
| 123 | help |
| 124 | Choose this option to build U-Boot SPL for RISC-V M-Mode. |
| 125 | |
| 126 | config SPL_RISCV_SMODE |
| 127 | bool "Supervisor" |
| 128 | help |
| 129 | Choose this option to build U-Boot SPL for RISC-V S-Mode. |
| 130 | |
| 131 | endchoice |
| 132 | |
Lukas Auer | d57ffa6 | 2018-11-22 11:26:14 +0100 | [diff] [blame] | 133 | config RISCV_ISA_C |
| 134 | bool "Emit compressed instructions" |
| 135 | default y |
| 136 | help |
| 137 | Adds "C" to the ISA subsets that the toolchain is allowed to emit |
| 138 | when building U-Boot, which results in compressed instructions in the |
| 139 | U-Boot binary. |
| 140 | |
| 141 | config RISCV_ISA_A |
| 142 | def_bool y |
| 143 | |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 144 | config 32BIT |
| 145 | bool |
| 146 | |
| 147 | config 64BIT |
| 148 | bool |
| 149 | |
Bin Meng | 644a3cd | 2018-12-12 06:12:30 -0800 | [diff] [blame] | 150 | config SIFIVE_CLINT |
| 151 | bool |
Lukas Auer | fbfd92b | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 152 | depends on RISCV_MMODE || SPL_RISCV_MMODE |
Bin Meng | 644a3cd | 2018-12-12 06:12:30 -0800 | [diff] [blame] | 153 | select REGMAP |
| 154 | select SYSCON |
Lukas Auer | fbfd92b | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 155 | select SPL_REGMAP if SPL |
| 156 | select SPL_SYSCON if SPL |
Bin Meng | 644a3cd | 2018-12-12 06:12:30 -0800 | [diff] [blame] | 157 | help |
| 158 | The SiFive CLINT block holds memory-mapped control and status registers |
| 159 | associated with software and timer interrupts. |
| 160 | |
Rick Chen | 0d38946 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 161 | config ANDES_PLIC |
| 162 | bool |
Lukas Auer | fbfd92b | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 163 | depends on RISCV_MMODE || SPL_RISCV_MMODE |
Rick Chen | 0d38946 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 164 | select REGMAP |
| 165 | select SYSCON |
Lukas Auer | fbfd92b | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 166 | select SPL_REGMAP if SPL |
| 167 | select SPL_SYSCON if SPL |
Rick Chen | 0d38946 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 168 | help |
| 169 | The Andes PLIC block holds memory-mapped claim and pending registers |
| 170 | associated with software interrupt. |
| 171 | |
Rick Chen | a1f2487 | 2019-04-02 15:56:40 +0800 | [diff] [blame] | 172 | config ANDES_PLMT |
| 173 | bool |
Lukas Auer | fbfd92b | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 174 | depends on RISCV_MMODE || SPL_RISCV_MMODE |
Rick Chen | a1f2487 | 2019-04-02 15:56:40 +0800 | [diff] [blame] | 175 | select REGMAP |
| 176 | select SYSCON |
Lukas Auer | fbfd92b | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 177 | select SPL_REGMAP if SPL |
| 178 | select SPL_SYSCON if SPL |
Rick Chen | a1f2487 | 2019-04-02 15:56:40 +0800 | [diff] [blame] | 179 | help |
| 180 | The Andes PLMT block holds memory-mapped mtime register |
| 181 | associated with timer tick. |
| 182 | |
Anup Patel | 511107d | 2018-12-12 06:12:31 -0800 | [diff] [blame] | 183 | config RISCV_RDTIME |
| 184 | bool |
Lukas Auer | fbfd92b | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 185 | default y if RISCV_SMODE || SPL_RISCV_SMODE |
Anup Patel | 511107d | 2018-12-12 06:12:31 -0800 | [diff] [blame] | 186 | help |
| 187 | The provides the riscv_get_time() API that is implemented using the |
| 188 | standard rdtime instruction. This is the case for S-mode U-Boot, and |
| 189 | is useful for processors that support rdtime in M-mode too. |
| 190 | |
Bin Meng | 92b64fe | 2018-12-12 06:12:33 -0800 | [diff] [blame] | 191 | config SYS_MALLOC_F_LEN |
| 192 | default 0x1000 |
| 193 | |
Lukas Auer | fa33f08 | 2019-03-17 19:28:32 +0100 | [diff] [blame] | 194 | config SMP |
| 195 | bool "Symmetric Multi-Processing" |
| 196 | help |
| 197 | This enables support for systems with more than one CPU. If |
| 198 | you say N here, U-Boot will run on single and multiprocessor |
| 199 | machines, but will use only one CPU of a multiprocessor |
| 200 | machine. If you say Y here, U-Boot will run on many, but not |
| 201 | all, single processor machines. |
| 202 | |
| 203 | config NR_CPUS |
| 204 | int "Maximum number of CPUs (2-32)" |
| 205 | range 2 32 |
| 206 | depends on SMP |
| 207 | default 8 |
| 208 | help |
| 209 | On multiprocessor machines, U-Boot sets up a stack for each CPU. |
| 210 | Stack memory is pre-allocated. U-Boot must therefore know the |
| 211 | maximum number of CPUs that may be present. |
| 212 | |
Lukas Auer | f152feb | 2019-03-17 19:28:34 +0100 | [diff] [blame] | 213 | config SBI_IPI |
| 214 | bool |
Lukas Auer | fbfd92b | 2019-08-21 21:14:43 +0200 | [diff] [blame] | 215 | default y if RISCV_SMODE || SPL_RISCV_SMODE |
Lukas Auer | f152feb | 2019-03-17 19:28:34 +0100 | [diff] [blame] | 216 | depends on SMP |
| 217 | |
Rick Chen | bdce389 | 2019-04-30 13:49:33 +0800 | [diff] [blame] | 218 | config XIP |
| 219 | bool "XIP mode" |
| 220 | help |
| 221 | XIP (eXecute In Place) is a method for executing code directly |
| 222 | from a NOR flash memory without copying the code to ram. |
| 223 | Say yes here if U-Boot boots from flash directly. |
| 224 | |
Lukas Auer | 3dea63c | 2019-03-17 19:28:37 +0100 | [diff] [blame] | 225 | config STACK_SIZE_SHIFT |
| 226 | int |
Lukas Auer | 6b20dc1 | 2019-10-20 20:53:47 +0200 | [diff] [blame] | 227 | default 14 |
Lukas Auer | 3dea63c | 2019-03-17 19:28:37 +0100 | [diff] [blame] | 228 | |
Lukas Auer | 8c59f20 | 2019-08-21 21:14:45 +0200 | [diff] [blame] | 229 | config SPL_LDSCRIPT |
| 230 | default "arch/riscv/cpu/u-boot-spl.lds" |
| 231 | |
Rick Chen | f94c44e | 2017-12-26 13:55:52 +0800 | [diff] [blame] | 232 | endmenu |