summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorVicente Olivert Riera <Vincent.Riera@imgtec.com>2016-09-30 10:36:59 +0100
committerPeter Korsgaard <peter@korsgaard.com>2016-10-15 13:22:17 +0200
commit3cfbeb8363e61d7652e9f67d7dffc225d9261b13 (patch)
tree1b53307818b2a624a9f5f86caeeff7f851921d92 /arch
parent73e16457469f18d755c115a77c193c8cdeee00ab (diff)
MIPS: add support for P6600 cores
-march=p6600 is not yet supported in GCC upstream, so disabling all versions when selecting this core. Note that P6600 implies a MIPS R6 CPU, and some GCC versions are already disabled for R6, so we don't need to disable those ones for P6600 as well. The external Codescape IMG GNU Linux Toolchain has support for this core. Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/Config.in.mips5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/Config.in.mips b/arch/Config.in.mips
index 897c9446f..f7bfa2168 100644
--- a/arch/Config.in.mips
+++ b/arch/Config.in.mips
@@ -79,6 +79,10 @@ config BR2_mips_i6400
bool "I6400"
depends on BR2_ARCH_IS_64
select BR2_MIPS_CPU_MIPS64R6
+config BR2_mips_p6600
+ bool "P6600"
+ depends on BR2_ARCH_IS_64
+ select BR2_MIPS_CPU_MIPS64R6
endchoice
@@ -133,6 +137,7 @@ config BR2_GCC_TARGET_ARCH
default "mips64r5" if BR2_mips_64r5
default "mips64r6" if BR2_mips_64r6
default "i6400" if BR2_mips_i6400
+ default "p6600" if BR2_mips_p6600
config BR2_MIPS_OABI32
bool