Linux Audio

Check our new training course

Loading...
v4.17
  1/*
  2 *  Copyright (C) 2001 Ben. Herrenschmidt (benh@kernel.crashing.org)
  3 *
  4 *  Modifications for ppc64:
  5 *      Copyright (C) 2003 Dave Engebretsen <engebret@us.ibm.com>
  6 *
  7 *  Copyright 2008 Michael Ellerman, IBM Corporation.
  8 *
  9 *  This program is free software; you can redistribute it and/or
 10 *  modify it under the terms of the GNU General Public License
 11 *  as published by the Free Software Foundation; either version
 12 *  2 of the License, or (at your option) any later version.
 13 */
 14
 15#include <linux/types.h>
 16#include <linux/jump_label.h>
 17#include <linux/kernel.h>
 18#include <linux/string.h>
 19#include <linux/init.h>
 20#include <linux/sched/mm.h>
 21#include <asm/cputable.h>
 22#include <asm/code-patching.h>
 23#include <asm/page.h>
 24#include <asm/sections.h>
 25#include <asm/setup.h>
 26#include <asm/security_features.h>
 27#include <asm/firmware.h>
 28
 29struct fixup_entry {
 30	unsigned long	mask;
 31	unsigned long	value;
 32	long		start_off;
 33	long		end_off;
 34	long		alt_start_off;
 35	long		alt_end_off;
 36};
 37
 38static unsigned int *calc_addr(struct fixup_entry *fcur, long offset)
 39{
 40	/*
 41	 * We store the offset to the code as a negative offset from
 42	 * the start of the alt_entry, to support the VDSO. This
 43	 * routine converts that back into an actual address.
 44	 */
 45	return (unsigned int *)((unsigned long)fcur + offset);
 46}
 47
 48static int patch_alt_instruction(unsigned int *src, unsigned int *dest,
 49				 unsigned int *alt_start, unsigned int *alt_end)
 50{
 51	unsigned int instr;
 52
 53	instr = *src;
 54
 55	if (instr_is_relative_branch(*src)) {
 56		unsigned int *target = (unsigned int *)branch_target(src);
 57
 58		/* Branch within the section doesn't need translating */
 59		if (target < alt_start || target > alt_end) {
 60			instr = translate_branch(dest, src);
 61			if (!instr)
 62				return 1;
 63		}
 64	}
 65
 66	raw_patch_instruction(dest, instr);
 67
 68	return 0;
 69}
 70
 71static int patch_feature_section(unsigned long value, struct fixup_entry *fcur)
 72{
 73	unsigned int *start, *end, *alt_start, *alt_end, *src, *dest;
 74
 75	start = calc_addr(fcur, fcur->start_off);
 76	end = calc_addr(fcur, fcur->end_off);
 77	alt_start = calc_addr(fcur, fcur->alt_start_off);
 78	alt_end = calc_addr(fcur, fcur->alt_end_off);
 79
 80	if ((alt_end - alt_start) > (end - start))
 81		return 1;
 82
 83	if ((value & fcur->mask) == fcur->value)
 84		return 0;
 85
 86	src = alt_start;
 87	dest = start;
 88
 89	for (; src < alt_end; src++, dest++) {
 90		if (patch_alt_instruction(src, dest, alt_start, alt_end))
 91			return 1;
 92	}
 93
 94	for (; dest < end; dest++)
 95		raw_patch_instruction(dest, PPC_INST_NOP);
 96
 97	return 0;
 98}
 99
100void do_feature_fixups(unsigned long value, void *fixup_start, void *fixup_end)
101{
102	struct fixup_entry *fcur, *fend;
103
104	fcur = fixup_start;
105	fend = fixup_end;
106
107	for (; fcur < fend; fcur++) {
108		if (patch_feature_section(value, fcur)) {
109			WARN_ON(1);
110			printk("Unable to patch feature section at %p - %p" \
111				" with %p - %p\n",
112				calc_addr(fcur, fcur->start_off),
113				calc_addr(fcur, fcur->end_off),
114				calc_addr(fcur, fcur->alt_start_off),
115				calc_addr(fcur, fcur->alt_end_off));
116		}
117	}
118}
119
120#ifdef CONFIG_PPC_BOOK3S_64
121void do_stf_entry_barrier_fixups(enum stf_barrier_type types)
122{
123	unsigned int instrs[3], *dest;
124	long *start, *end;
125	int i;
126
127	start = PTRRELOC(&__start___stf_entry_barrier_fixup),
128	end = PTRRELOC(&__stop___stf_entry_barrier_fixup);
129
130	instrs[0] = 0x60000000; /* nop */
131	instrs[1] = 0x60000000; /* nop */
132	instrs[2] = 0x60000000; /* nop */
133
134	i = 0;
135	if (types & STF_BARRIER_FALLBACK) {
136		instrs[i++] = 0x7d4802a6; /* mflr r10		*/
137		instrs[i++] = 0x60000000; /* branch patched below */
138		instrs[i++] = 0x7d4803a6; /* mtlr r10		*/
139	} else if (types & STF_BARRIER_EIEIO) {
140		instrs[i++] = 0x7e0006ac; /* eieio + bit 6 hint */
141	} else if (types & STF_BARRIER_SYNC_ORI) {
142		instrs[i++] = 0x7c0004ac; /* hwsync		*/
143		instrs[i++] = 0xe94d0000; /* ld r10,0(r13)	*/
144		instrs[i++] = 0x63ff0000; /* ori 31,31,0 speculation barrier */
145	}
146
147	for (i = 0; start < end; start++, i++) {
148		dest = (void *)start + *start;
149
150		pr_devel("patching dest %lx\n", (unsigned long)dest);
151
152		patch_instruction(dest, instrs[0]);
153
154		if (types & STF_BARRIER_FALLBACK)
155			patch_branch(dest + 1, (unsigned long)&stf_barrier_fallback,
156				     BRANCH_SET_LINK);
157		else
158			patch_instruction(dest + 1, instrs[1]);
159
160		patch_instruction(dest + 2, instrs[2]);
161	}
162
163	printk(KERN_DEBUG "stf-barrier: patched %d entry locations (%s barrier)\n", i,
164		(types == STF_BARRIER_NONE)                  ? "no" :
165		(types == STF_BARRIER_FALLBACK)              ? "fallback" :
166		(types == STF_BARRIER_EIEIO)                 ? "eieio" :
167		(types == (STF_BARRIER_SYNC_ORI))            ? "hwsync"
168		                                           : "unknown");
169}
170
171void do_stf_exit_barrier_fixups(enum stf_barrier_type types)
172{
173	unsigned int instrs[6], *dest;
174	long *start, *end;
175	int i;
176
177	start = PTRRELOC(&__start___stf_exit_barrier_fixup),
178	end = PTRRELOC(&__stop___stf_exit_barrier_fixup);
179
180	instrs[0] = 0x60000000; /* nop */
181	instrs[1] = 0x60000000; /* nop */
182	instrs[2] = 0x60000000; /* nop */
183	instrs[3] = 0x60000000; /* nop */
184	instrs[4] = 0x60000000; /* nop */
185	instrs[5] = 0x60000000; /* nop */
186
187	i = 0;
188	if (types & STF_BARRIER_FALLBACK || types & STF_BARRIER_SYNC_ORI) {
189		if (cpu_has_feature(CPU_FTR_HVMODE)) {
190			instrs[i++] = 0x7db14ba6; /* mtspr 0x131, r13 (HSPRG1) */
191			instrs[i++] = 0x7db04aa6; /* mfspr r13, 0x130 (HSPRG0) */
192		} else {
193			instrs[i++] = 0x7db243a6; /* mtsprg 2,r13	*/
194			instrs[i++] = 0x7db142a6; /* mfsprg r13,1    */
195	        }
196		instrs[i++] = 0x7c0004ac; /* hwsync		*/
197		instrs[i++] = 0xe9ad0000; /* ld r13,0(r13)	*/
198		instrs[i++] = 0x63ff0000; /* ori 31,31,0 speculation barrier */
199		if (cpu_has_feature(CPU_FTR_HVMODE)) {
200			instrs[i++] = 0x7db14aa6; /* mfspr r13, 0x131 (HSPRG1) */
201		} else {
202			instrs[i++] = 0x7db242a6; /* mfsprg r13,2 */
203		}
204	} else if (types & STF_BARRIER_EIEIO) {
205		instrs[i++] = 0x7e0006ac; /* eieio + bit 6 hint */
206	}
207
208	for (i = 0; start < end; start++, i++) {
209		dest = (void *)start + *start;
210
211		pr_devel("patching dest %lx\n", (unsigned long)dest);
212
213		patch_instruction(dest, instrs[0]);
214		patch_instruction(dest + 1, instrs[1]);
215		patch_instruction(dest + 2, instrs[2]);
216		patch_instruction(dest + 3, instrs[3]);
217		patch_instruction(dest + 4, instrs[4]);
218		patch_instruction(dest + 5, instrs[5]);
219	}
220	printk(KERN_DEBUG "stf-barrier: patched %d exit locations (%s barrier)\n", i,
221		(types == STF_BARRIER_NONE)                  ? "no" :
222		(types == STF_BARRIER_FALLBACK)              ? "fallback" :
223		(types == STF_BARRIER_EIEIO)                 ? "eieio" :
224		(types == (STF_BARRIER_SYNC_ORI))            ? "hwsync"
225		                                           : "unknown");
226}
227
228
229void do_stf_barrier_fixups(enum stf_barrier_type types)
230{
231	do_stf_entry_barrier_fixups(types);
232	do_stf_exit_barrier_fixups(types);
233}
234
235void do_rfi_flush_fixups(enum l1d_flush_type types)
236{
237	unsigned int instrs[3], *dest;
238	long *start, *end;
239	int i;
240
241	start = PTRRELOC(&__start___rfi_flush_fixup),
242	end = PTRRELOC(&__stop___rfi_flush_fixup);
243
244	instrs[0] = 0x60000000; /* nop */
245	instrs[1] = 0x60000000; /* nop */
246	instrs[2] = 0x60000000; /* nop */
247
248	if (types & L1D_FLUSH_FALLBACK)
249		/* b .+16 to fallback flush */
250		instrs[0] = 0x48000010;
251
252	i = 0;
253	if (types & L1D_FLUSH_ORI) {
254		instrs[i++] = 0x63ff0000; /* ori 31,31,0 speculation barrier */
255		instrs[i++] = 0x63de0000; /* ori 30,30,0 L1d flush*/
256	}
257
258	if (types & L1D_FLUSH_MTTRIG)
259		instrs[i++] = 0x7c12dba6; /* mtspr TRIG2,r0 (SPR #882) */
260
261	for (i = 0; start < end; start++, i++) {
262		dest = (void *)start + *start;
263
264		pr_devel("patching dest %lx\n", (unsigned long)dest);
265
266		patch_instruction(dest, instrs[0]);
267		patch_instruction(dest + 1, instrs[1]);
268		patch_instruction(dest + 2, instrs[2]);
269	}
270
271	printk(KERN_DEBUG "rfi-flush: patched %d locations (%s flush)\n", i,
272		(types == L1D_FLUSH_NONE)       ? "no" :
273		(types == L1D_FLUSH_FALLBACK)   ? "fallback displacement" :
274		(types &  L1D_FLUSH_ORI)        ? (types & L1D_FLUSH_MTTRIG)
275							? "ori+mttrig type"
276							: "ori type" :
277		(types &  L1D_FLUSH_MTTRIG)     ? "mttrig type"
278						: "unknown");
279}
280#endif /* CONFIG_PPC_BOOK3S_64 */
281
282void do_lwsync_fixups(unsigned long value, void *fixup_start, void *fixup_end)
283{
284	long *start, *end;
285	unsigned int *dest;
286
287	if (!(value & CPU_FTR_LWSYNC))
288		return ;
289
290	start = fixup_start;
291	end = fixup_end;
292
293	for (; start < end; start++) {
294		dest = (void *)start + *start;
295		raw_patch_instruction(dest, PPC_INST_LWSYNC);
296	}
297}
298
299static void do_final_fixups(void)
300{
301#if defined(CONFIG_PPC64) && defined(CONFIG_RELOCATABLE)
302	int *src, *dest;
303	unsigned long length;
304
305	if (PHYSICAL_START == 0)
306		return;
307
308	src = (int *)(KERNELBASE + PHYSICAL_START);
309	dest = (int *)KERNELBASE;
310	length = (__end_interrupts - _stext) / sizeof(int);
311
312	while (length--) {
313		raw_patch_instruction(dest, *src);
314		src++;
315		dest++;
316	}
317#endif
318}
319
320static unsigned long __initdata saved_cpu_features;
321static unsigned int __initdata saved_mmu_features;
322#ifdef CONFIG_PPC64
323static unsigned long __initdata saved_firmware_features;
324#endif
325
326void __init apply_feature_fixups(void)
327{
328	struct cpu_spec *spec = PTRRELOC(*PTRRELOC(&cur_cpu_spec));
329
330	*PTRRELOC(&saved_cpu_features) = spec->cpu_features;
331	*PTRRELOC(&saved_mmu_features) = spec->mmu_features;
332
333	/*
334	 * Apply the CPU-specific and firmware specific fixups to kernel text
335	 * (nop out sections not relevant to this CPU or this firmware).
336	 */
337	do_feature_fixups(spec->cpu_features,
338			  PTRRELOC(&__start___ftr_fixup),
339			  PTRRELOC(&__stop___ftr_fixup));
340
341	do_feature_fixups(spec->mmu_features,
342			  PTRRELOC(&__start___mmu_ftr_fixup),
343			  PTRRELOC(&__stop___mmu_ftr_fixup));
344
345	do_lwsync_fixups(spec->cpu_features,
346			 PTRRELOC(&__start___lwsync_fixup),
347			 PTRRELOC(&__stop___lwsync_fixup));
348
349#ifdef CONFIG_PPC64
350	saved_firmware_features = powerpc_firmware_features;
351	do_feature_fixups(powerpc_firmware_features,
352			  &__start___fw_ftr_fixup, &__stop___fw_ftr_fixup);
353#endif
354	do_final_fixups();
355}
356
357void __init setup_feature_keys(void)
358{
359	/*
360	 * Initialise jump label. This causes all the cpu/mmu_has_feature()
361	 * checks to take on their correct polarity based on the current set of
362	 * CPU/MMU features.
363	 */
364	jump_label_init();
365	cpu_feature_keys_init();
366	mmu_feature_keys_init();
367}
368
369static int __init check_features(void)
370{
371	WARN(saved_cpu_features != cur_cpu_spec->cpu_features,
372	     "CPU features changed after feature patching!\n");
373	WARN(saved_mmu_features != cur_cpu_spec->mmu_features,
374	     "MMU features changed after feature patching!\n");
375#ifdef CONFIG_PPC64
376	WARN(saved_firmware_features != powerpc_firmware_features,
377	     "Firmware features changed after feature patching!\n");
378#endif
379
380	return 0;
381}
382late_initcall(check_features);
383
384#ifdef CONFIG_FTR_FIXUP_SELFTEST
385
386#define check(x)	\
387	if (!(x)) printk("feature-fixups: test failed at line %d\n", __LINE__);
388
389/* This must be after the text it fixes up, vmlinux.lds.S enforces that atm */
390static struct fixup_entry fixup;
391
392static long calc_offset(struct fixup_entry *entry, unsigned int *p)
393{
394	return (unsigned long)p - (unsigned long)entry;
395}
396
397static void test_basic_patching(void)
398{
399	extern unsigned int ftr_fixup_test1[];
400	extern unsigned int end_ftr_fixup_test1[];
401	extern unsigned int ftr_fixup_test1_orig[];
402	extern unsigned int ftr_fixup_test1_expected[];
403	int size = end_ftr_fixup_test1 - ftr_fixup_test1;
404
405	fixup.value = fixup.mask = 8;
406	fixup.start_off = calc_offset(&fixup, ftr_fixup_test1 + 1);
407	fixup.end_off = calc_offset(&fixup, ftr_fixup_test1 + 2);
408	fixup.alt_start_off = fixup.alt_end_off = 0;
409
410	/* Sanity check */
411	check(memcmp(ftr_fixup_test1, ftr_fixup_test1_orig, size) == 0);
412
413	/* Check we don't patch if the value matches */
414	patch_feature_section(8, &fixup);
415	check(memcmp(ftr_fixup_test1, ftr_fixup_test1_orig, size) == 0);
416
417	/* Check we do patch if the value doesn't match */
418	patch_feature_section(0, &fixup);
419	check(memcmp(ftr_fixup_test1, ftr_fixup_test1_expected, size) == 0);
420
421	/* Check we do patch if the mask doesn't match */
422	memcpy(ftr_fixup_test1, ftr_fixup_test1_orig, size);
423	check(memcmp(ftr_fixup_test1, ftr_fixup_test1_orig, size) == 0);
424	patch_feature_section(~8, &fixup);
425	check(memcmp(ftr_fixup_test1, ftr_fixup_test1_expected, size) == 0);
426}
427
428static void test_alternative_patching(void)
429{
430	extern unsigned int ftr_fixup_test2[];
431	extern unsigned int end_ftr_fixup_test2[];
432	extern unsigned int ftr_fixup_test2_orig[];
433	extern unsigned int ftr_fixup_test2_alt[];
434	extern unsigned int ftr_fixup_test2_expected[];
435	int size = end_ftr_fixup_test2 - ftr_fixup_test2;
436
437	fixup.value = fixup.mask = 0xF;
438	fixup.start_off = calc_offset(&fixup, ftr_fixup_test2 + 1);
439	fixup.end_off = calc_offset(&fixup, ftr_fixup_test2 + 2);
440	fixup.alt_start_off = calc_offset(&fixup, ftr_fixup_test2_alt);
441	fixup.alt_end_off = calc_offset(&fixup, ftr_fixup_test2_alt + 1);
442
443	/* Sanity check */
444	check(memcmp(ftr_fixup_test2, ftr_fixup_test2_orig, size) == 0);
445
446	/* Check we don't patch if the value matches */
447	patch_feature_section(0xF, &fixup);
448	check(memcmp(ftr_fixup_test2, ftr_fixup_test2_orig, size) == 0);
449
450	/* Check we do patch if the value doesn't match */
451	patch_feature_section(0, &fixup);
452	check(memcmp(ftr_fixup_test2, ftr_fixup_test2_expected, size) == 0);
453
454	/* Check we do patch if the mask doesn't match */
455	memcpy(ftr_fixup_test2, ftr_fixup_test2_orig, size);
456	check(memcmp(ftr_fixup_test2, ftr_fixup_test2_orig, size) == 0);
457	patch_feature_section(~0xF, &fixup);
458	check(memcmp(ftr_fixup_test2, ftr_fixup_test2_expected, size) == 0);
459}
460
461static void test_alternative_case_too_big(void)
462{
463	extern unsigned int ftr_fixup_test3[];
464	extern unsigned int end_ftr_fixup_test3[];
465	extern unsigned int ftr_fixup_test3_orig[];
466	extern unsigned int ftr_fixup_test3_alt[];
467	int size = end_ftr_fixup_test3 - ftr_fixup_test3;
468
469	fixup.value = fixup.mask = 0xC;
470	fixup.start_off = calc_offset(&fixup, ftr_fixup_test3 + 1);
471	fixup.end_off = calc_offset(&fixup, ftr_fixup_test3 + 2);
472	fixup.alt_start_off = calc_offset(&fixup, ftr_fixup_test3_alt);
473	fixup.alt_end_off = calc_offset(&fixup, ftr_fixup_test3_alt + 2);
474
475	/* Sanity check */
476	check(memcmp(ftr_fixup_test3, ftr_fixup_test3_orig, size) == 0);
477
478	/* Expect nothing to be patched, and the error returned to us */
479	check(patch_feature_section(0xF, &fixup) == 1);
480	check(memcmp(ftr_fixup_test3, ftr_fixup_test3_orig, size) == 0);
481	check(patch_feature_section(0, &fixup) == 1);
482	check(memcmp(ftr_fixup_test3, ftr_fixup_test3_orig, size) == 0);
483	check(patch_feature_section(~0xF, &fixup) == 1);
484	check(memcmp(ftr_fixup_test3, ftr_fixup_test3_orig, size) == 0);
485}
486
487static void test_alternative_case_too_small(void)
488{
489	extern unsigned int ftr_fixup_test4[];
490	extern unsigned int end_ftr_fixup_test4[];
491	extern unsigned int ftr_fixup_test4_orig[];
492	extern unsigned int ftr_fixup_test4_alt[];
493	extern unsigned int ftr_fixup_test4_expected[];
494	int size = end_ftr_fixup_test4 - ftr_fixup_test4;
495	unsigned long flag;
496
497	/* Check a high-bit flag */
498	flag = 1UL << ((sizeof(unsigned long) - 1) * 8);
499	fixup.value = fixup.mask = flag;
500	fixup.start_off = calc_offset(&fixup, ftr_fixup_test4 + 1);
501	fixup.end_off = calc_offset(&fixup, ftr_fixup_test4 + 5);
502	fixup.alt_start_off = calc_offset(&fixup, ftr_fixup_test4_alt);
503	fixup.alt_end_off = calc_offset(&fixup, ftr_fixup_test4_alt + 2);
504
505	/* Sanity check */
506	check(memcmp(ftr_fixup_test4, ftr_fixup_test4_orig, size) == 0);
507
508	/* Check we don't patch if the value matches */
509	patch_feature_section(flag, &fixup);
510	check(memcmp(ftr_fixup_test4, ftr_fixup_test4_orig, size) == 0);
511
512	/* Check we do patch if the value doesn't match */
513	patch_feature_section(0, &fixup);
514	check(memcmp(ftr_fixup_test4, ftr_fixup_test4_expected, size) == 0);
515
516	/* Check we do patch if the mask doesn't match */
517	memcpy(ftr_fixup_test4, ftr_fixup_test4_orig, size);
518	check(memcmp(ftr_fixup_test4, ftr_fixup_test4_orig, size) == 0);
519	patch_feature_section(~flag, &fixup);
520	check(memcmp(ftr_fixup_test4, ftr_fixup_test4_expected, size) == 0);
521}
522
523static void test_alternative_case_with_branch(void)
524{
525	extern unsigned int ftr_fixup_test5[];
526	extern unsigned int end_ftr_fixup_test5[];
527	extern unsigned int ftr_fixup_test5_expected[];
528	int size = end_ftr_fixup_test5 - ftr_fixup_test5;
529
530	check(memcmp(ftr_fixup_test5, ftr_fixup_test5_expected, size) == 0);
531}
532
533static void test_alternative_case_with_external_branch(void)
534{
535	extern unsigned int ftr_fixup_test6[];
536	extern unsigned int end_ftr_fixup_test6[];
537	extern unsigned int ftr_fixup_test6_expected[];
538	int size = end_ftr_fixup_test6 - ftr_fixup_test6;
539
540	check(memcmp(ftr_fixup_test6, ftr_fixup_test6_expected, size) == 0);
541}
542
543static void test_cpu_macros(void)
544{
545	extern u8 ftr_fixup_test_FTR_macros[];
546	extern u8 ftr_fixup_test_FTR_macros_expected[];
547	unsigned long size = ftr_fixup_test_FTR_macros_expected -
548			     ftr_fixup_test_FTR_macros;
549
550	/* The fixups have already been done for us during boot */
551	check(memcmp(ftr_fixup_test_FTR_macros,
552		     ftr_fixup_test_FTR_macros_expected, size) == 0);
553}
554
555static void test_fw_macros(void)
556{
557#ifdef CONFIG_PPC64
558	extern u8 ftr_fixup_test_FW_FTR_macros[];
559	extern u8 ftr_fixup_test_FW_FTR_macros_expected[];
560	unsigned long size = ftr_fixup_test_FW_FTR_macros_expected -
561			     ftr_fixup_test_FW_FTR_macros;
562
563	/* The fixups have already been done for us during boot */
564	check(memcmp(ftr_fixup_test_FW_FTR_macros,
565		     ftr_fixup_test_FW_FTR_macros_expected, size) == 0);
566#endif
567}
568
569static void test_lwsync_macros(void)
570{
571	extern u8 lwsync_fixup_test[];
572	extern u8 end_lwsync_fixup_test[];
573	extern u8 lwsync_fixup_test_expected_LWSYNC[];
574	extern u8 lwsync_fixup_test_expected_SYNC[];
575	unsigned long size = end_lwsync_fixup_test -
576			     lwsync_fixup_test;
577
578	/* The fixups have already been done for us during boot */
579	if (cur_cpu_spec->cpu_features & CPU_FTR_LWSYNC) {
580		check(memcmp(lwsync_fixup_test,
581			     lwsync_fixup_test_expected_LWSYNC, size) == 0);
582	} else {
583		check(memcmp(lwsync_fixup_test,
584			     lwsync_fixup_test_expected_SYNC, size) == 0);
585	}
586}
587
588static int __init test_feature_fixups(void)
589{
590	printk(KERN_DEBUG "Running feature fixup self-tests ...\n");
591
592	test_basic_patching();
593	test_alternative_patching();
594	test_alternative_case_too_big();
595	test_alternative_case_too_small();
596	test_alternative_case_with_branch();
597	test_alternative_case_with_external_branch();
598	test_cpu_macros();
599	test_fw_macros();
600	test_lwsync_macros();
601
602	return 0;
603}
604late_initcall(test_feature_fixups);
605
606#endif /* CONFIG_FTR_FIXUP_SELFTEST */
v4.6
  1/*
  2 *  Copyright (C) 2001 Ben. Herrenschmidt (benh@kernel.crashing.org)
  3 *
  4 *  Modifications for ppc64:
  5 *      Copyright (C) 2003 Dave Engebretsen <engebret@us.ibm.com>
  6 *
  7 *  Copyright 2008 Michael Ellerman, IBM Corporation.
  8 *
  9 *  This program is free software; you can redistribute it and/or
 10 *  modify it under the terms of the GNU General Public License
 11 *  as published by the Free Software Foundation; either version
 12 *  2 of the License, or (at your option) any later version.
 13 */
 14
 15#include <linux/types.h>
 
 16#include <linux/kernel.h>
 17#include <linux/string.h>
 18#include <linux/init.h>
 
 19#include <asm/cputable.h>
 20#include <asm/code-patching.h>
 21#include <asm/page.h>
 22#include <asm/sections.h>
 23
 
 
 24
 25struct fixup_entry {
 26	unsigned long	mask;
 27	unsigned long	value;
 28	long		start_off;
 29	long		end_off;
 30	long		alt_start_off;
 31	long		alt_end_off;
 32};
 33
 34static unsigned int *calc_addr(struct fixup_entry *fcur, long offset)
 35{
 36	/*
 37	 * We store the offset to the code as a negative offset from
 38	 * the start of the alt_entry, to support the VDSO. This
 39	 * routine converts that back into an actual address.
 40	 */
 41	return (unsigned int *)((unsigned long)fcur + offset);
 42}
 43
 44static int patch_alt_instruction(unsigned int *src, unsigned int *dest,
 45				 unsigned int *alt_start, unsigned int *alt_end)
 46{
 47	unsigned int instr;
 48
 49	instr = *src;
 50
 51	if (instr_is_relative_branch(*src)) {
 52		unsigned int *target = (unsigned int *)branch_target(src);
 53
 54		/* Branch within the section doesn't need translating */
 55		if (target < alt_start || target >= alt_end) {
 56			instr = translate_branch(dest, src);
 57			if (!instr)
 58				return 1;
 59		}
 60	}
 61
 62	patch_instruction(dest, instr);
 63
 64	return 0;
 65}
 66
 67static int patch_feature_section(unsigned long value, struct fixup_entry *fcur)
 68{
 69	unsigned int *start, *end, *alt_start, *alt_end, *src, *dest;
 70
 71	start = calc_addr(fcur, fcur->start_off);
 72	end = calc_addr(fcur, fcur->end_off);
 73	alt_start = calc_addr(fcur, fcur->alt_start_off);
 74	alt_end = calc_addr(fcur, fcur->alt_end_off);
 75
 76	if ((alt_end - alt_start) > (end - start))
 77		return 1;
 78
 79	if ((value & fcur->mask) == fcur->value)
 80		return 0;
 81
 82	src = alt_start;
 83	dest = start;
 84
 85	for (; src < alt_end; src++, dest++) {
 86		if (patch_alt_instruction(src, dest, alt_start, alt_end))
 87			return 1;
 88	}
 89
 90	for (; dest < end; dest++)
 91		patch_instruction(dest, PPC_INST_NOP);
 92
 93	return 0;
 94}
 95
 96void do_feature_fixups(unsigned long value, void *fixup_start, void *fixup_end)
 97{
 98	struct fixup_entry *fcur, *fend;
 99
100	fcur = fixup_start;
101	fend = fixup_end;
102
103	for (; fcur < fend; fcur++) {
104		if (patch_feature_section(value, fcur)) {
105			WARN_ON(1);
106			printk("Unable to patch feature section at %p - %p" \
107				" with %p - %p\n",
108				calc_addr(fcur, fcur->start_off),
109				calc_addr(fcur, fcur->end_off),
110				calc_addr(fcur, fcur->alt_start_off),
111				calc_addr(fcur, fcur->alt_end_off));
112		}
113	}
114}
115
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116void do_lwsync_fixups(unsigned long value, void *fixup_start, void *fixup_end)
117{
118	long *start, *end;
119	unsigned int *dest;
120
121	if (!(value & CPU_FTR_LWSYNC))
122		return ;
123
124	start = fixup_start;
125	end = fixup_end;
126
127	for (; start < end; start++) {
128		dest = (void *)start + *start;
129		patch_instruction(dest, PPC_INST_LWSYNC);
130	}
131}
132
133void do_final_fixups(void)
134{
135#if defined(CONFIG_PPC64) && defined(CONFIG_RELOCATABLE)
136	int *src, *dest;
137	unsigned long length;
138
139	if (PHYSICAL_START == 0)
140		return;
141
142	src = (int *)(KERNELBASE + PHYSICAL_START);
143	dest = (int *)KERNELBASE;
144	length = (__end_interrupts - _stext) / sizeof(int);
145
146	while (length--) {
147		patch_instruction(dest, *src);
148		src++;
149		dest++;
150	}
151#endif
152}
153
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
154#ifdef CONFIG_FTR_FIXUP_SELFTEST
155
156#define check(x)	\
157	if (!(x)) printk("feature-fixups: test failed at line %d\n", __LINE__);
158
159/* This must be after the text it fixes up, vmlinux.lds.S enforces that atm */
160static struct fixup_entry fixup;
161
162static long calc_offset(struct fixup_entry *entry, unsigned int *p)
163{
164	return (unsigned long)p - (unsigned long)entry;
165}
166
167static void test_basic_patching(void)
168{
169	extern unsigned int ftr_fixup_test1;
170	extern unsigned int end_ftr_fixup_test1;
171	extern unsigned int ftr_fixup_test1_orig;
172	extern unsigned int ftr_fixup_test1_expected;
173	int size = &end_ftr_fixup_test1 - &ftr_fixup_test1;
174
175	fixup.value = fixup.mask = 8;
176	fixup.start_off = calc_offset(&fixup, &ftr_fixup_test1 + 1);
177	fixup.end_off = calc_offset(&fixup, &ftr_fixup_test1 + 2);
178	fixup.alt_start_off = fixup.alt_end_off = 0;
179
180	/* Sanity check */
181	check(memcmp(&ftr_fixup_test1, &ftr_fixup_test1_orig, size) == 0);
182
183	/* Check we don't patch if the value matches */
184	patch_feature_section(8, &fixup);
185	check(memcmp(&ftr_fixup_test1, &ftr_fixup_test1_orig, size) == 0);
186
187	/* Check we do patch if the value doesn't match */
188	patch_feature_section(0, &fixup);
189	check(memcmp(&ftr_fixup_test1, &ftr_fixup_test1_expected, size) == 0);
190
191	/* Check we do patch if the mask doesn't match */
192	memcpy(&ftr_fixup_test1, &ftr_fixup_test1_orig, size);
193	check(memcmp(&ftr_fixup_test1, &ftr_fixup_test1_orig, size) == 0);
194	patch_feature_section(~8, &fixup);
195	check(memcmp(&ftr_fixup_test1, &ftr_fixup_test1_expected, size) == 0);
196}
197
198static void test_alternative_patching(void)
199{
200	extern unsigned int ftr_fixup_test2;
201	extern unsigned int end_ftr_fixup_test2;
202	extern unsigned int ftr_fixup_test2_orig;
203	extern unsigned int ftr_fixup_test2_alt;
204	extern unsigned int ftr_fixup_test2_expected;
205	int size = &end_ftr_fixup_test2 - &ftr_fixup_test2;
206
207	fixup.value = fixup.mask = 0xF;
208	fixup.start_off = calc_offset(&fixup, &ftr_fixup_test2 + 1);
209	fixup.end_off = calc_offset(&fixup, &ftr_fixup_test2 + 2);
210	fixup.alt_start_off = calc_offset(&fixup, &ftr_fixup_test2_alt);
211	fixup.alt_end_off = calc_offset(&fixup, &ftr_fixup_test2_alt + 1);
212
213	/* Sanity check */
214	check(memcmp(&ftr_fixup_test2, &ftr_fixup_test2_orig, size) == 0);
215
216	/* Check we don't patch if the value matches */
217	patch_feature_section(0xF, &fixup);
218	check(memcmp(&ftr_fixup_test2, &ftr_fixup_test2_orig, size) == 0);
219
220	/* Check we do patch if the value doesn't match */
221	patch_feature_section(0, &fixup);
222	check(memcmp(&ftr_fixup_test2, &ftr_fixup_test2_expected, size) == 0);
223
224	/* Check we do patch if the mask doesn't match */
225	memcpy(&ftr_fixup_test2, &ftr_fixup_test2_orig, size);
226	check(memcmp(&ftr_fixup_test2, &ftr_fixup_test2_orig, size) == 0);
227	patch_feature_section(~0xF, &fixup);
228	check(memcmp(&ftr_fixup_test2, &ftr_fixup_test2_expected, size) == 0);
229}
230
231static void test_alternative_case_too_big(void)
232{
233	extern unsigned int ftr_fixup_test3;
234	extern unsigned int end_ftr_fixup_test3;
235	extern unsigned int ftr_fixup_test3_orig;
236	extern unsigned int ftr_fixup_test3_alt;
237	int size = &end_ftr_fixup_test3 - &ftr_fixup_test3;
238
239	fixup.value = fixup.mask = 0xC;
240	fixup.start_off = calc_offset(&fixup, &ftr_fixup_test3 + 1);
241	fixup.end_off = calc_offset(&fixup, &ftr_fixup_test3 + 2);
242	fixup.alt_start_off = calc_offset(&fixup, &ftr_fixup_test3_alt);
243	fixup.alt_end_off = calc_offset(&fixup, &ftr_fixup_test3_alt + 2);
244
245	/* Sanity check */
246	check(memcmp(&ftr_fixup_test3, &ftr_fixup_test3_orig, size) == 0);
247
248	/* Expect nothing to be patched, and the error returned to us */
249	check(patch_feature_section(0xF, &fixup) == 1);
250	check(memcmp(&ftr_fixup_test3, &ftr_fixup_test3_orig, size) == 0);
251	check(patch_feature_section(0, &fixup) == 1);
252	check(memcmp(&ftr_fixup_test3, &ftr_fixup_test3_orig, size) == 0);
253	check(patch_feature_section(~0xF, &fixup) == 1);
254	check(memcmp(&ftr_fixup_test3, &ftr_fixup_test3_orig, size) == 0);
255}
256
257static void test_alternative_case_too_small(void)
258{
259	extern unsigned int ftr_fixup_test4;
260	extern unsigned int end_ftr_fixup_test4;
261	extern unsigned int ftr_fixup_test4_orig;
262	extern unsigned int ftr_fixup_test4_alt;
263	extern unsigned int ftr_fixup_test4_expected;
264	int size = &end_ftr_fixup_test4 - &ftr_fixup_test4;
265	unsigned long flag;
266
267	/* Check a high-bit flag */
268	flag = 1UL << ((sizeof(unsigned long) - 1) * 8);
269	fixup.value = fixup.mask = flag;
270	fixup.start_off = calc_offset(&fixup, &ftr_fixup_test4 + 1);
271	fixup.end_off = calc_offset(&fixup, &ftr_fixup_test4 + 5);
272	fixup.alt_start_off = calc_offset(&fixup, &ftr_fixup_test4_alt);
273	fixup.alt_end_off = calc_offset(&fixup, &ftr_fixup_test4_alt + 2);
274
275	/* Sanity check */
276	check(memcmp(&ftr_fixup_test4, &ftr_fixup_test4_orig, size) == 0);
277
278	/* Check we don't patch if the value matches */
279	patch_feature_section(flag, &fixup);
280	check(memcmp(&ftr_fixup_test4, &ftr_fixup_test4_orig, size) == 0);
281
282	/* Check we do patch if the value doesn't match */
283	patch_feature_section(0, &fixup);
284	check(memcmp(&ftr_fixup_test4, &ftr_fixup_test4_expected, size) == 0);
285
286	/* Check we do patch if the mask doesn't match */
287	memcpy(&ftr_fixup_test4, &ftr_fixup_test4_orig, size);
288	check(memcmp(&ftr_fixup_test4, &ftr_fixup_test4_orig, size) == 0);
289	patch_feature_section(~flag, &fixup);
290	check(memcmp(&ftr_fixup_test4, &ftr_fixup_test4_expected, size) == 0);
291}
292
293static void test_alternative_case_with_branch(void)
294{
295	extern unsigned int ftr_fixup_test5;
296	extern unsigned int end_ftr_fixup_test5;
297	extern unsigned int ftr_fixup_test5_expected;
298	int size = &end_ftr_fixup_test5 - &ftr_fixup_test5;
299
300	check(memcmp(&ftr_fixup_test5, &ftr_fixup_test5_expected, size) == 0);
301}
302
303static void test_alternative_case_with_external_branch(void)
304{
305	extern unsigned int ftr_fixup_test6;
306	extern unsigned int end_ftr_fixup_test6;
307	extern unsigned int ftr_fixup_test6_expected;
308	int size = &end_ftr_fixup_test6 - &ftr_fixup_test6;
309
310	check(memcmp(&ftr_fixup_test6, &ftr_fixup_test6_expected, size) == 0);
311}
312
313static void test_cpu_macros(void)
314{
315	extern u8 ftr_fixup_test_FTR_macros;
316	extern u8 ftr_fixup_test_FTR_macros_expected;
317	unsigned long size = &ftr_fixup_test_FTR_macros_expected -
318			     &ftr_fixup_test_FTR_macros;
319
320	/* The fixups have already been done for us during boot */
321	check(memcmp(&ftr_fixup_test_FTR_macros,
322		     &ftr_fixup_test_FTR_macros_expected, size) == 0);
323}
324
325static void test_fw_macros(void)
326{
327#ifdef CONFIG_PPC64
328	extern u8 ftr_fixup_test_FW_FTR_macros;
329	extern u8 ftr_fixup_test_FW_FTR_macros_expected;
330	unsigned long size = &ftr_fixup_test_FW_FTR_macros_expected -
331			     &ftr_fixup_test_FW_FTR_macros;
332
333	/* The fixups have already been done for us during boot */
334	check(memcmp(&ftr_fixup_test_FW_FTR_macros,
335		     &ftr_fixup_test_FW_FTR_macros_expected, size) == 0);
336#endif
337}
338
339static void test_lwsync_macros(void)
340{
341	extern u8 lwsync_fixup_test;
342	extern u8 end_lwsync_fixup_test;
343	extern u8 lwsync_fixup_test_expected_LWSYNC;
344	extern u8 lwsync_fixup_test_expected_SYNC;
345	unsigned long size = &end_lwsync_fixup_test -
346			     &lwsync_fixup_test;
347
348	/* The fixups have already been done for us during boot */
349	if (cur_cpu_spec->cpu_features & CPU_FTR_LWSYNC) {
350		check(memcmp(&lwsync_fixup_test,
351			     &lwsync_fixup_test_expected_LWSYNC, size) == 0);
352	} else {
353		check(memcmp(&lwsync_fixup_test,
354			     &lwsync_fixup_test_expected_SYNC, size) == 0);
355	}
356}
357
358static int __init test_feature_fixups(void)
359{
360	printk(KERN_DEBUG "Running feature fixup self-tests ...\n");
361
362	test_basic_patching();
363	test_alternative_patching();
364	test_alternative_case_too_big();
365	test_alternative_case_too_small();
366	test_alternative_case_with_branch();
367	test_alternative_case_with_external_branch();
368	test_cpu_macros();
369	test_fw_macros();
370	test_lwsync_macros();
371
372	return 0;
373}
374late_initcall(test_feature_fixups);
375
376#endif /* CONFIG_FTR_FIXUP_SELFTEST */