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