mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 03:21:32 +00:00
MIPS: kernel: proc: Add MIPS R6 support to /proc/cpuinfo
Print 'mips64r6' and/or 'mips32r6' if the kernel is running on a MIPS R6 core. Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
This commit is contained in:
parent
6ebb496ffc
commit
515a6393db
@ -171,6 +171,9 @@
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef cpu_has_mips_1
|
||||
# define cpu_has_mips_1 (!cpu_has_mips_r6)
|
||||
#endif
|
||||
#ifndef cpu_has_mips_2
|
||||
# define cpu_has_mips_2 (cpu_data[0].isa_level & MIPS_CPU_ISA_II)
|
||||
#endif
|
||||
|
@ -82,7 +82,9 @@ static int show_cpuinfo(struct seq_file *m, void *v)
|
||||
seq_printf(m, "]\n");
|
||||
}
|
||||
|
||||
seq_printf(m, "isa\t\t\t: mips1");
|
||||
seq_printf(m, "isa\t\t\t:");
|
||||
if (cpu_has_mips_r1)
|
||||
seq_printf(m, " mips1");
|
||||
if (cpu_has_mips_2)
|
||||
seq_printf(m, "%s", " mips2");
|
||||
if (cpu_has_mips_3)
|
||||
@ -95,10 +97,14 @@ static int show_cpuinfo(struct seq_file *m, void *v)
|
||||
seq_printf(m, "%s", " mips32r1");
|
||||
if (cpu_has_mips32r2)
|
||||
seq_printf(m, "%s", " mips32r2");
|
||||
if (cpu_has_mips32r6)
|
||||
seq_printf(m, "%s", " mips32r6");
|
||||
if (cpu_has_mips64r1)
|
||||
seq_printf(m, "%s", " mips64r1");
|
||||
if (cpu_has_mips64r2)
|
||||
seq_printf(m, "%s", " mips64r2");
|
||||
if (cpu_has_mips64r6)
|
||||
seq_printf(m, "%s", " mips64r6");
|
||||
seq_printf(m, "\n");
|
||||
|
||||
seq_printf(m, "ASEs implemented\t:");
|
||||
|
Loading…
Reference in New Issue
Block a user