ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / arm / boot / compressed / head-sa1100.S
1 /* 
2  * linux/arch/arm/boot/compressed/head-sa1100.S
3  * 
4  * Copyright (C) 1999 Nicolas Pitre <nico@cam.org>
5  * 
6  * SA1100 specific tweaks.  This is merged into head.S by the linker.
7  *
8  */
9
10 #include <linux/config.h>
11 #include <linux/linkage.h>
12 #include <asm/mach-types.h>
13
14                 .section        ".start", "ax"
15
16 __SA1100_start:
17
18                 @ Preserve r8/r7 i.e. kernel entry values
19
20 #if defined(CONFIG_SA1100_GRAPHICSCLIENT) && !defined(CONFIG_ANGELBOOT)
21                 mov     r7, #MACH_TYPE_GRAPHICSCLIENT
22                 mov     r8, #0
23 #endif
24 #if defined(CONFIG_SA1100_GRAPHICSMASTER) && !defined(CONFIG_ANGELBOOT)
25                 mov     r7, #MACH_TYPE_GRAPHICSMASTER
26                 mov     r8, #0
27 #endif
28 #if defined(CONFIG_SA1100_ADSBITSY) && !defined(CONFIG_ANGELBOOT)
29                 mov     r7, #MACH_TYPE_ADSBITSY
30                 mov     r8, #0
31 #endif
32
33 #ifdef CONFIG_SA1100_PFS168
34                 @ REVISIT_PFS168: Temporary until firmware updated to use assigned machine number
35                 mov     r7, #MACH_TYPE_PFS168
36 #endif
37 #ifdef CONFIG_SA1100_SIMPAD
38                 @ UNTIL we've something like an open bootldr
39                 mov     r7, #MACH_TYPE_SIMPAD @should be 87
40 #endif
41
42 #ifdef CONFIG_SA1100_VICTOR
43                 teq     r7, #MACH_TYPE_VICTOR
44                 bne     10f
45
46                 @ Copy cmdline to 0xc0000000
47                 mov     r1, #0xc0000000
48                 cmp     r0, #0
49                 moveq   r2, #0
50 1:              ldrneb  r2, [r0], #1
51                 cmpne   r2, #0
52                 strb    r2, [r1], #1
53                 bne     1b
54 10:
55 #endif
56
57                 mrc     p15, 0, r0, c1, c0, 0   @ read control reg
58                 ands    r0, r0, #0x0d
59                 beq     99f
60
61                 @ Data cache might be active.
62                 @ Be sure to flush kernel binary out of the cache,
63                 @ whatever state it is, before it is turned off.
64                 @ This is done by fetching through currently executed
65                 @ memory to be sure we hit the same cache.
66                 bic     r2, pc, #0x1f
67                 add     r3, r2, #0x4000         @ 16 kb is quite enough...
68 1:              ldr     r0, [r2], #32
69                 teq     r2, r3
70                 bne     1b
71                 mcr     p15, 0, r0, c7, c10, 4  @ drain WB
72                 mcr     p15, 0, r0, c7, c7, 0   @ flush I & D caches
73
74                 @ disabling MMU and caches
75                 mrc     p15, 0, r0, c1, c0, 0   @ read control reg
76                 bic     r0, r0, #0x0d           @ clear WB, DC, MMU
77                 bic     r0, r0, #0x1000         @ clear Icache
78                 mcr     p15, 0, r0, c1, c0, 0
79 99: