|
@@ -87,6 +87,10 @@ static void pSeries_show_cpuinfo(struct seq_file *m)
|
|
model = of_get_property(root, "model", NULL);
|
|
model = of_get_property(root, "model", NULL);
|
|
seq_printf(m, "machine\t\t: CHRP %s\n", model);
|
|
seq_printf(m, "machine\t\t: CHRP %s\n", model);
|
|
of_node_put(root);
|
|
of_node_put(root);
|
|
|
|
+ if (radix_enabled())
|
|
|
|
+ seq_printf(m, "MMU\t\t: Radix\n");
|
|
|
|
+ else
|
|
|
|
+ seq_printf(m, "MMU\t\t: Hash\n");
|
|
}
|
|
}
|
|
|
|
|
|
/* Initialize firmware assisted non-maskable interrupts if
|
|
/* Initialize firmware assisted non-maskable interrupts if
|