Home | History | Annotate | Line # | Download | only in malta
machdep.c revision 1.41
      1  1.41      matt /*	$NetBSD: machdep.c,v 1.41 2011/07/10 00:03:53 matt Exp $	*/
      2   1.1    simonb 
      3   1.1    simonb /*
      4   1.1    simonb  * Copyright 2001, 2002 Wasabi Systems, Inc.
      5   1.1    simonb  * All rights reserved.
      6   1.1    simonb  *
      7   1.1    simonb  * Written by Jason R. Thorpe and Simon Burge for Wasabi Systems, Inc.
      8   1.1    simonb  *
      9   1.1    simonb  * Redistribution and use in source and binary forms, with or without
     10   1.1    simonb  * modification, are permitted provided that the following conditions
     11   1.1    simonb  * are met:
     12   1.1    simonb  * 1. Redistributions of source code must retain the above copyright
     13   1.1    simonb  *    notice, this list of conditions and the following disclaimer.
     14   1.1    simonb  * 2. Redistributions in binary form must reproduce the above copyright
     15   1.1    simonb  *    notice, this list of conditions and the following disclaimer in the
     16   1.1    simonb  *    documentation and/or other materials provided with the distribution.
     17   1.1    simonb  * 3. All advertising materials mentioning features or use of this software
     18   1.1    simonb  *    must display the following acknowledgement:
     19   1.1    simonb  *      This product includes software developed for the NetBSD Project by
     20   1.1    simonb  *      Wasabi Systems, Inc.
     21   1.1    simonb  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     22   1.1    simonb  *    or promote products derived from this software without specific prior
     23   1.1    simonb  *    written permission.
     24   1.1    simonb  *
     25   1.1    simonb  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     26   1.1    simonb  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27   1.1    simonb  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28   1.1    simonb  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     29   1.1    simonb  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30   1.1    simonb  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31   1.1    simonb  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32   1.1    simonb  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33   1.1    simonb  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34   1.1    simonb  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35   1.1    simonb  * POSSIBILITY OF SUCH DAMAGE.
     36   1.1    simonb  */
     37   1.1    simonb 
     38   1.1    simonb /*
     39  1.39     rmind  * Copyright (c) 1988 University of Utah.
     40   1.1    simonb  * Copyright (c) 1992, 1993
     41   1.1    simonb  *	The Regents of the University of California.  All rights reserved.
     42   1.1    simonb  *
     43   1.1    simonb  * This code is derived from software contributed to Berkeley by
     44   1.1    simonb  * the Systems Programming Group of the University of Utah Computer
     45   1.1    simonb  * Science Department, The Mach Operating System project at
     46   1.1    simonb  * Carnegie-Mellon University and Ralph Campbell.
     47   1.1    simonb  *
     48   1.1    simonb  * Redistribution and use in source and binary forms, with or without
     49   1.1    simonb  * modification, are permitted provided that the following conditions
     50   1.1    simonb  * are met:
     51   1.1    simonb  * 1. Redistributions of source code must retain the above copyright
     52   1.1    simonb  *    notice, this list of conditions and the following disclaimer.
     53   1.1    simonb  * 2. Redistributions in binary form must reproduce the above copyright
     54   1.1    simonb  *    notice, this list of conditions and the following disclaimer in the
     55   1.1    simonb  *    documentation and/or other materials provided with the distribution.
     56  1.13       agc  * 3. Neither the name of the University nor the names of its contributors
     57  1.13       agc  *    may be used to endorse or promote products derived from this software
     58  1.13       agc  *    without specific prior written permission.
     59  1.13       agc  *
     60  1.13       agc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     61  1.13       agc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     62  1.13       agc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     63  1.13       agc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     64  1.13       agc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     65  1.13       agc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     66  1.13       agc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     67  1.13       agc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     68  1.13       agc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     69  1.13       agc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     70  1.13       agc  * SUCH DAMAGE.
     71  1.13       agc  *
     72  1.13       agc  *	@(#)machdep.c   8.3 (Berkeley) 1/12/94
     73  1.13       agc  *	from: Utah Hdr: machdep.c 1.63 91/04/24
     74  1.13       agc  */
     75  1.12     lukem 
     76  1.12     lukem #include <sys/cdefs.h>
     77  1.41      matt __KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.41 2011/07/10 00:03:53 matt Exp $");
     78   1.1    simonb 
     79   1.1    simonb #include "opt_ddb.h"
     80   1.1    simonb #include "opt_execfmt.h"
     81  1.32       apb #include "opt_modular.h"
     82   1.1    simonb 
     83   1.1    simonb #include <sys/param.h>
     84  1.41      matt #include <sys/boot_flag.h>
     85  1.41      matt #include <sys/buf.h>
     86  1.41      matt #include <sys/cpu.h>
     87  1.41      matt #include <sys/device.h>
     88  1.41      matt #include <sys/kcore.h>
     89   1.1    simonb #include <sys/kernel.h>
     90  1.41      matt #include <sys/ksyms.h>
     91  1.41      matt #include <sys/mount.h>
     92   1.1    simonb #include <sys/reboot.h>
     93  1.41      matt #include <sys/systm.h>
     94   1.1    simonb #include <sys/termios.h>
     95   1.1    simonb 
     96   1.1    simonb #include <uvm/uvm_extern.h>
     97   1.1    simonb 
     98   1.1    simonb #include <dev/cons.h>
     99   1.1    simonb 
    100  1.10     ragge #include "ksyms.h"
    101  1.10     ragge 
    102  1.30        ad #if NKSYMS || defined(DDB) || defined(MODULAR)
    103  1.41      matt #include <mips/db_machdep.h>
    104   1.1    simonb #include <ddb/db_extern.h>
    105   1.1    simonb #endif
    106   1.1    simonb 
    107   1.1    simonb #include <machine/yamon.h>
    108   1.1    simonb 
    109  1.40      matt #include <mips/locore.h>
    110  1.41      matt #include <mips/psl.h>
    111  1.40      matt 
    112   1.1    simonb #include <evbmips/malta/autoconf.h>
    113   1.1    simonb #include <evbmips/malta/maltareg.h>
    114   1.1    simonb #include <evbmips/malta/maltavar.h>
    115   1.1    simonb 
    116   1.1    simonb #include "com.h"
    117   1.1    simonb #if NCOM > 0
    118   1.1    simonb #include <dev/ic/comreg.h>
    119   1.1    simonb #include <dev/ic/comvar.h>
    120   1.1    simonb 
    121   1.1    simonb int	comcnrate = 38400;	/* XXX should be config option */
    122   1.1    simonb #endif /* NCOM > 0 */
    123   1.1    simonb 
    124   1.1    simonb 
    125  1.22     perry #define REGVAL(x)       *((volatile u_int32_t *)(MIPS_PHYS_TO_KSEG1((x))))
    126   1.1    simonb 
    127   1.1    simonb struct malta_config malta_configuration;
    128   1.1    simonb 
    129   1.5  gmcgarry /* For sysctl_hw. */
    130   1.6    simonb extern char cpu_model[];
    131   1.1    simonb 
    132   1.1    simonb /* Maps for VM objects. */
    133   1.1    simonb struct vm_map *phys_map = NULL;
    134   1.1    simonb 
    135   1.1    simonb int	physmem;		/* Total physical memory */
    136   1.1    simonb 
    137   1.1    simonb int	netboot;		/* Are we netbooting? */
    138   1.1    simonb 
    139   1.1    simonb yamon_env_var *yamon_envp;
    140   1.1    simonb 
    141   1.1    simonb phys_ram_seg_t mem_clusters[VM_PHYSSEG_MAX];
    142   1.1    simonb int mem_cluster_cnt;
    143   1.1    simonb 
    144   1.1    simonb void	configure(void);
    145   1.1    simonb void	mach_init(int, char **, yamon_env_var *, u_long);
    146   1.1    simonb 
    147   1.1    simonb /*
    148   1.1    simonb  * Do all the stuff that locore normally does before calling main().
    149   1.1    simonb  */
    150   1.1    simonb void
    151   1.1    simonb mach_init(int argc, char **argv, yamon_env_var *envp, u_long memsize)
    152   1.1    simonb {
    153   1.1    simonb 	struct malta_config *mcp = &malta_configuration;
    154  1.40      matt 	uint8_t * const brkres = (uint8_t *)MIPS_PHYS_TO_KSEG1(MALTA_BRKRES);
    155   1.1    simonb 	bus_space_handle_t sh;
    156  1.36     rmind 	void *kernend;
    157  1.37      matt 	int freqok;
    158   1.1    simonb 
    159   1.1    simonb 	extern char edata[], end[];
    160   1.1    simonb 
    161  1.37      matt 	CTASSERT((intptr_t)MIPS_PHYS_TO_KSEG1(MALTA_BRKRES) < 0);
    162  1.37      matt 
    163   1.1    simonb 	*brkres = 0;	/* Disable BREAK==reset on console */
    164   1.1    simonb 
    165   1.1    simonb 	/* Get the propaganda in early! */
    166   1.1    simonb 	led_display_str("NetBSD");
    167   1.1    simonb 
    168   1.1    simonb 	/*
    169   1.1    simonb 	 * Clear the BSS segment.
    170   1.1    simonb 	 */
    171  1.23  christos 	kernend = (void *)mips_round_page(end);
    172  1.25    simonb 	memset(edata, 0, (char *)kernend - edata);
    173   1.1    simonb 
    174   1.1    simonb 	/* save the yamon environment pointer */
    175   1.1    simonb 	yamon_envp = envp;
    176   1.1    simonb 
    177   1.1    simonb 	/* Use YAMON callbacks for early console I/O */
    178   1.1    simonb 	cn_tab = &yamon_promcd;
    179   1.1    simonb 
    180   1.2    simonb 	/*
    181  1.18       wiz 	 * Set up the exception vectors and CPU-specific function
    182   1.2    simonb 	 * vectors early on.  We need the wbflush() vector set up
    183   1.2    simonb 	 * before comcnattach() is called (or at least before the
    184   1.2    simonb 	 * first printf() after that is called).
    185   1.2    simonb 	 * Also clears the I+D caches.
    186   1.2    simonb 	 */
    187  1.40      matt 	mips_vector_init(NULL, false);
    188   1.2    simonb 
    189   1.4    simonb 	/* set the VM page size */
    190   1.1    simonb 	uvm_setpagesize();
    191   1.1    simonb 
    192   1.1    simonb 	physmem = btoc(memsize);
    193   1.1    simonb 
    194  1.16    simonb 	/*
    195  1.16    simonb 	 * Use YAMON's CPU frequency if available.
    196  1.16    simonb 	 */
    197  1.16    simonb 	freqok = yamon_setcpufreq(1);
    198  1.16    simonb 
    199   1.1    simonb 	gt_pci_init(&mcp->mc_pc, &mcp->mc_gt);
    200   1.1    simonb 	malta_bus_io_init(&mcp->mc_iot, mcp);
    201   1.1    simonb 	malta_bus_mem_init(&mcp->mc_memt, mcp);
    202   1.1    simonb 	malta_dma_init(mcp);
    203   1.1    simonb 
    204   1.3    simonb 	/*
    205  1.16    simonb 	 * Calibrate the timer if YAMON failed to tell us.
    206   1.3    simonb 	 */
    207  1.16    simonb 	if (!freqok) {
    208  1.16    simonb 		bus_space_map(&mcp->mc_iot, MALTA_RTCADR, 2, 0, &sh);
    209  1.16    simonb 		malta_cal_timer(&mcp->mc_iot, sh);
    210  1.16    simonb 		bus_space_unmap(&mcp->mc_iot, sh, 2);
    211  1.16    simonb 	}
    212   1.3    simonb 
    213   1.1    simonb #if NCOM > 0
    214   1.1    simonb 	/*
    215   1.1    simonb 	 * Delay to allow firmware putchars to complete.
    216   1.1    simonb 	 * FIFO depth * character time.
    217   1.1    simonb 	 * character time = (1000000 / (defaultrate / 10))
    218   1.1    simonb 	 */
    219   1.3    simonb 	delay(160000000 / comcnrate);
    220  1.11   thorpej 	if (comcnattach(&mcp->mc_iot, MALTA_UART0ADR, comcnrate,
    221  1.11   thorpej 	    COM_FREQ, COM_TYPE_NORMAL,
    222   1.1    simonb 	    (TTYDEF_CFLAG & ~(CSIZE | PARENB)) | CS8) != 0)
    223   1.1    simonb 		panic("malta: unable to initialize serial console");
    224   1.1    simonb #else
    225   1.1    simonb 	panic("malta: not configured to use serial console");
    226   1.1    simonb #endif /* NCOM > 0 */
    227   1.1    simonb 
    228   1.1    simonb 	mem_clusters[0].start = 0;
    229   1.1    simonb 	mem_clusters[0].size = ctob(physmem);
    230   1.1    simonb 	mem_cluster_cnt = 1;
    231   1.1    simonb 
    232   1.5  gmcgarry 	strcpy(cpu_model, "MIPS Malta Evaluation Board");
    233   1.5  gmcgarry 
    234   1.1    simonb 	/*
    235   1.1    simonb 	 * XXX: check argv[0] - do something if "gdb"???
    236   1.1    simonb 	 */
    237   1.1    simonb 
    238   1.1    simonb 	/*
    239   1.1    simonb 	 * Look at arguments passed to us and compute boothowto.
    240   1.1    simonb 	 */
    241   1.1    simonb 	boothowto = RB_AUTOBOOT;
    242  1.37      matt #ifndef _LP64
    243  1.37      matt 	for (int i = 1; i < argc; i++) {
    244  1.37      matt 		for (char *cp = argv[i]; *cp; cp++) {
    245  1.37      matt 			int howto;
    246   1.1    simonb 			/* Ignore superfluous '-', if there is one */
    247   1.1    simonb 			if (*cp == '-')
    248   1.1    simonb 				continue;
    249   1.1    simonb 
    250   1.1    simonb 			howto = 0;
    251   1.1    simonb 			BOOT_FLAG(*cp, howto);
    252   1.1    simonb 			if (! howto)
    253   1.1    simonb 				printf("bootflag '%c' not recognised\n", *cp);
    254   1.1    simonb 			else
    255   1.1    simonb 				boothowto |= howto;
    256   1.1    simonb 		}
    257   1.1    simonb 	}
    258  1.37      matt #endif
    259   1.1    simonb 
    260   1.1    simonb 	/*
    261   1.1    simonb 	 * Load the rest of the available pages into the VM system.
    262   1.1    simonb 	 */
    263  1.40      matt 	mips_page_physload(MIPS_KSEG0_START, (vaddr_t)kernend,
    264  1.40      matt 	    mem_clusters, mem_cluster_cnt, NULL, 0);
    265   1.1    simonb 
    266   1.1    simonb 	/*
    267   1.1    simonb 	 * Initialize error message buffer (at end of core).
    268   1.1    simonb 	 */
    269   1.1    simonb 	mips_init_msgbuf();
    270   1.1    simonb 
    271   1.1    simonb 	pmap_bootstrap();
    272   1.1    simonb 
    273   1.1    simonb 	/*
    274  1.36     rmind 	 * Allocate uarea page for lwp0 and set it.
    275   1.1    simonb 	 */
    276  1.37      matt 	mips_init_lwp0_uarea();
    277   1.1    simonb 
    278   1.1    simonb 	/*
    279   1.1    simonb 	 * Initialize debuggers, and break into them, if appropriate.
    280   1.1    simonb 	 */
    281  1.10     ragge #if defined(DDB)
    282   1.1    simonb 	if (boothowto & RB_KDB)
    283   1.1    simonb 		Debugger();
    284   1.1    simonb #endif
    285  1.40      matt 
    286  1.40      matt #ifdef MULTIPROCESSOR
    287  1.40      matt 	/*
    288  1.40      matt 	 * We can never be running on more than one processor but we can dream.
    289  1.40      matt 	 */
    290  1.40      matt 	mips_fixup_exceptions(mips_fixup_zero_relative);
    291  1.40      matt #endif
    292   1.1    simonb }
    293   1.1    simonb 
    294   1.1    simonb void
    295   1.1    simonb consinit(void)
    296   1.1    simonb {
    297   1.1    simonb 
    298   1.1    simonb 	/*
    299   1.1    simonb 	 * Everything related to console initialization is done
    300   1.1    simonb 	 * in mach_init().
    301   1.1    simonb 	 */
    302   1.1    simonb }
    303   1.1    simonb 
    304   1.1    simonb /*
    305   1.1    simonb  * Allocate memory for variable-sized tables,
    306   1.1    simonb  */
    307   1.1    simonb void
    308  1.34    cegger cpu_startup(void)
    309   1.1    simonb {
    310   1.1    simonb 	/*
    311  1.40      matt 	 * Do the common startup items.
    312   1.1    simonb 	 */
    313  1.40      matt 	cpu_startup_common();
    314   1.1    simonb 
    315   1.1    simonb 	/*
    316   1.1    simonb 	 * Virtual memory is bootstrapped -- notify the bus spaces
    317   1.1    simonb 	 * that memory allocation is now safe.
    318   1.1    simonb 	 */
    319   1.1    simonb 	malta_configuration.mc_mallocsafe = 1;
    320   1.1    simonb }
    321   1.1    simonb 
    322   1.1    simonb int	waittime = -1;
    323   1.1    simonb 
    324   1.1    simonb void
    325  1.33       dsl cpu_reboot(int howto, char *bootstr)
    326   1.1    simonb {
    327   1.1    simonb 
    328   1.1    simonb 	/* Take a snapshot before clobbering any registers. */
    329  1.40      matt 	savectx(curpcb);
    330   1.1    simonb 
    331   1.1    simonb 	if (cold) {
    332   1.1    simonb 		howto |= RB_HALT;
    333   1.1    simonb 		goto haltsys;
    334   1.1    simonb 	}
    335   1.1    simonb 
    336   1.1    simonb 	/* If "always halt" was specified as a boot flag, obey. */
    337   1.1    simonb 	if (boothowto & RB_HALT)
    338   1.1    simonb 		howto |= RB_HALT;
    339   1.1    simonb 
    340   1.1    simonb 	boothowto = howto;
    341   1.1    simonb 	if ((howto & RB_NOSYNC) == 0 && (waittime < 0)) {
    342   1.1    simonb 		waittime = 0;
    343   1.1    simonb 		vfs_shutdown();
    344   1.1    simonb 
    345   1.1    simonb 		/*
    346   1.1    simonb 		 * If we've been adjusting the clock, the todr
    347   1.1    simonb 		 * will be out of synch; adjust it now.
    348   1.1    simonb 		 */
    349   1.1    simonb 		resettodr();
    350   1.1    simonb 	}
    351   1.1    simonb 
    352   1.1    simonb 	splhigh();
    353   1.1    simonb 
    354   1.1    simonb 	if (howto & RB_DUMP)
    355   1.1    simonb 		dumpsys();
    356   1.1    simonb 
    357   1.1    simonb haltsys:
    358   1.1    simonb 	doshutdownhooks();
    359   1.1    simonb 
    360  1.29    dyoung 	pmf_system_shutdown(boothowto);
    361  1.29    dyoung 
    362   1.1    simonb 	if (howto & RB_HALT) {
    363   1.1    simonb 		printf("\n");
    364   1.1    simonb 		printf("The operating system has halted.\n");
    365   1.1    simonb 		printf("Please press any key to reboot.\n\n");
    366   1.1    simonb 		cnpollc(1);	/* For proper keyboard command handling */
    367   1.1    simonb 		cngetc();
    368   1.1    simonb 		cnpollc(0);
    369   1.1    simonb 	}
    370   1.1    simonb 
    371   1.1    simonb 	printf("%s\n\n", ((howto & RB_HALT) != 0) ? "halted." : "rebooting...");
    372   1.1    simonb 	yamon_exit(boothowto);
    373   1.1    simonb 	printf("Oops, back from yamon_exit()\n\nResetting...");
    374   1.1    simonb 
    375   1.1    simonb 	REGVAL(MALTA_SOFTRES) = MALTA_GORESET;
    376   1.1    simonb 
    377   1.1    simonb 	/*
    378   1.1    simonb 	 * Need a small delay here, otherwise we see the first few characters of
    379   1.1    simonb 	 * the warning below.
    380   1.1    simonb 	 */
    381   1.1    simonb 	delay(80000);
    382   1.1    simonb 
    383   1.1    simonb 	printf("WARNING: reset failed!\nSpinning...");
    384   1.1    simonb 
    385   1.1    simonb 	for (;;)
    386   1.1    simonb 		/* spin forever */ ;	/* XXX */
    387   1.1    simonb }
    388