diff options
author | Allen Pais <allen.pais@oracle.com> | 2014-09-08 11:48:53 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-09-09 15:24:10 -0700 |
commit | cadbb58039f7cab1def9c931012ab04c953a6997 (patch) | |
tree | d7c4802f418c0f88effde87764bd7d8533ee8998 /arch/sparc/kernel/cpu.c | |
parent | 619df5d2870b80696fd32521376560e0a4223e44 (diff) | |
download | blackbird-op-linux-cadbb58039f7cab1def9c931012ab04c953a6997.tar.gz blackbird-op-linux-cadbb58039f7cab1def9c931012ab04c953a6997.zip |
sparc64: correctly recognise M6 and M7 cpu type
The following patch adds support for correctly
recognising M6 and M7 cpu type.
Signed-off-by: Allen Pais <allen.pais@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/kernel/cpu.c')
-rw-r--r-- | arch/sparc/kernel/cpu.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/sparc/kernel/cpu.c b/arch/sparc/kernel/cpu.c index 82a3a71c451e..dfad8b1aea9f 100644 --- a/arch/sparc/kernel/cpu.c +++ b/arch/sparc/kernel/cpu.c @@ -494,6 +494,18 @@ static void __init sun4v_cpu_probe(void) sparc_pmu_type = "niagara5"; break; + case SUN4V_CHIP_SPARC_M6: + sparc_cpu_type = "SPARC-M6"; + sparc_fpu_type = "SPARC-M6 integrated FPU"; + sparc_pmu_type = "sparc-m6"; + break; + + case SUN4V_CHIP_SPARC_M7: + sparc_cpu_type = "SPARC-M7"; + sparc_fpu_type = "SPARC-M7 integrated FPU"; + sparc_pmu_type = "sparc-m7"; + break; + case SUN4V_CHIP_SPARC64X: sparc_cpu_type = "SPARC64-X"; sparc_fpu_type = "SPARC64-X integrated FPU"; |