1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/module.h>
3 #include <asm/alternative.h>
4 #include <asm/facility.h>
6 #define MAX_PATCH_LEN (255 - 1)
8 static int __initdata_or_module alt_instr_disabled
;
10 static int __init
disable_alternative_instructions(char *str
)
12 alt_instr_disabled
= 1;
16 early_param("noaltinstr", disable_alternative_instructions
);
18 static int __init
nobp_setup_early(char *str
)
23 rc
= kstrtobool(str
, &enabled
);
26 if (enabled
&& test_facility(82))
27 __set_facility(82, S390_lowcore
.alt_stfle_fac_list
);
29 __clear_facility(82, S390_lowcore
.alt_stfle_fac_list
);
32 early_param("nobp", nobp_setup_early
);
34 static int __init
nospec_setup_early(char *str
)
36 __clear_facility(82, S390_lowcore
.alt_stfle_fac_list
);
39 early_param("nospec", nospec_setup_early
);
46 static u16 __initdata_or_module nop16
= 0x0700;
47 static u32 __initdata_or_module nop32
= 0x47000000;
48 static struct brcl_insn __initdata_or_module nop48
= {
52 static const void *nops
[] __initdata_or_module
= {
58 static void __init_or_module
add_jump_padding(void *insns
, unsigned int len
)
60 struct brcl_insn brcl
= {
65 memcpy(insns
, &brcl
, sizeof(brcl
));
66 insns
+= sizeof(brcl
);
70 memcpy(insns
, &nop16
, 2);
76 static void __init_or_module
add_padding(void *insns
, unsigned int len
)
79 add_jump_padding(insns
, len
);
81 memcpy(insns
, nops
[len
/ 2 - 1], len
);
84 static void __init_or_module
__apply_alternatives(struct alt_instr
*start
,
85 struct alt_instr
*end
)
88 u8
*instr
, *replacement
;
89 u8 insnbuf
[MAX_PATCH_LEN
];
92 * The scan order should be from start to end. A later scanned
93 * alternative code can overwrite previously scanned alternative code.
95 for (a
= start
; a
< end
; a
++) {
98 instr
= (u8
*)&a
->instr_offset
+ a
->instr_offset
;
99 replacement
= (u8
*)&a
->repl_offset
+ a
->repl_offset
;
101 if (!__test_facility(a
->facility
,
102 S390_lowcore
.alt_stfle_fac_list
))
105 if (unlikely(a
->instrlen
% 2 || a
->replacementlen
% 2)) {
106 WARN_ONCE(1, "cpu alternatives instructions length is "
107 "odd, skipping patching\n");
111 memcpy(insnbuf
, replacement
, a
->replacementlen
);
112 insnbuf_sz
= a
->replacementlen
;
114 if (a
->instrlen
> a
->replacementlen
) {
115 add_padding(insnbuf
+ a
->replacementlen
,
116 a
->instrlen
- a
->replacementlen
);
117 insnbuf_sz
+= a
->instrlen
- a
->replacementlen
;
120 s390_kernel_write(instr
, insnbuf
, insnbuf_sz
);
124 void __init_or_module
apply_alternatives(struct alt_instr
*start
,
125 struct alt_instr
*end
)
127 if (!alt_instr_disabled
)
128 __apply_alternatives(start
, end
);
131 extern struct alt_instr __alt_instructions
[], __alt_instructions_end
[];
132 void __init
apply_alternative_instructions(void)
134 apply_alternatives(__alt_instructions
, __alt_instructions_end
);