Home | History | Annotate | Line # | Download | only in boot
start.S revision 1.2
      1  1.2  tsutsui /*	$NetBSD: start.S,v 1.2 2005/04/21 13:52:27 tsutsui Exp $	*/
      2  1.1  tsutsui 
      3  1.1  tsutsui /*-
      4  1.1  tsutsui  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5  1.1  tsutsui  * All rights reserved.
      6  1.1  tsutsui  *
      7  1.1  tsutsui  * This code is derived from software contributed to The NetBSD Foundation
      8  1.1  tsutsui  * by Jonathan Stone, Michael Hitch and Simon Burge.
      9  1.1  tsutsui  *
     10  1.1  tsutsui  * Redistribution and use in source and binary forms, with or without
     11  1.1  tsutsui  * modification, are permitted provided that the following conditions
     12  1.1  tsutsui  * are met:
     13  1.1  tsutsui  * 1. Redistributions of source code must retain the above copyright
     14  1.1  tsutsui  *    notice, this list of conditions and the following disclaimer.
     15  1.1  tsutsui  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1  tsutsui  *    notice, this list of conditions and the following disclaimer in the
     17  1.1  tsutsui  *    documentation and/or other materials provided with the distribution.
     18  1.1  tsutsui  * 3. All advertising materials mentioning features or use of this software
     19  1.1  tsutsui  *    must display the following acknowledgement:
     20  1.1  tsutsui  *        This product includes software developed by the NetBSD
     21  1.1  tsutsui  *        Foundation, Inc. and its contributors.
     22  1.1  tsutsui  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.1  tsutsui  *    contributors may be used to endorse or promote products derived
     24  1.1  tsutsui  *    from this software without specific prior written permission.
     25  1.1  tsutsui  *
     26  1.1  tsutsui  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.1  tsutsui  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.1  tsutsui  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.1  tsutsui  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.1  tsutsui  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.1  tsutsui  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.1  tsutsui  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.1  tsutsui  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.1  tsutsui  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.1  tsutsui  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.1  tsutsui  * POSSIBILITY OF SUCH DAMAGE.
     37  1.1  tsutsui  */
     38  1.1  tsutsui 
     39  1.1  tsutsui /*
     40  1.1  tsutsui  * Copyright (c) 1992, 1993
     41  1.1  tsutsui  *	The Regents of the University of California.  All rights reserved.
     42  1.1  tsutsui  *
     43  1.1  tsutsui  * This code is derived from software contributed to Berkeley by
     44  1.1  tsutsui  * Ralph Campbell.
     45  1.1  tsutsui  *
     46  1.1  tsutsui  * Redistribution and use in source and binary forms, with or without
     47  1.1  tsutsui  * modification, are permitted provided that the following conditions
     48  1.1  tsutsui  * are met:
     49  1.1  tsutsui  * 1. Redistributions of source code must retain the above copyright
     50  1.1  tsutsui  *    notice, this list of conditions and the following disclaimer.
     51  1.1  tsutsui  * 2. Redistributions in binary form must reproduce the above copyright
     52  1.1  tsutsui  *    notice, this list of conditions and the following disclaimer in the
     53  1.1  tsutsui  *    documentation and/or other materials provided with the distribution.
     54  1.1  tsutsui  * 3. Neither the name of the University nor the names of its contributors
     55  1.1  tsutsui  *    may be used to endorse or promote products derived from this software
     56  1.1  tsutsui  *    without specific prior written permission.
     57  1.1  tsutsui  *
     58  1.1  tsutsui  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     59  1.1  tsutsui  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     60  1.1  tsutsui  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     61  1.1  tsutsui  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     62  1.1  tsutsui  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     63  1.1  tsutsui  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     64  1.1  tsutsui  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     65  1.1  tsutsui  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     66  1.1  tsutsui  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     67  1.1  tsutsui  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     68  1.1  tsutsui  * SUCH DAMAGE.
     69  1.1  tsutsui  *
     70  1.1  tsutsui  *	@(#)start.s	8.2 (Berkeley) 1/21/94
     71  1.1  tsutsui  */
     72  1.1  tsutsui 
     73  1.1  tsutsui /*
     74  1.1  tsutsui  * start.s -
     75  1.1  tsutsui  *
     76  1.1  tsutsui  *     Contains code that is the first executed at boot time.
     77  1.1  tsutsui  *
     78  1.1  tsutsui  *	Copyright (C) 1989 Digital Equipment Corporation.
     79  1.1  tsutsui  *	Permission to use, copy, modify, and distribute this software and
     80  1.1  tsutsui  *	its documentation for any purpose and without fee is hereby granted,
     81  1.2  tsutsui  *	provided that the above copyright notice appears in all copies.
     82  1.1  tsutsui  *	Digital Equipment Corporation makes no representations about the
     83  1.1  tsutsui  *	suitability of this software for any purpose.  It is provided "as is"
     84  1.1  tsutsui  *	without express or implied warranty.
     85  1.1  tsutsui  *
     86  1.1  tsutsui  * from: Header: /sprite/src/boot/decprom/ds3100.md/RCS/start.s,
     87  1.1  tsutsui  *	v 1.1 90/02/16 16:19:39 shirriff Exp  SPRITE (DECWRL)
     88  1.1  tsutsui  */
     89  1.1  tsutsui 
     90  1.1  tsutsui #include <mips/asm.h>
     91  1.1  tsutsui #include <mips/cpuregs.h>
     92  1.1  tsutsui 
     93  1.1  tsutsui 	.globl	start
     94  1.1  tsutsui start:
     95  1.1  tsutsui 	.set	noreorder
     96  1.1  tsutsui #ifdef __GP_SUPPORT__
     97  1.1  tsutsui 	la      gp, _C_LABEL (_gp)
     98  1.1  tsutsui #endif
     99  1.1  tsutsui 	addi	sp, -CALLFRAME_SIZ
    100  1.1  tsutsui 	sw	ra, CALLFRAME_RA(sp)		# save ra
    101  1.1  tsutsui 	sw	a0, 0(sp)			# save argc
    102  1.1  tsutsui 	sw	a1, 4(sp)			# save argv
    103  1.1  tsutsui 	sw	a2, 8(sp)			# save envp
    104  1.1  tsutsui 
    105  1.1  tsutsui 	la	v0, 0x80001000			# ARCBIOS_SPB
    106  1.1  tsutsui 	lw	v0, 8 * 4(v0)			# FirmwareVector
    107  1.1  tsutsui 	sw	v0, _C_LABEL(ARCBIOS)		# save ARCBIOS
    108  1.1  tsutsui 	lw	v0, 136(v0)			# (*ARCBIOS->FlushAllCache)()
    109  1.1  tsutsui 	jalr	v0
    110  1.1  tsutsui 	 nop
    111  1.1  tsutsui 	la	a0, _C_LABEL (edata)		# clear BSS
    112  1.1  tsutsui 	move	a1, zero
    113  1.1  tsutsui 	la	a2, _C_LABEL (end)
    114  1.1  tsutsui 	jal	_C_LABEL(memset)		# memset(edata, 0, end - edata)
    115  1.1  tsutsui 	 subu	a2, a2, a0
    116  1.1  tsutsui 	lw	a0, 0(sp)			# restore argc
    117  1.1  tsutsui 	lw	a1, 4(sp)			# restore argv
    118  1.1  tsutsui 	jal	_C_LABEL(main)			# main(argc, argv, envp)
    119  1.1  tsutsui 	 lw	a2, 8(sp)			# restore envp
    120  1.1  tsutsui 	lw	ra, CALLFRAME_RA(sp)		# restore RA
    121  1.1  tsutsui 	j	ra
    122  1.1  tsutsui 	 addi	sp, CALLFRAME_SIZ
    123  1.1  tsutsui 
    124  1.1  tsutsui 	.data
    125  1.1  tsutsui 	.global ARCBIOS
    126  1.1  tsutsui ARCBIOS:
    127  1.1  tsutsui 	.data 0
    128