proc-sa110.S 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. /*
  2. * linux/arch/arm/mm/proc-sa110.S
  3. *
  4. * Copyright (C) 1997-2002 Russell King
  5. * hacked for non-paged-MM by Hyok S. Choi, 2003.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * MMU functions for SA110
  12. *
  13. * These are the low level assembler for performing cache and TLB
  14. * functions on the StrongARM-110.
  15. */
  16. #include <linux/linkage.h>
  17. #include <linux/init.h>
  18. #include <asm/assembler.h>
  19. #include <asm/asm-offsets.h>
  20. #include <asm/hwcap.h>
  21. #include <mach/hardware.h>
  22. #include <asm/pgtable-hwdef.h>
  23. #include <asm/pgtable.h>
  24. #include <asm/ptrace.h>
  25. #include "proc-macros.S"
  26. /*
  27. * the cache line size of the I and D cache
  28. */
  29. #define DCACHELINESIZE 32
  30. .text
  31. /*
  32. * cpu_sa110_proc_init()
  33. */
  34. ENTRY(cpu_sa110_proc_init)
  35. mov r0, #0
  36. mcr p15, 0, r0, c15, c1, 2 @ Enable clock switching
  37. mov pc, lr
  38. /*
  39. * cpu_sa110_proc_fin()
  40. */
  41. ENTRY(cpu_sa110_proc_fin)
  42. mov r0, #0
  43. mcr p15, 0, r0, c15, c2, 2 @ Disable clock switching
  44. mrc p15, 0, r0, c1, c0, 0 @ ctrl register
  45. bic r0, r0, #0x1000 @ ...i............
  46. bic r0, r0, #0x000e @ ............wca.
  47. mcr p15, 0, r0, c1, c0, 0 @ disable caches
  48. mov pc, lr
  49. /*
  50. * cpu_sa110_reset(loc)
  51. *
  52. * Perform a soft reset of the system. Put the CPU into the
  53. * same state as it would be if it had been reset, and branch
  54. * to what would be the reset vector.
  55. *
  56. * loc: location to jump to for soft reset
  57. */
  58. .align 5
  59. ENTRY(cpu_sa110_reset)
  60. mov ip, #0
  61. mcr p15, 0, ip, c7, c7, 0 @ invalidate I,D caches
  62. mcr p15, 0, ip, c7, c10, 4 @ drain WB
  63. #ifdef CONFIG_MMU
  64. mcr p15, 0, ip, c8, c7, 0 @ invalidate I & D TLBs
  65. #endif
  66. mrc p15, 0, ip, c1, c0, 0 @ ctrl register
  67. bic ip, ip, #0x000f @ ............wcam
  68. bic ip, ip, #0x1100 @ ...i...s........
  69. mcr p15, 0, ip, c1, c0, 0 @ ctrl register
  70. mov pc, r0
  71. /*
  72. * cpu_sa110_do_idle(type)
  73. *
  74. * Cause the processor to idle
  75. *
  76. * type: call type:
  77. * 0 = slow idle
  78. * 1 = fast idle
  79. * 2 = switch to slow processor clock
  80. * 3 = switch to fast processor clock
  81. */
  82. .align 5
  83. ENTRY(cpu_sa110_do_idle)
  84. mcr p15, 0, ip, c15, c2, 2 @ disable clock switching
  85. ldr r1, =UNCACHEABLE_ADDR @ load from uncacheable loc
  86. ldr r1, [r1, #0] @ force switch to MCLK
  87. mov r0, r0 @ safety
  88. mov r0, r0 @ safety
  89. mov r0, r0 @ safety
  90. mcr p15, 0, r0, c15, c8, 2 @ Wait for interrupt, cache aligned
  91. mov r0, r0 @ safety
  92. mov r0, r0 @ safety
  93. mov r0, r0 @ safety
  94. mcr p15, 0, r0, c15, c1, 2 @ enable clock switching
  95. mov pc, lr
  96. /* ================================= CACHE ================================ */
  97. /*
  98. * cpu_sa110_dcache_clean_area(addr,sz)
  99. *
  100. * Clean the specified entry of any caches such that the MMU
  101. * translation fetches will obtain correct data.
  102. *
  103. * addr: cache-unaligned virtual address
  104. */
  105. .align 5
  106. ENTRY(cpu_sa110_dcache_clean_area)
  107. 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
  108. add r0, r0, #DCACHELINESIZE
  109. subs r1, r1, #DCACHELINESIZE
  110. bhi 1b
  111. mov pc, lr
  112. /* =============================== PageTable ============================== */
  113. /*
  114. * cpu_sa110_switch_mm(pgd)
  115. *
  116. * Set the translation base pointer to be as described by pgd.
  117. *
  118. * pgd: new page tables
  119. */
  120. .align 5
  121. ENTRY(cpu_sa110_switch_mm)
  122. #ifdef CONFIG_MMU
  123. str lr, [sp, #-4]!
  124. bl v4wb_flush_kern_cache_all @ clears IP
  125. mcr p15, 0, r0, c2, c0, 0 @ load page table pointer
  126. mcr p15, 0, ip, c8, c7, 0 @ invalidate I & D TLBs
  127. ldr pc, [sp], #4
  128. #else
  129. mov pc, lr
  130. #endif
  131. /*
  132. * cpu_sa110_set_pte_ext(ptep, pte, ext)
  133. *
  134. * Set a PTE and flush it out
  135. */
  136. .align 5
  137. ENTRY(cpu_sa110_set_pte_ext)
  138. #ifdef CONFIG_MMU
  139. armv3_set_pte_ext wc_disable=0
  140. mov r0, r0
  141. mcr p15, 0, r0, c7, c10, 1 @ clean D entry
  142. mcr p15, 0, r0, c7, c10, 4 @ drain WB
  143. #endif
  144. mov pc, lr
  145. __INIT
  146. .type __sa110_setup, #function
  147. __sa110_setup:
  148. mov r10, #0
  149. mcr p15, 0, r10, c7, c7 @ invalidate I,D caches on v4
  150. mcr p15, 0, r10, c7, c10, 4 @ drain write buffer on v4
  151. #ifdef CONFIG_MMU
  152. mcr p15, 0, r10, c8, c7 @ invalidate I,D TLBs on v4
  153. #endif
  154. adr r5, sa110_crval
  155. ldmia r5, {r5, r6}
  156. mrc p15, 0, r0, c1, c0 @ get control register v4
  157. bic r0, r0, r5
  158. orr r0, r0, r6
  159. mov pc, lr
  160. .size __sa110_setup, . - __sa110_setup
  161. /*
  162. * R
  163. * .RVI ZFRS BLDP WCAM
  164. * ..01 0001 ..11 1101
  165. *
  166. */
  167. .type sa110_crval, #object
  168. sa110_crval:
  169. crval clear=0x00003f3f, mmuset=0x0000113d, ucset=0x00001130
  170. __INITDATA
  171. /*
  172. * Purpose : Function pointers used to access above functions - all calls
  173. * come through these
  174. */
  175. .type sa110_processor_functions, #object
  176. ENTRY(sa110_processor_functions)
  177. .word v4_early_abort
  178. .word legacy_pabort
  179. .word cpu_sa110_proc_init
  180. .word cpu_sa110_proc_fin
  181. .word cpu_sa110_reset
  182. .word cpu_sa110_do_idle
  183. .word cpu_sa110_dcache_clean_area
  184. .word cpu_sa110_switch_mm
  185. .word cpu_sa110_set_pte_ext
  186. .size sa110_processor_functions, . - sa110_processor_functions
  187. .section ".rodata"
  188. .type cpu_arch_name, #object
  189. cpu_arch_name:
  190. .asciz "armv4"
  191. .size cpu_arch_name, . - cpu_arch_name
  192. .type cpu_elf_name, #object
  193. cpu_elf_name:
  194. .asciz "v4"
  195. .size cpu_elf_name, . - cpu_elf_name
  196. .type cpu_sa110_name, #object
  197. cpu_sa110_name:
  198. .asciz "StrongARM-110"
  199. .size cpu_sa110_name, . - cpu_sa110_name
  200. .align
  201. .section ".proc.info.init", #alloc, #execinstr
  202. .type __sa110_proc_info,#object
  203. __sa110_proc_info:
  204. .long 0x4401a100
  205. .long 0xfffffff0
  206. .long PMD_TYPE_SECT | \
  207. PMD_SECT_BUFFERABLE | \
  208. PMD_SECT_CACHEABLE | \
  209. PMD_SECT_AP_WRITE | \
  210. PMD_SECT_AP_READ
  211. .long PMD_TYPE_SECT | \
  212. PMD_SECT_AP_WRITE | \
  213. PMD_SECT_AP_READ
  214. b __sa110_setup
  215. .long cpu_arch_name
  216. .long cpu_elf_name
  217. .long HWCAP_SWP | HWCAP_HALF | HWCAP_26BIT | HWCAP_FAST_MULT
  218. .long cpu_sa110_name
  219. .long sa110_processor_functions
  220. .long v4wb_tlb_fns
  221. .long v4wb_user_fns
  222. .long v4wb_cache_fns
  223. .size __sa110_proc_info, . - __sa110_proc_info