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