diff options
author | Paul Burton <paul.burton@imgtec.com> | 2016-05-26 14:49:36 +0100 |
---|---|---|
committer | Daniel Schwierzeck <daniel.schwierzeck@gmail.com> | 2016-05-31 09:38:11 +0200 |
commit | 0f832b9cdcbe8a024b53c585622d70129652d20b (patch) | |
tree | 97fed9c304660ccb7d084a954cc2649872fa2461 /arch | |
parent | bed1ca322da9b597aa59723a02a1dd647bf8bde4 (diff) | |
download | u-boot-imx-0f832b9cdcbe8a024b53c585622d70129652d20b.zip u-boot-imx-0f832b9cdcbe8a024b53c585622d70129652d20b.tar.gz u-boot-imx-0f832b9cdcbe8a024b53c585622d70129652d20b.tar.bz2 |
malta: Allow MIPS64 builds
Both real Malta boards & emulators that mimic Malta (eg. QEMU) can
support MIPS64 CPUs. Allow MIPS64 builds of U-Boot for such boards,
which enables the user to make use of the whole 64 bit address space.
Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 53363e3..abaeaf0 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -33,6 +33,9 @@ config TARGET_MALTA select SUPPORTS_CPU_MIPS32_R1 select SUPPORTS_CPU_MIPS32_R2 select SUPPORTS_CPU_MIPS32_R6 + select SUPPORTS_CPU_MIPS64_R1 + select SUPPORTS_CPU_MIPS64_R2 + select SUPPORTS_CPU_MIPS64_R6 select SWAP_IO_SPACE select MIPS_L1_CACHE_SHIFT_6 |