Home | History | Annotate | Line # | Download | only in common
boot.c revision 1.3
      1  1.3  thorpej /*	$NetBSD: boot.c,v 1.3 2001/11/21 23:33:18 thorpej Exp $	*/
      2  1.1  thorpej 
      3  1.1  thorpej /*-
      4  1.1  thorpej  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5  1.1  thorpej  * All rights reserved.
      6  1.1  thorpej  *
      7  1.1  thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8  1.1  thorpej  * by Jonathan Stone, Michael Hitch and Simon Burge.
      9  1.1  thorpej  *
     10  1.1  thorpej  * Redistribution and use in source and binary forms, with or without
     11  1.1  thorpej  * modification, are permitted provided that the following conditions
     12  1.1  thorpej  * are met:
     13  1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     14  1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     15  1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     17  1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     18  1.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     19  1.1  thorpej  *    must display the following acknowledgement:
     20  1.1  thorpej  *        This product includes software developed by the NetBSD
     21  1.1  thorpej  *        Foundation, Inc. and its contributors.
     22  1.1  thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.1  thorpej  *    contributors may be used to endorse or promote products derived
     24  1.1  thorpej  *    from this software without specific prior written permission.
     25  1.1  thorpej  *
     26  1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.1  thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.1  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.1  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.1  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.1  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.1  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.1  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.1  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.1  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.1  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     37  1.1  thorpej  */
     38  1.1  thorpej 
     39  1.1  thorpej /*
     40  1.1  thorpej  * Copyright (c) 1992, 1993
     41  1.1  thorpej  *	The Regents of the University of California.  All rights reserved.
     42  1.1  thorpej  *
     43  1.1  thorpej  * This code is derived from software contributed to Berkeley by
     44  1.1  thorpej  * Ralph Campbell.
     45  1.1  thorpej  *
     46  1.1  thorpej  * Redistribution and use in source and binary forms, with or without
     47  1.1  thorpej  * modification, are permitted provided that the following conditions
     48  1.1  thorpej  * are met:
     49  1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     50  1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     51  1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     52  1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     53  1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     54  1.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     55  1.1  thorpej  *    must display the following acknowledgement:
     56  1.1  thorpej  *	This product includes software developed by the University of
     57  1.1  thorpej  *	California, Berkeley and its contributors.
     58  1.1  thorpej  * 4. Neither the name of the University nor the names of its contributors
     59  1.1  thorpej  *    may be used to endorse or promote products derived from this software
     60  1.1  thorpej  *    without specific prior written permission.
     61  1.1  thorpej  *
     62  1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     63  1.1  thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     64  1.1  thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     65  1.1  thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     66  1.1  thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     67  1.1  thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     68  1.1  thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     69  1.1  thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     70  1.1  thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     71  1.1  thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     72  1.1  thorpej  * SUCH DAMAGE.
     73  1.1  thorpej  *
     74  1.1  thorpej  *	@(#)boot.c	8.1 (Berkeley) 6/10/93
     75  1.1  thorpej  */
     76  1.1  thorpej 
     77  1.1  thorpej #include <lib/libsa/stand.h>
     78  1.1  thorpej #include <lib/libsa/loadfile.h>
     79  1.1  thorpej #include <lib/libkern/libkern.h>
     80  1.1  thorpej 
     81  1.1  thorpej #include <sys/param.h>
     82  1.1  thorpej #include <sys/exec.h>
     83  1.1  thorpej #include <sys/exec_elf.h>
     84  1.1  thorpej 
     85  1.1  thorpej #include <dev/arcbios/arcbios.h>
     86  1.1  thorpej 
     87  1.1  thorpej #include "common.h"
     88  1.1  thorpej #include "bootinfo.h"
     89  1.1  thorpej 
     90  1.1  thorpej /*
     91  1.1  thorpej  * We won't go overboard with gzip'd kernel names.  After all we can
     92  1.2    soren  * still boot a gzip'd kernel called "netbsd.sgimips" - it doesn't need
     93  1.1  thorpej  * the .gz suffix.
     94  1.1  thorpej  */
     95  1.1  thorpej char *kernelnames[] = {
     96  1.1  thorpej 	"netbsd.sgimips",
     97  1.1  thorpej 	"netbsd",	"netbsd.gz",
     98  1.1  thorpej 	"netbsd.bak",
     99  1.1  thorpej 	"netbsd.old",
    100  1.1  thorpej 	"onetbsd",
    101  1.1  thorpej 	"gennetbsd",
    102  1.1  thorpej #ifdef notyet
    103  1.1  thorpej 	"netbsd.el",
    104  1.1  thorpej #endif /*notyet*/
    105  1.1  thorpej 	NULL
    106  1.1  thorpej };
    107  1.1  thorpej 
    108  1.1  thorpej extern const struct arcbios_fv *ARCBIOS;
    109  1.1  thorpej 
    110  1.3  thorpej int main __P((int, char *[]));
    111  1.1  thorpej 
    112  1.1  thorpej #ifdef HEAP_VARIABLE
    113  1.1  thorpej void setheap(void *, void*);
    114  1.1  thorpej #endif
    115  1.1  thorpej 
    116  1.3  thorpej /* Storage must be static. */
    117  1.3  thorpej struct btinfo_symtab bi_syms;
    118  1.3  thorpej struct btinfo_bootpath bi_bpath;
    119  1.3  thorpej 
    120  1.1  thorpej /*
    121  1.1  thorpej  * This gets arguments from the first stage boot lader, calls PROM routines
    122  1.1  thorpej  * to open and load the program to boot, and then transfers execution to
    123  1.1  thorpej  * that new program.
    124  1.1  thorpej  *
    125  1.1  thorpej  * Argv[0] should be something like "rz(0,0,0)netbsd" on a DECstation 3100.
    126  1.1  thorpej  * Argv[0,1] should be something like "boot 5/rz0/netbsd" on a DECstation 5000.
    127  1.1  thorpej  * The argument "-a" means netbsd should do an automatic reboot.
    128  1.1  thorpej  */
    129  1.1  thorpej int
    130  1.3  thorpej main(argc, argv)
    131  1.1  thorpej 	int argc;
    132  1.1  thorpej 	char **argv;
    133  1.1  thorpej {
    134  1.1  thorpej 	char *name/*, **namep, *dev, *kernel*/;
    135  1.1  thorpej 	char /*bootname[PATH_MAX],*/ bootpath[PATH_MAX];
    136  1.3  thorpej 	void (*entry)(int, char *[], int, void *);
    137  1.1  thorpej 	u_long marks[MARK_MAX];
    138  1.1  thorpej 	struct arcbios_mem *mem;
    139  1.3  thorpej 	int win;
    140  1.1  thorpej 
    141  1.1  thorpej 	/* print a banner */
    142  1.1  thorpej 	printf("\n");
    143  1.3  thorpej 	printf("NetBSD/sgimips " NETBSD_VERS " Bootstrap, Revision %s\n",
    144  1.1  thorpej 	    bootprog_rev);
    145  1.1  thorpej 	printf("(%s, %s)\n", bootprog_maker, bootprog_date);
    146  1.1  thorpej 	printf("\n");
    147  1.1  thorpej 
    148  1.1  thorpej 	/* Initialize heap from free memory descriptors */
    149  1.1  thorpej 	mem = 0;
    150  1.1  thorpej 	do {
    151  1.1  thorpej 		mem = ARCBIOS->GetMemoryDescriptor(mem);
    152  1.1  thorpej 		if (mem != 0)
    153  1.1  thorpej 			printf("Mem block: type %d base 0x%x size 0x%x\n",
    154  1.1  thorpej 			    mem->Type, mem->BasePage * 4096, mem->PageCount * 4096);
    155  1.1  thorpej 	} while (mem != 0);
    156  1.1  thorpej #ifdef HEAP_VARIABLE
    157  1.1  thorpej 	setheap((void *)0x88200000, (void *)0x88300000);	/* XXXX */
    158  1.1  thorpej #endif
    159  1.1  thorpej 	printf("Local storage %x\n", (int)&mem);
    160  1.1  thorpej 	for (win = 0; win < argc; ++win)
    161  1.1  thorpej 		printf("argv[%d]: %s\n", win, argv[win]);
    162  1.1  thorpej 
    163  1.1  thorpej 	/* initialise bootinfo structure early */
    164  1.3  thorpej 	bi_init();
    165  1.1  thorpej 
    166  1.1  thorpej 	/*
    167  1.1  thorpej 	 * How to find partition and file to load?
    168  1.1  thorpej 	 * OSLoaderPartition=scsi(n)disk(n)rdisk(n)partition(n)
    169  1.1  thorpej 	 * OSLoadFilename=netbsd
    170  1.1  thorpej 	 * path=???
    171  1.1  thorpej 	 * argument passed to boot program
    172  1.1  thorpej 	 */
    173  1.1  thorpej 	bootpath[0] = 0;
    174  1.1  thorpej 	name = ARCBIOS->GetEnvironmentVariable("OSLoadPartition");
    175  1.1  thorpej 	if (name) {
    176  1.1  thorpej 		strcpy(bootpath, name);
    177  1.1  thorpej 		name = ARCBIOS->GetEnvironmentVariable("OSLoadFilename");
    178  1.1  thorpej 		if (name)
    179  1.1  thorpej 			strcat(bootpath, name);
    180  1.1  thorpej 		else
    181  1.1  thorpej 			strcat(bootpath, "netbsd");
    182  1.1  thorpej 	}
    183  1.1  thorpej 	if (strchr(argv[1], '=') == NULL) {
    184  1.1  thorpej 		strcpy(bootpath, argv[1]);
    185  1.1  thorpej 		if (strchr(argv[1], '(') == NULL) {
    186  1.3  thorpej 			strcpy(bootpath,
    187  1.3  thorpej 			    ARCBIOS->GetEnvironmentVariable("OSLoadPartition"));
    188  1.1  thorpej 			strcat(bootpath, argv[1]);
    189  1.1  thorpej 		}
    190  1.1  thorpej 	}
    191  1.1  thorpej 	printf("Boot: %s\n", bootpath);
    192  1.1  thorpej 
    193  1.1  thorpej 	memset(marks, 0, sizeof marks);
    194  1.1  thorpej #if 0
    195  1.1  thorpej 	if (name != NULL)
    196  1.1  thorpej 		win = (loadfile(name, marks, LOAD_KERNEL) == 0);
    197  1.1  thorpej 	else {
    198  1.1  thorpej 		win = 0;
    199  1.1  thorpej 		for (namep = kernelnames, win = 0; *namep != NULL && !win;
    200  1.1  thorpej 		    namep++) {
    201  1.1  thorpej 			kernel = *namep;
    202  1.1  thorpej 			strcpy(bootpath, dev);
    203  1.1  thorpej 			strcat(bootpath, kernel);
    204  1.1  thorpej 			printf("Loading: %s\n", bootpath);
    205  1.1  thorpej 			win = (loadfile(bootpath, marks, LOAD_ALL) != -1);
    206  1.1  thorpej 			if (win) {
    207  1.1  thorpej 				name = bootpath;
    208  1.1  thorpej 			}
    209  1.1  thorpej 		}
    210  1.1  thorpej 	}
    211  1.1  thorpej #else
    212  1.1  thorpej 	win = loadfile(bootpath, marks, LOAD_KERNEL) == 0;
    213  1.1  thorpej #endif
    214  1.1  thorpej 	if (!win)
    215  1.1  thorpej 		goto fail;
    216  1.1  thorpej 
    217  1.1  thorpej #if 0
    218  1.1  thorpej 	strncpy(bi_bpath.bootpath, kernel, BTINFO_BOOTPATH_LEN);
    219  1.1  thorpej 	bi_add(&bi_bpath, BTINFO_BOOTPATH, sizeof(bi_bpath));
    220  1.1  thorpej #endif
    221  1.1  thorpej 
    222  1.3  thorpej 	entry = (void *) marks[MARK_ENTRY];
    223  1.1  thorpej 	bi_syms.nsym = marks[MARK_NSYM];
    224  1.1  thorpej 	bi_syms.ssym = marks[MARK_SYM];
    225  1.1  thorpej 	bi_syms.esym = marks[MARK_END];
    226  1.3  thorpej 	bi_add(&bi_syms, BTINFO_SYMTAB);
    227  1.1  thorpej 
    228  1.3  thorpej 	printf("Starting at %p\n\n", entry);
    229  1.3  thorpej 	printf("nsym 0x%lx ssym 0x%lx esym 0x%lx\n", marks[MARK_NSYM],
    230  1.3  thorpej 	    marks[MARK_SYM], marks[MARK_END]);
    231  1.1  thorpej 	ARCBIOS->FlushAllCaches();
    232  1.3  thorpej 	(*entry)(argc, argv, BOOTINFO_MAGIC, bootinfo);
    233  1.3  thorpej 
    234  1.3  thorpej 	printf("Kernel returned!  Halting...\n");
    235  1.3  thorpej 	return (0);
    236  1.1  thorpej 
    237  1.3  thorpej  fail:
    238  1.1  thorpej 	(void)printf("Boot failed!  Halting...\n");
    239  1.1  thorpej 	return (0);
    240  1.1  thorpej }
    241