blob: e0b593a1498d11aa46e077dfab85caeb7d957e82 [file] [log] [blame]
Thomas Gleixnerb886d83c2019-06-01 10:08:55 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Mircea Gherzanddecdfc2012-03-16 13:37:12 +01002/*
3 * Just-In-Time compiler for BPF filters on 32bit ARM
4 *
5 * Copyright (c) 2011 Mircea Gherzan <mgherzan@gmail.com>
Mircea Gherzanddecdfc2012-03-16 13:37:12 +01006 */
7
8#ifndef PFILTER_OPCODES_ARM_H
9#define PFILTER_OPCODES_ARM_H
10
Shubham Bansal39c13c22017-08-22 12:02:33 +053011/* ARM 32bit Registers */
Mircea Gherzanddecdfc2012-03-16 13:37:12 +010012#define ARM_R0 0
13#define ARM_R1 1
14#define ARM_R2 2
15#define ARM_R3 3
16#define ARM_R4 4
17#define ARM_R5 5
18#define ARM_R6 6
19#define ARM_R7 7
20#define ARM_R8 8
21#define ARM_R9 9
22#define ARM_R10 10
Shubham Bansal39c13c22017-08-22 12:02:33 +053023#define ARM_FP 11 /* Frame Pointer */
24#define ARM_IP 12 /* Intra-procedure scratch register */
25#define ARM_SP 13 /* Stack pointer: as load/store base reg */
26#define ARM_LR 14 /* Link Register */
27#define ARM_PC 15 /* Program counter */
Mircea Gherzanddecdfc2012-03-16 13:37:12 +010028
Shubham Bansal39c13c22017-08-22 12:02:33 +053029#define ARM_COND_EQ 0x0 /* == */
30#define ARM_COND_NE 0x1 /* != */
31#define ARM_COND_CS 0x2 /* unsigned >= */
Mircea Gherzanddecdfc2012-03-16 13:37:12 +010032#define ARM_COND_HS ARM_COND_CS
Shubham Bansal39c13c22017-08-22 12:02:33 +053033#define ARM_COND_CC 0x3 /* unsigned < */
Mircea Gherzanddecdfc2012-03-16 13:37:12 +010034#define ARM_COND_LO ARM_COND_CC
Shubham Bansal39c13c22017-08-22 12:02:33 +053035#define ARM_COND_MI 0x4 /* < 0 */
36#define ARM_COND_PL 0x5 /* >= 0 */
37#define ARM_COND_VS 0x6 /* Signed Overflow */
38#define ARM_COND_VC 0x7 /* No Signed Overflow */
39#define ARM_COND_HI 0x8 /* unsigned > */
40#define ARM_COND_LS 0x9 /* unsigned <= */
41#define ARM_COND_GE 0xa /* Signed >= */
42#define ARM_COND_LT 0xb /* Signed < */
43#define ARM_COND_GT 0xc /* Signed > */
44#define ARM_COND_LE 0xd /* Signed <= */
45#define ARM_COND_AL 0xe /* None */
Mircea Gherzanddecdfc2012-03-16 13:37:12 +010046
47/* register shift types */
48#define SRTYPE_LSL 0
49#define SRTYPE_LSR 1
50#define SRTYPE_ASR 2
51#define SRTYPE_ROR 3
Shubham Bansal39c13c22017-08-22 12:02:33 +053052#define SRTYPE_ASL (SRTYPE_LSL)
Mircea Gherzanddecdfc2012-03-16 13:37:12 +010053
54#define ARM_INST_ADD_R 0x00800000
Shubham Bansal39c13c22017-08-22 12:02:33 +053055#define ARM_INST_ADDS_R 0x00900000
56#define ARM_INST_ADC_R 0x00a00000
57#define ARM_INST_ADC_I 0x02a00000
Mircea Gherzanddecdfc2012-03-16 13:37:12 +010058#define ARM_INST_ADD_I 0x02800000
Shubham Bansal39c13c22017-08-22 12:02:33 +053059#define ARM_INST_ADDS_I 0x02900000
Mircea Gherzanddecdfc2012-03-16 13:37:12 +010060
61#define ARM_INST_AND_R 0x00000000
Jiong Wangb85062a2019-01-26 12:26:09 -050062#define ARM_INST_ANDS_R 0x00100000
Mircea Gherzanddecdfc2012-03-16 13:37:12 +010063#define ARM_INST_AND_I 0x02000000
64
65#define ARM_INST_BIC_R 0x01c00000
66#define ARM_INST_BIC_I 0x03c00000
67
68#define ARM_INST_B 0x0a000000
69#define ARM_INST_BX 0x012FFF10
70#define ARM_INST_BLX_R 0x012fff30
71
72#define ARM_INST_CMP_R 0x01500000
73#define ARM_INST_CMP_I 0x03500000
74
Mircea Gherzan2bea29b2012-06-11 23:52:25 +010075#define ARM_INST_EOR_R 0x00200000
Daniel Borkmann3cbe2042012-11-07 15:28:28 +000076#define ARM_INST_EOR_I 0x02200000
Mircea Gherzan2bea29b2012-06-11 23:52:25 +010077
Russell Kinga8ef95a02018-07-11 10:31:36 +010078#define ARM_INST_LDST__U 0x00800000
Russell King828e2b92018-07-11 10:32:12 +010079#define ARM_INST_LDST__IMM12 0x00000fff
Russell Kinga8ef95a02018-07-11 10:31:36 +010080#define ARM_INST_LDRB_I 0x05500000
Mircea Gherzanddecdfc2012-03-16 13:37:12 +010081#define ARM_INST_LDRB_R 0x07d00000
Russell King8c9602d2018-07-11 10:32:38 +010082#define ARM_INST_LDRD_I 0x014000d0
Russell Kinga8ef95a02018-07-11 10:31:36 +010083#define ARM_INST_LDRH_I 0x015000b0
Nicolas Schichan5bf705b2015-07-27 15:06:51 +020084#define ARM_INST_LDRH_R 0x019000b0
Russell Kinga8ef95a02018-07-11 10:31:36 +010085#define ARM_INST_LDR_I 0x05100000
Shubham Bansal39c13c22017-08-22 12:02:33 +053086#define ARM_INST_LDR_R 0x07900000
Mircea Gherzanddecdfc2012-03-16 13:37:12 +010087
88#define ARM_INST_LDM 0x08900000
Shubham Bansal39c13c22017-08-22 12:02:33 +053089#define ARM_INST_LDM_IA 0x08b00000
Mircea Gherzanddecdfc2012-03-16 13:37:12 +010090
91#define ARM_INST_LSL_I 0x01a00000
92#define ARM_INST_LSL_R 0x01a00010
93
94#define ARM_INST_LSR_I 0x01a00020
95#define ARM_INST_LSR_R 0x01a00030
96
Luke Nelsonc648c9c2020-04-30 19:02:10 -070097#define ARM_INST_ASR_I 0x01a00040
98#define ARM_INST_ASR_R 0x01a00050
99
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100100#define ARM_INST_MOV_R 0x01a00000
Shubham Bansal39c13c22017-08-22 12:02:33 +0530101#define ARM_INST_MOVS_R 0x01b00000
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100102#define ARM_INST_MOV_I 0x03a00000
103#define ARM_INST_MOVW 0x03000000
104#define ARM_INST_MOVT 0x03400000
105
106#define ARM_INST_MUL 0x00000090
107
108#define ARM_INST_POP 0x08bd0000
109#define ARM_INST_PUSH 0x092d0000
110
111#define ARM_INST_ORR_R 0x01800000
Shubham Bansal39c13c22017-08-22 12:02:33 +0530112#define ARM_INST_ORRS_R 0x01900000
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100113#define ARM_INST_ORR_I 0x03800000
114
115#define ARM_INST_REV 0x06bf0f30
116#define ARM_INST_REV16 0x06bf0fb0
117
118#define ARM_INST_RSB_I 0x02600000
Shubham Bansal39c13c22017-08-22 12:02:33 +0530119#define ARM_INST_RSBS_I 0x02700000
120#define ARM_INST_RSC_I 0x02e00000
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100121
122#define ARM_INST_SUB_R 0x00400000
Shubham Bansal39c13c22017-08-22 12:02:33 +0530123#define ARM_INST_SUBS_R 0x00500000
124#define ARM_INST_RSB_R 0x00600000
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100125#define ARM_INST_SUB_I 0x02400000
Shubham Bansal39c13c22017-08-22 12:02:33 +0530126#define ARM_INST_SUBS_I 0x02500000
127#define ARM_INST_SBC_I 0x02c00000
128#define ARM_INST_SBC_R 0x00c00000
129#define ARM_INST_SBCS_R 0x00d00000
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100130
Russell Kinga8ef95a02018-07-11 10:31:36 +0100131#define ARM_INST_STR_I 0x05000000
132#define ARM_INST_STRB_I 0x05400000
Russell King8c9602d2018-07-11 10:32:38 +0100133#define ARM_INST_STRD_I 0x014000f0
Russell Kinga8ef95a02018-07-11 10:31:36 +0100134#define ARM_INST_STRH_I 0x014000b0
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100135
136#define ARM_INST_TST_R 0x01100000
137#define ARM_INST_TST_I 0x03100000
138
139#define ARM_INST_UDIV 0x0730f010
140
141#define ARM_INST_UMULL 0x00800090
142
Nicolas Schichan4560cdf2015-10-02 17:06:47 +0200143#define ARM_INST_MLS 0x00600090
144
Shubham Bansal39c13c22017-08-22 12:02:33 +0530145#define ARM_INST_UXTH 0x06ff0070
146
Daniel Borkmanne8b56d52014-09-19 14:56:57 +0200147/*
148 * Use a suitable undefined instruction to use for ARM/Thumb2 faulting.
149 * We need to be careful not to conflict with those used by other modules
150 * (BUG, kprobes, etc) and the register_undef_hook() system.
151 *
152 * The ARM architecture reference manual guarantees that the following
153 * instruction space will produce an undefined instruction exception on
154 * all CPUs:
155 *
156 * ARM: xxxx 0111 1111 xxxx xxxx xxxx 1111 xxxx ARMv7-AR, section A5.4
157 * Thumb: 1101 1110 xxxx xxxx ARMv7-M, section A5.2.6
158 */
159#define ARM_INST_UDF 0xe7fddef1
160
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100161/* register */
162#define _AL3_R(op, rd, rn, rm) ((op ## _R) | (rd) << 12 | (rn) << 16 | (rm))
163/* immediate */
164#define _AL3_I(op, rd, rn, imm) ((op ## _I) | (rd) << 12 | (rn) << 16 | (imm))
Shubham Bansal39c13c22017-08-22 12:02:33 +0530165/* register with register-shift */
166#define _AL3_SR(inst) (inst | (1 << 4))
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100167
168#define ARM_ADD_R(rd, rn, rm) _AL3_R(ARM_INST_ADD, rd, rn, rm)
Shubham Bansal39c13c22017-08-22 12:02:33 +0530169#define ARM_ADDS_R(rd, rn, rm) _AL3_R(ARM_INST_ADDS, rd, rn, rm)
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100170#define ARM_ADD_I(rd, rn, imm) _AL3_I(ARM_INST_ADD, rd, rn, imm)
Shubham Bansal39c13c22017-08-22 12:02:33 +0530171#define ARM_ADDS_I(rd, rn, imm) _AL3_I(ARM_INST_ADDS, rd, rn, imm)
172#define ARM_ADC_R(rd, rn, rm) _AL3_R(ARM_INST_ADC, rd, rn, rm)
173#define ARM_ADC_I(rd, rn, imm) _AL3_I(ARM_INST_ADC, rd, rn, imm)
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100174
175#define ARM_AND_R(rd, rn, rm) _AL3_R(ARM_INST_AND, rd, rn, rm)
Jiong Wangb85062a2019-01-26 12:26:09 -0500176#define ARM_ANDS_R(rd, rn, rm) _AL3_R(ARM_INST_ANDS, rd, rn, rm)
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100177#define ARM_AND_I(rd, rn, imm) _AL3_I(ARM_INST_AND, rd, rn, imm)
178
179#define ARM_BIC_R(rd, rn, rm) _AL3_R(ARM_INST_BIC, rd, rn, rm)
180#define ARM_BIC_I(rd, rn, imm) _AL3_I(ARM_INST_BIC, rd, rn, imm)
181
182#define ARM_B(imm24) (ARM_INST_B | ((imm24) & 0xffffff))
183#define ARM_BX(rm) (ARM_INST_BX | (rm))
184#define ARM_BLX_R(rm) (ARM_INST_BLX_R | (rm))
185
186#define ARM_CMP_R(rn, rm) _AL3_R(ARM_INST_CMP, 0, rn, rm)
187#define ARM_CMP_I(rn, imm) _AL3_I(ARM_INST_CMP, 0, rn, imm)
188
Mircea Gherzan2bea29b2012-06-11 23:52:25 +0100189#define ARM_EOR_R(rd, rn, rm) _AL3_R(ARM_INST_EOR, rd, rn, rm)
Daniel Borkmann3cbe2042012-11-07 15:28:28 +0000190#define ARM_EOR_I(rd, rn, imm) _AL3_I(ARM_INST_EOR, rd, rn, imm)
Mircea Gherzan2bea29b2012-06-11 23:52:25 +0100191
Russell Kinga8ef95a02018-07-11 10:31:36 +0100192#define ARM_LDR_R(rt, rn, rm) (ARM_INST_LDR_R | ARM_INST_LDST__U \
193 | (rt) << 12 | (rn) << 16 \
Shubham Bansal39c13c22017-08-22 12:02:33 +0530194 | (rm))
Russell King2b6958e2018-07-11 10:32:17 +0100195#define ARM_LDR_R_SI(rt, rn, rm, type, imm) \
196 (ARM_INST_LDR_R | ARM_INST_LDST__U \
197 | (rt) << 12 | (rn) << 16 \
198 | (imm) << 7 | (type) << 5 | (rm))
Russell Kinga8ef95a02018-07-11 10:31:36 +0100199#define ARM_LDRB_R(rt, rn, rm) (ARM_INST_LDRB_R | ARM_INST_LDST__U \
200 | (rt) << 12 | (rn) << 16 \
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100201 | (rm))
Russell Kinga8ef95a02018-07-11 10:31:36 +0100202#define ARM_LDRH_R(rt, rn, rm) (ARM_INST_LDRH_R | ARM_INST_LDST__U \
203 | (rt) << 12 | (rn) << 16 \
Nicolas Schichan5bf705b2015-07-27 15:06:51 +0200204 | (rm))
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100205
206#define ARM_LDM(rn, regs) (ARM_INST_LDM | (rn) << 16 | (regs))
Shubham Bansal39c13c22017-08-22 12:02:33 +0530207#define ARM_LDM_IA(rn, regs) (ARM_INST_LDM_IA | (rn) << 16 | (regs))
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100208
209#define ARM_LSL_R(rd, rn, rm) (_AL3_R(ARM_INST_LSL, rd, 0, rn) | (rm) << 8)
210#define ARM_LSL_I(rd, rn, imm) (_AL3_I(ARM_INST_LSL, rd, 0, rn) | (imm) << 7)
211
212#define ARM_LSR_R(rd, rn, rm) (_AL3_R(ARM_INST_LSR, rd, 0, rn) | (rm) << 8)
213#define ARM_LSR_I(rd, rn, imm) (_AL3_I(ARM_INST_LSR, rd, 0, rn) | (imm) << 7)
Shubham Bansal39c13c22017-08-22 12:02:33 +0530214#define ARM_ASR_R(rd, rn, rm) (_AL3_R(ARM_INST_ASR, rd, 0, rn) | (rm) << 8)
215#define ARM_ASR_I(rd, rn, imm) (_AL3_I(ARM_INST_ASR, rd, 0, rn) | (imm) << 7)
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100216
217#define ARM_MOV_R(rd, rm) _AL3_R(ARM_INST_MOV, rd, 0, rm)
Shubham Bansal39c13c22017-08-22 12:02:33 +0530218#define ARM_MOVS_R(rd, rm) _AL3_R(ARM_INST_MOVS, rd, 0, rm)
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100219#define ARM_MOV_I(rd, imm) _AL3_I(ARM_INST_MOV, rd, 0, imm)
Shubham Bansal39c13c22017-08-22 12:02:33 +0530220#define ARM_MOV_SR(rd, rm, type, rs) \
221 (_AL3_SR(ARM_MOV_R(rd, rm)) | (type) << 5 | (rs) << 8)
222#define ARM_MOV_SI(rd, rm, type, imm6) \
223 (ARM_MOV_R(rd, rm) | (type) << 5 | (imm6) << 7)
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100224
225#define ARM_MOVW(rd, imm) \
226 (ARM_INST_MOVW | ((imm) >> 12) << 16 | (rd) << 12 | ((imm) & 0x0fff))
227
228#define ARM_MOVT(rd, imm) \
229 (ARM_INST_MOVT | ((imm) >> 12) << 16 | (rd) << 12 | ((imm) & 0x0fff))
230
231#define ARM_MUL(rd, rm, rn) (ARM_INST_MUL | (rd) << 16 | (rm) << 8 | (rn))
232
233#define ARM_POP(regs) (ARM_INST_POP | (regs))
234#define ARM_PUSH(regs) (ARM_INST_PUSH | (regs))
235
236#define ARM_ORR_R(rd, rn, rm) _AL3_R(ARM_INST_ORR, rd, rn, rm)
237#define ARM_ORR_I(rd, rn, imm) _AL3_I(ARM_INST_ORR, rd, rn, imm)
Shubham Bansal39c13c22017-08-22 12:02:33 +0530238#define ARM_ORR_SR(rd, rn, rm, type, rs) \
239 (_AL3_SR(ARM_ORR_R(rd, rn, rm)) | (type) << 5 | (rs) << 8)
240#define ARM_ORRS_R(rd, rn, rm) _AL3_R(ARM_INST_ORRS, rd, rn, rm)
241#define ARM_ORRS_SR(rd, rn, rm, type, rs) \
242 (_AL3_SR(ARM_ORRS_R(rd, rn, rm)) | (type) << 5 | (rs) << 8)
243#define ARM_ORR_SI(rd, rn, rm, type, imm6) \
244 (ARM_ORR_R(rd, rn, rm) | (type) << 5 | (imm6) << 7)
245#define ARM_ORRS_SI(rd, rn, rm, type, imm6) \
246 (ARM_ORRS_R(rd, rn, rm) | (type) << 5 | (imm6) << 7)
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100247
248#define ARM_REV(rd, rm) (ARM_INST_REV | (rd) << 12 | (rm))
249#define ARM_REV16(rd, rm) (ARM_INST_REV16 | (rd) << 12 | (rm))
250
251#define ARM_RSB_I(rd, rn, imm) _AL3_I(ARM_INST_RSB, rd, rn, imm)
Shubham Bansal39c13c22017-08-22 12:02:33 +0530252#define ARM_RSBS_I(rd, rn, imm) _AL3_I(ARM_INST_RSBS, rd, rn, imm)
253#define ARM_RSC_I(rd, rn, imm) _AL3_I(ARM_INST_RSC, rd, rn, imm)
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100254
255#define ARM_SUB_R(rd, rn, rm) _AL3_R(ARM_INST_SUB, rd, rn, rm)
Shubham Bansal39c13c22017-08-22 12:02:33 +0530256#define ARM_SUBS_R(rd, rn, rm) _AL3_R(ARM_INST_SUBS, rd, rn, rm)
257#define ARM_RSB_R(rd, rn, rm) _AL3_R(ARM_INST_RSB, rd, rn, rm)
258#define ARM_SBC_R(rd, rn, rm) _AL3_R(ARM_INST_SBC, rd, rn, rm)
259#define ARM_SBCS_R(rd, rn, rm) _AL3_R(ARM_INST_SBCS, rd, rn, rm)
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100260#define ARM_SUB_I(rd, rn, imm) _AL3_I(ARM_INST_SUB, rd, rn, imm)
Shubham Bansal39c13c22017-08-22 12:02:33 +0530261#define ARM_SUBS_I(rd, rn, imm) _AL3_I(ARM_INST_SUBS, rd, rn, imm)
262#define ARM_SBC_I(rd, rn, imm) _AL3_I(ARM_INST_SBC, rd, rn, imm)
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100263
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100264#define ARM_TST_R(rn, rm) _AL3_R(ARM_INST_TST, 0, rn, rm)
265#define ARM_TST_I(rn, imm) _AL3_I(ARM_INST_TST, 0, rn, imm)
266
267#define ARM_UDIV(rd, rn, rm) (ARM_INST_UDIV | (rd) << 16 | (rn) | (rm) << 8)
268
269#define ARM_UMULL(rd_lo, rd_hi, rn, rm) (ARM_INST_UMULL | (rd_hi) << 16 \
270 | (rd_lo) << 12 | (rm) << 8 | rn)
271
Nicolas Schichan4560cdf2015-10-02 17:06:47 +0200272#define ARM_MLS(rd, rn, rm, ra) (ARM_INST_MLS | (rd) << 16 | (rn) | (rm) << 8 \
273 | (ra) << 12)
Shubham Bansal39c13c22017-08-22 12:02:33 +0530274#define ARM_UXTH(rd, rm) (ARM_INST_UXTH | (rd) << 12 | (rm))
Nicolas Schichan4560cdf2015-10-02 17:06:47 +0200275
Mircea Gherzanddecdfc2012-03-16 13:37:12 +0100276#endif /* PFILTER_OPCODES_ARM_H */