Skip to content

Commit e57f9a2

Browse files
Markos Chandrasralfbaechle
authored andcommitted
MIPS: Add MIPS I6400 probe support
Add a case in cpu_probe_mips for the MIPS I6400 processor ID, which sets the CPU type to the new CPU_I6400. Signed-off-by: Markos Chandras <[email protected]> Cc: [email protected] Patchwork: https://patchwork.linux-mips.org/patch/10636/ Signed-off-by: Ralf Baechle <[email protected]>
1 parent 4e88a86 commit e57f9a2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

arch/mips/kernel/cpu-probe.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1121,6 +1121,10 @@ static inline void cpu_probe_mips(struct cpuinfo_mips *c, unsigned int cpu)
11211121
c->cputype = CPU_P5600;
11221122
__cpu_name[cpu] = "MIPS P5600";
11231123
break;
1124+
case PRID_IMP_I6400:
1125+
c->cputype = CPU_I6400;
1126+
__cpu_name[cpu] = "MIPS I6400";
1127+
break;
11241128
case PRID_IMP_M5150:
11251129
c->cputype = CPU_M5150;
11261130
__cpu_name[cpu] = "MIPS M5150";

0 commit comments

Comments
 (0)