diff options
author | Leonid Yegoshin <Leonid.Yegoshin@imgtec.com> | 2013-11-27 05:07:53 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-01-22 14:19:01 -0500 |
commit | 26ab96dfa9f98d74ef38efbe830d356547a292c1 (patch) | |
tree | 3789a48dbf291811980cde03016eed2dfcde419a /arch/mips/kernel | |
parent | 0ce7d58ee0d814622bf7b4700925455dd4960ddd (diff) |
MIPS: Add support for interAptiv cores
The interAptiv is a power-efficient multi-core microprocessor
for use in system-on-chip (SoC) applications. The interAptiv combines
a multi-threading pipeline with a coherence manager to deliver improved
computational throughput and power efficiency. The interAptiv can
contain one to four MIPS32R3 interAptiv cores, system level
coherence manager with L2 cache, optional coherent I/O port,
and optional floating point unit.
Signed-off-by: Leonid Yegoshin <Leonid.Yegoshin@imgtec.com>
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Signed-off-by: John Crispin <blogic@openwrt.org>
Patchwork: http://patchwork.linux-mips.org/patch/6163/
Diffstat (limited to 'arch/mips/kernel')
-rw-r--r-- | arch/mips/kernel/idle.c | 1 | ||||
-rw-r--r-- | arch/mips/kernel/spram.c | 1 | ||||
-rw-r--r-- | arch/mips/kernel/traps.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/arch/mips/kernel/idle.c b/arch/mips/kernel/idle.c index cb2c94f13d01..3553243bf9d6 100644 --- a/arch/mips/kernel/idle.c +++ b/arch/mips/kernel/idle.c | |||
@@ -184,6 +184,7 @@ void __init check_wait(void) | |||
184 | case CPU_24K: | 184 | case CPU_24K: |
185 | case CPU_34K: | 185 | case CPU_34K: |
186 | case CPU_1004K: | 186 | case CPU_1004K: |
187 | case CPU_INTERAPTIV: | ||
187 | case CPU_PROAPTIV: | 188 | case CPU_PROAPTIV: |
188 | cpu_wait = r4k_wait; | 189 | cpu_wait = r4k_wait; |
189 | if (read_c0_config7() & MIPS_CONF7_WII) | 190 | if (read_c0_config7() & MIPS_CONF7_WII) |
diff --git a/arch/mips/kernel/spram.c b/arch/mips/kernel/spram.c index fb72b803b754..dfed8a41c696 100644 --- a/arch/mips/kernel/spram.c +++ b/arch/mips/kernel/spram.c | |||
@@ -206,6 +206,7 @@ void spram_config(void) | |||
206 | case CPU_34K: | 206 | case CPU_34K: |
207 | case CPU_74K: | 207 | case CPU_74K: |
208 | case CPU_1004K: | 208 | case CPU_1004K: |
209 | case CPU_INTERAPTIV: | ||
209 | case CPU_PROAPTIV: | 210 | case CPU_PROAPTIV: |
210 | config0 = read_c0_config(); | 211 | config0 = read_c0_config(); |
211 | /* FIXME: addresses are Malta specific */ | 212 | /* FIXME: addresses are Malta specific */ |
diff --git a/arch/mips/kernel/traps.c b/arch/mips/kernel/traps.c index 39370e1d4362..e0b499694d18 100644 --- a/arch/mips/kernel/traps.c +++ b/arch/mips/kernel/traps.c | |||
@@ -1337,6 +1337,7 @@ static inline void parity_protection_init(void) | |||
1337 | case CPU_34K: | 1337 | case CPU_34K: |
1338 | case CPU_74K: | 1338 | case CPU_74K: |
1339 | case CPU_1004K: | 1339 | case CPU_1004K: |
1340 | case CPU_INTERAPTIV: | ||
1340 | case CPU_PROAPTIV: | 1341 | case CPU_PROAPTIV: |
1341 | { | 1342 | { |
1342 | #define ERRCTL_PE 0x80000000 | 1343 | #define ERRCTL_PE 0x80000000 |