Home | History | Annotate | Line # | Download | only in boot
boot.c revision 1.4.12.5
      1  1.4.12.5     yamt /*	$NetBSD: boot.c,v 1.4.12.5 2008/03/24 09:38:38 yamt Exp $	*/
      2       1.1      cdi 
      3       1.1      cdi /*-
      4       1.1      cdi  * Copyright (c) 2003 The NetBSD Foundation, Inc.
      5       1.1      cdi  * All rights reserved.
      6       1.1      cdi  *
      7       1.1      cdi  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1      cdi  * by Jonathan Stone, Michael Hitch, Simon Burge and Wayne Knowles.
      9       1.1      cdi  *
     10       1.1      cdi  * Redistribution and use in source and binary forms, with or without
     11       1.1      cdi  * modification, are permitted provided that the following conditions
     12       1.1      cdi  * are met:
     13       1.1      cdi  * 1. Redistributions of source code must retain the above copyright
     14       1.1      cdi  *    notice, this list of conditions and the following disclaimer.
     15       1.1      cdi  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1      cdi  *    notice, this list of conditions and the following disclaimer in the
     17       1.1      cdi  *    documentation and/or other materials provided with the distribution.
     18       1.1      cdi  * 3. All advertising materials mentioning features or use of this software
     19       1.1      cdi  *    must display the following acknowledgement:
     20       1.1      cdi  *        This product includes software developed by the NetBSD
     21       1.1      cdi  *        Foundation, Inc. and its contributors.
     22       1.1      cdi  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.1      cdi  *    contributors may be used to endorse or promote products derived
     24       1.1      cdi  *    from this software without specific prior written permission.
     25       1.1      cdi  *
     26       1.1      cdi  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.1      cdi  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.1      cdi  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.1      cdi  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.1      cdi  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.1      cdi  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.1      cdi  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.1      cdi  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.1      cdi  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.1      cdi  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.1      cdi  * POSSIBILITY OF SUCH DAMAGE.
     37       1.1      cdi  */
     38       1.1      cdi 
     39       1.1      cdi /*
     40       1.1      cdi  * Copyright (c) 1992, 1993
     41       1.1      cdi  *	The Regents of the University of California.  All rights reserved.
     42       1.1      cdi  *
     43       1.1      cdi  * This code is derived from software contributed to Berkeley by
     44       1.1      cdi  * Ralph Campbell.
     45       1.1      cdi  *
     46       1.1      cdi  * Redistribution and use in source and binary forms, with or without
     47       1.1      cdi  * modification, are permitted provided that the following conditions
     48       1.1      cdi  * are met:
     49       1.1      cdi  * 1. Redistributions of source code must retain the above copyright
     50       1.1      cdi  *    notice, this list of conditions and the following disclaimer.
     51       1.1      cdi  * 2. Redistributions in binary form must reproduce the above copyright
     52       1.1      cdi  *    notice, this list of conditions and the following disclaimer in the
     53       1.1      cdi  *    documentation and/or other materials provided with the distribution.
     54       1.2      agc  * 3. Neither the name of the University nor the names of its contributors
     55       1.1      cdi  *    may be used to endorse or promote products derived from this software
     56       1.1      cdi  *    without specific prior written permission.
     57       1.1      cdi  *
     58       1.1      cdi  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     59       1.1      cdi  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     60       1.1      cdi  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     61       1.1      cdi  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     62       1.1      cdi  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     63       1.1      cdi  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     64       1.1      cdi  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     65       1.1      cdi  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     66       1.1      cdi  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     67       1.1      cdi  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     68       1.1      cdi  * SUCH DAMAGE.
     69       1.1      cdi  *
     70       1.1      cdi  *	@(#)boot.c	8.1 (Berkeley) 6/10/93
     71       1.1      cdi  */
     72       1.1      cdi 
     73       1.1      cdi #include <lib/libsa/stand.h>
     74       1.1      cdi #include <lib/libsa/loadfile.h>
     75  1.4.12.3     yamt #include <lib/libsa/dev_net.h>
     76       1.1      cdi #include <lib/libkern/libkern.h>
     77       1.1      cdi 
     78       1.1      cdi #include <sys/param.h>
     79       1.4  tsutsui #include <sys/boot_flag.h>
     80       1.1      cdi #include <sys/exec.h>
     81       1.1      cdi #include <sys/exec_elf.h>
     82       1.1      cdi 
     83  1.4.12.5     yamt #include <machine/cpu.h>
     84  1.4.12.5     yamt 
     85  1.4.12.4     yamt #include <cobalt/dev/gtreg.h>
     86  1.4.12.4     yamt 
     87       1.1      cdi #include "boot.h"
     88       1.1      cdi #include "cons.h"
     89       1.1      cdi #include "common.h"
     90       1.3      cdi #include "bootinfo.h"
     91       1.1      cdi 
     92       1.1      cdi char *kernelnames[] = {
     93       1.1      cdi 	"netbsd",
     94       1.1      cdi 	"netbsd.gz",
     95       1.1      cdi 	"onetbsd",
     96       1.1      cdi 	"onetbsd.gz",
     97       1.1      cdi 	"netbsd.bak",
     98       1.1      cdi 	"netbsd.bak.gz",
     99       1.1      cdi 	"netbsd.old",
    100       1.1      cdi 	"netbsd.old.gz",
    101       1.1      cdi 	"netbsd.cobalt",
    102       1.1      cdi 	"netbsd.cobalt.gz",
    103       1.1      cdi 	"netbsd.elf",
    104       1.1      cdi 	"netbsd.elf.gz",
    105       1.1      cdi 	NULL
    106       1.1      cdi };
    107       1.1      cdi 
    108  1.4.12.4     yamt u_int cobalt_id;
    109  1.4.12.4     yamt static const char * const cobalt_model[] =
    110  1.4.12.4     yamt {
    111  1.4.12.4     yamt 	[0]                  = "Unknown Cobalt",
    112  1.4.12.4     yamt 	[COBALT_ID_QUBE2700] = "Cobalt Qube 2700",
    113  1.4.12.4     yamt 	[COBALT_ID_RAQ]      = "Cobalt RaQ",
    114  1.4.12.4     yamt 	[COBALT_ID_QUBE2]    = "Cobalt Qube 2",
    115  1.4.12.4     yamt 	[COBALT_ID_RAQ2]     = "Cobalt RaQ 2"
    116  1.4.12.4     yamt };
    117  1.4.12.4     yamt #define COBALT_MODELS	__arraycount(cobalt_model)
    118  1.4.12.4     yamt 
    119       1.3      cdi extern u_long end;		/* Boot loader code end address */
    120       1.3      cdi void start(void);
    121       1.3      cdi 
    122       1.1      cdi static char *bootstring;
    123       1.1      cdi 
    124  1.4.12.3     yamt static int patch_bootstring(char *bootspec);
    125  1.4.12.2     yamt static int get_bsdbootname(char **, char **, int *);
    126       1.4  tsutsui static int parse_bootname(char *, int, char **, char **);
    127  1.4.12.3     yamt static void prominit(unsigned int memsize);
    128  1.4.12.3     yamt static void print_banner(unsigned int memsize);
    129  1.4.12.4     yamt static u_int read_board_id(void);
    130       1.1      cdi 
    131  1.4.12.3     yamt void cpu_reboot(void);
    132       1.3      cdi 
    133       1.1      cdi int main(unsigned int memsize);
    134       1.1      cdi 
    135       1.1      cdi /*
    136       1.1      cdi  * Perform CPU reboot.
    137       1.1      cdi  */
    138  1.4.12.3     yamt void
    139  1.4.12.2     yamt cpu_reboot(void)
    140       1.1      cdi {
    141  1.4.12.3     yamt 
    142       1.1      cdi 	printf("rebooting...\n\n");
    143       1.1      cdi 
    144  1.4.12.2     yamt 	*(volatile uint8_t *)MIPS_PHYS_TO_KSEG1(LED_ADDR) = LED_RESET;
    145       1.1      cdi 	printf("WARNING: reboot failed!\n");
    146       1.1      cdi 
    147  1.4.12.2     yamt 	for (;;)
    148  1.4.12.2     yamt 		;
    149       1.1      cdi }
    150       1.1      cdi 
    151       1.1      cdi /*
    152       1.1      cdi  * Substitute root value with NetBSD root partition name.
    153       1.1      cdi  */
    154       1.1      cdi int
    155  1.4.12.2     yamt patch_bootstring(char *bootspec)
    156       1.1      cdi {
    157       1.1      cdi 	char *sp = bootstring;
    158  1.4.12.2     yamt 	uint8_t unit, part;
    159  1.4.12.3     yamt 	int dev;
    160       1.1      cdi 	char *file;
    161       1.1      cdi 
    162       1.1      cdi 	DPRINTF(("patch_bootstring: %s\n", bootspec));
    163       1.1      cdi 
    164       1.1      cdi 	/* get boot parameters */
    165       1.1      cdi 	if (devparse(bootspec, &dev, &unit, &part, (const char **)&file) != 0)
    166       1.1      cdi 		unit = part = 0;
    167       1.1      cdi 
    168  1.4.12.3     yamt 	DPRINTF(("patch_bootstring: unit = %d, part = %d\n", unit, part));
    169       1.1      cdi 
    170       1.1      cdi 	/* take out the 'root=xxx' parameter */
    171  1.4.12.2     yamt 	if ((sp = strstr(bootstring, "root=")) != NULL) {
    172       1.1      cdi 		const char *end;
    173       1.1      cdi 
    174       1.1      cdi 		end = strchr(sp, ' ');
    175       1.1      cdi 
    176       1.1      cdi 		/* strip off leading spaces */
    177       1.1      cdi 		for (--sp; (sp > bootstring) && (*sp == ' '); --sp)
    178       1.1      cdi 			;
    179       1.1      cdi 
    180       1.1      cdi 		if (end != NULL)
    181       1.1      cdi 			strcpy(++sp, end);
    182       1.1      cdi 		else
    183       1.1      cdi 			*++sp = '\0';
    184       1.1      cdi 	}
    185       1.1      cdi 
    186       1.1      cdi 	DPRINTF(("patch_bootstring: [%s]\n", bootstring));
    187       1.1      cdi 
    188       1.1      cdi #define DEVNAMESIZE	(MAXDEVNAME + sizeof(" root=/dev/hd") + sizeof("0a"))
    189  1.4.12.3     yamt 	if (strcmp(devsw[dev].dv_name, "wd") == 0 &&
    190  1.4.12.3     yamt 	    strlen(bootstring) <= (511 - DEVNAMESIZE)) {
    191       1.1      cdi 		int len;
    192       1.1      cdi 
    193  1.4.12.3     yamt 		/* omit "nfsroot=" arg on wd boot */
    194  1.4.12.3     yamt 		if ((sp = strstr(bootstring, "nfsroot=")) != NULL) {
    195  1.4.12.3     yamt 			const char *end;
    196  1.4.12.3     yamt 
    197  1.4.12.3     yamt 			end = strchr(sp, ' ');
    198  1.4.12.3     yamt 
    199  1.4.12.3     yamt 			/* strip off leading spaces */
    200  1.4.12.3     yamt 			for (--sp; (sp > bootstring) && (*sp == ' '); --sp)
    201  1.4.12.3     yamt 				;
    202  1.4.12.3     yamt 
    203  1.4.12.3     yamt 			if (end != NULL)
    204  1.4.12.3     yamt 				strcpy(++sp, end);
    205  1.4.12.3     yamt 			else
    206  1.4.12.3     yamt 				*++sp = '\0';
    207  1.4.12.3     yamt 		}
    208  1.4.12.3     yamt 
    209  1.4.12.3     yamt 		/* bsd notation -> linux notation (wd0a -> hda1) */
    210       1.1      cdi 		strcat(bootstring, " root=/dev/hd");
    211       1.1      cdi 
    212       1.1      cdi 		len = strlen(bootstring);
    213       1.1      cdi 		bootstring[len++] = unit + 'a';
    214       1.1      cdi 		bootstring[len++] = part + '1';
    215       1.1      cdi 		bootstring[len++] = '\0';
    216       1.1      cdi 	}
    217       1.1      cdi 
    218       1.1      cdi 	DPRINTF(("patch_bootstring: -> %s\n", bootstring));
    219  1.4.12.2     yamt 	return 0;
    220       1.1      cdi }
    221       1.1      cdi 
    222       1.1      cdi /*
    223       1.1      cdi  * Extract NetBSD boot specification
    224       1.1      cdi  */
    225       1.4  tsutsui static int
    226  1.4.12.2     yamt get_bsdbootname(char **dev, char **kname, int *howtop)
    227       1.1      cdi {
    228  1.4.12.3     yamt 	int len;
    229  1.4.12.2     yamt 	int bootunit, bootpart;
    230       1.4  tsutsui 	char *bootstr_dev, *bootstr_kname;
    231       1.4  tsutsui 	char *prompt_dev, *prompt_kname;
    232       1.4  tsutsui 	char *ptr, *spec;
    233       1.4  tsutsui 	char c, namebuf[PATH_MAX];
    234  1.4.12.2     yamt 	static char bootdev[] = "wd0a";
    235  1.4.12.3     yamt 	static char nfsbootdev[] = "nfs";
    236       1.4  tsutsui 
    237       1.4  tsutsui 	bootstr_dev = prompt_dev = NULL;
    238       1.4  tsutsui 	bootstr_kname = prompt_kname = NULL;
    239       1.4  tsutsui 
    240  1.4.12.2     yamt 	/* first, get root device specified by the firmware */
    241  1.4.12.2     yamt 	spec = bootstring;
    242  1.4.12.3     yamt 
    243  1.4.12.2     yamt 	/* assume the last one is valid */
    244  1.4.12.2     yamt 	while ((spec = strstr(spec, "root=")) != NULL) {
    245  1.4.12.2     yamt 		spec += 5;	/* skip 'root=' */
    246  1.4.12.2     yamt 		ptr = strchr(spec, ' ');
    247  1.4.12.2     yamt 		len = (ptr == NULL) ? strlen(spec) : ptr - spec;
    248  1.4.12.2     yamt 		/* decode unit and part from "/dev/hd[ab][1-4]" strings */
    249  1.4.12.2     yamt 		if (len == 9 && memcmp("/dev/hd", spec, 7) == 0) {
    250  1.4.12.2     yamt 			bootunit = spec[7] - 'a';
    251  1.4.12.2     yamt 			bootpart = spec[8] - '1';
    252  1.4.12.2     yamt 			if (bootunit >= 0 && bootunit < 2 &&
    253  1.4.12.2     yamt 			    bootpart >= 0 && bootpart < 4) {
    254  1.4.12.2     yamt 				bootdev[sizeof(bootdev) - 3] = '0' + bootunit;
    255  1.4.12.2     yamt #if 0				/* bootpart is fdisk partition of Linux root */
    256  1.4.12.2     yamt 				bootdev[sizeof(bootdev) - 2] = 'a' + bootpart;
    257  1.4.12.2     yamt #endif
    258  1.4.12.2     yamt 				bootstr_dev = bootdev;
    259  1.4.12.2     yamt 			}
    260  1.4.12.2     yamt 		}
    261  1.4.12.2     yamt 		spec += len;
    262  1.4.12.2     yamt 	}
    263  1.4.12.2     yamt 
    264  1.4.12.2     yamt 	/* second, get bootname from bootstrings */
    265       1.4  tsutsui 	if ((spec = strstr(bootstring, "nbsd=")) != NULL) {
    266       1.4  tsutsui 		ptr = strchr(spec, ' ');
    267       1.1      cdi 		spec += 5; 	/* skip 'nbsd=' */
    268       1.1      cdi 		len = (ptr == NULL) ? strlen(spec) : ptr - spec;
    269       1.4  tsutsui 		if (len > 0) {
    270       1.4  tsutsui 			if (parse_bootname(spec, len,
    271       1.4  tsutsui 			    &bootstr_dev, &bootstr_kname))
    272       1.4  tsutsui 				return 1;
    273       1.4  tsutsui 		}
    274       1.4  tsutsui 	}
    275       1.1      cdi 
    276  1.4.12.3     yamt 	/* third, check if netboot */
    277  1.4.12.3     yamt 	if (strstr(bootstring, "nfsroot=") != NULL) {
    278  1.4.12.3     yamt 		bootstr_dev = nfsbootdev;
    279  1.4.12.3     yamt 	}
    280  1.4.12.3     yamt 
    281       1.4  tsutsui 	DPRINTF(("bootstr_dev = %s, bootstr_kname = %s\n",
    282       1.4  tsutsui 	    bootstr_dev ? bootstr_dev : "<NULL>",
    283       1.4  tsutsui 	    bootstr_kname ? bootstr_kname : "<NULL>"));
    284       1.4  tsutsui 
    285       1.4  tsutsui 	spec = NULL;
    286       1.4  tsutsui 	len = 0;
    287       1.4  tsutsui 
    288       1.4  tsutsui 	memset(namebuf, 0, sizeof namebuf);
    289       1.4  tsutsui 	printf("Boot [%s:%s]: ",
    290       1.4  tsutsui 	    bootstr_dev ? bootstr_dev : DEFBOOTDEV,
    291       1.4  tsutsui 	    bootstr_kname ? bootstr_kname : DEFKERNELNAME);
    292       1.4  tsutsui 
    293       1.4  tsutsui 	if (tgets(namebuf) == -1)
    294       1.4  tsutsui 		printf("\n");
    295       1.4  tsutsui 
    296       1.4  tsutsui 	ptr = namebuf;
    297       1.4  tsutsui 	while ((c = *ptr) != '\0') {
    298       1.4  tsutsui 		while (c == ' ')
    299       1.4  tsutsui 			c = *++ptr;
    300       1.4  tsutsui 		if (c == '\0')
    301       1.4  tsutsui 			break;
    302       1.4  tsutsui 		if (c == '-') {
    303       1.4  tsutsui 			while ((c = *++ptr) && c != ' ')
    304  1.4.12.2     yamt 				BOOT_FLAG(c, *howtop);
    305       1.4  tsutsui 		} else {
    306       1.4  tsutsui 			spec = ptr;
    307       1.4  tsutsui 			while ((c = *++ptr) && c != ' ')
    308       1.4  tsutsui 				;
    309       1.4  tsutsui 			if (c)
    310       1.4  tsutsui 				*ptr++ = '\0';
    311       1.4  tsutsui 			len = strlen(spec);
    312       1.1      cdi 		}
    313       1.1      cdi 	}
    314       1.1      cdi 
    315       1.4  tsutsui 	if (len > 0) {
    316       1.4  tsutsui 		if (parse_bootname(spec, len, &prompt_dev, &prompt_kname))
    317       1.4  tsutsui 			return 1;
    318       1.4  tsutsui 	}
    319       1.4  tsutsui 
    320       1.4  tsutsui 	DPRINTF(("prompt_dev = %s, prompt_kname = %s\n",
    321       1.4  tsutsui 	    prompt_dev ? prompt_dev : "<NULL>",
    322       1.4  tsutsui 	    prompt_kname ? prompt_kname : "<NULL>"));
    323       1.4  tsutsui 
    324       1.4  tsutsui 	if (prompt_dev)
    325       1.4  tsutsui 		*dev = prompt_dev;
    326       1.4  tsutsui 	else
    327       1.4  tsutsui 		*dev = bootstr_dev;
    328       1.4  tsutsui 
    329       1.4  tsutsui 	if (prompt_kname)
    330       1.4  tsutsui 		*kname = prompt_kname;
    331       1.4  tsutsui 	else
    332       1.4  tsutsui 		*kname = bootstr_kname;
    333       1.4  tsutsui 
    334       1.4  tsutsui 	DPRINTF(("dev = %s, kname = %s\n",
    335       1.4  tsutsui 	    *dev ? *dev : "<NULL>",
    336       1.4  tsutsui 	    *kname ? *kname : "<NULL>"));
    337       1.4  tsutsui 
    338       1.4  tsutsui 	return 0;
    339       1.4  tsutsui }
    340       1.4  tsutsui 
    341       1.4  tsutsui static int
    342  1.4.12.2     yamt parse_bootname(char *spec, int len, char **dev, char **kname)
    343       1.4  tsutsui {
    344       1.4  tsutsui 	char *bootname, *ptr;
    345       1.4  tsutsui 
    346       1.4  tsutsui 	bootname = alloc(len + 1);
    347       1.4  tsutsui 	if (bootname == NULL)
    348       1.4  tsutsui 		return 1;
    349       1.4  tsutsui 	memcpy(bootname, spec, len);
    350       1.4  tsutsui 	bootname[len] = '\0';
    351       1.4  tsutsui 
    352       1.4  tsutsui 	if ((ptr = memchr(bootname, ':', len)) != NULL) {
    353       1.4  tsutsui 		/* "wdXX:kernel" */
    354       1.4  tsutsui 		*ptr = '\0';
    355       1.4  tsutsui 		*dev = bootname;
    356       1.4  tsutsui 		if (*++ptr)
    357       1.4  tsutsui 			*kname = ptr;
    358       1.4  tsutsui 	} else
    359       1.4  tsutsui 		/* "kernel" */
    360       1.4  tsutsui 		*kname = bootname;
    361       1.4  tsutsui 	return 0;
    362       1.1      cdi }
    363       1.1      cdi 
    364       1.1      cdi /*
    365       1.1      cdi  * Get the bootstring from PROM.
    366       1.1      cdi  */
    367  1.4.12.3     yamt void
    368  1.4.12.2     yamt prominit(unsigned int memsize)
    369       1.1      cdi {
    370  1.4.12.2     yamt 
    371       1.1      cdi 	bootstring = (char *)(memsize - 512);
    372       1.1      cdi 	bootstring[511] = '\0';
    373       1.1      cdi }
    374       1.1      cdi 
    375       1.1      cdi /*
    376       1.1      cdi  * Print boot message.
    377       1.1      cdi  */
    378  1.4.12.3     yamt void
    379  1.4.12.2     yamt print_banner(unsigned int memsize)
    380       1.1      cdi {
    381  1.4.12.2     yamt 
    382       1.1      cdi 	printf("\n");
    383       1.1      cdi 	printf(">> %s " NETBSD_VERS " Bootloader, Revision %s [@%p]\n",
    384       1.3      cdi 			bootprog_name, bootprog_rev, (void*)&start);
    385       1.1      cdi 	printf(">> (%s, %s)\n", bootprog_maker, bootprog_date);
    386  1.4.12.4     yamt 	printf(">> Model:\t\t%s\n", cobalt_model[cobalt_id]);
    387       1.1      cdi 	printf(">> Memory:\t\t%u k\n", (memsize - MIPS_KSEG0_START) / 1024);
    388       1.1      cdi 	printf(">> PROM boot string:\t%s\n", bootstring);
    389       1.1      cdi }
    390       1.1      cdi 
    391  1.4.12.4     yamt u_int
    392  1.4.12.4     yamt read_board_id(void)
    393  1.4.12.4     yamt {
    394  1.4.12.4     yamt 	uint32_t tag, reg;
    395  1.4.12.4     yamt 
    396  1.4.12.4     yamt #define PCIB_PCI_BUS		0
    397  1.4.12.4     yamt #define PCIB_PCI_DEV		9
    398  1.4.12.4     yamt #define PCIB_PCI_FUNC		0
    399  1.4.12.4     yamt #define PCIB_BOARD_ID_REG	0x94
    400  1.4.12.4     yamt #define COBALT_BOARD_ID(reg)	((reg & 0x000000f0) >> 4)
    401  1.4.12.4     yamt 
    402  1.4.12.4     yamt 	tag = (PCIB_PCI_BUS << 16) | (PCIB_PCI_DEV << 11) |
    403  1.4.12.4     yamt 	    (PCIB_PCI_FUNC << 8);
    404  1.4.12.4     yamt 	reg = pcicfgread(tag, PCIB_BOARD_ID_REG);
    405  1.4.12.4     yamt 
    406  1.4.12.4     yamt 	return COBALT_BOARD_ID(reg);
    407  1.4.12.4     yamt }
    408  1.4.12.4     yamt 
    409       1.1      cdi /*
    410       1.1      cdi  * Entry point.
    411       1.1      cdi  * Parse PROM boot string, load the kernel and jump into it
    412       1.1      cdi  */
    413       1.1      cdi int
    414  1.4.12.2     yamt main(unsigned int memsize)
    415       1.1      cdi {
    416       1.4  tsutsui 	char **namep, *dev, *kernel, *bi_addr;
    417       1.1      cdi 	char bootpath[PATH_MAX];
    418       1.1      cdi 	int win;
    419       1.1      cdi 	u_long marks[MARK_MAX];
    420  1.4.12.2     yamt 	void (*entry)(unsigned int, u_int, char *);
    421       1.3      cdi 
    422       1.3      cdi 	struct btinfo_flags bi_flags;
    423       1.3      cdi 	struct btinfo_symtab bi_syms;
    424       1.3      cdi 	struct btinfo_bootpath bi_bpath;
    425  1.4.12.2     yamt 	struct btinfo_howto bi_howto;
    426  1.4.12.2     yamt 	int addr, speed, howto;
    427       1.1      cdi 
    428  1.4.12.3     yamt 	try_bootp = 1;
    429  1.4.12.3     yamt 
    430       1.3      cdi 	/* Initialize boot info early */
    431  1.4.12.4     yamt 	dev = NULL;
    432  1.4.12.4     yamt 	kernel = NULL;
    433  1.4.12.2     yamt 	howto = 0x0;
    434       1.3      cdi 	bi_flags.bi_flags = 0x0;
    435       1.3      cdi 	bi_addr = bi_init();
    436       1.3      cdi 
    437  1.4.12.4     yamt 	cobalt_id = read_board_id();
    438       1.1      cdi 	prominit(memsize);
    439       1.3      cdi 	if (cninit(&addr, &speed) != NULL)
    440       1.3      cdi 		bi_flags.bi_flags |= BI_SERIAL_CONSOLE;
    441       1.1      cdi 
    442       1.1      cdi 	print_banner(memsize);
    443       1.1      cdi 
    444       1.1      cdi 	memset(marks, 0, sizeof marks);
    445  1.4.12.2     yamt 	get_bsdbootname(&dev, &kernel, &howto);
    446       1.1      cdi 
    447       1.1      cdi 	if (kernel != NULL) {
    448       1.1      cdi 		DPRINTF(("kernel: %s\n", kernel));
    449       1.4  tsutsui 		kernelnames[0] = kernel;
    450       1.4  tsutsui 		kernelnames[1] = NULL;
    451       1.1      cdi 	} else {
    452       1.1      cdi 		DPRINTF(("kernel: NULL\n"));
    453       1.4  tsutsui 	}
    454       1.4  tsutsui 
    455       1.4  tsutsui 	win = 0;
    456       1.4  tsutsui 	DPRINTF(("Kernel names: %p\n", kernelnames));
    457       1.4  tsutsui 	for (namep = kernelnames, win = 0; (*namep != NULL) && !win; namep++) {
    458       1.4  tsutsui 		kernel = *namep;
    459       1.4  tsutsui 
    460       1.4  tsutsui 		bootpath[0] = '\0';
    461       1.4  tsutsui 
    462       1.4  tsutsui 		strcpy(bootpath, dev ? dev : DEFBOOTDEV);
    463       1.4  tsutsui 		strcat(bootpath, ":");
    464       1.4  tsutsui 		strcat(bootpath, kernel);
    465       1.4  tsutsui 
    466  1.4.12.2     yamt 		printf("Loading: %s", bootpath);
    467  1.4.12.2     yamt 		if (howto)
    468  1.4.12.2     yamt 			printf(" (howto 0x%x)", howto);
    469  1.4.12.2     yamt 		printf("\n");
    470       1.4  tsutsui 		patch_bootstring(bootpath);
    471       1.4  tsutsui 		win = (loadfile(bootpath, marks, LOAD_ALL) != -1);
    472       1.1      cdi 	}
    473       1.1      cdi 
    474       1.1      cdi 	if (win) {
    475       1.3      cdi 		strncpy(bi_bpath.bootpath, kernel, BTINFO_BOOTPATH_LEN);
    476       1.3      cdi 		bi_add(&bi_bpath, BTINFO_BOOTPATH, sizeof(bi_bpath));
    477       1.3      cdi 
    478  1.4.12.2     yamt 		entry = (void *)marks[MARK_ENTRY];
    479       1.3      cdi 		bi_syms.nsym = marks[MARK_NSYM];
    480       1.3      cdi 		bi_syms.ssym = marks[MARK_SYM];
    481       1.3      cdi 		bi_syms.esym = marks[MARK_END];
    482       1.3      cdi 		bi_add(&bi_syms, BTINFO_SYMTAB, sizeof(bi_syms));
    483       1.3      cdi 
    484       1.3      cdi 		bi_add(&bi_flags, BTINFO_FLAGS, sizeof(bi_flags));
    485       1.3      cdi 
    486  1.4.12.2     yamt 		bi_howto.bi_howto = howto;
    487  1.4.12.2     yamt 		bi_add(&bi_howto, BTINFO_HOWTO, sizeof(bi_howto));
    488  1.4.12.2     yamt 
    489  1.4.12.2     yamt 		entry = (void *)marks[MARK_ENTRY];
    490       1.1      cdi 
    491       1.3      cdi 		DPRINTF(("Bootinfo @ 0x%x\n", bi_addr));
    492       1.1      cdi 		printf("Starting at 0x%x\n\n", (u_int)entry);
    493       1.3      cdi 		(*entry)(memsize, BOOTINFO_MAGIC, bi_addr);
    494       1.1      cdi 	}
    495       1.1      cdi 
    496       1.1      cdi 	(void)printf("Boot failed! Rebooting...\n");
    497  1.4.12.2     yamt 	return 0;
    498       1.1      cdi }
    499