2 * linux/arch/arm/boot/compressed/head-sa1100.S
4 * Copyright (C) 1999 Nicolas Pitre <nico@cam.org>
6 * SA1100 specific tweaks. This is merged into head.S by the linker.
10 #include <linux/config.h>
11 #include <linux/linkage.h>
12 #include <asm/mach-types.h>
14 .section ".start", "ax"
18 @ Preserve r8/r7 i.e. kernel entry values
20 #if defined(CONFIG_SA1100_GRAPHICSCLIENT) && !defined(CONFIG_ANGELBOOT)
21 mov r7, #MACH_TYPE_GRAPHICSCLIENT
24 #if defined(CONFIG_SA1100_GRAPHICSMASTER) && !defined(CONFIG_ANGELBOOT)
25 mov r7, #MACH_TYPE_GRAPHICSMASTER
28 #if defined(CONFIG_SA1100_ADSBITSY) && !defined(CONFIG_ANGELBOOT)
29 mov r7, #MACH_TYPE_ADSBITSY
33 #ifdef CONFIG_SA1100_COLLIE
34 mov r7, #MACH_TYPE_COLLIE
36 #ifdef CONFIG_SA1100_PFS168
37 @ REVISIT_PFS168: Temporary until firmware updated to use assigned machine number
38 mov r7, #MACH_TYPE_PFS168
40 #ifdef CONFIG_SA1100_SIMPAD
41 @ UNTIL we've something like an open bootldr
42 mov r7, #MACH_TYPE_SIMPAD @should be 87
45 #ifdef CONFIG_SA1100_VICTOR
46 teq r7, #MACH_TYPE_VICTOR
49 @ Copy cmdline to 0xc0000000
53 1: ldrneb r2, [r0], #1
60 mrc p15, 0, r0, c1, c0, 0 @ read control reg
64 @ Data cache might be active.
65 @ Be sure to flush kernel binary out of the cache,
66 @ whatever state it is, before it is turned off.
67 @ This is done by fetching through currently executed
68 @ memory to be sure we hit the same cache.
70 add r3, r2, #0x4000 @ 16 kb is quite enough...
74 mcr p15, 0, r0, c7, c10, 4 @ drain WB
75 mcr p15, 0, r0, c7, c7, 0 @ flush I & D caches
77 @ disabling MMU and caches
78 mrc p15, 0, r0, c1, c0, 0 @ read control reg
79 bic r0, r0, #0x0d @ clear WB, DC, MMU
80 bic r0, r0, #0x1000 @ clear Icache
81 mcr p15, 0, r0, c1, c0, 0