blob: 9edb8ade7e1fa90da627cd067258607a8b7f50e9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/cris/boot/compressed/head.S
3 *
4 * Copyright (C) 1999, 2001 Axis Communications AB
5 *
6 * Code that sets up the DRAM registers, calls the
7 * decompressor to unpack the piggybacked kernel, and jumps.
8 *
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#define ASSEMBLER_MACROS_ONLY
Jesper Nilsson556dcee2008-10-21 17:45:58 +020012#include <arch/sv_addr_ag.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
14#define RAM_INIT_MAGIC 0x56902387
Mikael Starvik7cf32ca2005-07-27 11:44:38 -070015#define COMMAND_LINE_MAGIC 0x87109563
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 ;; Exported symbols
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Jesper Nilssonbdb144b2008-06-29 23:15:19 +020019 .globl input_data
20
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 .text
23
24 nop
25 di
26
27;; We need to initialze DRAM registers before we start using the DRAM
Jesper Nilssonbdb144b2008-06-29 23:15:19 +020028
29 cmp.d RAM_INIT_MAGIC, $r8 ; Already initialized?
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 beq dram_init_finished
31 nop
Jesper Nilssonbdb144b2008-06-29 23:15:19 +020032
Jesper Nilsson66ab3a72009-04-21 11:44:57 +020033#include "../../arch-v10/lib/dram_init.S"
Jesper Nilssonbdb144b2008-06-29 23:15:19 +020034
35dram_init_finished:
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 ;; Initiate the PA and PB ports
38
Jesper Nilssonbdb144b2008-06-29 23:15:19 +020039 move.b CONFIG_ETRAX_DEF_R_PORT_PA_DATA, $r0
40 move.b $r0, [R_PORT_PA_DATA]
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Jesper Nilssonbdb144b2008-06-29 23:15:19 +020042 move.b CONFIG_ETRAX_DEF_R_PORT_PA_DIR, $r0
43 move.b $r0, [R_PORT_PA_DIR]
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Jesper Nilssonbdb144b2008-06-29 23:15:19 +020045 move.b CONFIG_ETRAX_DEF_R_PORT_PB_DATA, $r0
46 move.b $r0, [R_PORT_PB_DATA]
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Jesper Nilssonbdb144b2008-06-29 23:15:19 +020048 move.b CONFIG_ETRAX_DEF_R_PORT_PB_DIR, $r0
49 move.b $r0, [R_PORT_PB_DIR]
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51 ;; Setup the stack to a suitably high address.
52 ;; We assume 8 MB is the minimum DRAM in an eLinux
53 ;; product and put the sp at the top for now.
54
Jesper Nilssonbdb144b2008-06-29 23:15:19 +020055 move.d 0x40800000, $sp
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57 ;; Figure out where the compressed piggyback image is
58 ;; in the flash (since we wont try to copy it to DRAM
59 ;; before unpacking). It is at _edata, but in flash.
60 ;; Use (_edata - basse) as offset to the current PC.
Jesper Nilssonbdb144b2008-06-29 23:15:19 +020061
62basse: move.d $pc, $r5
63 and.d 0x7fffffff, $r5 ; strip any non-cache bit
64 subq 2, $r5 ; compensate for the move.d $pc instr
65 move.d $r5, $r0 ; save for later - flash address of 'basse'
66 add.d _edata, $r5
67 sub.d basse, $r5 ; $r5 = flash address of '_edata'
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 ;; Copy text+data to DRAM
Jesper Nilssonbdb144b2008-06-29 23:15:19 +020070
71 move.d basse, $r1 ; destination
72 move.d _edata, $r2 ; end destination
731: move.w [$r0+], $r3
74 move.w $r3, [$r1+]
75 cmp.d $r2, $r1
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 bcs 1b
77 nop
78
Jesper Nilssonbdb144b2008-06-29 23:15:19 +020079 move.d $r5, [input_data] ; for the decompressor
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81
82 ;; Clear the decompressors BSS (between _edata and _end)
Jesper Nilssonbdb144b2008-06-29 23:15:19 +020083
84 moveq 0, $r0
85 move.d _edata, $r1
86 move.d _end, $r2
871: move.w $r0, [$r1+]
88 cmp.d $r2, $r1
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 bcs 1b
90 nop
Mikael Starvik7cf32ca2005-07-27 11:44:38 -070091
92 ;; Save command line magic and address.
93 move.d _cmd_line_magic, $r12
94 move.d $r10, [$r12]
95 move.d _cmd_line_addr, $r12
96 move.d $r11, [$r12]
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Jesper Nilssonbdb144b2008-06-29 23:15:19 +020098 ;; Do the decompression and save compressed size in inptr
99
100 jsr decompress_kernel
101
102 ;; Put start address of root partition in $r9 so the kernel can use it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 ;; when mounting from flash
104
Jesper Nilssonbdb144b2008-06-29 23:15:19 +0200105 move.d [input_data], $r9 ; flash address of compressed kernel
106 add.d [inptr], $r9 ; size of compressed kernel
Mikael Starvik7cf32ca2005-07-27 11:44:38 -0700107
108 ;; Restore command line magic and address.
109 move.d _cmd_line_magic, $r10
110 move.d [$r10], $r10
111 move.d _cmd_line_addr, $r11
112 move.d [$r11], $r11
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 ;; Enter the decompressed kernel
Jesper Nilssonbdb144b2008-06-29 23:15:19 +0200115 move.d RAM_INIT_MAGIC, $r8 ; Tell kernel that DRAM is initialized
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 jump 0x40004000 ; kernel is linked to this address
Jesper Nilssonbdb144b2008-06-29 23:15:19 +0200117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 .data
119
Jesper Nilssonbdb144b2008-06-29 23:15:19 +0200120input_data:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 .dword 0 ; used by the decompressor
Mikael Starvik7cf32ca2005-07-27 11:44:38 -0700122_cmd_line_magic:
123 .dword 0
124_cmd_line_addr:
125 .dword 0
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200126#include "../../arch-v10/lib/hw_settings.S"