diff options
author | Paul Burton <paul.burton@imgtec.com> | 2016-05-16 10:52:14 +0100 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2016-05-21 01:36:39 +0200 |
commit | 40ba13c98627055465709acd67872e381b42f928 (patch) | |
tree | d64c4ffb29516b513dafce74cc64a93e7a3149b5 | |
parent | 4685d4e90d615adbca417826a7b777ec431e48a5 (diff) | |
download | u-boot-40ba13c98627055465709acd67872e381b42f928.zip u-boot-40ba13c98627055465709acd67872e381b42f928.tar.gz u-boot-40ba13c98627055465709acd67872e381b42f928.tar.bz2 |
malta: Support MIPS32r6 configurations
Both real Malta boards & QEMU's Malta emulation can feature MIPS32r6
CPUs. Allow building U-Boot for such systems by selecting
CONFIG_SUPPORTS_CPU_MIPS32_R6 for Malta.
Signed-off-by: Paul Burton <paul.burton@imgtec.com>
-rw-r--r-- | arch/mips/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 994168c..dc34c18 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -28,6 +28,7 @@ config TARGET_MALTA select SUPPORTS_LITTLE_ENDIAN select SUPPORTS_CPU_MIPS32_R1 select SUPPORTS_CPU_MIPS32_R2 + select SUPPORTS_CPU_MIPS32_R6 select SWAP_IO_SPACE select MIPS_L1_CACHE_SHIFT_6 |