drm/ast: Only warn about unsupported TX chips on Gen4 and later
[drm/drm-misc.git] / arch / csky / include / asm / jump_label.h
blobef2e37a10a0feb9af3543481cffddd75c5b3a8ef
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef __ASM_CSKY_JUMP_LABEL_H
4 #define __ASM_CSKY_JUMP_LABEL_H
6 #ifndef __ASSEMBLY__
8 #include <linux/types.h>
10 #define JUMP_LABEL_NOP_SIZE 4
12 static __always_inline bool arch_static_branch(struct static_key *key,
13 bool branch)
15 asm goto(
16 "1: nop32 \n"
17 " .pushsection __jump_table, \"aw\" \n"
18 " .align 2 \n"
19 " .long 1b - ., %l[label] - . \n"
20 " .long %0 - . \n"
21 " .popsection \n"
22 : : "i"(&((char *)key)[branch]) : : label);
24 return false;
25 label:
26 return true;
29 static __always_inline bool arch_static_branch_jump(struct static_key *key,
30 bool branch)
32 asm goto(
33 "1: bsr32 %l[label] \n"
34 " .pushsection __jump_table, \"aw\" \n"
35 " .align 2 \n"
36 " .long 1b - ., %l[label] - . \n"
37 " .long %0 - . \n"
38 " .popsection \n"
39 : : "i"(&((char *)key)[branch]) : : label);
41 return false;
42 label:
43 return true;
46 enum jump_label_type;
47 void arch_jump_label_transform_static(struct jump_entry *entry,
48 enum jump_label_type type);
49 #define arch_jump_label_transform_static arch_jump_label_transform_static
51 #endif /* __ASSEMBLY__ */
52 #endif /* __ASM_CSKY_JUMP_LABEL_H */