Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1 | menu "MIPS architecture" |
| 2 | depends on MIPS |
| 3 | |
| 4 | config SYS_ARCH |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 5 | default "mips" |
| 6 | |
Masahiro Yamada | ee2e54f | 2014-10-24 01:30:46 +0900 | [diff] [blame] | 7 | config USE_PRIVATE_LIBGCC |
| 8 | default y |
| 9 | |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 10 | choice |
| 11 | prompt "Target select" |
| 12 | |
| 13 | config TARGET_QEMU_MIPS |
| 14 | bool "Support qemu-mips" |
Daniel Schwierzeck | a4c242b | 2014-10-26 14:14:07 +0100 | [diff] [blame^] | 15 | select SUPPORTS_BIG_ENDIAN |
| 16 | select SUPPORTS_LITTLE_ENDIAN |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 17 | |
| 18 | config TARGET_MALTA |
| 19 | bool "Support malta" |
Daniel Schwierzeck | a4c242b | 2014-10-26 14:14:07 +0100 | [diff] [blame^] | 20 | select SUPPORTS_BIG_ENDIAN |
| 21 | select SUPPORTS_LITTLE_ENDIAN |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 22 | |
| 23 | config TARGET_VCT |
| 24 | bool "Support vct" |
Daniel Schwierzeck | a4c242b | 2014-10-26 14:14:07 +0100 | [diff] [blame^] | 25 | select SUPPORTS_BIG_ENDIAN |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 26 | |
| 27 | config TARGET_DBAU1X00 |
| 28 | bool "Support dbau1x00" |
Daniel Schwierzeck | a4c242b | 2014-10-26 14:14:07 +0100 | [diff] [blame^] | 29 | select SUPPORTS_BIG_ENDIAN |
| 30 | select SUPPORTS_LITTLE_ENDIAN |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 31 | |
| 32 | config TARGET_PB1X00 |
| 33 | bool "Support pb1x00" |
Daniel Schwierzeck | a4c242b | 2014-10-26 14:14:07 +0100 | [diff] [blame^] | 34 | select SUPPORTS_LITTLE_ENDIAN |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 35 | |
| 36 | config TARGET_QEMU_MIPS64 |
| 37 | bool "Support qemu-mips64" |
Daniel Schwierzeck | a4c242b | 2014-10-26 14:14:07 +0100 | [diff] [blame^] | 38 | select SUPPORTS_BIG_ENDIAN |
| 39 | select SUPPORTS_LITTLE_ENDIAN |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 40 | |
| 41 | endchoice |
| 42 | |
| 43 | source "board/dbau1x00/Kconfig" |
| 44 | source "board/imgtec/malta/Kconfig" |
| 45 | source "board/micronas/vct/Kconfig" |
| 46 | source "board/pb1x00/Kconfig" |
| 47 | source "board/qemu-mips/Kconfig" |
| 48 | |
Daniel Schwierzeck | a4c242b | 2014-10-26 14:14:07 +0100 | [diff] [blame^] | 49 | if MIPS |
| 50 | |
| 51 | choice |
| 52 | prompt "Endianness selection" |
| 53 | help |
| 54 | Some MIPS boards can be configured for either little or big endian |
| 55 | byte order. These modes require different U-Boot images. In general there |
| 56 | is one preferred byteorder for a particular system but some systems are |
| 57 | just as commonly used in the one or the other endianness. |
| 58 | |
| 59 | config SYS_BIG_ENDIAN |
| 60 | bool "Big endian" |
| 61 | depends on SUPPORTS_BIG_ENDIAN |
| 62 | |
| 63 | config SYS_LITTLE_ENDIAN |
| 64 | bool "Little endian" |
| 65 | depends on SUPPORTS_LITTLE_ENDIAN |
| 66 | |
| 67 | endchoice |
| 68 | |
| 69 | config SUPPORTS_BIG_ENDIAN |
| 70 | bool |
| 71 | |
| 72 | config SUPPORTS_LITTLE_ENDIAN |
| 73 | bool |
| 74 | |
| 75 | endif |
| 76 | |
Masahiro Yamada | d3ae678 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 77 | endmenu |