blob: d848f3a38924bb90a5e6d78844fc222558638c89 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/kernel/head.S
3 *
4 * Copyright (C) 1994-2002 Russell King
Russell Kinge65f38e2005-06-18 09:33:31 +01005 * Copyright (c) 2003 ARM Limited
6 * All Rights Reserved
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
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.
11 *
12 * Kernel startup code for all 32-bit CPUs
13 */
14#include <linux/config.h>
15#include <linux/linkage.h>
16#include <linux/init.h>
17
18#include <asm/assembler.h>
19#include <asm/domain.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/procinfo.h>
21#include <asm/ptrace.h>
Sam Ravnborge6ae7442005-09-09 21:08:59 +020022#include <asm/asm-offsets.h>
Nicolas Pitref09b9972005-10-29 21:44:55 +010023#include <asm/memory.h>
Russell King4f7a1812005-05-05 13:11:00 +010024#include <asm/thread_info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/system.h>
26
27#define PROCINFO_MMUFLAGS 8
28#define PROCINFO_INITFUNC 12
29
30#define MACHINFO_TYPE 0
31#define MACHINFO_PHYSRAM 4
32#define MACHINFO_PHYSIO 8
33#define MACHINFO_PGOFFIO 12
34#define MACHINFO_NAME 16
35
Russell King9d4f13e2006-01-03 17:28:33 +000036#define KERNEL_RAM_ADDR (PAGE_OFFSET + TEXT_OFFSET)
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038/*
Nicolas Pitre37d07b72005-10-29 21:44:56 +010039 * swapper_pg_dir is the virtual address of the initial page table.
40 * We place the page tables 16K below KERNEL_RAM_ADDR. Therefore, we must
41 * make sure that KERNEL_RAM_ADDR is correctly set. Currently, we expect
42 * the least significant 16 bits to be 0x8000, but we could probably
43 * relax this restriction to KERNEL_RAM_ADDR >= PAGE_OFFSET + 0x4000.
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 */
Nicolas Pitre37d07b72005-10-29 21:44:56 +010045#if (KERNEL_RAM_ADDR & 0xffff) != 0x8000
46#error KERNEL_RAM_ADDR must start at 0xXXXX8000
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#endif
48
49 .globl swapper_pg_dir
Nicolas Pitre37d07b72005-10-29 21:44:56 +010050 .equ swapper_pg_dir, KERNEL_RAM_ADDR - 0x4000
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Nicolas Pitre37d07b72005-10-29 21:44:56 +010052 .macro pgtbl, rd
53 ldr \rd, =(__virt_to_phys(KERNEL_RAM_ADDR - 0x4000))
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 .endm
Nicolas Pitre37d07b72005-10-29 21:44:56 +010055
56#ifdef CONFIG_XIP_KERNEL
57#define TEXTADDR XIP_VIRT_ADDR(CONFIG_XIP_PHYS_ADDR)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#else
Nicolas Pitre37d07b72005-10-29 21:44:56 +010059#define TEXTADDR KERNEL_RAM_ADDR
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#endif
61
62/*
63 * Kernel startup entry point.
64 * ---------------------------
65 *
66 * This is normally called from the decompressor code. The requirements
67 * are: MMU = off, D-cache = off, I-cache = dont care, r0 = 0,
68 * r1 = machine nr.
69 *
70 * This code is mostly position independent, so if you link the kernel at
71 * 0xc0008000, you call this at __pa(0xc0008000).
72 *
73 * See linux/arch/arm/tools/mach-types for the complete list of machine
74 * numbers for r1.
75 *
76 * We're trying to keep crap to a minimum; DO NOT add any machine specific
77 * crap here - that's what the boot loader (or in extreme, well justified
78 * circumstances, zImage) is for.
79 */
80 __INIT
81 .type stext, %function
82ENTRY(stext)
83 msr cpsr_c, #PSR_F_BIT | PSR_I_BIT | MODE_SVC @ ensure svc mode
84 @ and irqs disabled
Russell King0f44ba12006-02-24 21:04:56 +000085 mrc p15, 0, r9, c0, c0 @ get processor id
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 bl __lookup_processor_type @ r5=procinfo r9=cpuid
87 movs r10, r5 @ invalid processor (r5=0)?
Russell King3c0bdac2005-11-25 15:43:22 +000088 beq __error_p @ yes, error 'p'
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 bl __lookup_machine_type @ r5=machinfo
90 movs r8, r5 @ invalid machine (r5=0)?
91 beq __error_a @ yes, error 'a'
92 bl __create_page_tables
93
94 /*
95 * The following calls CPU specific code in a position independent
96 * manner. See arch/arm/mm/proc-*.S for details. r10 = base of
97 * xxx_proc_info structure selected by __lookup_machine_type
98 * above. On return, the CPU will be ready for the MMU to be
99 * turned on, and r0 will hold the CPU control register value.
100 */
101 ldr r13, __switch_data @ address to jump to after
102 @ mmu has been enabled
103 adr lr, __enable_mmu @ return (PIC) address
104 add pc, r10, #PROCINFO_INITFUNC
105
Russell Kinge65f38e2005-06-18 09:33:31 +0100106#if defined(CONFIG_SMP)
107 .type secondary_startup, #function
108ENTRY(secondary_startup)
109 /*
110 * Common entry point for secondary CPUs.
111 *
112 * Ensure that we're in SVC mode, and IRQs are disabled. Lookup
113 * the processor type - there is no need to check the machine type
114 * as it has already been validated by the primary processor.
115 */
116 msr cpsr_c, #PSR_F_BIT | PSR_I_BIT | MODE_SVC
Russell King0f44ba12006-02-24 21:04:56 +0000117 mrc p15, 0, r9, c0, c0 @ get processor id
Russell Kinge65f38e2005-06-18 09:33:31 +0100118 bl __lookup_processor_type
119 movs r10, r5 @ invalid processor?
120 moveq r0, #'p' @ yes, error 'p'
121 beq __error
122
123 /*
124 * Use the page tables supplied from __cpu_up.
125 */
126 adr r4, __secondary_data
127 ldmia r4, {r5, r6, r13} @ address to jump to after
128 sub r4, r4, r5 @ mmu has been enabled
129 ldr r4, [r6, r4] @ get secondary_data.pgdir
130 adr lr, __enable_mmu @ return address
131 add pc, r10, #12 @ initialise processor
132 @ (return control reg)
133
134 /*
135 * r6 = &secondary_data
136 */
137ENTRY(__secondary_switched)
138 ldr sp, [r6, #4] @ get secondary_data.stack
139 mov fp, #0
140 b secondary_start_kernel
141
142 .type __secondary_data, %object
143__secondary_data:
144 .long .
145 .long secondary_data
146 .long __secondary_switched
147#endif /* defined(CONFIG_SMP) */
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150
151/*
152 * Setup common bits before finally enabling the MMU. Essentially
153 * this is just loading the page table pointer and domain access
154 * registers.
155 */
156 .type __enable_mmu, %function
157__enable_mmu:
158#ifdef CONFIG_ALIGNMENT_TRAP
159 orr r0, r0, #CR_A
160#else
161 bic r0, r0, #CR_A
162#endif
163#ifdef CONFIG_CPU_DCACHE_DISABLE
164 bic r0, r0, #CR_C
165#endif
166#ifdef CONFIG_CPU_BPREDICT_DISABLE
167 bic r0, r0, #CR_Z
168#endif
169#ifdef CONFIG_CPU_ICACHE_DISABLE
170 bic r0, r0, #CR_I
171#endif
172 mov r5, #(domain_val(DOMAIN_USER, DOMAIN_MANAGER) | \
173 domain_val(DOMAIN_KERNEL, DOMAIN_MANAGER) | \
174 domain_val(DOMAIN_TABLE, DOMAIN_MANAGER) | \
175 domain_val(DOMAIN_IO, DOMAIN_CLIENT))
176 mcr p15, 0, r5, c3, c0, 0 @ load domain access register
177 mcr p15, 0, r4, c2, c0, 0 @ load page table pointer
178 b __turn_mmu_on
179
180/*
181 * Enable the MMU. This completely changes the structure of the visible
182 * memory space. You will not be able to trace execution through this.
183 * If you have an enquiry about this, *please* check the linux-arm-kernel
184 * mailing list archives BEFORE sending another post to the list.
185 *
186 * r0 = cp#15 control register
187 * r13 = *virtual* address to jump to upon completion
188 *
189 * other registers depend on the function called upon completion
190 */
191 .align 5
192 .type __turn_mmu_on, %function
193__turn_mmu_on:
194 mov r0, r0
195 mcr p15, 0, r0, c1, c0, 0 @ write control reg
196 mrc p15, 0, r3, c0, c0, 0 @ read id reg
197 mov r3, r3
198 mov r3, r3
199 mov pc, r13
200
201
202
203/*
204 * Setup the initial page tables. We only setup the barest
205 * amount which are required to get the kernel running, which
206 * generally means mapping in the kernel code.
207 *
208 * r8 = machinfo
209 * r9 = cpuid
210 * r10 = procinfo
211 *
212 * Returns:
Nicolas Pitre2df96b32006-01-13 20:51:46 +0000213 * r0, r3, r6, r7 corrupted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 * r4 = physical page table address
215 */
216 .type __create_page_tables, %function
217__create_page_tables:
Nicolas Pitre37d07b72005-10-29 21:44:56 +0100218 pgtbl r4 @ page table address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 /*
221 * Clear the 16K level 1 swapper page table
222 */
223 mov r0, r4
224 mov r3, #0
225 add r6, r0, #0x4000
2261: str r3, [r0], #4
227 str r3, [r0], #4
228 str r3, [r0], #4
229 str r3, [r0], #4
230 teq r0, r6
231 bne 1b
232
233 ldr r7, [r10, #PROCINFO_MMUFLAGS] @ mmuflags
234
235 /*
236 * Create identity mapping for first MB of kernel to
237 * cater for the MMU enable. This identity mapping
238 * will be removed by paging_init(). We use our current program
239 * counter to determine corresponding section base address.
240 */
241 mov r6, pc, lsr #20 @ start of kernel section
242 orr r3, r7, r6, lsl #20 @ flags + kernel base
243 str r3, [r4, r6, lsl #2] @ identity mapping
244
245 /*
246 * Now setup the pagetables for our kernel direct
247 * mapped region. We round TEXTADDR down to the
248 * nearest megabyte boundary. It is assumed that
249 * the kernel fits within 4 contigous 1MB sections.
250 */
251 add r0, r4, #(TEXTADDR & 0xff000000) >> 18 @ start of kernel
252 str r3, [r0, #(TEXTADDR & 0x00f00000) >> 18]!
253 add r3, r3, #1 << 20
254 str r3, [r0, #4]! @ KERNEL + 1MB
255 add r3, r3, #1 << 20
256 str r3, [r0, #4]! @ KERNEL + 2MB
257 add r3, r3, #1 << 20
258 str r3, [r0, #4] @ KERNEL + 3MB
259
260 /*
261 * Then map first 1MB of ram in case it contains our boot params.
262 */
Nicolas Pitref09b9972005-10-29 21:44:55 +0100263 add r0, r4, #PAGE_OFFSET >> 18
Nicolas Pitre2df96b32006-01-13 20:51:46 +0000264 orr r6, r7, #PHYS_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 str r6, [r0]
266
267#ifdef CONFIG_XIP_KERNEL
268 /*
269 * Map some ram to cover our .data and .bss areas.
270 * Mapping 3MB should be plenty.
271 */
Nicolas Pitre2df96b32006-01-13 20:51:46 +0000272 sub r3, r4, #PHYS_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 mov r3, r3, lsr #20
274 add r0, r0, r3, lsl #2
275 add r6, r6, r3, lsl #20
276 str r6, [r0], #4
277 add r6, r6, #(1 << 20)
278 str r6, [r0], #4
279 add r6, r6, #(1 << 20)
280 str r6, [r0]
281#endif
282
Russell Kingc77b0422005-07-01 11:56:55 +0100283#ifdef CONFIG_DEBUG_LL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 bic r7, r7, #0x0c @ turn off cacheable
285 @ and bufferable bits
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 /*
287 * Map in IO space for serial debugging.
288 * This allows debug messages to be output
289 * via a serial console before paging_init.
290 */
291 ldr r3, [r8, #MACHINFO_PGOFFIO]
292 add r0, r4, r3
293 rsb r3, r3, #0x4000 @ PTRS_PER_PGD*sizeof(long)
294 cmp r3, #0x0800 @ limit to 512MB
295 movhi r3, #0x0800
296 add r6, r0, r3
297 ldr r3, [r8, #MACHINFO_PHYSIO]
298 orr r3, r3, r7
2991: str r3, [r0], #4
300 add r3, r3, #1 << 20
301 teq r0, r6
302 bne 1b
303#if defined(CONFIG_ARCH_NETWINDER) || defined(CONFIG_ARCH_CATS)
304 /*
Russell King3c0bdac2005-11-25 15:43:22 +0000305 * If we're using the NetWinder or CATS, we also need to map
306 * in the 16550-type serial port for the debug messages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 */
Russell Kingc77b0422005-07-01 11:56:55 +0100308 add r0, r4, #0xff000000 >> 18
309 orr r3, r7, #0x7c000000
310 str r3, [r0]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312#ifdef CONFIG_ARCH_RPC
313 /*
314 * Map in screen at 0x02000000 & SCREEN2_BASE
315 * Similar reasons here - for debug. This is
316 * only for Acorn RiscPC architectures.
317 */
Russell Kingc77b0422005-07-01 11:56:55 +0100318 add r0, r4, #0x02000000 >> 18
319 orr r3, r7, #0x02000000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 str r3, [r0]
Russell Kingc77b0422005-07-01 11:56:55 +0100321 add r0, r4, #0xd8000000 >> 18
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 str r3, [r0]
323#endif
Russell Kingc77b0422005-07-01 11:56:55 +0100324#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 mov pc, lr
326 .ltorg
327
Hyok S. Choi75d90832006-03-27 14:58:25 +0100328#include "head-common.S"