Tom Rini | e33610c | 2021-12-14 13:36:35 -0500 | [diff] [blame] | 1 | config ARCH_MAP_SYSMEM |
| 2 | depends on SANDBOX || NDS32 |
| 3 | def_bool y |
| 4 | |
Masahiro Yamada | 5865450 | 2015-07-15 20:59:29 +0900 | [diff] [blame] | 5 | config CREATE_ARCH_SYMLINK |
| 6 | bool |
| 7 | |
Masahiro Yamada | 332b829 | 2016-06-28 10:48:42 +0900 | [diff] [blame] | 8 | config HAVE_ARCH_IOREMAP |
| 9 | bool |
| 10 | |
Michal Simek | 27d66cf | 2020-11-04 15:33:20 +0100 | [diff] [blame] | 11 | config NEEDS_MANUAL_RELOC |
| 12 | bool |
| 13 | |
Tom Rini | 3ef67ae | 2021-08-26 11:47:59 -0400 | [diff] [blame] | 14 | config SYS_CACHE_SHIFT_4 |
| 15 | bool |
| 16 | |
| 17 | config SYS_CACHE_SHIFT_5 |
| 18 | bool |
| 19 | |
| 20 | config SYS_CACHE_SHIFT_6 |
| 21 | bool |
| 22 | |
| 23 | config SYS_CACHE_SHIFT_7 |
| 24 | bool |
| 25 | |
| 26 | config SYS_CACHELINE_SIZE |
| 27 | int |
| 28 | default 128 if SYS_CACHE_SHIFT_7 |
| 29 | default 64 if SYS_CACHE_SHIFT_6 |
| 30 | default 32 if SYS_CACHE_SHIFT_5 |
| 31 | default 16 if SYS_CACHE_SHIFT_4 |
| 32 | # Fall-back for MIPS |
| 33 | default 32 if MIPS |
| 34 | |
Simon Glass | b87153c | 2020-12-16 21:20:06 -0700 | [diff] [blame] | 35 | config LINKER_LIST_ALIGN |
| 36 | int |
| 37 | default 32 if SANDBOX |
| 38 | default 8 if ARM64 || X86 |
| 39 | default 4 |
| 40 | help |
| 41 | Force the each linker list to be aligned to this boundary. This |
| 42 | is required if ll_entry_get() is used, since otherwise the linker |
| 43 | may add padding into the table, thus breaking it. |
| 44 | See linker_lists.rst for full details. |
| 45 | |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 46 | choice |
| 47 | prompt "Architecture select" |
| 48 | default SANDBOX |
| 49 | |
| 50 | config ARC |
| 51 | bool "ARC architecture" |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 52 | select ARC_TIMER |
Vlad Zakharov | a465df7 | 2017-03-21 14:49:49 +0300 | [diff] [blame] | 53 | select CLK |
Michal Simek | d5d59bd | 2020-08-19 10:44:20 +0200 | [diff] [blame] | 54 | select DM |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 55 | select HAVE_PRIVATE_LIBGCC |
| 56 | select SUPPORT_OF_CONTROL |
Tom Rini | 3ef67ae | 2021-08-26 11:47:59 -0400 | [diff] [blame] | 57 | select SYS_CACHE_SHIFT_7 |
Vlad Zakharov | a465df7 | 2017-03-21 14:49:49 +0300 | [diff] [blame] | 58 | select TIMER |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 59 | |
| 60 | config ARM |
| 61 | bool "ARM architecture" |
Marek BehĂșn | 4778a58 | 2021-05-20 13:24:22 +0200 | [diff] [blame] | 62 | select ARCH_SUPPORTS_LTO |
Masahiro Yamada | 5865450 | 2015-07-15 20:59:29 +0900 | [diff] [blame] | 63 | select CREATE_ARCH_SYMLINK |
Masahiro Yamada | 0628059 | 2015-07-03 16:13:09 +0900 | [diff] [blame] | 64 | select HAVE_PRIVATE_LIBGCC if !ARM64 |
Simon Glass | e170f68 | 2021-12-01 09:02:38 -0700 | [diff] [blame] | 65 | select SUPPORT_ACPI |
Masahiro Yamada | 9fadbc8 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 66 | select SUPPORT_OF_CONTROL |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 67 | |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 68 | config M68K |
| 69 | bool "M68000 architecture" |
angelo@sysam.it | 5e79817 | 2015-12-06 17:47:59 +0100 | [diff] [blame] | 70 | select HAVE_PRIVATE_LIBGCC |
Michal Simek | 27d66cf | 2020-11-04 15:33:20 +0100 | [diff] [blame] | 71 | select NEEDS_MANUAL_RELOC |
Derald D. Woods | eb730bd | 2018-01-22 17:17:10 -0600 | [diff] [blame] | 72 | select SYS_BOOT_GET_CMDLINE |
| 73 | select SYS_BOOT_GET_KBD |
Tom Rini | 3ef67ae | 2021-08-26 11:47:59 -0400 | [diff] [blame] | 74 | select SYS_CACHE_SHIFT_4 |
Angelo Dureghello | e007b15 | 2019-03-13 21:46:51 +0100 | [diff] [blame] | 75 | select SUPPORT_OF_CONTROL |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 76 | |
| 77 | config MICROBLAZE |
| 78 | bool "MicroBlaze architecture" |
Michal Simek | 27d66cf | 2020-11-04 15:33:20 +0100 | [diff] [blame] | 79 | select NEEDS_MANUAL_RELOC |
Masahiro Yamada | 9fadbc8 | 2014-09-22 19:59:05 +0900 | [diff] [blame] | 80 | select SUPPORT_OF_CONTROL |
Simon Glass | 4c3a620 | 2017-05-17 03:25:39 -0600 | [diff] [blame] | 81 | imply CMD_IRQ |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 82 | |
| 83 | config MIPS |
| 84 | bool "MIPS architecture" |
Masahiro Yamada | 332b829 | 2016-06-28 10:48:42 +0900 | [diff] [blame] | 85 | select HAVE_ARCH_IOREMAP |
Masahiro Yamada | 9520b71 | 2014-10-24 01:30:43 +0900 | [diff] [blame] | 86 | select HAVE_PRIVATE_LIBGCC |
Daniel Schwierzeck | de5b6e2 | 2015-12-19 20:20:48 +0100 | [diff] [blame] | 87 | select SUPPORT_OF_CONTROL |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 88 | |
| 89 | config NDS32 |
| 90 | bool "NDS32 architecture" |
rick | 2492bfc | 2017-04-17 14:41:58 +0800 | [diff] [blame] | 91 | select SUPPORT_OF_CONTROL |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 92 | |
| 93 | config NIOS2 |
| 94 | bool "Nios II architecture" |
Thomas Chou | c617026 | 2015-10-21 21:34:57 +0800 | [diff] [blame] | 95 | select CPU |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 96 | select DM |
| 97 | select OF_CONTROL |
| 98 | select SUPPORT_OF_CONTROL |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 99 | imply CMD_DM |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 100 | |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 101 | config PPC |
| 102 | bool "PowerPC architecture" |
Masahiro Yamada | 9520b71 | 2014-10-24 01:30:43 +0900 | [diff] [blame] | 103 | select HAVE_PRIVATE_LIBGCC |
Simon Glass | 90f83c8 | 2015-02-07 11:51:35 -0700 | [diff] [blame] | 104 | select SUPPORT_OF_CONTROL |
Derald D. Woods | eb730bd | 2018-01-22 17:17:10 -0600 | [diff] [blame] | 105 | select SYS_BOOT_GET_CMDLINE |
| 106 | select SYS_BOOT_GET_KBD |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 107 | |
Rick Chen | 3301bfc | 2017-12-26 13:55:58 +0800 | [diff] [blame] | 108 | config RISCV |
Bin Meng | 6b69775 | 2018-09-26 06:55:06 -0700 | [diff] [blame] | 109 | bool "RISC-V architecture" |
Anup Patel | 0af3e85 | 2019-02-25 08:14:04 +0000 | [diff] [blame] | 110 | select CREATE_ARCH_SYMLINK |
Rick Chen | 3301bfc | 2017-12-26 13:55:58 +0800 | [diff] [blame] | 111 | select SUPPORT_OF_CONTROL |
Bin Meng | a760eba | 2018-09-26 06:55:19 -0700 | [diff] [blame] | 112 | select OF_CONTROL |
| 113 | select DM |
Bin Meng | 3880c38 | 2018-09-26 06:55:20 -0700 | [diff] [blame] | 114 | imply DM_SERIAL |
| 115 | imply DM_ETH |
| 116 | imply DM_MMC |
| 117 | imply DM_SPI |
| 118 | imply DM_SPI_FLASH |
| 119 | imply BLK |
| 120 | imply CLK |
| 121 | imply MTD |
| 122 | imply TIMER |
Bin Meng | a760eba | 2018-09-26 06:55:19 -0700 | [diff] [blame] | 123 | imply CMD_DM |
Lukas Auer | 396f0bd | 2019-08-21 21:14:45 +0200 | [diff] [blame] | 124 | imply SPL_DM |
| 125 | imply SPL_OF_CONTROL |
| 126 | imply SPL_LIBCOMMON_SUPPORT |
| 127 | imply SPL_LIBGENERIC_SUPPORT |
Simon Glass | f4d6039 | 2021-08-08 12:20:12 -0600 | [diff] [blame] | 128 | imply SPL_SERIAL |
Lukas Auer | 396f0bd | 2019-08-21 21:14:45 +0200 | [diff] [blame] | 129 | imply SPL_TIMER |
Rick Chen | 3301bfc | 2017-12-26 13:55:58 +0800 | [diff] [blame] | 130 | |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 131 | config SANDBOX |
| 132 | bool "Sandbox" |
Marek BehĂșn | 7243493 | 2021-05-20 13:24:07 +0200 | [diff] [blame] | 133 | select ARCH_SUPPORTS_LTO |
Tom Rini | 22d567e | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 134 | select BOARD_LATE_INIT |
Michael Walle | 8ffe86c | 2020-05-22 14:07:38 +0200 | [diff] [blame] | 135 | select BZIP2 |
Heinrich Schuchardt | fedf656 | 2020-10-27 20:29:22 +0100 | [diff] [blame] | 136 | select CMD_POWEROFF |
Masahiro Yamada | 5ef5ccc | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 137 | select DM |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 138 | select DM_GPIO |
| 139 | select DM_I2C |
Masahiro Yamada | b11b235 | 2016-09-08 18:47:35 +0900 | [diff] [blame] | 140 | select DM_KEYBOARD |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 141 | select DM_MMC |
Masahiro Yamada | 5ef5ccc | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 142 | select DM_SERIAL |
Masahiro Yamada | 5ef5ccc | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 143 | select DM_SPI |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 144 | select DM_SPI_FLASH |
Michael Walle | 8ffe86c | 2020-05-22 14:07:38 +0200 | [diff] [blame] | 145 | select GZIP_COMPRESSED |
Adam Ford | b10ba90 | 2018-02-06 12:43:56 -0600 | [diff] [blame] | 146 | select HAVE_BLOCK_DEVICE |
Tom Rini | c20bb73 | 2017-07-22 18:36:16 -0400 | [diff] [blame] | 147 | select LZO |
Heinrich Schuchardt | a3fc9a4 | 2020-03-14 12:13:40 +0100 | [diff] [blame] | 148 | select OF_BOARD_SETUP |
Ramon Fried | c64f19b | 2019-04-27 11:15:23 +0300 | [diff] [blame] | 149 | select PCI_ENDPOINT |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 150 | select SPI |
| 151 | select SUPPORT_OF_CONTROL |
Heinrich Schuchardt | fedf656 | 2020-10-27 20:29:22 +0100 | [diff] [blame] | 152 | select SYSRESET_CMD_POWEROFF |
Tom Rini | 3ef67ae | 2021-08-26 11:47:59 -0400 | [diff] [blame] | 153 | select SYS_CACHE_SHIFT_4 |
Wasim Khan | 4dab60b | 2021-03-08 16:48:16 +0100 | [diff] [blame] | 154 | select IRQ |
Kory Maincent | 965a34f | 2021-05-04 19:31:23 +0200 | [diff] [blame] | 155 | select SUPPORT_EXTENSION_SCAN |
Simon Glass | a6cee93 | 2021-12-01 09:02:36 -0700 | [diff] [blame] | 156 | select SUPPORT_ACPI |
Bin Meng | 0c0d9b0 | 2018-08-02 23:58:03 -0700 | [diff] [blame] | 157 | imply BITREVERSE |
Simon Glass | 78b0ef5 | 2018-11-15 18:43:53 -0700 | [diff] [blame] | 158 | select BLOBLIST |
Marek BehĂșn | f8bd43f | 2021-05-20 13:24:08 +0200 | [diff] [blame] | 159 | imply LTO |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 160 | imply CMD_DM |
Heinrich Schuchardt | 0e29873 | 2020-11-12 00:29:59 +0100 | [diff] [blame] | 161 | imply CMD_EXCEPTION |
Simon Glass | f4cb474 | 2017-05-17 03:25:44 -0600 | [diff] [blame] | 162 | imply CMD_GETTIME |
Simon Glass | 027608e | 2017-05-17 03:25:25 -0600 | [diff] [blame] | 163 | imply CMD_HASH |
Simon Glass | 3bebbe6 | 2017-05-17 03:25:34 -0600 | [diff] [blame] | 164 | imply CMD_IO |
Simon Glass | 30daabc | 2017-05-17 03:25:36 -0600 | [diff] [blame] | 165 | imply CMD_IOTRACE |
Simon Glass | becaa8f | 2017-05-17 03:25:43 -0600 | [diff] [blame] | 166 | imply CMD_LZMADEC |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 167 | imply CMD_SATA |
Tom Rini | e5289a7 | 2019-05-29 17:01:28 -0400 | [diff] [blame] | 168 | imply CMD_SF |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 169 | imply CMD_SF_TEST |
Tom Rini | d8532af | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 170 | imply CRC32_VERIFY |
| 171 | imply FAT_WRITE |
Rajan Vaja | b3b2ddb | 2018-09-19 03:43:46 -0700 | [diff] [blame] | 172 | imply FIRMWARE |
Daniel Thompson | a9e2c67 | 2017-05-19 17:26:58 +0100 | [diff] [blame] | 173 | imply HASH_VERIFY |
Tom Rini | d8532af | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 174 | imply LZMA |
Simon Glass | 0e5faf0 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 175 | imply SCSI |
Jens Wiklander | dca252d | 2018-09-25 16:40:17 +0200 | [diff] [blame] | 176 | imply TEE |
Jens Wiklander | f1edae9 | 2018-09-25 16:40:23 +0200 | [diff] [blame] | 177 | imply AVB_VERIFY |
| 178 | imply LIBAVB |
| 179 | imply CMD_AVB |
Heinrich Schuchardt | ce33bcd | 2022-01-16 13:04:06 +0100 | [diff] [blame] | 180 | imply PARTITION_TYPE_GUID |
Igor Opaniuk | 623369c | 2021-02-14 16:27:27 +0100 | [diff] [blame] | 181 | imply SCP03 |
| 182 | imply CMD_SCP03 |
Jens Wiklander | f1edae9 | 2018-09-25 16:40:23 +0200 | [diff] [blame] | 183 | imply UDP_FUNCTION_FASTBOOT |
Bin Meng | 1bb290d | 2018-10-15 02:21:26 -0700 | [diff] [blame] | 184 | imply VIRTIO_MMIO |
| 185 | imply VIRTIO_PCI |
| 186 | imply VIRTIO_SANDBOX |
| 187 | imply VIRTIO_BLK |
| 188 | imply VIRTIO_NET |
Simon Glass | 799b29b | 2018-12-10 10:37:31 -0700 | [diff] [blame] | 189 | imply DM_SOUND |
Ramon Fried | c64f19b | 2019-04-27 11:15:23 +0300 | [diff] [blame] | 190 | imply PCI_SANDBOX_EP |
Simon Glass | 98d88f8 | 2019-02-16 20:24:49 -0700 | [diff] [blame] | 191 | imply PCH |
Alex Marginean | 0daa53a | 2019-06-03 19:12:28 +0300 | [diff] [blame] | 192 | imply PHYLIB |
| 193 | imply DM_MDIO |
Alex Marginean | 0649be5 | 2019-07-12 10:13:53 +0300 | [diff] [blame] | 194 | imply DM_MDIO_MUX |
Simon Glass | 8c50102 | 2019-12-06 21:41:54 -0700 | [diff] [blame] | 195 | imply ACPI_PMC |
| 196 | imply ACPI_PMC_SANDBOX |
| 197 | imply CMD_PMC |
John Chau | fce6f98 | 2020-07-02 12:01:21 +0800 | [diff] [blame] | 198 | imply CMD_CLONE |
Simon Glass | 07a8886 | 2020-11-05 10:33:38 -0700 | [diff] [blame] | 199 | imply SILENT_CONSOLE |
Simon Glass | 529e208 | 2020-11-05 10:33:48 -0700 | [diff] [blame] | 200 | imply BOOTARGS_SUBST |
Claudiu Manoil | d9eaa92 | 2021-03-14 20:14:57 +0800 | [diff] [blame] | 201 | imply PHY_FIXED |
| 202 | imply DM_DSA |
Kory Maincent | 965a34f | 2021-05-04 19:31:23 +0200 | [diff] [blame] | 203 | imply CMD_EXTENSION |
Simon Glass | 278efc68 | 2021-11-24 09:26:44 -0700 | [diff] [blame] | 204 | imply KEYBOARD |
Simon Glass | ef9e762 | 2021-11-24 09:26:42 -0700 | [diff] [blame] | 205 | imply PHYSMEM |
Simon Glass | 29e64b5 | 2021-12-01 09:02:43 -0700 | [diff] [blame^] | 206 | imply GENERATE_ACPI_TABLE |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 207 | |
| 208 | config SH |
| 209 | bool "SuperH architecture" |
Masahiro Yamada | 9520b71 | 2014-10-24 01:30:43 +0900 | [diff] [blame] | 210 | select HAVE_PRIVATE_LIBGCC |
Marek Vasut | 8fc9fa1 | 2019-08-31 18:27:58 +0200 | [diff] [blame] | 211 | select SUPPORT_OF_CONTROL |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 212 | |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 213 | config X86 |
| 214 | bool "x86 architecture" |
Simon Glass | c9ae1ae | 2019-04-25 21:58:45 -0600 | [diff] [blame] | 215 | select SUPPORT_SPL |
| 216 | select SUPPORT_TPL |
Masahiro Yamada | 5865450 | 2015-07-15 20:59:29 +0900 | [diff] [blame] | 217 | select CREATE_ARCH_SYMLINK |
Masahiro Yamada | 5ef5ccc | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 218 | select DM |
Bin Meng | 59c4aa4 | 2018-10-15 02:21:16 -0700 | [diff] [blame] | 219 | select HAVE_ARCH_IOMAP |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 220 | select HAVE_PRIVATE_LIBGCC |
| 221 | select OF_CONTROL |
Bin Meng | 0e0204d | 2017-07-30 06:23:16 -0700 | [diff] [blame] | 222 | select PCI |
Simon Glass | a6cee93 | 2021-12-01 09:02:36 -0700 | [diff] [blame] | 223 | select SUPPORT_ACPI |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 224 | select SUPPORT_OF_CONTROL |
Tom Rini | 3ef67ae | 2021-08-26 11:47:59 -0400 | [diff] [blame] | 225 | select SYS_CACHE_SHIFT_6 |
Bin Meng | f0e1c3e | 2017-07-30 06:23:07 -0700 | [diff] [blame] | 226 | select TIMER |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 227 | select USE_PRIVATE_LIBGCC |
Bin Meng | f0e1c3e | 2017-07-30 06:23:07 -0700 | [diff] [blame] | 228 | select X86_TSC_TIMER |
Wasim Khan | 4a7fef7 | 2021-03-08 16:48:15 +0100 | [diff] [blame] | 229 | select IRQ |
Simon Glass | f69c009 | 2020-07-19 13:55:52 -0600 | [diff] [blame] | 230 | imply HAS_ROM if X86_RESET_VECTOR |
Bin Meng | 73f5bc1 | 2017-07-30 19:24:02 -0700 | [diff] [blame] | 231 | imply BLK |
Michal Simek | 2e7c819 | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 232 | imply CMD_DM |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 233 | imply CMD_FPGA_LOADMK |
| 234 | imply CMD_GETTIME |
| 235 | imply CMD_IO |
| 236 | imply CMD_IRQ |
| 237 | imply CMD_PCI |
Tom Rini | e5289a7 | 2019-05-29 17:01:28 -0400 | [diff] [blame] | 238 | imply CMD_SF |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 239 | imply CMD_SF_TEST |
| 240 | imply CMD_ZBOOT |
Bin Meng | 0e0204d | 2017-07-30 06:23:16 -0700 | [diff] [blame] | 241 | imply DM_ETH |
| 242 | imply DM_GPIO |
| 243 | imply DM_KEYBOARD |
Simon Glass | 828b725 | 2017-07-30 19:24:01 -0700 | [diff] [blame] | 244 | imply DM_MMC |
Bin Meng | 0e0204d | 2017-07-30 06:23:16 -0700 | [diff] [blame] | 245 | imply DM_RTC |
Bin Meng | 73f5bc1 | 2017-07-30 19:24:02 -0700 | [diff] [blame] | 246 | imply DM_SCSI |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 247 | imply DM_SERIAL |
Bin Meng | 0e0204d | 2017-07-30 06:23:16 -0700 | [diff] [blame] | 248 | imply DM_SPI |
| 249 | imply DM_SPI_FLASH |
| 250 | imply DM_USB |
| 251 | imply DM_VIDEO |
Bin Meng | af5b8d2 | 2018-07-19 03:07:33 -0700 | [diff] [blame] | 252 | imply SYSRESET |
Kever Yang | 525ea47 | 2019-04-02 20:41:25 +0800 | [diff] [blame] | 253 | imply SPL_SYSRESET |
Bin Meng | af5b8d2 | 2018-07-19 03:07:33 -0700 | [diff] [blame] | 254 | imply SYSRESET_X86 |
Chris Packham | b110e11 | 2017-08-28 20:50:46 +1200 | [diff] [blame] | 255 | imply USB_ETHER_ASIX |
| 256 | imply USB_ETHER_SMSC95XX |
Michal Simek | 84f3dec | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 257 | imply USB_HOST_ETHER |
Simon Glass | 98d88f8 | 2019-02-16 20:24:49 -0700 | [diff] [blame] | 258 | imply PCH |
Simon Glass | ef9e762 | 2021-11-24 09:26:42 -0700 | [diff] [blame] | 259 | imply PHYSMEM |
Simon Glass | 56382fb | 2019-05-02 10:52:24 -0600 | [diff] [blame] | 260 | imply RTC_MC146818 |
Simon Glass | b028228 | 2021-12-01 09:02:39 -0700 | [diff] [blame] | 261 | imply ACPIGEN if !QEMU && !EFI_APP |
Simon Glass | bee77f6 | 2020-11-05 06:32:17 -0700 | [diff] [blame] | 262 | imply SYSINFO if GENERATE_SMBIOS_TABLE |
| 263 | imply SYSINFO_SMBIOS if GENERATE_SMBIOS_TABLE |
Simon Glass | 65831d9 | 2021-12-18 11:27:50 -0700 | [diff] [blame] | 264 | imply TIMESTAMP |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 265 | |
Simon Glass | c9ae1ae | 2019-04-25 21:58:45 -0600 | [diff] [blame] | 266 | # Thing to enable for when SPL/TPL are enabled: SPL |
| 267 | imply SPL_DM |
| 268 | imply SPL_OF_LIBFDT |
Simon Glass | 284cb9c | 2021-07-10 21:14:31 -0600 | [diff] [blame] | 269 | imply SPL_DRIVERS_MISC |
Simon Glass | 035939e | 2021-07-10 21:14:30 -0600 | [diff] [blame] | 270 | imply SPL_GPIO |
Simon Glass | 7b1ecb8 | 2019-12-06 21:42:51 -0700 | [diff] [blame] | 271 | imply SPL_PINCTRL |
Simon Glass | c9ae1ae | 2019-04-25 21:58:45 -0600 | [diff] [blame] | 272 | imply SPL_LIBCOMMON_SUPPORT |
| 273 | imply SPL_LIBGENERIC_SUPPORT |
Simon Glass | f4d6039 | 2021-08-08 12:20:12 -0600 | [diff] [blame] | 274 | imply SPL_SERIAL |
Simon Glass | c9ae1ae | 2019-04-25 21:58:45 -0600 | [diff] [blame] | 275 | imply SPL_SPI_FLASH_SUPPORT |
Simon Glass | a582047 | 2021-08-08 12:20:14 -0600 | [diff] [blame] | 276 | imply SPL_SPI |
Simon Glass | c9ae1ae | 2019-04-25 21:58:45 -0600 | [diff] [blame] | 277 | imply SPL_OF_CONTROL |
| 278 | imply SPL_TIMER |
| 279 | imply SPL_REGMAP |
| 280 | imply SPL_SYSCON |
| 281 | # TPL |
| 282 | imply TPL_DM |
Simon Glass | 284cb9c | 2021-07-10 21:14:31 -0600 | [diff] [blame] | 283 | imply TPL_DRIVERS_MISC |
Simon Glass | 035939e | 2021-07-10 21:14:30 -0600 | [diff] [blame] | 284 | imply TPL_GPIO |
Simon Glass | 7b1ecb8 | 2019-12-06 21:42:51 -0700 | [diff] [blame] | 285 | imply TPL_PINCTRL |
Simon Glass | c9ae1ae | 2019-04-25 21:58:45 -0600 | [diff] [blame] | 286 | imply TPL_LIBCOMMON_SUPPORT |
| 287 | imply TPL_LIBGENERIC_SUPPORT |
Simon Glass | f4d6039 | 2021-08-08 12:20:12 -0600 | [diff] [blame] | 288 | imply TPL_SERIAL |
Simon Glass | c9ae1ae | 2019-04-25 21:58:45 -0600 | [diff] [blame] | 289 | imply TPL_OF_CONTROL |
| 290 | imply TPL_TIMER |
| 291 | imply TPL_REGMAP |
| 292 | imply TPL_SYSCON |
| 293 | |
Chris Zankel | 1387dab | 2016-08-10 18:36:44 +0300 | [diff] [blame] | 294 | config XTENSA |
| 295 | bool "Xtensa architecture" |
| 296 | select CREATE_ARCH_SYMLINK |
| 297 | select SUPPORT_OF_CONTROL |
| 298 | |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 299 | endchoice |
| 300 | |
Masahiro Yamada | 52a5f97 | 2014-09-14 03:01:48 +0900 | [diff] [blame] | 301 | config SYS_ARCH |
| 302 | string |
| 303 | help |
| 304 | This option should contain the architecture name to build the |
| 305 | appropriate arch/<CONFIG_SYS_ARCH> directory. |
| 306 | All the architectures should specify this option correctly. |
| 307 | |
| 308 | config SYS_CPU |
| 309 | string |
| 310 | help |
| 311 | This option should contain the CPU name to build the correct |
| 312 | arch/<CONFIG_SYS_ARCH>/cpu/<CONFIG_SYS_CPU> directory. |
| 313 | |
| 314 | This is optional. For those targets without the CPU directory, |
| 315 | leave this option empty. |
| 316 | |
| 317 | config SYS_SOC |
| 318 | string |
| 319 | help |
| 320 | This option should contain the SoC name to build the directory |
| 321 | arch/<CONFIG_SYS_ARCH>/cpu/<CONFIG_SYS_CPU>/<CONFIG_SYS_SOC>. |
| 322 | |
| 323 | This is optional. For those targets without the SoC directory, |
| 324 | leave this option empty. |
| 325 | |
| 326 | config SYS_VENDOR |
| 327 | string |
| 328 | help |
| 329 | This option should contain the vendor name of the target board. |
| 330 | If it is set and |
| 331 | board/<CONFIG_SYS_VENDOR>/common/Makefile exists, the vendor common |
| 332 | directory is compiled. |
| 333 | If CONFIG_SYS_BOARD is also set, the sources under |
| 334 | board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD> directory are compiled. |
| 335 | |
| 336 | This is optional. For those targets without the vendor directory, |
| 337 | leave this option empty. |
| 338 | |
| 339 | config SYS_BOARD |
| 340 | string |
| 341 | help |
| 342 | This option should contain the name of the target board. |
| 343 | If it is set, either board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD> |
| 344 | or board/<CONFIG_SYS_BOARD> directory is compiled depending on |
| 345 | whether CONFIG_SYS_VENDOR is set or not. |
| 346 | |
| 347 | This is optional. For those targets without the board directory, |
| 348 | leave this option empty. |
| 349 | |
| 350 | config SYS_CONFIG_NAME |
| 351 | string |
| 352 | help |
| 353 | This option should contain the base name of board header file. |
| 354 | The header file include/configs/<CONFIG_SYS_CONFIG_NAME>.h |
| 355 | should be included from include/config.h. |
| 356 | |
Vignesh Raghavendra | 384c141 | 2019-04-22 21:43:32 +0530 | [diff] [blame] | 357 | config SYS_DISABLE_DCACHE_OPS |
| 358 | bool |
| 359 | help |
| 360 | This option disables dcache flush and dcache invalidation |
| 361 | operations. For example, on coherent systems where cache |
| 362 | operatios are not required, enable this option to avoid them. |
| 363 | Note that, its up to the individual architectures to implement |
| 364 | this functionality. |
| 365 | |
Tom Rini | e9269a0 | 2021-12-12 22:12:30 -0500 | [diff] [blame] | 366 | config SYS_IMMR |
| 367 | hex |
| 368 | depends on PPC || FSL_LSCH2 || FSL_LSCH3 || ARCH_LS1021A |
| 369 | default 0xFF000000 if MPC8xx |
| 370 | default 0xF0000000 if ARCH_MPC8313 |
| 371 | default 0xE0000000 if MPC83xx && !ARCH_MPC8313 |
| 372 | default 0x01000000 if ARCH_LS1021A || FSL_LSCH2 || FSL_LSCH3 |
| 373 | default SYS_CCSRBAR_DEFAULT |
| 374 | help |
| 375 | Address for the Internal Memory-Mapped Registers (IMMR) window used |
| 376 | to configure the features of many Freescale / NXP SoCs. |
| 377 | |
Tom Rini | e1e8544 | 2021-08-27 21:18:30 -0400 | [diff] [blame] | 378 | config SKIP_LOWLEVEL_INIT |
| 379 | bool "Skip the calls to certain low level initialization functions" |
| 380 | depends on ARM || NDS32 || MIPS || RISCV |
| 381 | help |
| 382 | If enabled, then certain low level initializations (like setting up |
| 383 | the memory controller) are omitted and/or U-Boot does not relocate |
| 384 | itself into RAM. |
| 385 | Normally this variable MUST NOT be defined. The only exception is |
| 386 | when U-Boot is loaded (to RAM) by some other boot loader or by a |
| 387 | debugger which performs these initializations itself. |
| 388 | |
| 389 | config SPL_SKIP_LOWLEVEL_INIT |
| 390 | bool "Skip the calls to certain low level initialization functions" |
| 391 | depends on SPL && (ARM || NDS32 || MIPS || RISCV) |
| 392 | help |
| 393 | If enabled, then certain low level initializations (like setting up |
| 394 | the memory controller) are omitted and/or U-Boot does not relocate |
| 395 | itself into RAM. |
| 396 | Normally this variable MUST NOT be defined. The only exception is |
| 397 | when U-Boot is loaded (to RAM) by some other boot loader or by a |
| 398 | debugger which performs these initializations itself. |
| 399 | |
| 400 | config TPL_SKIP_LOWLEVEL_INIT |
| 401 | bool "Skip the calls to certain low level initialization functions" |
| 402 | depends on SPL && ARM |
| 403 | help |
| 404 | If enabled, then certain low level initializations (like setting up |
| 405 | the memory controller) are omitted and/or U-Boot does not relocate |
| 406 | itself into RAM. |
| 407 | Normally this variable MUST NOT be defined. The only exception is |
| 408 | when U-Boot is loaded (to RAM) by some other boot loader or by a |
| 409 | debugger which performs these initializations itself. |
| 410 | |
| 411 | config SKIP_LOWLEVEL_INIT_ONLY |
| 412 | bool "Skip the call to lowlevel_init during early boot ONLY" |
| 413 | depends on ARM |
| 414 | help |
| 415 | This allows just the call to lowlevel_init() to be skipped. The |
| 416 | normal CP15 init (such as enabling the instruction cache) is still |
| 417 | performed. |
| 418 | |
| 419 | config SPL_SKIP_LOWLEVEL_INIT_ONLY |
| 420 | bool "Skip the call to lowlevel_init during early boot ONLY" |
| 421 | depends on SPL && ARM |
| 422 | help |
| 423 | This allows just the call to lowlevel_init() to be skipped. The |
| 424 | normal CP15 init (such as enabling the instruction cache) is still |
| 425 | performed. |
| 426 | |
| 427 | config TPL_SKIP_LOWLEVEL_INIT_ONLY |
| 428 | bool "Skip the call to lowlevel_init during early boot ONLY" |
| 429 | depends on TPL && ARM |
| 430 | help |
| 431 | This allows just the call to lowlevel_init() to be skipped. The |
| 432 | normal CP15 init (such as enabling the instruction cache) is still |
| 433 | performed. |
| 434 | |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 435 | source "arch/arc/Kconfig" |
| 436 | source "arch/arm/Kconfig" |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 437 | source "arch/m68k/Kconfig" |
| 438 | source "arch/microblaze/Kconfig" |
| 439 | source "arch/mips/Kconfig" |
| 440 | source "arch/nds32/Kconfig" |
| 441 | source "arch/nios2/Kconfig" |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 442 | source "arch/powerpc/Kconfig" |
| 443 | source "arch/sandbox/Kconfig" |
| 444 | source "arch/sh/Kconfig" |
Masahiro Yamada | 804bc5e | 2014-07-30 14:08:15 +0900 | [diff] [blame] | 445 | source "arch/x86/Kconfig" |
Chris Zankel | 1387dab | 2016-08-10 18:36:44 +0300 | [diff] [blame] | 446 | source "arch/xtensa/Kconfig" |
Rick Chen | 3301bfc | 2017-12-26 13:55:58 +0800 | [diff] [blame] | 447 | source "arch/riscv/Kconfig" |