]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/sh/cpu/sh3/start.S
Add GPL-2.0+ SPDX-License-Identifier to source files
[karo-tx-uboot.git] / arch / sh / cpu / sh3 / start.S
1 /*
2  * (C) Copyright 2007
3  * Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4  *
5  * (C) Copyright 2007
6  * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
7  *
8  * SPDX-License-Identifier:     GPL-2.0+
9  */
10
11 #include <asm-offsets.h>
12 #include <config.h>
13 #include <version.h>
14
15         .text
16         .align  2
17
18         .global _start
19 _sh_start:
20         mov.l   ._lowlevel_init, r0
21 100:    bsrf    r0
22         nop
23
24         bsr     1f
25         nop
26 1:      sts     pr, r5
27         mov.l   ._reloc_dst, r4
28         add     #(_sh_start-1b), r5
29         mov.l   ._reloc_dst_end, r6
30
31 2:      mov.l   @r5+, r1
32         mov.l   r1, @r4
33         add     #4, r4
34         cmp/hs  r6, r4
35         bf      2b
36
37         mov.l   ._bss_start, r4
38         mov.l   ._bss_end, r5
39         mov     #0, r1
40
41 3:      mov.l   r1, @r4                 /* bss clear */
42         add     #4, r4
43         cmp/hs  r5, r4
44         bf      3b
45
46         mov.l   ._gd_init, r13          /* global data */
47         mov.l   ._stack_init, r15       /* stack */
48
49         mov.l   ._sh_generic_init, r0
50         jsr     @r0
51         nop
52
53 loop:
54         bra     loop
55
56         .align  2
57
58 ._lowlevel_init:        .long   (lowlevel_init - (100b + 4))
59 ._reloc_dst:            .long   reloc_dst
60 ._reloc_dst_end:        .long   reloc_dst_end
61 ._bss_start:            .long   bss_start
62 ._bss_end:              .long   bss_end
63 ._gd_init:              .long   (_sh_start - GENERATED_GBL_DATA_SIZE)
64 ._stack_init:   .long   (_sh_start - GENERATED_GBL_DATA_SIZE - CONFIG_SYS_MALLOC_LEN - 16)
65 ._sh_generic_init:      .long   sh_generic_init