xref: /linux/arch/powerpc/include/asm/sstep.h (revision 7fa95f9adaee7e5cbb195d3359741120829e488b)
12874c5fdSThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-or-later */
2b8b572e1SStephen Rothwell /*
3b8b572e1SStephen Rothwell  * Copyright (C) 2004 Paul Mackerras <paulus@au.ibm.com>, IBM
4b8b572e1SStephen Rothwell  */
594afd069SJordan Niethe #include <asm/inst.h>
6b8b572e1SStephen Rothwell 
7b8b572e1SStephen Rothwell struct pt_regs;
8b8b572e1SStephen Rothwell 
9b8b572e1SStephen Rothwell /*
10b8b572e1SStephen Rothwell  * We don't allow single-stepping an mtmsrd that would clear
11b8b572e1SStephen Rothwell  * MSR_RI, since that would make the exception unrecoverable.
12b8b572e1SStephen Rothwell  * Since we need to single-step to proceed from a breakpoint,
13b8b572e1SStephen Rothwell  * we don't allow putting a breakpoint on an mtmsrd instruction.
14b8b572e1SStephen Rothwell  * Similarly we don't allow breakpoints on rfid instructions.
15b8b572e1SStephen Rothwell  * These macros tell us if an instruction is a mtmsrd or rfid.
16b8b572e1SStephen Rothwell  * Note that IS_MTMSRD returns true for both an mtmsr (32-bit)
17b8b572e1SStephen Rothwell  * and an mtmsrd (64-bit).
18b8b572e1SStephen Rothwell  */
19777e26f0SJordan Niethe #define IS_MTMSRD(instr)	((ppc_inst_val(instr) & 0xfc0007be) == 0x7c000124)
20777e26f0SJordan Niethe #define IS_RFID(instr)		((ppc_inst_val(instr) & 0xfc0007fe) == 0x4c000024)
21777e26f0SJordan Niethe #define IS_RFI(instr)		((ppc_inst_val(instr) & 0xfc0007fe) == 0x4c000064)
22b8b572e1SStephen Rothwell 
23be96f633SPaul Mackerras enum instruction_type {
24be96f633SPaul Mackerras 	COMPUTE,		/* arith/logical/CR op, etc. */
25d120cdbcSPaul Mackerras 	LOAD,			/* load and store types need to be contiguous */
26be96f633SPaul Mackerras 	LOAD_MULTI,
27be96f633SPaul Mackerras 	LOAD_FP,
28be96f633SPaul Mackerras 	LOAD_VMX,
29be96f633SPaul Mackerras 	LOAD_VSX,
30be96f633SPaul Mackerras 	STORE,
31be96f633SPaul Mackerras 	STORE_MULTI,
32be96f633SPaul Mackerras 	STORE_FP,
33be96f633SPaul Mackerras 	STORE_VMX,
34be96f633SPaul Mackerras 	STORE_VSX,
35be96f633SPaul Mackerras 	LARX,
36be96f633SPaul Mackerras 	STCX,
37be96f633SPaul Mackerras 	BRANCH,
38be96f633SPaul Mackerras 	MFSPR,
39be96f633SPaul Mackerras 	MTSPR,
40be96f633SPaul Mackerras 	CACHEOP,
41be96f633SPaul Mackerras 	BARRIER,
42be96f633SPaul Mackerras 	SYSCALL,
43*7fa95f9aSNicholas Piggin 	SYSCALL_VECTORED_0,
44be96f633SPaul Mackerras 	MFMSR,
45be96f633SPaul Mackerras 	MTMSR,
46be96f633SPaul Mackerras 	RFI,
47be96f633SPaul Mackerras 	INTERRUPT,
48be96f633SPaul Mackerras 	UNKNOWN
49be96f633SPaul Mackerras };
50be96f633SPaul Mackerras 
51be96f633SPaul Mackerras #define INSTR_TYPE_MASK	0x1f
52be96f633SPaul Mackerras 
5374c68810SRavi Bangoria #define OP_IS_LOAD(type)	((LOAD <= (type) && (type) <= LOAD_VSX) || (type) == LARX)
5474c68810SRavi Bangoria #define OP_IS_STORE(type)	((STORE <= (type) && (type) <= STORE_VSX) || (type) == STCX)
55d120cdbcSPaul Mackerras #define OP_IS_LOAD_STORE(type)	(LOAD <= (type) && (type) <= STCX)
56d120cdbcSPaul Mackerras 
573cdfcbfdSPaul Mackerras /* Compute flags, ORed in with type */
583cdfcbfdSPaul Mackerras #define SETREG		0x20
593cdfcbfdSPaul Mackerras #define SETCC		0x40
603cdfcbfdSPaul Mackerras #define SETXER		0x80
613cdfcbfdSPaul Mackerras 
623cdfcbfdSPaul Mackerras /* Branch flags, ORed in with type */
633cdfcbfdSPaul Mackerras #define SETLK		0x20
643cdfcbfdSPaul Mackerras #define BRTAKEN		0x40
653cdfcbfdSPaul Mackerras #define DECCTR		0x80
663cdfcbfdSPaul Mackerras 
67be96f633SPaul Mackerras /* Load/store flags, ORed in with type */
68be96f633SPaul Mackerras #define SIGNEXT		0x20
69be96f633SPaul Mackerras #define UPDATE		0x40	/* matches bit in opcode 31 instructions */
70be96f633SPaul Mackerras #define BYTEREV		0x80
71d2b65ac6SPaul Mackerras #define FPCONV		0x100
72be96f633SPaul Mackerras 
733cdfcbfdSPaul Mackerras /* Barrier type field, ORed in with type */
743cdfcbfdSPaul Mackerras #define BARRIER_MASK	0xe0
753cdfcbfdSPaul Mackerras #define BARRIER_SYNC	0x00
763cdfcbfdSPaul Mackerras #define BARRIER_ISYNC	0x20
773cdfcbfdSPaul Mackerras #define BARRIER_EIEIO	0x40
783cdfcbfdSPaul Mackerras #define BARRIER_LWSYNC	0x60
793cdfcbfdSPaul Mackerras #define BARRIER_PTESYNC	0x80
803cdfcbfdSPaul Mackerras 
81be96f633SPaul Mackerras /* Cacheop values, ORed in with type */
82be96f633SPaul Mackerras #define CACHEOP_MASK	0x700
83be96f633SPaul Mackerras #define DCBST		0
84be96f633SPaul Mackerras #define DCBF		0x100
85be96f633SPaul Mackerras #define DCBTST		0x200
86be96f633SPaul Mackerras #define DCBT		0x300
87cf87c3f6SPaul Mackerras #define ICBI		0x400
88b2543f7bSPaul Mackerras #define DCBZ		0x500
89be96f633SPaul Mackerras 
90350779a2SPaul Mackerras /* VSX flags values */
91350779a2SPaul Mackerras #define VSX_FPCONV	1	/* do floating point SP/DP conversion */
92350779a2SPaul Mackerras #define VSX_SPLAT	2	/* store loaded value into all elements */
93350779a2SPaul Mackerras #define VSX_LDLEFT	4	/* load VSX register from left */
94350779a2SPaul Mackerras #define VSX_CHECK_VEC	8	/* check MSR_VEC not MSR_VSX for reg >= 32 */
95350779a2SPaul Mackerras 
9650b80a12SJordan Niethe /* Prefixed flag, ORed in with type */
9750b80a12SJordan Niethe #define PREFIXED       0x800
9850b80a12SJordan Niethe 
99be96f633SPaul Mackerras /* Size field in type word */
100d2b65ac6SPaul Mackerras #define SIZE(n)		((n) << 12)
101d2b65ac6SPaul Mackerras #define GETSIZE(w)	((w) >> 12)
102be96f633SPaul Mackerras 
103e6684d07SRavi Bangoria #define GETTYPE(t)	((t) & INSTR_TYPE_MASK)
10450b80a12SJordan Niethe #define GETLENGTH(t)   (((t) & PREFIXED) ? 8 : 4)
105e6684d07SRavi Bangoria 
106be96f633SPaul Mackerras #define MKOP(t, f, s)	((t) | (f) | SIZE(s))
107be96f633SPaul Mackerras 
108be96f633SPaul Mackerras struct instruction_op {
109be96f633SPaul Mackerras 	int type;
110be96f633SPaul Mackerras 	int reg;
111be96f633SPaul Mackerras 	unsigned long val;
112be96f633SPaul Mackerras 	/* For LOAD/STORE/LARX/STCX */
113be96f633SPaul Mackerras 	unsigned long ea;
114be96f633SPaul Mackerras 	int update_reg;
115be96f633SPaul Mackerras 	/* For MFSPR */
116be96f633SPaul Mackerras 	int spr;
1173cdfcbfdSPaul Mackerras 	u32 ccval;
1183cdfcbfdSPaul Mackerras 	u32 xerval;
119350779a2SPaul Mackerras 	u8 element_size;	/* for VSX/VMX loads/stores */
120350779a2SPaul Mackerras 	u8 vsx_flags;
121350779a2SPaul Mackerras };
122350779a2SPaul Mackerras 
123350779a2SPaul Mackerras union vsx_reg {
124350779a2SPaul Mackerras 	u8	b[16];
125350779a2SPaul Mackerras 	u16	h[8];
126350779a2SPaul Mackerras 	u32	w[4];
127350779a2SPaul Mackerras 	unsigned long d[2];
128350779a2SPaul Mackerras 	float	fp[4];
129350779a2SPaul Mackerras 	double	dp[2];
130c22435a5SPaul Mackerras 	__vector128 v;
131be96f633SPaul Mackerras };
132be96f633SPaul Mackerras 
1333cdfcbfdSPaul Mackerras /*
1343cdfcbfdSPaul Mackerras  * Decode an instruction, and return information about it in *op
1353cdfcbfdSPaul Mackerras  * without changing *regs.
1363cdfcbfdSPaul Mackerras  *
1373cdfcbfdSPaul Mackerras  * Return value is 1 if the instruction can be emulated just by
1383cdfcbfdSPaul Mackerras  * updating *regs with the information in *op, -1 if we need the
1393cdfcbfdSPaul Mackerras  * GPRs but *regs doesn't contain the full register set, or 0
1403cdfcbfdSPaul Mackerras  * otherwise.
1413cdfcbfdSPaul Mackerras  */
1423cdfcbfdSPaul Mackerras extern int analyse_instr(struct instruction_op *op, const struct pt_regs *regs,
14394afd069SJordan Niethe 			 struct ppc_inst instr);
1443cdfcbfdSPaul Mackerras 
1453cdfcbfdSPaul Mackerras /*
1463cdfcbfdSPaul Mackerras  * Emulate an instruction that can be executed just by updating
1473cdfcbfdSPaul Mackerras  * fields in *regs.
1483cdfcbfdSPaul Mackerras  */
1493cdfcbfdSPaul Mackerras void emulate_update_regs(struct pt_regs *reg, struct instruction_op *op);
1503cdfcbfdSPaul Mackerras 
1513cdfcbfdSPaul Mackerras /*
1523cdfcbfdSPaul Mackerras  * Emulate instructions that cause a transfer of control,
1533cdfcbfdSPaul Mackerras  * arithmetic/logical instructions, loads and stores,
1543cdfcbfdSPaul Mackerras  * cache operations and barriers.
1553cdfcbfdSPaul Mackerras  *
1563cdfcbfdSPaul Mackerras  * Returns 1 if the instruction was emulated successfully,
1573cdfcbfdSPaul Mackerras  * 0 if it could not be emulated, or -1 for an instruction that
1583cdfcbfdSPaul Mackerras  * should not be emulated (rfid, mtmsrd clearing MSR_RI, etc.).
1593cdfcbfdSPaul Mackerras  */
16094afd069SJordan Niethe extern int emulate_step(struct pt_regs *regs, struct ppc_inst instr);
1613cdfcbfdSPaul Mackerras 
162a53d5182SPaul Mackerras /*
163a53d5182SPaul Mackerras  * Emulate a load or store instruction by reading/writing the
164a53d5182SPaul Mackerras  * memory of the current process.  FP/VMX/VSX registers are assumed
165a53d5182SPaul Mackerras  * to hold live values if the appropriate enable bit in regs->msr is
166a53d5182SPaul Mackerras  * set; otherwise this will use the saved values in the thread struct
167a53d5182SPaul Mackerras  * for user-mode accesses.
168a53d5182SPaul Mackerras  */
169a53d5182SPaul Mackerras extern int emulate_loadstore(struct pt_regs *regs, struct instruction_op *op);
170a53d5182SPaul Mackerras 
171350779a2SPaul Mackerras extern void emulate_vsx_load(struct instruction_op *op, union vsx_reg *reg,
172d955189aSPaul Mackerras 			     const void *mem, bool cross_endian);
173d955189aSPaul Mackerras extern void emulate_vsx_store(struct instruction_op *op,
174d955189aSPaul Mackerras 			      const union vsx_reg *reg, void *mem,
175d955189aSPaul Mackerras 			      bool cross_endian);
176b2543f7bSPaul Mackerras extern int emulate_dcbz(unsigned long ea, struct pt_regs *regs);
177