Home | History | Annotate | Line # | Download | only in bootxx
bootxx.c revision 1.3
      1 /*	$NetBSD: bootxx.c,v 1.3 2000/07/09 13:47:34 jdolecek Exp $ */
      2 
      3 /*-
      4  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Paul Kranenburg.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. All advertising materials mentioning features or use of this software
     19  *    must display the following acknowledgement:
     20  *        This product includes software developed by the NetBSD
     21  *        Foundation, Inc. and its contributors.
     22  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  *    contributors may be used to endorse or promote products derived
     24  *    from this software without specific prior written permission.
     25  *
     26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  * POSSIBILITY OF SUCH DAMAGE.
     37  */
     38 
     39 /*
     40  * This is a generic "first-stage" boot program.
     41  *
     42  * Note that this program has absolutely no filesystem knowledge!
     43  *
     44  * Instead, this uses a table of disk block numbers that are
     45  * filled in by the installboot program such that this program
     46  * can load the "second-stage" boot program.
     47  */
     48 
     49 #include <sys/param.h>
     50 #include <sys/time.h>
     51 #include <sys/exec.h>
     52 #include <machine/prom.h>
     53 
     54 #include "stand.h"
     55 #include "libsa.h"
     56 
     57 /*
     58  * Boot device is derived from ROM provided information.
     59  */
     60 #define LOADADDR	0x11000 /* where to load level 2 bootstrap */
     61 				/* (l2 must relocate itself) */
     62 
     63 /* This determines the largest boot program we can load. */
     64 #define MAXBLOCKNUM	64
     65 
     66 /*
     67  * These three names are known by installboot.
     68  * The block_table contains starting block numbers,
     69  * in terms of 512-byte blocks.  Each non-zero value
     70  * will result in a read of block_size bytes.
     71  */
     72 int     	block_size = 512;	/* default */
     73 int     	block_count = MAXBLOCKNUM;	/* length of table */
     74 daddr_t 	block_table[MAXBLOCKNUM] = { 0 };
     75 
     76 extern		char *bootprog_rev;
     77 
     78 
     79 main()
     80 {
     81 	struct open_file	f;
     82 	char	*addr;
     83 	int n, error;
     84 
     85 	printf("Boot: bug device: ctrl=%d, dev=%d\n",
     86 		bugargs.ctrl_lun, bugargs.dev_lun);
     87 	printf("\nbootxx: first level bootstrap program [%s]\n\n",
     88 		bootprog_rev);
     89 
     90 	f.f_flags = F_RAW;
     91 	if (devopen(&f, 0, &addr)) {
     92 		printf("bootxx: open failed\n");
     93 		_rtt();
     94 	}
     95 
     96 	addr = (char*)LOADADDR;
     97 	error = copyboot(&f, addr);
     98 	f.f_dev->dv_close(&f);
     99 	if (!error) {
    100 		bugexec((void (*)())addr);
    101 	}
    102 	/* copyboot had a problem... */
    103 	_rtt();
    104 }
    105 
    106 int
    107 copyboot(fp, addr)
    108 	struct open_file	*fp;
    109 	char			*addr;
    110 {
    111 	int	n, i, blknum;
    112 	struct exec *x;
    113 
    114 	addr -= sizeof(struct exec); /* assume OMAGIC, verify below */
    115 	x = (struct exec *)addr;
    116 
    117 	if (!block_count) {
    118 		printf("bootxx: no data!?!\n");
    119 		return -1;
    120 	}
    121 
    122 	for (i = 0; i < block_count; i++) {
    123 
    124 		if ((blknum = block_table[i]) == 0)
    125 			break;
    126 
    127 #ifdef DEBUG
    128 		printf("bootxx: read block # %d = %d\n", i, blknum);
    129 #endif
    130 		if ((fp->f_dev->dv_strategy)(fp->f_devdata, F_READ,
    131 					   blknum, block_size, addr, &n))
    132 		{
    133 			printf("bootxx: read failed\n");
    134 			return -1;
    135 		}
    136 		if (n != block_size) {
    137 			printf("bootxx: short read\n");
    138 			return -1;
    139 		}
    140 		addr += block_size;
    141 	}
    142 
    143 	if (N_GETMAGIC(*x) != OMAGIC) {
    144 		printf("bootxx: secondary bootstrap isn't in OMAGIC format\n");
    145 		return(-1);
    146 	}
    147 
    148 	return 0;
    149 }
    150