Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1 | menu "MIPS architecture" |
| 2 | depends on MIPS |
| 3 | |
| 4 | config SYS_ARCH |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 5 | default "mips" |
| 6 | |
Daniel Schwierzeck | b9863b6 | 2014-10-26 14:14:07 +0100 | [diff] [blame] | 7 | config SYS_CPU |
| 8 | default "mips32" if CPU_MIPS32_R1 || CPU_MIPS32_R2 |
| 9 | default "mips64" if CPU_MIPS64_R1 || CPU_MIPS64_R2 |
| 10 | |
Masahiro Yamada | 7bfd5ee | 2014-10-24 01:30:46 +0900 | [diff] [blame] | 11 | config USE_PRIVATE_LIBGCC |
| 12 | default y |
| 13 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 14 | choice |
| 15 | prompt "Target select" |
| 16 | |
| 17 | config TARGET_QEMU_MIPS |
| 18 | bool "Support qemu-mips" |
Daniel Schwierzeck | 0e1dc34 | 2014-10-26 14:14:07 +0100 | [diff] [blame] | 19 | select SUPPORTS_BIG_ENDIAN |
| 20 | select SUPPORTS_LITTLE_ENDIAN |
Daniel Schwierzeck | 02611cb | 2014-10-26 14:14:07 +0100 | [diff] [blame] | 21 | select SUPPORTS_CPU_MIPS32_R1 |
| 22 | select SUPPORTS_CPU_MIPS32_R2 |
Daniel Schwierzeck | aa45f75 | 2014-10-26 14:14:07 +0100 | [diff] [blame] | 23 | select SUPPORTS_CPU_MIPS64_R1 |
| 24 | select SUPPORTS_CPU_MIPS64_R2 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 25 | |
| 26 | config TARGET_MALTA |
| 27 | bool "Support malta" |
Daniel Schwierzeck | 0e1dc34 | 2014-10-26 14:14:07 +0100 | [diff] [blame] | 28 | select SUPPORTS_BIG_ENDIAN |
| 29 | select SUPPORTS_LITTLE_ENDIAN |
Daniel Schwierzeck | 02611cb | 2014-10-26 14:14:07 +0100 | [diff] [blame] | 30 | select SUPPORTS_CPU_MIPS32_R1 |
| 31 | select SUPPORTS_CPU_MIPS32_R2 |
Daniel Schwierzeck | 9d638ee | 2015-01-18 22:00:18 +0100 | [diff] [blame] | 32 | select SWAP_IO_SPACE |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 33 | |
| 34 | config TARGET_VCT |
| 35 | bool "Support vct" |
Daniel Schwierzeck | 0e1dc34 | 2014-10-26 14:14:07 +0100 | [diff] [blame] | 36 | select SUPPORTS_BIG_ENDIAN |
Daniel Schwierzeck | 02611cb | 2014-10-26 14:14:07 +0100 | [diff] [blame] | 37 | select SUPPORTS_CPU_MIPS32_R1 |
| 38 | select SUPPORTS_CPU_MIPS32_R2 |
Paul Burton | dd7c720 | 2015-01-29 01:28:02 +0000 | [diff] [blame] | 39 | select SYS_MIPS_CACHE_INIT_RAM_LOAD |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 40 | |
| 41 | config TARGET_DBAU1X00 |
| 42 | bool "Support dbau1x00" |
Daniel Schwierzeck | 0e1dc34 | 2014-10-26 14:14:07 +0100 | [diff] [blame] | 43 | select SUPPORTS_BIG_ENDIAN |
| 44 | select SUPPORTS_LITTLE_ENDIAN |
Daniel Schwierzeck | 02611cb | 2014-10-26 14:14:07 +0100 | [diff] [blame] | 45 | select SUPPORTS_CPU_MIPS32_R1 |
| 46 | select SUPPORTS_CPU_MIPS32_R2 |
Paul Burton | dd7c720 | 2015-01-29 01:28:02 +0000 | [diff] [blame] | 47 | select SYS_MIPS_CACHE_INIT_RAM_LOAD |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 48 | |
| 49 | config TARGET_PB1X00 |
| 50 | bool "Support pb1x00" |
Daniel Schwierzeck | 0e1dc34 | 2014-10-26 14:14:07 +0100 | [diff] [blame] | 51 | select SUPPORTS_LITTLE_ENDIAN |
Daniel Schwierzeck | 02611cb | 2014-10-26 14:14:07 +0100 | [diff] [blame] | 52 | select SUPPORTS_CPU_MIPS32_R1 |
| 53 | select SUPPORTS_CPU_MIPS32_R2 |
Paul Burton | dd7c720 | 2015-01-29 01:28:02 +0000 | [diff] [blame] | 54 | select SYS_MIPS_CACHE_INIT_RAM_LOAD |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 55 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 56 | |
| 57 | endchoice |
| 58 | |
| 59 | source "board/dbau1x00/Kconfig" |
| 60 | source "board/imgtec/malta/Kconfig" |
| 61 | source "board/micronas/vct/Kconfig" |
| 62 | source "board/pb1x00/Kconfig" |
| 63 | source "board/qemu-mips/Kconfig" |
| 64 | |
Daniel Schwierzeck | 0e1dc34 | 2014-10-26 14:14:07 +0100 | [diff] [blame] | 65 | if MIPS |
| 66 | |
| 67 | choice |
| 68 | prompt "Endianness selection" |
| 69 | help |
| 70 | Some MIPS boards can be configured for either little or big endian |
| 71 | byte order. These modes require different U-Boot images. In general there |
| 72 | is one preferred byteorder for a particular system but some systems are |
| 73 | just as commonly used in the one or the other endianness. |
| 74 | |
| 75 | config SYS_BIG_ENDIAN |
| 76 | bool "Big endian" |
| 77 | depends on SUPPORTS_BIG_ENDIAN |
| 78 | |
| 79 | config SYS_LITTLE_ENDIAN |
| 80 | bool "Little endian" |
| 81 | depends on SUPPORTS_LITTLE_ENDIAN |
| 82 | |
| 83 | endchoice |
| 84 | |
Daniel Schwierzeck | 02611cb | 2014-10-26 14:14:07 +0100 | [diff] [blame] | 85 | choice |
| 86 | prompt "CPU selection" |
| 87 | default CPU_MIPS32_R2 |
| 88 | |
| 89 | config CPU_MIPS32_R1 |
| 90 | bool "MIPS32 Release 1" |
| 91 | depends on SUPPORTS_CPU_MIPS32_R1 |
| 92 | select 32BIT |
| 93 | help |
| 94 | Choose this option to build an U-Boot for release 1 or later of the |
| 95 | MIPS32 architecture. |
| 96 | |
| 97 | config CPU_MIPS32_R2 |
| 98 | bool "MIPS32 Release 2" |
| 99 | depends on SUPPORTS_CPU_MIPS32_R2 |
| 100 | select 32BIT |
| 101 | help |
| 102 | Choose this option to build an U-Boot for release 2 or later of the |
| 103 | MIPS32 architecture. |
| 104 | |
| 105 | config CPU_MIPS64_R1 |
| 106 | bool "MIPS64 Release 1" |
| 107 | depends on SUPPORTS_CPU_MIPS64_R1 |
| 108 | select 64BIT |
| 109 | help |
| 110 | Choose this option to build a kernel for release 1 or later of the |
| 111 | MIPS64 architecture. |
| 112 | |
| 113 | config CPU_MIPS64_R2 |
| 114 | bool "MIPS64 Release 2" |
| 115 | depends on SUPPORTS_CPU_MIPS64_R2 |
| 116 | select 64BIT |
| 117 | help |
| 118 | Choose this option to build a kernel for release 2 or later of the |
| 119 | MIPS64 architecture. |
| 120 | |
| 121 | endchoice |
| 122 | |
Daniel Schwierzeck | 25fc664 | 2015-01-14 21:44:13 +0100 | [diff] [blame] | 123 | menu "OS boot interface" |
| 124 | |
| 125 | config MIPS_BOOT_CMDLINE_LEGACY |
| 126 | bool "Hand over legacy command line to Linux kernel" |
| 127 | default y |
| 128 | help |
| 129 | Enable this option if you want U-Boot to hand over the Yamon-style |
| 130 | command line to the kernel. All bootargs will be prepared as argc/argv |
| 131 | compatible list. The argument count (argc) is stored in register $a0. |
| 132 | The address of the argument list (argv) is stored in register $a1. |
| 133 | |
Daniel Schwierzeck | ca65e58 | 2015-01-14 21:44:13 +0100 | [diff] [blame] | 134 | config MIPS_BOOT_ENV_LEGACY |
| 135 | bool "Hand over legacy environment to Linux kernel" |
| 136 | default y |
| 137 | help |
| 138 | Enable this option if you want U-Boot to hand over the Yamon-style |
| 139 | environment to the kernel. Information like memory size, initrd |
| 140 | address and size will be prepared as zero-terminated key/value list. |
| 141 | The address of the enviroment is stored in register $a2. |
| 142 | |
Daniel Schwierzeck | 5002d8c | 2015-01-14 21:44:13 +0100 | [diff] [blame] | 143 | config MIPS_BOOT_FDT |
| 144 | bool "Hand over a flattened device tree to Linux kernel (INCOMPLETE)" |
| 145 | default n |
| 146 | help |
| 147 | Enable this option if you want U-Boot to hand over a flattened |
| 148 | device tree to the kernel. |
| 149 | |
| 150 | Note: the final hand over to the kernel is not yet implemented. After |
| 151 | the community agreed on the MIPS boot interface for device trees, |
| 152 | the corresponding code will be added. |
| 153 | |
Daniel Schwierzeck | 25fc664 | 2015-01-14 21:44:13 +0100 | [diff] [blame] | 154 | endmenu |
| 155 | |
Daniel Schwierzeck | 0e1dc34 | 2014-10-26 14:14:07 +0100 | [diff] [blame] | 156 | config SUPPORTS_BIG_ENDIAN |
| 157 | bool |
| 158 | |
| 159 | config SUPPORTS_LITTLE_ENDIAN |
| 160 | bool |
| 161 | |
Daniel Schwierzeck | 02611cb | 2014-10-26 14:14:07 +0100 | [diff] [blame] | 162 | config SUPPORTS_CPU_MIPS32_R1 |
| 163 | bool |
| 164 | |
| 165 | config SUPPORTS_CPU_MIPS32_R2 |
| 166 | bool |
| 167 | |
| 168 | config SUPPORTS_CPU_MIPS64_R1 |
| 169 | bool |
| 170 | |
| 171 | config SUPPORTS_CPU_MIPS64_R2 |
| 172 | bool |
| 173 | |
Daniel Schwierzeck | c57dafb | 2015-01-18 21:59:35 +0100 | [diff] [blame] | 174 | config CPU_MIPS32 |
| 175 | bool |
| 176 | default y if CPU_MIPS32_R1 || CPU_MIPS32_R2 |
| 177 | |
| 178 | config CPU_MIPS64 |
| 179 | bool |
| 180 | default y if CPU_MIPS64_R1 || CPU_MIPS64_R2 |
| 181 | |
Daniel Schwierzeck | 02611cb | 2014-10-26 14:14:07 +0100 | [diff] [blame] | 182 | config 32BIT |
| 183 | bool |
| 184 | |
| 185 | config 64BIT |
| 186 | bool |
| 187 | |
Daniel Schwierzeck | 9d638ee | 2015-01-18 22:00:18 +0100 | [diff] [blame] | 188 | config SWAP_IO_SPACE |
| 189 | bool |
| 190 | |
Paul Burton | dd7c720 | 2015-01-29 01:28:02 +0000 | [diff] [blame] | 191 | config SYS_MIPS_CACHE_INIT_RAM_LOAD |
| 192 | bool |
| 193 | |
Daniel Schwierzeck | 0e1dc34 | 2014-10-26 14:14:07 +0100 | [diff] [blame] | 194 | endif |
| 195 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 196 | endmenu |