1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 #ifndef _ASM_POWERPC_INST_H
3 #define _ASM_POWERPC_INST_H
5 #include <asm/ppc-opcode.h>
7 #include <asm/disassemble.h>
8 #include <asm/uaccess.h>
10 #define ___get_user_instr(gu_op, dest, ptr) \
13 u32 __user *__gui_ptr = (u32 __user *)ptr; \
14 ppc_inst_t __gui_inst; \
15 unsigned int __prefix, __suffix; \
17 __chk_user_ptr(ptr); \
18 __gui_ret = gu_op(__prefix, __gui_ptr); \
19 if (__gui_ret == 0) { \
20 if (IS_ENABLED(CONFIG_PPC64) && (__prefix >> 26) == OP_PREFIX) { \
21 __gui_ret = gu_op(__suffix, __gui_ptr + 1); \
22 __gui_inst = ppc_inst_prefix(__prefix, __suffix); \
24 __gui_inst = ppc_inst(__prefix); \
27 (dest) = __gui_inst; \
32 #define get_user_instr(x, ptr) ___get_user_instr(get_user, x, ptr)
34 #define __get_user_instr(x, ptr) ___get_user_instr(__get_user, x, ptr)
37 * Instruction data type for POWER
40 #if defined(CONFIG_PPC64) || defined(__CHECKER__)
41 static inline u32
ppc_inst_val(ppc_inst_t x
)
46 #define ppc_inst(x) ((ppc_inst_t){ .val = (x) })
49 static inline u32
ppc_inst_val(ppc_inst_t x
)
53 #define ppc_inst(x) (x)
56 static inline int ppc_inst_primary_opcode(ppc_inst_t x
)
58 return ppc_inst_val(x
) >> 26;
62 #define ppc_inst_prefix(x, y) ((ppc_inst_t){ .val = (x), .suffix = (y) })
64 static inline u32
ppc_inst_suffix(ppc_inst_t x
)
70 #define ppc_inst_prefix(x, y) ((void)y, ppc_inst(x))
72 static inline u32
ppc_inst_suffix(ppc_inst_t x
)
77 #endif /* CONFIG_PPC64 */
79 static inline ppc_inst_t
ppc_inst_read(const u32
*ptr
)
81 if (IS_ENABLED(CONFIG_PPC64
) && (*ptr
>> 26) == OP_PREFIX
)
82 return ppc_inst_prefix(*ptr
, *(ptr
+ 1));
84 return ppc_inst(*ptr
);
87 static inline bool ppc_inst_prefixed(ppc_inst_t x
)
89 return IS_ENABLED(CONFIG_PPC64
) && ppc_inst_primary_opcode(x
) == OP_PREFIX
;
92 static inline ppc_inst_t
ppc_inst_swab(ppc_inst_t x
)
94 return ppc_inst_prefix(swab32(ppc_inst_val(x
)), swab32(ppc_inst_suffix(x
)));
97 static inline bool ppc_inst_equal(ppc_inst_t x
, ppc_inst_t y
)
99 if (ppc_inst_val(x
) != ppc_inst_val(y
))
101 if (!ppc_inst_prefixed(x
))
103 return ppc_inst_suffix(x
) == ppc_inst_suffix(y
);
106 static inline int ppc_inst_len(ppc_inst_t x
)
108 return ppc_inst_prefixed(x
) ? 8 : 4;
112 * Return the address of the next instruction, if the instruction @value was
113 * located at @location.
115 static inline u32
*ppc_inst_next(u32
*location
, u32
*value
)
119 tmp
= ppc_inst_read(value
);
121 return (void *)location
+ ppc_inst_len(tmp
);
124 static inline unsigned long ppc_inst_as_ulong(ppc_inst_t x
)
126 if (IS_ENABLED(CONFIG_PPC32
))
127 return ppc_inst_val(x
);
128 else if (IS_ENABLED(CONFIG_CPU_LITTLE_ENDIAN
))
129 return (u64
)ppc_inst_suffix(x
) << 32 | ppc_inst_val(x
);
131 return (u64
)ppc_inst_val(x
) << 32 | ppc_inst_suffix(x
);
134 static inline void ppc_inst_write(u32
*ptr
, ppc_inst_t x
)
136 if (!ppc_inst_prefixed(x
))
137 *ptr
= ppc_inst_val(x
);
139 *(u64
*)ptr
= ppc_inst_as_ulong(x
);
142 static inline int __copy_inst_from_kernel_nofault(ppc_inst_t
*inst
, u32
*src
)
144 unsigned int val
, suffix
;
146 /* See https://github.com/ClangBuiltLinux/linux/issues/1521 */
147 #if defined(CONFIG_CC_IS_CLANG) && CONFIG_CLANG_VERSION < 140000
150 __get_kernel_nofault(&val
, src
, u32
, Efault
);
151 if (IS_ENABLED(CONFIG_PPC64
) && get_op(val
) == OP_PREFIX
) {
152 __get_kernel_nofault(&suffix
, src
+ 1, u32
, Efault
);
153 *inst
= ppc_inst_prefix(val
, suffix
);
155 *inst
= ppc_inst(val
);
162 static inline int copy_inst_from_kernel_nofault(ppc_inst_t
*inst
, u32
*src
)
164 if (unlikely(!is_kernel_addr((unsigned long)src
)))
167 return __copy_inst_from_kernel_nofault(inst
, src
);
170 #endif /* _ASM_POWERPC_INST_H */