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/oprofile | |
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/oprofile')
-rw-r--r-- | arch/mips/oprofile/common.c | 1 | ||||
-rw-r--r-- | arch/mips/oprofile/op_model_mipsxx.c | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/arch/mips/oprofile/common.c b/arch/mips/oprofile/common.c index efd2eb3d92e3..2a86e38872a7 100644 --- a/arch/mips/oprofile/common.c +++ b/arch/mips/oprofile/common.c | |||
@@ -86,6 +86,7 @@ int __init oprofile_arch_init(struct oprofile_operations *ops) | |||
86 | case CPU_34K: | 86 | case CPU_34K: |
87 | case CPU_1004K: | 87 | case CPU_1004K: |
88 | case CPU_74K: | 88 | case CPU_74K: |
89 | case CPU_INTERAPTIV: | ||
89 | case CPU_PROAPTIV: | 90 | case CPU_PROAPTIV: |
90 | case CPU_LOONGSON1: | 91 | case CPU_LOONGSON1: |
91 | case CPU_SB1: | 92 | case CPU_SB1: |
diff --git a/arch/mips/oprofile/op_model_mipsxx.c b/arch/mips/oprofile/op_model_mipsxx.c index 3e28aaa39bc9..4d94d75ec6f9 100644 --- a/arch/mips/oprofile/op_model_mipsxx.c +++ b/arch/mips/oprofile/op_model_mipsxx.c | |||
@@ -376,6 +376,10 @@ static int __init mipsxx_init(void) | |||
376 | op_model_mipsxx_ops.cpu_type = "mips/74K"; | 376 | op_model_mipsxx_ops.cpu_type = "mips/74K"; |
377 | break; | 377 | break; |
378 | 378 | ||
379 | case CPU_INTERAPTIV: | ||
380 | op_model_mipsxx_ops.cpu_type = "mips/interAptiv"; | ||
381 | break; | ||
382 | |||
379 | case CPU_PROAPTIV: | 383 | case CPU_PROAPTIV: |
380 | op_model_mipsxx_ops.cpu_type = "mips/proAptiv"; | 384 | op_model_mipsxx_ops.cpu_type = "mips/proAptiv"; |
381 | break; | 385 | break; |