1 /* btfixup.c: Boot time code fixup and relocator, so that
2 * we can get rid of most indirect calls to achieve single
3 * image sun4c and srmmu kernel.
5 * Copyright (C) 1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
8 #include <linux/kernel.h>
9 #include <linux/init.h>
10 #include <asm/btfixup.h>
12 #include <asm/pgalloc.h>
13 #include <asm/pgtable.h>
14 #include <asm/oplib.h>
15 #include <asm/system.h>
16 #include <asm/cacheflush.h>
18 #define BTFIXUP_OPTIMIZE_NOP
19 #define BTFIXUP_OPTIMIZE_OTHER
21 extern char *srmmu_name
;
22 static char version
[] __initdata
= "Boot time fixup v1.6. 4/Mar/98 Jakub Jelinek (jj@ultra.linux.cz). Patching kernel for ";
24 static char str_sun4c
[] __initdata
= "sun4\n";
26 static char str_sun4c
[] __initdata
= "sun4c\n";
28 static char str_srmmu
[] __initdata
= "srmmu[%s]/";
29 static char str_iommu
[] __initdata
= "iommu\n";
30 static char str_iounit
[] __initdata
= "io-unit\n";
32 static int visited __initdata
= 0;
33 extern unsigned int ___btfixup_start
[], ___btfixup_end
[], __init_begin
[], __init_end
[], __init_text_end
[];
34 extern unsigned int _stext
[], _end
[], __start___ksymtab
[], __stop___ksymtab
[];
35 static char wrong_f
[] __initdata
= "Trying to set f fixup %p to invalid function %08x\n";
36 static char wrong_b
[] __initdata
= "Trying to set b fixup %p to invalid function %08x\n";
37 static char wrong_s
[] __initdata
= "Trying to set s fixup %p to invalid value %08x\n";
38 static char wrong_h
[] __initdata
= "Trying to set h fixup %p to invalid value %08x\n";
39 static char wrong_a
[] __initdata
= "Trying to set a fixup %p to invalid value %08x\n";
40 static char wrong
[] __initdata
= "Wrong address for %c fixup %p\n";
41 static char insn_f
[] __initdata
= "Fixup f %p refers to weird instructions at %p[%08x,%08x]\n";
42 static char insn_b
[] __initdata
= "Fixup b %p doesn't refer to a SETHI at %p[%08x]\n";
43 static char insn_s
[] __initdata
= "Fixup s %p doesn't refer to an OR at %p[%08x]\n";
44 static char insn_h
[] __initdata
= "Fixup h %p doesn't refer to a SETHI at %p[%08x]\n";
45 static char insn_a
[] __initdata
= "Fixup a %p doesn't refer to a SETHI nor OR at %p[%08x]\n";
46 static char insn_i
[] __initdata
= "Fixup i %p doesn't refer to a valid instruction at %p[%08x]\n";
47 static char fca_und
[] __initdata
= "flush_cache_all undefined in btfixup()\n";
48 static char wrong_setaddr
[] __initdata
= "Garbled CALL/INT patch at %p[%08x,%08x,%08x]=%08x\n";
50 #ifdef BTFIXUP_OPTIMIZE_OTHER
51 static void __init
set_addr(unsigned int *addr
, unsigned int q1
, int fmangled
, unsigned int value
)
56 unsigned int *q
= (unsigned int *)q1
;
57 if (*addr
== 0x01000000) {
60 } else if (addr
[-1] == *q
) {
65 prom_printf(wrong_setaddr
, addr
-1, addr
[-1], *addr
, *q
, value
);
71 static inline void set_addr(unsigned int *addr
, unsigned int q1
, int fmangled
, unsigned int value
)
77 void __init
btfixup(void)
84 void (*flush_cacheall
)(void);
92 printk(str_srmmu
, srmmu_name
);
93 if (sparc_cpu_model
== sun4d
)
99 for (p
= ___btfixup_start
; p
< ___btfixup_end
; ) {
102 switch (type
= *(unsigned char *)p
) {
106 if (((p
[0] & 1) || p
[1])
107 && ((p
[1] & 3) || (unsigned *)(p
[1]) < _stext
|| (unsigned *)(p
[1]) >= _end
)) {
108 prom_printf(wrong_f
, p
, p
[1]);
113 if (p
[1] < (unsigned long)__init_begin
|| p
[1] >= (unsigned long)__init_text_end
|| (p
[1] & 3)) {
114 prom_printf(wrong_b
, p
, p
[1]);
119 if (p
[1] + 0x1000 >= 0x2000) {
120 prom_printf(wrong_s
, p
, p
[1]);
126 prom_printf(wrong_h
, p
, p
[1]);
131 if (p
[1] + 0x1000 >= 0x2000 && (p
[1] & 0x3ff)) {
132 prom_printf(wrong_a
, p
, p
[1]);
141 addr
= (unsigned *)*q
;
142 if (addr
< _stext
|| addr
>= _end
) {
143 prom_printf(wrong
, type
, p
);
147 #ifdef BTFIXUP_OPTIMIZE_OTHER
148 if (type
!= 'f' && q
[1]) {
149 insn
= *(unsigned int *)q
[1];
150 if (!insn
|| insn
== 1)
158 if (addr
>= __start___ksymtab
&& addr
< __stop___ksymtab
) {
162 if ((insn
& 0xc1c00000) == 0x01000000) { /* SETHI */
163 *addr
= (insn
& 0xffc00000) | (p
[1] >> 10); break;
164 } else if ((insn
& 0xc1f82000) == 0x80102000) { /* OR X, %LO(i), Y */
165 *addr
= (insn
& 0xffffe000) | (p
[1] & 0x3ff); break;
166 } else if ((insn
& 0xc0000000) != 0x40000000) { /* !CALL */
168 prom_printf(insn_f
, p
, addr
, insn
, addr
[1]);
171 } else if (q
[1] != 1)
173 if (p
[2] == BTFIXUPCALL_NORM
) {
175 *addr
= 0x40000000 | ((p
[1] - (unsigned)addr
) >> 2);
179 #ifndef BTFIXUP_OPTIMIZE_NOP
182 if (!(addr
[1] & 0x80000000)) {
183 if ((addr
[1] & 0xc1c00000) != 0x01000000) /* !SETHI */
184 goto bad_f
; /* CALL, Bicc, FBfcc, CBccc are weird in delay slot, aren't they? */
186 if ((addr
[1] & 0x01800000) == 0x01800000) {
187 if ((addr
[1] & 0x01f80000) == 0x01e80000) {
189 goto norm_f
; /* It is dangerous to patch that */
193 if ((addr
[1] & 0xffffe003) == 0x9e03e000) {
194 /* ADD %O7, XX, %o7 */
195 int displac
= (addr
[1] << 19);
197 displac
= (displac
>> 21) + 2;
198 *addr
= (0x10800000) + (displac
& 0x3fffff);
203 if ((addr
[1] & 0x201f) == 0x200f || (addr
[1] & 0x7c000) == 0x3c000)
204 goto norm_f
; /* Someone is playing bad tricks with us: rs1 or rs2 is o7 */
205 if ((addr
[1] & 0x3e000000) == 0x1e000000)
206 goto norm_f
; /* rd is %o7. We'd better take care. */
208 if (p
[2] == BTFIXUPCALL_NOP
) {
213 #ifndef BTFIXUP_OPTIMIZE_OTHER
216 if (addr
[1] == 0x01000000) { /* NOP in the delay slot */
221 if ((addr
[1] & 0xc0000000) != 0xc0000000) {
222 /* Not a memory operation */
223 if ((addr
[1] & 0x30000000) == 0x10000000) {
224 /* Ok, non-memory op with rd %oX */
225 if ((addr
[1] & 0x3e000000) == 0x1c000000)
226 goto bad_f
; /* Aiee. Someone is playing strange %sp tricks */
227 if ((addr
[1] & 0x3e000000) > 0x12000000 ||
228 ((addr
[1] & 0x3e000000) == 0x12000000 &&
229 p
[2] != BTFIXUPCALL_STO1O0
&& p
[2] != BTFIXUPCALL_SWAPO0O1
) ||
230 ((p
[2] & 0xffffe000) == BTFIXUPCALL_RETINT(0))) {
231 /* Nobody uses the result. We can nop it out. */
234 addr
[1] = 0x01000000;
237 if ((addr
[1] & 0xf1ffffe0) == 0x90100000) {
239 if ((addr
[1] & 0x3e000000) == 0x10000000 &&
240 (p
[2] & 0x7c000) == 0x20000) {
241 /* Ok, it is call xx; mov reg, %o0 and call optimizes
242 to doing something on %o0. Patch the patch. */
243 *addr
= (p
[2] & ~0x7c000) | ((addr
[1] & 0x1f) << 14);
245 addr
[1] = 0x01000000;
248 if ((addr
[1] & 0x3e000000) == 0x12000000 &&
249 p
[2] == BTFIXUPCALL_STO1O0
) {
250 *addr
= (p
[2] & ~0x3e000000) | ((addr
[1] & 0x1f) << 25);
252 addr
[1] = 0x01000000;
262 #endif /* BTFIXUP_OPTIMIZE_OTHER */
263 #endif /* BTFIXUP_OPTIMIZE_NOP */
264 case 'b': /* BLACKBOX */
265 /* Has to be sethi i, xx */
266 if ((insn
& 0xc1c00000) != 0x01000000) {
267 prom_printf(insn_b
, p
, addr
, insn
);
270 void (*do_fixup
)(unsigned *);
272 do_fixup
= (void (*)(unsigned *))p
[1];
276 case 's': /* SIMM13 */
277 /* Has to be or %g0, i, xx */
278 if ((insn
& 0xc1ffe000) != 0x80102000) {
279 prom_printf(insn_s
, p
, addr
, insn
);
282 set_addr(addr
, q
[1], fmangled
, (insn
& 0xffffe000) | (p
[1] & 0x1fff));
284 case 'h': /* SETHI */
285 /* Has to be sethi i, xx */
286 if ((insn
& 0xc1c00000) != 0x01000000) {
287 prom_printf(insn_h
, p
, addr
, insn
);
290 set_addr(addr
, q
[1], fmangled
, (insn
& 0xffc00000) | (p
[1] >> 10));
293 /* Has to be sethi i, xx or or %g0, i, xx */
294 if ((insn
& 0xc1c00000) != 0x01000000 &&
295 (insn
& 0xc1ffe000) != 0x80102000) {
296 prom_printf(insn_a
, p
, addr
, insn
);
300 set_addr(addr
, q
[1], fmangled
,
301 (insn
& 0x3e000000) | 0x80102000 | (p
[1] & 0x1fff));
303 set_addr(addr
, q
[1], fmangled
,
304 (insn
& 0x3e000000) | 0x01000000 | (p
[1] >> 10));
307 if ((insn
& 0xc1c00000) == 0x01000000) /* %HI */
308 set_addr(addr
, q
[1], fmangled
, (insn
& 0xffc00000) | (p
[1] >> 10));
309 else if ((insn
& 0x80002000) == 0x80002000 &&
310 (insn
& 0x01800000) != 0x01800000) /* %LO */
311 set_addr(addr
, q
[1], fmangled
, (insn
& 0xffffe000) | (p
[1] & 0x3ff));
313 prom_printf(insn_i
, p
, addr
, insn
);
325 flush_cacheall
= (void (*)(void))BTFIXUPVAL_CALL(local_flush_cache_all
);
327 flush_cacheall
= (void (*)(void))BTFIXUPVAL_CALL(flush_cache_all
);
329 if (!flush_cacheall
) {
330 prom_printf(fca_und
);