Home | History | Annotate | Line # | Download | only in sboot
sboot.c revision 1.5.50.1
      1  1.5.50.1      matt /*	sboot.c,v 1.5 2005/12/24 22:45:36 perry Exp	*/
      2       1.3     perry 
      3       1.1     chuck /*
      4       1.1     chuck  *
      5       1.1     chuck  * Copyright (c) 1995 Charles D. Cranor and Seth Widoff
      6       1.1     chuck  * All rights reserved.
      7       1.1     chuck  *
      8       1.1     chuck  * Redistribution and use in source and binary forms, with or without
      9       1.1     chuck  * modification, are permitted provided that the following conditions
     10       1.1     chuck  * are met:
     11       1.1     chuck  * 1. Redistributions of source code must retain the above copyright
     12       1.1     chuck  *    notice, this list of conditions and the following disclaimer.
     13       1.1     chuck  * 2. Redistributions in binary form must reproduce the above copyright
     14       1.1     chuck  *    notice, this list of conditions and the following disclaimer in the
     15       1.1     chuck  *    documentation and/or other materials provided with the distribution.
     16       1.1     chuck  * 3. All advertising materials mentioning features or use of this software
     17       1.1     chuck  *    must display the following acknowledgement:
     18       1.1     chuck  *      This product includes software developed by Charles D. Cranor
     19       1.1     chuck  *	and Seth Widoff.
     20       1.1     chuck  * 4. The name of the author may not be used to endorse or promote products
     21       1.1     chuck  *    derived from this software without specific prior written permission.
     22       1.1     chuck  *
     23       1.1     chuck  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     24       1.1     chuck  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     25       1.1     chuck  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     26       1.1     chuck  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     27       1.1     chuck  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     28       1.1     chuck  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     29       1.1     chuck  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     30       1.1     chuck  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     31       1.1     chuck  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     32       1.1     chuck  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     33       1.1     chuck  */
     34       1.1     chuck /*
     35       1.1     chuck  * main driver, plus machdep stuff
     36       1.1     chuck  */
     37       1.1     chuck 
     38       1.1     chuck #include "sboot.h"
     39       1.1     chuck 
     40       1.4  jdolecek void sboot(void);
     41       1.1     chuck 
     42       1.4  jdolecek extern char bootprog_rev[];
     43       1.4  jdolecek 
     44       1.4  jdolecek void
     45  1.5.50.1      matt sboot(void)
     46       1.1     chuck {
     47  1.5.50.1      matt 	char buf[128], *ebuf;
     48  1.5.50.1      matt 
     49  1.5.50.1      matt 	buf[0] = '0';
     50  1.5.50.1      matt 	consinit();
     51  1.5.50.1      matt 	printf("\nsboot: serial line bootstrap program (&end = %p) [%s]\n\n",
     52  1.5.50.1      matt 	    &end, bootprog_rev);
     53  1.5.50.1      matt 	if (reboot) {  /* global flag from AAstart.s */
     54  1.5.50.1      matt 		reboot = 0;
     55  1.5.50.1      matt 		printf("[rebooting...]\n");
     56  1.5.50.1      matt 		buf[0] = 'b';
     57  1.5.50.1      matt 		buf[1] = 0;
     58  1.5.50.1      matt 		do_cmd(buf, &buf[1]);
     59  1.5.50.1      matt 	}
     60  1.5.50.1      matt 	for (;;) {
     61  1.5.50.1      matt 		printf(">>> ");
     62  1.5.50.1      matt 		ebuf = ngets(buf, sizeof(buf));
     63  1.5.50.1      matt 		do_cmd(buf, ebuf);
     64  1.5.50.1      matt 	}
     65  1.5.50.1      matt 	/* not reached */
     66       1.1     chuck }
     67       1.1     chuck 
     68       1.1     chuck /*
     69       1.1     chuck  * exit to rom
     70       1.1     chuck  */
     71       1.1     chuck 
     72  1.5.50.1      matt void
     73  1.5.50.1      matt callrom(void)
     74       1.1     chuck {
     75  1.5.50.1      matt 
     76  1.5.50.1      matt 	__asm("trap #15; .word 0x0063");
     77       1.1     chuck }
     78       1.1     chuck 
     79       1.1     chuck /*
     80       1.1     chuck  * do_cmd: do a command
     81       1.1     chuck  */
     82       1.1     chuck 
     83  1.5.50.1      matt void
     84  1.5.50.1      matt do_cmd(char *buf, char *ebuf)
     85       1.1     chuck {
     86  1.5.50.1      matt 
     87  1.5.50.1      matt 	switch (*buf) {
     88  1.5.50.1      matt 	case '\0':
     89  1.5.50.1      matt 		return;
     90  1.5.50.1      matt 	case 'a':
     91  1.5.50.1      matt 		if (rev_arp()) {
     92  1.5.50.1      matt 			printf("My ip address is: %d.%d.%d.%d\n",
     93  1.5.50.1      matt 			    myip[0], myip[1], myip[2], myip[3]);
     94  1.5.50.1      matt 			printf("Server ip address is: %d.%d.%d.%d\n",
     95  1.5.50.1      matt 			    servip[0], servip[1], servip[2], servip[3]);
     96  1.5.50.1      matt 		} else  {
     97  1.5.50.1      matt 			printf("Failed.\n");
     98  1.5.50.1      matt 		}
     99  1.5.50.1      matt 		return;
    100  1.5.50.1      matt 	case 'e':
    101  1.5.50.1      matt 		printf("exiting to ROM\n");
    102  1.5.50.1      matt 		callrom();
    103  1.5.50.1      matt 		return;
    104  1.5.50.1      matt 	case 'f':
    105  1.5.50.1      matt 		if (do_get_file() == 1) {
    106  1.5.50.1      matt 			printf("Download Failed\n");
    107  1.5.50.1      matt 		} else {
    108  1.5.50.1      matt 			printf("Download was a success!\n");
    109  1.5.50.1      matt 		}
    110  1.5.50.1      matt 		return;
    111  1.5.50.1      matt 	case 'b':
    112  1.5.50.1      matt 		le_init();
    113  1.5.50.1      matt 		if (rev_arp()) {
    114  1.5.50.1      matt 			printf("My ip address is: %d.%d.%d.%d\n",
    115  1.5.50.1      matt 			    myip[0], myip[1], myip[2], myip[3]);
    116  1.5.50.1      matt 			printf("Server ip address is: %d.%d.%d.%d\n",
    117  1.5.50.1      matt 			    servip[0], servip[1], servip[2], servip[3]);
    118  1.5.50.1      matt 		} else  {
    119  1.5.50.1      matt 			printf("REVARP: Failed.\n");
    120  1.5.50.1      matt 			return;
    121  1.5.50.1      matt 		}
    122  1.5.50.1      matt 		if (do_get_file() == 1) {
    123  1.5.50.1      matt 			printf("Download Failed\n");
    124  1.5.50.1      matt 			return;
    125  1.5.50.1      matt 		} else {
    126  1.5.50.1      matt 			printf("Download was a success!\n");
    127  1.5.50.1      matt 		}
    128  1.5.50.1      matt 		/*FALLTHROUGH*/
    129  1.5.50.1      matt 	case 'g':
    130  1.5.50.1      matt 		printf("Start @ 0x%x ... \n", LOAD_ADDR);
    131  1.5.50.1      matt 		go(LOAD_ADDR, buf+1, ebuf);
    132  1.5.50.1      matt 		return;
    133  1.5.50.1      matt 	case 'h':
    134  1.5.50.1      matt 	case '?':
    135  1.5.50.1      matt 		printf("valid commands\n");
    136  1.5.50.1      matt 		printf("a - send a RARP\n");
    137  1.5.50.1      matt 		printf("b - boot the system\n");
    138  1.5.50.1      matt 		printf("e - exit to ROM\n");
    139  1.5.50.1      matt 		printf("f - ftp the boot file\n");
    140  1.5.50.1      matt 		printf("g - execute the boot file\n");
    141  1.5.50.1      matt 		printf("h - help\n");
    142  1.5.50.1      matt 		printf("i - init LANCE enet chip\n");
    143  1.5.50.1      matt 		return;
    144  1.5.50.1      matt 	case 'i':
    145  1.5.50.1      matt 		le_init();
    146  1.5.50.1      matt 		return;
    147  1.5.50.1      matt 	default:
    148  1.5.50.1      matt 		printf("sboot: %s: Unknown command\n", buf);
    149  1.5.50.1      matt 	}
    150       1.1     chuck }
    151