xref: /illumos-gate/usr/src/uts/sun4u/os/fillsysinfo.c (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or http://www.opensolaris.org/os/licensing.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #pragma ident	"%Z%%M%	%I%	%E% SMI"
28 
29 #include <sys/errno.h>
30 #include <sys/types.h>
31 #include <sys/param.h>
32 #include <sys/cpu.h>
33 #include <sys/cpuvar.h>
34 #include <sys/clock.h>
35 
36 #include <sys/promif.h>
37 #include <sys/promimpl.h>
38 #include <sys/systm.h>
39 #include <sys/machsystm.h>
40 #include <sys/debug.h>
41 #include <sys/sunddi.h>
42 #include <sys/modctl.h>
43 #include <sys/spitregs.h>
44 #include <sys/cheetahregs.h>
45 #include <sys/cpu_module.h>
46 #include <sys/kobj.h>
47 #include <sys/cmp.h>
48 #include <sys/async.h>
49 #include <vm/page.h>
50 
51 /*
52  * The OpenBoot Standalone Interface supplies the kernel with
53  * implementation dependent parameters through the devinfo/property mechanism
54  */
55 typedef enum { XDRBOOL, XDRINT, XDRSTRING } xdrs;
56 
57 /*
58  * structure describing properties that we are interested in querying the
59  * OBP for.
60  */
61 struct getprop_info {
62 	char	*name;
63 	xdrs	type;
64 	uint_t	*var;
65 };
66 
67 /*
68  * structure used to convert between a string returned by the OBP & a type
69  * used within the kernel. We prefer to paramaterize rather than type.
70  */
71 struct convert_info {
72 	char	*name;
73 	uint_t	var;
74 	char	*realname;
75 };
76 
77 /*
78  * structure describing nodes that we are interested in querying the OBP for
79  * properties.
80  */
81 struct node_info {
82 	char			*name;
83 	int			size;
84 	struct getprop_info	*prop;
85 	struct getprop_info	*prop_end;
86 	unsigned int		*value;
87 };
88 
89 /*
90  * macro definitions for routines that form the OBP interface
91  */
92 #define	NEXT			prom_nextnode
93 #define	CHILD			prom_childnode
94 #define	GETPROP			prom_getprop
95 #define	GETPROPLEN		prom_getproplen
96 
97 
98 /* 0=quiet; 1=verbose; 2=debug */
99 int	debug_fillsysinfo = 0;
100 #define	VPRINTF if (debug_fillsysinfo) prom_printf
101 
102 int ncpunode;
103 struct cpu_node cpunodes[NCPU];
104 
105 static void	check_cpus_ver(void);
106 static void	check_cpus_set(void);
107 void	fill_cpu(dnode_t);
108 void	fill_cpu_ddi(dev_info_t *);
109 void	empty_cpu(int);
110 void	plat_fill_mc(dnode_t);
111 #pragma weak plat_fill_mc
112 
113 uint64_t	system_clock_freq;
114 
115 /*
116  * list of well known devices that must be mapped, and the variables that
117  * contain their addresses.
118  */
119 caddr_t		v_auxio_addr = NULL;
120 caddr_t		v_eeprom_addr = NULL;
121 caddr_t		v_timecheck_addr = NULL;
122 caddr_t 	v_rtc_addr_reg = NULL;
123 volatile unsigned char	*v_rtc_data_reg = NULL;
124 volatile uint8_t	*v_pmc_addr_reg = NULL;
125 volatile uint8_t	*v_pmc_data_reg = NULL;
126 
127 int		niobus = 0;
128 uint_t		niommu_tsbs = 0;
129 
130 /*
131  * Hardware watchdog support.
132  */
133 #define	CHOSEN_EEPROM	"eeprom"
134 #define	WATCHDOG_ENABLE "watchdog-enable"
135 static dnode_t 		chosen_eeprom;
136 
137 /*
138  * Appropriate tod module will be dynamically selected while booting
139  * based on finding a device tree node with a "device_type" property value
140  * of "tod". If such a node describing tod is not found, for backward
141  * compatibility, a node with a "name" property value of "eeprom" and
142  * "model" property value of "mk48t59" will be used. Failing to find a
143  * node matching either of the above criteria will result in no tod module
144  * being selected; this will cause the boot process to halt.
145  */
146 char	*tod_module_name;
147 
148 /*
149  * If this variable is non-zero, cpr should return "not supported" when
150  * it is queried even though it would normally be supported on this platform.
151  */
152 int cpr_supported_override;
153 
154 /*
155  * Some platforms may need to support CPR even in the absence of the
156  * energystar-v* property (Enchilada server, for example).  If this
157  * variable is non-zero, cpr should proceed even in the absence
158  * of the energystar-v* property.
159  */
160 int cpr_platform_enable = 0;
161 
162 /*
163  * Some nodes have functions that need to be called when they're seen.
164  */
165 static void	have_sbus(dnode_t);
166 static void	have_pci(dnode_t);
167 static void	have_eeprom(dnode_t);
168 static void	have_auxio(dnode_t);
169 static void	have_rtc(dnode_t);
170 static void	have_tod(dnode_t);
171 static void	have_pmc(dnode_t);
172 
173 static struct wkdevice {
174 	char *wk_namep;
175 	void (*wk_func)(dnode_t);
176 	caddr_t *wk_vaddrp;
177 	ushort_t wk_flags;
178 #define	V_OPTIONAL	0x0000
179 #define	V_MUSTHAVE	0x0001
180 #define	V_MAPPED	0x0002
181 #define	V_MULTI		0x0003	/* optional, may be more than one */
182 } wkdevice[] = {
183 	{ "sbus", have_sbus, NULL, V_MULTI },
184 	{ "pci", have_pci, NULL, V_MULTI },
185 	{ "eeprom", have_eeprom, NULL, V_MULTI },
186 	{ "auxio", have_auxio, NULL, V_OPTIONAL },
187 	{ "rtc", have_rtc, NULL, V_OPTIONAL },
188 	{ "pmc", have_pmc, NULL, V_OPTIONAL },
189 	{ 0, },
190 };
191 
192 static void map_wellknown(dnode_t);
193 
194 void
195 map_wellknown_devices()
196 {
197 	struct wkdevice *wkp;
198 	phandle_t	ieeprom;
199 	dnode_t	root;
200 	uint_t	stick_freq;
201 
202 	/*
203 	 * if there is a chosen eeprom, note it (for have_eeprom())
204 	 */
205 	if (GETPROPLEN(prom_chosennode(), CHOSEN_EEPROM) ==
206 	    sizeof (phandle_t) &&
207 	    GETPROP(prom_chosennode(), CHOSEN_EEPROM, (caddr_t)&ieeprom) != -1)
208 		chosen_eeprom = (dnode_t)prom_decode_int(ieeprom);
209 
210 	root = prom_nextnode((dnode_t)0);
211 	/*
212 	 * Get System clock frequency from root node if it exists.
213 	 */
214 	if (GETPROP(root, "stick-frequency", (caddr_t)&stick_freq) != -1)
215 		system_clock_freq = stick_freq;
216 
217 	map_wellknown(NEXT((dnode_t)0));
218 
219 	/*
220 	 * See if it worked
221 	 */
222 	for (wkp = wkdevice; wkp->wk_namep; ++wkp) {
223 		if (wkp->wk_flags == V_MUSTHAVE) {
224 			cmn_err(CE_PANIC, "map_wellknown_devices: required "
225 			    "device %s not mapped", wkp->wk_namep);
226 		}
227 	}
228 
229 	/*
230 	 * all sun4u systems must have an IO bus, i.e. sbus or pcibus
231 	 */
232 	if (niobus == 0)
233 		cmn_err(CE_PANIC, "map_wellknown_devices: no i/o bus node");
234 
235 	check_cpus_ver();
236 	check_cpus_set();
237 }
238 
239 /*
240  * map_wellknown - map known devices & registers
241  */
242 static void
243 map_wellknown(dnode_t curnode)
244 {
245 	extern int status_okay(int, char *, int);
246 	char tmp_name[MAXSYSNAME];
247 	static void fill_address(dnode_t, char *);
248 	int sok;
249 
250 #ifdef VPRINTF
251 	VPRINTF("map_wellknown(%x)\n", curnode);
252 #endif /* VPRINTF */
253 
254 	for (curnode = CHILD(curnode); curnode; curnode = NEXT(curnode)) {
255 		/*
256 		 * prune subtree if status property indicating not okay
257 		 */
258 		sok = status_okay((int)curnode, (char *)NULL, 0);
259 		if (!sok) {
260 			char devtype_buf[OBP_MAXPROPNAME];
261 			int size;
262 
263 #ifdef VPRINTF
264 			VPRINTF("map_wellknown: !okay status property\n");
265 #endif /* VPRINTF */
266 			/*
267 			 * a status property indicating bad memory will be
268 			 * associated with a node which has a "device_type"
269 			 * property with a value of "memory-controller"
270 			 */
271 			if ((size = GETPROPLEN(curnode,
272 			    OBP_DEVICETYPE)) == -1)
273 				continue;
274 			if (size > OBP_MAXPROPNAME) {
275 				cmn_err(CE_CONT, "node %x '%s' prop too "
276 				    "big\n", curnode, OBP_DEVICETYPE);
277 				continue;
278 			}
279 			if (GETPROP(curnode, OBP_DEVICETYPE,
280 			    devtype_buf) == -1) {
281 				cmn_err(CE_CONT, "node %x '%s' get failed\n",
282 				    curnode, OBP_DEVICETYPE);
283 				continue;
284 			}
285 			if (strcmp(devtype_buf, "memory-controller") != 0)
286 				continue;
287 			/*
288 			 * ...else fall thru and process the node...
289 			 */
290 		}
291 		bzero(tmp_name, MAXSYSNAME);
292 		if (GETPROP(curnode, OBP_NAME, (caddr_t)tmp_name) != -1)
293 			fill_address(curnode, tmp_name);
294 		if (GETPROP(curnode, OBP_DEVICETYPE, tmp_name) != -1 &&
295 		    strcmp(tmp_name, "cpu") == 0) {
296 			fill_cpu(curnode);
297 		}
298 		if (strcmp(tmp_name, "tod") == 0)
299 			have_tod(curnode);
300 		if (sok && (strcmp(tmp_name, "memory-controller") == 0) &&
301 		    (&plat_fill_mc != NULL))
302 			plat_fill_mc(curnode);
303 		map_wellknown(curnode);
304 	}
305 }
306 
307 static void
308 fill_address(dnode_t curnode, char *namep)
309 {
310 	struct wkdevice *wkp;
311 	int size;
312 	uint32_t vaddr;
313 
314 	for (wkp = wkdevice; wkp->wk_namep; ++wkp) {
315 		if (strcmp(wkp->wk_namep, namep) != 0)
316 			continue;
317 		if (wkp->wk_flags == V_MAPPED)
318 			return;
319 		if (wkp->wk_vaddrp != NULL) {
320 			if ((size = GETPROPLEN(curnode, OBP_ADDRESS)) == -1) {
321 				cmn_err(CE_CONT, "device %s size %d\n",
322 				    namep, size);
323 				continue;
324 			}
325 			if (size != sizeof (vaddr)) {
326 				cmn_err(CE_CONT, "device %s address prop too "
327 				    "big\n", namep);
328 				continue;
329 			}
330 			if (GETPROP(curnode, OBP_ADDRESS,
331 			    (caddr_t)&vaddr) == -1) {
332 				cmn_err(CE_CONT, "device %s not mapped\n",
333 				    namep);
334 				continue;
335 			}
336 
337 			/* make into a native pointer */
338 			*wkp->wk_vaddrp = (caddr_t)vaddr;
339 #ifdef VPRINTF
340 			VPRINTF("fill_address: %s mapped to %x\n", namep,
341 			    *wkp->wk_vaddrp);
342 #endif /* VPRINTF */
343 		}
344 		if (wkp->wk_func != NULL)
345 			(*wkp->wk_func)(curnode);
346 		/*
347 		 * If this one is optional and there may be more than
348 		 * one, don't set V_MAPPED, which would cause us to skip it
349 		 * next time around
350 		 */
351 		if (wkp->wk_flags != V_MULTI)
352 			wkp->wk_flags = V_MAPPED;
353 	}
354 }
355 
356 int
357 get_portid(dnode_t node, dnode_t *cmpp)
358 {
359 	int portid;
360 	char dev_type[OBP_MAXPROPNAME];
361 
362 	if (cmpp != NULL)
363 		*cmpp = OBP_NONODE;
364 
365 	if (GETPROP(node, "portid", (caddr_t)&portid) != -1)
366 		return (portid);
367 	if (GETPROP(node, "upa-portid", (caddr_t)&portid) != -1)
368 		return (portid);
369 	if (GETPROP(node, "device_type", (caddr_t)&dev_type) == -1)
370 		return (-1);
371 
372 	/* On a CMP core, the "portid" is in the parent */
373 	if (strcmp(dev_type, "cpu") == 0) {
374 		node = prom_parentnode(node);
375 		if (GETPROP(node, "portid", (caddr_t)&portid) != -1) {
376 			if (cmpp != NULL)
377 				*cmpp = node;
378 
379 			return (portid);
380 		}
381 	}
382 
383 	return (-1);
384 }
385 
386 /*
387  * Adjust page coloring variables based on the physical ecache setsize of
388  * the configured cpus:
389  *
390  * Set ecache_setsize to max ecache set size to be used by
391  * page_coloring_init() to determine the page colors to configure.
392  * The adjustment is unlikely to be necessary... For cheetah+ systems,
393  * ecache_setsize should already be set in cpu_fiximp() to the maximum
394  * possible ecache setsize of any supported cheetah+ cpus. The adjustment
395  * is for the off chance that a non-cheetah+ system may have heterogenous
396  * cpus.
397  *
398  * Set cpu_setsize to the actual cpu setsize if the setsize is homogenous
399  * across all cpus otherwise set it to -1 if heterogenous.
400  *
401  * Set cpu_page_colors to -1 to signify heterogeneity of ecache setsizes
402  * to the page_get routines.
403  */
404 static void
405 adj_ecache_setsize(int ecsetsize)
406 {
407 	if (ecsetsize > ecache_setsize)
408 		ecache_setsize = ecsetsize;
409 
410 	switch (cpu_setsize) {
411 	case -1:
412 		break;
413 	case 0:
414 		cpu_setsize = ecsetsize;
415 		break;
416 	default:
417 		/* set to -1 if hetergenous cpus */
418 		if (cpu_setsize != ecsetsize) {
419 			if (do_pg_coloring)
420 				cpu_page_colors = -1;
421 			/*
422 			 * if page coloring disabled, cpu_page_colors should
423 			 * remain 0 to prevent page coloring processing.
424 			 */
425 			cpu_setsize = -1;
426 		}
427 		break;
428 	}
429 }
430 
431 void
432 fill_cpu(dnode_t node)
433 {
434 	extern int cpu_get_cpu_unum(int, char *, int, int *);
435 	struct cpu_node *cpunode;
436 	processorid_t cpuid;
437 	int portid;
438 	int tlbsize;
439 	int size;
440 	uint_t clk_freq;
441 	dnode_t cmpnode;
442 	char namebuf[OBP_MAXPROPNAME], unum[UNUM_NAMLEN];
443 	char *namebufp;
444 
445 	if ((portid = get_portid(node, &cmpnode)) == -1) {
446 		cmn_err(CE_PANIC, "portid not found");
447 	}
448 
449 	if (GETPROP(node, "cpuid", (caddr_t)&cpuid) == -1) {
450 		cpuid = portid;
451 	}
452 
453 	if (cpuid < 0 || cpuid >= NCPU) {
454 		cmn_err(CE_PANIC, "cpu node %x: cpuid %d out of range",
455 			node, cpuid);
456 		return;
457 	}
458 
459 	cpunode = &cpunodes[cpuid];
460 	cpunode->portid = portid;
461 
462 	if (cpu_get_cpu_unum(cpuid, unum, UNUM_NAMLEN, &size) != 0) {
463 		cpunode->fru_fmri[0] = '\0';
464 	} else {
465 		(void) snprintf(cpunode->fru_fmri, sizeof (cpunode->fru_fmri),
466 		    "%s%s", CPU_FRU_FMRI, unum);
467 	}
468 
469 	(void) GETPROP(node, (cmpnode ? "compatible" : "name"), namebuf);
470 	namebufp = namebuf;
471 	if (strncmp(namebufp, "SUNW,", 5) == 0)
472 		namebufp += 5;
473 	(void) strcpy(cpunode->name, namebufp);
474 
475 	(void) GETPROP(node, "implementation#",
476 	    (caddr_t)&cpunode->implementation);
477 	(void) GETPROP(node, "mask#", (caddr_t)&cpunode->version);
478 
479 	if (IS_CHEETAH(cpunode->implementation)) {
480 		/* remap mask reg */
481 		cpunode->version = REMAP_CHEETAH_MASK(cpunode->version);
482 	}
483 	if (GETPROP(node, "clock-frequency", (caddr_t)&clk_freq) == -1) {
484 		/*
485 		 * If we didn't find it in the CPU node, look in the root node.
486 		 */
487 		dnode_t root = prom_nextnode((dnode_t)0);
488 		if (GETPROP(root, "clock-frequency", (caddr_t)&clk_freq) == -1)
489 			clk_freq = 0;
490 	}
491 	cpunode->clock_freq = clk_freq;
492 
493 	ASSERT(cpunode->clock_freq != 0);
494 	/*
495 	 * Compute scaling factor based on rate of %tick. This is used
496 	 * to convert from ticks derived from %tick to nanoseconds. See
497 	 * comment in sun4u/sys/clock.h for details.
498 	 */
499 	cpunode->tick_nsec_scale = (uint_t)(((uint64_t)NANOSEC <<
500 	    (32 - TICK_NSEC_SHIFT)) / cpunode->clock_freq);
501 
502 	(void) GETPROP(node, "#itlb-entries", (caddr_t)&tlbsize);
503 	ASSERT(tlbsize < USHRT_MAX); /* since we cast it */
504 	cpunode->itlb_size = (ushort_t)tlbsize;
505 
506 	(void) GETPROP(node, "#dtlb-entries", (caddr_t)&tlbsize);
507 	ASSERT(tlbsize < USHRT_MAX); /* since we cast it */
508 	cpunode->dtlb_size = (ushort_t)tlbsize;
509 
510 	cpunode->nodeid = node;
511 
512 	if (cmpnode != OBP_NONODE) {
513 		/*
514 		 * If the CPU has a level 3 cache, then it will be the
515 		 * external cache. Otherwise the level 2 cache is the
516 		 * external cache.
517 		 */
518 		size = 0;
519 		(void) GETPROP(node, "l3-cache-size", (caddr_t)&size);
520 		if (size <= 0)
521 			(void) GETPROP(node, "l2-cache-size", (caddr_t)&size);
522 		ASSERT(size != 0);
523 		cpunode->ecache_size = size;
524 
525 		size = 0;
526 		(void) GETPROP(node, "l3-cache-line-size", (caddr_t)&size);
527 		if (size <= 0)
528 			(void) GETPROP(node, "l2-cache-line-size",
529 			    (caddr_t)&size);
530 		ASSERT(size != 0);
531 		cpunode->ecache_linesize = size;
532 
533 		size = 0;
534 		(void) GETPROP(node, "l2-cache-associativity", (caddr_t)&size);
535 		ASSERT(size != 0);
536 		cpunode->ecache_associativity = size;
537 
538 		cmp_add_cpu(portid, cpuid);
539 	} else {
540 		size = 0;
541 		(void) GETPROP(node, "ecache-size", (caddr_t)&size);
542 		ASSERT(size != 0);
543 		cpunode->ecache_size = size;
544 
545 		size = 0;
546 		(void) GETPROP(node, "ecache-line-size", (caddr_t)&size);
547 		ASSERT(size != 0);
548 		cpunode->ecache_linesize = size;
549 
550 		size = 0;
551 		(void) GETPROP(node, "ecache-associativity", (caddr_t)&size);
552 		ASSERT(size != 0);
553 		cpunode->ecache_associativity = size;
554 	}
555 
556 	/* by default set msram to non-mirrored one */
557 	cpunode->msram = ECACHE_CPU_NON_MIRROR;
558 
559 	if (GETPROPLEN(node, "msram") != -1) {
560 		cpunode->msram = ECACHE_CPU_MIRROR;
561 	}
562 
563 	if (GETPROPLEN(node, "msram-observed") != -1) {
564 		cpunode->msram = ECACHE_CPU_MIRROR;
565 	}
566 
567 	if (ncpunode == 0) {
568 		cpu_fiximp(node);
569 	}
570 
571 	cpunode->ecache_setsize =
572 	    cpunode->ecache_size / cpunode->ecache_associativity;
573 
574 	adj_ecache_setsize(cpunode->ecache_setsize);
575 
576 	ncpunode++;
577 }
578 
579 int
580 get_portid_ddi(dev_info_t *dip, dev_info_t **cmpp)
581 {
582 	int portid;
583 	char dev_type[OBP_MAXPROPNAME];
584 	int len = OBP_MAXPROPNAME;
585 
586 	if (cmpp != NULL)
587 		*cmpp = NULL;
588 
589 	if ((portid = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
590 		    DDI_PROP_DONTPASS, "portid", -1)) != -1)
591 		return (portid);
592 	if ((portid = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
593 		    DDI_PROP_DONTPASS, "upa-portid", -1)) != -1)
594 		return (portid);
595 	if (ddi_prop_op(DDI_DEV_T_ANY, dip, PROP_LEN_AND_VAL_BUF,
596 		DDI_PROP_DONTPASS, "device_type", (caddr_t)dev_type,
597 		&len) != 0)
598 		return (-1);
599 
600 	/* On a CMP core, the "portid" is in the parent */
601 	if (strcmp(dev_type, "cpu") == 0) {
602 		dip = ddi_get_parent(dip);
603 		if ((portid = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
604 		    DDI_PROP_DONTPASS, "portid", -1)) != -1) {
605 			if (cmpp != NULL)
606 				*cmpp = dip;
607 
608 			return (portid);
609 		}
610 	}
611 
612 	return (-1);
613 }
614 
615 /*
616  * A hotplug version of fill_cpu().  (Doesn't assume that there's a node
617  * in the PROM device tree for this CPU.)  We still need the PROM version
618  * since it is called very early in the boot cycle before (before
619  * setup_ddi()).  Sigh...someday this will all be cleaned up.
620  */
621 
622 void
623 fill_cpu_ddi(dev_info_t *dip)
624 {
625 	extern int cpu_get_cpu_unum(int, char *, int, int *);
626 	struct cpu_node *cpunode;
627 	processorid_t cpuid;
628 	int portid;
629 	int len;
630 	int tlbsize;
631 	dev_info_t *cmpnode;
632 	char namebuf[OBP_MAXPROPNAME], unum[UNUM_NAMLEN];
633 	char *namebufp;
634 
635 	if ((portid = get_portid_ddi(dip, &cmpnode)) == -1) {
636 		cmn_err(CE_PANIC, "portid not found");
637 	}
638 
639 	if ((cpuid = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
640 	    DDI_PROP_DONTPASS, "cpuid", -1)) == -1) {
641 		cpuid = portid;
642 	}
643 
644 	if (cpuid < 0 || cpuid >= NCPU) {
645 		cmn_err(CE_PANIC, "cpu dip %p: cpuid %d out of range",
646 			(void *) dip, cpuid);
647 		return;
648 	}
649 
650 	cpunode = &cpunodes[cpuid];
651 	cpunode->portid = portid;
652 
653 	if (cpu_get_cpu_unum(cpuid, unum, UNUM_NAMLEN, &len) != 0) {
654 		cpunode->fru_fmri[0] = '\0';
655 	} else {
656 		(void) snprintf(cpunode->fru_fmri, sizeof (cpunode->fru_fmri),
657 		    "%s%s", CPU_FRU_FMRI, unum);
658 	}
659 
660 	len = sizeof (namebuf);
661 	(void) ddi_prop_op(DDI_DEV_T_ANY, dip, PROP_LEN_AND_VAL_BUF,
662 	    DDI_PROP_DONTPASS, (cmpnode ? "compatible" : "name"),
663 	    (caddr_t)namebuf, &len);
664 
665 	namebufp = namebuf;
666 	if (strncmp(namebufp, "SUNW,", 5) == 0)
667 		namebufp += 5;
668 	(void) strcpy(cpunode->name, namebufp);
669 
670 	cpunode->implementation = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
671 	    DDI_PROP_DONTPASS, "implementation#", 0);
672 
673 	cpunode->version = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
674 	    DDI_PROP_DONTPASS, "mask#", 0);
675 
676 	if (IS_CHEETAH(cpunode->implementation)) {
677 		/* remap mask reg */
678 		cpunode->version = REMAP_CHEETAH_MASK(cpunode->version);
679 	}
680 
681 	cpunode->clock_freq = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
682 	    DDI_PROP_DONTPASS, "clock-frequency", 0);
683 
684 	ASSERT(cpunode->clock_freq != 0);
685 	/*
686 	 * Compute scaling factor based on rate of %tick. This is used
687 	 * to convert from ticks derived from %tick to nanoseconds. See
688 	 * comment in sun4u/sys/clock.h for details.
689 	 */
690 	cpunode->tick_nsec_scale = (uint_t)(((uint64_t)NANOSEC <<
691 	    (32 - TICK_NSEC_SHIFT)) / cpunode->clock_freq);
692 
693 	tlbsize = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
694 	    DDI_PROP_DONTPASS, "#itlb-entries", 0);
695 	ASSERT(tlbsize < USHRT_MAX); /* since we cast it */
696 	cpunode->itlb_size = (ushort_t)tlbsize;
697 
698 	tlbsize = ddi_prop_get_int(DDI_DEV_T_ANY, dip,
699 	    DDI_PROP_DONTPASS, "#dtlb-entries", 0);
700 	ASSERT(tlbsize < USHRT_MAX); /* since we cast it */
701 	cpunode->dtlb_size = (ushort_t)tlbsize;
702 
703 	cpunode->nodeid = ddi_get_nodeid(dip);
704 
705 	if (cmpnode != NULL) {
706 		/*
707 		 * If the CPU has a level 3 cache, then that is it's
708 		 * external cache. Otherwise the external cache must
709 		 * be the level 2 cache.
710 		 */
711 		cpunode->ecache_size = ddi_prop_get_int(DDI_DEV_T_ANY,
712 		    dip, DDI_PROP_DONTPASS, "l3-cache-size", 0);
713 		if (cpunode->ecache_size == 0)
714 			cpunode->ecache_size = ddi_prop_get_int(DDI_DEV_T_ANY,
715 			    dip, DDI_PROP_DONTPASS, "l2-cache-size", 0);
716 		ASSERT(cpunode->ecache_size != 0);
717 
718 		cpunode->ecache_linesize = ddi_prop_get_int(DDI_DEV_T_ANY,
719 		    dip, DDI_PROP_DONTPASS, "l3-cache-line-size", 0);
720 		if (cpunode->ecache_linesize == 0)
721 			cpunode->ecache_linesize =
722 			    ddi_prop_get_int(DDI_DEV_T_ANY, dip,
723 			    DDI_PROP_DONTPASS, "l2-cache-line-size", 0);
724 		ASSERT(cpunode->ecache_linesize != 0);
725 
726 		cpunode->ecache_associativity = ddi_prop_get_int(DDI_DEV_T_ANY,
727 		    dip, DDI_PROP_DONTPASS, "l2-cache-associativity", 0);
728 		ASSERT(cpunode->ecache_associativity != 0);
729 
730 		cmp_add_cpu(portid, cpuid);
731 	} else {
732 		cpunode->ecache_size = ddi_prop_get_int(DDI_DEV_T_ANY,
733 		    dip, DDI_PROP_DONTPASS, "ecache-size", 0);
734 		ASSERT(cpunode->ecache_size != 0);
735 
736 		cpunode->ecache_linesize = ddi_prop_get_int(DDI_DEV_T_ANY,
737 		    dip, DDI_PROP_DONTPASS, "ecache-line-size", 0);
738 		ASSERT(cpunode->ecache_linesize != 0);
739 
740 		cpunode->ecache_associativity = ddi_prop_get_int(DDI_DEV_T_ANY,
741 		    dip, DDI_PROP_DONTPASS, "ecache-associativity", 0);
742 		ASSERT(cpunode->ecache_associativity != 0);
743 	}
744 
745 	/* by default set msram to non-mirrored one */
746 	cpunode->msram = ECACHE_CPU_NON_MIRROR;
747 
748 	if (ddi_prop_exists(DDI_DEV_T_ANY, dip, DDI_PROP_DONTPASS, "msram")) {
749 			cpunode->msram = ECACHE_CPU_MIRROR;
750 	} else if (ddi_prop_exists(DDI_DEV_T_ANY, dip, DDI_PROP_DONTPASS,
751 			"msram-observed")) {
752 				cpunode->msram = ECACHE_CPU_MIRROR;
753 	}
754 
755 	ASSERT(ncpunode > 0);	/* fiximp not req'd */
756 
757 	cpunode->ecache_setsize =
758 	    cpunode->ecache_size / cpunode->ecache_associativity;
759 
760 	adj_ecache_setsize(cpunode->ecache_setsize);
761 
762 	ncpunode++;
763 }
764 
765 void
766 empty_cpu(int cpuid)
767 {
768 	bzero(&cpunodes[cpuid], sizeof (struct cpu_node));
769 	ncpunode--;
770 }
771 
772 #ifdef SF_ERRATA_30 /* call causes fp-disabled */
773 int spitfire_call_bug = 0;
774 #endif
775 #ifdef SF_V9_TABLE_28	/* fp over/underflow traps may cause wrong fsr.cexc */
776 int spitfire_bb_fsr_bug = 0;
777 #endif
778 
779 #ifdef JALAPENO_ERRATA_85
780 /*
781  * Set the values here assuming we're running 2.4 or later Jalapenos.  If
782  * not, they'll be reset below.  Either way, the default can be overridden
783  * when we read /etc/system later in boot.
784  */
785 int jp_errata_85_allow_slow_scrub = 1;
786 int jp_errata_85_enable = 0;
787 #endif	/* JALAPENO_ERRATA_85 */
788 
789 static void
790 check_cpus_ver(void)
791 {
792 	int i;
793 	int impl, cpuid = getprocessorid();
794 	int min_supported_rev;
795 
796 	ASSERT(cpunodes[cpuid].nodeid != 0);
797 
798 	impl = cpunodes[cpuid].implementation;
799 	switch (impl) {
800 	default:
801 		min_supported_rev = 0;
802 		break;
803 	case SPITFIRE_IMPL:
804 		min_supported_rev = SPITFIRE_MINREV_SUPPORTED;
805 		break;
806 	case CHEETAH_IMPL:
807 		min_supported_rev = CHEETAH_MINREV_SUPPORTED;
808 		break;
809 	}
810 
811 	for (i = 0; i < NCPU; i++) {
812 		if (cpunodes[i].nodeid == 0)
813 			continue;
814 
815 		if (IS_SPITFIRE(impl)) {
816 			if (cpunodes[i].version < min_supported_rev) {
817 				cmn_err(CE_PANIC,
818 				"UltraSPARC versions older than %d.%d"
819 				" are no longer supported (cpu #%d)",
820 				SPITFIRE_MAJOR_VERSION(min_supported_rev),
821 				SPITFIRE_MINOR_VERSION(min_supported_rev), i);
822 			}
823 
824 			/*
825 			 * Min supported rev is 2.1 but we've seen problems
826 			 * with that so we still want to warn if we see one.
827 			 */
828 			if (cpunodes[i].version < 0x22) {
829 				cmn_err(CE_WARN,
830 				"UltraSPARC versions older than "
831 				"2.2 are not supported (cpu #%d)", i);
832 #ifdef SF_ERRATA_30 /* call causes fp-disabled */
833 				spitfire_call_bug = 1;
834 #endif /* SF_ERRATA_30 */
835 			}
836 		}
837 
838 
839 #ifdef SF_V9_TABLE_28	/* fp over/underflow traps may cause wrong fsr.cexc */
840 		if (IS_SPITFIRE(impl) || IS_BLACKBIRD(impl))
841 			spitfire_bb_fsr_bug = 1;
842 #endif /* SF_V9_TABLE_28 */
843 
844 		if (IS_CHEETAH(impl)) {
845 			if (cpunodes[i].version < min_supported_rev) {
846 				cmn_err(CE_PANIC,
847 				"UltraSPARC-III versions older than %d.%d"
848 				" are no longer supported (cpu #%d)",
849 				CHEETAH_MAJOR_VERSION(min_supported_rev),
850 				CHEETAH_MINOR_VERSION(min_supported_rev), i);
851 			}
852 
853 		}
854 
855 #ifdef JALAPENO_ERRATA_85
856 		if (IS_JALAPENO(impl) && (cpunodes[i].version < 0x24)) {
857 			jp_errata_85_allow_slow_scrub = 0;
858 			jp_errata_85_enable = 1;
859 		}
860 #endif /* JALAPENO_ERRATA_85 */
861 	}
862 }
863 
864 /*
865  * Check for a legal set of CPUs.
866  */
867 static void
868 check_cpus_set(void)
869 {
870 	int i;
871 	int impl;
872 	int npanther = 0;
873 
874 	impl = cpunodes[getprocessorid()].implementation;
875 
876 	switch (impl) {
877 	case CHEETAH_PLUS_IMPL:
878 	case JAGUAR_IMPL:
879 	case PANTHER_IMPL:
880 		/*
881 		 * Check for a legal heterogeneous set of CPUs.
882 		 */
883 		for (i = 0; i < NCPU; i++) {
884 			if (cpunodes[i].nodeid == 0)
885 				continue;
886 
887 			if (IS_PANTHER(cpunodes[i].implementation)) {
888 				npanther += 1;
889 			}
890 
891 			if (!(IS_CHEETAH_PLUS(cpunodes[i].implementation) ||
892 			    IS_JAGUAR(cpunodes[i].implementation) ||
893 			    IS_PANTHER(cpunodes[i].implementation))) {
894 				use_mp = 0;
895 				break;
896 			}
897 		}
898 		break;
899 	default:
900 		/*
901 		 * Check for a homogeneous set of CPUs.
902 		 */
903 		for (i = 0; i < NCPU; i++) {
904 			if (cpunodes[i].nodeid == 0)
905 				continue;
906 
907 			if (cpunodes[i].implementation != impl) {
908 				use_mp = 0;
909 				break;
910 			}
911 		}
912 		break;
913 	}
914 
915 	/*
916 	 * Change from mmu_page_sizes from 4 to 6 for totally-Panther domains,
917 	 * where npanther == ncpunode.
918 	 */
919 	if (&mmu_init_mmu_page_sizes) {
920 		(void) mmu_init_mmu_page_sizes(npanther);
921 	}
922 
923 	/*
924 	 * Set max cpus we can have based on ncpunode and use_mp
925 	 */
926 	if (use_mp) {
927 		int (*set_max_ncpus)(void);
928 
929 		set_max_ncpus = (int (*)(void))
930 			kobj_getsymvalue("set_platform_max_ncpus", 0);
931 
932 		if (set_max_ncpus) {
933 			max_ncpus = set_max_ncpus();
934 			if (max_ncpus < ncpunode)
935 				max_ncpus = ncpunode;
936 			boot_max_ncpus = ncpunode;
937 		} else {
938 			max_ncpus = ncpunode;
939 		}
940 	} else {
941 		cmn_err(CE_NOTE, "MP not supported on mismatched modules,"
942 		    " booting UP only");
943 
944 		for (i = 0; i < NCPU; i++) {
945 			if (cpunodes[i].nodeid == 0)
946 				continue;
947 
948 			cmn_err(CE_NOTE, "cpu%d: %s version 0x%x", i,
949 			    cpunodes[i].name, cpunodes[i].version);
950 		}
951 
952 		max_ncpus = 1;
953 	}
954 }
955 
956 /*
957  * The first sysio must always programmed up for the system clock and error
958  * handling purposes, referenced by v_sysio_addr in machdep.c.
959  */
960 static void
961 have_sbus(dnode_t node)
962 {
963 	int size;
964 	uint_t portid;
965 
966 	size = GETPROPLEN(node, "upa-portid");
967 	if (size == -1 || size > sizeof (portid))
968 		cmn_err(CE_PANIC, "upa-portid size");
969 	if (GETPROP(node, "upa-portid", (caddr_t)&portid) == -1)
970 		cmn_err(CE_PANIC, "upa-portid");
971 
972 	niobus++;
973 
974 	/*
975 	 * need one physical TSB
976 	 */
977 	niommu_tsbs++;
978 }
979 
980 
981 #define	IOMMU_PER_SCHIZO	2
982 
983 /*
984  * The first psycho must always programmed up for the system clock and error
985  * handling purposes.
986  */
987 static void
988 have_pci(dnode_t node)
989 {
990 	int size;
991 	uint_t portid;
992 	char compatible[OBP_MAXDRVNAME];
993 
994 	size = GETPROPLEN(node, "portid");
995 	if (size == -1) size = GETPROPLEN(node, "upa-portid");
996 	if (size == -1)
997 		return;
998 	if (size > sizeof (portid))
999 		cmn_err(CE_PANIC, "portid size wrong");
1000 
1001 	if (GETPROP(node, "portid", (caddr_t)&portid) == -1)
1002 		if (GETPROP(node, "upa-portid", (caddr_t)&portid) == -1)
1003 			cmn_err(CE_PANIC, "portid not found");
1004 
1005 	niobus++;
1006 
1007 
1008 	/*
1009 	 * Need two physical TSBs for Schizo compatible nodes,
1010 	 * one otherwise.
1011 	 */
1012 	compatible[0] = '\0';
1013 	(void) prom_getprop(node, OBP_COMPATIBLE, compatible);
1014 	if (strcmp(compatible, "pci108e,8001") == 0)
1015 		niommu_tsbs += IOMMU_PER_SCHIZO;
1016 	else
1017 		niommu_tsbs++;
1018 }
1019 
1020 /*
1021  * The first eeprom is used as the TOD clock, referenced
1022  * by v_eeprom_addr in locore.s.
1023  */
1024 static void
1025 have_eeprom(dnode_t node)
1026 {
1027 	int size;
1028 	uint32_t eaddr;
1029 
1030 	/*
1031 	 * "todmostek" module will be selected based on finding a "model"
1032 	 * property value of "mk48t59" in the "eeprom" node.
1033 	 */
1034 	if (tod_module_name == NULL) {
1035 		char buf[MAXSYSNAME];
1036 
1037 		if ((GETPROP(node, "model", buf) != -1) &&
1038 		    (strcmp(buf, "mk48t59") == 0))
1039 			tod_module_name = "todmostek";
1040 	}
1041 
1042 	/*
1043 	 * If we have found two distinct eeprom's, then we're done.
1044 	 */
1045 	if (v_eeprom_addr && v_timecheck_addr != v_eeprom_addr)
1046 		return;
1047 
1048 	/*
1049 	 * multiple eeproms may exist but at least
1050 	 * one must have an "address" property
1051 	 */
1052 	if ((size = GETPROPLEN(node, OBP_ADDRESS)) == -1)
1053 		return;
1054 	if (size != sizeof (eaddr))
1055 		cmn_err(CE_PANIC, "eeprom addr size");
1056 	if (GETPROP(node, OBP_ADDRESS, (caddr_t)&eaddr) == -1)
1057 		cmn_err(CE_PANIC, "eeprom addr");
1058 
1059 	/*
1060 	 * If we have a chosen eeprom and it is not this node, keep looking.
1061 	 */
1062 	if (chosen_eeprom != NULL && chosen_eeprom != node) {
1063 		v_timecheck_addr = (caddr_t)eaddr;
1064 		return;
1065 	}
1066 
1067 	v_eeprom_addr = (caddr_t)eaddr;
1068 
1069 	/*
1070 	 * If we don't find an I/O board to use to check the clock,
1071 	 * we'll fall back on whichever TOD is available.
1072 	 */
1073 	if (v_timecheck_addr == NULL)
1074 		v_timecheck_addr = v_eeprom_addr;
1075 
1076 	/*
1077 	 * Does this eeprom have watchdog support?
1078 	 */
1079 	if (GETPROPLEN(node, WATCHDOG_ENABLE) != -1)
1080 		watchdog_available = 1;
1081 }
1082 
1083 static void
1084 have_rtc(dnode_t node)
1085 {
1086 	int size;
1087 	uint32_t eaddr;
1088 
1089 	/*
1090 	 * "ds1287" module will be selected based on finding a "model"
1091 	 * property value of "ds1287" in the "rtc" node.
1092 	 */
1093 	if (tod_module_name == NULL) {
1094 		char buf[MAXSYSNAME];
1095 
1096 		if (GETPROP(node, "model", buf) != -1) {
1097 			if ((strcmp(buf, "m5819p") == 0) ||
1098 			    (strcmp(buf, "m5823") == 0))
1099 			    tod_module_name = "todm5823";
1100 			else if (strcmp(buf, "ds1287") == 0)
1101 			    tod_module_name = "todds1287";
1102 		}
1103 	}
1104 
1105 	/*
1106 	 * XXX - drives on if address prop doesn't exist, later falls
1107 	 * over in tod module
1108 	 */
1109 	if ((size = GETPROPLEN(node, OBP_ADDRESS)) == -1)
1110 		return;
1111 	if (size != sizeof (eaddr))
1112 		cmn_err(CE_PANIC, "rtc addr size");
1113 	if (GETPROP(node, OBP_ADDRESS, (caddr_t)&eaddr) == -1)
1114 		cmn_err(CE_PANIC, "rtc addr");
1115 
1116 	v_rtc_addr_reg = (caddr_t)eaddr;
1117 	v_rtc_data_reg = (volatile unsigned char *)eaddr + 1;
1118 
1119 	/*
1120 	 * Does this rtc have watchdog support?
1121 	 */
1122 	if (GETPROPLEN(node, WATCHDOG_ENABLE) != -1)
1123 		watchdog_available = 1;
1124 }
1125 
1126 static void
1127 have_pmc(dnode_t node)
1128 {
1129 	uint32_t vaddr;
1130 	dnode_t root;
1131 
1132 	/*
1133 	 * Watchdog property is in the root node.
1134 	 */
1135 	root = prom_nextnode((dnode_t)0);
1136 	if (GETPROPLEN(root, WATCHDOG_ENABLE) != -1) {
1137 		/*
1138 		 * The hardware watchdog timer resides within logical
1139 		 * unit 8 of SuperI/O. The address property of the node
1140 		 * contains the virtual address that we use to program
1141 		 * the timer.
1142 		 */
1143 		if (GETPROP(node, OBP_ADDRESS, (caddr_t)&vaddr) == -1) {
1144 			watchdog_available = 0;
1145 			return;
1146 		}
1147 		v_pmc_addr_reg = (volatile uint8_t *)vaddr;
1148 		v_pmc_data_reg = (volatile uint8_t *)vaddr + 1;
1149 		watchdog_available = 1;
1150 	}
1151 }
1152 
1153 static void
1154 have_auxio(dnode_t node)
1155 {
1156 	size_t size, n;
1157 	uint32_t addr[5];
1158 
1159 	/*
1160 	 * Get the size of the auzio's address property.
1161 	 * On some platforms, the address property contains one
1162 	 * entry and on others it contains five entries.
1163 	 * In all cases, the first entries are compatible.
1164 	 *
1165 	 * This routine gets the address property for the auxio
1166 	 * node and stores the first entry in v_auxio_addr which
1167 	 * is used by the routine set_auxioreg in sun4u/ml/locore.s.
1168 	 */
1169 	if ((size = GETPROPLEN(node, OBP_ADDRESS)) == -1)
1170 		cmn_err(CE_PANIC, "no auxio address property");
1171 
1172 	switch (n = (size / sizeof (addr[0]))) {
1173 	case 1:
1174 		break;
1175 	case 5:
1176 		break;
1177 	default:
1178 		cmn_err(CE_PANIC, "auxio addr has %lu entries?", n);
1179 	}
1180 
1181 	if (GETPROP(node, OBP_ADDRESS, (caddr_t)addr) == -1)
1182 		cmn_err(CE_PANIC, "auxio addr");
1183 
1184 	v_auxio_addr = (caddr_t)addr[0];	/* make into a C pointer */
1185 }
1186 
1187 static void
1188 have_tod(dnode_t node)
1189 {
1190 	static char tod_name[MAXSYSNAME];
1191 
1192 	if (GETPROP(node, OBP_NAME, (caddr_t)tod_name) == -1)
1193 		cmn_err(CE_PANIC, "tod name");
1194 	/*
1195 	 * This is a node with "device_type" property value of "tod".
1196 	 * Name of the tod module is the name from the node.
1197 	 */
1198 	tod_module_name = tod_name;
1199 }
1200