Home | History | Annotate | Line # | Download | only in sboot
sboot.c revision 1.3.16.1
      1  1.3.16.1  bouyer /*	$NetBSD: sboot.c,v 1.3.16.1 2000/11/20 20:15:31 bouyer 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.3.16.1  bouyer void sboot(void);
     41       1.1   chuck 
     42  1.3.16.1  bouyer extern char bootprog_rev[];
     43  1.3.16.1  bouyer 
     44  1.3.16.1  bouyer void
     45  1.3.16.1  bouyer sboot()
     46       1.1   chuck {
     47       1.2   chuck   char buf[128], *ebuf;
     48       1.1   chuck   buf[0] = '0';
     49       1.1   chuck   consinit();
     50  1.3.16.1  bouyer   printf("\nsboot: serial line bootstrap program (&end = %p) [%s]\n\n", &end,
     51  1.3.16.1  bouyer 	bootprog_rev);
     52       1.1   chuck   if (reboot) {  /* global flag from AAstart.s */
     53       1.1   chuck     reboot = 0;
     54       1.1   chuck     printf("[rebooting...]\n");
     55       1.2   chuck     buf[0] = 'b';
     56       1.2   chuck     buf[1] = 0;
     57       1.2   chuck     do_cmd(buf, &buf[1]);
     58       1.1   chuck   }
     59       1.1   chuck   while (1) {
     60       1.1   chuck     printf(">>> ");
     61       1.2   chuck     ebuf = ngets(buf, sizeof(buf));
     62       1.2   chuck     do_cmd(buf, ebuf);
     63       1.1   chuck   }
     64       1.1   chuck   /* not reached */
     65       1.1   chuck }
     66       1.1   chuck 
     67       1.1   chuck /*
     68       1.1   chuck  * exit to rom
     69       1.1   chuck  */
     70       1.1   chuck 
     71       1.1   chuck void callrom ()
     72       1.1   chuck {
     73       1.1   chuck   asm("trap #15; .word 0x0063");
     74       1.1   chuck }
     75       1.1   chuck 
     76       1.1   chuck /*
     77       1.1   chuck  * do_cmd: do a command
     78       1.1   chuck  */
     79       1.1   chuck 
     80       1.2   chuck void do_cmd(buf, ebuf)
     81  1.3.16.1  bouyer 	char *buf, *ebuf;
     82       1.1   chuck {
     83       1.1   chuck   switch (*buf) {
     84       1.1   chuck   case '\0':
     85       1.1   chuck     return;
     86       1.1   chuck   case 'a':
     87       1.1   chuck     if ( rev_arp() ) {
     88       1.1   chuck 	printf ("My ip address is: %d.%d.%d.%d\n", myip[0],
     89       1.1   chuck 		myip[1], myip[2], myip[3]);
     90       1.1   chuck 	printf ("Server ip address is: %d.%d.%d.%d\n", servip[0],
     91       1.1   chuck 		servip[1], servip[2], servip[3]);
     92       1.1   chuck     } else  {
     93       1.1   chuck 	printf ("Failed.\n");
     94       1.1   chuck     }
     95       1.1   chuck     return;
     96       1.1   chuck   case 'e':
     97       1.1   chuck     printf("exiting to ROM\n");
     98       1.1   chuck     callrom();
     99       1.1   chuck     return;
    100       1.1   chuck   case 'f':
    101       1.1   chuck     if (do_get_file() == 1) {
    102       1.1   chuck       printf("Download Failed\n");
    103       1.1   chuck     } else {
    104       1.1   chuck       printf("Download was a success!\n");
    105       1.1   chuck     }
    106       1.1   chuck     return;
    107       1.1   chuck   case 'b':
    108       1.1   chuck     le_init();
    109       1.1   chuck     if ( rev_arp() ) {
    110       1.1   chuck 	printf ("My ip address is: %d.%d.%d.%d\n", myip[0],
    111       1.1   chuck 		myip[1], myip[2], myip[3]);
    112       1.1   chuck 	printf ("Server ip address is: %d.%d.%d.%d\n", servip[0],
    113       1.1   chuck 		servip[1], servip[2], servip[3]);
    114       1.1   chuck     } else  {
    115       1.1   chuck 	printf ("REVARP: Failed.\n");
    116       1.1   chuck 	return;
    117       1.1   chuck     }
    118       1.1   chuck     if (do_get_file() == 1) {
    119       1.1   chuck         printf("Download Failed\n");
    120       1.1   chuck         return;
    121       1.1   chuck     } else {
    122       1.1   chuck         printf("Download was a success!\n");
    123       1.1   chuck     }
    124       1.2   chuck     /*FALLTHROUGH*/
    125       1.2   chuck   case 'g':
    126       1.2   chuck     printf("Start @ 0x%x ... \n", LOAD_ADDR);
    127       1.2   chuck     go(LOAD_ADDR, buf+1, ebuf);
    128       1.1   chuck     return;
    129       1.1   chuck   case 'h':
    130       1.1   chuck   case '?':
    131       1.1   chuck     printf("valid commands\n");
    132       1.1   chuck     printf("a - send a RARP\n");
    133       1.1   chuck     printf("b - boot the system\n");
    134       1.1   chuck     printf("e - exit to ROM\n");
    135       1.1   chuck     printf("f - ftp the boot file\n");
    136       1.1   chuck     printf("g - execute the boot file\n");
    137       1.1   chuck     printf("h - help\n");
    138       1.1   chuck     printf("i - init LANCE enet chip\n");
    139       1.1   chuck     return;
    140       1.1   chuck   case 'i':
    141       1.1   chuck     le_init();
    142       1.1   chuck     return;
    143       1.1   chuck   default:
    144       1.1   chuck     printf("sboot: %s: Unknown command\n", buf);
    145       1.1   chuck   }
    146       1.1   chuck }
    147