1 | /* Support for standalone CRIS/CRISv32 code. |
---|
2 | Copyright (C) 2005, 2007 Axis Communications. |
---|
3 | All rights reserved. |
---|
4 | |
---|
5 | Redistribution and use in source and binary forms, with or without |
---|
6 | modification, are permitted provided that the following conditions |
---|
7 | are met: |
---|
8 | |
---|
9 | 1. Redistributions of source code must retain the above copyright |
---|
10 | notice, this list of conditions and the following disclaimer. |
---|
11 | |
---|
12 | 2. Neither the name of Axis Communications nor the names of its |
---|
13 | contributors may be used to endorse or promote products derived |
---|
14 | from this software without specific prior written permission. |
---|
15 | |
---|
16 | THIS SOFTWARE IS PROVIDED BY AXIS COMMUNICATIONS AND ITS CONTRIBUTORS |
---|
17 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
---|
18 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
---|
19 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL AXIS |
---|
20 | COMMUNICATIONS OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, |
---|
21 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
---|
22 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
---|
23 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
---|
24 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
---|
25 | STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING |
---|
26 | IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
---|
27 | POSSIBILITY OF SUCH DAMAGE. */ |
---|
28 | |
---|
29 | .text |
---|
30 | .global __setup |
---|
31 | __setup: |
---|
32 | /* Make sure to save SRP. */ |
---|
33 | #ifdef __arch_common_v10_v32 |
---|
34 | /* Can't do anything if we don't know for which arch. This file is |
---|
35 | then only a placeholder. Oh, and we can't use the "ret" and "nop" |
---|
36 | insns in "common" code. */ |
---|
37 | move $srp,$r9 |
---|
38 | jump $r9 |
---|
39 | setf |
---|
40 | #else |
---|
41 | /* Code missing: |
---|
42 | - Initialize RAM circuits. |
---|
43 | - Initialize serial output and input. |
---|
44 | - Set stack-pointer. */ |
---|
45 | ret |
---|
46 | nop |
---|
47 | #endif |
---|