head.S 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. /*
  2. * Copyright (C) 2007-2009 Michal Simek <monstr@monstr.eu>
  3. * Copyright (C) 2007-2009 PetaLogix
  4. * Copyright (C) 2006 Atmark Techno, Inc.
  5. *
  6. * MMU code derived from arch/ppc/kernel/head_4xx.S:
  7. * Copyright (c) 1995-1996 Gary Thomas <gdt@linuxppc.org>
  8. * Initial PowerPC version.
  9. * Copyright (c) 1996 Cort Dougan <cort@cs.nmt.edu>
  10. * Rewritten for PReP
  11. * Copyright (c) 1996 Paul Mackerras <paulus@cs.anu.edu.au>
  12. * Low-level exception handers, MMU support, and rewrite.
  13. * Copyright (c) 1997 Dan Malek <dmalek@jlc.net>
  14. * PowerPC 8xx modifications.
  15. * Copyright (c) 1998-1999 TiVo, Inc.
  16. * PowerPC 403GCX modifications.
  17. * Copyright (c) 1999 Grant Erickson <grant@lcse.umn.edu>
  18. * PowerPC 403GCX/405GP modifications.
  19. * Copyright 2000 MontaVista Software Inc.
  20. * PPC405 modifications
  21. * PowerPC 403GCX/405GP modifications.
  22. * Author: MontaVista Software, Inc.
  23. * frank_rowand@mvista.com or source@mvista.com
  24. * debbie_chu@mvista.com
  25. *
  26. * This file is subject to the terms and conditions of the GNU General Public
  27. * License. See the file "COPYING" in the main directory of this archive
  28. * for more details.
  29. */
  30. #include <linux/linkage.h>
  31. #include <asm/thread_info.h>
  32. #include <asm/page.h>
  33. #include <asm/prom.h> /* for OF_DT_HEADER */
  34. #ifdef CONFIG_MMU
  35. #include <asm/setup.h> /* COMMAND_LINE_SIZE */
  36. #include <asm/mmu.h>
  37. #include <asm/processor.h>
  38. .data
  39. .global empty_zero_page
  40. .align 12
  41. empty_zero_page:
  42. .space 4096
  43. .global swapper_pg_dir
  44. swapper_pg_dir:
  45. .space 4096
  46. #endif /* CONFIG_MMU */
  47. .text
  48. ENTRY(_start)
  49. mfs r1, rmsr
  50. andi r1, r1, ~2
  51. mts rmsr, r1
  52. /*
  53. * Here is checking mechanism which check if Microblaze has msr instructions
  54. * We load msr and compare it with previous r1 value - if is the same,
  55. * msr instructions works if not - cpu don't have them.
  56. */
  57. /* r8=0 - I have msr instr, 1 - I don't have them */
  58. rsubi r0, r0, 1 /* set the carry bit */
  59. msrclr r0, 0x4 /* try to clear it */
  60. /* read the carry bit, r8 will be '0' if msrclr exists */
  61. addik r8, r0, 0
  62. /* r7 may point to an FDT, or there may be one linked in.
  63. if it's in r7, we've got to save it away ASAP.
  64. We ensure r7 points to a valid FDT, just in case the bootloader
  65. is broken or non-existent */
  66. beqi r7, no_fdt_arg /* NULL pointer? don't copy */
  67. lw r11, r0, r7 /* Does r7 point to a */
  68. rsubi r11, r11, OF_DT_HEADER /* valid FDT? */
  69. beqi r11, _prepare_copy_fdt
  70. or r7, r0, r0 /* clear R7 when not valid DTB */
  71. bnei r11, no_fdt_arg /* No - get out of here */
  72. _prepare_copy_fdt:
  73. or r11, r0, r0 /* incremment */
  74. ori r4, r0, TOPHYS(_fdt_start)
  75. ori r3, r0, (0x4000 - 4)
  76. _copy_fdt:
  77. lw r12, r7, r11 /* r12 = r7 + r11 */
  78. sw r12, r4, r11 /* addr[r4 + r11] = r12 */
  79. addik r11, r11, 4 /* increment counting */
  80. bgtid r3, _copy_fdt /* loop for all entries */
  81. addik r3, r3, -4 /* descrement loop */
  82. no_fdt_arg:
  83. #ifdef CONFIG_MMU
  84. #ifndef CONFIG_CMDLINE_BOOL
  85. /*
  86. * handling command line
  87. * copy command line to __init_end. There is space for storing command line.
  88. */
  89. or r6, r0, r0 /* incremment */
  90. ori r4, r0, __init_end /* load address of command line */
  91. tophys(r4,r4) /* convert to phys address */
  92. ori r3, r0, COMMAND_LINE_SIZE - 1 /* number of loops */
  93. _copy_command_line:
  94. lbu r7, r5, r6 /* r7=r5+r6 - r5 contain pointer to command line */
  95. sb r7, r4, r6 /* addr[r4+r6]= r7*/
  96. addik r6, r6, 1 /* increment counting */
  97. bgtid r3, _copy_command_line /* loop for all entries */
  98. addik r3, r3, -1 /* descrement loop */
  99. addik r5, r4, 0 /* add new space for command line */
  100. tovirt(r5,r5)
  101. #endif /* CONFIG_CMDLINE_BOOL */
  102. #ifdef NOT_COMPILE
  103. /* save bram context */
  104. or r6, r0, r0 /* incremment */
  105. ori r4, r0, TOPHYS(_bram_load_start) /* save bram context */
  106. ori r3, r0, (LMB_SIZE - 4)
  107. _copy_bram:
  108. lw r7, r0, r6 /* r7 = r0 + r6 */
  109. sw r7, r4, r6 /* addr[r4 + r6] = r7*/
  110. addik r6, r6, 4 /* increment counting */
  111. bgtid r3, _copy_bram /* loop for all entries */
  112. addik r3, r3, -4 /* descrement loop */
  113. #endif
  114. /* We have to turn on the MMU right away. */
  115. /*
  116. * Set up the initial MMU state so we can do the first level of
  117. * kernel initialization. This maps the first 16 MBytes of memory 1:1
  118. * virtual to physical.
  119. */
  120. nop
  121. addik r3, r0, 63 /* Invalidate all TLB entries */
  122. _invalidate:
  123. mts rtlbx, r3
  124. mts rtlbhi, r0 /* flush: ensure V is clear */
  125. bgtid r3, _invalidate /* loop for all entries */
  126. addik r3, r3, -1
  127. /* sync */
  128. /*
  129. * We should still be executing code at physical address area
  130. * RAM_BASEADDR at this point. However, kernel code is at
  131. * a virtual address. So, set up a TLB mapping to cover this once
  132. * translation is enabled.
  133. */
  134. addik r3,r0, CONFIG_KERNEL_START /* Load the kernel virtual address */
  135. tophys(r4,r3) /* Load the kernel physical address */
  136. mts rpid,r0 /* Load the kernel PID */
  137. nop
  138. bri 4
  139. /*
  140. * Configure and load two entries into TLB slots 0 and 1.
  141. * In case we are pinning TLBs, these are reserved in by the
  142. * other TLB functions. If not reserving, then it doesn't
  143. * matter where they are loaded.
  144. */
  145. andi r4,r4,0xfffffc00 /* Mask off the real page number */
  146. ori r4,r4,(TLB_WR | TLB_EX) /* Set the write and execute bits */
  147. andi r3,r3,0xfffffc00 /* Mask off the effective page number */
  148. ori r3,r3,(TLB_VALID | TLB_PAGESZ(PAGESZ_16M))
  149. mts rtlbx,r0 /* TLB slow 0 */
  150. mts rtlblo,r4 /* Load the data portion of the entry */
  151. mts rtlbhi,r3 /* Load the tag portion of the entry */
  152. addik r4, r4, 0x01000000 /* Map next 16 M entries */
  153. addik r3, r3, 0x01000000
  154. ori r6,r0,1 /* TLB slot 1 */
  155. mts rtlbx,r6
  156. mts rtlblo,r4 /* Load the data portion of the entry */
  157. mts rtlbhi,r3 /* Load the tag portion of the entry */
  158. /*
  159. * Load a TLB entry for LMB, since we need access to
  160. * the exception vectors, using a 4k real==virtual mapping.
  161. */
  162. ori r6,r0,3 /* TLB slot 3 */
  163. mts rtlbx,r6
  164. ori r4,r0,(TLB_WR | TLB_EX)
  165. ori r3,r0,(TLB_VALID | TLB_PAGESZ(PAGESZ_4K))
  166. mts rtlblo,r4 /* Load the data portion of the entry */
  167. mts rtlbhi,r3 /* Load the tag portion of the entry */
  168. /*
  169. * We now have the lower 16 Meg of RAM mapped into TLB entries, and the
  170. * caches ready to work.
  171. */
  172. turn_on_mmu:
  173. ori r15,r0,start_here
  174. ori r4,r0,MSR_KERNEL_VMS
  175. mts rmsr,r4
  176. nop
  177. rted r15,0 /* enables MMU */
  178. nop
  179. start_here:
  180. #endif /* CONFIG_MMU */
  181. /* Initialize small data anchors */
  182. la r13, r0, _KERNEL_SDA_BASE_
  183. la r2, r0, _KERNEL_SDA2_BASE_
  184. /* Initialize stack pointer */
  185. la r1, r0, init_thread_union + THREAD_SIZE - 4
  186. /* Initialize r31 with current task address */
  187. la r31, r0, init_task
  188. /*
  189. * Call platform dependent initialize function.
  190. * Please see $(ARCH)/mach-$(SUBARCH)/setup.c for
  191. * the function.
  192. */
  193. la r9, r0, machine_early_init
  194. brald r15, r9
  195. nop
  196. #ifndef CONFIG_MMU
  197. la r15, r0, machine_halt
  198. braid start_kernel
  199. nop
  200. #else
  201. /*
  202. * Initialize the MMU.
  203. */
  204. bralid r15, mmu_init
  205. nop
  206. /* Go back to running unmapped so we can load up new values
  207. * and change to using our exception vectors.
  208. * On the MicroBlaze, all we invalidate the used TLB entries to clear
  209. * the old 16M byte TLB mappings.
  210. */
  211. ori r15,r0,TOPHYS(kernel_load_context)
  212. ori r4,r0,MSR_KERNEL
  213. mts rmsr,r4
  214. nop
  215. bri 4
  216. rted r15,0
  217. nop
  218. /* Load up the kernel context */
  219. kernel_load_context:
  220. # Keep entry 0 and 1 valid. Entry 3 mapped to LMB can go away.
  221. ori r5,r0,3
  222. mts rtlbx,r5
  223. nop
  224. mts rtlbhi,r0
  225. nop
  226. addi r15, r0, machine_halt
  227. ori r17, r0, start_kernel
  228. ori r4, r0, MSR_KERNEL_VMS
  229. mts rmsr, r4
  230. nop
  231. rted r17, 0 /* enable MMU and jump to start_kernel */
  232. nop
  233. #endif /* CONFIG_MMU */