import PULS_20160108
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / arm / kernel / head.S
CommitLineData
1da177e4
LT
1/*
2 * linux/arch/arm/kernel/head.S
3 *
4 * Copyright (C) 1994-2002 Russell King
e65f38ed
RK
5 * Copyright (c) 2003 ARM Limited
6 * All Rights Reserved
1da177e4
LT
7 *
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 */
1da177e4
LT
14#include <linux/linkage.h>
15#include <linux/init.h>
16
17#include <asm/assembler.h>
195864cf 18#include <asm/cp15.h>
1da177e4 19#include <asm/domain.h>
1da177e4 20#include <asm/ptrace.h>
e6ae744d 21#include <asm/asm-offsets.h>
f09b9979 22#include <asm/memory.h>
4f7a1812 23#include <asm/thread_info.h>
e73fc88e 24#include <asm/pgtable.h>
6fa3eb70 25#include <asm/vfpmacros.h>
1da177e4 26
91a9fec0
RH
27#if defined(CONFIG_DEBUG_LL) && !defined(CONFIG_DEBUG_SEMIHOSTING)
28#include CONFIG_DEBUG_LL_INCLUDE
c293393f
JK
29#endif
30
1da177e4 31/*
37d07b72 32 * swapper_pg_dir is the virtual address of the initial page table.
f06b97ff
RK
33 * We place the page tables 16K below KERNEL_RAM_VADDR. Therefore, we must
34 * make sure that KERNEL_RAM_VADDR is correctly set. Currently, we expect
37d07b72 35 * the least significant 16 bits to be 0x8000, but we could probably
f06b97ff 36 * relax this restriction to KERNEL_RAM_VADDR >= PAGE_OFFSET + 0x4000.
1da177e4 37 */
72a20e22 38#define KERNEL_RAM_VADDR (PAGE_OFFSET + TEXT_OFFSET)
f06b97ff
RK
39#if (KERNEL_RAM_VADDR & 0xffff) != 0x8000
40#error KERNEL_RAM_VADDR must start at 0xXXXX8000
1da177e4
LT
41#endif
42
1b6ba46b
CM
43#ifdef CONFIG_ARM_LPAE
44 /* LPAE requires an additional page for the PGD */
45#define PG_DIR_SIZE 0x5000
46#define PMD_ORDER 3
47#else
e73fc88e
CM
48#define PG_DIR_SIZE 0x4000
49#define PMD_ORDER 2
1b6ba46b 50#endif
e73fc88e 51
1da177e4 52 .globl swapper_pg_dir
e73fc88e 53 .equ swapper_pg_dir, KERNEL_RAM_VADDR - PG_DIR_SIZE
1da177e4 54
72a20e22 55 .macro pgtbl, rd, phys
e73fc88e 56 add \rd, \phys, #TEXT_OFFSET - PG_DIR_SIZE
1da177e4 57 .endm
1da177e4 58
1da177e4
LT
59/*
60 * Kernel startup entry point.
61 * ---------------------------
62 *
63 * This is normally called from the decompressor code. The requirements
64 * are: MMU = off, D-cache = off, I-cache = dont care, r0 = 0,
4c2896e8 65 * r1 = machine nr, r2 = atags or dtb pointer.
1da177e4
LT
66 *
67 * This code is mostly position independent, so if you link the kernel at
68 * 0xc0008000, you call this at __pa(0xc0008000).
69 *
70 * See linux/arch/arm/tools/mach-types for the complete list of machine
71 * numbers for r1.
72 *
73 * We're trying to keep crap to a minimum; DO NOT add any machine specific
74 * crap here - that's what the boot loader (or in extreme, well justified
75 * circumstances, zImage) is for.
76 */
540b5738
DM
77 .arm
78
2abc1c50 79 __HEAD
1da177e4 80ENTRY(stext)
540b5738
DM
81
82 THUMB( adr r9, BSYM(1f) ) @ Kernel is always entered in ARM.
83 THUMB( bx r9 ) @ If this is a Thumb-2 kernel,
84 THUMB( .thumb ) @ switch to Thumb now.
85 THUMB(1: )
86
80c59daf
DM
87#ifdef CONFIG_ARM_VIRT_EXT
88 bl __hyp_stub_install
89#endif
90 @ ensure svc mode and all interrupts masked
91 safe_svcmode_maskall r9
92
0f44ba1d 93 mrc p15, 0, r9, c0, c0 @ get processor id
1da177e4
LT
94 bl __lookup_processor_type @ r5=procinfo r9=cpuid
95 movs r10, r5 @ invalid processor (r5=0)?
a75e5248 96 THUMB( it eq ) @ force fixup-able long branch encoding
3c0bdac3 97 beq __error_p @ yes, error 'p'
0eb0511d 98
294064f5
CM
99#ifdef CONFIG_ARM_LPAE
100 mrc p15, 0, r3, c0, c1, 4 @ read ID_MMFR0
101 and r3, r3, #0xf @ extract VMSA support
102 cmp r3, #5 @ long-descriptor translation table format?
103 THUMB( it lo ) @ force fixup-able long branch encoding
104 blo __error_p @ only classic page table format
105#endif
106
72a20e22
RK
107#ifndef CONFIG_XIP_KERNEL
108 adr r3, 2f
109 ldmia r3, {r4, r8}
110 sub r4, r3, r4 @ (PHYS_OFFSET - PAGE_OFFSET)
111 add r8, r8, r4 @ PHYS_OFFSET
112#else
1b9f95f8 113 ldr r8, =PHYS_OFFSET @ always constant in this case
72a20e22
RK
114#endif
115
0eb0511d 116 /*
4c2896e8 117 * r1 = machine no, r2 = atags or dtb,
72a20e22 118 * r8 = phys_offset, r9 = cpuid, r10 = procinfo
0eb0511d 119 */
9d20fdd5 120 bl __vet_atags
f00ec48f
RK
121#ifdef CONFIG_SMP_ON_UP
122 bl __fixup_smp
dc21af99
RK
123#endif
124#ifdef CONFIG_ARM_PATCH_PHYS_VIRT
125 bl __fixup_pv_table
f00ec48f 126#endif
1da177e4
LT
127 bl __create_page_tables
128
129 /*
130 * The following calls CPU specific code in a position independent
131 * manner. See arch/arm/mm/proc-*.S for details. r10 = base of
6fc31d54 132 * xxx_proc_info structure selected by __lookup_processor_type
1da177e4
LT
133 * above. On return, the CPU will be ready for the MMU to be
134 * turned on, and r0 will hold the CPU control register value.
135 */
a4ae4134 136 ldr r13, =__mmap_switched @ address to jump to after
1da177e4 137 @ mmu has been enabled
00945010 138 adr lr, BSYM(1f) @ return (PIC) address
d427958a 139 mov r8, r4 @ set TTBR1 to swapper_pg_dir
b86040a5
CM
140 ARM( add pc, r10, #PROCINFO_INITFUNC )
141 THUMB( add r12, r10, #PROCINFO_INITFUNC )
142 THUMB( mov pc, r12 )
00945010 1431: b __enable_mmu
93ed3970 144ENDPROC(stext)
a4ae4134 145 .ltorg
72a20e22
RK
146#ifndef CONFIG_XIP_KERNEL
1472: .long .
148 .long PAGE_OFFSET
149#endif
1da177e4
LT
150
151/*
152 * Setup the initial page tables. We only setup the barest
153 * amount which are required to get the kernel running, which
154 * generally means mapping in the kernel code.
155 *
72a20e22 156 * r8 = phys_offset, r9 = cpuid, r10 = procinfo
1da177e4
LT
157 *
158 * Returns:
786f1b73 159 * r0, r3, r5-r7 corrupted
1da177e4
LT
160 * r4 = physical page table address
161 */
1da177e4 162__create_page_tables:
72a20e22 163 pgtbl r4, r8 @ page table address
1da177e4
LT
164
165 /*
e73fc88e 166 * Clear the swapper page table
1da177e4
LT
167 */
168 mov r0, r4
169 mov r3, #0
e73fc88e 170 add r6, r0, #PG_DIR_SIZE
1da177e4
LT
1711: str r3, [r0], #4
172 str r3, [r0], #4
173 str r3, [r0], #4
174 str r3, [r0], #4
175 teq r0, r6
176 bne 1b
177
1b6ba46b
CM
178#ifdef CONFIG_ARM_LPAE
179 /*
180 * Build the PGD table (first level) to point to the PMD table. A PGD
181 * entry is 64-bit wide.
182 */
183 mov r0, r4
184 add r3, r4, #0x1000 @ first PMD table address
185 orr r3, r3, #3 @ PGD block type
186 mov r6, #4 @ PTRS_PER_PGD
187 mov r7, #1 << (55 - 32) @ L_PGD_SWAPPER
d61947a1
WD
1881:
189#ifdef CONFIG_CPU_ENDIAN_BE8
1b6ba46b 190 str r7, [r0], #4 @ set top PGD entry bits
d61947a1
WD
191 str r3, [r0], #4 @ set bottom PGD entry bits
192#else
193 str r3, [r0], #4 @ set bottom PGD entry bits
194 str r7, [r0], #4 @ set top PGD entry bits
195#endif
1b6ba46b
CM
196 add r3, r3, #0x1000 @ next PMD table
197 subs r6, r6, #1
198 bne 1b
199
200 add r4, r4, #0x1000 @ point to the PMD tables
d61947a1
WD
201#ifdef CONFIG_CPU_ENDIAN_BE8
202 add r4, r4, #4 @ we only write the bottom word
203#endif
1b6ba46b
CM
204#endif
205
8799ee9f 206 ldr r7, [r10, #PROCINFO_MM_MMUFLAGS] @ mm_mmuflags
1da177e4
LT
207
208 /*
786f1b73
RK
209 * Create identity mapping to cater for __enable_mmu.
210 * This identity mapping will be removed by paging_init().
1da177e4 211 */
72662e01 212 adr r0, __turn_mmu_on_loc
786f1b73
RK
213 ldmia r0, {r3, r5, r6}
214 sub r0, r0, r3 @ virt->phys offset
72662e01
WD
215 add r5, r5, r0 @ phys __turn_mmu_on
216 add r6, r6, r0 @ phys __turn_mmu_on_end
e73fc88e
CM
217 mov r5, r5, lsr #SECTION_SHIFT
218 mov r6, r6, lsr #SECTION_SHIFT
786f1b73 219
e73fc88e
CM
2201: orr r3, r7, r5, lsl #SECTION_SHIFT @ flags + kernel base
221 str r3, [r4, r5, lsl #PMD_ORDER] @ identity mapping
222 cmp r5, r6
223 addlo r5, r5, #1 @ next section
224 blo 1b
1da177e4
LT
225
226 /*
9fa16b77 227 * Map our RAM from the start to the end of the kernel .bss section.
1da177e4 228 */
9fa16b77
NP
229 add r0, r4, #PAGE_OFFSET >> (SECTION_SHIFT - PMD_ORDER)
230 ldr r6, =(_end - 1)
231 orr r3, r8, r7
e73fc88e 232 add r6, r4, r6, lsr #(SECTION_SHIFT - PMD_ORDER)
9fa16b77 2331: str r3, [r0], #1 << PMD_ORDER
e73fc88e 234 add r3, r3, #1 << SECTION_SHIFT
9fa16b77 235 cmp r0, r6
e98ff7f6 236 bls 1b
1da177e4 237
ec3622d9
NP
238#ifdef CONFIG_XIP_KERNEL
239 /*
9fa16b77 240 * Map the kernel image separately as it is not located in RAM.
ec3622d9 241 */
9fa16b77
NP
242#define XIP_START XIP_VIRT_ADDR(CONFIG_XIP_PHYS_ADDR)
243 mov r3, pc
244 mov r3, r3, lsr #SECTION_SHIFT
245 orr r3, r7, r3, lsl #SECTION_SHIFT
246 add r0, r4, #(XIP_START & 0xff000000) >> (SECTION_SHIFT - PMD_ORDER)
247 str r3, [r0, #((XIP_START & 0x00f00000) >> SECTION_SHIFT) << PMD_ORDER]!
248 ldr r6, =(_edata_loc - 1)
249 add r0, r0, #1 << PMD_ORDER
e73fc88e 250 add r6, r4, r6, lsr #(SECTION_SHIFT - PMD_ORDER)
ec3622d9 2511: cmp r0, r6
9fa16b77
NP
252 add r3, r3, #1 << SECTION_SHIFT
253 strls r3, [r0], #1 << PMD_ORDER
ec3622d9
NP
254 bls 1b
255#endif
256
1da177e4 257 /*
9fa16b77 258 * Then map boot params address in r2 if specified.
6f16f499 259 * We map 2 sections in case the ATAGs/DTB crosses a section boundary.
1da177e4 260 */
e73fc88e
CM
261 mov r0, r2, lsr #SECTION_SHIFT
262 movs r0, r0, lsl #SECTION_SHIFT
9fa16b77
NP
263 subne r3, r0, r8
264 addne r3, r3, #PAGE_OFFSET
265 addne r3, r4, r3, lsr #(SECTION_SHIFT - PMD_ORDER)
266 orrne r6, r7, r0
6f16f499
NP
267 strne r6, [r3], #1 << PMD_ORDER
268 addne r6, r6, #1 << SECTION_SHIFT
9fa16b77 269 strne r6, [r3]
1da177e4 270
4e1db26a 271#if defined(CONFIG_ARM_LPAE) && defined(CONFIG_CPU_ENDIAN_BE8)
d61947a1
WD
272 sub r4, r4, #4 @ Fixup page table pointer
273 @ for 64-bit descriptors
274#endif
275
c77b0427 276#ifdef CONFIG_DEBUG_LL
9b5a146a 277#if !defined(CONFIG_DEBUG_ICEDCC) && !defined(CONFIG_DEBUG_SEMIHOSTING)
1da177e4
LT
278 /*
279 * Map in IO space for serial debugging.
280 * This allows debug messages to be output
281 * via a serial console before paging_init.
282 */
639da5ee 283 addruart r7, r3, r0
c293393f 284
e73fc88e
CM
285 mov r3, r3, lsr #SECTION_SHIFT
286 mov r3, r3, lsl #PMD_ORDER
c293393f 287
1da177e4 288 add r0, r4, r3
e73fc88e 289 mov r3, r7, lsr #SECTION_SHIFT
c293393f 290 ldr r7, [r10, #PROCINFO_IO_MMUFLAGS] @ io_mmuflags
e73fc88e 291 orr r3, r7, r3, lsl #SECTION_SHIFT
1b6ba46b
CM
292#ifdef CONFIG_ARM_LPAE
293 mov r7, #1 << (54 - 32) @ XN
d61947a1
WD
294#ifdef CONFIG_CPU_ENDIAN_BE8
295 str r7, [r0], #4
296 str r3, [r0], #4
1b6ba46b 297#else
f67860a7 298 str r3, [r0], #4
1b6ba46b
CM
299 str r7, [r0], #4
300#endif
d61947a1
WD
301#else
302 orr r3, r3, #PMD_SECT_XN
303 str r3, [r0], #4
304#endif
c293393f 305
9b5a146a
NP
306#else /* CONFIG_DEBUG_ICEDCC || CONFIG_DEBUG_SEMIHOSTING */
307 /* we don't need any serial debugging mappings */
c293393f 308 ldr r7, [r10, #PROCINFO_IO_MMUFLAGS] @ io_mmuflags
9b5a146a 309#endif
c293393f 310
1da177e4
LT
311#if defined(CONFIG_ARCH_NETWINDER) || defined(CONFIG_ARCH_CATS)
312 /*
3c0bdac3
RK
313 * If we're using the NetWinder or CATS, we also need to map
314 * in the 16550-type serial port for the debug messages
1da177e4 315 */
e73fc88e 316 add r0, r4, #0xff000000 >> (SECTION_SHIFT - PMD_ORDER)
c77b0427
RK
317 orr r3, r7, #0x7c000000
318 str r3, [r0]
1da177e4 319#endif
1da177e4
LT
320#ifdef CONFIG_ARCH_RPC
321 /*
322 * Map in screen at 0x02000000 & SCREEN2_BASE
323 * Similar reasons here - for debug. This is
324 * only for Acorn RiscPC architectures.
325 */
e73fc88e 326 add r0, r4, #0x02000000 >> (SECTION_SHIFT - PMD_ORDER)
c77b0427 327 orr r3, r7, #0x02000000
1da177e4 328 str r3, [r0]
e73fc88e 329 add r0, r4, #0xd8000000 >> (SECTION_SHIFT - PMD_ORDER)
1da177e4 330 str r3, [r0]
c77b0427 331#endif
1b6ba46b
CM
332#endif
333#ifdef CONFIG_ARM_LPAE
334 sub r4, r4, #0x1000 @ point to the PGD table
1da177e4
LT
335#endif
336 mov pc, lr
93ed3970 337ENDPROC(__create_page_tables)
1da177e4 338 .ltorg
4f79a5dd 339 .align
72662e01 340__turn_mmu_on_loc:
786f1b73 341 .long .
72662e01
WD
342 .long __turn_mmu_on
343 .long __turn_mmu_on_end
1da177e4 344
00945010
RK
345#if defined(CONFIG_SMP)
346 __CPUINIT
347ENTRY(secondary_startup)
6fa3eb70
S
348#ifdef CONFIG_VFP_OPT
349 ldr r10, =(0xF << 20)
350 mcr p15, 0, r10, c1, c0, 2
351 VFPFMRX r10, FPEXC @ Is the VFP enabled?
352 orr r10, r10, #FPEXC_EN @ user FPEXC has the enable bit set
353 bic r10, r10, #FPEXC_EX @ make sure exceptions are disabled
354 VFPFMXR FPEXC, r10 @ enable VFP, disable any pending
355 @ exceptions, so we can get at the
356 @ rest of it
357#endif
358
00945010
RK
359 /*
360 * Common entry point for secondary CPUs.
361 *
362 * Ensure that we're in SVC mode, and IRQs are disabled. Lookup
363 * the processor type - there is no need to check the machine type
364 * as it has already been validated by the primary processor.
365 */
80c59daf 366#ifdef CONFIG_ARM_VIRT_EXT
6e484be1 367 bl __hyp_stub_install_secondary
80c59daf
DM
368#endif
369 safe_svcmode_maskall r9
370
00945010
RK
371 mrc p15, 0, r9, c0, c0 @ get processor id
372 bl __lookup_processor_type
373 movs r10, r5 @ invalid processor?
374 moveq r0, #'p' @ yes, error 'p'
a75e5248 375 THUMB( it eq ) @ force fixup-able long branch encoding
00945010
RK
376 beq __error_p
377
378 /*
379 * Use the page tables supplied from __cpu_up.
380 */
381 adr r4, __secondary_data
382 ldmia r4, {r5, r7, r12} @ address to jump to after
d427958a
CM
383 sub lr, r4, r5 @ mmu has been enabled
384 ldr r4, [r7, lr] @ get secondary_data.pgdir
385 add r7, r7, #4
386 ldr r8, [r7, lr] @ get secondary_data.swapper_pg_dir
00945010
RK
387 adr lr, BSYM(__enable_mmu) @ return address
388 mov r13, r12 @ __secondary_switched address
389 ARM( add pc, r10, #PROCINFO_INITFUNC ) @ initialise processor
390 @ (return control reg)
391 THUMB( add r12, r10, #PROCINFO_INITFUNC )
392 THUMB( mov pc, r12 )
393ENDPROC(secondary_startup)
394
395 /*
396 * r6 = &secondary_data
397 */
398ENTRY(__secondary_switched)
399 ldr sp, [r7, #4] @ get secondary_data.stack
400 mov fp, #0
401 b secondary_start_kernel
402ENDPROC(__secondary_switched)
403
4f79a5dd
DM
404 .align
405
00945010
RK
406 .type __secondary_data, %object
407__secondary_data:
408 .long .
409 .long secondary_data
410 .long __secondary_switched
411#endif /* defined(CONFIG_SMP) */
412
413
414
415/*
416 * Setup common bits before finally enabling the MMU. Essentially
417 * this is just loading the page table pointer and domain access
418 * registers.
865a4fae
RK
419 *
420 * r0 = cp#15 control register
421 * r1 = machine ID
4c2896e8 422 * r2 = atags or dtb pointer
865a4fae
RK
423 * r4 = page table pointer
424 * r9 = processor ID
425 * r13 = *virtual* address to jump to upon completion
00945010
RK
426 */
427__enable_mmu:
8428e84d 428#if defined(CONFIG_ALIGNMENT_TRAP) && __LINUX_ARM_ARCH__ < 6
00945010
RK
429 orr r0, r0, #CR_A
430#else
431 bic r0, r0, #CR_A
432#endif
433#ifdef CONFIG_CPU_DCACHE_DISABLE
434 bic r0, r0, #CR_C
435#endif
436#ifdef CONFIG_CPU_BPREDICT_DISABLE
437 bic r0, r0, #CR_Z
438#endif
439#ifdef CONFIG_CPU_ICACHE_DISABLE
440 bic r0, r0, #CR_I
441#endif
1b6ba46b
CM
442#ifdef CONFIG_ARM_LPAE
443 mov r5, #0
444 mcrr p15, 0, r4, r5, c2 @ load TTBR0
445#else
00945010
RK
446 mov r5, #(domain_val(DOMAIN_USER, DOMAIN_MANAGER) | \
447 domain_val(DOMAIN_KERNEL, DOMAIN_MANAGER) | \
448 domain_val(DOMAIN_TABLE, DOMAIN_MANAGER) | \
449 domain_val(DOMAIN_IO, DOMAIN_CLIENT))
450 mcr p15, 0, r5, c3, c0, 0 @ load domain access register
451 mcr p15, 0, r4, c2, c0, 0 @ load page table pointer
1b6ba46b 452#endif
00945010
RK
453 b __turn_mmu_on
454ENDPROC(__enable_mmu)
455
456/*
457 * Enable the MMU. This completely changes the structure of the visible
458 * memory space. You will not be able to trace execution through this.
459 * If you have an enquiry about this, *please* check the linux-arm-kernel
460 * mailing list archives BEFORE sending another post to the list.
461 *
462 * r0 = cp#15 control register
865a4fae 463 * r1 = machine ID
4c2896e8 464 * r2 = atags or dtb pointer
865a4fae 465 * r9 = processor ID
00945010
RK
466 * r13 = *virtual* address to jump to upon completion
467 *
468 * other registers depend on the function called upon completion
469 */
470 .align 5
4e8ee7de
WD
471 .pushsection .idmap.text, "ax"
472ENTRY(__turn_mmu_on)
00945010 473 mov r0, r0
d675d0bc 474 instr_sync
00945010
RK
475 mcr p15, 0, r0, c1, c0, 0 @ write control reg
476 mrc p15, 0, r3, c0, c0, 0 @ read id reg
d675d0bc 477 instr_sync
00945010
RK
478 mov r3, r3
479 mov r3, r13
480 mov pc, r3
72662e01 481__turn_mmu_on_end:
00945010 482ENDPROC(__turn_mmu_on)
4e8ee7de 483 .popsection
00945010 484
1da177e4 485
f00ec48f 486#ifdef CONFIG_SMP_ON_UP
4a9cb360 487 __INIT
f00ec48f 488__fixup_smp:
e98ff0f5
RK
489 and r3, r9, #0x000f0000 @ architecture version
490 teq r3, #0x000f0000 @ CPU ID supported?
f00ec48f
RK
491 bne __fixup_smp_on_up @ no, assume UP
492
e98ff0f5
RK
493 bic r3, r9, #0x00ff0000
494 bic r3, r3, #0x0000000f @ mask 0xff00fff0
495 mov r4, #0x41000000
0eb0511d 496 orr r4, r4, #0x0000b000
e98ff0f5
RK
497 orr r4, r4, #0x00000020 @ val 0x4100b020
498 teq r3, r4 @ ARM 11MPCore?
f00ec48f
RK
499 moveq pc, lr @ yes, assume SMP
500
501 mrc p15, 0, r0, c0, c0, 5 @ read MPIDR
e98ff0f5
RK
502 and r0, r0, #0xc0000000 @ multiprocessing extensions and
503 teq r0, #0x80000000 @ not part of a uniprocessor system?
504 moveq pc, lr @ yes, assume SMP
f00ec48f
RK
505
506__fixup_smp_on_up:
507 adr r0, 1f
0eb0511d 508 ldmia r0, {r3 - r5}
f00ec48f 509 sub r3, r0, r3
0eb0511d
RK
510 add r4, r4, r3
511 add r5, r5, r3
4a9cb360 512 b __do_fixup_smp_on_up
f00ec48f
RK
513ENDPROC(__fixup_smp)
514
4f79a5dd 515 .align
f00ec48f
RK
5161: .word .
517 .word __smpalt_begin
518 .word __smpalt_end
519
520 .pushsection .data
521 .globl smp_on_up
522smp_on_up:
523 ALT_SMP(.long 1)
524 ALT_UP(.long 0)
525 .popsection
4a9cb360 526#endif
f00ec48f 527
4a9cb360
RK
528 .text
529__do_fixup_smp_on_up:
530 cmp r4, r5
531 movhs pc, lr
532 ldmia r4!, {r0, r6}
533 ARM( str r6, [r0, r3] )
534 THUMB( add r0, r0, r3 )
535#ifdef __ARMEB__
536 THUMB( mov r6, r6, ror #16 ) @ Convert word order for big-endian.
f00ec48f 537#endif
4a9cb360
RK
538 THUMB( strh r6, [r0], #2 ) @ For Thumb-2, store as two halfwords
539 THUMB( mov r6, r6, lsr #16 ) @ to be robust against misaligned r3.
540 THUMB( strh r6, [r0] )
541 b __do_fixup_smp_on_up
542ENDPROC(__do_fixup_smp_on_up)
543
544ENTRY(fixup_smp)
545 stmfd sp!, {r4 - r6, lr}
546 mov r4, r0
547 add r5, r0, r1
548 mov r3, #0
549 bl __do_fixup_smp_on_up
550 ldmfd sp!, {r4 - r6, pc}
551ENDPROC(fixup_smp)
f00ec48f 552
dc21af99
RK
553#ifdef CONFIG_ARM_PATCH_PHYS_VIRT
554
555/* __fixup_pv_table - patch the stub instructions with the delta between
556 * PHYS_OFFSET and PAGE_OFFSET, which is assumed to be 16MiB aligned and
557 * can be expressed by an immediate shifter operand. The stub instruction
558 * has a form of '(add|sub) rd, rn, #imm'.
559 */
560 __HEAD
561__fixup_pv_table:
562 adr r0, 1f
563 ldmia r0, {r3-r5, r7}
564 sub r3, r0, r3 @ PHYS_OFFSET - PAGE_OFFSET
565 add r4, r4, r3 @ adjust table start address
566 add r5, r5, r3 @ adjust table end address
b511d75d
NP
567 add r7, r7, r3 @ adjust __pv_phys_offset address
568 str r8, [r7] @ save computed PHYS_OFFSET to __pv_phys_offset
dc21af99
RK
569 mov r6, r3, lsr #24 @ constant for add/sub instructions
570 teq r3, r6, lsl #24 @ must be 16MiB aligned
b511d75d 571THUMB( it ne @ cross section branch )
dc21af99
RK
572 bne __error
573 str r6, [r7, #4] @ save to __pv_offset
574 b __fixup_a_pv_table
575ENDPROC(__fixup_pv_table)
576
577 .align
5781: .long .
579 .long __pv_table_begin
580 .long __pv_table_end
5812: .long __pv_phys_offset
582
583 .text
584__fixup_a_pv_table:
b511d75d 585#ifdef CONFIG_THUMB2_KERNEL
daece596
NP
586 lsls r6, #24
587 beq 2f
b511d75d
NP
588 clz r7, r6
589 lsr r6, #24
590 lsl r6, r7
591 bic r6, #0x0080
592 lsrs r7, #1
593 orrcs r6, #0x0080
594 orr r6, r6, r7, lsl #12
595 orr r6, #0x4000
daece596
NP
596 b 2f
5971: add r7, r3
598 ldrh ip, [r7, #2]
b511d75d 599 and ip, 0x8f00
daece596 600 orr ip, r6 @ mask in offset bits 31-24
b511d75d 601 strh ip, [r7, #2]
daece596 6022: cmp r4, r5
b511d75d 603 ldrcc r7, [r4], #4 @ use branch for delay slot
daece596 604 bcc 1b
b511d75d
NP
605 bx lr
606#else
daece596
NP
607 b 2f
6081: ldr ip, [r7, r3]
dc21af99 609 bic ip, ip, #0x000000ff
daece596 610 orr ip, ip, r6 @ mask in offset bits 31-24
dc21af99 611 str ip, [r7, r3]
daece596 6122: cmp r4, r5
dc21af99 613 ldrcc r7, [r4], #4 @ use branch for delay slot
daece596 614 bcc 1b
dc21af99 615 mov pc, lr
b511d75d 616#endif
dc21af99
RK
617ENDPROC(__fixup_a_pv_table)
618
619ENTRY(fixup_pv_table)
620 stmfd sp!, {r4 - r7, lr}
621 ldr r2, 2f @ get address of __pv_phys_offset
622 mov r3, #0 @ no offset
623 mov r4, r0 @ r0 = table start
624 add r5, r0, r1 @ r1 = table size
625 ldr r6, [r2, #4] @ get __pv_offset
626 bl __fixup_a_pv_table
627 ldmfd sp!, {r4 - r7, pc}
628ENDPROC(fixup_pv_table)
629
630 .align
6312: .long __pv_phys_offset
632
633 .data
634 .globl __pv_phys_offset
635 .type __pv_phys_offset, %object
636__pv_phys_offset:
637 .long 0
638 .size __pv_phys_offset, . - __pv_phys_offset
639__pv_offset:
640 .long 0
641#endif
642
75d90832 643#include "head-common.S"