Home | History | Annotate | Line # | Download | only in oea
cpu_subr.c revision 1.39
      1 /*	$NetBSD: cpu_subr.c,v 1.39 2007/12/31 01:37:13 macallan Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 2001 Matt Thomas.
      5  * Copyright (c) 2001 Tsubai Masanari.
      6  * Copyright (c) 1998, 1999, 2001 Internet Research Institute, Inc.
      7  * All rights reserved.
      8  *
      9  * Redistribution and use in source and binary forms, with or without
     10  * modification, are permitted provided that the following conditions
     11  * are met:
     12  * 1. Redistributions of source code must retain the above copyright
     13  *    notice, this list of conditions and the following disclaimer.
     14  * 2. Redistributions in binary form must reproduce the above copyright
     15  *    notice, this list of conditions and the following disclaimer in the
     16  *    documentation and/or other materials provided with the distribution.
     17  * 3. All advertising materials mentioning features or use of this software
     18  *    must display the following acknowledgement:
     19  *	This product includes software developed by
     20  *	Internet Research Institute, Inc.
     21  * 4. The name of the author may not be used to endorse or promote products
     22  *    derived from this software without specific prior written permission.
     23  *
     24  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     25  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     26  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     27  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     28  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     29  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     30  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     31  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     32  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     33  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     34  */
     35 
     36 #include <sys/cdefs.h>
     37 __KERNEL_RCSID(0, "$NetBSD: cpu_subr.c,v 1.39 2007/12/31 01:37:13 macallan Exp $");
     38 
     39 #include "opt_ppcparam.h"
     40 #include "opt_multiprocessor.h"
     41 #include "opt_altivec.h"
     42 #include "sysmon_envsys.h"
     43 
     44 #include <sys/param.h>
     45 #include <sys/systm.h>
     46 #include <sys/device.h>
     47 #include <sys/types.h>
     48 #include <sys/lwp.h>
     49 #include <sys/user.h>
     50 #include <sys/malloc.h>
     51 
     52 #include <uvm/uvm_extern.h>
     53 
     54 #include <powerpc/oea/hid.h>
     55 #include <powerpc/oea/hid_601.h>
     56 #include <powerpc/spr.h>
     57 
     58 #include <dev/sysmon/sysmonvar.h>
     59 
     60 static void cpu_enable_l2cr(register_t);
     61 static void cpu_enable_l3cr(register_t);
     62 static void cpu_config_l2cr(int);
     63 static void cpu_config_l3cr(int);
     64 static void cpu_probe_speed(struct cpu_info *);
     65 static void cpu_idlespin(void);
     66 #if NSYSMON_ENVSYS > 0
     67 static void cpu_tau_setup(struct cpu_info *);
     68 static void cpu_tau_refresh(struct sysmon_envsys *, envsys_data_t *);
     69 #endif
     70 
     71 int cpu;
     72 int ncpus;
     73 
     74 struct fmttab {
     75 	register_t fmt_mask;
     76 	register_t fmt_value;
     77 	const char *fmt_string;
     78 };
     79 
     80 static const struct fmttab cpu_7450_l2cr_formats[] = {
     81 	{ L2CR_L2E, 0, " disabled" },
     82 	{ L2CR_L2DO|L2CR_L2IO, L2CR_L2DO, " data-only" },
     83 	{ L2CR_L2DO|L2CR_L2IO, L2CR_L2IO, " instruction-only" },
     84 	{ L2CR_L2DO|L2CR_L2IO, L2CR_L2DO|L2CR_L2IO, " locked" },
     85 	{ L2CR_L2E, ~0, " 256KB L2 cache" },
     86 	{ L2CR_L2PE, 0, " no parity" },
     87 	{ L2CR_L2PE, ~0, " parity enabled" },
     88 	{ 0, 0, NULL }
     89 };
     90 
     91 static const struct fmttab cpu_7448_l2cr_formats[] = {
     92 	{ L2CR_L2E, 0, " disabled" },
     93 	{ L2CR_L2DO|L2CR_L2IO, L2CR_L2DO, " data-only" },
     94 	{ L2CR_L2DO|L2CR_L2IO, L2CR_L2IO, " instruction-only" },
     95 	{ L2CR_L2DO|L2CR_L2IO, L2CR_L2DO|L2CR_L2IO, " locked" },
     96 	{ L2CR_L2E, ~0, " 1MB L2 cache" },
     97 	{ L2CR_L2PE, 0, " no parity" },
     98 	{ L2CR_L2PE, ~0, " parity enabled" },
     99 	{ 0, 0, NULL }
    100 };
    101 
    102 static const struct fmttab cpu_7457_l2cr_formats[] = {
    103 	{ L2CR_L2E, 0, " disabled" },
    104 	{ L2CR_L2DO|L2CR_L2IO, L2CR_L2DO, " data-only" },
    105 	{ L2CR_L2DO|L2CR_L2IO, L2CR_L2IO, " instruction-only" },
    106 	{ L2CR_L2DO|L2CR_L2IO, L2CR_L2DO|L2CR_L2IO, " locked" },
    107 	{ L2CR_L2E, ~0, " 512KB L2 cache" },
    108 	{ L2CR_L2PE, 0, " no parity" },
    109 	{ L2CR_L2PE, ~0, " parity enabled" },
    110 	{ 0, 0, NULL }
    111 };
    112 
    113 static const struct fmttab cpu_7450_l3cr_formats[] = {
    114 	{ L3CR_L3DO|L3CR_L3IO, L3CR_L3DO, " data-only" },
    115 	{ L3CR_L3DO|L3CR_L3IO, L3CR_L3IO, " instruction-only" },
    116 	{ L3CR_L3DO|L3CR_L3IO, L3CR_L3DO|L3CR_L3IO, " locked" },
    117 	{ L3CR_L3SIZ, L3SIZ_2M, " 2MB" },
    118 	{ L3CR_L3SIZ, L3SIZ_1M, " 1MB" },
    119 	{ L3CR_L3PE|L3CR_L3APE, L3CR_L3PE|L3CR_L3APE, " parity" },
    120 	{ L3CR_L3PE|L3CR_L3APE, L3CR_L3PE, " data-parity" },
    121 	{ L3CR_L3PE|L3CR_L3APE, L3CR_L3APE, " address-parity" },
    122 	{ L3CR_L3PE|L3CR_L3APE, 0, " no-parity" },
    123 	{ L3CR_L3SIZ, ~0, " L3 cache" },
    124 	{ L3CR_L3RT, L3RT_MSUG2_DDR, " (DDR SRAM)" },
    125 	{ L3CR_L3RT, L3RT_PIPELINE_LATE, " (LW SRAM)" },
    126 	{ L3CR_L3RT, L3RT_PB2_SRAM, " (PB2 SRAM)" },
    127 	{ L3CR_L3CLK, ~0, " at" },
    128 	{ L3CR_L3CLK, L3CLK_20, " 2:1" },
    129 	{ L3CR_L3CLK, L3CLK_25, " 2.5:1" },
    130 	{ L3CR_L3CLK, L3CLK_30, " 3:1" },
    131 	{ L3CR_L3CLK, L3CLK_35, " 3.5:1" },
    132 	{ L3CR_L3CLK, L3CLK_40, " 4:1" },
    133 	{ L3CR_L3CLK, L3CLK_50, " 5:1" },
    134 	{ L3CR_L3CLK, L3CLK_60, " 6:1" },
    135 	{ L3CR_L3CLK, ~0, " ratio" },
    136 	{ 0, 0, NULL },
    137 };
    138 
    139 static const struct fmttab cpu_ibm750_l2cr_formats[] = {
    140 	{ L2CR_L2E, 0, " disabled" },
    141 	{ L2CR_L2DO|L2CR_L2IO, L2CR_L2DO, " data-only" },
    142 	{ L2CR_L2DO|L2CR_L2IO, L2CR_L2IO, " instruction-only" },
    143 	{ L2CR_L2DO|L2CR_L2IO, L2CR_L2DO|L2CR_L2IO, " locked" },
    144 	{ 0, ~0, " 512KB" },
    145 	{ L2CR_L2WT, L2CR_L2WT, " WT" },
    146 	{ L2CR_L2WT, 0, " WB" },
    147 	{ L2CR_L2PE, L2CR_L2PE, " with ECC" },
    148 	{ 0, ~0, " L2 cache" },
    149 	{ 0, 0, NULL }
    150 };
    151 
    152 static const struct fmttab cpu_l2cr_formats[] = {
    153 	{ L2CR_L2E, 0, " disabled" },
    154 	{ L2CR_L2DO|L2CR_L2IO, L2CR_L2DO, " data-only" },
    155 	{ L2CR_L2DO|L2CR_L2IO, L2CR_L2IO, " instruction-only" },
    156 	{ L2CR_L2DO|L2CR_L2IO, L2CR_L2DO|L2CR_L2IO, " locked" },
    157 	{ L2CR_L2PE, L2CR_L2PE, " parity" },
    158 	{ L2CR_L2PE, 0, " no-parity" },
    159 	{ L2CR_L2SIZ, L2SIZ_2M, " 2MB" },
    160 	{ L2CR_L2SIZ, L2SIZ_1M, " 1MB" },
    161 	{ L2CR_L2SIZ, L2SIZ_512K, " 512KB" },
    162 	{ L2CR_L2SIZ, L2SIZ_256K, " 256KB" },
    163 	{ L2CR_L2WT, L2CR_L2WT, " WT" },
    164 	{ L2CR_L2WT, 0, " WB" },
    165 	{ L2CR_L2E, ~0, " L2 cache" },
    166 	{ L2CR_L2RAM, L2RAM_FLOWTHRU_BURST, " (FB SRAM)" },
    167 	{ L2CR_L2RAM, L2RAM_PIPELINE_LATE, " (LW SRAM)" },
    168 	{ L2CR_L2RAM, L2RAM_PIPELINE_BURST, " (PB SRAM)" },
    169 	{ L2CR_L2CLK, ~0, " at" },
    170 	{ L2CR_L2CLK, L2CLK_10, " 1:1" },
    171 	{ L2CR_L2CLK, L2CLK_15, " 1.5:1" },
    172 	{ L2CR_L2CLK, L2CLK_20, " 2:1" },
    173 	{ L2CR_L2CLK, L2CLK_25, " 2.5:1" },
    174 	{ L2CR_L2CLK, L2CLK_30, " 3:1" },
    175 	{ L2CR_L2CLK, L2CLK_35, " 3.5:1" },
    176 	{ L2CR_L2CLK, L2CLK_40, " 4:1" },
    177 	{ L2CR_L2CLK, ~0, " ratio" },
    178 	{ 0, 0, NULL }
    179 };
    180 
    181 static void cpu_fmttab_print(const struct fmttab *, register_t);
    182 
    183 struct cputab {
    184 	const char name[8];
    185 	uint16_t version;
    186 	uint16_t revfmt;
    187 };
    188 #define	REVFMT_MAJMIN	1		/* %u.%u */
    189 #define	REVFMT_HEX	2		/* 0x%04x */
    190 #define	REVFMT_DEC	3		/* %u */
    191 static const struct cputab models[] = {
    192 	{ "601",	MPC601,		REVFMT_DEC },
    193 	{ "602",	MPC602,		REVFMT_DEC },
    194 	{ "603",	MPC603,		REVFMT_MAJMIN },
    195 	{ "603e",	MPC603e,	REVFMT_MAJMIN },
    196 	{ "603ev",	MPC603ev,	REVFMT_MAJMIN },
    197 	{ "G2",		MPCG2,		REVFMT_MAJMIN },
    198 	{ "604",	MPC604,		REVFMT_MAJMIN },
    199 	{ "604e",	MPC604e,	REVFMT_MAJMIN },
    200 	{ "604ev",	MPC604ev,	REVFMT_MAJMIN },
    201 	{ "620",	MPC620,  	REVFMT_HEX },
    202 	{ "750",	MPC750,		REVFMT_MAJMIN },
    203 	{ "750FX",	IBM750FX,	REVFMT_MAJMIN },
    204 	{ "7400",	MPC7400,	REVFMT_MAJMIN },
    205 	{ "7410",	MPC7410,	REVFMT_MAJMIN },
    206 	{ "7450",	MPC7450,	REVFMT_MAJMIN },
    207 	{ "7455",	MPC7455,	REVFMT_MAJMIN },
    208 	{ "7457",	MPC7457,	REVFMT_MAJMIN },
    209 	{ "7447A",	MPC7447A,	REVFMT_MAJMIN },
    210 	{ "7448",	MPC7448,	REVFMT_MAJMIN },
    211 	{ "8240",	MPC8240,	REVFMT_MAJMIN },
    212 	{ "8245",	MPC8245,	REVFMT_MAJMIN },
    213 	{ "970",	IBM970,		REVFMT_MAJMIN },
    214 	{ "970FX",	IBM970FX,	REVFMT_MAJMIN },
    215 	{ "",		0,		REVFMT_HEX }
    216 };
    217 
    218 #ifdef MULTIPROCESSOR
    219 struct cpu_info cpu_info[CPU_MAXNUM] = { { .ci_curlwp = &lwp0, }, };
    220 volatile struct cpu_hatch_data *cpu_hatch_data;
    221 volatile int cpu_hatch_stack;
    222 extern int ticks_per_intr;
    223 #include <powerpc/oea/bat.h>
    224 #include <arch/powerpc/pic/picvar.h>
    225 #include <arch/powerpc/pic/ipivar.h>
    226 extern struct bat battable[];
    227 #else
    228 struct cpu_info cpu_info[1] = { { .ci_curlwp = &lwp0, }, };
    229 #endif /*MULTIPROCESSOR*/
    230 
    231 int cpu_altivec;
    232 int cpu_psluserset, cpu_pslusermod;
    233 char cpu_model[80];
    234 
    235 void
    236 cpu_fmttab_print(const struct fmttab *fmt, register_t data)
    237 {
    238 	for (; fmt->fmt_mask != 0 || fmt->fmt_value != 0; fmt++) {
    239 		if ((~fmt->fmt_mask & fmt->fmt_value) != 0 ||
    240 		    (data & fmt->fmt_mask) == fmt->fmt_value)
    241 			aprint_normal("%s", fmt->fmt_string);
    242 	}
    243 }
    244 
    245 void
    246 cpu_idlespin(void)
    247 {
    248 	register_t msr;
    249 
    250 	if (powersave <= 0)
    251 		return;
    252 
    253 	__asm volatile(
    254 		"sync;"
    255 		"mfmsr	%0;"
    256 		"oris	%0,%0,%1@h;"	/* enter power saving mode */
    257 		"mtmsr	%0;"
    258 		"isync;"
    259 	    :	"=r"(msr)
    260 	    :	"J"(PSL_POW));
    261 }
    262 
    263 void
    264 cpu_probe_cache(void)
    265 {
    266 	u_int assoc, pvr, vers;
    267 
    268 	pvr = mfpvr();
    269 	vers = pvr >> 16;
    270 
    271 
    272 	/* Presently common across almost all implementations. */
    273 	curcpu()->ci_ci.dcache_line_size = CACHELINESIZE;
    274 	curcpu()->ci_ci.icache_line_size = CACHELINESIZE;
    275 
    276 
    277 	switch (vers) {
    278 #define	K	*1024
    279 	case IBM750FX:
    280 	case MPC601:
    281 	case MPC750:
    282 	case MPC7447A:
    283 	case MPC7448:
    284 	case MPC7450:
    285 	case MPC7455:
    286 	case MPC7457:
    287 		curcpu()->ci_ci.dcache_size = 32 K;
    288 		curcpu()->ci_ci.icache_size = 32 K;
    289 		assoc = 8;
    290 		break;
    291 	case MPC603:
    292 		curcpu()->ci_ci.dcache_size = 8 K;
    293 		curcpu()->ci_ci.icache_size = 8 K;
    294 		assoc = 2;
    295 		break;
    296 	case MPC603e:
    297 	case MPC603ev:
    298 	case MPC604:
    299 	case MPC8240:
    300 	case MPC8245:
    301 	case MPCG2:
    302 		curcpu()->ci_ci.dcache_size = 16 K;
    303 		curcpu()->ci_ci.icache_size = 16 K;
    304 		assoc = 4;
    305 		break;
    306 	case MPC604e:
    307 	case MPC604ev:
    308 		curcpu()->ci_ci.dcache_size = 32 K;
    309 		curcpu()->ci_ci.icache_size = 32 K;
    310 		assoc = 4;
    311 		break;
    312 	case IBM970:
    313 	case IBM970FX:
    314 		curcpu()->ci_ci.dcache_size = 32 K;
    315 		curcpu()->ci_ci.icache_size = 64 K;
    316 		curcpu()->ci_ci.dcache_line_size = 128;
    317 		curcpu()->ci_ci.icache_line_size = 128;
    318 		assoc = 2;
    319 		break;
    320 
    321 	default:
    322 		curcpu()->ci_ci.dcache_size = PAGE_SIZE;
    323 		curcpu()->ci_ci.icache_size = PAGE_SIZE;
    324 		assoc = 1;
    325 #undef	K
    326 	}
    327 
    328 	/*
    329 	 * Possibly recolor.
    330 	 */
    331 	uvm_page_recolor(atop(curcpu()->ci_ci.dcache_size / assoc));
    332 }
    333 
    334 struct cpu_info *
    335 cpu_attach_common(struct device *self, int id)
    336 {
    337 	struct cpu_info *ci;
    338 	u_int pvr, vers;
    339 
    340 	ci = &cpu_info[id];
    341 #ifndef MULTIPROCESSOR
    342 	/*
    343 	 * If this isn't the primary CPU, print an error message
    344 	 * and just bail out.
    345 	 */
    346 	if (id != 0) {
    347 		aprint_normal(": ID %d\n", id);
    348 		aprint_normal("%s: processor off-line; multiprocessor support "
    349 		    "not present in kernel\n", self->dv_xname);
    350 		return (NULL);
    351 	}
    352 #endif
    353 
    354 	ci->ci_cpuid = id;
    355 	ci->ci_intrdepth = -1;
    356 	ci->ci_dev = self;
    357 	ci->ci_idlespin = cpu_idlespin;
    358 
    359 	pvr = mfpvr();
    360 	vers = (pvr >> 16) & 0xffff;
    361 
    362 	switch (id) {
    363 	case 0:
    364 		/* load my cpu_number to PIR */
    365 		switch (vers) {
    366 		case MPC601:
    367 		case MPC604:
    368 		case MPC604e:
    369 		case MPC604ev:
    370 		case MPC7400:
    371 		case MPC7410:
    372 		case MPC7447A:
    373 		case MPC7448:
    374 		case MPC7450:
    375 		case MPC7455:
    376 		case MPC7457:
    377 			mtspr(SPR_PIR, id);
    378 		}
    379 		cpu_setup(self, ci);
    380 		break;
    381 	default:
    382 		if (id >= CPU_MAXNUM) {
    383 			aprint_normal(": more than %d cpus?\n", CPU_MAXNUM);
    384 			panic("cpuattach");
    385 		}
    386 #ifndef MULTIPROCESSOR
    387 		aprint_normal(" not configured\n");
    388 		return NULL;
    389 #else
    390 		mi_cpu_attach(ci);
    391 		break;
    392 #endif
    393 	}
    394 	return (ci);
    395 }
    396 
    397 void
    398 cpu_setup(self, ci)
    399 	struct device *self;
    400 	struct cpu_info *ci;
    401 {
    402 	u_int hid0, pvr, vers;
    403 	const char *bitmask;
    404 	char hidbuf[128];
    405 	char model[80];
    406 
    407 	pvr = mfpvr();
    408 	vers = (pvr >> 16) & 0xffff;
    409 
    410 	cpu_identify(model, sizeof(model));
    411 	aprint_normal(": %s, ID %d%s\n", model,  cpu_number(),
    412 	    cpu_number() == 0 ? " (primary)" : "");
    413 
    414 #if defined (PPC_OEA) || defined (PPC_OEA64)
    415 	hid0 = mfspr(SPR_HID0);
    416 #elif defined (PPC_OEA64_BRIDGE)
    417 	hid0 = mfspr(SPR_HID0);
    418 #endif
    419 
    420 	cpu_probe_cache();
    421 
    422 	/*
    423 	 * Configure power-saving mode.
    424 	 */
    425 	switch (vers) {
    426 	case MPC604:
    427 	case MPC604e:
    428 	case MPC604ev:
    429 		/*
    430 		 * Do not have HID0 support settings, but can support
    431 		 * MSR[POW] off
    432 		 */
    433 		powersave = 1;
    434 		break;
    435 
    436 	case MPC603:
    437 	case MPC603e:
    438 	case MPC603ev:
    439 	case MPC750:
    440 	case IBM750FX:
    441 	case MPC7400:
    442 	case MPC7410:
    443 	case MPC8240:
    444 	case MPC8245:
    445 	case MPCG2:
    446 		/* Select DOZE mode. */
    447 		hid0 &= ~(HID0_DOZE | HID0_NAP | HID0_SLEEP);
    448 		hid0 |= HID0_DOZE | HID0_DPM;
    449 		powersave = 1;
    450 		break;
    451 
    452 	case MPC7447A:
    453 	case MPC7448:
    454 	case MPC7457:
    455 	case MPC7455:
    456 	case MPC7450:
    457 		/* Enable the 7450 branch caches */
    458 		hid0 |= HID0_SGE | HID0_BTIC;
    459 		hid0 |= HID0_LRSTK | HID0_FOLD | HID0_BHT;
    460 		/* Disable BTIC on 7450 Rev 2.0 or earlier */
    461 		if (vers == MPC7450 && (pvr & 0xFFFF) <= 0x0200)
    462 			hid0 &= ~HID0_BTIC;
    463 		/* Select NAP mode. */
    464 		hid0 &= ~(HID0_HIGH_BAT_EN | HID0_SLEEP);
    465 		hid0 |= HID0_NAP | HID0_DPM /* | HID0_XBSEN */;
    466 		powersave = 1;
    467 		break;
    468 
    469 	case IBM970:
    470 	case IBM970FX:
    471 	default:
    472 		/* No power-saving mode is available. */ ;
    473 	}
    474 
    475 #ifdef NAPMODE
    476 	switch (vers) {
    477 	case IBM750FX:
    478 	case MPC750:
    479 	case MPC7400:
    480 		/* Select NAP mode. */
    481 		hid0 &= ~(HID0_DOZE | HID0_NAP | HID0_SLEEP);
    482 		hid0 |= HID0_NAP;
    483 		break;
    484 	}
    485 #endif
    486 
    487 	switch (vers) {
    488 	case IBM750FX:
    489 	case MPC750:
    490 		hid0 &= ~HID0_DBP;		/* XXX correct? */
    491 		hid0 |= HID0_EMCP | HID0_BTIC | HID0_SGE | HID0_BHT;
    492 		break;
    493 
    494 	case MPC7400:
    495 	case MPC7410:
    496 		hid0 &= ~HID0_SPD;
    497 		hid0 |= HID0_EMCP | HID0_BTIC | HID0_SGE | HID0_BHT;
    498 		hid0 |= HID0_EIEC;
    499 		break;
    500 	}
    501 
    502 #if defined (PPC_OEA)
    503 	mtspr(SPR_HID0, hid0);
    504 	__asm volatile("sync;isync");
    505 #endif
    506 
    507 	switch (vers) {
    508 	case MPC601:
    509 		bitmask = HID0_601_BITMASK;
    510 		break;
    511 	case MPC7450:
    512 	case MPC7455:
    513 	case MPC7457:
    514 		bitmask = HID0_7450_BITMASK;
    515 		break;
    516 	case IBM970:
    517 	case IBM970FX:
    518 		bitmask = 0;
    519 		break;
    520 	default:
    521 		bitmask = HID0_BITMASK;
    522 		break;
    523 	}
    524 	bitmask_snprintf(hid0, bitmask, hidbuf, sizeof hidbuf);
    525 	aprint_normal("%s: HID0 %s, powersave: %d\n", self->dv_xname, hidbuf, powersave);
    526 
    527 	ci->ci_khz = 0;
    528 
    529 	/*
    530 	 * Display speed and cache configuration.
    531 	 */
    532 	switch (vers) {
    533 	case MPC604:
    534 	case MPC604e:
    535 	case MPC604ev:
    536 	case MPC750:
    537 	case IBM750FX:
    538 	case MPC7400:
    539 	case MPC7410:
    540 	case MPC7447A:
    541 	case MPC7448:
    542 	case MPC7450:
    543 	case MPC7455:
    544 	case MPC7457:
    545 		aprint_normal("%s: ", self->dv_xname);
    546 		cpu_probe_speed(ci);
    547 		aprint_normal("%u.%02u MHz",
    548 			      ci->ci_khz / 1000, (ci->ci_khz / 10) % 100);
    549 		switch (vers) {
    550 		case MPC7450: /* 7441 does not have L3! */
    551 		case MPC7455: /* 7445 does not have L3! */
    552 		case MPC7457: /* 7447 does not have L3! */
    553 			cpu_config_l3cr(vers);
    554 			break;
    555 		case IBM750FX:
    556 		case MPC750:
    557 		case MPC7400:
    558 		case MPC7410:
    559 		case MPC7447A:
    560 		case MPC7448:
    561 			cpu_config_l2cr(pvr);
    562 			break;
    563 		default:
    564 			break;
    565 		}
    566 		aprint_normal("\n");
    567 		break;
    568 	}
    569 
    570 #if NSYSMON_ENVSYS > 0
    571 	/*
    572 	 * Attach MPC750 temperature sensor to the envsys subsystem.
    573 	 * XXX the 74xx series also has this sensor, but it is not
    574 	 * XXX supported by Motorola and may return values that are off by
    575 	 * XXX 35-55 degrees C.
    576 	 */
    577 	if (vers == MPC750 || vers == IBM750FX)
    578 		cpu_tau_setup(ci);
    579 #endif
    580 
    581 	evcnt_attach_dynamic(&ci->ci_ev_clock, EVCNT_TYPE_INTR,
    582 		NULL, self->dv_xname, "clock");
    583 	evcnt_attach_dynamic(&ci->ci_ev_softclock, EVCNT_TYPE_INTR,
    584 		NULL, self->dv_xname, "soft clock");
    585 	evcnt_attach_dynamic(&ci->ci_ev_softnet, EVCNT_TYPE_INTR,
    586 		NULL, self->dv_xname, "soft net");
    587 	evcnt_attach_dynamic(&ci->ci_ev_softserial, EVCNT_TYPE_INTR,
    588 		NULL, self->dv_xname, "soft serial");
    589 	evcnt_attach_dynamic(&ci->ci_ev_traps, EVCNT_TYPE_TRAP,
    590 		NULL, self->dv_xname, "traps");
    591 	evcnt_attach_dynamic(&ci->ci_ev_kdsi, EVCNT_TYPE_TRAP,
    592 		&ci->ci_ev_traps, self->dv_xname, "kernel DSI traps");
    593 	evcnt_attach_dynamic(&ci->ci_ev_udsi, EVCNT_TYPE_TRAP,
    594 		&ci->ci_ev_traps, self->dv_xname, "user DSI traps");
    595 	evcnt_attach_dynamic(&ci->ci_ev_udsi_fatal, EVCNT_TYPE_TRAP,
    596 		&ci->ci_ev_udsi, self->dv_xname, "user DSI failures");
    597 	evcnt_attach_dynamic(&ci->ci_ev_kisi, EVCNT_TYPE_TRAP,
    598 		&ci->ci_ev_traps, self->dv_xname, "kernel ISI traps");
    599 	evcnt_attach_dynamic(&ci->ci_ev_isi, EVCNT_TYPE_TRAP,
    600 		&ci->ci_ev_traps, self->dv_xname, "user ISI traps");
    601 	evcnt_attach_dynamic(&ci->ci_ev_isi_fatal, EVCNT_TYPE_TRAP,
    602 		&ci->ci_ev_isi, self->dv_xname, "user ISI failures");
    603 	evcnt_attach_dynamic(&ci->ci_ev_scalls, EVCNT_TYPE_TRAP,
    604 		&ci->ci_ev_traps, self->dv_xname, "system call traps");
    605 	evcnt_attach_dynamic(&ci->ci_ev_pgm, EVCNT_TYPE_TRAP,
    606 		&ci->ci_ev_traps, self->dv_xname, "PGM traps");
    607 	evcnt_attach_dynamic(&ci->ci_ev_fpu, EVCNT_TYPE_TRAP,
    608 		&ci->ci_ev_traps, self->dv_xname, "FPU unavailable traps");
    609 	evcnt_attach_dynamic(&ci->ci_ev_fpusw, EVCNT_TYPE_TRAP,
    610 		&ci->ci_ev_fpu, self->dv_xname, "FPU context switches");
    611 	evcnt_attach_dynamic(&ci->ci_ev_ali, EVCNT_TYPE_TRAP,
    612 		&ci->ci_ev_traps, self->dv_xname, "user alignment traps");
    613 	evcnt_attach_dynamic(&ci->ci_ev_ali_fatal, EVCNT_TYPE_TRAP,
    614 		&ci->ci_ev_ali, self->dv_xname, "user alignment traps");
    615 	evcnt_attach_dynamic(&ci->ci_ev_umchk, EVCNT_TYPE_TRAP,
    616 		&ci->ci_ev_umchk, self->dv_xname, "user MCHK failures");
    617 	evcnt_attach_dynamic(&ci->ci_ev_vec, EVCNT_TYPE_TRAP,
    618 		&ci->ci_ev_traps, self->dv_xname, "AltiVec unavailable");
    619 #ifdef ALTIVEC
    620 	if (cpu_altivec) {
    621 		evcnt_attach_dynamic(&ci->ci_ev_vecsw, EVCNT_TYPE_TRAP,
    622 		    &ci->ci_ev_vec, self->dv_xname, "AltiVec context switches");
    623 	}
    624 #endif
    625 	evcnt_attach_dynamic(&ci->ci_ev_ipi, EVCNT_TYPE_INTR,
    626 		NULL, self->dv_xname, "IPIs");
    627 }
    628 
    629 /*
    630  * According to a document labeled "PVR Register Settings":
    631  ** For integrated microprocessors the PVR register inside the device
    632  ** will identify the version of the microprocessor core. You must also
    633  ** read the Device ID, PCI register 02, to identify the part and the
    634  ** Revision ID, PCI register 08, to identify the revision of the
    635  ** integrated microprocessor.
    636  * This apparently applies to 8240/8245/8241, PVR 00810101 and 80811014
    637  */
    638 
    639 void
    640 cpu_identify(char *str, size_t len)
    641 {
    642 	u_int pvr, major, minor;
    643 	uint16_t vers, rev, revfmt;
    644 	const struct cputab *cp;
    645 	const char *name;
    646 	size_t n;
    647 
    648 	pvr = mfpvr();
    649 	vers = pvr >> 16;
    650 	rev = pvr;
    651 
    652 	switch (vers) {
    653 	case MPC7410:
    654 		minor = (pvr >> 0) & 0xff;
    655 		major = minor <= 4 ? 1 : 2;
    656 		break;
    657 	case MPCG2: /*XXX see note above */
    658 		major = (pvr >> 4) & 0xf;
    659 		minor = (pvr >> 0) & 0xf;
    660 		break;
    661 	default:
    662 		major = (pvr >>  8) & 0xf;
    663 		minor = (pvr >>  0) & 0xf;
    664 	}
    665 
    666 	for (cp = models; cp->name[0] != '\0'; cp++) {
    667 		if (cp->version == vers)
    668 			break;
    669 	}
    670 
    671 	if (str == NULL) {
    672 		str = cpu_model;
    673 		len = sizeof(cpu_model);
    674 		cpu = vers;
    675 	}
    676 
    677 	revfmt = cp->revfmt;
    678 	name = cp->name;
    679 	if (rev == MPC750 && pvr == 15) {
    680 		name = "755";
    681 		revfmt = REVFMT_HEX;
    682 	}
    683 
    684 	if (cp->name[0] != '\0') {
    685 		n = snprintf(str, len, "%s (Revision ", cp->name);
    686 	} else {
    687 		n = snprintf(str, len, "Version %#x (Revision ", vers);
    688 	}
    689 	if (len > n) {
    690 		switch (revfmt) {
    691 		case REVFMT_MAJMIN:
    692 			snprintf(str + n, len - n, "%u.%u)", major, minor);
    693 			break;
    694 		case REVFMT_HEX:
    695 			snprintf(str + n, len - n, "0x%04x)", rev);
    696 			break;
    697 		case REVFMT_DEC:
    698 			snprintf(str + n, len - n, "%u)", rev);
    699 			break;
    700 		}
    701 	}
    702 }
    703 
    704 #ifdef L2CR_CONFIG
    705 u_int l2cr_config = L2CR_CONFIG;
    706 #else
    707 u_int l2cr_config = 0;
    708 #endif
    709 
    710 #ifdef L3CR_CONFIG
    711 u_int l3cr_config = L3CR_CONFIG;
    712 #else
    713 u_int l3cr_config = 0;
    714 #endif
    715 
    716 void
    717 cpu_enable_l2cr(register_t l2cr)
    718 {
    719 	register_t msr, x;
    720 
    721 	/* Disable interrupts and set the cache config bits. */
    722 	msr = mfmsr();
    723 	mtmsr(msr & ~PSL_EE);
    724 #ifdef ALTIVEC
    725 	if (cpu_altivec)
    726 		__asm volatile("dssall");
    727 #endif
    728 	__asm volatile("sync");
    729 	mtspr(SPR_L2CR, l2cr & ~L2CR_L2E);
    730 	__asm volatile("sync");
    731 
    732 	/* Wait for L2 clock to be stable (640 L2 clocks). */
    733 	delay(100);
    734 
    735 	/* Invalidate all L2 contents. */
    736 	mtspr(SPR_L2CR, l2cr | L2CR_L2I);
    737 	do {
    738 		x = mfspr(SPR_L2CR);
    739 	} while (x & L2CR_L2IP);
    740 
    741 	/* Enable L2 cache. */
    742 	l2cr |= L2CR_L2E;
    743 	mtspr(SPR_L2CR, l2cr);
    744 	mtmsr(msr);
    745 }
    746 
    747 void
    748 cpu_enable_l3cr(register_t l3cr)
    749 {
    750 	register_t x;
    751 
    752 	/* By The Book (numbered steps from section 3.7.1.3 of MPC7450UM) */
    753 
    754 	/*
    755 	 * 1: Set all L3CR bits for final config except L3E, L3I, L3PE, and
    756 	 *    L3CLKEN.  (also mask off reserved bits in case they were included
    757 	 *    in L3CR_CONFIG)
    758 	 */
    759 	l3cr &= ~(L3CR_L3E|L3CR_L3I|L3CR_L3PE|L3CR_L3CLKEN|L3CR_RESERVED);
    760 	mtspr(SPR_L3CR, l3cr);
    761 
    762 	/* 2: Set L3CR[5] (otherwise reserved bit) to 1 */
    763 	l3cr |= 0x04000000;
    764 	mtspr(SPR_L3CR, l3cr);
    765 
    766 	/* 3: Set L3CLKEN to 1*/
    767 	l3cr |= L3CR_L3CLKEN;
    768 	mtspr(SPR_L3CR, l3cr);
    769 
    770 	/* 4/5: Perform a global cache invalidate (ref section 3.7.3.6) */
    771 	__asm volatile("dssall;sync");
    772 	/* L3 cache is already disabled, no need to clear L3E */
    773 	mtspr(SPR_L3CR, l3cr|L3CR_L3I);
    774 	do {
    775 		x = mfspr(SPR_L3CR);
    776 	} while (x & L3CR_L3I);
    777 
    778 	/* 6: Clear L3CLKEN to 0 */
    779 	l3cr &= ~L3CR_L3CLKEN;
    780 	mtspr(SPR_L3CR, l3cr);
    781 
    782 	/* 7: Perform a 'sync' and wait at least 100 CPU cycles */
    783 	__asm volatile("sync");
    784 	delay(100);
    785 
    786 	/* 8: Set L3E and L3CLKEN */
    787 	l3cr |= (L3CR_L3E|L3CR_L3CLKEN);
    788 	mtspr(SPR_L3CR, l3cr);
    789 
    790 	/* 9: Perform a 'sync' and wait at least 100 CPU cycles */
    791 	__asm volatile("sync");
    792 	delay(100);
    793 }
    794 
    795 void
    796 cpu_config_l2cr(int pvr)
    797 {
    798 	register_t l2cr;
    799 	u_int vers = (pvr >> 16) & 0xffff;
    800 
    801 	l2cr = mfspr(SPR_L2CR);
    802 
    803 	/*
    804 	 * For MP systems, the firmware may only configure the L2 cache
    805 	 * on the first CPU.  In this case, assume that the other CPUs
    806 	 * should use the same value for L2CR.
    807 	 */
    808 	if ((l2cr & L2CR_L2E) != 0 && l2cr_config == 0) {
    809 		l2cr_config = l2cr;
    810 	}
    811 
    812 	/*
    813 	 * Configure L2 cache if not enabled.
    814 	 */
    815 	if ((l2cr & L2CR_L2E) == 0 && l2cr_config != 0) {
    816 		cpu_enable_l2cr(l2cr_config);
    817 		l2cr = mfspr(SPR_L2CR);
    818 	}
    819 
    820 	if ((l2cr & L2CR_L2E) == 0) {
    821 		aprint_normal(" L2 cache present but not enabled ");
    822 		return;
    823 	}
    824 	aprint_normal(",");
    825 
    826 	switch (vers) {
    827 	case IBM750FX:
    828 		cpu_fmttab_print(cpu_ibm750_l2cr_formats, l2cr);
    829 		break;
    830 	case MPC750:
    831 		if ((pvr & 0xffffff00) == 0x00082200 /* IBM750CX */ ||
    832 		    (pvr & 0xffffef00) == 0x00082300 /* IBM750CXe */)
    833 			cpu_fmttab_print(cpu_ibm750_l2cr_formats, l2cr);
    834 		else
    835 			cpu_fmttab_print(cpu_l2cr_formats, l2cr);
    836 		break;
    837 	case MPC7447A:
    838 	case MPC7457:
    839 		cpu_fmttab_print(cpu_7457_l2cr_formats, l2cr);
    840 		return;
    841 	case MPC7448:
    842 		cpu_fmttab_print(cpu_7448_l2cr_formats, l2cr);
    843 		return;
    844 	case MPC7450:
    845 	case MPC7455:
    846 		cpu_fmttab_print(cpu_7450_l2cr_formats, l2cr);
    847 		break;
    848 	default:
    849 		cpu_fmttab_print(cpu_l2cr_formats, l2cr);
    850 		break;
    851 	}
    852 }
    853 
    854 void
    855 cpu_config_l3cr(int vers)
    856 {
    857 	register_t l2cr;
    858 	register_t l3cr;
    859 
    860 	l2cr = mfspr(SPR_L2CR);
    861 
    862 	/*
    863 	 * For MP systems, the firmware may only configure the L2 cache
    864 	 * on the first CPU.  In this case, assume that the other CPUs
    865 	 * should use the same value for L2CR.
    866 	 */
    867 	if ((l2cr & L2CR_L2E) != 0 && l2cr_config == 0) {
    868 		l2cr_config = l2cr;
    869 	}
    870 
    871 	/*
    872 	 * Configure L2 cache if not enabled.
    873 	 */
    874 	if ((l2cr & L2CR_L2E) == 0 && l2cr_config != 0) {
    875 		cpu_enable_l2cr(l2cr_config);
    876 		l2cr = mfspr(SPR_L2CR);
    877 	}
    878 
    879 	aprint_normal(",");
    880 	switch (vers) {
    881 	case MPC7447A:
    882 	case MPC7457:
    883 		cpu_fmttab_print(cpu_7457_l2cr_formats, l2cr);
    884 		return;
    885 	case MPC7448:
    886 		cpu_fmttab_print(cpu_7448_l2cr_formats, l2cr);
    887 		return;
    888 	default:
    889 		cpu_fmttab_print(cpu_7450_l2cr_formats, l2cr);
    890 		break;
    891 	}
    892 
    893 	l3cr = mfspr(SPR_L3CR);
    894 
    895 	/*
    896 	 * For MP systems, the firmware may only configure the L3 cache
    897 	 * on the first CPU.  In this case, assume that the other CPUs
    898 	 * should use the same value for L3CR.
    899 	 */
    900 	if ((l3cr & L3CR_L3E) != 0 && l3cr_config == 0) {
    901 		l3cr_config = l3cr;
    902 	}
    903 
    904 	/*
    905 	 * Configure L3 cache if not enabled.
    906 	 */
    907 	if ((l3cr & L3CR_L3E) == 0 && l3cr_config != 0) {
    908 		cpu_enable_l3cr(l3cr_config);
    909 		l3cr = mfspr(SPR_L3CR);
    910 	}
    911 
    912 	if (l3cr & L3CR_L3E) {
    913 		aprint_normal(",");
    914 		cpu_fmttab_print(cpu_7450_l3cr_formats, l3cr);
    915 	}
    916 }
    917 
    918 void
    919 cpu_probe_speed(struct cpu_info *ci)
    920 {
    921 	uint64_t cps;
    922 
    923 	mtspr(SPR_MMCR0, MMCR0_FC);
    924 	mtspr(SPR_PMC1, 0);
    925 	mtspr(SPR_MMCR0, MMCR0_PMC1SEL(PMCN_CYCLES));
    926 	delay(100000);
    927 	cps = (mfspr(SPR_PMC1) * 10) + 4999;
    928 
    929 	mtspr(SPR_MMCR0, MMCR0_FC);
    930 
    931 	ci->ci_khz = cps / 1000;
    932 }
    933 
    934 #if NSYSMON_ENVSYS > 0
    935 void
    936 cpu_tau_setup(struct cpu_info *ci)
    937 {
    938 	struct sysmon_envsys *sme;
    939 	envsys_data_t sensor;
    940 	int error;
    941 
    942 	sme = sysmon_envsys_create();
    943 
    944 	sensor.state = ENVSYS_SVALID;
    945 	sensor.units = ENVSYS_STEMP;
    946 	(void)strlcpy(sensor.desc, "CPU Temp", sizeof(sensor.desc));
    947 	if (sysmon_envsys_sensor_attach(sme, &sensor)) {
    948 		sysmon_envsys_destroy(sme);
    949 		return;
    950 	}
    951 
    952 	sme->sme_name = ci->ci_dev->dv_xname;
    953 	sme->sme_cookie = ci;
    954 	sme->sme_refresh = cpu_tau_refresh;
    955 
    956 	if ((error = sysmon_envsys_register(sme)) != 0) {
    957 		aprint_error("%s: unable to register with sysmon (%d)\n",
    958 		    ci->ci_dev->dv_xname, error);
    959 		sysmon_envsys_destroy(sme);
    960 	}
    961 }
    962 
    963 
    964 /* Find the temperature of the CPU. */
    965 void
    966 cpu_tau_refresh(struct sysmon_envsys *sme, envsys_data_t *edata)
    967 {
    968 	int i, threshold, count;
    969 
    970 	threshold = 64; /* Half of the 7-bit sensor range */
    971 	mtspr(SPR_THRM1, 0);
    972 	mtspr(SPR_THRM2, 0);
    973 	/* XXX This counter is supposed to be "at least 20 microseonds, in
    974 	 * XXX units of clock cycles". Since we don't have convenient
    975 	 * XXX access to the CPU speed, set it to a conservative value,
    976 	 * XXX that is, assuming a fast (1GHz) G3 CPU (As of February 2002,
    977 	 * XXX the fastest G3 processor is 700MHz) . The cost is that
    978 	 * XXX measuring the temperature takes a bit longer.
    979 	 */
    980         mtspr(SPR_THRM3, SPR_THRM_TIMER(20000) | SPR_THRM_ENABLE);
    981 
    982 	/* Successive-approximation code adapted from Motorola
    983 	 * application note AN1800/D, "Programming the Thermal Assist
    984 	 * Unit in the MPC750 Microprocessor".
    985 	 */
    986 	for (i = 4; i >= 0 ; i--) {
    987 		mtspr(SPR_THRM1,
    988 		    SPR_THRM_THRESHOLD(threshold) | SPR_THRM_VALID);
    989 		count = 0;
    990 		while ((count < 100) &&
    991 		    ((mfspr(SPR_THRM1) & SPR_THRM_TIV) == 0)) {
    992 			count++;
    993 			delay(1);
    994 		}
    995 		if (mfspr(SPR_THRM1) & SPR_THRM_TIN) {
    996 			/* The interrupt bit was set, meaning the
    997 			 * temperature was above the threshold
    998 			 */
    999 			threshold += 2 << i;
   1000 		} else {
   1001 			/* Temperature was below the threshold */
   1002 			threshold -= 2 << i;
   1003 		}
   1004 	}
   1005 	threshold += 2;
   1006 
   1007 	/* Convert the temperature in degrees C to microkelvin */
   1008 	edata->value_cur = (threshold * 1000000) + 273150000;
   1009 }
   1010 #endif /* NSYSMON_ENVSYS > 0 */
   1011 
   1012 #ifdef MULTIPROCESSOR
   1013 int
   1014 cpu_spinup(struct device *self, struct cpu_info *ci)
   1015 {
   1016 	volatile struct cpu_hatch_data hatch_data, *h = &hatch_data;
   1017 	struct pglist mlist;
   1018 	int i, error, pvr, vers;
   1019 	char *cp;
   1020 
   1021 	pvr = mfpvr();
   1022 	vers = pvr >> 16;
   1023 	KASSERT(ci != curcpu());
   1024 
   1025 	/*
   1026 	 * Allocate some contiguous pages for the intteup PCB and stack
   1027 	 * from the lowest 256MB (because bat0 always maps it va == pa).
   1028 	 */
   1029 	error = uvm_pglistalloc(INTSTK, 0x0, 0x10000000, 0, 0, &mlist, 1, 1);
   1030 	if (error) {
   1031 		aprint_error(": unable to allocate idle stack\n");
   1032 		return -1;
   1033 	}
   1034 
   1035 	KASSERT(ci != &cpu_info[0]);
   1036 
   1037 	cp = (void *)VM_PAGE_TO_PHYS(TAILQ_FIRST(&mlist));
   1038 	memset(cp, 0, INTSTK);
   1039 
   1040 	ci->ci_intstk = cp;
   1041 
   1042 	/* Initialize secondary cpu's initial lwp to its idlelwp. */
   1043 	ci->ci_curlwp = ci->ci_data.cpu_idlelwp;
   1044 	ci->ci_curpcb = &ci->ci_curlwp->l_addr->u_pcb;
   1045 	ci->ci_curpm = ci->ci_curpcb->pcb_pm;
   1046 
   1047 	cpu_hatch_data = h;
   1048 	h->running = 0;
   1049 	h->self = self;
   1050 	h->ci = ci;
   1051 	h->pir = ci->ci_cpuid;
   1052 	cpu_hatch_stack = (uint32_t)cp + INTSTK - sizeof(struct trapframe);
   1053 	ci->ci_lasttb = cpu_info[0].ci_lasttb;
   1054 
   1055 	/* copy special registers */
   1056 	h->hid0 = mfspr(SPR_HID0);
   1057 	__asm volatile ("mfsdr1 %0" : "=r"(h->sdr1));
   1058 	for (i = 0; i < 16; i++)
   1059 		__asm ("mfsrin %0,%1" : "=r"(h->sr[i]) :
   1060 		       "r"(i << ADDR_SR_SHFT));
   1061 	/* copy the bat regs */
   1062 	__asm volatile ("mfibatu %0,0" : "=r"(h->batu[0]));
   1063 	__asm volatile ("mfibatl %0,0" : "=r"(h->batl[0]));
   1064 	__asm volatile ("mfibatu %0,1" : "=r"(h->batu[1]));
   1065 	__asm volatile ("mfibatl %0,1" : "=r"(h->batl[1]));
   1066 	__asm volatile ("mfibatu %0,2" : "=r"(h->batu[2]));
   1067 	__asm volatile ("mfibatl %0,2" : "=r"(h->batl[2]));
   1068 	__asm volatile ("mfibatu %0,3" : "=r"(h->batu[3]));
   1069 	__asm volatile ("mfibatl %0,3" : "=r"(h->batl[3]));
   1070 	__asm volatile ("sync; isync");
   1071 
   1072 	if (md_setup_trampoline(h, ci) == -1)
   1073 		return -1;
   1074 	md_presync_timebase(h);
   1075 	md_start_timebase(h);
   1076 
   1077 	/* wait for secondary printf */
   1078 	delay(200000);
   1079 
   1080 	if (h->running == 0) {
   1081 		aprint_error(":CPU %d didn't start\n", ci->ci_cpuid);
   1082 		return -1;
   1083 	}
   1084 
   1085 	/* Register IPI Interrupt */
   1086 	ipiops.ppc_establish_ipi(IST_LEVEL, IPL_HIGH, NULL);
   1087 
   1088 	return 0;
   1089 }
   1090 
   1091 static volatile int start_secondary_cpu;
   1092 
   1093 void
   1094 cpu_hatch()
   1095 {
   1096 	volatile struct cpu_hatch_data *h = cpu_hatch_data;
   1097 	struct cpu_info * const ci = h->ci;
   1098 	u_int msr;
   1099 	int i;
   1100 
   1101 	/* Initialize timebase. */
   1102 	__asm ("mttbl %0; mttbu %0; mttbl %0" :: "r"(0));
   1103 
   1104 	/* Set PIR (Processor Identification Register).  i.e. whoami */
   1105 	mtspr(SPR_PIR, h->pir);
   1106 	__asm volatile ("mtsprg 0,%0" :: "r"(ci));
   1107 
   1108 	/* Initialize MMU. */
   1109 	__asm ("mtibatu 0,%0" :: "r"(h->batu[0]));
   1110 	__asm ("mtibatl 0,%0" :: "r"(h->batl[0]));
   1111 	__asm ("mtibatu 1,%0" :: "r"(h->batu[1]));
   1112 	__asm ("mtibatl 1,%0" :: "r"(h->batl[1]));
   1113 	__asm ("mtibatu 2,%0" :: "r"(h->batu[2]));
   1114 	__asm ("mtibatl 2,%0" :: "r"(h->batl[2]));
   1115 	__asm ("mtibatu 3,%0" :: "r"(h->batu[3]));
   1116 	__asm ("mtibatl 3,%0" :: "r"(h->batl[3]));
   1117 
   1118 	mtspr(SPR_HID0, h->hid0);
   1119 
   1120 	__asm ("mtibatl 0,%0; mtibatu 0,%1; mtdbatl 0,%0; mtdbatu 0,%1;"
   1121 	    :: "r"(battable[0].batl), "r"(battable[0].batu));
   1122 
   1123 	for (i = 0; i < 16; i++)
   1124 		__asm ("mtsrin %0,%1" :: "r"(h->sr[i]), "r"(i << ADDR_SR_SHFT));
   1125 
   1126 	__asm ("mtsdr1 %0" :: "r"(h->sdr1));
   1127 	__asm volatile ("isync");
   1128 
   1129 	/* Enable I/D address translations. */
   1130 	__asm volatile ("mfmsr %0" : "=r"(msr));
   1131 	msr |= PSL_IR|PSL_DR|PSL_ME|PSL_RI;
   1132 	__asm volatile ("mtmsr %0" :: "r"(msr));
   1133 	__asm volatile ("sync; isync");
   1134 
   1135 	md_sync_timebase(h);
   1136 
   1137 	cpu_setup(h->self, ci);
   1138 
   1139 	h->running = 1;
   1140 	__asm volatile ("sync; isync");
   1141 
   1142 	while (start_secondary_cpu == 0)
   1143 		;
   1144 
   1145 	__asm volatile ("sync; isync");
   1146 
   1147 	aprint_normal("cpu%d: started\n", cpu_number());
   1148 	__asm volatile ("mtdec %0" :: "r"(ticks_per_intr));
   1149 
   1150 	md_setup_interrupts();
   1151 
   1152 	ci->ci_ipending = 0;
   1153 	ci->ci_cpl = 0;
   1154 
   1155 	mtmsr(mfmsr() | PSL_EE);
   1156 }
   1157 
   1158 void
   1159 cpu_boot_secondary_processors()
   1160 {
   1161 	start_secondary_cpu = 1;
   1162 	__asm volatile ("sync");
   1163 }
   1164 
   1165 #endif /*MULTIPROCESSOR*/
   1166