proc-sa110.S 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  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. ret 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. ret 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. .pushsection .idmap.text, "ax"
  60. ENTRY(cpu_sa110_reset)
  61. mov ip, #0
  62. mcr p15, 0, ip, c7, c7, 0 @ invalidate I,D caches
  63. mcr p15, 0, ip, c7, c10, 4 @ drain WB
  64. #ifdef CONFIG_MMU
  65. mcr p15, 0, ip, c8, c7, 0 @ invalidate I & D TLBs
  66. #endif
  67. mrc p15, 0, ip, c1, c0, 0 @ ctrl register
  68. bic ip, ip, #0x000f @ ............wcam
  69. bic ip, ip, #0x1100 @ ...i...s........
  70. mcr p15, 0, ip, c1, c0, 0 @ ctrl register
  71. ret r0
  72. ENDPROC(cpu_sa110_reset)
  73. .popsection
  74. /*
  75. * cpu_sa110_do_idle(type)
  76. *
  77. * Cause the processor to idle
  78. *
  79. * type: call type:
  80. * 0 = slow idle
  81. * 1 = fast idle
  82. * 2 = switch to slow processor clock
  83. * 3 = switch to fast processor clock
  84. */
  85. .align 5
  86. ENTRY(cpu_sa110_do_idle)
  87. mcr p15, 0, ip, c15, c2, 2 @ disable clock switching
  88. ldr r1, =UNCACHEABLE_ADDR @ load from uncacheable loc
  89. ldr r1, [r1, #0] @ force switch to MCLK
  90. mov r0, r0 @ safety
  91. mov r0, r0 @ safety
  92. mov r0, r0 @ safety
  93. mcr p15, 0, r0, c15, c8, 2 @ Wait for interrupt, cache aligned
  94. mov r0, r0 @ safety
  95. mov r0, r0 @ safety
  96. mov r0, r0 @ safety
  97. mcr p15, 0, r0, c15, c1, 2 @ enable clock switching
  98. ret lr
  99. /* ================================= CACHE ================================ */
  100. /*
  101. * cpu_sa110_dcache_clean_area(addr,sz)
  102. *
  103. * Clean the specified entry of any caches such that the MMU
  104. * translation fetches will obtain correct data.
  105. *
  106. * addr: cache-unaligned virtual address
  107. */
  108. .align 5
  109. ENTRY(cpu_sa110_dcache_clean_area)
  110. 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
  111. add r0, r0, #DCACHELINESIZE
  112. subs r1, r1, #DCACHELINESIZE
  113. bhi 1b
  114. ret lr
  115. /* =============================== PageTable ============================== */
  116. /*
  117. * cpu_sa110_switch_mm(pgd)
  118. *
  119. * Set the translation base pointer to be as described by pgd.
  120. *
  121. * pgd: new page tables
  122. */
  123. .align 5
  124. ENTRY(cpu_sa110_switch_mm)
  125. #ifdef CONFIG_MMU
  126. str lr, [sp, #-4]!
  127. bl v4wb_flush_kern_cache_all @ clears IP
  128. mcr p15, 0, r0, c2, c0, 0 @ load page table pointer
  129. mcr p15, 0, ip, c8, c7, 0 @ invalidate I & D TLBs
  130. ldr pc, [sp], #4
  131. #else
  132. ret lr
  133. #endif
  134. /*
  135. * cpu_sa110_set_pte_ext(ptep, pte, ext)
  136. *
  137. * Set a PTE and flush it out
  138. */
  139. .align 5
  140. ENTRY(cpu_sa110_set_pte_ext)
  141. #ifdef CONFIG_MMU
  142. armv3_set_pte_ext wc_disable=0
  143. mov r0, r0
  144. mcr p15, 0, r0, c7, c10, 1 @ clean D entry
  145. mcr p15, 0, r0, c7, c10, 4 @ drain WB
  146. #endif
  147. ret lr
  148. .type __sa110_setup, #function
  149. __sa110_setup:
  150. mov r10, #0
  151. mcr p15, 0, r10, c7, c7 @ invalidate I,D caches on v4
  152. mcr p15, 0, r10, c7, c10, 4 @ drain write buffer on v4
  153. #ifdef CONFIG_MMU
  154. mcr p15, 0, r10, c8, c7 @ invalidate I,D TLBs on v4
  155. #endif
  156. adr r5, sa110_crval
  157. ldmia r5, {r5, r6}
  158. mrc p15, 0, r0, c1, c0 @ get control register v4
  159. bic r0, r0, r5
  160. orr r0, r0, r6
  161. ret lr
  162. .size __sa110_setup, . - __sa110_setup
  163. /*
  164. * R
  165. * .RVI ZFRS BLDP WCAM
  166. * ..01 0001 ..11 1101
  167. *
  168. */
  169. .type sa110_crval, #object
  170. sa110_crval:
  171. crval clear=0x00003f3f, mmuset=0x0000113d, ucset=0x00001130
  172. __INITDATA
  173. @ define struct processor (see <asm/proc-fns.h> and proc-macros.S)
  174. define_processor_functions sa110, dabort=v4_early_abort, pabort=legacy_pabort
  175. .section ".rodata"
  176. string cpu_arch_name, "armv4"
  177. string cpu_elf_name, "v4"
  178. string cpu_sa110_name, "StrongARM-110"
  179. .align
  180. .section ".proc.info.init", #alloc
  181. .type __sa110_proc_info,#object
  182. __sa110_proc_info:
  183. .long 0x4401a100
  184. .long 0xfffffff0
  185. .long PMD_TYPE_SECT | \
  186. PMD_SECT_BUFFERABLE | \
  187. PMD_SECT_CACHEABLE | \
  188. PMD_SECT_AP_WRITE | \
  189. PMD_SECT_AP_READ
  190. .long PMD_TYPE_SECT | \
  191. PMD_SECT_AP_WRITE | \
  192. PMD_SECT_AP_READ
  193. initfn __sa110_setup, __sa110_proc_info
  194. .long cpu_arch_name
  195. .long cpu_elf_name
  196. .long HWCAP_SWP | HWCAP_HALF | HWCAP_26BIT | HWCAP_FAST_MULT
  197. .long cpu_sa110_name
  198. .long sa110_processor_functions
  199. .long v4wb_tlb_fns
  200. .long v4wb_user_fns
  201. .long v4wb_cache_fns
  202. .size __sa110_proc_info, . - __sa110_proc_info