2 * linux/arch/arm/kernel/head.S
4 * Copyright (C) 1994-2002 Russell King
5 * Copyright (c) 2003 ARM Limited
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 * Kernel startup code for all 32-bit CPUs
14 #include <linux/linkage.h>
15 #include <linux/init.h>
17 #include <asm/assembler.h>
18 #include <asm/domain.h>
19 #include <asm/ptrace.h>
20 #include <asm/asm-offsets.h>
21 #include <asm/memory.h>
22 #include <asm/thread_info.h>
23 #include <asm/system.h>
25 #ifdef CONFIG_DEBUG_LL
26 #include <mach/debug-macro.S>
29 #if (PHYS_OFFSET & 0x001fffff)
30 #error "PHYS_OFFSET must be at an even 2MiB boundary!"
33 #define KERNEL_RAM_VADDR (PAGE_OFFSET + TEXT_OFFSET)
34 #define KERNEL_RAM_PADDR (PHYS_OFFSET + TEXT_OFFSET)
38 * swapper_pg_dir is the virtual address of the initial page table.
39 * We place the page tables 16K below KERNEL_RAM_VADDR. Therefore, we must
40 * make sure that KERNEL_RAM_VADDR is correctly set. Currently, we expect
41 * the least significant 16 bits to be 0x8000, but we could probably
42 * relax this restriction to KERNEL_RAM_VADDR >= PAGE_OFFSET + 0x4000.
44 #if (KERNEL_RAM_VADDR & 0xffff) != 0x8000
45 #error KERNEL_RAM_VADDR must start at 0xXXXX8000
49 .equ swapper_pg_dir, KERNEL_RAM_VADDR - 0x4000
52 ldr \rd, =(KERNEL_RAM_PADDR - 0x4000)
55 #ifdef CONFIG_XIP_KERNEL
56 #define KERNEL_START XIP_VIRT_ADDR(CONFIG_XIP_PHYS_ADDR)
57 #define KERNEL_END _edata_loc
59 #define KERNEL_START KERNEL_RAM_VADDR
60 #define KERNEL_END _end
64 * Kernel startup entry point.
65 * ---------------------------
67 * This is normally called from the decompressor code. The requirements
68 * are: MMU = off, D-cache = off, I-cache = dont care, r0 = 0,
69 * r1 = machine nr, r2 = atags pointer.
71 * This code is mostly position independent, so if you link the kernel at
72 * 0xc0008000, you call this at __pa(0xc0008000).
74 * See linux/arch/arm/tools/mach-types for the complete list of machine
77 * We're trying to keep crap to a minimum; DO NOT add any machine specific
78 * crap here - that's what the boot loader (or in extreme, well justified
79 * circumstances, zImage) is for.
83 setmode PSR_F_BIT | PSR_I_BIT | SVC_MODE, r9 @ ensure svc mode
85 mrc p15, 0, r9, c0, c0 @ get processor id
86 bl __lookup_processor_type @ r5=procinfo r9=cpuid
87 movs r10, r5 @ invalid processor (r5=0)?
88 THUMB( it eq ) @ force fixup-able long branch encoding
89 beq __error_p @ yes, error 'p'
92 * r1 = machine no, r2 = atags,
93 * r9 = cpuid, r10 = procinfo
96 #ifdef CONFIG_SMP_ON_UP
99 bl __create_page_tables
102 * The following calls CPU specific code in a position independent
103 * manner. See arch/arm/mm/proc-*.S for details. r10 = base of
104 * xxx_proc_info structure selected by __lookup_processor_type
105 * above. On return, the CPU will be ready for the MMU to be
106 * turned on, and r0 will hold the CPU control register value.
108 ldr r13, =__mmap_switched @ address to jump to after
109 @ mmu has been enabled
110 adr lr, BSYM(1f) @ return (PIC) address
111 ARM( add pc, r10, #PROCINFO_INITFUNC )
112 THUMB( add r12, r10, #PROCINFO_INITFUNC )
119 * Setup the initial page tables. We only setup the barest
120 * amount which are required to get the kernel running, which
121 * generally means mapping in the kernel code.
127 * r0, r3, r5-r7 corrupted
128 * r4 = physical page table address
130 __create_page_tables:
131 pgtbl r4 @ page table address
134 * Clear the 16K level 1 swapper page table
146 ldr r7, [r10, #PROCINFO_MM_MMUFLAGS] @ mm_mmuflags
149 * Create identity mapping to cater for __enable_mmu.
150 * This identity mapping will be removed by paging_init().
152 adr r0, __enable_mmu_loc
153 ldmia r0, {r3, r5, r6}
154 sub r0, r0, r3 @ virt->phys offset
155 add r5, r5, r0 @ phys __enable_mmu
156 add r6, r6, r0 @ phys __enable_mmu_end
160 1: orr r3, r7, r5, lsl #20 @ flags + kernel base
161 str r3, [r4, r5, lsl #2] @ identity mapping
163 addne r5, r5, #1 @ next section
167 * Now setup the pagetables for our kernel direct
172 orr r3, r7, r3, lsl #20
173 add r0, r4, #(KERNEL_START & 0xff000000) >> 18
174 str r3, [r0, #(KERNEL_START & 0x00f00000) >> 18]!
175 ldr r6, =(KERNEL_END - 1)
177 add r6, r4, r6, lsr #18
183 #ifdef CONFIG_XIP_KERNEL
185 * Map some ram to cover our .data and .bss areas.
187 orr r3, r7, #(KERNEL_RAM_PADDR & 0xff000000)
188 .if (KERNEL_RAM_PADDR & 0x00f00000)
189 orr r3, r3, #(KERNEL_RAM_PADDR & 0x00f00000)
191 add r0, r4, #(KERNEL_RAM_VADDR & 0xff000000) >> 18
192 str r3, [r0, #(KERNEL_RAM_VADDR & 0x00f00000) >> 18]!
195 add r6, r4, r6, lsr #18
203 * Then map first 1MB of ram in case it contains our boot params.
205 add r0, r4, #PAGE_OFFSET >> 18
206 orr r6, r7, #(PHYS_OFFSET & 0xff000000)
207 .if (PHYS_OFFSET & 0x00f00000)
208 orr r6, r6, #(PHYS_OFFSET & 0x00f00000)
212 #ifdef CONFIG_DEBUG_LL
213 #ifndef CONFIG_DEBUG_ICEDCC
215 * Map in IO space for serial debugging.
216 * This allows debug messages to be output
217 * via a serial console before paging_init.
225 rsb r3, r3, #0x4000 @ PTRS_PER_PGD*sizeof(long)
226 cmp r3, #0x0800 @ limit to 512MB
230 ldr r7, [r10, #PROCINFO_IO_MMUFLAGS] @ io_mmuflags
231 orr r3, r7, r3, lsl #20
237 #else /* CONFIG_DEBUG_ICEDCC */
238 /* we don't need any serial debugging mappings for ICEDCC */
239 ldr r7, [r10, #PROCINFO_IO_MMUFLAGS] @ io_mmuflags
240 #endif /* !CONFIG_DEBUG_ICEDCC */
242 #if defined(CONFIG_ARCH_NETWINDER) || defined(CONFIG_ARCH_CATS)
244 * If we're using the NetWinder or CATS, we also need to map
245 * in the 16550-type serial port for the debug messages
247 add r0, r4, #0xff000000 >> 18
248 orr r3, r7, #0x7c000000
251 #ifdef CONFIG_ARCH_RPC
253 * Map in screen at 0x02000000 & SCREEN2_BASE
254 * Similar reasons here - for debug. This is
255 * only for Acorn RiscPC architectures.
257 add r0, r4, #0x02000000 >> 18
258 orr r3, r7, #0x02000000
260 add r0, r4, #0xd8000000 >> 18
265 ENDPROC(__create_page_tables)
271 .long __enable_mmu_end
273 #if defined(CONFIG_SMP)
275 ENTRY(secondary_startup)
277 * Common entry point for secondary CPUs.
279 * Ensure that we're in SVC mode, and IRQs are disabled. Lookup
280 * the processor type - there is no need to check the machine type
281 * as it has already been validated by the primary processor.
283 setmode PSR_F_BIT | PSR_I_BIT | SVC_MODE, r9
284 mrc p15, 0, r9, c0, c0 @ get processor id
285 bl __lookup_processor_type
286 movs r10, r5 @ invalid processor?
287 moveq r0, #'p' @ yes, error 'p'
288 THUMB( it eq ) @ force fixup-able long branch encoding
292 * Use the page tables supplied from __cpu_up.
294 adr r4, __secondary_data
295 ldmia r4, {r5, r7, r12} @ address to jump to after
296 sub r4, r4, r5 @ mmu has been enabled
297 ldr r4, [r7, r4] @ get secondary_data.pgdir
298 adr lr, BSYM(__enable_mmu) @ return address
299 mov r13, r12 @ __secondary_switched address
300 ARM( add pc, r10, #PROCINFO_INITFUNC ) @ initialise processor
301 @ (return control reg)
302 THUMB( add r12, r10, #PROCINFO_INITFUNC )
304 ENDPROC(secondary_startup)
307 * r6 = &secondary_data
309 ENTRY(__secondary_switched)
310 ldr sp, [r7, #4] @ get secondary_data.stack
312 b secondary_start_kernel
313 ENDPROC(__secondary_switched)
317 .type __secondary_data, %object
321 .long __secondary_switched
322 #endif /* defined(CONFIG_SMP) */
327 * Setup common bits before finally enabling the MMU. Essentially
328 * this is just loading the page table pointer and domain access
331 * r0 = cp#15 control register
334 * r4 = page table pointer
336 * r13 = *virtual* address to jump to upon completion
339 #ifdef CONFIG_ALIGNMENT_TRAP
344 #ifdef CONFIG_CPU_DCACHE_DISABLE
347 #ifdef CONFIG_CPU_BPREDICT_DISABLE
350 #ifdef CONFIG_CPU_ICACHE_DISABLE
353 mov r5, #(domain_val(DOMAIN_USER, DOMAIN_MANAGER) | \
354 domain_val(DOMAIN_KERNEL, DOMAIN_MANAGER) | \
355 domain_val(DOMAIN_TABLE, DOMAIN_MANAGER) | \
356 domain_val(DOMAIN_IO, DOMAIN_CLIENT))
357 mcr p15, 0, r5, c3, c0, 0 @ load domain access register
358 mcr p15, 0, r4, c2, c0, 0 @ load page table pointer
360 ENDPROC(__enable_mmu)
363 * Enable the MMU. This completely changes the structure of the visible
364 * memory space. You will not be able to trace execution through this.
365 * If you have an enquiry about this, *please* check the linux-arm-kernel
366 * mailing list archives BEFORE sending another post to the list.
368 * r0 = cp#15 control register
372 * r13 = *virtual* address to jump to upon completion
374 * other registers depend on the function called upon completion
379 mcr p15, 0, r0, c1, c0, 0 @ write control reg
380 mrc p15, 0, r3, c0, c0, 0 @ read id reg
385 ENDPROC(__turn_mmu_on)
388 #ifdef CONFIG_SMP_ON_UP
390 and r3, r9, #0x000f0000 @ architecture version
391 teq r3, #0x000f0000 @ CPU ID supported?
392 bne __fixup_smp_on_up @ no, assume UP
394 bic r3, r9, #0x00ff0000
395 bic r3, r3, #0x0000000f @ mask 0xff00fff0
397 orr r4, r4, #0x0000b000
398 orr r4, r4, #0x00000020 @ val 0x4100b020
399 teq r3, r4 @ ARM 11MPCore?
400 moveq pc, lr @ yes, assume SMP
402 mrc p15, 0, r0, c0, c0, 5 @ read MPIDR
403 and r0, r0, #0xc0000000 @ multiprocessing extensions and
404 teq r0, #0x80000000 @ not part of a uniprocessor system?
405 moveq pc, lr @ yes, assume SMP
416 ARM( str r6, [r0, r3] )
417 THUMB( add r0, r0, r3 )
419 THUMB( mov r6, r6, ror #16 ) @ Convert word order for big-endian.
421 THUMB( strh r6, [r0], #2 ) @ For Thumb-2, store as two halfwords
422 THUMB( mov r6, r6, lsr #16 ) @ to be robust against misaligned r3.
423 THUMB( strh r6, [r0] )
441 #include "head-common.S"