2 * CRISv32 kernel startup code.
4 * Copyright (C) 2003, Axis Communications AB
7 #define ASSEMBLER_MACROS_ONLY
10 * The macros found in mmu_defs_asm.h uses the ## concatenation operator, so
11 * -traditional must not be used when assembling this file.
13 #include <linux/autoconf.h>
14 #include <arch/memmap.h>
15 #include <hwregs/reg_rdwr.h>
16 #include <hwregs/intr_vect.h>
17 #include <hwregs/asm/mmu_defs_asm.h>
18 #include <hwregs/asm/reg_map_asm.h>
19 #include <mach/startup.inc>
21 #define CRAMFS_MAGIC 0x28cd3d45
22 #define JHEAD_MAGIC 0x1FF528A6
24 #define RAM_INIT_MAGIC 0x56902387
25 #define COMMAND_LINE_MAGIC 0x87109563
26 #define NAND_BOOT_MAGIC 0x9a9db001
28 ;; NOTE: R8 and R9 carry information from the decompressor (if the
29 ;; kernel was compressed). They must not be used in the code below
30 ;; until they are read!
36 .global romfs_in_flash
38 .global swapper_pg_dir
40 ;; Dummy section to make it bootable with current VCS simulator
41 #ifdef CONFIG_ETRAX_VCS_SIM
42 .section ".boot", "ax"
49 ;; This is the entry point of the kernel. The CPU is currently in
52 ;; 0x00000000 if flash.
53 ;; 0x40004000 if DRAM.
64 secondary_cpu_entry: /* Entry point for secondary CPUs */
68 ;; Setup and enable the MMU. Use same configuration for both the data
69 ;; and the instruction MMU.
71 ;; Note; 3 cycles is needed for a bank-select to take effect. Further;
72 ;; bank 1 is the instruction MMU, bank 2 is the data MMU.
73 #ifndef CONFIG_ETRAX_VCS_SIM
74 move.d REG_FIELD(mmu, rw_mm_kbase_hi, base_e, 8) \
75 | REG_FIELD(mmu, rw_mm_kbase_hi, base_c, 4) \
76 | REG_FIELD(mmu, rw_mm_kbase_hi, base_b, 0xb), $r0
78 ;; Map the virtual DRAM to the RW eprom area at address 0.
79 ;; Also map 0xa for the hook calls,
80 move.d REG_FIELD(mmu, rw_mm_kbase_hi, base_e, 8) \
81 | REG_FIELD(mmu, rw_mm_kbase_hi, base_c, 4) \
82 | REG_FIELD(mmu, rw_mm_kbase_hi, base_b, 0xb) \
83 | REG_FIELD(mmu, rw_mm_kbase_hi, base_a, 0xa), $r0
86 ;; Temporary map of 0x40 -> 0x40 and 0x00 -> 0x00.
87 move.d REG_FIELD(mmu, rw_mm_kbase_lo, base_4, 4) \
88 | REG_FIELD(mmu, rw_mm_kbase_lo, base_0, 0), $r1
90 ;; Enable certain page protections and setup linear mapping
92 #ifndef CONFIG_ETRAX_VCS_SIM
93 move.d REG_STATE(mmu, rw_mm_cfg, we, on) \
94 | REG_STATE(mmu, rw_mm_cfg, acc, on) \
95 | REG_STATE(mmu, rw_mm_cfg, ex, on) \
96 | REG_STATE(mmu, rw_mm_cfg, inv, on) \
97 | REG_STATE(mmu, rw_mm_cfg, seg_f, linear) \
98 | REG_STATE(mmu, rw_mm_cfg, seg_e, linear) \
99 | REG_STATE(mmu, rw_mm_cfg, seg_d, page) \
100 | REG_STATE(mmu, rw_mm_cfg, seg_c, linear) \
101 | REG_STATE(mmu, rw_mm_cfg, seg_b, linear) \
102 | REG_STATE(mmu, rw_mm_cfg, seg_a, page) \
103 | REG_STATE(mmu, rw_mm_cfg, seg_9, page) \
104 | REG_STATE(mmu, rw_mm_cfg, seg_8, page) \
105 | REG_STATE(mmu, rw_mm_cfg, seg_7, page) \
106 | REG_STATE(mmu, rw_mm_cfg, seg_6, page) \
107 | REG_STATE(mmu, rw_mm_cfg, seg_5, page) \
108 | REG_STATE(mmu, rw_mm_cfg, seg_4, linear) \
109 | REG_STATE(mmu, rw_mm_cfg, seg_3, page) \
110 | REG_STATE(mmu, rw_mm_cfg, seg_2, page) \
111 | REG_STATE(mmu, rw_mm_cfg, seg_1, page) \
112 | REG_STATE(mmu, rw_mm_cfg, seg_0, linear), $r2
114 move.d REG_STATE(mmu, rw_mm_cfg, we, on) \
115 | REG_STATE(mmu, rw_mm_cfg, acc, on) \
116 | REG_STATE(mmu, rw_mm_cfg, ex, on) \
117 | REG_STATE(mmu, rw_mm_cfg, inv, on) \
118 | REG_STATE(mmu, rw_mm_cfg, seg_f, linear) \
119 | REG_STATE(mmu, rw_mm_cfg, seg_e, linear) \
120 | REG_STATE(mmu, rw_mm_cfg, seg_d, page) \
121 | REG_STATE(mmu, rw_mm_cfg, seg_c, linear) \
122 | REG_STATE(mmu, rw_mm_cfg, seg_b, linear) \
123 | REG_STATE(mmu, rw_mm_cfg, seg_a, linear) \
124 | REG_STATE(mmu, rw_mm_cfg, seg_9, page) \
125 | REG_STATE(mmu, rw_mm_cfg, seg_8, page) \
126 | REG_STATE(mmu, rw_mm_cfg, seg_7, page) \
127 | REG_STATE(mmu, rw_mm_cfg, seg_6, page) \
128 | REG_STATE(mmu, rw_mm_cfg, seg_5, page) \
129 | REG_STATE(mmu, rw_mm_cfg, seg_4, linear) \
130 | REG_STATE(mmu, rw_mm_cfg, seg_3, page) \
131 | REG_STATE(mmu, rw_mm_cfg, seg_2, page) \
132 | REG_STATE(mmu, rw_mm_cfg, seg_1, page) \
133 | REG_STATE(mmu, rw_mm_cfg, seg_0, linear), $r2
136 ;; Update instruction MMU.
141 move $r0, $s2 ; kbase_hi.
142 move $r1, $s1 ; kbase_lo.
143 move $r2, $s0 ; mm_cfg, virtual memory configuration.
150 move $r0, $s2 ; kbase_hi.
151 move $r1, $s1 ; kbase_lo
152 move $r2, $s0 ; mm_cfg, virtual memory configuration.
154 ;; Enable data and instruction MMU.
156 moveq 0xf, $r0 ; IMMU, DMMU, DCache, Icache on
176 ; Time to boot-up. Get stack location provided by master CPU.
177 move.d smp_init_current_idle_thread, $r1
180 move.d ebp_start, $r0 ; Defined in linker-script.
185 /* Set up entry point for secondary CPUs. The boot ROM has set up
186 * EBP at start of internal memory. The CPU will get there
187 * later when we issue an IPI to them... */
188 move.d MEM_INTMEM_START + IPI_INTR_VECT * 4, $r0
189 move.d secondary_cpu_entry, $r1
192 #ifndef CONFIG_ETRAX_VCS_SIM
193 ; Check if starting from DRAM (network->RAM boot or unpacked
194 ; compressed kernel), or directly from flash.
196 and.d 0x7fffffff, $r0 ; Mask off the non-cache bit.
197 cmp.d 0x10000, $r0 ; Arbitrary, something above this code.
202 jump _inram ; Jump to cached RAM.
210 ;; Put the following in a section so that storage for it can be
211 ;; reclaimed after init is finished.
212 .section ".init.text", "ax"
217 cmp.d RAM_INIT_MAGIC, $r8 ; Already initialized?
218 beq _dram_initialized
221 #if defined CONFIG_ETRAXFS
222 #include "../mach-fs/dram_init.S"
223 #elif defined CONFIG_CRIS_MACH_ARTPEC3
224 #include "../mach-a3/dram_init.S"
226 #error Only ETRAXFS and ARTPEC-3 supported!
231 ;; Copy the text and data section to DRAM. This depends on that the
232 ;; variables used below are correctly set up by the linker script.
233 ;; The calculated value stored in R4 is used below.
234 ;; Leave the cramfs file system (piggybacked after the kernel) in flash.
235 moveq 0, $r0 ; Source.
236 move.d text_start, $r1 ; Destination.
237 move.d __vmlinux_end, $r2
240 1: move.w [$r0+], $r3
248 move.d romfs_length, $r1
250 move.d [$r4], $r0 ; cramfs_super.magic
251 cmp.d CRAMFS_MAGIC, $r0
255 ;; Set length and start of cramfs, set romfs_in_flash flag
258 move.d romfs_length, $r1
260 add.d 0xf0000000, $r4 ; Add cached flash start in virtual memory.
261 move.d romfs_start, $r1
264 move.d romfs_in_flash, $r1
267 jump _start_it ; Jump to cached code.
271 ;; Check if booting from NAND flash; if so, set appropriate flags
273 cmp.d NAND_BOOT_MAGIC, $r12
274 bne move_cramfs ; not nand, jump
276 move.d nand_boot, $r1 ; tell axisflashmap we're booting from NAND
278 moveq 0, $r0 ; tell axisflashmap romfs is not in
279 move.d romfs_in_flash, $r1 ; (directly accessed) flash
281 jump _start_it ; continue with boot
285 ;; kernel is in DRAM.
286 ;; Must figure out if there is a piggybacked rootfs image or not.
287 ;; Set romfs_length to 0 => no rootfs image available by default.
289 move.d romfs_length, $r1
292 #ifndef CONFIG_ETRAX_VCS_SIM
293 ;; The kernel could have been unpacked to DRAM by the loader, but
294 ;; the cramfs image could still be in the flash immediately
295 ;; following the compressed kernel image. The loader passes the address
296 ;; of the byte succeeding the last compressed byte in the flash in
297 ;; register R9 when starting the kernel.
298 cmp.d 0x0ffffff8, $r9
299 bhs _no_romfs_in_flash ; R9 points outside the flash area.
302 ba _no_romfs_in_flash
305 ;; cramfs rootfs might to be in flash. Check for it.
306 move.d [$r9], $r0 ; cramfs_super.magic
307 cmp.d CRAMFS_MAGIC, $r0
308 bne _no_romfs_in_flash
311 ;; found cramfs in flash. set address and size, and romfs_in_flash flag.
314 move.d romfs_length, $r1
316 add.d 0xf0000000, $r9 ; Add cached flash start in virtual memory.
317 move.d romfs_start, $r1
320 move.d romfs_in_flash, $r1
323 jump _start_it ; Jump to cached code.
327 ;; No romfs in flash, so look for cramfs, or jffs2 with jhead,
328 ;; after kernel in RAM, as is the case with network->RAM boot.
329 ;; For cramfs, partition starts with magic and length.
330 ;; For jffs2, a jhead is prepended which contains with magic and length.
331 ;; The jhead is not part of the jffs2 partition however.
332 #ifndef CONFIG_ETRAXFS_SIM
333 move.d __vmlinux_end, $r0
338 cmp.d CRAMFS_MAGIC, $r1 ; cramfs magic?
341 cmp.d JHEAD_MAGIC, $r1 ; jffs2 (jhead) magic?
342 bne 4f ; no, skip copy
344 addq 4, $r0 ; location of jffs2 size
345 move.d [$r0+], $r2 ; fetch jffs2 size -> r2
346 ; r0 now points to start of jffs2
350 addoq +4, $r0, $acr ; location of cramfs size
351 move.d [$acr], $r2 ; fetch cramfs size -> r2
352 ; r0 still points to start of cramfs
354 ;; Now, move the root fs to after kernel's BSS
356 move.d _end, $r1 ; start of cramfs -> r1
357 move.d romfs_start, $r3
358 move.d $r1, [$r3] ; store at romfs_start (for axisflashmap)
359 move.d romfs_length, $r3
360 move.d $r2, [$r3] ; store size at romfs_length
362 #ifndef CONFIG_ETRAX_VCS_SIM
363 add.d $r2, $r0 ; copy from end and downwards
366 lsrq 1, $r2 ; Size is in bytes, we copy words.
380 ;; Clear romfs_in_flash flag, as we now know romfs is in DRAM
381 ;; Also clear nand_boot flag; if we got here, we know we've not
382 ;; booted from NAND flash.
384 move.d romfs_in_flash, $r1
387 move.d nand_boot, $r1
390 jump _start_it ; Jump to cached code.
395 ;; Check if kernel command line is supplied
396 cmp.d COMMAND_LINE_MAGIC, $r10
401 move.d cris_command_line, $r10
402 or.d 0x80000000, $r11 ; Make it virtual
412 ;; The kernel stack contains a task structure for each task. This
413 ;; the initial kernel stack is in the same page as the init_task,
414 ;; but starts at the top of the page, i.e. + 8192 bytes.
415 move.d init_thread_union + 8192, $sp
416 move.d ebp_start, $r0 ; Defined in linker-script.
418 move.d etrax_irv, $r1 ; Set the exception base register and pointer.
421 #ifndef CONFIG_ETRAX_VCS_SIM
422 ;; Clear the BSS region from _bss_start to _end.
423 move.d __bss_start, $r0
431 #ifdef CONFIG_ETRAX_VCS_SIM
432 /* Set the watchdog timeout to something big. Will be removed when */
433 /* watchdog can be disabled with command line option */
434 move.d 0x7fffffff, $r10
435 jsr CPU_WATCHDOG_TIMEOUT
439 ; Initialize registers to increase determinism
440 move.d __bss_start, $r0
443 #ifdef CONFIG_ETRAX_L2CACHE
448 jump start_kernel ; Jump to start_kernel() in init/main.c.
455 ; Variables for communication with the Axis flash map driver (axisflashmap),
456 ; and for setting up memory in arch/cris/kernel/setup.c .
458 ; romfs_start is set to the start of the root file system, if it exists
459 ; in directly accessible memory (i.e. NOR Flash when booting from Flash,
460 ; or RAM when booting directly from a network-downloaded RAM image)
464 ; romfs_length is set to the size of the root file system image, if it exists
465 ; in directly accessible memory (see romfs_start). Otherwise it is set to 0.
469 ; romfs_in_flash is set to 1 if the root file system resides in directly
470 ; accessible flash memory (i.e. NOR flash). It is set to 0 for RAM boot
471 ; or NAND flash boot.
475 ; nand_boot is set to 1 when the kernel has been booted from NAND flash
479 swapper_pg_dir = 0xc0002000
481 .section ".init.data", "aw"
483 #if defined CONFIG_ETRAXFS
484 #include "../mach-fs/hw_settings.S"
485 #elif defined CONFIG_CRIS_MACH_ARTPEC3
486 #include "../mach-a3/hw_settings.S"
488 #error Only ETRAXFS and ARTPEC-3 supported!