head.S 8.6 KB

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