2 * linux/arch/arm/kernel/head-common.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.
13 #include <asm/assembler.h>
15 #define ATAG_CORE 0x54410001
16 #define ATAG_CORE_SIZE ((2*4 + 3*4) >> 2)
17 #define ATAG_CORE_SIZE_EMPTY ((2*4) >> 2)
19 #ifdef CONFIG_CPU_BIG_ENDIAN
20 #define OF_DT_MAGIC 0xd00dfeed
22 #define OF_DT_MAGIC 0xedfe0dd0 /* 0xd00dfeed in big-endian */
26 * Exception handling. Something went wrong and we can't proceed. We
27 * ought to tell the user, but since we don't have any guarantee that
28 * we're even running on the right architecture, we do virtually nothing.
30 * If CONFIG_DEBUG_LL is set we try to print out something about the error
31 * and hope for the best (useful if bootloader fails to pass a proper
32 * machine ID for example).
36 /* Determine validity of the r2 atags pointer. The heuristic requires
37 * that the pointer be aligned, in the first 16k of physical RAM and
38 * that the ATAG_CORE marker is first and present. If CONFIG_OF_FLATTREE
39 * is selected, then it will also accept a dtb pointer. Future revisions
40 * of this function may be more lenient with the physical address and
41 * may also be able to move the ATAGS block if necessary.
44 * r2 either valid atags pointer, valid dtb pointer, or zero
48 tst r2, #0x3 @ aligned?
52 #ifdef CONFIG_OF_FLATTREE
53 ldr r6, =OF_DT_MAGIC @ is it a DTB?
57 cmp r5, #ATAG_CORE_SIZE @ is first tag ATAG_CORE?
58 cmpne r5, #ATAG_CORE_SIZE_EMPTY
65 2: ret lr @ atag/dtb pointer is ok
72 * The following fragment of code is executed with the MMU on in MMU mode,
73 * and uses absolute addresses; this is not position independent.
75 * r0 = cp#15 control register
77 * r2 = atags/dtb pointer
87 adr r4, __mmap_switched_data
90 #if defined(CONFIG_XIP_DEFLATED_DATA)
91 ARM( ldr sp, [r4], #4 )
94 bl __inflate_kernel_data @ decompress .data to RAM
97 #elif defined(CONFIG_XIP_KERNEL)
98 ARM( ldmia r4!, {r0, r1, r2, sp} )
99 THUMB( ldmia r4!, {r0, r1, r2, r3} )
102 bl memcpy @ copy .data to RAM
105 ARM( ldmia r4!, {r0, r1, sp} )
106 THUMB( ldmia r4!, {r0, r1, r3} )
110 bl memset @ clear .bss
112 ldmia r4, {r0, r1, r2, r3}
113 str r9, [r0] @ Save processor ID
114 str r7, [r1] @ Save machine type
115 str r8, [r2] @ Save atags pointer
117 strne r10, [r3] @ Save control register values
120 ENDPROC(__mmap_switched)
123 .type __mmap_switched_data, %object
124 __mmap_switched_data:
125 #ifdef CONFIG_XIP_KERNEL
126 #ifndef CONFIG_XIP_DEFLATED_DATA
128 .long __data_loc @ r1
129 .long _edata_loc @ r2
131 .long __bss_stop @ sp (temporary stack in .bss)
134 .long __bss_start @ r0
135 .long __bss_stop @ r1
136 .long init_thread_union + THREAD_START_SP @ sp
138 .long processor_id @ r0
139 .long __machine_arch_type @ r1
140 .long __atags_pointer @ r2
141 #ifdef CONFIG_CPU_CP15
142 .long cr_alignment @ r3
146 .size __mmap_switched_data, . - __mmap_switched_data
149 * This provides a C-API version of __lookup_processor_type
151 ENTRY(lookup_processor_type)
152 stmfd sp!, {r4 - r6, r9, lr}
154 bl __lookup_processor_type
156 ldmfd sp!, {r4 - r6, r9, pc}
157 ENDPROC(lookup_processor_type)
163 * Read processor ID register (CP#15, CR0), and look up in the linker-built
164 * supported processor list. Note that we can't use the absolute addresses
165 * for the __proc_info lists since we aren't running with the MMU on
166 * (and therefore, we are not in the correct address space). We have to
167 * calculate the offset.
171 * r3, r4, r6 corrupted
172 * r5 = proc_info pointer in physical address space
173 * r9 = cpuid (preserved)
175 __lookup_processor_type:
176 adr r3, __lookup_processor_type_data
178 sub r3, r3, r4 @ get offset between virt&phys
179 add r5, r5, r3 @ convert virt addresses to
180 add r6, r6, r3 @ physical address space
181 1: ldmia r5, {r3, r4} @ value, mask
182 and r4, r4, r9 @ mask wanted bits
185 add r5, r5, #PROC_INFO_SZ @ sizeof(proc_info_list)
188 mov r5, #0 @ unknown processor
190 ENDPROC(__lookup_processor_type)
193 * Look in <asm/procinfo.h> for information about the __proc_info structure.
196 .type __lookup_processor_type_data, %object
197 __lookup_processor_type_data:
199 .long __proc_info_begin
200 .long __proc_info_end
201 .size __lookup_processor_type_data, . - __lookup_processor_type_data
204 #ifdef CONFIG_DEBUG_LL
208 str_lpae: .asciz "\nError: Kernel with LPAE support, but CPU does not support LPAE.\n"
213 ENDPROC(__error_lpae)
216 #ifdef CONFIG_DEBUG_LL
224 str_p1: .asciz "\nError: unrecognized/unsupported processor variant (0x"
225 str_p2: .asciz ").\n"
231 #ifdef CONFIG_ARCH_RPC
233 * Turn the screen red on a error - RiscPC only.
237 orr r3, r3, r3, lsl #8
238 orr r3, r3, r3, lsl #16