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