diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2014-07-14 07:43:28 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-08-01 18:06:38 -0400 |
commit | e647e6b5b355bbf58d5c20c181e69474e5aee5fe (patch) | |
tree | 7ee083801d1ca02986bcb972602a8b4428aea964 /arch/mips/kernel/proc.c | |
parent | 03a58777de0895864ccdb93249f3ce8d9fcc13ac (diff) |
MIPS: cpu: Add new cpu option for Hardware Table Walker.
Moreover, report hardware page table walker support as 'htw' in the ASE
list of /proc/cpuinfo, if the core implements this feature.
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/7334/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/proc.c')
-rw-r--r-- | arch/mips/kernel/proc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/kernel/proc.c b/arch/mips/kernel/proc.c index 62c4439a147b..097fc8d14e42 100644 --- a/arch/mips/kernel/proc.c +++ b/arch/mips/kernel/proc.c | |||
@@ -113,6 +113,7 @@ static int show_cpuinfo(struct seq_file *m, void *v) | |||
113 | if (cpu_has_vz) seq_printf(m, "%s", " vz"); | 113 | if (cpu_has_vz) seq_printf(m, "%s", " vz"); |
114 | if (cpu_has_msa) seq_printf(m, "%s", " msa"); | 114 | if (cpu_has_msa) seq_printf(m, "%s", " msa"); |
115 | if (cpu_has_eva) seq_printf(m, "%s", " eva"); | 115 | if (cpu_has_eva) seq_printf(m, "%s", " eva"); |
116 | if (cpu_has_htw) seq_printf(m, "%s", " htw"); | ||
116 | seq_printf(m, "\n"); | 117 | seq_printf(m, "\n"); |
117 | 118 | ||
118 | if (cpu_has_mmips) { | 119 | if (cpu_has_mmips) { |