aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/bcm47xx
diff options
context:
space:
mode:
authorSteven J. Hill <Steven.Hill@imgtec.com>2014-01-17 16:03:50 -0500
committerRalf Baechle <ralf@linux-mips.org>2014-03-06 15:25:21 -0500
commit442e14a2c55e55f208bf87e3686396b4ff17ebf6 (patch)
tree9370c3907bb6b07027a95181d2e5ee3961641ec3 /arch/mips/bcm47xx
parent02dc6bfb080e8205aacea5c4b4dd6a9bd4c9406e (diff)
MIPS: Add 1074K CPU support explicitly.
The 1074K is a multiprocessing coherent processing system (CPS) based on modified 74K cores. This patch makes the 1074K an actual unique CPU type, instead of a 74K derivative, which it is not. Signed-off-by: Steven J. Hill <Steven.Hill@imgtec.com> Reviewed-by: Leonid Yegoshin <Leonid.Yegoshin@imgtec.com> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/6389/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/bcm47xx')
-rw-r--r--arch/mips/bcm47xx/setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/bcm47xx/setup.c b/arch/mips/bcm47xx/setup.c
index 025be218ea15..b847d0373443 100644
--- a/arch/mips/bcm47xx/setup.c
+++ b/arch/mips/bcm47xx/setup.c
@@ -212,7 +212,7 @@ void __init plat_mem_setup(void)
212{ 212{
213 struct cpuinfo_mips *c = &current_cpu_data; 213 struct cpuinfo_mips *c = &current_cpu_data;
214 214
215 if (c->cputype == CPU_74K) { 215 if ((c->cputype == CPU_74K) || (c->cputype == CPU_1074K)) {
216 printk(KERN_INFO "bcm47xx: using bcma bus\n"); 216 printk(KERN_INFO "bcm47xx: using bcma bus\n");
217#ifdef CONFIG_BCM47XX_BCMA 217#ifdef CONFIG_BCM47XX_BCMA
218 bcm47xx_bus_type = BCM47XX_BUS_TYPE_BCMA; 218 bcm47xx_bus_type = BCM47XX_BUS_TYPE_BCMA;