Home | History | Annotate | Line # | Download | only in malta
machdep.c revision 1.1
      1 /*	$NetBSD: machdep.c,v 1.1 2002/03/07 14:44:04 simonb Exp $	*/
      2 
      3 /*
      4  * Copyright 2001, 2002 Wasabi Systems, Inc.
      5  * All rights reserved.
      6  *
      7  * Written by Jason R. Thorpe and Simon Burge for Wasabi Systems, Inc.
      8  *
      9  * Redistribution and use in source and binary forms, with or without
     10  * modification, are permitted provided that the following conditions
     11  * are met:
     12  * 1. Redistributions of source code must retain the above copyright
     13  *    notice, this list of conditions and the following disclaimer.
     14  * 2. Redistributions in binary form must reproduce the above copyright
     15  *    notice, this list of conditions and the following disclaimer in the
     16  *    documentation and/or other materials provided with the distribution.
     17  * 3. All advertising materials mentioning features or use of this software
     18  *    must display the following acknowledgement:
     19  *      This product includes software developed for the NetBSD Project by
     20  *      Wasabi Systems, Inc.
     21  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     22  *    or promote products derived from this software without specific prior
     23  *    written permission.
     24  *
     25  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     29  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35  * POSSIBILITY OF SUCH DAMAGE.
     36  */
     37 
     38 /*
     39  * Copyright (c) 1988 University of Utah.
     40  * Copyright (c) 1992, 1993
     41  *	The Regents of the University of California.  All rights reserved.
     42  *
     43  * This code is derived from software contributed to Berkeley by
     44  * the Systems Programming Group of the University of Utah Computer
     45  * Science Department, The Mach Operating System project at
     46  * Carnegie-Mellon University and Ralph Campbell.
     47  *
     48  * Redistribution and use in source and binary forms, with or without
     49  * modification, are permitted provided that the following conditions
     50  * are met:
     51  * 1. Redistributions of source code must retain the above copyright
     52  *    notice, this list of conditions and the following disclaimer.
     53  * 2. Redistributions in binary form must reproduce the above copyright
     54  *    notice, this list of conditions and the following disclaimer in the
     55  *    documentation and/or other materials provided with the distribution.
     56  * 3. All advertising materials mentioning features or use of this software
     57  *    must display the following acknowledgement:
     58  *	This product includes software developed by the University of
     59  *	California, Berkeley and its contributors.
     60  * 4. Neither the name of the University nor the names of its contributors
     61  *    may be used to endorse or promote products derived from this software
     62  *    without specific prior written permission.
     63  *
     64  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     65  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     66  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     67  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     68  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     69  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     70  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     71  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     72  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     73  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     74  * SUCH DAMAGE.
     75  *
     76  *	@(#)machdep.c   8.3 (Berkeley) 1/12/94
     77  *	from: Utah Hdr: machdep.c 1.63 91/04/24
     78  */
     79 
     80 #include "opt_ddb.h"
     81 #include "opt_execfmt.h"
     82 
     83 #include <sys/param.h>
     84 #include <sys/systm.h>
     85 #include <sys/kernel.h>
     86 #include <sys/buf.h>
     87 #include <sys/reboot.h>
     88 #include <sys/user.h>
     89 #include <sys/mount.h>
     90 #include <sys/kcore.h>
     91 #include <sys/boot_flag.h>
     92 #include <sys/sysctl.h>
     93 #include <sys/termios.h>
     94 
     95 #include <uvm/uvm_extern.h>
     96 
     97 #include <dev/cons.h>
     98 
     99 #ifdef DDB
    100 #include <machine/db_machdep.h>
    101 #include <ddb/db_extern.h>
    102 #endif
    103 
    104 #include <machine/cpu.h>
    105 #include <machine/psl.h>
    106 #include <machine/yamon.h>
    107 
    108 #include <evbmips/malta/autoconf.h>
    109 #include <evbmips/malta/maltareg.h>
    110 #include <evbmips/malta/maltavar.h>
    111 
    112 #include "com.h"
    113 #if NCOM > 0
    114 #include <dev/ic/comreg.h>
    115 #include <dev/ic/comvar.h>
    116 
    117 int	comcnrate = 38400;	/* XXX should be config option */
    118 #endif /* NCOM > 0 */
    119 
    120 
    121 #define REGVAL(x)       *((__volatile u_int32_t *)(MIPS_PHYS_TO_KSEG1((x))))
    122 
    123 struct malta_config malta_configuration;
    124 
    125 /* For sysctl. */
    126 char machine[] = MACHINE;
    127 char machine_arch[] = MACHINE_ARCH;
    128 char cpu_model[] = "MIPS Malta Evaluation Board";
    129 
    130 /* Our exported CPU info; we can have only one. */
    131 struct cpu_info cpu_info_store;
    132 
    133 /* Maps for VM objects. */
    134 struct vm_map *exec_map = NULL;
    135 struct vm_map *mb_map = NULL;
    136 struct vm_map *phys_map = NULL;
    137 
    138 int	physmem;		/* Total physical memory */
    139 
    140 int	netboot;		/* Are we netbooting? */
    141 
    142 int	cpuspeed;
    143 
    144 yamon_env_var *yamon_envp;
    145 
    146 phys_ram_seg_t mem_clusters[VM_PHYSSEG_MAX];
    147 int mem_cluster_cnt;
    148 
    149 void	configure(void);
    150 void	mach_init(int, char **, yamon_env_var *, u_long);
    151 
    152 /*
    153  * safepri is a safe priority for sleep to set for a spin-wait during
    154  * autoconfiguration or after a panic.  Used as an argument to splx().
    155  */
    156 int	safepri = MIPS1_PSL_LOWIPL;
    157 
    158 extern struct user *proc0paddr;
    159 
    160 /*
    161  * Do all the stuff that locore normally does before calling main().
    162  */
    163 void
    164 mach_init(int argc, char **argv, yamon_env_var *envp, u_long memsize)
    165 {
    166 	struct malta_config *mcp = &malta_configuration;
    167 	bus_space_handle_t sh;
    168 	caddr_t kernend, v;
    169         u_long first, last;
    170 	vsize_t size;
    171 	char *cp;
    172 	int i, howto;
    173 	uint8_t *brkres = (uint8_t *)MIPS_PHYS_TO_KSEG1(MALTA_BRKRES);
    174 
    175 	extern char edata[], end[];
    176 
    177 	*brkres = 0;	/* Disable BREAK==reset on console */
    178 
    179 	/* Get the propaganda in early! */
    180 	led_display_str("NetBSD");
    181 
    182 	/*
    183 	 * Clear the BSS segment.
    184 	 */
    185 	kernend = (caddr_t)mips_round_page(end);
    186 	memset(edata, 0, kernend - edata);
    187 
    188 	/* save the yamon environment pointer */
    189 	yamon_envp = envp;
    190 
    191 	/* Use YAMON callbacks for early console I/O */
    192 	cn_tab = &yamon_promcd;
    193 
    194 	uvm_setpagesize();
    195 
    196 	physmem = btoc(memsize);
    197 
    198 	gt_pci_init(&mcp->mc_pc, &mcp->mc_gt);
    199 	malta_bus_io_init(&mcp->mc_iot, mcp);
    200 	malta_bus_mem_init(&mcp->mc_memt, mcp);
    201 	malta_dma_init(mcp);
    202 
    203 #if 1
    204 #if NCOM > 0
    205 	/*
    206 	 * Delay to allow firmware putchars to complete.
    207 	 * FIFO depth * character time.
    208 	 * character time = (1000000 / (defaultrate / 10))
    209 	 */
    210 	DELAY(160000000 / comcnrate);
    211 	if (comcnattach(&mcp->mc_iot, 0x3f8, comcnrate,
    212 	    COM_FREQ,
    213 	    (TTYDEF_CFLAG & ~(CSIZE | PARENB)) | CS8) != 0)
    214 		panic("malta: unable to initialize serial console");
    215 #else
    216 	panic("malta: not configured to use serial console");
    217 #endif /* NCOM > 0 */
    218 #endif
    219 
    220 	bus_space_map(&mcp->mc_iot, MALTA_RTCADR, 2, 0, &sh);
    221 	malta_cal_timer(&mcp->mc_iot, sh);
    222 	bus_space_unmap(&mcp->mc_iot, sh, 2);
    223 
    224 	consinit();
    225 
    226 	/*
    227 	 * Copy exception-dispatch code down to exception vector.
    228 	 * Initialize locore-function vector.
    229 	 * Clear out the I and D caches.
    230 	 */
    231 	mips_vector_init();
    232 
    233 	mem_clusters[0].start = 0;
    234 	mem_clusters[0].size = ctob(physmem);
    235 	mem_cluster_cnt = 1;
    236 
    237 	/*
    238 	 * XXX: check argv[0] - do something if "gdb"???
    239 	 */
    240 
    241 	/*
    242 	 * Look at arguments passed to us and compute boothowto.
    243 	 */
    244 	boothowto = RB_AUTOBOOT;
    245 	for (i = 1; i < argc; i++) {
    246 		for (cp = argv[i]; *cp; cp++) {
    247 			/* Ignore superfluous '-', if there is one */
    248 			if (*cp == '-')
    249 				continue;
    250 
    251 			howto = 0;
    252 			BOOT_FLAG(*cp, howto);
    253 			if (! howto)
    254 				printf("bootflag '%c' not recognised\n", *cp);
    255 			else
    256 				boothowto |= howto;
    257 		}
    258 	}
    259 
    260 	/*
    261 	 * Load the rest of the available pages into the VM system.
    262 	 */
    263 	first = round_page(MIPS_KSEG0_TO_PHYS(kernend));
    264 	last = mem_clusters[0].start + mem_clusters[0].size;
    265 	uvm_page_physload(atop(first), atop(last), atop(first), atop(last),
    266 		VM_FREELIST_DEFAULT);
    267 
    268 	/*
    269 	 * Initialize error message buffer (at end of core).
    270 	 */
    271 	mips_init_msgbuf();
    272 
    273 	/*
    274 	 * Compute the size of system data structures.  pmap_bootstrap()
    275 	 * needs some of this information.
    276 	 */
    277 	size = (vsize_t)allocsys(NULL, NULL);
    278 
    279 	pmap_bootstrap();
    280 
    281 	/*
    282 	 * Allocate space for proc0's USPACE.
    283 	 */
    284 	v = (caddr_t)uvm_pageboot_alloc(USPACE);
    285 	proc0.p_addr = proc0paddr = (struct user *)v;
    286 	proc0.p_md.md_regs = (struct frame *)(v + USPACE) - 1;
    287 	curpcb = &proc0.p_addr->u_pcb;
    288 	curpcb->pcb_context[11] = MIPS_INT_MASK | MIPS_SR_INT_IE; /* SR */
    289 
    290 	/*
    291 	 * Allocate space for system data structures.  These data structures
    292 	 * are allocated here instead of cpu_startup() because physical
    293 	 * memory is directly addressable.  We don't have to map these into
    294 	 * virtual address space.
    295 	 */
    296 	v = (caddr_t)uvm_pageboot_alloc(size);
    297 	if ((allocsys(v, NULL) - v) != size)
    298 		panic("mach_init: table size inconsistency");
    299 
    300 	/*
    301 	 * Initialize debuggers, and break into them, if appropriate.
    302 	 */
    303 #ifdef DDB
    304 	ddb_init(0, 0, 0);
    305 #endif
    306 
    307 	if (boothowto & RB_KDB)
    308 #if defined(DDB)
    309 		Debugger();
    310 #endif
    311 }
    312 
    313 void
    314 consinit(void)
    315 {
    316 
    317 	/*
    318 	 * Everything related to console initialization is done
    319 	 * in mach_init().
    320 	 */
    321 }
    322 
    323 /*
    324  * Allocate memory for variable-sized tables,
    325  */
    326 void
    327 cpu_startup()
    328 {
    329 	unsigned i;
    330 	int base, residual;
    331 	vaddr_t minaddr, maxaddr;
    332 	vsize_t size;
    333 	char pbuf[9];
    334 
    335 	/*
    336 	 * Good {morning,afternoon,evening,night}.
    337 	 */
    338 	printf(version);
    339 	format_bytes(pbuf, sizeof(pbuf), ctob(physmem));
    340 	printf("%s memory", pbuf);
    341 
    342 	/*
    343 	 * Virtual memory is bootstrapped -- notify the bus spaces
    344 	 * that memory allocation is now safe.
    345 	 */
    346 	malta_configuration.mc_mallocsafe = 1;
    347 
    348 	/*
    349 	 * Allocate virtual address space for file I/O buffers.
    350 	 * Note they are different than the array of headers, 'buf',
    351 	 * and usually occupy more virtual memory than physical.
    352 	 */
    353 	size = MAXBSIZE * nbuf;
    354 	if (uvm_map(kernel_map, (vaddr_t *)&buffers, round_page(size),
    355 		    NULL, UVM_UNKNOWN_OFFSET, 0,
    356 		    UVM_MAPFLAG(UVM_PROT_NONE, UVM_PROT_NONE, UVM_INH_NONE,
    357 		    UVM_ADV_NORMAL, 0)) != 0)
    358 		panic("startup: cannot allocate VM for buffers");
    359 	minaddr = (vaddr_t)buffers;
    360 	base = bufpages / nbuf;
    361 	residual = bufpages % nbuf;
    362 	for (i = 0; i < nbuf; i++) {
    363 		vsize_t curbufsize;
    364 		vaddr_t curbuf;
    365 		struct vm_page *pg;
    366 
    367 		/*
    368 		 * Each buffer has MAXBSIZE bytes of VM space allocated.  Of
    369 		 * that MAXBSIZE space, we allocate and map (base+1) pages
    370 		 * for the first "residual" buffers, and then we allocate
    371 		 * "base" pages for the rest.
    372 		 */
    373 		curbuf = (vaddr_t) buffers + (i * MAXBSIZE);
    374 		curbufsize = NBPG * ((i < residual) ? (base + 1) : base);
    375 
    376 		while (curbufsize) {
    377 			pg = uvm_pagealloc(NULL, 0, NULL, 0);
    378 			if (pg == NULL)
    379 				panic("cpu_startup: not enough memory for "
    380 					"buffer cache");
    381 			pmap_kenter_pa(curbuf, VM_PAGE_TO_PHYS(pg),
    382 				       VM_PROT_READ|VM_PROT_WRITE);
    383 			curbuf += PAGE_SIZE;
    384 			curbufsize -= PAGE_SIZE;
    385 		}
    386 	}
    387 	pmap_update(pmap_kernel());
    388 
    389 	/*
    390 	 * Allocate a submap for exec arguments.  This map effectively
    391 	 * limits the number of processes exec'ing at any time.
    392 	 */
    393 	exec_map = uvm_km_suballoc(kernel_map, &minaddr, &maxaddr,
    394 				    16 * NCARGS, VM_MAP_PAGEABLE, FALSE, NULL);
    395 	/*
    396 	 * Allocate a submap for physio.
    397 	 */
    398 	phys_map = uvm_km_suballoc(kernel_map, &minaddr, &maxaddr,
    399 				    VM_PHYS_SIZE, 0, FALSE, NULL);
    400 
    401 	/*
    402 	 * (No need to allocate an mbuf cluster submap.  Mbuf clusters
    403 	 * are allocated via the pool allocator, and we use KSEG to
    404 	 * map those pages.)
    405 	 */
    406 
    407 	format_bytes(pbuf, sizeof(pbuf), ptoa(uvmexp.free));
    408 	printf(", %s free", pbuf);
    409 	format_bytes(pbuf, sizeof(pbuf), bufpages * NBPG);
    410 	printf(", %s in %d buffers\n", pbuf, nbuf);
    411 
    412 	/*
    413 	 * Set up buffers, so they can be used to read disk labels.
    414 	 */
    415 	bufinit();
    416 }
    417 
    418 int
    419 cpu_sysctl(name, namelen, oldp, oldlenp, newp, newlen, p)
    420 	int *name;
    421 	u_int namelen;
    422 	void *oldp;
    423 	size_t *oldlenp;
    424 	void *newp;
    425 	size_t newlen;
    426 	struct proc *p;
    427 {
    428 	/* All sysctl names at this level are terminal. */
    429 	if (namelen != 1)
    430 		return ENOTDIR;
    431 
    432 	switch (name[0]) {
    433 	default:
    434 		return EOPNOTSUPP;
    435 	}
    436 }
    437 
    438 int	waittime = -1;
    439 
    440 void
    441 cpu_reboot(howto, bootstr)
    442 	int howto;
    443 	char *bootstr;
    444 {
    445 
    446 	/* Take a snapshot before clobbering any registers. */
    447 	if (curproc)
    448 		savectx((struct user *)curpcb);
    449 
    450 	if (cold) {
    451 		howto |= RB_HALT;
    452 		goto haltsys;
    453 	}
    454 
    455 	/* If "always halt" was specified as a boot flag, obey. */
    456 	if (boothowto & RB_HALT)
    457 		howto |= RB_HALT;
    458 
    459 	boothowto = howto;
    460 	if ((howto & RB_NOSYNC) == 0 && (waittime < 0)) {
    461 		waittime = 0;
    462 		vfs_shutdown();
    463 
    464 		/*
    465 		 * If we've been adjusting the clock, the todr
    466 		 * will be out of synch; adjust it now.
    467 		 */
    468 		resettodr();
    469 	}
    470 
    471 	splhigh();
    472 
    473 	if (howto & RB_DUMP)
    474 		dumpsys();
    475 
    476 haltsys:
    477 	doshutdownhooks();
    478 
    479 	if (howto & RB_HALT) {
    480 		printf("\n");
    481 		printf("The operating system has halted.\n");
    482 		printf("Please press any key to reboot.\n\n");
    483 		cnpollc(1);	/* For proper keyboard command handling */
    484 		cngetc();
    485 		cnpollc(0);
    486 	}
    487 
    488 	printf("%s\n\n", ((howto & RB_HALT) != 0) ? "halted." : "rebooting...");
    489 	yamon_exit(boothowto);
    490 	printf("Oops, back from yamon_exit()\n\nResetting...");
    491 
    492 	REGVAL(MALTA_SOFTRES) = MALTA_GORESET;
    493 
    494 	/*
    495 	 * Need a small delay here, otherwise we see the first few characters of
    496 	 * the warning below.
    497 	 */
    498 	delay(80000);
    499 
    500 	printf("WARNING: reset failed!\nSpinning...");
    501 
    502 	for (;;)
    503 		/* spin forever */ ;	/* XXX */
    504 }
    505