1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 #ifndef _ASM_POWERPC_JUMP_LABEL_H
3 #define _ASM_POWERPC_JUMP_LABEL_H
6 * Copyright 2010 Michael Ellerman, IBM Corp.
10 #include <linux/types.h>
12 #include <asm/feature-fixups.h>
13 #include <asm/asm-const.h>
15 #define JUMP_ENTRY_TYPE stringify_in_c(FTR_ENTRY_LONG)
16 #define JUMP_LABEL_NOP_SIZE 4
18 static __always_inline
bool arch_static_branch(struct static_key
*key
, bool branch
)
20 asm_volatile_goto("1:\n\t"
21 "nop # arch_static_branch\n\t"
22 ".pushsection __jump_table, \"aw\"\n\t"
23 JUMP_ENTRY_TYPE
"1b, %l[l_yes], %c0\n\t"
25 : : "i" (&((char *)key
)[branch
]) : : l_yes
);
32 static __always_inline
bool arch_static_branch_jump(struct static_key
*key
, bool branch
)
34 asm_volatile_goto("1:\n\t"
35 "b %l[l_yes] # arch_static_branch_jump\n\t"
36 ".pushsection __jump_table, \"aw\"\n\t"
37 JUMP_ENTRY_TYPE
"1b, %l[l_yes], %c0\n\t"
39 : : "i" (&((char *)key
)[branch
]) : : l_yes
);
47 typedef u64 jump_label_t
;
49 typedef u32 jump_label_t
;
59 #define ARCH_STATIC_BRANCH(LABEL, KEY) \
61 .pushsection __jump_table, "aw"; \
62 FTR_ENTRY_LONG 1098b, LABEL, KEY; \
66 #endif /* _ASM_POWERPC_JUMP_LABEL_H */