proc-sa1100.S 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. /*
  2. * linux/arch/arm/mm/proc-sa1100.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-1100 and StrongARM-1110.
  15. *
  16. * Note that SA1100 and SA1110 share everything but their name and CPU ID.
  17. *
  18. * 12-jun-2000, Erik Mouw (J.A.K.Mouw@its.tudelft.nl):
  19. * Flush the read buffer at context switches
  20. */
  21. #include <linux/linkage.h>
  22. #include <linux/init.h>
  23. #include <asm/assembler.h>
  24. #include <asm/asm-offsets.h>
  25. #include <asm/hwcap.h>
  26. #include <mach/hardware.h>
  27. #include <asm/pgtable-hwdef.h>
  28. #include <asm/pgtable.h>
  29. #include "proc-macros.S"
  30. /*
  31. * the cache line size of the I and D cache
  32. */
  33. #define DCACHELINESIZE 32
  34. .section .text
  35. /*
  36. * cpu_sa1100_proc_init()
  37. */
  38. ENTRY(cpu_sa1100_proc_init)
  39. mov r0, #0
  40. mcr p15, 0, r0, c15, c1, 2 @ Enable clock switching
  41. mcr p15, 0, r0, c9, c0, 5 @ Allow read-buffer operations from userland
  42. ret lr
  43. /*
  44. * cpu_sa1100_proc_fin()
  45. *
  46. * Prepare the CPU for reset:
  47. * - Disable interrupts
  48. * - Clean and turn off caches.
  49. */
  50. ENTRY(cpu_sa1100_proc_fin)
  51. mcr p15, 0, ip, c15, c2, 2 @ Disable clock switching
  52. mrc p15, 0, r0, c1, c0, 0 @ ctrl register
  53. bic r0, r0, #0x1000 @ ...i............
  54. bic r0, r0, #0x000e @ ............wca.
  55. mcr p15, 0, r0, c1, c0, 0 @ disable caches
  56. ret lr
  57. /*
  58. * cpu_sa1100_reset(loc)
  59. *
  60. * Perform a soft reset of the system. Put the CPU into the
  61. * same state as it would be if it had been reset, and branch
  62. * to what would be the reset vector.
  63. *
  64. * loc: location to jump to for soft reset
  65. */
  66. .align 5
  67. .pushsection .idmap.text, "ax"
  68. ENTRY(cpu_sa1100_reset)
  69. mov ip, #0
  70. mcr p15, 0, ip, c7, c7, 0 @ invalidate I,D caches
  71. mcr p15, 0, ip, c7, c10, 4 @ drain WB
  72. #ifdef CONFIG_MMU
  73. mcr p15, 0, ip, c8, c7, 0 @ invalidate I & D TLBs
  74. #endif
  75. mrc p15, 0, ip, c1, c0, 0 @ ctrl register
  76. bic ip, ip, #0x000f @ ............wcam
  77. bic ip, ip, #0x1100 @ ...i...s........
  78. mcr p15, 0, ip, c1, c0, 0 @ ctrl register
  79. ret r0
  80. ENDPROC(cpu_sa1100_reset)
  81. .popsection
  82. /*
  83. * cpu_sa1100_do_idle(type)
  84. *
  85. * Cause the processor to idle
  86. *
  87. * type: call type:
  88. * 0 = slow idle
  89. * 1 = fast idle
  90. * 2 = switch to slow processor clock
  91. * 3 = switch to fast processor clock
  92. */
  93. .align 5
  94. ENTRY(cpu_sa1100_do_idle)
  95. mov r0, r0 @ 4 nop padding
  96. mov r0, r0
  97. mov r0, r0
  98. mov r0, r0 @ 4 nop padding
  99. mov r0, r0
  100. mov r0, r0
  101. mov r0, #0
  102. ldr r1, =UNCACHEABLE_ADDR @ ptr to uncacheable address
  103. @ --- aligned to a cache line
  104. mcr p15, 0, r0, c15, c2, 2 @ disable clock switching
  105. ldr r1, [r1, #0] @ force switch to MCLK
  106. mcr p15, 0, r0, c15, c8, 2 @ wait for interrupt
  107. mov r0, r0 @ safety
  108. mcr p15, 0, r0, c15, c1, 2 @ enable clock switching
  109. ret lr
  110. /* ================================= CACHE ================================ */
  111. /*
  112. * cpu_sa1100_dcache_clean_area(addr,sz)
  113. *
  114. * Clean the specified entry of any caches such that the MMU
  115. * translation fetches will obtain correct data.
  116. *
  117. * addr: cache-unaligned virtual address
  118. */
  119. .align 5
  120. ENTRY(cpu_sa1100_dcache_clean_area)
  121. 1: mcr p15, 0, r0, c7, c10, 1 @ clean D entry
  122. add r0, r0, #DCACHELINESIZE
  123. subs r1, r1, #DCACHELINESIZE
  124. bhi 1b
  125. ret lr
  126. /* =============================== PageTable ============================== */
  127. /*
  128. * cpu_sa1100_switch_mm(pgd)
  129. *
  130. * Set the translation base pointer to be as described by pgd.
  131. *
  132. * pgd: new page tables
  133. */
  134. .align 5
  135. ENTRY(cpu_sa1100_switch_mm)
  136. #ifdef CONFIG_MMU
  137. str lr, [sp, #-4]!
  138. bl v4wb_flush_kern_cache_all @ clears IP
  139. mcr p15, 0, ip, c9, c0, 0 @ invalidate RB
  140. mcr p15, 0, r0, c2, c0, 0 @ load page table pointer
  141. mcr p15, 0, ip, c8, c7, 0 @ invalidate I & D TLBs
  142. ldr pc, [sp], #4
  143. #else
  144. ret lr
  145. #endif
  146. /*
  147. * cpu_sa1100_set_pte_ext(ptep, pte, ext)
  148. *
  149. * Set a PTE and flush it out
  150. */
  151. .align 5
  152. ENTRY(cpu_sa1100_set_pte_ext)
  153. #ifdef CONFIG_MMU
  154. armv3_set_pte_ext wc_disable=0
  155. mov r0, r0
  156. mcr p15, 0, r0, c7, c10, 1 @ clean D entry
  157. mcr p15, 0, r0, c7, c10, 4 @ drain WB
  158. #endif
  159. ret lr
  160. .globl cpu_sa1100_suspend_size
  161. .equ cpu_sa1100_suspend_size, 4 * 3
  162. #ifdef CONFIG_ARM_CPU_SUSPEND
  163. ENTRY(cpu_sa1100_do_suspend)
  164. stmfd sp!, {r4 - r6, lr}
  165. mrc p15, 0, r4, c3, c0, 0 @ domain ID
  166. mrc p15, 0, r5, c13, c0, 0 @ PID
  167. mrc p15, 0, r6, c1, c0, 0 @ control reg
  168. stmia r0, {r4 - r6} @ store cp regs
  169. ldmfd sp!, {r4 - r6, pc}
  170. ENDPROC(cpu_sa1100_do_suspend)
  171. ENTRY(cpu_sa1100_do_resume)
  172. ldmia r0, {r4 - r6} @ load cp regs
  173. mov ip, #0
  174. mcr p15, 0, ip, c8, c7, 0 @ flush I+D TLBs
  175. mcr p15, 0, ip, c7, c7, 0 @ flush I&D cache
  176. mcr p15, 0, ip, c9, c0, 0 @ invalidate RB
  177. mcr p15, 0, ip, c9, c0, 5 @ allow user space to use RB
  178. mcr p15, 0, r4, c3, c0, 0 @ domain ID
  179. mcr p15, 0, r1, c2, c0, 0 @ translation table base addr
  180. mcr p15, 0, r5, c13, c0, 0 @ PID
  181. mov r0, r6 @ control register
  182. b cpu_resume_mmu
  183. ENDPROC(cpu_sa1100_do_resume)
  184. #endif
  185. .type __sa1100_setup, #function
  186. __sa1100_setup:
  187. mov r0, #0
  188. mcr p15, 0, r0, c7, c7 @ invalidate I,D caches on v4
  189. mcr p15, 0, r0, c7, c10, 4 @ drain write buffer on v4
  190. #ifdef CONFIG_MMU
  191. mcr p15, 0, r0, c8, c7 @ invalidate I,D TLBs on v4
  192. #endif
  193. adr r5, sa1100_crval
  194. ldmia r5, {r5, r6}
  195. mrc p15, 0, r0, c1, c0 @ get control register v4
  196. bic r0, r0, r5
  197. orr r0, r0, r6
  198. ret lr
  199. .size __sa1100_setup, . - __sa1100_setup
  200. /*
  201. * R
  202. * .RVI ZFRS BLDP WCAM
  203. * ..11 0001 ..11 1101
  204. *
  205. */
  206. .type sa1100_crval, #object
  207. sa1100_crval:
  208. crval clear=0x00003f3f, mmuset=0x0000313d, ucset=0x00001130
  209. __INITDATA
  210. /*
  211. * SA1100 and SA1110 share the same function calls
  212. */
  213. @ define struct processor (see <asm/proc-fns.h> and proc-macros.S)
  214. define_processor_functions sa1100, dabort=v4_early_abort, pabort=legacy_pabort, suspend=1
  215. .section ".rodata"
  216. string cpu_arch_name, "armv4"
  217. string cpu_elf_name, "v4"
  218. string cpu_sa1100_name, "StrongARM-1100"
  219. string cpu_sa1110_name, "StrongARM-1110"
  220. .align
  221. .section ".proc.info.init", #alloc
  222. .macro sa1100_proc_info name:req, cpu_val:req, cpu_mask:req, cpu_name:req
  223. .type __\name\()_proc_info,#object
  224. __\name\()_proc_info:
  225. .long \cpu_val
  226. .long \cpu_mask
  227. .long PMD_TYPE_SECT | \
  228. PMD_SECT_BUFFERABLE | \
  229. PMD_SECT_CACHEABLE | \
  230. PMD_SECT_AP_WRITE | \
  231. PMD_SECT_AP_READ
  232. .long PMD_TYPE_SECT | \
  233. PMD_SECT_AP_WRITE | \
  234. PMD_SECT_AP_READ
  235. initfn __sa1100_setup, __\name\()_proc_info
  236. .long cpu_arch_name
  237. .long cpu_elf_name
  238. .long HWCAP_SWP | HWCAP_HALF | HWCAP_26BIT | HWCAP_FAST_MULT
  239. .long \cpu_name
  240. .long sa1100_processor_functions
  241. .long v4wb_tlb_fns
  242. .long v4_mc_user_fns
  243. .long v4wb_cache_fns
  244. .size __\name\()_proc_info, . - __\name\()_proc_info
  245. .endm
  246. sa1100_proc_info sa1100, 0x4401a110, 0xfffffff0, cpu_sa1100_name
  247. sa1100_proc_info sa1110, 0x6901b110, 0xfffffff0, cpu_sa1110_name