machdep.c revision 1.29
11.29Such/*	$NetBSD: machdep.c,v 1.29 2002/02/11 18:06:34 uch Exp $	*/
21.1Sitojun
31.1Sitojun/*-
41.1Sitojun * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
51.1Sitojun * All rights reserved.
61.1Sitojun *
71.1Sitojun * This code is derived from software contributed to The NetBSD Foundation
81.1Sitojun * by Charles M. Hannum and by Jason R. Thorpe of the Numerical Aerospace
91.1Sitojun * Simulation Facility, NASA Ames Research Center.
101.1Sitojun *
111.1Sitojun * Redistribution and use in source and binary forms, with or without
121.1Sitojun * modification, are permitted provided that the following conditions
131.1Sitojun * are met:
141.1Sitojun * 1. Redistributions of source code must retain the above copyright
151.1Sitojun *    notice, this list of conditions and the following disclaimer.
161.1Sitojun * 2. Redistributions in binary form must reproduce the above copyright
171.1Sitojun *    notice, this list of conditions and the following disclaimer in the
181.1Sitojun *    documentation and/or other materials provided with the distribution.
191.1Sitojun * 3. All advertising materials mentioning features or use of this software
201.1Sitojun *    must display the following acknowledgement:
211.1Sitojun *	This product includes software developed by the NetBSD
221.1Sitojun *	Foundation, Inc. and its contributors.
231.1Sitojun * 4. Neither the name of The NetBSD Foundation nor the names of its
241.1Sitojun *    contributors may be used to endorse or promote products derived
251.1Sitojun *    from this software without specific prior written permission.
261.1Sitojun *
271.1Sitojun * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
281.1Sitojun * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
291.1Sitojun * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
301.1Sitojun * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
311.1Sitojun * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
321.1Sitojun * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
331.1Sitojun * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
341.1Sitojun * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
351.1Sitojun * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
361.1Sitojun * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
371.1Sitojun * POSSIBILITY OF SUCH DAMAGE.
381.1Sitojun */
391.1Sitojun
401.1Sitojun/*-
411.1Sitojun * Copyright (c) 1982, 1987, 1990 The Regents of the University of California.
421.1Sitojun * All rights reserved.
431.1Sitojun *
441.1Sitojun * This code is derived from software contributed to Berkeley by
451.1Sitojun * William Jolitz.
461.1Sitojun *
471.1Sitojun * Redistribution and use in source and binary forms, with or without
481.1Sitojun * modification, are permitted provided that the following conditions
491.1Sitojun * are met:
501.1Sitojun * 1. Redistributions of source code must retain the above copyright
511.1Sitojun *    notice, this list of conditions and the following disclaimer.
521.1Sitojun * 2. Redistributions in binary form must reproduce the above copyright
531.1Sitojun *    notice, this list of conditions and the following disclaimer in the
541.1Sitojun *    documentation and/or other materials provided with the distribution.
551.1Sitojun * 3. All advertising materials mentioning features or use of this software
561.1Sitojun *    must display the following acknowledgement:
571.1Sitojun *	This product includes software developed by the University of
581.1Sitojun *	California, Berkeley and its contributors.
591.1Sitojun * 4. Neither the name of the University nor the names of its contributors
601.1Sitojun *    may be used to endorse or promote products derived from this software
611.1Sitojun *    without specific prior written permission.
621.1Sitojun *
631.1Sitojun * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
641.1Sitojun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
651.1Sitojun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
661.1Sitojun * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
671.1Sitojun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
681.1Sitojun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
691.1Sitojun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
701.1Sitojun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
711.1Sitojun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
721.1Sitojun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
731.1Sitojun * SUCH DAMAGE.
741.1Sitojun *
751.1Sitojun *	@(#)machdep.c	7.4 (Berkeley) 6/3/91
761.1Sitojun */
771.1Sitojun
781.1Sitojun#include "opt_ddb.h"
791.26Slukem#include "opt_kgdb.h"
801.15Ssoren#include "opt_syscall_debug.h"
811.1Sitojun#include "opt_memsize.h"
821.1Sitojun#include "opt_initbsc.h"
831.1Sitojun
841.1Sitojun#include <sys/param.h>
851.1Sitojun#include <sys/systm.h>
861.1Sitojun#include <sys/signalvar.h>
871.1Sitojun#include <sys/kernel.h>
881.1Sitojun#include <sys/map.h>
891.1Sitojun#include <sys/proc.h>
901.1Sitojun#include <sys/user.h>
911.1Sitojun#include <sys/exec.h>
921.1Sitojun#include <sys/buf.h>
931.1Sitojun#include <sys/reboot.h>
941.1Sitojun#include <sys/conf.h>
951.1Sitojun#include <sys/file.h>
961.1Sitojun#include <sys/malloc.h>
971.1Sitojun#include <sys/mbuf.h>
981.1Sitojun#include <sys/msgbuf.h>
991.1Sitojun#include <sys/mount.h>
1001.1Sitojun#include <sys/vnode.h>
1011.1Sitojun#include <sys/device.h>
1021.1Sitojun#include <sys/extent.h>
1031.1Sitojun#include <sys/syscallargs.h>
1041.1Sitojun
1051.1Sitojun#ifdef KGDB
1061.1Sitojun#include <sys/kgdb.h>
1071.1Sitojun#endif
1081.1Sitojun
1091.1Sitojun#include <dev/cons.h>
1101.1Sitojun
1111.1Sitojun#include <uvm/uvm_extern.h>
1121.1Sitojun
1131.1Sitojun#include <sys/sysctl.h>
1141.1Sitojun
1151.1Sitojun#include <machine/cpu.h>
1161.1Sitojun#include <machine/cpufunc.h>
1171.1Sitojun#include <machine/psl.h>
1181.1Sitojun#include <machine/bootinfo.h>
1191.1Sitojun#include <machine/bus.h>
1201.1Sitojun#include <sh3/bscreg.h>
1211.1Sitojun#include <sh3/ccrreg.h>
1221.1Sitojun#include <sh3/cpgreg.h>
1231.1Sitojun#include <sh3/intcreg.h>
1241.1Sitojun#include <sh3/pfcreg.h>
1251.1Sitojun#include <sh3/wdtreg.h>
1261.1Sitojun
1271.1Sitojun#include <sys/termios.h>
1281.1Sitojun#include "sci.h"
1291.1Sitojun
1301.1Sitojun/* the following is used externally (sysctl_hw) */
1311.1Sitojunchar machine[] = MACHINE;		/* cpu "architecture" */
1321.1Sitojunchar machine_arch[] = MACHINE_ARCH;	/* machine_arch = "sh3" */
1331.1Sitojun
1341.1Sitojun#ifdef sh3_debug
1351.1Sitojunint cpu_debug_mode = 1;
1361.1Sitojun#else
1371.1Sitojunint cpu_debug_mode = 0;
1381.1Sitojun#endif
1391.1Sitojun
1401.1Sitojunchar bootinfo[BOOTINFO_MAXSIZE];
1411.1Sitojun
1421.3Smsaitohint physmem;
1431.3Smsaitohint dumpmem_low;
1441.3Smsaitohint dumpmem_high;
1451.3Smsaitohvaddr_t atdevbase;	/* location of start of iomem in virtual */
1461.1Sitojunpaddr_t msgbuf_paddr;
1471.3Smsaitohstruct user *proc0paddr;
1481.1Sitojun
1491.3Smsaitohextern int boothowto;
1501.1Sitojunextern paddr_t avail_start, avail_end;
1511.1Sitojun
1521.1Sitojun#ifdef	SYSCALL_DEBUG
1531.1Sitojun#define	SCDEBUG_ALL 0x0004
1541.1Sitojunextern int	scdebug;
1551.1Sitojun#endif
1561.1Sitojun
1571.1Sitojun#define IOM_RAM_END	((paddr_t)IOM_RAM_BEGIN + IOM_RAM_SIZE - 1)
1581.1Sitojun
1591.1Sitojun/*
1601.1Sitojun * Extent maps to manage I/O and ISA memory hole space.  Allocate
1611.1Sitojun * storage for 8 regions in each, initially.  Later, ioport_malloc_safe
1621.1Sitojun * will indicate that it's safe to use malloc() to dynamically allocate
1631.1Sitojun * region descriptors.
1641.1Sitojun *
1651.1Sitojun * N.B. At least two regions are _always_ allocated from the iomem
1661.1Sitojun * extent map; (0 -> ISA hole) and (end of ISA hole -> end of RAM).
1671.1Sitojun *
1681.1Sitojun * The extent maps are not static!  Machine-dependent ISA and EISA
1691.1Sitojun * routines need access to them for bus address space allocation.
1701.1Sitojun */
1711.1Sitojunstatic	long iomem_ex_storage[EXTENT_FIXED_STORAGE_SIZE(8) / sizeof(long)];
1721.1Sitojunstruct	extent *ioport_ex;
1731.1Sitojunstruct	extent *iomem_ex;
1741.1Sitojunstatic	int ioport_malloc_safe;
1751.1Sitojun
1761.3Smsaitohvoid setup_bootinfo __P((void));
1771.3Smsaitohvoid dumpsys __P((void));
1781.3Smsaitohvoid identifycpu __P((void));
1791.3Smsaitohvoid initSH3 __P((void *));
1801.3Smsaitohvoid InitializeSci  __P((unsigned char));
1811.3Smsaitohvoid sh3_cache_on __P((void));
1821.3Smsaitohvoid LoadAndReset __P((char *));
1831.3Smsaitohvoid XLoadAndReset __P((char *));
1841.3Smsaitohvoid Sh3Reset __P((void));
1851.9Smsaitoh#ifdef SH4
1861.9Smsaitohvoid sh4_cache_flush __P((vaddr_t));
1871.9Smsaitoh#endif
1881.1Sitojun
1891.1Sitojun#include <dev/ic/comreg.h>
1901.1Sitojun#include <dev/ic/comvar.h>
1911.1Sitojun
1921.1Sitojunvoid	consinit __P((void));
1931.1Sitojun
1941.1Sitojun/*
1951.1Sitojun * Machine-dependent startup code
1961.1Sitojun *
1971.1Sitojun * This is called from main() in kern/main.c.
1981.1Sitojun */
1991.1Sitojunvoid
2001.1Sitojuncpu_startup()
2011.1Sitojun{
2021.1Sitojun
2031.5Stsubai	sh3_startup();
2041.1Sitojun
2051.1Sitojun	/* Safe for i/o port allocation to use malloc now. */
2061.1Sitojun	ioport_malloc_safe = 1;
2071.1Sitojun
2081.1Sitojun#ifdef SYSCALL_DEBUG
2091.1Sitojun	scdebug |= SCDEBUG_ALL;
2101.1Sitojun#endif
2111.1Sitojun
2121.3Smsaitoh#ifdef FORCE_RB_SINGLE
2131.1Sitojun	boothowto |= RB_SINGLE;
2141.1Sitojun#endif
2151.1Sitojun}
2161.1Sitojun
2171.1Sitojun#define CPUDEBUG
2181.1Sitojun
2191.1Sitojun/*
2201.1Sitojun * machine dependent system variables.
2211.1Sitojun */
2221.1Sitojunint
2231.1Sitojuncpu_sysctl(name, namelen, oldp, oldlenp, newp, newlen, p)
2241.1Sitojun	int *name;
2251.1Sitojun	u_int namelen;
2261.1Sitojun	void *oldp;
2271.1Sitojun	size_t *oldlenp;
2281.1Sitojun	void *newp;
2291.1Sitojun	size_t newlen;
2301.1Sitojun	struct proc *p;
2311.1Sitojun{
2321.1Sitojun	dev_t consdev;
2331.1Sitojun	struct btinfo_bootpath *bibp;
2341.1Sitojun	struct trapframe *tf;
2351.1Sitojun	char *osimage;
2361.1Sitojun
2371.1Sitojun	/* all sysctl names at this level are terminal */
2381.1Sitojun	if (namelen != 1)
2391.1Sitojun		return (ENOTDIR);		/* overloaded */
2401.1Sitojun
2411.1Sitojun	switch (name[0]) {
2421.1Sitojun	case CPU_CONSDEV:
2431.1Sitojun		if (cn_tab != NULL)
2441.1Sitojun			consdev = cn_tab->cn_dev;
2451.1Sitojun		else
2461.1Sitojun			consdev = NODEV;
2471.1Sitojun		return (sysctl_rdstruct(oldp, oldlenp, newp, &consdev,
2481.1Sitojun		    sizeof consdev));
2491.1Sitojun
2501.1Sitojun	case CPU_NKPDE:
2511.1Sitojun		return (sysctl_rdint(oldp, oldlenp, newp, nkpde));
2521.1Sitojun
2531.1Sitojun	case CPU_BOOTED_KERNEL:
2541.1Sitojun	        bibp = lookup_bootinfo(BTINFO_BOOTPATH);
2551.1Sitojun	        if (!bibp)
2561.1Sitojun			return (ENOENT); /* ??? */
2571.1Sitojun		return (sysctl_rdstring(oldp, oldlenp, newp, bibp->bootpath));
2581.1Sitojun
2591.1Sitojun	case CPU_SETPRIVPROC:
2601.1Sitojun		if (newp == NULL)
2611.1Sitojun			return (0);
2621.1Sitojun
2631.1Sitojun		/* set current process to priviledged process */
2641.1Sitojun		tf = p->p_md.md_regs;
2651.1Sitojun		tf->tf_ssr |= PSL_MD;
2661.1Sitojun		return (0);
2671.1Sitojun
2681.1Sitojun	case CPU_DEBUGMODE:
2691.1Sitojun		return (sysctl_int(oldp, oldlenp, newp, newlen,
2701.1Sitojun				   &cpu_debug_mode));
2711.1Sitojun
2721.1Sitojun	case CPU_LOADANDRESET:
2731.1Sitojun		if (newp != NULL) {
2741.1Sitojun			osimage = (char *)(*(u_long *)newp);
2751.1Sitojun
2761.1Sitojun			LoadAndReset(osimage);
2771.1Sitojun			/* not reach here */
2781.1Sitojun		}
2791.1Sitojun		return (0);
2801.1Sitojun
2811.1Sitojun	default:
2821.1Sitojun		return (EOPNOTSUPP);
2831.1Sitojun	}
2841.1Sitojun	/* NOTREACHED */
2851.1Sitojun}
2861.1Sitojun
2871.3Smsaitohint waittime = -1;
2881.1Sitojunstruct pcb dumppcb;
2891.1Sitojun
2901.1Sitojunvoid
2911.1Sitojuncpu_reboot(howto, bootstr)
2921.1Sitojun	int howto;
2931.1Sitojun	char *bootstr;
2941.1Sitojun{
2951.1Sitojun
2961.1Sitojun	if (cold) {
2971.1Sitojun		howto |= RB_HALT;
2981.1Sitojun		goto haltsys;
2991.1Sitojun	}
3001.1Sitojun
3011.1Sitojun	boothowto = howto;
3021.1Sitojun	if ((howto & RB_NOSYNC) == 0 && waittime < 0) {
3031.1Sitojun		waittime = 0;
3041.1Sitojun		vfs_shutdown();
3051.1Sitojun		/*
3061.1Sitojun		 * If we've been adjusting the clock, the todr
3071.1Sitojun		 * will be out of synch; adjust it now.
3081.1Sitojun		 */
3091.1Sitojun		/* resettodr(); */
3101.1Sitojun	}
3111.1Sitojun
3121.1Sitojun	/* Disable interrupts. */
3131.1Sitojun	splhigh();
3141.1Sitojun
3151.1Sitojun	/* Do a dump if requested. */
3161.1Sitojun	if ((howto & (RB_DUMP | RB_HALT)) == RB_DUMP)
3171.1Sitojun		dumpsys();
3181.1Sitojun
3191.1Sitojunhaltsys:
3201.1Sitojun	doshutdownhooks();
3211.1Sitojun
3221.1Sitojun	if (howto & RB_HALT) {
3231.1Sitojun		printf("\n");
3241.1Sitojun		printf("The operating system has halted.\n");
3251.1Sitojun		printf("Please press any key to reboot.\n\n");
3261.1Sitojun		cngetc();
3271.1Sitojun	}
3281.1Sitojun
3291.1Sitojun	printf("rebooting...\n");
3301.1Sitojun	cpu_reset();
3311.1Sitojun	for(;;)
3321.1Sitojun		;
3331.1Sitojun	/*NOTREACHED*/
3341.1Sitojun}
3351.1Sitojun
3361.1Sitojun/*
3371.1Sitojun * These variables are needed by /sbin/savecore
3381.1Sitojun */
3391.1Sitojunu_long	dumpmag = 0x8fca0101;	/* magic number */
3401.1Sitojunint 	dumpsize = 0;		/* pages */
3411.1Sitojunlong	dumplo = 0; 		/* blocks */
3421.1Sitojun
3431.1Sitojun/*
3441.1Sitojun * This is called by main to set dumplo and dumpsize.
3451.1Sitojun * Dumps always skip the first CLBYTES of disk space
3461.1Sitojun * in case there might be a disk label stored there.
3471.1Sitojun * If there is extra space, put dump at the end to
3481.1Sitojun * reduce the chance that swapping trashes it.
3491.1Sitojun */
3501.1Sitojunvoid
3511.1Sitojuncpu_dumpconf()
3521.1Sitojun{
3531.1Sitojun#ifdef	TODO
3541.1Sitojun	int nblks;	/* size of dump area */
3551.1Sitojun	int maj;
3561.1Sitojun
3571.1Sitojun	if (dumpdev == NODEV)
3581.1Sitojun		return;
3591.1Sitojun	maj = major(dumpdev);
3601.1Sitojun	if (maj < 0 || maj >= nblkdev)
3611.1Sitojun		panic("dumpconf: bad dumpdev=0x%x", dumpdev);
3621.1Sitojun	if (bdevsw[maj].d_psize == NULL)
3631.1Sitojun		return;
3641.1Sitojun	nblks = (*bdevsw[maj].d_psize)(dumpdev);
3651.1Sitojun	if (nblks <= ctod(1))
3661.1Sitojun		return;
3671.1Sitojun
3681.1Sitojun	dumpsize = btoc(IOM_END + ctob(dumpmem_high));
3691.1Sitojun
3701.1Sitojun	/* Always skip the first CLBYTES, in case there is a label there. */
3711.1Sitojun	if (dumplo < ctod(1))
3721.1Sitojun		dumplo = ctod(1);
3731.1Sitojun
3741.1Sitojun	/* Put dump at end of partition, and make it fit. */
3751.1Sitojun	if (dumpsize > dtoc(nblks - dumplo))
3761.1Sitojun		dumpsize = dtoc(nblks - dumplo);
3771.1Sitojun	if (dumplo < nblks - ctod(dumpsize))
3781.1Sitojun		dumplo = nblks - ctod(dumpsize);
3791.1Sitojun#endif
3801.1Sitojun}
3811.1Sitojun
3821.1Sitojun/*
3831.1Sitojun * Doadump comes here after turning off memory management and
3841.1Sitojun * getting on the dump stack, either when called above, or by
3851.1Sitojun * the auto-restart code.
3861.1Sitojun */
3871.1Sitojun#define BYTES_PER_DUMP  NBPG	/* must be a multiple of pagesize XXX small */
3881.1Sitojunstatic vaddr_t dumpspace;
3891.1Sitojun
3901.1Sitojunvaddr_t
3911.1Sitojunreserve_dumppages(p)
3921.1Sitojun	vaddr_t p;
3931.1Sitojun{
3941.1Sitojun
3951.1Sitojun	dumpspace = p;
3961.1Sitojun	return (p + BYTES_PER_DUMP);
3971.1Sitojun}
3981.1Sitojun
3991.1Sitojunvoid
4001.1Sitojundumpsys()
4011.1Sitojun{
4021.1Sitojun#ifdef	TODO
4031.1Sitojun	unsigned bytes, i, n;
4041.1Sitojun	int maddr, psize;
4051.1Sitojun	daddr_t blkno;
4061.1Sitojun	int (*dump) __P((dev_t, daddr_t, caddr_t, size_t));
4071.1Sitojun	int error;
4081.1Sitojun
4091.1Sitojun	/* Save registers. */
4101.1Sitojun	savectx(&dumppcb);
4111.1Sitojun
4121.1Sitojun	msgbufmapped = 0;	/* don't record dump msgs in msgbuf */
4131.1Sitojun	if (dumpdev == NODEV)
4141.1Sitojun		return;
4151.1Sitojun
4161.1Sitojun	/*
4171.1Sitojun	 * For dumps during autoconfiguration,
4181.1Sitojun	 * if dump device has already configured...
4191.1Sitojun	 */
4201.1Sitojun	if (dumpsize == 0)
4211.1Sitojun		cpu_dumpconf();
4221.1Sitojun	if (dumplo < 0)
4231.1Sitojun		return;
4241.1Sitojun	printf("\ndumping to dev %x, offset %ld\n", dumpdev, dumplo);
4251.1Sitojun
4261.1Sitojun	psize = (*bdevsw[major(dumpdev)].d_psize)(dumpdev);
4271.1Sitojun	printf("dump ");
4281.1Sitojun	if (psize == -1) {
4291.1Sitojun		printf("area unavailable\n");
4301.1Sitojun		return;
4311.1Sitojun	}
4321.1Sitojun
4331.1Sitojun#if 0	/* XXX this doesn't work.  grr. */
4341.1Sitojun        /* toss any characters present prior to dump */
4351.13Smsaitoh	while (sget() != NULL); /* syscons and pccons differ */
4361.1Sitojun#endif
4371.1Sitojun
4381.1Sitojun	bytes = ctob(dumpmem_high) + IOM_END;
4391.1Sitojun	maddr = 0;
4401.1Sitojun	blkno = dumplo;
4411.1Sitojun	dump = bdevsw[major(dumpdev)].d_dump;
4421.1Sitojun	error = 0;
4431.1Sitojun	for (i = 0; i < bytes; i += n) {
4441.1Sitojun		/*
4451.1Sitojun		 * Avoid dumping the ISA memory hole, and areas that
4461.1Sitojun		 * BIOS claims aren't in low memory.
4471.1Sitojun		 */
4481.1Sitojun		if (i >= ctob(dumpmem_low) && i < IOM_END) {
4491.1Sitojun			n = IOM_END - i;
4501.1Sitojun			maddr += n;
4511.1Sitojun			blkno += btodb(n);
4521.1Sitojun			continue;
4531.1Sitojun		}
4541.1Sitojun
4551.1Sitojun		/* Print out how many MBs we to go. */
4561.1Sitojun		n = bytes - i;
4571.1Sitojun		if (n && (n % (1024*1024)) == 0)
4581.1Sitojun			printf("%d ", n / (1024 * 1024));
4591.1Sitojun
4601.1Sitojun		/* Limit size for next transfer. */
4611.1Sitojun		if (n > BYTES_PER_DUMP)
4621.1Sitojun			n =  BYTES_PER_DUMP;
4631.1Sitojun
4641.1Sitojun		(void) pmap_map(dumpspace, maddr, maddr + n, VM_PROT_READ);
4651.1Sitojun		error = (*dump)(dumpdev, blkno, (caddr_t)dumpspace, n);
4661.1Sitojun		if (error)
4671.1Sitojun			break;
4681.1Sitojun		maddr += n;
4691.1Sitojun		blkno += btodb(n);			/* XXX? */
4701.1Sitojun
4711.1Sitojun#if 0	/* XXX this doesn't work.  grr. */
4721.1Sitojun		/* operator aborting dump? */
4731.1Sitojun		if (sget() != NULL) {
4741.1Sitojun			error = EINTR;
4751.1Sitojun			break;
4761.1Sitojun		}
4771.1Sitojun#endif
4781.1Sitojun	}
4791.1Sitojun
4801.1Sitojun	switch (error) {
4811.1Sitojun
4821.1Sitojun	case ENXIO:
4831.1Sitojun		printf("device bad\n");
4841.1Sitojun		break;
4851.1Sitojun
4861.1Sitojun	case EFAULT:
4871.1Sitojun		printf("device not ready\n");
4881.1Sitojun		break;
4891.1Sitojun
4901.1Sitojun	case EINVAL:
4911.1Sitojun		printf("area improper\n");
4921.1Sitojun		break;
4931.1Sitojun
4941.1Sitojun	case EIO:
4951.1Sitojun		printf("i/o error\n");
4961.1Sitojun		break;
4971.1Sitojun
4981.1Sitojun	case EINTR:
4991.1Sitojun		printf("aborted from console\n");
5001.1Sitojun		break;
5011.1Sitojun
5021.1Sitojun	case 0:
5031.1Sitojun		printf("succeeded\n");
5041.1Sitojun		break;
5051.1Sitojun
5061.1Sitojun	default:
5071.1Sitojun		printf("error %d\n", error);
5081.1Sitojun		break;
5091.1Sitojun	}
5101.1Sitojun	printf("\n\n");
5111.1Sitojun	delay(5000000);		/* 5 seconds */
5121.1Sitojun#endif	/* TODO */
5131.1Sitojun}
5141.1Sitojun
5151.1Sitojun/*
5161.1Sitojun * Initialize segments and descriptor tables
5171.1Sitojun */
5181.8Smsaitoh#define VBRINIT		((char *)IOM_RAM_BEGIN)
5191.3Smsaitoh#define Trap100Vec	(VBRINIT + 0x100)
5201.3Smsaitoh#define Trap600Vec	(VBRINIT + 0x600)
5211.3Smsaitoh#define TLBVECTOR	(VBRINIT + 0x400)
5221.3Smsaitoh#define VADDRSTART	VM_MIN_KERNEL_ADDRESS
5231.3Smsaitoh
5241.3Smsaitohextern int nkpde;
5251.3Smsaitohextern char MonTrap100[], MonTrap100_end[];
5261.3Smsaitohextern char MonTrap600[], MonTrap600_end[];
5271.3Smsaitohextern char _start[], etext[], edata[], end[];
5281.3Smsaitohextern char tlbmisshandler_stub[], tlbmisshandler_stub_end[];
5291.1Sitojun
5301.1Sitojunvoid
5311.3SmsaitohinitSH3(pc)
5321.3Smsaitoh	void *pc;	/* XXX return address */
5331.1Sitojun{
5341.3Smsaitoh	paddr_t avail;
5351.3Smsaitoh	pd_entry_t *pagedir;
5361.3Smsaitoh	pt_entry_t *pagetab, pte;
5371.3Smsaitoh	u_int sp;
5381.3Smsaitoh	int x;
5391.3Smsaitoh	char *p;
5401.3Smsaitoh
5411.3Smsaitoh	avail = sh3_round_page(end);
5421.3Smsaitoh
5431.4Smsaitoh	/* XXX nkpde = kernel page dir area (IOM_RAM_SIZE*2 Mbyte (why?)) */
5441.4Smsaitoh	nkpde = IOM_RAM_SIZE >> (PDSHIFT - 1);
5451.4Smsaitoh
5461.3Smsaitoh	/*
5471.3Smsaitoh	 * clear .bss, .common area, page dir area,
5481.3Smsaitoh	 *	process0 stack, page table area
5491.3Smsaitoh	 */
5501.4Smsaitoh	p = (char *)avail + (1 + UPAGES) * NBPG + NBPG * (1 + nkpde); /* XXX */
5511.27Sichiro	memset(edata, 0, p - edata);
5521.3Smsaitoh
5531.3Smsaitoh	/*
5541.3Smsaitoh	 * install trap handler
5551.3Smsaitoh	 */
5561.27Sichiro	memcpy(Trap100Vec, MonTrap100, MonTrap100_end - MonTrap100);
5571.27Sichiro	memcpy(Trap600Vec, MonTrap600, MonTrap600_end - MonTrap600);
5581.3Smsaitoh	__asm ("ldc %0, vbr" :: "r"(VBRINIT));
5591.3Smsaitoh
5601.3Smsaitoh/*
5611.3Smsaitoh *                          edata  end
5621.3Smsaitoh *	+-------------+------+-----+----------+-------------+------------+
5631.3Smsaitoh *	| kernel text | data | bss | Page Dir | Proc0 Stack | Page Table |
5641.3Smsaitoh *	+-------------+------+-----+----------+-------------+------------+
5651.4Smsaitoh *                                     NBPG       USPACE    (1+nkpde)*NBPG
5661.3Smsaitoh *                                                (= 4*NBPG)
5671.3Smsaitoh *	Build initial page tables
5681.3Smsaitoh */
5691.3Smsaitoh	pagedir = (void *)avail;
5701.3Smsaitoh	pagetab = (void *)(avail + SYSMAP);
5711.3Smsaitoh
5721.3Smsaitoh	/*
5731.13Smsaitoh	 * Construct a page table directory
5741.13Smsaitoh	 * In SH3 H/W does not support PTD,
5751.13Smsaitoh	 * these structures are used by S/W.
5761.3Smsaitoh	 */
5771.3Smsaitoh	pte = (pt_entry_t)pagetab;
5781.3Smsaitoh	pte |= PG_KW | PG_V | PG_4K | PG_M | PG_N;
5791.3Smsaitoh	pagedir[KERNTEXTOFF >> PDSHIFT] = pte;
5801.3Smsaitoh
5811.3Smsaitoh	/* make pde for 0xd0000000, 0xd0400000, 0xd0800000,0xd0c00000,
5821.3Smsaitoh		0xd1000000, 0xd1400000, 0xd1800000, 0xd1c00000 */
5831.3Smsaitoh	pte += NBPG;
5841.3Smsaitoh	for (x = 0; x < nkpde; x++) {
5851.3Smsaitoh		pagedir[(VADDRSTART >> PDSHIFT) + x] = pte;
5861.3Smsaitoh		pte += NBPG;
5871.3Smsaitoh	}
5881.3Smsaitoh
5891.3Smsaitoh	/* Install a PDE recursively mapping page directory as a page table! */
5901.3Smsaitoh	pte = (u_int)pagedir;
5911.3Smsaitoh	pte |= PG_V | PG_4K | PG_KW | PG_M | PG_N;
5921.3Smsaitoh	pagedir[PDSLOT_PTE] = pte;
5931.3Smsaitoh
5941.3Smsaitoh	/* set PageDirReg */
5951.3Smsaitoh	SHREG_TTB = (u_int)pagedir;
5961.3Smsaitoh
5971.3Smsaitoh	/* Set TLB miss handler */
5981.3Smsaitoh	p = tlbmisshandler_stub;
5991.3Smsaitoh	x = tlbmisshandler_stub_end - p;
6001.27Sichiro	memcpy(TLBVECTOR, p, x);
6011.3Smsaitoh
6021.3Smsaitoh	/*
6031.3Smsaitoh	 * Activate MMU
6041.3Smsaitoh	 */
6051.3Smsaitoh
6061.13Smsaitoh#ifdef SH4
6071.13Smsaitoh	SHREG_MMUCR = MMUCR_AT | MMUCR_TF | MMUCR_SV | MMUCR_SQMD;
6081.13Smsaitoh#else
6091.3Smsaitoh	SHREG_MMUCR = MMUCR_AT | MMUCR_TF | MMUCR_SV;
6101.13Smsaitoh#endif
6111.3Smsaitoh
6121.3Smsaitoh	/*
6131.3Smsaitoh	 * Now here is virtual address
6141.3Smsaitoh	 */
6151.3Smsaitoh
6161.3Smsaitoh	/* Set proc0paddr */
6171.3Smsaitoh	proc0paddr = (void *)(avail + NBPG);
6181.3Smsaitoh
6191.3Smsaitoh	/* Set pcb->PageDirReg of proc0 */
6201.3Smsaitoh	proc0paddr->u_pcb.pageDirReg = (int)pagedir;
6211.3Smsaitoh
6221.3Smsaitoh	/* avail_start is first available physical memory address */
6231.3Smsaitoh	avail_start = avail + NBPG + USPACE + NBPG + NBPG * nkpde;
6241.3Smsaitoh
6251.3Smsaitoh	/* atdevbase is first available logical memory address */
6261.3Smsaitoh	atdevbase = VADDRSTART;
6271.1Sitojun
6281.1Sitojun	proc0.p_addr = proc0paddr; /* page dir address */
6291.1Sitojun
6301.3Smsaitoh	/* XXX: PMAP_NEW requires valid curpcb.   also init'd in cpu_startup */
6311.3Smsaitoh	curpcb = &proc0.p_addr->u_pcb;
6321.3Smsaitoh
6331.1Sitojun	/*
6341.1Sitojun	 * Initialize the I/O port and I/O mem extent maps.
6351.1Sitojun	 * Note: we don't have to check the return value since
6361.1Sitojun	 * creation of a fixed extent map will never fail (since
6371.1Sitojun	 * descriptor storage has already been allocated).
6381.1Sitojun	 *
6391.1Sitojun	 * N.B. The iomem extent manages _all_ physical addresses
6401.1Sitojun	 * on the machine.  When the amount of RAM is found, the two
6411.1Sitojun	 * extents of RAM are allocated from the map (0 -> ISA hole
6421.1Sitojun	 * and end of ISA hole -> end of RAM).
6431.1Sitojun	 */
6441.1Sitojun	iomem_ex = extent_create("iomem", 0x0, 0xffffffff, M_DEVBUF,
6451.1Sitojun	    (caddr_t)iomem_ex_storage, sizeof(iomem_ex_storage),
6461.1Sitojun	    EX_NOCOALESCE|EX_NOWAIT);
6471.1Sitojun
6481.3Smsaitoh#if 0
6491.1Sitojun	consinit();	/* XXX SHOULD NOT BE DONE HERE */
6501.1Sitojun#endif
6511.1Sitojun
6521.1Sitojun	splraise(-1);
6531.1Sitojun	enable_intr();
6541.1Sitojun
6551.1Sitojun	avail_end = sh3_trunc_page(IOM_RAM_END + 1);
6561.1Sitojun
6571.1Sitojun	printf("initSH3\r\n");
6581.1Sitojun
6591.1Sitojun	/*
6601.1Sitojun	 * Calculate check sum
6611.1Sitojun	 */
6621.3Smsaitoh    {
6631.3Smsaitoh	u_short *p, sum;
6641.3Smsaitoh	int size;
6651.3Smsaitoh
6661.3Smsaitoh	size = etext - _start;
6671.3Smsaitoh	p = (u_short *)_start;
6681.1Sitojun	sum = 0;
6691.1Sitojun	size >>= 1;
6701.1Sitojun	while (size--)
6711.1Sitojun		sum += *p++;
6721.3Smsaitoh	printf("Check Sum = 0x%x\r\n", sum);
6731.3Smsaitoh    }
6741.1Sitojun	/*
6751.1Sitojun	 * Allocate the physical addresses used by RAM from the iomem
6761.1Sitojun	 * extent map.  This is done before the addresses are
6771.1Sitojun	 * page rounded just to make sure we get them all.
6781.1Sitojun	 */
6791.1Sitojun	if (extent_alloc_region(iomem_ex, IOM_RAM_BEGIN,
6801.3Smsaitoh				(IOM_RAM_END-IOM_RAM_BEGIN) + 1,
6811.1Sitojun				EX_NOWAIT)) {
6821.1Sitojun		/* XXX What should we do? */
6831.1Sitojun		printf("WARNING: CAN'T ALLOCATE RAM MEMORY FROM IOMEM EXTENT MAP!\n");
6841.1Sitojun	}
6851.1Sitojun
6861.1Sitojun	/* number of pages of physmem addr space */
6871.3Smsaitoh	physmem = btoc(IOM_RAM_END - IOM_RAM_BEGIN +1);
6881.1Sitojun#ifdef	TODO
6891.1Sitojun	dumpmem = physmem;
6901.1Sitojun#endif
6911.1Sitojun
6921.1Sitojun	/*
6931.1Sitojun	 * Initialize for pmap_free_pages and pmap_next_page.
6941.1Sitojun	 * These guys should be page-aligned.
6951.1Sitojun	 */
6961.1Sitojun	if (physmem < btoc(2 * 1024 * 1024)) {
6971.1Sitojun		printf("warning: too little memory available; "
6981.1Sitojun		       "have %d bytes, want %d bytes\n"
6991.1Sitojun		       "running in degraded mode\n"
7001.1Sitojun		       "press a key to confirm\n\n",
7011.1Sitojun		       ctob(physmem), 2*1024*1024);
7021.1Sitojun		cngetc();
7031.1Sitojun	}
7041.1Sitojun
7051.1Sitojun	/* Call pmap initialization to make new kernel address space */
7061.3Smsaitoh	pmap_bootstrap(atdevbase);
7071.1Sitojun
7081.1Sitojun	/*
7091.1Sitojun	 * Initialize error message buffer (at end of core).
7101.1Sitojun	 */
7111.1Sitojun	initmsgbuf((caddr_t)msgbuf_paddr, round_page(MSGBUFSIZE));
7121.1Sitojun
7131.1Sitojun	/*
7141.1Sitojun	 * set boot device information
7151.1Sitojun	 */
7161.1Sitojun	setup_bootinfo();
7171.1Sitojun
7181.1Sitojun#if 0
7191.1Sitojun	sh3_cache_on();
7201.1Sitojun#endif
7211.1Sitojun
7221.3Smsaitoh	/* setup proc0 stack */
7231.3Smsaitoh	sp = avail + NBPG + USPACE - 16 - sizeof(struct trapframe);
7241.3Smsaitoh
7251.3Smsaitoh	/*
7261.3Smsaitoh	 * XXX We can't return here, because we change stack pointer.
7271.3Smsaitoh	 *     So jump to return address directly.
7281.3Smsaitoh	 */
7291.3Smsaitoh	__asm __volatile ("jmp @%0; mov %1, r15" :: "r"(pc), "r"(sp));
7301.1Sitojun}
7311.1Sitojun
7321.1Sitojunvoid
7331.1Sitojunsetup_bootinfo(void)
7341.1Sitojun{
7351.1Sitojun	struct btinfo_bootdisk *help;
7361.1Sitojun
7371.1Sitojun	*(int *)bootinfo = 1;
7381.1Sitojun	help = (struct btinfo_bootdisk *)(bootinfo + sizeof(int));
7391.1Sitojun	help->biosdev = 0;
7401.1Sitojun	help->partition = 0;
7411.1Sitojun	((struct btinfo_common *)help)->len = sizeof(struct btinfo_bootdisk);
7421.1Sitojun	((struct btinfo_common *)help)->type = BTINFO_BOOTDISK;
7431.1Sitojun}
7441.1Sitojun
7451.1Sitojunvoid *
7461.1Sitojunlookup_bootinfo(type)
7471.1Sitojun	int type;
7481.1Sitojun{
7491.1Sitojun	struct btinfo_common *help;
7501.1Sitojun	int n = *(int*)bootinfo;
7511.1Sitojun	help = (struct btinfo_common *)(bootinfo + sizeof(int));
7521.1Sitojun	while (n--) {
7531.1Sitojun		if (help->type == type)
7541.1Sitojun			return (help);
7551.1Sitojun		help = (struct btinfo_common *)((char*)help + help->len);
7561.1Sitojun	}
7571.1Sitojun	return (0);
7581.1Sitojun}
7591.1Sitojun
7601.1Sitojun
7611.1Sitojun/*
7621.1Sitojun * consinit:
7631.1Sitojun * initialize the system console.
7641.1Sitojun * XXX - shouldn't deal with this initted thing, but then,
7651.1Sitojun * it shouldn't be called from init386 either.
7661.1Sitojun */
7671.1Sitojunvoid
7681.1Sitojunconsinit()
7691.1Sitojun{
7701.1Sitojun	static int initted;
7711.1Sitojun
7721.1Sitojun	if (initted)
7731.1Sitojun		return;
7741.1Sitojun	initted = 1;
7751.1Sitojun
7761.1Sitojun	cninit();
7771.1Sitojun
7781.1Sitojun#ifdef DDB
7791.1Sitojun	ddb_init();
7801.1Sitojun#endif
7811.1Sitojun}
7821.1Sitojun
7831.1Sitojunvoid
7841.1Sitojuncpu_reset()
7851.1Sitojun{
7861.1Sitojun
7871.1Sitojun	disable_intr();
7881.1Sitojun
7891.1Sitojun	Sh3Reset();
7901.1Sitojun	for (;;)
7911.1Sitojun		;
7921.1Sitojun}
7931.1Sitojun
7941.1Sitojunint
7951.1Sitojunbus_space_map (t, addr, size, flags, bshp)
7961.1Sitojun	bus_space_tag_t t;
7971.1Sitojun	bus_addr_t addr;
7981.1Sitojun	bus_size_t size;
7991.1Sitojun	int flags;
8001.1Sitojun	bus_space_handle_t *bshp;
8011.1Sitojun{
8021.1Sitojun
8031.1Sitojun	*bshp = (bus_space_handle_t)addr;
8041.1Sitojun
8051.1Sitojun	return 0;
8061.1Sitojun}
8071.1Sitojun
8081.1Sitojunint
8091.1Sitojunsh_memio_subregion(t, bsh, offset, size, nbshp)
8101.1Sitojun	bus_space_tag_t t;
8111.1Sitojun	bus_space_handle_t bsh;
8121.1Sitojun	bus_size_t offset, size;
8131.1Sitojun	bus_space_handle_t *nbshp;
8141.1Sitojun{
8151.1Sitojun
8161.1Sitojun	*nbshp = bsh + offset;
8171.1Sitojun	return (0);
8181.1Sitojun}
8191.1Sitojun
8201.1Sitojunint
8211.1Sitojunsh_memio_alloc(t, rstart, rend, size, alignment, boundary, flags,
8221.1Sitojun	       bpap, bshp)
8231.1Sitojun	bus_space_tag_t t;
8241.1Sitojun	bus_addr_t rstart, rend;
8251.1Sitojun	bus_size_t size, alignment, boundary;
8261.1Sitojun	int flags;
8271.1Sitojun	bus_addr_t *bpap;
8281.1Sitojun	bus_space_handle_t *bshp;
8291.1Sitojun{
8301.1Sitojun	*bshp = *bpap = rstart;
8311.1Sitojun
8321.1Sitojun	return (0);
8331.1Sitojun}
8341.1Sitojun
8351.1Sitojunvoid
8361.1Sitojunsh_memio_free(t, bsh, size)
8371.1Sitojun	bus_space_tag_t t;
8381.1Sitojun	bus_space_handle_t bsh;
8391.1Sitojun	bus_size_t size;
8401.1Sitojun{
8411.1Sitojun
8421.1Sitojun}
8431.1Sitojun
8441.1Sitojunvoid
8451.1Sitojunsh_memio_unmap(t, bsh, size)
8461.1Sitojun	bus_space_tag_t t;
8471.1Sitojun	bus_space_handle_t bsh;
8481.1Sitojun	bus_size_t size;
8491.1Sitojun{
8501.1Sitojun	return;
8511.1Sitojun}
8521.20Smsaitoh
8531.20Smsaitoh#ifdef SH4_PCMCIA
8541.20Smsaitoh
8551.20Smsaitohint
8561.20Smsaitohshpcmcia_memio_map(t, bpa, size, flags, bshp)
8571.20Smsaitoh	bus_space_tag_t t;
8581.20Smsaitoh	bus_addr_t bpa;
8591.20Smsaitoh	bus_size_t size;
8601.20Smsaitoh	int flags;
8611.20Smsaitoh	bus_space_handle_t *bshp;
8621.20Smsaitoh{
8631.20Smsaitoh	int error;
8641.20Smsaitoh	struct extent *ex;
8651.20Smsaitoh	bus_space_tag_t pt = t & ~SH3_BUS_SPACE_PCMCIA_8BIT;
8661.20Smsaitoh
8671.20Smsaitoh	if (pt != SH3_BUS_SPACE_PCMCIA_IO &&
8681.20Smsaitoh	    pt != SH3_BUS_SPACE_PCMCIA_MEM &&
8691.20Smsaitoh	    pt != SH3_BUS_SPACE_PCMCIA_ATT) {
8701.20Smsaitoh		*bshp = (bus_space_handle_t)bpa;
8711.20Smsaitoh
8721.20Smsaitoh		return 0;
8731.20Smsaitoh	}
8741.20Smsaitoh
8751.20Smsaitoh	ex = iomem_ex;
8761.20Smsaitoh
8771.20Smsaitoh#if 0
8781.20Smsaitoh	/*
8791.20Smsaitoh	 * Before we go any further, let's make sure that this
8801.20Smsaitoh	 * region is available.
8811.20Smsaitoh	 */
8821.20Smsaitoh	error = extent_alloc_region(ex, bpa, size,
8831.20Smsaitoh				    EX_NOWAIT | EX_MALLOCOK );
8841.20Smsaitoh	if (error){
8851.20Smsaitoh		printf("sh3_pcmcia_memio_map:extent_alloc_region error\n");
8861.20Smsaitoh		return (error);
8871.20Smsaitoh	}
8881.20Smsaitoh#endif
8891.20Smsaitoh
8901.20Smsaitoh	/*
8911.20Smsaitoh	 * For memory space, map the bus physical address to
8921.20Smsaitoh	 * a kernel virtual address.
8931.20Smsaitoh	 */
8941.20Smsaitoh	error = shpcmcia_mem_add_mapping(bpa, size, (int)t, bshp );
8951.20Smsaitoh#if 0
8961.20Smsaitoh	if (error) {
8971.20Smsaitoh		if (extent_free(ex, bpa, size, EX_NOWAIT | EX_MALLOCOK )) {
8981.20Smsaitoh			printf("sh3_pcmcia_memio_map: pa 0x%lx, size 0x%lx\n",
8991.20Smsaitoh			       bpa, size);
9001.20Smsaitoh			printf("sh3_pcmcia_memio_map: can't free region\n");
9011.20Smsaitoh		}
9021.20Smsaitoh	}
9031.20Smsaitoh#endif
9041.20Smsaitoh
9051.20Smsaitoh	return (error);
9061.20Smsaitoh}
9071.20Smsaitoh
9081.20Smsaitohint
9091.20Smsaitohshpcmcia_mem_add_mapping(bpa, size, type, bshp)
9101.20Smsaitoh	bus_addr_t bpa;
9111.20Smsaitoh	bus_size_t size;
9121.20Smsaitoh	int type;
9131.20Smsaitoh	bus_space_handle_t *bshp;
9141.20Smsaitoh{
9151.20Smsaitoh	u_long pa, endpa;
9161.20Smsaitoh	vaddr_t va;
9171.20Smsaitoh	pt_entry_t *pte;
9181.20Smsaitoh	unsigned int m = 0;
9191.20Smsaitoh	int io_type = type & ~SH3_BUS_SPACE_PCMCIA_8BIT;
9201.20Smsaitoh
9211.20Smsaitoh	pa = sh3_trunc_page(bpa);
9221.20Smsaitoh	endpa = sh3_round_page(bpa + size);
9231.20Smsaitoh
9241.20Smsaitoh#ifdef DIAGNOSTIC
9251.20Smsaitoh	if (endpa <= pa)
9261.20Smsaitoh		panic("sh3_pcmcia_mem_add_mapping: overflow");
9271.20Smsaitoh#endif
9281.20Smsaitoh
9291.20Smsaitoh	va = uvm_km_valloc(kernel_map, endpa - pa);
9301.20Smsaitoh	if (va == 0){
9311.20Smsaitoh		printf("shpcmcia_add_mapping: nomem \n");
9321.20Smsaitoh		return (ENOMEM);
9331.20Smsaitoh	}
9341.20Smsaitoh
9351.20Smsaitoh	*bshp = (bus_space_handle_t)(va + (bpa & PGOFSET));
9361.20Smsaitoh
9371.29Such#define MODE(t, s)							\
9381.29Such	(t) & SH3_BUS_SPACE_PCMCIA_8BIT ?				\
9391.29Such		_PG_PCMCIA_ ## s ## 8 :					\
9401.29Such		_PG_PCMCIA_ ## s ## 16
9411.29Such	switch (io_type) {
9421.29Such	default:
9431.29Such		panic("unknown pcmcia space.");
9441.29Such		/* NOTREACHED */
9451.29Such	case SH3_BUS_SPACE_PCMCIA_IO:
9461.29Such		m = MODE(type, IO);
9471.29Such		break;
9481.29Such	case SH3_BUS_SPACE_PCMCIA_MEM:
9491.29Such		m = MODE(type, MEM);
9501.29Such		break;
9511.29Such	case SH3_BUS_SPACE_PCMCIA_ATT:
9521.29Such		m = MODE(type, ATTR);
9531.29Such		break;
9541.20Smsaitoh	}
9551.29Such#undef MODE
9561.20Smsaitoh
9571.20Smsaitoh	for (; pa < endpa; pa += NBPG, va += NBPG) {
9581.20Smsaitoh		pmap_enter(pmap_kernel(), va, pa,
9591.22Smsaitoh		    VM_PROT_READ | VM_PROT_WRITE, PMAP_WIRED);
9601.20Smsaitoh
9611.20Smsaitoh		pte = kvtopte(va);
9621.20Smsaitoh		*pte &= ~PG_N;
9631.20Smsaitoh		*pte |= m;
9641.20Smsaitoh		pmap_update_pg(va);
9651.20Smsaitoh	}
9661.28Schris	pmap_update(pmap_kernel());
9671.20Smsaitoh
9681.20Smsaitoh	return 0;
9691.20Smsaitoh}
9701.20Smsaitoh
9711.20Smsaitohvoid
9721.20Smsaitohshpcmcia_memio_unmap(t, bsh, size)
9731.20Smsaitoh	bus_space_tag_t t;
9741.20Smsaitoh	bus_space_handle_t bsh;
9751.20Smsaitoh	bus_size_t size;
9761.20Smsaitoh{
9771.20Smsaitoh	struct extent *ex;
9781.20Smsaitoh	u_long va, endva;
9791.20Smsaitoh	bus_addr_t bpa;
9801.20Smsaitoh	bus_space_tag_t pt = t & ~SH3_BUS_SPACE_PCMCIA_8BIT;
9811.20Smsaitoh
9821.20Smsaitoh	if (pt != SH3_BUS_SPACE_PCMCIA_IO &&
9831.20Smsaitoh	    pt != SH3_BUS_SPACE_PCMCIA_MEM &&
9841.20Smsaitoh	    pt != SH3_BUS_SPACE_PCMCIA_ATT) {
9851.20Smsaitoh		return ;
9861.20Smsaitoh	}
9871.20Smsaitoh
9881.20Smsaitoh	ex = iomem_ex;
9891.20Smsaitoh
9901.20Smsaitoh	va = sh3_trunc_page(bsh);
9911.20Smsaitoh	endva = sh3_round_page(bsh + size);
9921.20Smsaitoh
9931.20Smsaitoh#ifdef DIAGNOSTIC
9941.20Smsaitoh	if (endva <= va)
9951.20Smsaitoh		panic("sh3_pcmcia_memio_unmap: overflow");
9961.20Smsaitoh#endif
9971.20Smsaitoh
9981.22Smsaitoh	pmap_extract(pmap_kernel(), va, &bpa);
9991.24Sichiro	bpa += bsh & PGOFSET;
10001.20Smsaitoh
10011.20Smsaitoh	/*
10021.20Smsaitoh	 * Free the kernel virtual mapping.
10031.20Smsaitoh	 */
10041.20Smsaitoh	uvm_km_free(kernel_map, va, endva - va);
10051.20Smsaitoh
10061.20Smsaitoh#if 0
10071.20Smsaitoh	if (extent_free(ex, bpa, size,
10081.20Smsaitoh			EX_NOWAIT | EX_MALLOCOK)) {
10091.20Smsaitoh		printf("sh3_pcmcia_memio_unmap: %s 0x%lx, size 0x%lx\n",
10101.20Smsaitoh		       "pa", bpa, size);
10111.20Smsaitoh		printf("sh3_pcmcia_memio_unmap: can't free region\n");
10121.20Smsaitoh	}
10131.20Smsaitoh#endif
10141.20Smsaitoh}
10151.20Smsaitoh
10161.20Smsaitohvoid
10171.20Smsaitohshpcmcia_memio_free(t, bsh, size)
10181.20Smsaitoh	bus_space_tag_t t;
10191.20Smsaitoh	bus_space_handle_t bsh;
10201.20Smsaitoh	bus_size_t size;
10211.20Smsaitoh{
10221.20Smsaitoh
10231.20Smsaitoh	/* sh3_pcmcia_memio_unmap() does all that we need to do. */
10241.20Smsaitoh	shpcmcia_memio_unmap(t, bsh, size);
10251.20Smsaitoh}
10261.20Smsaitoh
10271.20Smsaitohint
10281.20Smsaitohshpcmcia_memio_subregion(t, bsh, offset, size, nbshp)
10291.20Smsaitoh	bus_space_tag_t t;
10301.20Smsaitoh	bus_space_handle_t bsh;
10311.20Smsaitoh	bus_size_t offset, size;
10321.20Smsaitoh	bus_space_handle_t *nbshp;
10331.20Smsaitoh{
10341.20Smsaitoh
10351.20Smsaitoh	*nbshp = bsh + offset;
10361.20Smsaitoh	return (0);
10371.20Smsaitoh}
10381.20Smsaitoh
10391.20Smsaitoh#endif /* SH4_PCMCIA */
10401.1Sitojun
10411.18Smsaitoh#if !defined(DONT_INIT_BSC)
10421.1Sitojun/*
10431.1Sitojun * InitializeBsc
10441.1Sitojun * : BSC(Bus State Controler)
10451.1Sitojun */
10461.1Sitojunvoid InitializeBsc __P((void));
10471.1Sitojun
10481.1Sitojunvoid
10491.1SitojunInitializeBsc()
10501.1Sitojun{
10511.1Sitojun
10521.1Sitojun	/*
10531.1Sitojun	 * Drive RAS,CAS in stand by mode and bus release mode
10541.1Sitojun	 * Area0 = Normal memory, Area5,6=Normal(no burst)
10551.1Sitojun	 * Area2 = Normal memory, Area3 = SDRAM, Area5 = Normal memory
10561.1Sitojun	 * Area4 = Normal Memory
10571.1Sitojun	 * Area6 = Normal memory
10581.1Sitojun	 */
10591.3Smsaitoh	SHREG_BCR1 = BSC_BCR1_VAL;
10601.1Sitojun
10611.1Sitojun	/*
10621.1Sitojun	 * Bus Width
10631.1Sitojun	 * Area4: Bus width = 16bit
10641.1Sitojun	 * Area6,5 = 16bit
10651.1Sitojun	 * Area1 = 8bit
10661.1Sitojun	 * Area2,3: Bus width = 32bit
10671.1Sitojun	 */
10681.13Smsaitoh	SHREG_BCR2 = BSC_BCR2_VAL;
10691.1Sitojun
10701.1Sitojun	/*
10711.1Sitojun	 * Idle cycle number in transition area and read to write
10721.1Sitojun	 * Area6 = 3, Area5 = 3, Area4 = 3, Area3 = 3, Area2 = 3
10731.1Sitojun	 * Area1 = 3, Area0 = 3
10741.1Sitojun	 */
10751.3Smsaitoh	SHREG_WCR1 = BSC_WCR1_VAL;
10761.1Sitojun
10771.1Sitojun	/*
10781.1Sitojun	 * Wait cycle
10791.1Sitojun	 * Area 6 = 6
10801.1Sitojun	 * Area 5 = 2
10811.1Sitojun	 * Area 4 = 10
10821.1Sitojun	 * Area 3 = 3
10831.1Sitojun	 * Area 2,1 = 3
10841.1Sitojun	 * Area 0 = 6
10851.1Sitojun	 */
10861.3Smsaitoh	SHREG_WCR2 = BSC_WCR2_VAL;
10871.1Sitojun
10881.13Smsaitoh#if defined(SH4) && defined(BSC_WCR3_VAL)
10891.3Smsaitoh	SHREG_WCR3 = BSC_WCR3_VAL;
10901.1Sitojun#endif
10911.1Sitojun
10921.1Sitojun	/*
10931.1Sitojun	 * RAS pre-charge = 2cycle, RAS-CAS delay = 3 cycle,
10941.1Sitojun	 * write pre-charge=1cycle
10951.1Sitojun	 * CAS before RAS refresh RAS assert time = 3 cycle
10961.1Sitojun	 * Disable burst, Bus size=32bit, Column Address=10bit, Refresh ON
10971.1Sitojun	 * CAS before RAS refresh ON, EDO DRAM
10981.1Sitojun	 */
10991.3Smsaitoh	SHREG_MCR = BSC_MCR_VAL;
11001.1Sitojun
11011.11Smsaitoh#if defined(BSC_SDMR2_VAL)
11021.11Smsaitoh#define SDMR2	(*(volatile unsigned char  *)BSC_SDMR2_VAL)
11031.1Sitojun
11041.11Smsaitoh	SDMR2 = 0;
11051.11Smsaitoh#endif
11061.11Smsaitoh
11071.11Smsaitoh#if defined(BSC_SDMR3_VAL)
11081.19Smsaitoh#if !(defined(COMPUTEXEVB) && defined(SH7709A))
11091.11Smsaitoh#define SDMR3	(*(volatile unsigned char  *)BSC_SDMR3_VAL)
11101.11Smsaitoh
11111.11Smsaitoh	SDMR3 = 0;
11121.1Sitojun#else
11131.1Sitojun#define ADDSET	(*(volatile unsigned short *)0x1A000000)
11141.1Sitojun#define ADDRST	(*(volatile unsigned short *)0x18000000)
11151.11Smsaitoh#define SDMR3	(*(volatile unsigned char  *)BSC_SDMR3_VAL)
11161.1Sitojun
11171.1Sitojun	ADDSET = 0;
11181.11Smsaitoh	SDMR3 = 0;
11191.1Sitojun	ADDRST = 0;
11201.1Sitojun#endif
11211.1Sitojun#endif
11221.1Sitojun
11231.1Sitojun	/*
11241.1Sitojun	 * PCMCIA Control Register
11251.1Sitojun	 * OE/WE assert delay 3.5 cycle
11261.1Sitojun	 * OE/WE negate-address delay 3.5 cycle
11271.1Sitojun	 */
11281.1Sitojun#ifdef BSC_PCR_VAL
11291.12Smsaitoh	SHREG_PCR = BSC_PCR_VAL;
11301.1Sitojun#endif
11311.1Sitojun
11321.1Sitojun	/*
11331.1Sitojun	 * Refresh Timer Control/Status Register
11341.1Sitojun	 * Disable interrupt by CMF, closk 1/16, Disable OVF interrupt
11351.1Sitojun	 * Count Limit = 1024
11361.1Sitojun	 * In following statement, the reason why high byte = 0xa5(a4 in RFCR)
11371.1Sitojun	 * is the rule of SH3 in writing these register.
11381.1Sitojun	 */
11391.3Smsaitoh	SHREG_RTCSR = BSC_RTCSR_VAL;
11401.1Sitojun
11411.1Sitojun
11421.1Sitojun	/*
11431.1Sitojun	 * Refresh Timer Counter
11441.1Sitojun	 * Initialize to 0
11451.1Sitojun	 */
11461.9Smsaitoh#ifdef BSC_RTCNT_VAL
11471.3Smsaitoh	SHREG_RTCNT = BSC_RTCNT_VAL;
11481.9Smsaitoh#endif
11491.1Sitojun
11501.1Sitojun	/* set Refresh Time Constant Register */
11511.3Smsaitoh	SHREG_RTCOR = BSC_RTCOR_VAL;
11521.1Sitojun
11531.1Sitojun	/* init Refresh Count Register */
11541.1Sitojun#ifdef BSC_RFCR_VAL
11551.3Smsaitoh	SHREG_RFCR = BSC_RFCR_VAL;
11561.1Sitojun#endif
11571.1Sitojun
11581.1Sitojun	/* Set Clock mode (make internal clock double speed) */
11591.1Sitojun
11601.1Sitojun	SHREG_FRQCR = FRQCR_VAL;
11611.1Sitojun
11621.1Sitojun#ifndef MMEYE_NO_CACHE
11631.1Sitojun	/* Cache ON */
11641.6Smsaitoh	SHREG_CCR = CCR_CE;
11651.1Sitojun#endif
11661.1Sitojun}
11671.18Smsaitoh#endif
11681.1Sitojun
11691.1Sitojunvoid
11701.1Sitojunsh3_cache_on(void)
11711.1Sitojun{
11721.1Sitojun#ifndef MMEYE_NO_CACHE
11731.1Sitojun	/* Cache ON */
11741.6Smsaitoh	SHREG_CCR = CCR_CE;
11751.6Smsaitoh	SHREG_CCR = CCR_CF | CCR_CE;	/* cache clear */
11761.6Smsaitoh	SHREG_CCR = CCR_CE;		/* cache on */
11771.1Sitojun#endif
11781.1Sitojun}
11791.9Smsaitoh
11801.9Smsaitoh#ifdef SH4
11811.9Smsaitohvoid
11821.9Smsaitohsh4_cache_flush(addr)
11831.9Smsaitoh	vaddr_t addr;
11841.9Smsaitoh{
11851.9Smsaitoh#if 1
11861.9Smsaitoh#define SH_ADDR_ARRAY_BASE_ADDR 0xf4000000
11871.9Smsaitoh#define WRITE_ADDR_ARRAY( entry ) \
11881.9Smsaitoh	(*(volatile u_int32_t *)(SH_ADDR_ARRAY_BASE_ADDR|(entry)|0x00))
11891.9Smsaitoh
11901.9Smsaitoh	int entry;
11911.9Smsaitoh
11921.9Smsaitoh	entry = ((u_int32_t)addr) & 0x3fe0;
11931.9Smsaitoh
11941.9Smsaitoh	WRITE_ADDR_ARRAY(entry) = 0;
11951.9Smsaitoh#else
11961.9Smsaitoh	volatile int *p = (int *)IOM_RAM_BEGIN;
11971.9Smsaitoh	int i;
11981.9Smsaitoh	/* volatile */int d;
11991.9Smsaitoh
12001.9Smsaitoh	for(i = 0; i < 512; i++){
12011.9Smsaitoh		d = *p;
12021.9Smsaitoh		p += 8;
12031.9Smsaitoh	}
12041.9Smsaitoh#endif
12051.9Smsaitoh}
12061.9Smsaitoh#endif
12071.8Smsaitoh
12081.8Smsaitoh /* XXX This value depends on physical available memory */
12091.8Smsaitoh#define OSIMAGE_BUF_ADDR	(IOM_RAM_BEGIN + 0x00400000)
12101.8Smsaitoh
12111.1Sitojunvoid
12121.3SmsaitohLoadAndReset(osimage)
12131.3Smsaitoh	char *osimage;
12141.1Sitojun{
12151.1Sitojun	void *buf_addr;
12161.1Sitojun	u_long size;
12171.1Sitojun	u_long *src;
12181.1Sitojun	u_long *dest;
12191.1Sitojun	u_long csum = 0;
12201.1Sitojun	u_long csum2 = 0;
12211.1Sitojun	u_long size2;
12221.1Sitojun
12231.3Smsaitoh	printf("LoadAndReset: copy start\n");
12241.1Sitojun	buf_addr = (void *)OSIMAGE_BUF_ADDR;
12251.1Sitojun
12261.1Sitojun	size = *(u_long *)osimage;
12271.1Sitojun	src = (u_long *)osimage;
12281.1Sitojun	dest = buf_addr;
12291.1Sitojun
12301.3Smsaitoh	size = (size + sizeof(u_long) * 2 + 3) >> 2;
12311.1Sitojun	size2 = size;
12321.1Sitojun
12331.3Smsaitoh	while (size--) {
12341.1Sitojun		csum += *src;
12351.1Sitojun		*dest++ = *src++;
12361.1Sitojun	}
12371.1Sitojun
12381.1Sitojun	dest = buf_addr;
12391.1Sitojun	while (size2--)
12401.1Sitojun		csum2 += *dest++;
12411.1Sitojun
12421.3Smsaitoh	printf("LoadAndReset: copy end[%lx,%lx]\n", csum, csum2);
12431.1Sitojun	printf("start XLoadAndReset\n");
12441.1Sitojun
12451.1Sitojun	/* mask all externel interrupt (XXX) */
12461.1Sitojun
12471.1Sitojun	XLoadAndReset(buf_addr);
12481.1Sitojun}
1249