| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* cpu.c: Dinky routines to look for the kind of Sparc cpu | 
 | 2 |  *        we are on. | 
 | 3 |  * | 
 | 4 |  * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu) | 
 | 5 |  */ | 
 | 6 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #include <linux/kernel.h> | 
| Sam Ravnborg | 6943f3d | 2009-01-08 16:58:05 -0800 | [diff] [blame] | 8 | #include <linux/module.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/init.h> | 
 | 10 | #include <linux/smp.h> | 
 | 11 | #include <linux/threads.h> | 
| Sam Ravnborg | d34dd82 | 2008-12-07 00:04:30 -0800 | [diff] [blame] | 12 |  | 
 | 13 | #include <asm/spitfire.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <asm/oplib.h> | 
 | 15 | #include <asm/page.h> | 
 | 16 | #include <asm/head.h> | 
 | 17 | #include <asm/psr.h> | 
 | 18 | #include <asm/mbus.h> | 
 | 19 | #include <asm/cpudata.h> | 
 | 20 |  | 
| Sam Ravnborg | 53ae341 | 2008-12-07 00:02:08 -0800 | [diff] [blame] | 21 | #include "kernel.h" | 
 | 22 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | DEFINE_PER_CPU(cpuinfo_sparc, __cpu_data) = { 0 }; | 
| Sam Ravnborg | 6943f3d | 2009-01-08 16:58:05 -0800 | [diff] [blame] | 24 | EXPORT_PER_CPU_SYMBOL(__cpu_data); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 |  | 
| Sam Ravnborg | 2bf05fa | 2008-12-07 00:03:26 -0800 | [diff] [blame] | 26 | struct cpu_info { | 
| Sam Ravnborg | 8a563f0 | 2008-12-05 19:07:35 -0800 | [diff] [blame] | 27 | 	int psr_vers; | 
| Sam Ravnborg | 2bf05fa | 2008-12-07 00:03:26 -0800 | [diff] [blame] | 28 | 	const char *name; | 
| David S. Miller | c3cf5e8 | 2009-01-21 23:16:40 -0800 | [diff] [blame] | 29 | 	const char *pmu_name; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | }; | 
 | 31 |  | 
| Sam Ravnborg | 2bf05fa | 2008-12-07 00:03:26 -0800 | [diff] [blame] | 32 | struct fpu_info { | 
| Sam Ravnborg | 8a563f0 | 2008-12-05 19:07:35 -0800 | [diff] [blame] | 33 | 	int fp_vers; | 
| Sam Ravnborg | 2bf05fa | 2008-12-07 00:03:26 -0800 | [diff] [blame] | 34 | 	const char *name; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | }; | 
 | 36 |  | 
| Sam Ravnborg | 2bf05fa | 2008-12-07 00:03:26 -0800 | [diff] [blame] | 37 | #define NOCPU 8 | 
 | 38 | #define NOFPU 8 | 
 | 39 |  | 
 | 40 | struct manufacturer_info { | 
 | 41 | 	int psr_impl; | 
 | 42 | 	struct cpu_info cpu_info[NOCPU]; | 
 | 43 | 	struct fpu_info fpu_info[NOFPU]; | 
 | 44 | }; | 
 | 45 |  | 
 | 46 | #define CPU(ver, _name) \ | 
 | 47 | { .psr_vers = ver, .name = _name } | 
 | 48 |  | 
| David S. Miller | c3cf5e8 | 2009-01-21 23:16:40 -0800 | [diff] [blame] | 49 | #define CPU_PMU(ver, _name, _pmu_name)	\ | 
 | 50 | { .psr_vers = ver, .name = _name, .pmu_name = _pmu_name } | 
 | 51 |  | 
| Sam Ravnborg | 2bf05fa | 2008-12-07 00:03:26 -0800 | [diff] [blame] | 52 | #define FPU(ver, _name) \ | 
 | 53 | { .fp_vers = ver, .name = _name } | 
 | 54 |  | 
 | 55 | static const struct manufacturer_info __initconst manufacturer_info[] = { | 
 | 56 | { | 
 | 57 | 	0, | 
 | 58 | 	/* Sun4/100, 4/200, SLC */ | 
 | 59 | 	.cpu_info = { | 
 | 60 | 		CPU(0, "Fujitsu  MB86900/1A or LSI L64831 SparcKIT-40"), | 
 | 61 | 		/* borned STP1012PGA */ | 
 | 62 | 		CPU(4,  "Fujitsu  MB86904"), | 
 | 63 | 		CPU(5, "Fujitsu TurboSparc MB86907"), | 
 | 64 | 		CPU(-1, NULL) | 
 | 65 | 	}, | 
 | 66 | 	.fpu_info = { | 
 | 67 | 		FPU(0, "Fujitsu MB86910 or Weitek WTL1164/5"), | 
 | 68 | 		FPU(1, "Fujitsu MB86911 or Weitek WTL1164/5 or LSI L64831"), | 
 | 69 | 		FPU(2, "LSI Logic L64802 or Texas Instruments ACT8847"), | 
 | 70 | 		/* SparcStation SLC, SparcStation1 */ | 
 | 71 | 		FPU(3, "Weitek WTL3170/2"), | 
 | 72 | 		/* SPARCstation-5 */ | 
 | 73 | 		FPU(4, "Lsi Logic/Meiko L64804 or compatible"), | 
 | 74 | 		FPU(-1, NULL) | 
 | 75 | 	} | 
 | 76 | },{ | 
 | 77 | 	1, | 
 | 78 | 	.cpu_info = { | 
 | 79 | 		/* SparcStation2, SparcServer 490 & 690 */ | 
 | 80 | 		CPU(0, "LSI Logic Corporation - L64811"), | 
 | 81 | 		/* SparcStation2 */ | 
 | 82 | 		CPU(1, "Cypress/ROSS CY7C601"), | 
 | 83 | 		/* Embedded controller */ | 
 | 84 | 		CPU(3, "Cypress/ROSS CY7C611"), | 
 | 85 | 		/* Ross Technologies HyperSparc */ | 
 | 86 | 		CPU(0xf, "ROSS HyperSparc RT620"), | 
 | 87 | 		CPU(0xe, "ROSS HyperSparc RT625 or RT626"), | 
 | 88 | 		CPU(-1, NULL) | 
 | 89 | 	}, | 
 | 90 | 	.fpu_info = { | 
 | 91 | 		FPU(0, "ROSS HyperSparc combined IU/FPU"), | 
 | 92 | 		FPU(1, "Lsi Logic L64814"), | 
 | 93 | 		FPU(2, "Texas Instruments TMS390-C602A"), | 
 | 94 | 		FPU(3, "Cypress CY7C602 FPU"), | 
 | 95 | 		FPU(-1, NULL) | 
 | 96 | 	} | 
 | 97 | },{ | 
 | 98 | 	2, | 
 | 99 | 	.cpu_info = { | 
 | 100 | 		/* ECL Implementation, CRAY S-MP Supercomputer... AIEEE! */ | 
 | 101 | 		/* Someone please write the code to support this beast! ;) */ | 
 | 102 | 		CPU(0, "Bipolar Integrated Technology - B5010"), | 
 | 103 | 		CPU(-1, NULL) | 
 | 104 | 	}, | 
 | 105 | 	.fpu_info = { | 
 | 106 | 		FPU(-1, NULL) | 
 | 107 | 	} | 
 | 108 | },{ | 
 | 109 | 	3, | 
 | 110 | 	.cpu_info = { | 
 | 111 | 		CPU(0, "LSI Logic Corporation - unknown-type"), | 
 | 112 | 		CPU(-1, NULL) | 
 | 113 | 	}, | 
 | 114 | 	.fpu_info = { | 
 | 115 | 		FPU(-1, NULL) | 
 | 116 | 	} | 
 | 117 | },{ | 
 | 118 | 	4, | 
 | 119 | 	.cpu_info = { | 
 | 120 | 		CPU(0, "Texas Instruments, Inc. - SuperSparc-(II)"), | 
 | 121 | 		/* SparcClassic  --  borned STP1010TAB-50*/ | 
 | 122 | 		CPU(1, "Texas Instruments, Inc. - MicroSparc"), | 
 | 123 | 		CPU(2, "Texas Instruments, Inc. - MicroSparc II"), | 
 | 124 | 		CPU(3, "Texas Instruments, Inc. - SuperSparc 51"), | 
 | 125 | 		CPU(4, "Texas Instruments, Inc. - SuperSparc 61"), | 
 | 126 | 		CPU(5, "Texas Instruments, Inc. - unknown"), | 
 | 127 | 		CPU(-1, NULL) | 
 | 128 | 	}, | 
 | 129 | 	.fpu_info = { | 
 | 130 | 		/* SuperSparc 50 module */ | 
 | 131 | 		FPU(0, "SuperSparc on-chip FPU"), | 
 | 132 | 		/* SparcClassic */ | 
 | 133 | 		FPU(4, "TI MicroSparc on chip FPU"), | 
 | 134 | 		FPU(-1, NULL) | 
 | 135 | 	} | 
 | 136 | },{ | 
 | 137 | 	5, | 
 | 138 | 	.cpu_info = { | 
 | 139 | 		CPU(0, "Matsushita - MN10501"), | 
 | 140 | 		CPU(-1, NULL) | 
 | 141 | 	}, | 
 | 142 | 	.fpu_info = { | 
 | 143 | 		FPU(0, "Matsushita MN10501"), | 
 | 144 | 		FPU(-1, NULL) | 
 | 145 | 	} | 
 | 146 | },{ | 
 | 147 | 	6, | 
 | 148 | 	.cpu_info = { | 
 | 149 | 		CPU(0, "Philips Corporation - unknown"), | 
 | 150 | 		CPU(-1, NULL) | 
 | 151 | 	}, | 
 | 152 | 	.fpu_info = { | 
 | 153 | 		FPU(-1, NULL) | 
 | 154 | 	} | 
 | 155 | },{ | 
 | 156 | 	7, | 
 | 157 | 	.cpu_info = { | 
 | 158 | 		CPU(0, "Harvest VLSI Design Center, Inc. - unknown"), | 
 | 159 | 		CPU(-1, NULL) | 
 | 160 | 	}, | 
 | 161 | 	.fpu_info = { | 
 | 162 | 		FPU(-1, NULL) | 
 | 163 | 	} | 
 | 164 | },{ | 
 | 165 | 	8, | 
 | 166 | 	.cpu_info = { | 
 | 167 | 		CPU(0, "Systems and Processes Engineering Corporation (SPEC)"), | 
 | 168 | 		CPU(-1, NULL) | 
 | 169 | 	}, | 
 | 170 | 	.fpu_info = { | 
 | 171 | 		FPU(-1, NULL) | 
 | 172 | 	} | 
 | 173 | },{ | 
 | 174 | 	9, | 
 | 175 | 	.cpu_info = { | 
 | 176 | 		/* Gallium arsenide 200MHz, BOOOOGOOOOMIPS!!! */ | 
 | 177 | 		CPU(0, "Fujitsu or Weitek Power-UP"), | 
 | 178 | 		CPU(1, "Fujitsu or Weitek Power-UP"), | 
 | 179 | 		CPU(2, "Fujitsu or Weitek Power-UP"), | 
 | 180 | 		CPU(3, "Fujitsu or Weitek Power-UP"), | 
 | 181 | 		CPU(-1, NULL) | 
 | 182 | 	}, | 
 | 183 | 	.fpu_info = { | 
 | 184 | 		FPU(3, "Fujitsu or Weitek on-chip FPU"), | 
 | 185 | 		FPU(-1, NULL) | 
 | 186 | 	} | 
| Sam Ravnborg | d34dd82 | 2008-12-07 00:04:30 -0800 | [diff] [blame] | 187 | },{ | 
 | 188 | 	0x17, | 
 | 189 | 	.cpu_info = { | 
| David S. Miller | c3cf5e8 | 2009-01-21 23:16:40 -0800 | [diff] [blame] | 190 | 		CPU_PMU(0x10, "TI UltraSparc I   (SpitFire)", "ultra12"), | 
 | 191 | 		CPU_PMU(0x11, "TI UltraSparc II  (BlackBird)", "ultra12"), | 
 | 192 | 		CPU_PMU(0x12, "TI UltraSparc IIi (Sabre)", "ultra12"), | 
 | 193 | 		CPU_PMU(0x13, "TI UltraSparc IIe (Hummingbird)", "ultra12"), | 
| Sam Ravnborg | d34dd82 | 2008-12-07 00:04:30 -0800 | [diff] [blame] | 194 | 		CPU(-1, NULL) | 
 | 195 | 	}, | 
 | 196 | 	.fpu_info = { | 
 | 197 | 		FPU(0x10, "UltraSparc I integrated FPU"), | 
 | 198 | 		FPU(0x11, "UltraSparc II integrated FPU"), | 
 | 199 | 		FPU(0x12, "UltraSparc IIi integrated FPU"), | 
 | 200 | 		FPU(0x13, "UltraSparc IIe integrated FPU"), | 
 | 201 | 		FPU(-1, NULL) | 
 | 202 | 	} | 
 | 203 | },{ | 
 | 204 | 	0x22, | 
 | 205 | 	.cpu_info = { | 
| David S. Miller | c3cf5e8 | 2009-01-21 23:16:40 -0800 | [diff] [blame] | 206 | 		CPU_PMU(0x10, "TI UltraSparc I   (SpitFire)", "ultra12"), | 
| Sam Ravnborg | d34dd82 | 2008-12-07 00:04:30 -0800 | [diff] [blame] | 207 | 		CPU(-1, NULL) | 
 | 208 | 	}, | 
 | 209 | 	.fpu_info = { | 
 | 210 | 		FPU(0x10, "UltraSparc I integrated FPU"), | 
 | 211 | 		FPU(-1, NULL) | 
 | 212 | 	} | 
 | 213 | },{ | 
 | 214 | 	0x3e, | 
 | 215 | 	.cpu_info = { | 
| David S. Miller | c3cf5e8 | 2009-01-21 23:16:40 -0800 | [diff] [blame] | 216 | 		CPU_PMU(0x14, "TI UltraSparc III (Cheetah)", "ultra3"), | 
 | 217 | 		CPU_PMU(0x15, "TI UltraSparc III+ (Cheetah+)", "ultra3+"), | 
 | 218 | 		CPU_PMU(0x16, "TI UltraSparc IIIi (Jalapeno)", "ultra3i"), | 
 | 219 | 		CPU_PMU(0x18, "TI UltraSparc IV (Jaguar)", "ultra3+"), | 
 | 220 | 		CPU_PMU(0x19, "TI UltraSparc IV+ (Panther)", "ultra4+"), | 
 | 221 | 		CPU_PMU(0x22, "TI UltraSparc IIIi+ (Serrano)", "ultra3i"), | 
| Sam Ravnborg | d34dd82 | 2008-12-07 00:04:30 -0800 | [diff] [blame] | 222 | 		CPU(-1, NULL) | 
 | 223 | 	}, | 
 | 224 | 	.fpu_info = { | 
 | 225 | 		FPU(0x14, "UltraSparc III integrated FPU"), | 
 | 226 | 		FPU(0x15, "UltraSparc III+ integrated FPU"), | 
 | 227 | 		FPU(0x16, "UltraSparc IIIi integrated FPU"), | 
 | 228 | 		FPU(0x18, "UltraSparc IV integrated FPU"), | 
 | 229 | 		FPU(0x19, "UltraSparc IV+ integrated FPU"), | 
 | 230 | 		FPU(0x22, "UltraSparc IIIi+ integrated FPU"), | 
 | 231 | 		FPU(-1, NULL) | 
 | 232 | 	} | 
| Sam Ravnborg | 2bf05fa | 2008-12-07 00:03:26 -0800 | [diff] [blame] | 233 | }}; | 
 | 234 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | /* In order to get the fpu type correct, you need to take the IDPROM's | 
 | 236 |  * machine type value into consideration too.  I will fix this. | 
 | 237 |  */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 |  | 
| Sam Ravnborg | 53ae341 | 2008-12-07 00:02:08 -0800 | [diff] [blame] | 239 | const char *sparc_cpu_type; | 
 | 240 | const char *sparc_fpu_type; | 
| David S. Miller | c3cf5e8 | 2009-01-21 23:16:40 -0800 | [diff] [blame] | 241 | const char *sparc_pmu_type; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 |  | 
 | 243 | unsigned int fsr_storage; | 
 | 244 |  | 
| Sam Ravnborg | 2bf05fa | 2008-12-07 00:03:26 -0800 | [diff] [blame] | 245 | static void set_cpu_and_fpu(int psr_impl, int psr_vers, int fpu_vers) | 
 | 246 | { | 
| Sam Ravnborg | c275ce4 | 2009-01-17 23:10:35 -0800 | [diff] [blame] | 247 | 	const struct manufacturer_info *manuf; | 
 | 248 | 	int i; | 
 | 249 |  | 
| Sam Ravnborg | 2bf05fa | 2008-12-07 00:03:26 -0800 | [diff] [blame] | 250 | 	sparc_cpu_type = NULL; | 
 | 251 | 	sparc_fpu_type = NULL; | 
| David S. Miller | c3cf5e8 | 2009-01-21 23:16:40 -0800 | [diff] [blame] | 252 | 	sparc_pmu_type = NULL; | 
| Sam Ravnborg | c275ce4 | 2009-01-17 23:10:35 -0800 | [diff] [blame] | 253 | 	manuf = NULL; | 
 | 254 |  | 
 | 255 | 	for (i = 0; i < ARRAY_SIZE(manufacturer_info); i++) | 
 | 256 | 	{ | 
 | 257 | 		if (psr_impl == manufacturer_info[i].psr_impl) { | 
 | 258 | 			manuf = &manufacturer_info[i]; | 
 | 259 | 			break; | 
 | 260 | 		} | 
 | 261 | 	} | 
 | 262 | 	if (manuf != NULL) | 
| Sam Ravnborg | 2bf05fa | 2008-12-07 00:03:26 -0800 | [diff] [blame] | 263 | 	{ | 
 | 264 | 		const struct cpu_info *cpu; | 
 | 265 | 		const struct fpu_info *fpu; | 
 | 266 |  | 
| Sam Ravnborg | c275ce4 | 2009-01-17 23:10:35 -0800 | [diff] [blame] | 267 | 		cpu = &manuf->cpu_info[0]; | 
| Sam Ravnborg | 2bf05fa | 2008-12-07 00:03:26 -0800 | [diff] [blame] | 268 | 		while (cpu->psr_vers != -1) | 
 | 269 | 		{ | 
 | 270 | 			if (cpu->psr_vers == psr_vers) { | 
 | 271 | 				sparc_cpu_type = cpu->name; | 
| David S. Miller | c3cf5e8 | 2009-01-21 23:16:40 -0800 | [diff] [blame] | 272 | 				sparc_pmu_type = cpu->pmu_name; | 
| Sam Ravnborg | 2bf05fa | 2008-12-07 00:03:26 -0800 | [diff] [blame] | 273 | 				sparc_fpu_type = "No FPU"; | 
 | 274 | 				break; | 
 | 275 | 			} | 
 | 276 | 			cpu++; | 
 | 277 | 		} | 
| Sam Ravnborg | c275ce4 | 2009-01-17 23:10:35 -0800 | [diff] [blame] | 278 | 		fpu =  &manuf->fpu_info[0]; | 
| Sam Ravnborg | 2bf05fa | 2008-12-07 00:03:26 -0800 | [diff] [blame] | 279 | 		while (fpu->fp_vers != -1) | 
 | 280 | 		{ | 
 | 281 | 			if (fpu->fp_vers == fpu_vers) { | 
 | 282 | 				sparc_fpu_type = fpu->name; | 
 | 283 | 				break; | 
 | 284 | 			} | 
 | 285 | 			fpu++; | 
 | 286 | 		} | 
 | 287 | 	} | 
 | 288 | 	if (sparc_cpu_type == NULL) | 
 | 289 | 	{ | 
 | 290 | 		printk(KERN_ERR "CPU: Unknown chip, impl[0x%x] vers[0x%x]\n", | 
 | 291 | 		       psr_impl, psr_vers); | 
 | 292 | 		sparc_cpu_type = "Unknown CPU"; | 
 | 293 | 	} | 
 | 294 | 	if (sparc_fpu_type == NULL) | 
 | 295 | 	{ | 
 | 296 | 		printk(KERN_ERR "FPU: Unknown chip, impl[0x%x] vers[0x%x]\n", | 
 | 297 | 		       psr_impl, fpu_vers); | 
 | 298 | 		sparc_fpu_type = "Unknown FPU"; | 
 | 299 | 	} | 
| David S. Miller | c3cf5e8 | 2009-01-21 23:16:40 -0800 | [diff] [blame] | 300 | 	if (sparc_pmu_type == NULL) | 
 | 301 | 		sparc_pmu_type = "Unknown PMU"; | 
| Sam Ravnborg | 2bf05fa | 2008-12-07 00:03:26 -0800 | [diff] [blame] | 302 | } | 
 | 303 |  | 
| Sam Ravnborg | d34dd82 | 2008-12-07 00:04:30 -0800 | [diff] [blame] | 304 | #ifdef CONFIG_SPARC32 | 
| Al Viro | 409832f | 2008-11-22 17:33:54 +0000 | [diff] [blame] | 305 | void __cpuinit cpu_probe(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | { | 
 | 307 | 	int psr_impl, psr_vers, fpu_vers; | 
| Sam Ravnborg | 2bf05fa | 2008-12-07 00:03:26 -0800 | [diff] [blame] | 308 | 	int psr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 |  | 
| Sam Ravnborg | 8a563f0 | 2008-12-05 19:07:35 -0800 | [diff] [blame] | 310 | 	psr_impl = ((get_psr() >> 28) & 0xf); | 
 | 311 | 	psr_vers = ((get_psr() >> 24) & 0xf); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 |  | 
 | 313 | 	psr = get_psr(); | 
 | 314 | 	put_psr(psr | PSR_EF); | 
| Sam Ravnborg | 8a563f0 | 2008-12-05 19:07:35 -0800 | [diff] [blame] | 315 | 	fpu_vers = ((get_fsr() >> 17) & 0x7); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | 	put_psr(psr); | 
 | 317 |  | 
| Sam Ravnborg | 2bf05fa | 2008-12-07 00:03:26 -0800 | [diff] [blame] | 318 | 	set_cpu_and_fpu(psr_impl, psr_vers, fpu_vers); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | } | 
| Sam Ravnborg | d34dd82 | 2008-12-07 00:04:30 -0800 | [diff] [blame] | 320 | #else | 
 | 321 | static void __init sun4v_cpu_probe(void) | 
 | 322 | { | 
 | 323 | 	switch (sun4v_chip_type) { | 
 | 324 | 	case SUN4V_CHIP_NIAGARA1: | 
 | 325 | 		sparc_cpu_type = "UltraSparc T1 (Niagara)"; | 
 | 326 | 		sparc_fpu_type = "UltraSparc T1 integrated FPU"; | 
| David S. Miller | c3cf5e8 | 2009-01-21 23:16:40 -0800 | [diff] [blame] | 327 | 		sparc_pmu_type = "niagara"; | 
| Sam Ravnborg | d34dd82 | 2008-12-07 00:04:30 -0800 | [diff] [blame] | 328 | 		break; | 
 | 329 |  | 
 | 330 | 	case SUN4V_CHIP_NIAGARA2: | 
 | 331 | 		sparc_cpu_type = "UltraSparc T2 (Niagara2)"; | 
 | 332 | 		sparc_fpu_type = "UltraSparc T2 integrated FPU"; | 
| David S. Miller | c3cf5e8 | 2009-01-21 23:16:40 -0800 | [diff] [blame] | 333 | 		sparc_pmu_type = "niagara2"; | 
| Sam Ravnborg | d34dd82 | 2008-12-07 00:04:30 -0800 | [diff] [blame] | 334 | 		break; | 
 | 335 |  | 
 | 336 | 	default: | 
 | 337 | 		printk(KERN_WARNING "CPU: Unknown sun4v cpu type [%s]\n", | 
 | 338 | 		       prom_cpu_compatible); | 
 | 339 | 		sparc_cpu_type = "Unknown SUN4V CPU"; | 
 | 340 | 		sparc_fpu_type = "Unknown SUN4V FPU"; | 
 | 341 | 		break; | 
 | 342 | 	} | 
 | 343 | } | 
 | 344 |  | 
 | 345 | static int __init cpu_type_probe(void) | 
 | 346 | { | 
 | 347 | 	if (tlb_type == hypervisor) { | 
 | 348 | 		sun4v_cpu_probe(); | 
 | 349 | 	} else { | 
 | 350 | 		unsigned long ver; | 
 | 351 | 		int manuf, impl; | 
 | 352 |  | 
 | 353 | 		__asm__ __volatile__("rdpr %%ver, %0" : "=r" (ver)); | 
 | 354 |  | 
 | 355 | 		manuf = ((ver >> 48) & 0xffff); | 
 | 356 | 		impl = ((ver >> 32) & 0xffff); | 
 | 357 | 		set_cpu_and_fpu(manuf, impl, impl); | 
 | 358 | 	} | 
 | 359 | 	return 0; | 
 | 360 | } | 
 | 361 |  | 
 | 362 | arch_initcall(cpu_type_probe); | 
 | 363 | #endif |