diff options
Diffstat (limited to 'arch/arm/mm/proc-sa1100.S')
-rw-r--r-- | arch/arm/mm/proc-sa1100.S | 87 |
1 files changed, 17 insertions, 70 deletions
diff --git a/arch/arm/mm/proc-sa1100.S b/arch/arm/mm/proc-sa1100.S index e9c47271732d..07219c2ae114 100644 --- a/arch/arm/mm/proc-sa1100.S +++ b/arch/arm/mm/proc-sa1100.S | |||
@@ -198,9 +198,6 @@ ENTRY(cpu_sa1100_do_resume) | |||
198 | PMD_SECT_CACHEABLE | PMD_SECT_AP_WRITE | 198 | PMD_SECT_CACHEABLE | PMD_SECT_AP_WRITE |
199 | b cpu_resume_mmu | 199 | b cpu_resume_mmu |
200 | ENDPROC(cpu_sa1100_do_resume) | 200 | ENDPROC(cpu_sa1100_do_resume) |
201 | #else | ||
202 | #define cpu_sa1100_do_suspend 0 | ||
203 | #define cpu_sa1100_do_resume 0 | ||
204 | #endif | 201 | #endif |
205 | 202 | ||
206 | __CPUINIT | 203 | __CPUINIT |
@@ -234,59 +231,28 @@ sa1100_crval: | |||
234 | __INITDATA | 231 | __INITDATA |
235 | 232 | ||
236 | /* | 233 | /* |
237 | * Purpose : Function pointers used to access above functions - all calls | ||
238 | * come through these | ||
239 | */ | ||
240 | |||
241 | /* | ||
242 | * SA1100 and SA1110 share the same function calls | 234 | * SA1100 and SA1110 share the same function calls |
243 | */ | 235 | */ |
244 | .type sa1100_processor_functions, #object | ||
245 | ENTRY(sa1100_processor_functions) | ||
246 | .word v4_early_abort | ||
247 | .word legacy_pabort | ||
248 | .word cpu_sa1100_proc_init | ||
249 | .word cpu_sa1100_proc_fin | ||
250 | .word cpu_sa1100_reset | ||
251 | .word cpu_sa1100_do_idle | ||
252 | .word cpu_sa1100_dcache_clean_area | ||
253 | .word cpu_sa1100_switch_mm | ||
254 | .word cpu_sa1100_set_pte_ext | ||
255 | .word cpu_sa1100_suspend_size | ||
256 | .word cpu_sa1100_do_suspend | ||
257 | .word cpu_sa1100_do_resume | ||
258 | .size sa1100_processor_functions, . - sa1100_processor_functions | ||
259 | |||
260 | .section ".rodata" | ||
261 | 236 | ||
262 | .type cpu_arch_name, #object | 237 | @ define struct processor (see <asm/proc-fns.h> and proc-macros.S) |
263 | cpu_arch_name: | 238 | define_processor_functions sa1100, dabort=v4_early_abort, pabort=legacy_pabort, suspend=1 |
264 | .asciz "armv4" | ||
265 | .size cpu_arch_name, . - cpu_arch_name | ||
266 | 239 | ||
267 | .type cpu_elf_name, #object | 240 | .section ".rodata" |
268 | cpu_elf_name: | ||
269 | .asciz "v4" | ||
270 | .size cpu_elf_name, . - cpu_elf_name | ||
271 | |||
272 | .type cpu_sa1100_name, #object | ||
273 | cpu_sa1100_name: | ||
274 | .asciz "StrongARM-1100" | ||
275 | .size cpu_sa1100_name, . - cpu_sa1100_name | ||
276 | 241 | ||
277 | .type cpu_sa1110_name, #object | 242 | string cpu_arch_name, "armv4" |
278 | cpu_sa1110_name: | 243 | string cpu_elf_name, "v4" |
279 | .asciz "StrongARM-1110" | 244 | string cpu_sa1100_name, "StrongARM-1100" |
280 | .size cpu_sa1110_name, . - cpu_sa1110_name | 245 | string cpu_sa1110_name, "StrongARM-1110" |
281 | 246 | ||
282 | .align | 247 | .align |
283 | 248 | ||
284 | .section ".proc.info.init", #alloc, #execinstr | 249 | .section ".proc.info.init", #alloc, #execinstr |
285 | 250 | ||
286 | .type __sa1100_proc_info,#object | 251 | .macro sa1100_proc_info name:req, cpu_val:req, cpu_mask:req, cpu_name:req |
287 | __sa1100_proc_info: | 252 | .type __\name\()_proc_info,#object |
288 | .long 0x4401a110 | 253 | __\name\()_proc_info: |
289 | .long 0xfffffff0 | 254 | .long \cpu_val |
255 | .long \cpu_mask | ||
290 | .long PMD_TYPE_SECT | \ | 256 | .long PMD_TYPE_SECT | \ |
291 | PMD_SECT_BUFFERABLE | \ | 257 | PMD_SECT_BUFFERABLE | \ |
292 | PMD_SECT_CACHEABLE | \ | 258 | PMD_SECT_CACHEABLE | \ |
@@ -299,32 +265,13 @@ __sa1100_proc_info: | |||
299 | .long cpu_arch_name | 265 | .long cpu_arch_name |
300 | .long cpu_elf_name | 266 | .long cpu_elf_name |
301 | .long HWCAP_SWP | HWCAP_HALF | HWCAP_26BIT | HWCAP_FAST_MULT | 267 | .long HWCAP_SWP | HWCAP_HALF | HWCAP_26BIT | HWCAP_FAST_MULT |
302 | .long cpu_sa1100_name | 268 | .long \cpu_name |
303 | .long sa1100_processor_functions | 269 | .long sa1100_processor_functions |
304 | .long v4wb_tlb_fns | 270 | .long v4wb_tlb_fns |
305 | .long v4_mc_user_fns | 271 | .long v4_mc_user_fns |
306 | .long v4wb_cache_fns | 272 | .long v4wb_cache_fns |
307 | .size __sa1100_proc_info, . - __sa1100_proc_info | 273 | .size __\name\()_proc_info, . - __\name\()_proc_info |
274 | .endm | ||
308 | 275 | ||
309 | .type __sa1110_proc_info,#object | 276 | sa1100_proc_info sa1100, 0x4401a110, 0xfffffff0, cpu_sa1100_name |
310 | __sa1110_proc_info: | 277 | sa1100_proc_info sa1110, 0x6901b110, 0xfffffff0, cpu_sa1110_name |
311 | .long 0x6901b110 | ||
312 | .long 0xfffffff0 | ||
313 | .long PMD_TYPE_SECT | \ | ||
314 | PMD_SECT_BUFFERABLE | \ | ||
315 | PMD_SECT_CACHEABLE | \ | ||
316 | PMD_SECT_AP_WRITE | \ | ||
317 | PMD_SECT_AP_READ | ||
318 | .long PMD_TYPE_SECT | \ | ||
319 | PMD_SECT_AP_WRITE | \ | ||
320 | PMD_SECT_AP_READ | ||
321 | b __sa1100_setup | ||
322 | .long cpu_arch_name | ||
323 | .long cpu_elf_name | ||
324 | .long HWCAP_SWP | HWCAP_HALF | HWCAP_26BIT | HWCAP_FAST_MULT | ||
325 | .long cpu_sa1110_name | ||
326 | .long sa1100_processor_functions | ||
327 | .long v4wb_tlb_fns | ||
328 | .long v4_mc_user_fns | ||
329 | .long v4wb_cache_fns | ||
330 | .size __sa1110_proc_info, . - __sa1110_proc_info | ||