1 1.17 dholland /* $NetBSD: boot.c,v 1.17 2016/06/11 06:33:30 dholland Exp $ */ 2 1.1 chuck 3 1.3 chuck /* 4 1.1 chuck * Copyright (c) 1982, 1986, 1990, 1993 5 1.1 chuck * The Regents of the University of California. All rights reserved. 6 1.1 chuck * 7 1.1 chuck * Redistribution and use in source and binary forms, with or without 8 1.1 chuck * modification, are permitted provided that the following conditions 9 1.1 chuck * are met: 10 1.1 chuck * 1. Redistributions of source code must retain the above copyright 11 1.1 chuck * notice, this list of conditions and the following disclaimer. 12 1.1 chuck * 2. Redistributions in binary form must reproduce the above copyright 13 1.1 chuck * notice, this list of conditions and the following disclaimer in the 14 1.1 chuck * documentation and/or other materials provided with the distribution. 15 1.12 agc * 3. Neither the name of the University nor the names of its contributors 16 1.1 chuck * may be used to endorse or promote products derived from this software 17 1.1 chuck * without specific prior written permission. 18 1.1 chuck * 19 1.1 chuck * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 20 1.1 chuck * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 1.1 chuck * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 1.1 chuck * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 23 1.1 chuck * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 1.1 chuck * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 1.1 chuck * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 1.1 chuck * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 1.1 chuck * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 1.1 chuck * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 1.1 chuck * SUCH DAMAGE. 30 1.1 chuck * 31 1.1 chuck * @(#)boot.c 8.1 (Berkeley) 6/10/93 32 1.1 chuck */ 33 1.1 chuck 34 1.1 chuck #include <sys/param.h> 35 1.1 chuck #include <sys/reboot.h> 36 1.3 chuck #include <machine/prom.h> 37 1.1 chuck 38 1.6 jdolecek #include <lib/libkern/libkern.h> 39 1.6 jdolecek 40 1.14 junyoung #include <lib/libsa/stand.h> 41 1.3 chuck #include "libsa.h" 42 1.7 scw #include "config.h" 43 1.1 chuck 44 1.9 scw int main(void); 45 1.6 jdolecek 46 1.6 jdolecek extern char bootprog_name[], bootprog_rev[]; 47 1.1 chuck char line[80]; 48 1.1 chuck 49 1.9 scw int 50 1.16 tsutsui main(void) 51 1.1 chuck { 52 1.1 chuck char *cp, *file; 53 1.5 scw int ask = 0, howto, part, sboot = 0; 54 1.3 chuck 55 1.6 jdolecek printf(">> %s MVME%x netboot (via %s) [%s]\n", 56 1.16 tsutsui bootprog_name, bugargs.cputyp, bugargs.arg_start, bootprog_rev); 57 1.8 scw if (memcmp("sboot", bugargs.arg_start, 5) == 0) 58 1.4 chuck sboot = 1; 59 1.3 chuck /* cycle in the correct args */ 60 1.3 chuck bugargs.arg_start = bugargs.nbarg_start; 61 1.3 chuck bugargs.arg_end = bugargs.nbarg_end; 62 1.3 chuck *bugargs.arg_end = 0; /* ensure */ 63 1.1 chuck 64 1.5 scw parse_args(&file, &howto, &part); 65 1.1 chuck 66 1.1 chuck for (;;) { 67 1.3 chuck if (ask) { 68 1.1 chuck printf("boot: "); 69 1.17 dholland kgets(line, sizeof(line)); 70 1.3 chuck if (line[0]) { 71 1.3 chuck bugargs.arg_start = line; 72 1.3 chuck cp = line; 73 1.13 junyoung while (cp < (line + sizeof(line) - 1) && *cp) 74 1.3 chuck cp++; 75 1.3 chuck bugargs.arg_end = cp; 76 1.5 scw parse_args(&file, &howto, &part); 77 1.3 chuck } 78 1.1 chuck } 79 1.4 chuck if (sboot) 80 1.4 chuck howto |= RB_SBOOT; 81 1.5 scw exec_mvme(file, howto, part); 82 1.2 chuck printf("boot: %s: %s\n", file, strerror(errno)); 83 1.3 chuck ask = 1; 84 1.7 scw } 85 1.7 scw } 86 1.7 scw 87 1.7 scw /* 88 1.7 scw * machdep_common_ether: get ethernet address 89 1.7 scw */ 90 1.7 scw void 91 1.13 junyoung machdep_common_ether(u_char *ether) 92 1.7 scw { 93 1.7 scw u_char *ea; 94 1.7 scw 95 1.7 scw if (bugargs.cputyp == CPU_147) { 96 1.7 scw ea = (u_char *) ETHER_ADDR_147; 97 1.7 scw 98 1.16 tsutsui if ((*(int *)ea & 0x2fffff00) == 0x2fffff00) 99 1.11 provos panic("ERROR: ethernet address not set!"); 100 1.7 scw ether[0] = 0x08; 101 1.7 scw ether[1] = 0x00; 102 1.7 scw ether[2] = 0x3e; 103 1.7 scw ether[3] = ea[0]; 104 1.7 scw ether[4] = ea[1]; 105 1.7 scw ether[5] = ea[2]; 106 1.7 scw } else { 107 1.16 tsutsui ea = (u_char *)ETHER_ADDR_16X; 108 1.7 scw 109 1.7 scw if (ea[0] + ea[1] + ea[2] + ea[3] + ea[4] + ea[5] == 0) 110 1.11 provos panic("ERROR: ethernet address not set!"); 111 1.7 scw ether[0] = ea[0]; 112 1.7 scw ether[1] = ea[1]; 113 1.7 scw ether[2] = ea[2]; 114 1.7 scw ether[3] = ea[3]; 115 1.7 scw ether[4] = ea[4]; 116 1.7 scw ether[5] = ea[5]; 117 1.1 chuck } 118 1.1 chuck } 119