Home | History | Annotate | Line # | Download | only in oea
oea_machdep.c revision 1.6
      1  1.6  matt /*	$NetBSD: oea_machdep.c,v 1.6 2003/03/15 07:21:02 matt Exp $	*/
      2  1.1  matt 
      3  1.1  matt /*
      4  1.1  matt  * Copyright (C) 2002 Matt Thomas
      5  1.1  matt  * Copyright (C) 1995, 1996 Wolfgang Solfrank.
      6  1.1  matt  * Copyright (C) 1995, 1996 TooLs GmbH.
      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 TooLs GmbH.
     20  1.1  matt  * 4. The name of TooLs GmbH may not be used to endorse or promote products
     21  1.1  matt  *    derived from this software without specific prior written permission.
     22  1.1  matt  *
     23  1.1  matt  * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
     24  1.1  matt  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     25  1.1  matt  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     26  1.1  matt  * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     27  1.1  matt  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     28  1.1  matt  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
     29  1.1  matt  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
     30  1.1  matt  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
     31  1.1  matt  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
     32  1.1  matt  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     33  1.1  matt  */
     34  1.1  matt 
     35  1.1  matt #include "opt_compat_netbsd.h"
     36  1.1  matt #include "opt_ddb.h"
     37  1.1  matt #include "opt_kgdb.h"
     38  1.1  matt #include "opt_ipkdb.h"
     39  1.1  matt #include "opt_multiprocessor.h"
     40  1.1  matt #include "opt_altivec.h"
     41  1.1  matt 
     42  1.1  matt #include <sys/param.h>
     43  1.1  matt #include <sys/buf.h>
     44  1.1  matt #include <sys/exec.h>
     45  1.1  matt #include <sys/malloc.h>
     46  1.1  matt #include <sys/mbuf.h>
     47  1.1  matt #include <sys/mount.h>
     48  1.1  matt #include <sys/msgbuf.h>
     49  1.1  matt #include <sys/proc.h>
     50  1.1  matt #include <sys/reboot.h>
     51  1.1  matt #include <sys/sa.h>
     52  1.1  matt #include <sys/syscallargs.h>
     53  1.1  matt #include <sys/syslog.h>
     54  1.1  matt #include <sys/systm.h>
     55  1.1  matt #include <sys/kernel.h>
     56  1.1  matt #include <sys/user.h>
     57  1.1  matt #include <sys/boot_flag.h>
     58  1.1  matt 
     59  1.1  matt #include <uvm/uvm_extern.h>
     60  1.1  matt 
     61  1.1  matt #include <net/netisr.h>
     62  1.1  matt 
     63  1.1  matt #ifdef DDB
     64  1.1  matt #include <machine/db_machdep.h>
     65  1.1  matt #include <ddb/db_extern.h>
     66  1.1  matt #endif
     67  1.1  matt 
     68  1.1  matt #ifdef KGDB
     69  1.1  matt #include <sys/kgdb.h>
     70  1.1  matt #endif
     71  1.1  matt 
     72  1.1  matt #ifdef IPKDB
     73  1.1  matt #include <ipkdb/ipkdb.h>
     74  1.1  matt #endif
     75  1.1  matt 
     76  1.1  matt #include <powerpc/oea/bat.h>
     77  1.1  matt #include <powerpc/oea/sr_601.h>
     78  1.1  matt #include <powerpc/trap.h>
     79  1.1  matt #include <powerpc/stdarg.h>
     80  1.1  matt #include <powerpc/spr.h>
     81  1.1  matt #include <powerpc/pte.h>
     82  1.1  matt #include <powerpc/altivec.h>
     83  1.1  matt #include <machine/powerpc.h>
     84  1.1  matt 
     85  1.1  matt char machine[] = MACHINE;		/* from <machine/param.h> */
     86  1.1  matt char machine_arch[] = MACHINE_ARCH;	/* from <machine/param.h> */
     87  1.1  matt 
     88  1.1  matt struct vm_map *exec_map = NULL;
     89  1.1  matt struct vm_map *mb_map = NULL;
     90  1.1  matt struct vm_map *phys_map = NULL;
     91  1.1  matt 
     92  1.1  matt /*
     93  1.1  matt  * Global variables used here and there
     94  1.1  matt  */
     95  1.1  matt extern struct user *proc0paddr;
     96  1.1  matt 
     97  1.1  matt struct bat battable[512];
     98  1.2  matt register_t iosrtable[16];	/* I/O segments, for kernel_pmap setup */
     99  1.1  matt paddr_t msgbuf_paddr;
    100  1.1  matt 
    101  1.1  matt void
    102  1.1  matt oea_init(void (*handler)(void))
    103  1.1  matt {
    104  1.1  matt 	extern int trapstart[], trapend[];
    105  1.6  matt 	extern int trapcode[], trapsize[];
    106  1.6  matt 	extern int sctrap[], scsize[];
    107  1.6  matt 	extern int alitrap[], alisize[];
    108  1.6  matt 	extern int dsitrap[], dsisize[];
    109  1.6  matt 	extern int dsi601trap[], dsi601size[];
    110  1.6  matt 	extern int decrint[], decrsize[];
    111  1.6  matt 	extern int tlbimiss[], tlbimsize[];
    112  1.6  matt 	extern int tlbdlmiss[], tlbdlmsize[];
    113  1.6  matt 	extern int tlbdsmiss[], tlbdsmsize[];
    114  1.1  matt #if defined(DDB) || defined(KGDB)
    115  1.6  matt 	extern int ddblow[], ddbsize[];
    116  1.1  matt #endif
    117  1.1  matt #ifdef IPKDB
    118  1.6  matt 	extern int ipkdblow[], ipkdbsize[];
    119  1.1  matt #endif
    120  1.1  matt #ifdef ALTIVEC
    121  1.1  matt 	register_t msr;
    122  1.1  matt #endif
    123  1.1  matt 	uintptr_t exc;
    124  1.1  matt 	register_t scratch;
    125  1.1  matt 	unsigned int cpuvers;
    126  1.1  matt 	size_t size;
    127  1.1  matt 	struct cpu_info * const ci = &cpu_info[0];
    128  1.1  matt 
    129  1.1  matt 	mtspr(SPR_SPRG0, ci);
    130  1.1  matt 	cpuvers = mfpvr() >> 16;
    131  1.1  matt 
    132  1.1  matt 
    133  1.1  matt 	/*
    134  1.1  matt 	 * Initialize proc0 and current pcb and pmap pointers.
    135  1.1  matt 	 */
    136  1.1  matt 	KASSERT(ci != NULL);
    137  1.1  matt 	KASSERT(curcpu() == ci);
    138  1.1  matt 	lwp0.l_cpu = ci;
    139  1.1  matt 	lwp0.l_addr = proc0paddr;
    140  1.1  matt 	memset(lwp0.l_addr, 0, sizeof *lwp0.l_addr);
    141  1.4  matt 	KASSERT(lwp0.l_cpu != NULL);
    142  1.1  matt 
    143  1.1  matt 	curpcb = &proc0paddr->u_pcb;
    144  1.5  matt 	memset(curpcb, 0, sizeof(*curpcb));
    145  1.5  matt #ifdef ALTIVEC
    146  1.5  matt 	/*
    147  1.5  matt 	 * Initialize the vectors with NaNs
    148  1.5  matt 	 */
    149  1.5  matt 	for (scratch = 0; scratch < 32; scratch++) {
    150  1.5  matt 		curpcb->pcb_vr.vreg[scratch][0] = 0x7FFFDEAD;
    151  1.5  matt 		curpcb->pcb_vr.vreg[scratch][1] = 0x7FFFDEAD;
    152  1.5  matt 		curpcb->pcb_vr.vreg[scratch][2] = 0x7FFFDEAD;
    153  1.5  matt 		curpcb->pcb_vr.vreg[scratch][3] = 0x7FFFDEAD;
    154  1.5  matt 	}
    155  1.5  matt 	curpcb->pcb_vr.vscr = 0;
    156  1.5  matt 	curpcb->pcb_vr.vrsave = 0;
    157  1.5  matt #endif
    158  1.1  matt 	curpm = curpcb->pcb_pmreal = curpcb->pcb_pm = pmap_kernel();
    159  1.1  matt 
    160  1.1  matt 	/*
    161  1.1  matt 	 * Cause a PGM trap if we branch to 0.
    162  1.1  matt 	 */
    163  1.1  matt 	memset(0, 0, 0x100);
    164  1.1  matt 
    165  1.1  matt 	/*
    166  1.1  matt 	 * Set up trap vectors.  Don't assume vectors are on 0x100.
    167  1.1  matt 	 */
    168  1.3  matt 	for (exc = 0; exc <= EXC_LAST; exc += 0x100) {
    169  1.1  matt 		switch (exc) {
    170  1.1  matt 		default:
    171  1.6  matt 			size = (size_t)trapsize;
    172  1.6  matt 			memcpy((void *)exc, trapcode, size);
    173  1.1  matt 			break;
    174  1.1  matt #if 0
    175  1.1  matt 		case EXC_EXI:
    176  1.1  matt 			/*
    177  1.1  matt 			 * This one is (potentially) installed during autoconf
    178  1.1  matt 			 */
    179  1.1  matt 			break;
    180  1.1  matt #endif
    181  1.1  matt 		case EXC_SC:
    182  1.6  matt 			size = (size_t)scsize;
    183  1.6  matt 			memcpy((void *)EXC_SC, sctrap, size);
    184  1.1  matt 			break;
    185  1.1  matt 		case EXC_ALI:
    186  1.6  matt 			size = (size_t)alisize;
    187  1.6  matt 			memcpy((void *)EXC_ALI, alitrap, size);
    188  1.1  matt 			break;
    189  1.1  matt 		case EXC_DSI:
    190  1.1  matt 			if (cpuvers == MPC601) {
    191  1.6  matt 				size = (size_t)dsi601size;
    192  1.6  matt 				memcpy((void *)EXC_DSI, dsi601trap, size);
    193  1.1  matt 			} else {
    194  1.6  matt 				size = (size_t)dsisize;
    195  1.6  matt 				memcpy((void *)EXC_DSI, dsitrap, size);
    196  1.1  matt 			}
    197  1.1  matt 			break;
    198  1.1  matt 		case EXC_DECR:
    199  1.6  matt 			size = (size_t)decrsize;
    200  1.6  matt 			memcpy((void *)EXC_DECR, decrint, size);
    201  1.1  matt 			break;
    202  1.1  matt 		case EXC_IMISS:
    203  1.6  matt 			size = (size_t)tlbimsize;
    204  1.6  matt 			memcpy((void *)EXC_IMISS, tlbimiss, size);
    205  1.1  matt 			break;
    206  1.1  matt 		case EXC_DLMISS:
    207  1.6  matt 			size = (size_t)tlbdlmsize;
    208  1.6  matt 			memcpy((void *)EXC_DLMISS, tlbdlmiss, size);
    209  1.1  matt 			break;
    210  1.1  matt 		case EXC_DSMISS:
    211  1.6  matt 			size = (size_t)tlbdsmsize;
    212  1.6  matt 			memcpy((void *)EXC_DSMISS, tlbdsmiss, size);
    213  1.1  matt 			break;
    214  1.1  matt 		case EXC_PERF:
    215  1.6  matt 			size = (size_t)trapsize;
    216  1.6  matt 			memcpy((void *)EXC_PERF, trapcode, size);
    217  1.6  matt 			memcpy((void *)EXC_VEC,  trapcode, size);
    218  1.1  matt 			break;
    219  1.1  matt #if defined(DDB) || defined(IPKDB) || defined(KGDB)
    220  1.1  matt 		case EXC_RUNMODETRC:
    221  1.1  matt 			if (cpuvers != MPC601) {
    222  1.6  matt 				size = (size_t)trapsize;
    223  1.6  matt 				memcpy((void *)EXC_RUNMODETRC, trapcode, size);
    224  1.1  matt 				break;
    225  1.1  matt 			}
    226  1.1  matt 			/* FALLTHROUGH */
    227  1.1  matt 		case EXC_PGM:
    228  1.1  matt 		case EXC_TRC:
    229  1.1  matt 		case EXC_BPT:
    230  1.1  matt #if defined(DDB) || defined(KGDB)
    231  1.6  matt 			size = (size_t)ddbsize;
    232  1.6  matt 			memcpy((void *)exc, ddblow, size);
    233  1.1  matt #if defined(IPKDB)
    234  1.1  matt #error "cannot enable IPKDB with DDB or KGDB"
    235  1.1  matt #endif
    236  1.1  matt #else
    237  1.6  matt 			size = (size_t)ipkdbsize;
    238  1.6  matt 			memcpy((void *)exc, ipkdblow, size);
    239  1.1  matt #endif
    240  1.1  matt 			break;
    241  1.1  matt #endif /* DDB || IPKDB || KGDB */
    242  1.1  matt 		}
    243  1.1  matt #if 0
    244  1.1  matt 		exc += roundup(size, 32);
    245  1.1  matt #endif
    246  1.1  matt 	}
    247  1.1  matt 
    248  1.1  matt 	/*
    249  1.1  matt 	 * Get the cache sizes because install_extint calls __syncicache.
    250  1.1  matt 	 */
    251  1.1  matt 	cpu_probe_cache();
    252  1.1  matt 
    253  1.1  matt #define	MxSPR_MASK	0x7c1fffff
    254  1.1  matt #define	MFSPR_MQ	0x7c0002a6
    255  1.1  matt #define	MTSPR_MQ	0x7c0003a6
    256  1.1  matt #define	NOP		0x60000000
    257  1.1  matt 
    258  1.1  matt #ifdef ALTIVEC
    259  1.1  matt #define	MFSPR_VRSAVE	0x7c0042a6
    260  1.1  matt #define	MTSPR_VRSAVE	0x7c0043a6
    261  1.1  matt 
    262  1.1  matt 	/*
    263  1.1  matt 	 * Try to set the VEC bit in the MSR.  If it doesn't get set, we are
    264  1.1  matt 	 * not on a AltiVec capable processor.
    265  1.1  matt 	 */
    266  1.1  matt 	__asm __volatile (
    267  1.1  matt 	    "mfmsr %0; oris %1,%0,%2@h; mtmsr %1; isync; "
    268  1.1  matt 		"mfmsr %1; mtmsr %0; isync"
    269  1.1  matt 	    :	"=r"(msr), "=r"(scratch)
    270  1.1  matt 	    :	"J"(PSL_VEC));
    271  1.1  matt 
    272  1.1  matt 	/*
    273  1.1  matt 	 * If we aren't on an AltiVec capable processor, we to need zap any of
    274  1.1  matt 	 * sequences we save/restore the VRSAVE SPR into NOPs.
    275  1.1  matt 	 */
    276  1.1  matt 	if (scratch & PSL_VEC) {
    277  1.1  matt 		cpu_altivec = 1;
    278  1.1  matt 	} else {
    279  1.1  matt 		int *ip = trapstart;
    280  1.1  matt 
    281  1.1  matt 		for (; ip < trapend; ip++) {
    282  1.1  matt 			if ((ip[0] & MxSPR_MASK) == MFSPR_VRSAVE) {
    283  1.1  matt 				ip[0] = NOP;	/* mfspr */
    284  1.1  matt 				ip[1] = NOP;	/* stw */
    285  1.1  matt 			} else if ((ip[0] & MxSPR_MASK) == MTSPR_VRSAVE) {
    286  1.1  matt 				ip[-1] = NOP;	/* lwz */
    287  1.1  matt 				ip[0] = NOP;	/* mtspr */
    288  1.1  matt 			}
    289  1.1  matt 		}
    290  1.1  matt 	}
    291  1.1  matt #endif
    292  1.1  matt 
    293  1.1  matt 	/*
    294  1.1  matt 	 * If we aren't on a MPC601 processor, we to need zap any of
    295  1.1  matt 	 * sequences we save/restore the MQ SPR into NOPs.
    296  1.1  matt 	 */
    297  1.1  matt 	if (cpuvers != MPC601) {
    298  1.1  matt 		int *ip = trapstart;
    299  1.1  matt 
    300  1.1  matt 		for (; ip < trapend; ip++) {
    301  1.1  matt 			if ((ip[0] & MxSPR_MASK) == MFSPR_MQ) {
    302  1.1  matt 				ip[0] = NOP;	/* mfspr */
    303  1.1  matt 				ip[1] = NOP;	/* stw */
    304  1.1  matt 			} else if ((ip[0] & MxSPR_MASK) == MTSPR_MQ) {
    305  1.1  matt 				ip[-1] = NOP;	/* lwz */
    306  1.1  matt 				ip[0] = NOP;	/* mtspr */
    307  1.1  matt 			}
    308  1.1  matt 		}
    309  1.1  matt 	}
    310  1.1  matt 
    311  1.1  matt 	if (!cpu_altivec || cpuvers != MPC601) {
    312  1.1  matt 		/*
    313  1.1  matt 		 * Sync the changed instructions.
    314  1.1  matt 		 */
    315  1.1  matt 		__syncicache((void *) trapstart,
    316  1.1  matt 		    (uintptr_t) trapend - (uintptr_t) trapstart);
    317  1.1  matt 	}
    318  1.1  matt 
    319  1.1  matt 	/*
    320  1.1  matt 	 * external interrupt handler install
    321  1.1  matt 	 */
    322  1.1  matt 	if (handler)
    323  1.1  matt 		oea_install_extint(handler);
    324  1.1  matt 
    325  1.1  matt 	__syncicache(0, EXC_LAST + 0x100);
    326  1.1  matt 
    327  1.1  matt 	/*
    328  1.1  matt 	 * Now enable translation (and machine checks/recoverable interrupts).
    329  1.1  matt 	 */
    330  1.1  matt 	__asm __volatile ("sync; mfmsr %0; ori %0,%0,%1; mtmsr %0; isync"
    331  1.1  matt 	    : "=r"(scratch)
    332  1.1  matt 	    : "K"(PSL_IR|PSL_DR|PSL_ME|PSL_RI));
    333  1.1  matt 
    334  1.1  matt 	KASSERT(curcpu() == ci);
    335  1.1  matt }
    336  1.1  matt 
    337  1.1  matt void
    338  1.1  matt mpc601_ioseg_add(paddr_t pa, register_t len)
    339  1.1  matt {
    340  1.1  matt 	const u_int i = pa >> ADDR_SR_SHFT;
    341  1.1  matt 
    342  1.1  matt 	if (len != BAT_BL_256M)
    343  1.1  matt 		panic("mpc601_ioseg_add: len != 256M");
    344  1.1  matt 
    345  1.1  matt 	/*
    346  1.1  matt 	 * Translate into an I/O segment, load it, and stash away for use
    347  1.1  matt 	 * in pmap_bootstrap().
    348  1.1  matt 	 */
    349  1.1  matt 	iosrtable[i] = SR601(SR601_Ks, SR601_BUID_MEMFORCED, 0, i);
    350  1.1  matt 	__asm __volatile ("mtsrin %0,%1"
    351  1.1  matt 	    ::	"r"(iosrtable[i]),
    352  1.1  matt 		"r"(pa));
    353  1.1  matt }
    354  1.1  matt 
    355  1.1  matt void
    356  1.1  matt oea_iobat_add(paddr_t pa, register_t len)
    357  1.1  matt {
    358  1.1  matt 	static int n = 1;
    359  1.1  matt 	const u_int i = pa >> 28;
    360  1.1  matt 	battable[i].batl = BATL(pa, BAT_I|BAT_G, BAT_PP_RW);
    361  1.1  matt 	battable[i].batu = BATU(pa, len, BAT_Vs);
    362  1.1  matt 
    363  1.1  matt 	/*
    364  1.1  matt 	 * Let's start loading the BAT registers.
    365  1.1  matt 	 */
    366  1.1  matt 	switch (n) {
    367  1.1  matt 	case 1:
    368  1.1  matt 		__asm __volatile ("mtdbatl 1,%0; mtdbatu 1,%1;"
    369  1.1  matt 		    ::	"r"(battable[i].batl),
    370  1.1  matt 			"r"(battable[i].batu));
    371  1.1  matt 		n = 2;
    372  1.1  matt 		break;
    373  1.1  matt 	case 2:
    374  1.1  matt 		__asm __volatile ("mtdbatl 2,%0; mtdbatu 2,%1;"
    375  1.1  matt 		    ::	"r"(battable[i].batl),
    376  1.1  matt 			"r"(battable[i].batu));
    377  1.1  matt 		n = 3;
    378  1.1  matt 		break;
    379  1.1  matt 	case 3:
    380  1.1  matt 		__asm __volatile ("mtdbatl 3,%0; mtdbatu 3,%1;"
    381  1.1  matt 		    ::	"r"(battable[i].batl),
    382  1.1  matt 			"r"(battable[i].batu));
    383  1.1  matt 		n = 4;
    384  1.1  matt 		break;
    385  1.1  matt 	default:
    386  1.1  matt 		break;
    387  1.3  matt 	}
    388  1.3  matt }
    389  1.3  matt 
    390  1.3  matt void
    391  1.3  matt oea_iobat_remove(paddr_t pa)
    392  1.3  matt {
    393  1.3  matt 	register_t batu;
    394  1.3  matt 	int i, n;
    395  1.3  matt 
    396  1.3  matt 	n = pa >> ADDR_SR_SHFT;
    397  1.3  matt 	if (!BAT_VA_MATCH_P(battable[n].batu, pa) ||
    398  1.3  matt 	    !BAT_VALID_P(battable[n].batu, PSL_PR))
    399  1.3  matt 		return;
    400  1.3  matt 	battable[n].batl = 0;
    401  1.3  matt 	battable[n].batu = 0;
    402  1.3  matt #define	BAT_RESET(n) \
    403  1.3  matt 	__asm __volatile("mtdbatu %0,%1; mtdbatl %0,%1" :: "n"(n), "r"(0))
    404  1.3  matt #define	BATU_GET(n, r)	__asm __volatile("mfdbatu %0,%1" : "=r"(r) : "n"(n))
    405  1.3  matt 
    406  1.3  matt 	for (i=1 ; i<4 ; i++) {
    407  1.3  matt 		switch (i) {
    408  1.3  matt 		case 1:
    409  1.3  matt 			BATU_GET(1, batu);
    410  1.3  matt 			if (BAT_VA_MATCH_P(batu, pa) &&
    411  1.3  matt 			    BAT_VALID_P(batu, PSL_PR))
    412  1.3  matt 				BAT_RESET(1);
    413  1.3  matt 			break;
    414  1.3  matt 		case 2:
    415  1.3  matt 			BATU_GET(2, batu);
    416  1.3  matt 			if (BAT_VA_MATCH_P(batu, pa) &&
    417  1.3  matt 			    BAT_VALID_P(batu, PSL_PR))
    418  1.3  matt 				BAT_RESET(2);
    419  1.3  matt 			break;
    420  1.3  matt 		case 3:
    421  1.3  matt 			BATU_GET(3, batu);
    422  1.3  matt 			if (BAT_VA_MATCH_P(batu, pa) &&
    423  1.3  matt 			    BAT_VALID_P(batu, PSL_PR))
    424  1.3  matt 				BAT_RESET(3);
    425  1.3  matt 			break;
    426  1.3  matt 		default:
    427  1.3  matt 			break;
    428  1.3  matt 		}
    429  1.1  matt 	}
    430  1.1  matt }
    431  1.1  matt 
    432  1.1  matt void
    433  1.1  matt oea_batinit(paddr_t pa, ...)
    434  1.1  matt {
    435  1.1  matt 	struct mem_region *allmem, *availmem, *mp;
    436  1.1  matt 	int i;
    437  1.1  matt 	unsigned int cpuvers;
    438  1.1  matt 	va_list ap;
    439  1.1  matt 
    440  1.1  matt 	cpuvers = mfpvr() >> 16;
    441  1.1  matt 
    442  1.1  matt 	/*
    443  1.1  matt 	 * Initialize BAT registers to unmapped to not generate
    444  1.1  matt 	 * overlapping mappings below.
    445  1.1  matt 	 *
    446  1.1  matt 	 * The 601's implementation differs in the Valid bit being situated
    447  1.1  matt 	 * in the lower BAT register, and in being a unified BAT only whose
    448  1.1  matt 	 * four entries are accessed through the IBAT[0-3] SPRs.
    449  1.1  matt 	 *
    450  1.1  matt 	 * Also, while the 601 does distinguish between supervisor/user
    451  1.1  matt 	 * protection keys, it does _not_ distinguish distinguish between
    452  1.1  matt 	 * validity in supervisor/user mode.
    453  1.1  matt 	 */
    454  1.1  matt 	if (cpuvers == MPC601) {
    455  1.1  matt 		__asm __volatile ("mtibatl 0,%0" :: "r"(0));
    456  1.1  matt 		__asm __volatile ("mtibatl 1,%0" :: "r"(0));
    457  1.1  matt 		__asm __volatile ("mtibatl 2,%0" :: "r"(0));
    458  1.1  matt 		__asm __volatile ("mtibatl 3,%0" :: "r"(0));
    459  1.1  matt 	} else {
    460  1.1  matt 		__asm __volatile ("mtibatu 0,%0" :: "r"(0));
    461  1.1  matt 		__asm __volatile ("mtibatu 1,%0" :: "r"(0));
    462  1.1  matt 		__asm __volatile ("mtibatu 2,%0" :: "r"(0));
    463  1.1  matt 		__asm __volatile ("mtibatu 3,%0" :: "r"(0));
    464  1.1  matt 		__asm __volatile ("mtdbatu 0,%0" :: "r"(0));
    465  1.1  matt 		__asm __volatile ("mtdbatu 1,%0" :: "r"(0));
    466  1.1  matt 		__asm __volatile ("mtdbatu 2,%0" :: "r"(0));
    467  1.1  matt 		__asm __volatile ("mtdbatu 3,%0" :: "r"(0));
    468  1.1  matt 	}
    469  1.1  matt 
    470  1.1  matt 	/*
    471  1.1  matt 	 * Set up BAT to map physical memory
    472  1.1  matt 	 */
    473  1.1  matt 	if (cpuvers == MPC601) {
    474  1.1  matt 		/*
    475  1.1  matt 		 * Set up battable to map the lowest 256 MB area.
    476  1.1  matt 		 * Map the lowest 32 MB area via BAT[0-3];
    477  1.1  matt 		 * BAT[01] are fixed, BAT[23] are floating.
    478  1.1  matt 		 */
    479  1.1  matt 		for (i = 0; i < 32; i++) {
    480  1.1  matt 			battable[i].batl = BATL601(i << 23,
    481  1.1  matt 			   BAT601_BSM_8M, BAT601_V);
    482  1.1  matt 			battable[i].batu = BATU601(i << 23,
    483  1.1  matt 			    BAT601_M, BAT601_Ku, BAT601_PP_NONE);
    484  1.1  matt 		}
    485  1.1  matt 		__asm __volatile ("mtibatu 0,%1; mtibatl 0,%0"
    486  1.1  matt 		    :: "r"(battable[0x00000000 >> 23].batl),
    487  1.1  matt 		       "r"(battable[0x00000000 >> 23].batu));
    488  1.1  matt 		__asm __volatile ("mtibatu 1,%1; mtibatl 1,%0"
    489  1.1  matt 		    :: "r"(battable[0x00800000 >> 23].batl),
    490  1.1  matt 		       "r"(battable[0x00800000 >> 23].batu));
    491  1.1  matt 		__asm __volatile ("mtibatu 2,%1; mtibatl 2,%0"
    492  1.1  matt 		    :: "r"(battable[0x01000000 >> 23].batl),
    493  1.1  matt 		       "r"(battable[0x01000000 >> 23].batu));
    494  1.1  matt 		__asm __volatile ("mtibatu 3,%1; mtibatl 3,%0"
    495  1.1  matt 		    :: "r"(battable[0x01800000 >> 23].batl),
    496  1.1  matt 		       "r"(battable[0x01800000 >> 23].batu));
    497  1.1  matt 	} else {
    498  1.1  matt 		/*
    499  1.1  matt 		 * Set up BAT0 to only map the lowest 256 MB area
    500  1.1  matt 		 */
    501  1.1  matt 		battable[0].batl = BATL(0x00000000, BAT_M, BAT_PP_RW);
    502  1.1  matt 		battable[0].batu = BATU(0x00000000, BAT_BL_256M, BAT_Vs);
    503  1.1  matt 
    504  1.1  matt 		__asm __volatile ("mtibatl 0,%0; mtibatu 0,%1;"
    505  1.1  matt 				  "mtdbatl 0,%0; mtdbatu 0,%1;"
    506  1.1  matt 		    ::	"r"(battable[0].batl), "r"(battable[0].batu));
    507  1.1  matt 	}
    508  1.1  matt 
    509  1.1  matt 	/*
    510  1.1  matt 	 * Now setup other fixed bat registers
    511  1.1  matt 	 *
    512  1.1  matt 	 * Note that we still run in real mode, and the BAT
    513  1.1  matt 	 * registers were cleared above.
    514  1.1  matt 	 */
    515  1.1  matt 
    516  1.1  matt 	va_start(ap, pa);
    517  1.1  matt 
    518  1.1  matt 	/*
    519  1.1  matt 	 * Add any I/O BATs specificed;
    520  1.1  matt 	 * use I/O segments on the BAT-starved 601.
    521  1.1  matt 	 */
    522  1.1  matt 	if (cpuvers == MPC601) {
    523  1.1  matt 		while (pa != 0) {
    524  1.1  matt 			register_t len = va_arg(ap, register_t);
    525  1.1  matt 			mpc601_ioseg_add(pa, len);
    526  1.1  matt 			pa = va_arg(ap, paddr_t);
    527  1.1  matt 		}
    528  1.1  matt 	} else {
    529  1.1  matt 		while (pa != 0) {
    530  1.1  matt 			register_t len = va_arg(ap, register_t);
    531  1.1  matt 			oea_iobat_add(pa, len);
    532  1.1  matt 			pa = va_arg(ap, paddr_t);
    533  1.1  matt 		}
    534  1.1  matt 	}
    535  1.1  matt 
    536  1.1  matt 	va_end(ap);
    537  1.1  matt 
    538  1.1  matt 	/*
    539  1.1  matt 	 * Set up battable to map all RAM regions.
    540  1.1  matt 	 * This is here because mem_regions() call needs bat0 set up.
    541  1.1  matt 	 */
    542  1.1  matt 	mem_regions(&allmem, &availmem);
    543  1.1  matt 	if (cpuvers == MPC601) {
    544  1.1  matt 		for (mp = allmem; mp->size; mp++) {
    545  1.1  matt 			paddr_t pa = mp->start & 0xff800000;
    546  1.1  matt 			paddr_t end = mp->start + mp->size;
    547  1.1  matt 
    548  1.1  matt 			do {
    549  1.1  matt 				u_int i = pa >> 23;
    550  1.1  matt 
    551  1.1  matt 				battable[i].batl =
    552  1.1  matt 				    BATL601(pa, BAT601_BSM_8M, BAT601_V);
    553  1.1  matt 				battable[i].batu =
    554  1.1  matt 				    BATU601(pa, BAT601_M, BAT601_Ku, BAT601_PP_NONE);
    555  1.1  matt 				pa += (1 << 23);
    556  1.1  matt 			} while (pa < end);
    557  1.1  matt 		}
    558  1.1  matt 	} else {
    559  1.1  matt 		for (mp = allmem; mp->size; mp++) {
    560  1.1  matt 			paddr_t pa = mp->start & 0xf0000000;
    561  1.1  matt 			paddr_t end = mp->start + mp->size;
    562  1.1  matt 
    563  1.1  matt 			do {
    564  1.1  matt 				u_int i = pa >> 28;
    565  1.1  matt 
    566  1.1  matt 				battable[i].batl =
    567  1.1  matt 				    BATL(pa, BAT_M, BAT_PP_RW);
    568  1.1  matt 				battable[i].batu =
    569  1.1  matt 				    BATU(pa, BAT_BL_256M, BAT_Vs);
    570  1.1  matt 				pa += SEGMENT_LENGTH;
    571  1.1  matt 			} while (pa < end);
    572  1.1  matt 		}
    573  1.1  matt 	}
    574  1.1  matt }
    575  1.1  matt 
    576  1.1  matt void
    577  1.1  matt oea_install_extint(void (*handler)(void))
    578  1.1  matt {
    579  1.6  matt 	extern int extint[], extsize[];
    580  1.6  matt 	extern int extint_call[];
    581  1.6  matt 	uintptr_t offset = (uintptr_t)handler - (uintptr_t)extint_call;
    582  1.1  matt 	int omsr, msr;
    583  1.1  matt 
    584  1.1  matt #ifdef	DIAGNOSTIC
    585  1.1  matt 	if (offset > 0x1ffffff)
    586  1.1  matt 		panic("install_extint: %p too far away (%#lx)", handler,
    587  1.1  matt 		    (unsigned long) offset);
    588  1.1  matt #endif
    589  1.1  matt 	__asm __volatile ("mfmsr %0; andi. %1,%0,%2; mtmsr %1"
    590  1.1  matt 	    :	"=r" (omsr), "=r" (msr)
    591  1.1  matt 	    :	"K" ((u_short)~PSL_EE));
    592  1.6  matt 	extint_call[0] = (extint_call[0] & 0xfc000003) | offset;
    593  1.6  matt 	memcpy((void *)EXC_EXI, extint, (size_t)extsize);
    594  1.6  matt 	__syncicache((void *)extint_call, sizeof extint_call[0]);
    595  1.6  matt 	__syncicache((void *)EXC_EXI, (int)extsize);
    596  1.1  matt 	__asm __volatile ("mtmsr %0" :: "r"(omsr));
    597  1.1  matt }
    598  1.1  matt 
    599  1.1  matt /*
    600  1.1  matt  * Machine dependent startup code.
    601  1.1  matt  */
    602  1.1  matt void
    603  1.1  matt oea_startup(const char *model)
    604  1.1  matt {
    605  1.1  matt 	uintptr_t sz;
    606  1.1  matt 	u_int i;
    607  1.1  matt 	u_long base, residual;
    608  1.1  matt 	caddr_t v;
    609  1.1  matt 	vaddr_t minaddr, maxaddr;
    610  1.1  matt 	char pbuf[9];
    611  1.1  matt 
    612  1.1  matt 	KASSERT(curcpu() != NULL);
    613  1.1  matt 	KASSERT(lwp0.l_cpu != NULL);
    614  1.4  matt 	KASSERT(curcpu()->ci_intstk != 0);
    615  1.4  matt 	KASSERT(curcpu()->ci_spillstk != 0);
    616  1.4  matt 	KASSERT(curcpu()->ci_intrdepth == -1);
    617  1.1  matt 
    618  1.1  matt 	/*
    619  1.1  matt 	 * If the msgbuf is not in segment 0, allocate KVA for it and access
    620  1.1  matt 	 * it via mapped pages.  [This prevents unneeded BAT switches.]
    621  1.1  matt 	 */
    622  1.1  matt         sz = round_page(MSGBUFSIZE);
    623  1.1  matt 	v = (caddr_t) msgbuf_paddr;
    624  1.1  matt 	if (msgbuf_paddr + sz > SEGMENT_LENGTH) {
    625  1.1  matt 		minaddr = 0;
    626  1.1  matt 		if (uvm_map(kernel_map, &minaddr, sz,
    627  1.1  matt 				NULL, UVM_UNKNOWN_OFFSET, 0,
    628  1.1  matt 				UVM_MAPFLAG(UVM_PROT_NONE, UVM_PROT_NONE,
    629  1.1  matt 				    UVM_INH_NONE, UVM_ADV_NORMAL, 0)) != 0)
    630  1.1  matt 			panic("startup: cannot allocate VM for msgbuf");
    631  1.1  matt 		v = (caddr_t)minaddr;
    632  1.1  matt 		for (i = 0; i < sz; i += NBPG) {
    633  1.1  matt 			pmap_kenter_pa(minaddr + i, msgbuf_paddr + i,
    634  1.1  matt 			    VM_PROT_READ|VM_PROT_WRITE);
    635  1.1  matt 		}
    636  1.1  matt 		pmap_update(pmap_kernel());
    637  1.1  matt 	}
    638  1.1  matt 	initmsgbuf(v, sz);
    639  1.1  matt 
    640  1.1  matt 	printf("%s", version);
    641  1.1  matt 	if (model != NULL)
    642  1.1  matt 		printf("Model: %s\n", model);
    643  1.1  matt 	cpu_identify(NULL, 0);
    644  1.1  matt 
    645  1.1  matt 	format_bytes(pbuf, sizeof(pbuf), ctob((u_int)physmem));
    646  1.1  matt 	printf("total memory = %s\n", pbuf);
    647  1.1  matt 
    648  1.1  matt 	/*
    649  1.1  matt 	 * Find out how much space we need, allocate it,
    650  1.1  matt 	 * and then give everything true virtual addresses.
    651  1.1  matt 	 */
    652  1.1  matt 	sz = (uintptr_t)allocsys(NULL, NULL);
    653  1.1  matt 	if ((v = (caddr_t)uvm_km_zalloc(kernel_map, round_page(sz))) == 0)
    654  1.1  matt 		panic("startup: no room for tables");
    655  1.1  matt 	if (allocsys(v, NULL) - v != sz)
    656  1.1  matt 		panic("startup: table size inconsistency");
    657  1.1  matt 
    658  1.1  matt 	/*
    659  1.1  matt 	 * Now allocate buffers proper.  They are different than the above
    660  1.1  matt 	 * in that they usually occupy more virtual memory than physical.
    661  1.1  matt 	 * Allocate the buffer starting at the top of the kernel VM space.
    662  1.1  matt 	 */
    663  1.1  matt 	sz = MAXBSIZE * nbuf;
    664  1.1  matt 	minaddr = VM_MAX_KERNEL_ADDRESS - round_page(sz);
    665  1.1  matt 	if (uvm_map(kernel_map, &minaddr, round_page(sz),
    666  1.1  matt 		NULL, UVM_UNKNOWN_OFFSET, 0,
    667  1.1  matt 		UVM_MAPFLAG(UVM_PROT_NONE, UVM_PROT_NONE, UVM_INH_NONE,
    668  1.1  matt 			    UVM_ADV_NORMAL, 0)) != 0)
    669  1.1  matt 		panic("startup: cannot allocate VM for buffers");
    670  1.1  matt 	buffers = (char *)minaddr;
    671  1.1  matt 	base = bufpages / nbuf;
    672  1.1  matt 	residual = bufpages % nbuf;
    673  1.1  matt 	if (base >= MAXBSIZE) {
    674  1.1  matt 		/* Don't want to alloc more physical mem than ever needed */
    675  1.1  matt 		base = MAXBSIZE;
    676  1.1  matt 		residual = 0;
    677  1.1  matt 	}
    678  1.1  matt 	for (i = 0; i < nbuf; i++) {
    679  1.1  matt 		vsize_t curbufsize;
    680  1.1  matt 		vaddr_t curbuf;
    681  1.1  matt 		struct vm_page *pg;
    682  1.1  matt 
    683  1.1  matt 		curbuf = (vaddr_t)buffers + i * MAXBSIZE;
    684  1.1  matt 		curbufsize = NBPG * (i < residual ? base + 1 : base);
    685  1.1  matt 
    686  1.1  matt 		while (curbufsize) {
    687  1.1  matt 			pg = uvm_pagealloc(NULL, 0, NULL, 0);
    688  1.1  matt 			if (pg == NULL)
    689  1.1  matt 				panic("cpu_startup: not enough memory for "
    690  1.1  matt 				    "buffer cache");
    691  1.1  matt 			pmap_kenter_pa(curbuf, VM_PAGE_TO_PHYS(pg),
    692  1.1  matt 			    VM_PROT_READ|VM_PROT_WRITE);
    693  1.1  matt 			curbuf += PAGE_SIZE;
    694  1.1  matt 			curbufsize -= PAGE_SIZE;
    695  1.1  matt 		}
    696  1.1  matt 	}
    697  1.1  matt 	pmap_update(pmap_kernel());
    698  1.1  matt 
    699  1.1  matt 	/*
    700  1.1  matt 	 * Allocate away the pages that map to 0xDEA[CDE]xxxx.  Do this after
    701  1.1  matt 	 * the bufpages are allocated in case they overlap since it's not
    702  1.1  matt 	 * fatal if we can't allocate these.
    703  1.1  matt 	 */
    704  1.4  matt 	if (KERNEL_SR == 13 || KERNEL2_SR == 14) {
    705  1.4  matt 		int error;
    706  1.4  matt 		minaddr = 0xDEAC0000;
    707  1.4  matt 		error = uvm_map(kernel_map, &minaddr, 0x30000,
    708  1.4  matt 		    NULL, UVM_UNKNOWN_OFFSET, 0,
    709  1.4  matt 		    UVM_MAPFLAG(UVM_PROT_NONE, UVM_PROT_NONE, UVM_INH_NONE,
    710  1.4  matt 				UVM_ADV_NORMAL, UVM_FLAG_FIXED));
    711  1.4  matt 		if (error != 0 || minaddr != 0xDEAC0000)
    712  1.4  matt 			printf("oea_startup: failed to allocate DEAD "
    713  1.4  matt 			    "ZONE: error=%d\n", error);
    714  1.1  matt 	}
    715  1.4  matt 	minaddr = 0;
    716  1.1  matt 
    717  1.1  matt 	/*
    718  1.1  matt 	 * Allocate a submap for exec arguments.  This map effectively
    719  1.1  matt 	 * limits the number of processes exec'ing at any time. These
    720  1.1  matt 	 * submaps will be allocated after the dead zone.
    721  1.1  matt 	 */
    722  1.1  matt 	exec_map = uvm_km_suballoc(kernel_map, &minaddr, &maxaddr,
    723  1.1  matt 				 16*NCARGS, VM_MAP_PAGEABLE, FALSE, NULL);
    724  1.1  matt 
    725  1.1  matt 	/*
    726  1.1  matt 	 * Allocate a submap for physio
    727  1.1  matt 	 */
    728  1.1  matt 	phys_map = uvm_km_suballoc(kernel_map, &minaddr, &maxaddr,
    729  1.1  matt 				 VM_PHYS_SIZE, 0, FALSE, NULL);
    730  1.1  matt 
    731  1.1  matt #ifndef PMAP_MAP_POOLPAGE
    732  1.1  matt 	/*
    733  1.1  matt 	 * No need to allocate an mbuf cluster submap.  Mbuf clusters
    734  1.1  matt 	 * are allocated via the pool allocator, and we use direct-mapped
    735  1.1  matt 	 * pool pages.
    736  1.1  matt 	 */
    737  1.1  matt 	mb_map = uvm_km_suballoc(kernel_map, &minaddr, &maxaddr,
    738  1.1  matt 	    mclbytes*nmbclusters, VM_MAP_INTRSAFE, FALSE, NULL);
    739  1.1  matt #endif
    740  1.1  matt 
    741  1.1  matt 	format_bytes(pbuf, sizeof(pbuf), ptoa(uvmexp.free));
    742  1.1  matt 	printf("avail memory = %s\n", pbuf);
    743  1.1  matt 	format_bytes(pbuf, sizeof(pbuf), bufpages * NBPG);
    744  1.1  matt 	printf("using %u buffers containing %s of memory\n", nbuf, pbuf);
    745  1.1  matt 
    746  1.1  matt 	/*
    747  1.1  matt 	 * Set up the buffers.
    748  1.1  matt 	 */
    749  1.1  matt 	bufinit();
    750  1.1  matt }
    751  1.1  matt 
    752  1.1  matt /*
    753  1.1  matt  * Crash dump handling.
    754  1.1  matt  */
    755  1.1  matt 
    756  1.1  matt void
    757  1.1  matt oea_dumpsys(void)
    758  1.1  matt {
    759  1.1  matt 	printf("dumpsys: TBD\n");
    760  1.1  matt }
    761  1.1  matt 
    762  1.1  matt /*
    763  1.1  matt  * Soft networking interrupts.
    764  1.1  matt  */
    765  1.1  matt void
    766  1.1  matt softnet(int pendisr)
    767  1.1  matt {
    768  1.1  matt #define DONETISR(bit, fn) do {		\
    769  1.1  matt 	if (pendisr & (1 << bit))	\
    770  1.1  matt 		(*fn)();		\
    771  1.1  matt } while (0)
    772  1.1  matt 
    773  1.1  matt #include <net/netisr_dispatch.h>
    774  1.1  matt 
    775  1.1  matt #undef DONETISR
    776  1.1  matt 
    777  1.1  matt }
    778  1.1  matt 
    779  1.1  matt /*
    780  1.1  matt  * Convert kernel VA to physical address
    781  1.1  matt  */
    782  1.1  matt paddr_t
    783  1.1  matt kvtop(caddr_t addr)
    784  1.1  matt {
    785  1.1  matt 	vaddr_t va;
    786  1.1  matt 	paddr_t pa;
    787  1.1  matt 	uintptr_t off;
    788  1.1  matt 	extern char end[];
    789  1.1  matt 
    790  1.1  matt 	if (addr < end)
    791  1.1  matt 		return (paddr_t)addr;
    792  1.1  matt 
    793  1.1  matt 	va = trunc_page((vaddr_t)addr);
    794  1.1  matt 	off = (uintptr_t)addr - va;
    795  1.1  matt 
    796  1.1  matt 	if (pmap_extract(pmap_kernel(), va, &pa) == FALSE) {
    797  1.1  matt 		/*printf("kvtop: zero page frame (va=0x%x)\n", addr);*/
    798  1.1  matt 		return (paddr_t)addr;
    799  1.1  matt 	}
    800  1.1  matt 
    801  1.1  matt 	return(pa + off);
    802  1.1  matt }
    803  1.1  matt 
    804  1.1  matt /*
    805  1.1  matt  * Allocate vm space and mapin the I/O address
    806  1.1  matt  */
    807  1.1  matt void *
    808  1.1  matt mapiodev(paddr_t pa, psize_t len)
    809  1.1  matt {
    810  1.1  matt 	paddr_t faddr;
    811  1.1  matt 	vaddr_t taddr, va;
    812  1.1  matt 	int off;
    813  1.1  matt 
    814  1.1  matt 	faddr = trunc_page(pa);
    815  1.1  matt 	off = pa - faddr;
    816  1.1  matt 	len = round_page(off + len);
    817  1.1  matt 	va = taddr = uvm_km_valloc(kernel_map, len);
    818  1.1  matt 
    819  1.1  matt 	if (va == 0)
    820  1.1  matt 		return NULL;
    821  1.1  matt 
    822  1.1  matt 	for (; len > 0; len -= NBPG) {
    823  1.1  matt 		pmap_kenter_pa(taddr, faddr, VM_PROT_READ | VM_PROT_WRITE);
    824  1.1  matt 		faddr += NBPG;
    825  1.1  matt 		taddr += NBPG;
    826  1.1  matt 	}
    827  1.1  matt 	pmap_update(pmap_kernel());
    828  1.1  matt 	return (void *)(va + off);
    829  1.1  matt }
    830