powerpc/inst: Fix sparse detection on get_user_instr()
[linux-2.6-block.git] / arch / powerpc / include / asm / inst.h
... / ...
CommitLineData
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2#ifndef _ASM_POWERPC_INST_H
3#define _ASM_POWERPC_INST_H
4
5#include <asm/ppc-opcode.h>
6
7#ifdef CONFIG_PPC64
8
9#define ___get_user_instr(gu_op, dest, ptr) \
10({ \
11 long __gui_ret = 0; \
12 unsigned long __gui_ptr = (unsigned long)ptr; \
13 struct ppc_inst __gui_inst; \
14 unsigned int __prefix, __suffix; \
15 \
16 __chk_user_ptr(ptr); \
17 __gui_ret = gu_op(__prefix, (unsigned int __user *)__gui_ptr); \
18 if (__gui_ret == 0) { \
19 if ((__prefix >> 26) == OP_PREFIX) { \
20 __gui_ret = gu_op(__suffix, \
21 (unsigned int __user *)__gui_ptr + 1); \
22 __gui_inst = ppc_inst_prefix(__prefix, \
23 __suffix); \
24 } else { \
25 __gui_inst = ppc_inst(__prefix); \
26 } \
27 if (__gui_ret == 0) \
28 (dest) = __gui_inst; \
29 } \
30 __gui_ret; \
31})
32#else /* !CONFIG_PPC64 */
33#define ___get_user_instr(gu_op, dest, ptr) \
34({ \
35 __chk_user_ptr(ptr); \
36 gu_op((dest).val, (u32 __user *)(ptr)); \
37})
38#endif /* CONFIG_PPC64 */
39
40#define get_user_instr(x, ptr) \
41 ___get_user_instr(get_user, x, ptr)
42
43#define __get_user_instr(x, ptr) \
44 ___get_user_instr(__get_user, x, ptr)
45
46/*
47 * Instruction data type for POWER
48 */
49
50struct ppc_inst {
51 u32 val;
52#ifdef CONFIG_PPC64
53 u32 suffix;
54#endif
55} __packed;
56
57static inline u32 ppc_inst_val(struct ppc_inst x)
58{
59 return x.val;
60}
61
62static inline int ppc_inst_primary_opcode(struct ppc_inst x)
63{
64 return ppc_inst_val(x) >> 26;
65}
66
67#ifdef CONFIG_PPC64
68#define ppc_inst(x) ((struct ppc_inst){ .val = (x), .suffix = 0xff })
69
70#define ppc_inst_prefix(x, y) ((struct ppc_inst){ .val = (x), .suffix = (y) })
71
72static inline u32 ppc_inst_suffix(struct ppc_inst x)
73{
74 return x.suffix;
75}
76
77static inline bool ppc_inst_prefixed(struct ppc_inst x)
78{
79 return (ppc_inst_primary_opcode(x) == 1) && ppc_inst_suffix(x) != 0xff;
80}
81
82static inline struct ppc_inst ppc_inst_swab(struct ppc_inst x)
83{
84 return ppc_inst_prefix(swab32(ppc_inst_val(x)),
85 swab32(ppc_inst_suffix(x)));
86}
87
88static inline struct ppc_inst ppc_inst_read(const struct ppc_inst *ptr)
89{
90 u32 val, suffix;
91
92 val = *(u32 *)ptr;
93 if ((val >> 26) == OP_PREFIX) {
94 suffix = *((u32 *)ptr + 1);
95 return ppc_inst_prefix(val, suffix);
96 } else {
97 return ppc_inst(val);
98 }
99}
100
101static inline bool ppc_inst_equal(struct ppc_inst x, struct ppc_inst y)
102{
103 return *(u64 *)&x == *(u64 *)&y;
104}
105
106#else
107
108#define ppc_inst(x) ((struct ppc_inst){ .val = x })
109
110#define ppc_inst_prefix(x, y) ppc_inst(x)
111
112static inline bool ppc_inst_prefixed(struct ppc_inst x)
113{
114 return false;
115}
116
117static inline u32 ppc_inst_suffix(struct ppc_inst x)
118{
119 return 0;
120}
121
122static inline struct ppc_inst ppc_inst_swab(struct ppc_inst x)
123{
124 return ppc_inst(swab32(ppc_inst_val(x)));
125}
126
127static inline struct ppc_inst ppc_inst_read(const struct ppc_inst *ptr)
128{
129 return *ptr;
130}
131
132static inline bool ppc_inst_equal(struct ppc_inst x, struct ppc_inst y)
133{
134 return ppc_inst_val(x) == ppc_inst_val(y);
135}
136
137#endif /* CONFIG_PPC64 */
138
139static inline int ppc_inst_len(struct ppc_inst x)
140{
141 return ppc_inst_prefixed(x) ? 8 : 4;
142}
143
144/*
145 * Return the address of the next instruction, if the instruction @value was
146 * located at @location.
147 */
148static inline struct ppc_inst *ppc_inst_next(void *location, struct ppc_inst *value)
149{
150 struct ppc_inst tmp;
151
152 tmp = ppc_inst_read(value);
153
154 return location + ppc_inst_len(tmp);
155}
156
157static inline unsigned long ppc_inst_as_ulong(struct ppc_inst x)
158{
159 if (IS_ENABLED(CONFIG_PPC32))
160 return ppc_inst_val(x);
161 else if (IS_ENABLED(CONFIG_CPU_LITTLE_ENDIAN))
162 return (u64)ppc_inst_suffix(x) << 32 | ppc_inst_val(x);
163 else
164 return (u64)ppc_inst_val(x) << 32 | ppc_inst_suffix(x);
165}
166
167#define PPC_INST_STR_LEN sizeof("00000000 00000000")
168
169static inline char *__ppc_inst_as_str(char str[PPC_INST_STR_LEN], struct ppc_inst x)
170{
171 if (ppc_inst_prefixed(x))
172 sprintf(str, "%08x %08x", ppc_inst_val(x), ppc_inst_suffix(x));
173 else
174 sprintf(str, "%08x", ppc_inst_val(x));
175
176 return str;
177}
178
179#define ppc_inst_as_str(x) \
180({ \
181 char __str[PPC_INST_STR_LEN]; \
182 __ppc_inst_as_str(__str, x); \
183 __str; \
184})
185
186int copy_inst_from_kernel_nofault(struct ppc_inst *inst, struct ppc_inst *src);
187
188#endif /* _ASM_POWERPC_INST_H */