Home | History | Annotate | Line # | Download | only in altboot
main.c revision 1.14.6.3
      1  1.14.6.3      yamt /* $NetBSD: main.c,v 1.14.6.3 2012/05/23 10:07:48 yamt Exp $ */
      2       1.1  nisimura 
      3       1.1  nisimura /*-
      4       1.1  nisimura  * Copyright (c) 2007 The NetBSD Foundation, Inc.
      5       1.1  nisimura  * All rights reserved.
      6       1.1  nisimura  *
      7       1.1  nisimura  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1  nisimura  * by Tohru Nishimura.
      9       1.1  nisimura  *
     10       1.1  nisimura  * Redistribution and use in source and binary forms, with or without
     11       1.1  nisimura  * modification, are permitted provided that the following conditions
     12       1.1  nisimura  * are met:
     13       1.1  nisimura  * 1. Redistributions of source code must retain the above copyright
     14       1.1  nisimura  *    notice, this list of conditions and the following disclaimer.
     15       1.1  nisimura  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1  nisimura  *    notice, this list of conditions and the following disclaimer in the
     17       1.1  nisimura  *    documentation and/or other materials provided with the distribution.
     18       1.1  nisimura  *
     19       1.1  nisimura  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20       1.1  nisimura  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21       1.1  nisimura  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22       1.1  nisimura  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23       1.1  nisimura  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24       1.1  nisimura  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25       1.1  nisimura  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26       1.1  nisimura  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27       1.1  nisimura  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28       1.1  nisimura  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29       1.1  nisimura  * POSSIBILITY OF SUCH DAMAGE.
     30       1.1  nisimura  */
     31       1.1  nisimura 
     32       1.1  nisimura #include <sys/param.h>
     33       1.1  nisimura #include <sys/reboot.h>
     34       1.1  nisimura 
     35       1.1  nisimura #include <lib/libsa/stand.h>
     36       1.1  nisimura #include <lib/libsa/loadfile.h>
     37       1.1  nisimura #include <lib/libkern/libkern.h>
     38       1.1  nisimura 
     39       1.1  nisimura #include <machine/bootinfo.h>
     40       1.1  nisimura 
     41       1.1  nisimura #include "globals.h"
     42       1.1  nisimura 
     43       1.1  nisimura static const struct bootarg {
     44       1.1  nisimura 	const char *name;
     45       1.1  nisimura 	int value;
     46       1.1  nisimura } bootargs[] = {
     47       1.1  nisimura 	{ "multi",	RB_AUTOBOOT },
     48       1.1  nisimura 	{ "auto",	RB_AUTOBOOT },
     49       1.1  nisimura 	{ "ask",	RB_ASKNAME },
     50       1.1  nisimura 	{ "single",	RB_SINGLE },
     51       1.1  nisimura 	{ "ddb",	RB_KDB },
     52       1.1  nisimura 	{ "userconf",	RB_USERCONF },
     53       1.1  nisimura 	{ "norm",	AB_NORMAL },
     54       1.1  nisimura 	{ "quiet",	AB_QUIET },
     55       1.1  nisimura 	{ "verb",	AB_VERBOSE },
     56       1.1  nisimura 	{ "silent",	AB_SILENT },
     57      1.12       phx 	{ "debug",	AB_DEBUG },
     58      1.12       phx 	{ "altboot",	-1 }
     59       1.1  nisimura };
     60       1.1  nisimura 
     61  1.14.6.2      yamt /* default PATA drive configuration is "10": single master on first channel */
     62  1.14.6.2      yamt static char *drive_config = "10";
     63  1.14.6.2      yamt 
     64       1.1  nisimura void *bootinfo; /* low memory reserved to pass bootinfo structures */
     65       1.1  nisimura int bi_size;	/* BOOTINFO_MAXSIZE */
     66       1.1  nisimura char *bi_next;
     67       1.1  nisimura 
     68       1.1  nisimura void bi_init(void *);
     69       1.1  nisimura void bi_add(void *, int, int);
     70       1.1  nisimura 
     71       1.1  nisimura struct btinfo_memory bi_mem;
     72       1.1  nisimura struct btinfo_console bi_cons;
     73       1.1  nisimura struct btinfo_clock bi_clk;
     74       1.1  nisimura struct btinfo_prodfamily bi_fam;
     75       1.1  nisimura struct btinfo_bootpath bi_path;
     76       1.1  nisimura struct btinfo_rootdevice bi_rdev;
     77       1.1  nisimura struct btinfo_net bi_net;
     78       1.1  nisimura struct btinfo_modulelist *btinfo_modulelist;
     79       1.1  nisimura size_t btinfo_modulelist_size;
     80       1.1  nisimura 
     81       1.1  nisimura struct boot_module {
     82       1.1  nisimura 	char *bm_kmod;
     83       1.1  nisimura 	ssize_t bm_len;
     84       1.1  nisimura 	struct boot_module *bm_next;
     85       1.1  nisimura };
     86       1.1  nisimura struct boot_module *boot_modules;
     87       1.1  nisimura char module_base[80];
     88       1.1  nisimura uint32_t kmodloadp;
     89       1.1  nisimura int modules_enabled = 0;
     90       1.1  nisimura 
     91       1.1  nisimura void module_add(char *);
     92       1.1  nisimura void module_load(char *);
     93       1.1  nisimura int module_open(struct boot_module *);
     94       1.1  nisimura 
     95       1.7       phx void main(int, char **, char *, char *);
     96      1.12       phx 
     97       1.4  nisimura extern char bootprog_name[], bootprog_rev[];
     98      1.12       phx extern char newaltboot[], newaltboot_end[];
     99       1.1  nisimura 
    100       1.6  nisimura struct pcidev lata[2];
    101  1.14.6.2      yamt struct pcidev lnif[2];
    102       1.6  nisimura struct pcidev lusb[3];
    103       1.6  nisimura int nata, nnif, nusb;
    104       1.6  nisimura 
    105       1.1  nisimura int brdtype;
    106       1.1  nisimura uint32_t busclock, cpuclock;
    107       1.1  nisimura 
    108       1.1  nisimura static int check_bootname(char *);
    109      1.11       phx static int input_cmdline(char **, int);
    110       1.7       phx static int parse_cmdline(char **, int, char *, char *);
    111       1.7       phx static int is_space(char);
    112  1.14.6.1      yamt #ifdef DEBUG
    113  1.14.6.1      yamt static void sat_test(void);
    114  1.14.6.1      yamt #endif
    115       1.7       phx 
    116      1.12       phx #define	BNAME_DEFAULT "wd0:"
    117       1.7       phx #define MAX_ARGS 10
    118       1.1  nisimura 
    119       1.1  nisimura void
    120       1.7       phx main(int argc, char *argv[], char *bootargs_start, char *bootargs_end)
    121       1.1  nisimura {
    122       1.1  nisimura 	unsigned long marks[MARK_MAX];
    123  1.14.6.3      yamt 	struct brdprop *brdprop;
    124       1.7       phx 	char *new_argv[MAX_ARGS];
    125       1.1  nisimura 	char *bname;
    126  1.14.6.3      yamt 	ssize_t len;
    127  1.14.6.3      yamt 	int err, fd, howto, i, n;
    128       1.1  nisimura 
    129  1.14.6.3      yamt 	printf("\n>> %s altboot, revision %s\n", bootprog_name, bootprog_rev);
    130       1.1  nisimura 
    131       1.1  nisimura 	brdprop = brd_lookup(brdtype);
    132       1.3       phx 	printf(">> %s, cpu %u MHz, bus %u MHz, %dMB SDRAM\n", brdprop->verbose,
    133       1.1  nisimura 	    cpuclock / 1000000, busclock / 1000000, bi_mem.memsize >> 20);
    134       1.1  nisimura 
    135       1.6  nisimura 	nata = pcilookup(PCI_CLASS_IDE, lata, 2);
    136       1.6  nisimura 	if (nata == 0)
    137      1.14       phx 		nata = pcilookup(PCI_CLASS_RAID, lata, 2);
    138      1.14       phx 	if (nata == 0)
    139       1.6  nisimura 		nata = pcilookup(PCI_CLASS_MISCSTORAGE, lata, 2);
    140       1.8       phx 	if (nata == 0)
    141       1.8       phx 		nata = pcilookup(PCI_CLASS_SCSI, lata, 2);
    142  1.14.6.2      yamt 	nnif = pcilookup(PCI_CLASS_ETH, lnif, 2);
    143       1.6  nisimura 	nusb = pcilookup(PCI_CLASS_USB, lusb, 3);
    144       1.6  nisimura 
    145       1.6  nisimura #ifdef DEBUG
    146       1.6  nisimura 	if (nata == 0)
    147       1.6  nisimura 		printf("No IDE/SATA found\n");
    148       1.6  nisimura 	else for (n = 0; n < nata; n++) {
    149       1.6  nisimura 		int b, d, f, bdf, pvd;
    150       1.6  nisimura 		bdf = lata[n].bdf;
    151       1.6  nisimura 		pvd = lata[n].pvd;
    152       1.6  nisimura 		pcidecomposetag(bdf, &b, &d, &f);
    153       1.6  nisimura 		printf("%04x.%04x DSK %02d:%02d:%02d\n",
    154       1.6  nisimura 		    PCI_VENDOR(pvd), PCI_PRODUCT(pvd), b, d, f);
    155       1.1  nisimura 	}
    156       1.6  nisimura 	if (nnif == 0)
    157       1.6  nisimura 		printf("no NET found\n");
    158  1.14.6.2      yamt 	else for (n = 0; n < nnif; n++) {
    159       1.6  nisimura 		int b, d, f, bdf, pvd;
    160  1.14.6.2      yamt 		bdf = lnif[n].bdf;
    161  1.14.6.2      yamt 		pvd = lnif[n].pvd;
    162       1.6  nisimura 		pcidecomposetag(bdf, &b, &d, &f);
    163       1.6  nisimura 		printf("%04x.%04x NET %02d:%02d:%02d\n",
    164       1.6  nisimura 		    PCI_VENDOR(pvd), PCI_PRODUCT(pvd), b, d, f);
    165       1.6  nisimura 	}
    166       1.6  nisimura 	if (nusb == 0)
    167       1.6  nisimura 		printf("no USB found\n");
    168       1.6  nisimura 	else for (n = 0; n < nusb; n++) {
    169       1.6  nisimura 		int b, d, f, bdf, pvd;
    170       1.6  nisimura 		bdf = lusb[0].bdf;
    171       1.6  nisimura 		pvd = lusb[0].pvd;
    172       1.6  nisimura 		pcidecomposetag(bdf, &b, &d, &f);
    173       1.6  nisimura 		printf("%04x.%04x USB %02d:%02d:%02d\n",
    174       1.6  nisimura 		    PCI_VENDOR(pvd), PCI_PRODUCT(pvd), b, d, f);
    175       1.1  nisimura 	}
    176       1.6  nisimura #endif
    177       1.1  nisimura 
    178       1.1  nisimura 	pcisetup();
    179       1.1  nisimura 	pcifixup();
    180       1.1  nisimura 
    181       1.7       phx 	/*
    182       1.7       phx 	 * When argc is too big then it is probably a pointer, which could
    183       1.7       phx 	 * indicate that we were launched as a Linux kernel module using
    184       1.7       phx 	 * "bootm".
    185       1.7       phx 	 */
    186       1.7       phx 	if (argc > MAX_ARGS) {
    187      1.13       phx 		if (argv != NULL) {
    188      1.13       phx 			/*
    189  1.14.6.2      yamt 			 * initrd image was loaded:
    190  1.14.6.2      yamt 			 * check if it contains a valid altboot command line
    191      1.13       phx 			 */
    192  1.14.6.2      yamt 			char *p = (char *)argv;
    193  1.14.6.2      yamt 
    194  1.14.6.2      yamt 			if (strncmp(p, "altboot:", 8) == 0) {
    195  1.14.6.2      yamt 				*p = 0;
    196  1.14.6.2      yamt 				for (p = p + 8; *p >= ' '; p++);
    197  1.14.6.2      yamt 				argc = parse_cmdline(new_argv, MAX_ARGS,
    198  1.14.6.2      yamt 				    ((char *)argv) + 8, p);
    199  1.14.6.2      yamt 				argv = new_argv;
    200  1.14.6.2      yamt 			} else
    201  1.14.6.2      yamt 				argc = 0;	/* boot default */
    202      1.13       phx 		} else {
    203      1.13       phx 			/* parse standard Linux bootargs */
    204      1.13       phx 			argc = parse_cmdline(new_argv, MAX_ARGS,
    205      1.13       phx 			    bootargs_start, bootargs_end);
    206      1.13       phx 			argv = new_argv;
    207      1.13       phx 		}
    208       1.7       phx 	}
    209       1.7       phx 
    210  1.14.6.2      yamt 	/* look for a PATA drive configuration string under the arguments */
    211  1.14.6.2      yamt 	for (n = 1; n < argc; n++) {
    212  1.14.6.2      yamt 		if (strncmp(argv[n], "ide:", 4) == 0 &&
    213  1.14.6.2      yamt 		    argv[n][4] >= '0' && argv[n][4] <= '2') {
    214  1.14.6.2      yamt 			drive_config = &argv[n][4];
    215  1.14.6.2      yamt 			break;
    216  1.14.6.2      yamt 		}
    217  1.14.6.2      yamt 	}
    218  1.14.6.2      yamt 
    219  1.14.6.2      yamt 	/* intialize a disk driver */
    220  1.14.6.3      yamt 	for (i = 0, n = 0; i < nata; i++)
    221  1.14.6.3      yamt 		n += dskdv_init(&lata[i]);
    222  1.14.6.3      yamt 	if (n == 0)
    223  1.14.6.2      yamt 		printf("IDE/SATA device driver was not found\n");
    224  1.14.6.2      yamt 
    225  1.14.6.2      yamt 	/* initialize a network interface */
    226  1.14.6.2      yamt 	for (n = 0; n < nnif; n++)
    227  1.14.6.2      yamt 		if (netif_init(&lnif[n]) != 0)
    228  1.14.6.2      yamt 			break;
    229  1.14.6.2      yamt 	if (n >= nnif)
    230  1.14.6.2      yamt 		printf("no NET device driver was found\n");
    231  1.14.6.2      yamt 
    232      1.11       phx 	/* wait 2s for user to enter interactive mode */
    233      1.11       phx 	for (n = 200; n >= 0; n--) {
    234      1.11       phx 		if (n % 100 == 0)
    235  1.14.6.3      yamt 			printf("\rHit any key to enter interactive mode: %d",
    236      1.11       phx 			    n / 100);
    237      1.11       phx 		if (tstchar()) {
    238  1.14.6.1      yamt #ifdef DEBUG
    239  1.14.6.1      yamt 			if (toupper(getchar()) == 'C') {
    240  1.14.6.1      yamt 				/* controller test terminal */
    241  1.14.6.1      yamt 				sat_test();
    242  1.14.6.1      yamt 				n = 200;
    243  1.14.6.1      yamt 				continue;
    244  1.14.6.1      yamt 			}
    245  1.14.6.1      yamt #else
    246      1.11       phx 			(void)getchar();
    247  1.14.6.1      yamt #endif
    248  1.14.6.1      yamt 			/* enter command line */
    249      1.11       phx 			argv = new_argv;
    250      1.11       phx 			argc = input_cmdline(argv, MAX_ARGS);
    251      1.11       phx 			break;
    252      1.11       phx 		}
    253      1.11       phx 		delay(10000);
    254      1.11       phx 	}
    255      1.11       phx 	putchar('\n');
    256      1.11       phx 
    257       1.1  nisimura 	howto = RB_AUTOBOOT;		/* default is autoboot = 0 */
    258       1.1  nisimura 
    259       1.1  nisimura 	/* get boot options and determine bootname */
    260       1.1  nisimura 	for (n = 1; n < argc; n++) {
    261  1.14.6.2      yamt 		if (strncmp(argv[n], "ide:", 4) == 0)
    262  1.14.6.2      yamt 			continue; /* ignore drive configuration argument */
    263  1.14.6.2      yamt 
    264       1.1  nisimura 		for (i = 0; i < sizeof(bootargs) / sizeof(bootargs[0]); i++) {
    265       1.1  nisimura 			if (strncasecmp(argv[n], bootargs[i].name,
    266       1.1  nisimura 			    strlen(bootargs[i].name)) == 0) {
    267       1.1  nisimura 				howto |= bootargs[i].value;
    268       1.1  nisimura 				break;
    269       1.1  nisimura 			}
    270       1.1  nisimura 		}
    271       1.1  nisimura 		if (i >= sizeof(bootargs) / sizeof(bootargs[0]))
    272       1.1  nisimura 			break;	/* break on first unknown string */
    273       1.1  nisimura 	}
    274  1.14.6.3      yamt 
    275  1.14.6.3      yamt 	/*
    276  1.14.6.3      yamt 	 * If no device name is given, we construct a list of drives
    277  1.14.6.3      yamt 	 * which have valid disklabels.
    278  1.14.6.3      yamt 	 */
    279  1.14.6.3      yamt 	if (n >= argc) {
    280  1.14.6.3      yamt 		n = 0;
    281  1.14.6.3      yamt 		argc = 0;
    282  1.14.6.3      yamt 		argv = alloc(MAX_UNITS * (sizeof(char *) + sizeof("wdN:")));
    283  1.14.6.3      yamt 		bname = (char *)(argv + MAX_UNITS);
    284  1.14.6.3      yamt 		for (i = 0; i < MAX_UNITS; i++) {
    285  1.14.6.3      yamt 			if (!dlabel_valid(i))
    286  1.14.6.3      yamt 				continue;
    287  1.14.6.3      yamt 			sprintf(bname, "wd%d:", i);
    288  1.14.6.3      yamt 			argv[argc++] = bname;
    289  1.14.6.3      yamt 			bname += sizeof("wdN:");
    290  1.14.6.3      yamt 		}
    291  1.14.6.3      yamt 		/* use default drive if no valid disklabel is found */
    292  1.14.6.3      yamt 		if (argc == 0) {
    293  1.14.6.3      yamt 			argc = 1;
    294  1.14.6.3      yamt 			argv[0] = BNAME_DEFAULT;
    295  1.14.6.3      yamt 		}
    296  1.14.6.3      yamt 	}
    297  1.14.6.3      yamt 
    298  1.14.6.3      yamt 	/* try to boot off kernel from the drive list */
    299  1.14.6.3      yamt 	while (n < argc) {
    300  1.14.6.3      yamt 		bname = argv[n++];
    301  1.14.6.3      yamt 
    302       1.1  nisimura 		if (check_bootname(bname) == 0) {
    303       1.1  nisimura 			printf("%s not a valid bootname\n", bname);
    304  1.14.6.3      yamt 			continue;
    305       1.1  nisimura 		}
    306       1.1  nisimura 
    307  1.14.6.3      yamt 		if ((fd = open(bname, 0)) < 0) {
    308  1.14.6.3      yamt 			if (errno == ENOENT)
    309  1.14.6.3      yamt 				printf("\"%s\" not found\n", bi_path.bootpath);
    310  1.14.6.3      yamt 			continue;
    311  1.14.6.3      yamt 		}
    312  1.14.6.3      yamt 		printf("loading \"%s\" ", bi_path.bootpath);
    313  1.14.6.3      yamt 		marks[MARK_START] = 0;
    314  1.14.6.3      yamt 
    315  1.14.6.3      yamt 		if (howto == -1) {
    316  1.14.6.3      yamt 			/* load another altboot binary and replace ourselves */
    317  1.14.6.3      yamt 			len = read(fd, (void *)0x100000, 0x1000000 - 0x100000);
    318  1.14.6.3      yamt 			if (len == -1)
    319  1.14.6.3      yamt 				goto loadfail;
    320  1.14.6.3      yamt 			close(fd);
    321  1.14.6.3      yamt 			netif_shutdown_all();
    322  1.14.6.3      yamt 
    323  1.14.6.3      yamt 			memcpy((void *)0xf0000, newaltboot,
    324  1.14.6.3      yamt 			    newaltboot_end - newaltboot);
    325  1.14.6.3      yamt 			__syncicache((void *)0xf0000,
    326  1.14.6.3      yamt 			    newaltboot_end - newaltboot);
    327  1.14.6.3      yamt 			printf("Restarting...\n");
    328  1.14.6.3      yamt 			run((void *)1, argv, (void *)0x100000, (void *)len,
    329  1.14.6.3      yamt 			    (void *)0xf0000);
    330  1.14.6.3      yamt 		}
    331      1.12       phx 
    332  1.14.6.3      yamt 		err = fdloadfile(fd, marks, LOAD_KERNEL);
    333      1.12       phx 		close(fd);
    334  1.14.6.3      yamt 		if (err < 0)
    335  1.14.6.3      yamt 			continue;
    336  1.14.6.3      yamt 
    337  1.14.6.3      yamt 		printf("entry=%p, ssym=%p, esym=%p\n",
    338  1.14.6.3      yamt 		    (void *)marks[MARK_ENTRY],
    339  1.14.6.3      yamt 		    (void *)marks[MARK_SYM],
    340  1.14.6.3      yamt 		    (void *)marks[MARK_END]);
    341  1.14.6.3      yamt 
    342  1.14.6.3      yamt 		bootinfo = (void *)0x4000;
    343  1.14.6.3      yamt 		bi_init(bootinfo);
    344  1.14.6.3      yamt 		bi_add(&bi_cons, BTINFO_CONSOLE, sizeof(bi_cons));
    345  1.14.6.3      yamt 		bi_add(&bi_mem, BTINFO_MEMORY, sizeof(bi_mem));
    346  1.14.6.3      yamt 		bi_add(&bi_clk, BTINFO_CLOCK, sizeof(bi_clk));
    347  1.14.6.3      yamt 		bi_add(&bi_path, BTINFO_BOOTPATH, sizeof(bi_path));
    348  1.14.6.3      yamt 		bi_add(&bi_rdev, BTINFO_ROOTDEVICE, sizeof(bi_rdev));
    349  1.14.6.3      yamt 		bi_add(&bi_fam, BTINFO_PRODFAMILY, sizeof(bi_fam));
    350  1.14.6.3      yamt 		if (brdtype == BRD_SYNOLOGY || brdtype == BRD_DLINKDSM) {
    351  1.14.6.3      yamt 			/* need to pass this MAC address to kernel */
    352  1.14.6.3      yamt 			bi_add(&bi_net, BTINFO_NET, sizeof(bi_net));
    353  1.14.6.3      yamt 		}
    354      1.12       phx 
    355  1.14.6.3      yamt 		if (modules_enabled) {
    356  1.14.6.3      yamt 			if (fsmod != NULL)
    357  1.14.6.3      yamt 				module_add(fsmod);
    358  1.14.6.3      yamt 			kmodloadp = marks[MARK_END];
    359  1.14.6.3      yamt 			btinfo_modulelist = NULL;
    360  1.14.6.3      yamt 			module_load(bname);
    361  1.14.6.3      yamt 			if (btinfo_modulelist != NULL &&
    362  1.14.6.3      yamt 			    btinfo_modulelist->num > 0)
    363  1.14.6.3      yamt 				bi_add(btinfo_modulelist, BTINFO_MODULELIST,
    364  1.14.6.3      yamt 				    btinfo_modulelist_size);
    365  1.14.6.3      yamt 		}
    366      1.10       phx 
    367  1.14.6.3      yamt 		launchfixup();
    368  1.14.6.3      yamt 		netif_shutdown_all();
    369       1.1  nisimura 
    370  1.14.6.3      yamt 		__syncicache((void *)marks[MARK_ENTRY],
    371  1.14.6.3      yamt 		    (u_int)marks[MARK_SYM] - (u_int)marks[MARK_ENTRY]);
    372       1.1  nisimura 
    373  1.14.6.3      yamt 		run((void *)marks[MARK_SYM], (void *)marks[MARK_END],
    374  1.14.6.3      yamt 		    (void *)howto, bootinfo, (void *)marks[MARK_ENTRY]);
    375       1.1  nisimura 
    376  1.14.6.3      yamt 		/* should never come here */
    377  1.14.6.3      yamt 		printf("exec returned. Restarting...\n");
    378  1.14.6.3      yamt 		_rtt();
    379  1.14.6.3      yamt 	}
    380       1.1  nisimura   loadfail:
    381       1.1  nisimura 	printf("load failed. Restarting...\n");
    382       1.1  nisimura 	_rtt();
    383       1.1  nisimura }
    384       1.1  nisimura 
    385       1.1  nisimura void
    386       1.1  nisimura bi_init(void *addr)
    387       1.1  nisimura {
    388       1.1  nisimura 	struct btinfo_magic bi_magic;
    389       1.1  nisimura 
    390       1.1  nisimura 	memset(addr, 0, BOOTINFO_MAXSIZE);
    391       1.1  nisimura 	bi_next = (char *)addr;
    392       1.1  nisimura 	bi_size = 0;
    393       1.1  nisimura 
    394       1.1  nisimura 	bi_magic.magic = BOOTINFO_MAGIC;
    395       1.1  nisimura 	bi_add(&bi_magic, BTINFO_MAGIC, sizeof(bi_magic));
    396       1.1  nisimura }
    397       1.1  nisimura 
    398       1.1  nisimura void
    399       1.1  nisimura bi_add(void *new, int type, int size)
    400       1.1  nisimura {
    401       1.1  nisimura 	struct btinfo_common *bi;
    402       1.1  nisimura 
    403       1.1  nisimura 	if (bi_size + size > BOOTINFO_MAXSIZE)
    404       1.1  nisimura 		return;				/* XXX error? */
    405       1.1  nisimura 
    406       1.1  nisimura 	bi = new;
    407       1.1  nisimura 	bi->next = size;
    408       1.1  nisimura 	bi->type = type;
    409       1.1  nisimura 	memcpy(bi_next, new, size);
    410       1.1  nisimura 	bi_next += size;
    411       1.1  nisimura }
    412       1.1  nisimura 
    413       1.1  nisimura void
    414       1.1  nisimura module_add(char *name)
    415       1.1  nisimura {
    416       1.1  nisimura 	struct boot_module *bm, *bmp;
    417       1.1  nisimura 
    418       1.1  nisimura 	while (*name == ' ' || *name == '\t')
    419       1.1  nisimura 		++name;
    420       1.1  nisimura 
    421       1.1  nisimura 	bm = alloc(sizeof(struct boot_module) + strlen(name) + 1);
    422       1.1  nisimura 	if (bm == NULL) {
    423       1.1  nisimura 		printf("couldn't allocate module %s\n", name);
    424       1.1  nisimura 		return;
    425       1.1  nisimura 	}
    426       1.1  nisimura 
    427       1.1  nisimura 	bm->bm_kmod = (char *)(bm + 1);
    428       1.1  nisimura 	bm->bm_len = -1;
    429       1.1  nisimura 	bm->bm_next = NULL;
    430       1.1  nisimura 	strcpy(bm->bm_kmod, name);
    431       1.1  nisimura 	if ((bmp = boot_modules) == NULL)
    432       1.1  nisimura 		boot_modules = bm;
    433       1.1  nisimura 	else {
    434       1.1  nisimura 		while (bmp->bm_next != NULL)
    435       1.1  nisimura 			bmp = bmp->bm_next;
    436       1.1  nisimura 		bmp->bm_next = bm;
    437       1.1  nisimura 	}
    438       1.1  nisimura }
    439       1.1  nisimura 
    440       1.1  nisimura #define PAGE_SIZE	4096
    441       1.1  nisimura #define alignpg(x)	(((x)+PAGE_SIZE-1) & ~(PAGE_SIZE-1))
    442       1.1  nisimura 
    443       1.1  nisimura void
    444       1.1  nisimura module_load(char *kernel_path)
    445       1.1  nisimura {
    446       1.1  nisimura 	struct boot_module *bm;
    447       1.1  nisimura 	struct bi_modulelist_entry *bi;
    448       1.1  nisimura 	struct stat st;
    449       1.1  nisimura 	char *p;
    450       1.1  nisimura 	int size, fd;
    451       1.1  nisimura 
    452       1.1  nisimura 	strcpy(module_base, kernel_path);
    453       1.1  nisimura 	if ((p = strchr(module_base, ':')) == NULL)
    454       1.1  nisimura 		return; /* eeh?! */
    455       1.1  nisimura 	p += 1;
    456       1.1  nisimura 	size = sizeof(module_base) - (p - module_base);
    457       1.1  nisimura 
    458       1.1  nisimura 	if (netbsd_version / 1000000 % 100 == 99) {
    459       1.1  nisimura 		/* -current */
    460       1.1  nisimura 		snprintf(p, size,
    461       1.1  nisimura 		    "/stand/sandpoint/%d.%d.%d/modules",
    462       1.1  nisimura 		    netbsd_version / 100000000,
    463       1.1  nisimura 		    netbsd_version / 1000000 % 100,
    464       1.1  nisimura 		    netbsd_version / 100 % 100);
    465       1.1  nisimura 	}
    466       1.1  nisimura 	 else if (netbsd_version != 0) {
    467       1.1  nisimura 		/* release */
    468       1.1  nisimura 		snprintf(p, size,
    469       1.1  nisimura 		    "/stand/sandpoint/%d.%d/modules",
    470       1.1  nisimura 		    netbsd_version / 100000000,
    471       1.1  nisimura 		    netbsd_version / 1000000 % 100);
    472       1.1  nisimura 	}
    473       1.1  nisimura 
    474       1.1  nisimura 	/*
    475       1.1  nisimura 	 * 1st pass; determine module existence
    476       1.1  nisimura 	 */
    477       1.1  nisimura 	size = 0;
    478       1.1  nisimura 	for (bm = boot_modules; bm != NULL; bm = bm->bm_next) {
    479       1.1  nisimura 		fd = module_open(bm);
    480       1.1  nisimura 		if (fd == -1)
    481       1.1  nisimura 			continue;
    482       1.1  nisimura 		if (fstat(fd, &st) == -1 || st.st_size == -1) {
    483       1.1  nisimura 			printf("WARNING: couldn't stat %s\n", bm->bm_kmod);
    484       1.1  nisimura 			close(fd);
    485       1.1  nisimura 			continue;
    486       1.1  nisimura 		}
    487       1.1  nisimura 		bm->bm_len = (int)st.st_size;
    488       1.1  nisimura 		close(fd);
    489       1.1  nisimura 		size += sizeof(struct bi_modulelist_entry);
    490       1.1  nisimura 	}
    491       1.1  nisimura 	if (size == 0)
    492       1.1  nisimura 		return;
    493       1.1  nisimura 
    494       1.1  nisimura 	size += sizeof(struct btinfo_modulelist);
    495       1.1  nisimura 	btinfo_modulelist = alloc(size);
    496       1.1  nisimura 	if (btinfo_modulelist == NULL) {
    497       1.1  nisimura 		printf("WARNING: couldn't allocate module list\n");
    498       1.1  nisimura 		return;
    499       1.1  nisimura 	}
    500       1.1  nisimura 	btinfo_modulelist_size = size;
    501       1.1  nisimura 	btinfo_modulelist->num = 0;
    502       1.1  nisimura 
    503       1.1  nisimura 	/*
    504       1.1  nisimura 	 * 2nd pass; load modules into memory
    505       1.1  nisimura 	 */
    506       1.1  nisimura 	kmodloadp = alignpg(kmodloadp);
    507       1.1  nisimura 	bi = (struct bi_modulelist_entry *)(btinfo_modulelist + 1);
    508       1.1  nisimura 	for (bm = boot_modules; bm != NULL; bm = bm->bm_next) {
    509       1.1  nisimura 		if (bm->bm_len == -1)
    510       1.1  nisimura 			continue; /* already found unavailable */
    511       1.1  nisimura 		fd = module_open(bm);
    512       1.1  nisimura 		printf("module \"%s\" ", bm->bm_kmod);
    513       1.1  nisimura 		size = read(fd, (char *)kmodloadp, SSIZE_MAX);
    514       1.1  nisimura 		if (size < bm->bm_len)
    515       1.1  nisimura 			printf("WARNING: couldn't load");
    516       1.1  nisimura 		else {
    517       1.1  nisimura 			snprintf(bi->kmod, sizeof(bi->kmod), bm->bm_kmod);
    518       1.1  nisimura 			bi->type = BI_MODULE_ELF;
    519       1.1  nisimura 			bi->len = size;
    520       1.1  nisimura 			bi->base = kmodloadp;
    521       1.1  nisimura 			btinfo_modulelist->num += 1;
    522       1.1  nisimura 			printf("loaded at 0x%08x size 0x%x", kmodloadp, size);
    523       1.1  nisimura 			kmodloadp += alignpg(size);
    524       1.1  nisimura 			bi += 1;
    525       1.1  nisimura 		}
    526       1.1  nisimura 		printf("\n");
    527       1.1  nisimura 		close(fd);
    528       1.1  nisimura 	}
    529       1.1  nisimura 	btinfo_modulelist->endpa = kmodloadp;
    530       1.1  nisimura }
    531       1.1  nisimura 
    532       1.1  nisimura int
    533       1.1  nisimura module_open(struct boot_module *bm)
    534       1.1  nisimura {
    535       1.1  nisimura 	char path[80];
    536       1.1  nisimura 	int fd;
    537       1.1  nisimura 
    538       1.1  nisimura 	snprintf(path, sizeof(path),
    539       1.1  nisimura 	    "%s/%s/%s.kmod", module_base, bm->bm_kmod, bm->bm_kmod);
    540       1.1  nisimura 	fd = open(path, 0);
    541       1.1  nisimura 	return fd;
    542       1.1  nisimura }
    543       1.1  nisimura 
    544  1.14.6.2      yamt /*
    545  1.14.6.2      yamt  * Return the drive configuration for the requested channel 'ch'.
    546  1.14.6.2      yamt  * Channel 2 is the first channel of the next IDE controller.
    547  1.14.6.2      yamt  * 0: for no drive present on channel
    548  1.14.6.2      yamt  * 1: for master drive present on channel, no slave
    549  1.14.6.2      yamt  * 2: for master and slave drive present
    550  1.14.6.2      yamt  */
    551  1.14.6.2      yamt int
    552  1.14.6.2      yamt get_drive_config(int ch)
    553       1.1  nisimura {
    554  1.14.6.2      yamt 	if (drive_config != NULL) {
    555  1.14.6.2      yamt 		if (strlen(drive_config) <= ch)
    556  1.14.6.2      yamt 			return 0;	/* an unspecified channel is unused */
    557  1.14.6.2      yamt 		if (drive_config[ch] >= '0' && drive_config[ch] <= '2')
    558  1.14.6.2      yamt 			return drive_config[ch] - '0';
    559  1.14.6.2      yamt 	}
    560  1.14.6.2      yamt 	return -1;
    561       1.1  nisimura }
    562       1.1  nisimura 
    563       1.1  nisimura void *
    564       1.1  nisimura allocaligned(size_t size, size_t align)
    565       1.1  nisimura {
    566       1.1  nisimura 	uint32_t p;
    567       1.1  nisimura 
    568       1.1  nisimura 	if (align-- < 2)
    569       1.1  nisimura 		return alloc(size);
    570       1.1  nisimura 	p = (uint32_t)alloc(size + align);
    571       1.1  nisimura 	return (void *)((p + align) & ~align);
    572       1.1  nisimura }
    573       1.1  nisimura 
    574       1.9       phx static int hex2nibble(char c)
    575       1.9       phx {
    576       1.9       phx 
    577       1.9       phx 	if (c >= 'a')
    578       1.9       phx 		c &= ~0x20;
    579       1.9       phx 	if (c >= 'A' && c <= 'F')
    580       1.9       phx 		c -= 'A' - ('9' + 1);
    581       1.9       phx 	else if (c < '0' || c > '9')
    582       1.9       phx 		return -1;
    583       1.9       phx 
    584       1.9       phx 	return c - '0';
    585       1.9       phx }
    586       1.9       phx 
    587       1.9       phx uint32_t
    588       1.9       phx read_hex(const char *s)
    589       1.9       phx {
    590       1.9       phx 	int n;
    591       1.9       phx 	uint32_t val;
    592       1.9       phx 
    593       1.9       phx 	val = 0;
    594       1.9       phx 	while ((n = hex2nibble(*s++)) >= 0)
    595       1.9       phx 		val = (val << 4) | n;
    596       1.9       phx 	return val;
    597       1.9       phx }
    598       1.9       phx 
    599       1.1  nisimura static int
    600       1.1  nisimura check_bootname(char *s)
    601       1.1  nisimura {
    602       1.1  nisimura 	/*
    603       1.1  nisimura 	 * nfs:
    604       1.1  nisimura 	 * nfs:<bootfile>
    605       1.1  nisimura 	 * tftp:
    606       1.1  nisimura 	 * tftp:<bootfile>
    607       1.1  nisimura 	 * wd[N[P]]:<bootfile>
    608       1.9       phx 	 * mem:<address>
    609       1.1  nisimura 	 *
    610       1.1  nisimura 	 * net is a synonym of nfs.
    611       1.1  nisimura 	 */
    612       1.9       phx 	if (strncmp(s, "nfs:", 4) == 0 || strncmp(s, "net:", 4) == 0 ||
    613       1.9       phx 	    strncmp(s, "tftp:", 5) == 0 || strncmp(s, "mem:", 4) == 0)
    614       1.1  nisimura 		return 1;
    615       1.1  nisimura 	if (s[0] == 'w' && s[1] == 'd') {
    616       1.1  nisimura 		s += 2;
    617       1.1  nisimura 		if (*s != ':' && *s >= '0' && *s <= '3') {
    618       1.1  nisimura 			++s;
    619       1.1  nisimura 			if (*s != ':' && *s >= 'a' && *s <= 'p')
    620       1.1  nisimura 				++s;
    621       1.1  nisimura 		}
    622       1.1  nisimura 		return *s == ':';
    623       1.1  nisimura 	}
    624       1.1  nisimura 	return 0;
    625       1.1  nisimura }
    626       1.7       phx 
    627      1.11       phx static int input_cmdline(char **argv, int maxargc)
    628      1.11       phx {
    629      1.11       phx 	char *cmdline;
    630      1.11       phx 
    631      1.11       phx 	printf("\nbootargs> ");
    632      1.11       phx 	cmdline = alloc(256);
    633      1.11       phx 	gets(cmdline);
    634      1.11       phx 
    635      1.11       phx 	return parse_cmdline(argv, maxargc, cmdline,
    636      1.11       phx 	    cmdline + strlen(cmdline));
    637      1.11       phx }
    638      1.11       phx 
    639       1.7       phx static int
    640       1.7       phx parse_cmdline(char **argv, int maxargc, char *p, char *end)
    641       1.7       phx {
    642       1.7       phx 	int argc;
    643       1.7       phx 
    644       1.7       phx 	argv[0] = "";
    645       1.7       phx 	for (argc = 1; argc < maxargc && p < end; argc++) {
    646       1.7       phx 		while (is_space(*p))
    647       1.7       phx 			p++;
    648       1.7       phx 		if (p >= end)
    649       1.7       phx 			break;
    650       1.7       phx 		argv[argc] = p;
    651       1.7       phx 		while (!is_space(*p) && p < end)
    652       1.7       phx 			p++;
    653       1.7       phx 		*p++ = '\0';
    654       1.7       phx 	}
    655       1.7       phx 
    656       1.7       phx 	return argc;
    657       1.7       phx }
    658       1.7       phx 
    659       1.7       phx static int
    660       1.7       phx is_space(char c)
    661       1.7       phx {
    662  1.14.6.1      yamt 
    663       1.7       phx 	return c > '\0' && c <= ' ';
    664       1.7       phx }
    665  1.14.6.1      yamt 
    666  1.14.6.1      yamt #ifdef DEBUG
    667  1.14.6.1      yamt static void
    668  1.14.6.1      yamt sat_test(void)
    669  1.14.6.1      yamt {
    670  1.14.6.1      yamt 	char buf[1024];
    671  1.14.6.1      yamt 	int i, j, n, pos;
    672  1.14.6.1      yamt 	unsigned char c;
    673  1.14.6.1      yamt 
    674  1.14.6.1      yamt 	putchar('\n');
    675  1.14.6.1      yamt 	for (;;) {
    676  1.14.6.1      yamt 		do {
    677  1.14.6.1      yamt 			for (pos = 0; pos < 1024 && sat_tstch() != 0; pos++)
    678  1.14.6.1      yamt 				buf[pos] = sat_getch();
    679  1.14.6.1      yamt 			if (pos > 1023)
    680  1.14.6.1      yamt 				break;
    681  1.14.6.1      yamt 			delay(100000);
    682  1.14.6.1      yamt 		} while (sat_tstch());
    683  1.14.6.1      yamt 
    684  1.14.6.1      yamt 		for (i = 0; i < pos; i += 16) {
    685  1.14.6.1      yamt 			if ((n = i + 16) > pos)
    686  1.14.6.1      yamt 				n = pos;
    687  1.14.6.1      yamt 			for (j = 0; j < n; j++)
    688  1.14.6.1      yamt 				printf("%02x ", (unsigned)buf[i + j]);
    689  1.14.6.1      yamt 			for (; j < 16; j++)
    690  1.14.6.1      yamt 				printf("   ");
    691  1.14.6.1      yamt 			putchar('\"');
    692  1.14.6.1      yamt 			for (j = 0; j < n; j++) {
    693  1.14.6.1      yamt 				c = buf[i + j];
    694  1.14.6.1      yamt 				putchar((c >= 0x20 && c <= 0x7e) ? c : '.');
    695  1.14.6.1      yamt 			}
    696  1.14.6.1      yamt 			printf("\"\n");
    697  1.14.6.1      yamt 		}
    698  1.14.6.1      yamt 
    699  1.14.6.1      yamt 		printf("controller> ");
    700  1.14.6.1      yamt 		gets(buf);
    701  1.14.6.1      yamt 		if (buf[0] == '*' && buf[1] == 'X')
    702  1.14.6.1      yamt 			break;
    703  1.14.6.1      yamt 
    704  1.14.6.1      yamt 		if (buf[0] == '0' && tolower((unsigned)buf[1]) == 'x') {
    705  1.14.6.1      yamt 			for (i = 2, n = 0, c = 0; buf[i]; i++) {
    706  1.14.6.1      yamt 				c <<= 4;
    707  1.14.6.1      yamt 				c |= hex2nibble(buf[i]);
    708  1.14.6.1      yamt 				if (i & 1)
    709  1.14.6.1      yamt 					buf[n++] = c;
    710  1.14.6.1      yamt 			}
    711  1.14.6.1      yamt 		} else
    712  1.14.6.1      yamt 			n = strlen(buf);
    713  1.14.6.1      yamt 
    714  1.14.6.1      yamt 		if (n > 0)
    715  1.14.6.1      yamt 			sat_write(buf, n);
    716  1.14.6.1      yamt 	}
    717  1.14.6.1      yamt }
    718  1.14.6.1      yamt #endif
    719