12874c5fdSThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-or-later */ 216c57b36SKumar Gala /* 38a56e1eeSYang Li * Copyright 2009 Freescale Semiconductor, Inc. 416c57b36SKumar Gala * 516c57b36SKumar Gala * provides masks and opcode images for use by code generation, emulation 616c57b36SKumar Gala * and for instructions that older assemblers might not know about 716c57b36SKumar Gala */ 816c57b36SKumar Gala #ifndef _ASM_POWERPC_PPC_OPCODE_H 916c57b36SKumar Gala #define _ASM_POWERPC_PPC_OPCODE_H 1016c57b36SKumar Gala 11ec0c464cSChristophe Leroy #include <asm/asm-const.h> 1216c57b36SKumar Gala 130972def4SMichael Neuling #define __REG_R0 0 140972def4SMichael Neuling #define __REG_R1 1 150972def4SMichael Neuling #define __REG_R2 2 160972def4SMichael Neuling #define __REG_R3 3 170972def4SMichael Neuling #define __REG_R4 4 180972def4SMichael Neuling #define __REG_R5 5 190972def4SMichael Neuling #define __REG_R6 6 200972def4SMichael Neuling #define __REG_R7 7 210972def4SMichael Neuling #define __REG_R8 8 220972def4SMichael Neuling #define __REG_R9 9 230972def4SMichael Neuling #define __REG_R10 10 240972def4SMichael Neuling #define __REG_R11 11 250972def4SMichael Neuling #define __REG_R12 12 260972def4SMichael Neuling #define __REG_R13 13 270972def4SMichael Neuling #define __REG_R14 14 280972def4SMichael Neuling #define __REG_R15 15 290972def4SMichael Neuling #define __REG_R16 16 300972def4SMichael Neuling #define __REG_R17 17 310972def4SMichael Neuling #define __REG_R18 18 320972def4SMichael Neuling #define __REG_R19 19 330972def4SMichael Neuling #define __REG_R20 20 340972def4SMichael Neuling #define __REG_R21 21 350972def4SMichael Neuling #define __REG_R22 22 360972def4SMichael Neuling #define __REG_R23 23 370972def4SMichael Neuling #define __REG_R24 24 380972def4SMichael Neuling #define __REG_R25 25 390972def4SMichael Neuling #define __REG_R26 26 400972def4SMichael Neuling #define __REG_R27 27 410972def4SMichael Neuling #define __REG_R28 28 420972def4SMichael Neuling #define __REG_R29 29 430972def4SMichael Neuling #define __REG_R30 30 440972def4SMichael Neuling #define __REG_R31 31 450972def4SMichael Neuling 46f4c01579SMichael Neuling #define __REGA0_0 0 47f4c01579SMichael Neuling #define __REGA0_R1 1 48f4c01579SMichael Neuling #define __REGA0_R2 2 49f4c01579SMichael Neuling #define __REGA0_R3 3 50f4c01579SMichael Neuling #define __REGA0_R4 4 51f4c01579SMichael Neuling #define __REGA0_R5 5 52f4c01579SMichael Neuling #define __REGA0_R6 6 53f4c01579SMichael Neuling #define __REGA0_R7 7 54f4c01579SMichael Neuling #define __REGA0_R8 8 55f4c01579SMichael Neuling #define __REGA0_R9 9 56f4c01579SMichael Neuling #define __REGA0_R10 10 57f4c01579SMichael Neuling #define __REGA0_R11 11 58f4c01579SMichael Neuling #define __REGA0_R12 12 59f4c01579SMichael Neuling #define __REGA0_R13 13 60f4c01579SMichael Neuling #define __REGA0_R14 14 61f4c01579SMichael Neuling #define __REGA0_R15 15 62f4c01579SMichael Neuling #define __REGA0_R16 16 63f4c01579SMichael Neuling #define __REGA0_R17 17 64f4c01579SMichael Neuling #define __REGA0_R18 18 65f4c01579SMichael Neuling #define __REGA0_R19 19 66f4c01579SMichael Neuling #define __REGA0_R20 20 67f4c01579SMichael Neuling #define __REGA0_R21 21 68f4c01579SMichael Neuling #define __REGA0_R22 22 69f4c01579SMichael Neuling #define __REGA0_R23 23 70f4c01579SMichael Neuling #define __REGA0_R24 24 71f4c01579SMichael Neuling #define __REGA0_R25 25 72f4c01579SMichael Neuling #define __REGA0_R26 26 73f4c01579SMichael Neuling #define __REGA0_R27 27 74f4c01579SMichael Neuling #define __REGA0_R28 28 75f4c01579SMichael Neuling #define __REGA0_R29 29 76f4c01579SMichael Neuling #define __REGA0_R30 30 77f4c01579SMichael Neuling #define __REGA0_R31 31 78f4c01579SMichael Neuling 7907cd1832SChristophe Leroy /* For use with PPC_RAW_() macros */ 8007cd1832SChristophe Leroy #define _R0 0 8107cd1832SChristophe Leroy #define _R1 1 8207cd1832SChristophe Leroy #define _R2 2 8307cd1832SChristophe Leroy #define _R3 3 8407cd1832SChristophe Leroy #define _R4 4 8507cd1832SChristophe Leroy #define _R5 5 8607cd1832SChristophe Leroy #define _R6 6 8707cd1832SChristophe Leroy #define _R7 7 8807cd1832SChristophe Leroy #define _R8 8 8907cd1832SChristophe Leroy #define _R9 9 9007cd1832SChristophe Leroy #define _R10 10 9107cd1832SChristophe Leroy #define _R11 11 9207cd1832SChristophe Leroy #define _R12 12 9307cd1832SChristophe Leroy #define _R13 13 9407cd1832SChristophe Leroy #define _R14 14 9507cd1832SChristophe Leroy #define _R15 15 9607cd1832SChristophe Leroy #define _R16 16 9707cd1832SChristophe Leroy #define _R17 17 9807cd1832SChristophe Leroy #define _R18 18 9907cd1832SChristophe Leroy #define _R19 19 10007cd1832SChristophe Leroy #define _R20 20 10107cd1832SChristophe Leroy #define _R21 21 10207cd1832SChristophe Leroy #define _R22 22 10307cd1832SChristophe Leroy #define _R23 23 10407cd1832SChristophe Leroy #define _R24 24 10507cd1832SChristophe Leroy #define _R25 25 10607cd1832SChristophe Leroy #define _R26 26 10707cd1832SChristophe Leroy #define _R27 27 10807cd1832SChristophe Leroy #define _R28 28 10907cd1832SChristophe Leroy #define _R29 29 11007cd1832SChristophe Leroy #define _R30 30 11107cd1832SChristophe Leroy #define _R31 31 11207cd1832SChristophe Leroy 1131d33dd84SBalamuruhan S #define IMM_L(i) ((uintptr_t)(i) & 0xffff) 1141d33dd84SBalamuruhan S #define IMM_DS(i) ((uintptr_t)(i) & 0xfffc) 1156ce73ba7SBalamuruhan S #define IMM_DQ(i) ((uintptr_t)(i) & 0xfff0) 1166ce73ba7SBalamuruhan S #define IMM_D0(i) (((uintptr_t)(i) >> 16) & 0x3ffff) 1176ce73ba7SBalamuruhan S #define IMM_D1(i) IMM_L(i) 1181d33dd84SBalamuruhan S 1193a181237SBalamuruhan S /* 1203a181237SBalamuruhan S * 16-bit immediate helper macros: HA() is for use with sign-extending instrs 1213a181237SBalamuruhan S * (e.g. LD, ADDI). If the bottom 16 bits is "-ve", add another bit into the 1223a181237SBalamuruhan S * top half to negate the effect (i.e. 0xffff + 1 = 0x(1)0000). 1237e3a68beSNicholas Piggin * 1247e3a68beSNicholas Piggin * XXX: should these mask out possible sign bits? 1253a181237SBalamuruhan S */ 1263a181237SBalamuruhan S #define IMM_H(i) ((uintptr_t)(i)>>16) 1273a181237SBalamuruhan S #define IMM_HA(i) (((uintptr_t)(i)>>16) + \ 1283a181237SBalamuruhan S (((uintptr_t)(i) & 0x8000) >> 15)) 1293a181237SBalamuruhan S 1307e3a68beSNicholas Piggin /* 1317e3a68beSNicholas Piggin * 18-bit immediate helper for prefix 18-bit upper immediate si0 field. 1327e3a68beSNicholas Piggin */ 1337e3a68beSNicholas Piggin #define IMM_H18(i) (((uintptr_t)(i)>>16) & 0x3ffff) 1347e3a68beSNicholas Piggin 1353a181237SBalamuruhan S 1369123c5edSHongtao Jia /* opcode and xopcode for instructions */ 137f31c6183SNaveen N. Rao #define OP_PREFIX 1 1389123c5edSHongtao Jia #define OP_TRAP_64 2 139f31c6183SNaveen N. Rao #define OP_TRAP 3 14054cdacd7SNaveen N. Rao #define OP_SC 17 14154cdacd7SNaveen N. Rao #define OP_19 19 142f31c6183SNaveen N. Rao #define OP_31 31 143f31c6183SNaveen N. Rao #define OP_LWZ 32 144f31c6183SNaveen N. Rao #define OP_LWZU 33 145f31c6183SNaveen N. Rao #define OP_LBZ 34 146f31c6183SNaveen N. Rao #define OP_LBZU 35 147f31c6183SNaveen N. Rao #define OP_STW 36 148f31c6183SNaveen N. Rao #define OP_STWU 37 149f31c6183SNaveen N. Rao #define OP_STB 38 150f31c6183SNaveen N. Rao #define OP_STBU 39 151f31c6183SNaveen N. Rao #define OP_LHZ 40 152f31c6183SNaveen N. Rao #define OP_LHZU 41 153f31c6183SNaveen N. Rao #define OP_LHA 42 154f31c6183SNaveen N. Rao #define OP_LHAU 43 155f31c6183SNaveen N. Rao #define OP_STH 44 156f31c6183SNaveen N. Rao #define OP_STHU 45 157f31c6183SNaveen N. Rao #define OP_LMW 46 158f31c6183SNaveen N. Rao #define OP_STMW 47 159f31c6183SNaveen N. Rao #define OP_LFS 48 160f31c6183SNaveen N. Rao #define OP_LFSU 49 161f31c6183SNaveen N. Rao #define OP_LFD 50 162f31c6183SNaveen N. Rao #define OP_LFDU 51 163f31c6183SNaveen N. Rao #define OP_STFS 52 164f31c6183SNaveen N. Rao #define OP_STFSU 53 165f31c6183SNaveen N. Rao #define OP_STFD 54 166f31c6183SNaveen N. Rao #define OP_STFDU 55 167f31c6183SNaveen N. Rao #define OP_LQ 56 168f31c6183SNaveen N. Rao #define OP_LD 58 169f31c6183SNaveen N. Rao #define OP_STD 62 1709123c5edSHongtao Jia 17154cdacd7SNaveen N. Rao #define OP_19_XOP_RFID 18 17254cdacd7SNaveen N. Rao #define OP_19_XOP_RFMCI 38 17354cdacd7SNaveen N. Rao #define OP_19_XOP_RFDI 39 17454cdacd7SNaveen N. Rao #define OP_19_XOP_RFI 50 17554cdacd7SNaveen N. Rao #define OP_19_XOP_RFCI 51 17654cdacd7SNaveen N. Rao #define OP_19_XOP_RFSCV 82 17754cdacd7SNaveen N. Rao #define OP_19_XOP_HRFID 274 17854cdacd7SNaveen N. Rao #define OP_19_XOP_URFID 306 17954cdacd7SNaveen N. Rao #define OP_19_XOP_STOP 370 18054cdacd7SNaveen N. Rao #define OP_19_XOP_DOZE 402 18154cdacd7SNaveen N. Rao #define OP_19_XOP_NAP 434 18254cdacd7SNaveen N. Rao #define OP_19_XOP_SLEEP 466 18354cdacd7SNaveen N. Rao #define OP_19_XOP_RVWINKLE 498 18454cdacd7SNaveen N. Rao 1859123c5edSHongtao Jia #define OP_31_XOP_TRAP 4 1866f63e81bSBin Lu #define OP_31_XOP_LDX 21 1879123c5edSHongtao Jia #define OP_31_XOP_LWZX 23 1886f63e81bSBin Lu #define OP_31_XOP_LDUX 53 1899123c5edSHongtao Jia #define OP_31_XOP_DCBST 54 1909123c5edSHongtao Jia #define OP_31_XOP_LWZUX 55 1919123c5edSHongtao Jia #define OP_31_XOP_TRAP_64 68 1929123c5edSHongtao Jia #define OP_31_XOP_DCBF 86 1939123c5edSHongtao Jia #define OP_31_XOP_LBZX 87 19491242fd1SAlexey Kardashevskiy #define OP_31_XOP_STDX 149 1959123c5edSHongtao Jia #define OP_31_XOP_STWX 151 196ceba57dfSPaul Mackerras #define OP_31_XOP_STDUX 181 197ceba57dfSPaul Mackerras #define OP_31_XOP_STWUX 183 1989123c5edSHongtao Jia #define OP_31_XOP_STBX 215 1999123c5edSHongtao Jia #define OP_31_XOP_LBZUX 119 2009123c5edSHongtao Jia #define OP_31_XOP_STBUX 247 2019123c5edSHongtao Jia #define OP_31_XOP_LHZX 279 2029123c5edSHongtao Jia #define OP_31_XOP_LHZUX 311 20357900694SPaul Mackerras #define OP_31_XOP_MSGSNDP 142 20457900694SPaul Mackerras #define OP_31_XOP_MSGCLRP 174 20554cdacd7SNaveen N. Rao #define OP_31_XOP_MTMSR 146 20654cdacd7SNaveen N. Rao #define OP_31_XOP_MTMSRD 178 207e3b6b466SSuraj Jitindar Singh #define OP_31_XOP_TLBIE 306 2089123c5edSHongtao Jia #define OP_31_XOP_MFSPR 339 2096f63e81bSBin Lu #define OP_31_XOP_LWAX 341 2109123c5edSHongtao Jia #define OP_31_XOP_LHAX 343 211ceba57dfSPaul Mackerras #define OP_31_XOP_LWAUX 373 2129123c5edSHongtao Jia #define OP_31_XOP_LHAUX 375 2139123c5edSHongtao Jia #define OP_31_XOP_STHX 407 2149123c5edSHongtao Jia #define OP_31_XOP_STHUX 439 2159123c5edSHongtao Jia #define OP_31_XOP_MTSPR 467 2169123c5edSHongtao Jia #define OP_31_XOP_DCBI 470 217ceba57dfSPaul Mackerras #define OP_31_XOP_LDBRX 532 2189123c5edSHongtao Jia #define OP_31_XOP_LWBRX 534 2199123c5edSHongtao Jia #define OP_31_XOP_TLBSYNC 566 220ceba57dfSPaul Mackerras #define OP_31_XOP_STDBRX 660 2219123c5edSHongtao Jia #define OP_31_XOP_STWBRX 662 2226f63e81bSBin Lu #define OP_31_XOP_STFSX 663 2236f63e81bSBin Lu #define OP_31_XOP_STFSUX 695 2246f63e81bSBin Lu #define OP_31_XOP_STFDX 727 2255bcba4e6SBenjamin Gray #define OP_31_XOP_HASHCHK 754 2266f63e81bSBin Lu #define OP_31_XOP_STFDUX 759 2279123c5edSHongtao Jia #define OP_31_XOP_LHBRX 790 2289b5ab005SPaul Mackerras #define OP_31_XOP_LFIWAX 855 2299b5ab005SPaul Mackerras #define OP_31_XOP_LFIWZX 887 2309123c5edSHongtao Jia #define OP_31_XOP_STHBRX 918 2316f63e81bSBin Lu #define OP_31_XOP_STFIWX 983 2326f63e81bSBin Lu 2336f63e81bSBin Lu /* VSX Scalar Load Instructions */ 2346f63e81bSBin Lu #define OP_31_XOP_LXSDX 588 2356f63e81bSBin Lu #define OP_31_XOP_LXSSPX 524 2366f63e81bSBin Lu #define OP_31_XOP_LXSIWAX 76 2376f63e81bSBin Lu #define OP_31_XOP_LXSIWZX 12 2386f63e81bSBin Lu 2396f63e81bSBin Lu /* VSX Scalar Store Instructions */ 2406f63e81bSBin Lu #define OP_31_XOP_STXSDX 716 2416f63e81bSBin Lu #define OP_31_XOP_STXSSPX 652 2426f63e81bSBin Lu #define OP_31_XOP_STXSIWX 140 2436f63e81bSBin Lu 2446f63e81bSBin Lu /* VSX Vector Load Instructions */ 2456f63e81bSBin Lu #define OP_31_XOP_LXVD2X 844 2466f63e81bSBin Lu #define OP_31_XOP_LXVW4X 780 2476f63e81bSBin Lu 2486f63e81bSBin Lu /* VSX Vector Load and Splat Instruction */ 2496f63e81bSBin Lu #define OP_31_XOP_LXVDSX 332 2506f63e81bSBin Lu 2516f63e81bSBin Lu /* VSX Vector Store Instructions */ 2526f63e81bSBin Lu #define OP_31_XOP_STXVD2X 972 2536f63e81bSBin Lu #define OP_31_XOP_STXVW4X 908 2546f63e81bSBin Lu 2556f63e81bSBin Lu #define OP_31_XOP_LFSX 535 2566f63e81bSBin Lu #define OP_31_XOP_LFSUX 567 2576f63e81bSBin Lu #define OP_31_XOP_LFDX 599 2586f63e81bSBin Lu #define OP_31_XOP_LFDUX 631 2599123c5edSHongtao Jia 26009f98496SJose Ricardo Ziviani /* VMX Vector Load Instructions */ 26109f98496SJose Ricardo Ziviani #define OP_31_XOP_LVX 103 26209f98496SJose Ricardo Ziviani 26309f98496SJose Ricardo Ziviani /* VMX Vector Store Instructions */ 26409f98496SJose Ricardo Ziviani #define OP_31_XOP_STVX 231 26509f98496SJose Ricardo Ziviani 26616c57b36SKumar Gala /* sorted alphabetically */ 26770d7cdafSNicholas Piggin #define PPC_INST_BCCTR_FLUSH 0x4c400420 26807d2a628SNicholas Piggin #define PPC_INST_COPY 0x7c20060c 26916c57b36SKumar Gala #define PPC_INST_DCBA 0x7c0005ec 27016c57b36SKumar Gala #define PPC_INST_DCBA_MASK 0xfc0007fe 271d51f86cfSAlexey Kardashevskiy #define PPC_INST_DSSALL 0x7e00066c 27216c57b36SKumar Gala #define PPC_INST_ISEL 0x7c00001e 27316c57b36SKumar Gala #define PPC_INST_ISEL_MASK 0xfc00003e 27416c57b36SKumar Gala #define PPC_INST_LSWI 0x7c0004aa 27516c57b36SKumar Gala #define PPC_INST_LSWX 0x7c00042a 27616c57b36SKumar Gala #define PPC_INST_LWSYNC 0x7c2004ac 2779863c28aSJames Yang #define PPC_INST_SYNC 0x7c0004ac 2789863c28aSJames Yang #define PPC_INST_SYNC_MASK 0xfc0007fe 27916c57b36SKumar Gala #define PPC_INST_MCRXR 0x7c000400 28016c57b36SKumar Gala #define PPC_INST_MCRXR_MASK 0xfc0007fe 28116c57b36SKumar Gala #define PPC_INST_MFSPR_PVR 0x7c1f42a6 282178f3582SAnton Blanchard #define PPC_INST_MFSPR_PVR_MASK 0xfc1ffffe 2834bb3c7a0SPaul Mackerras #define PPC_INST_MTMSRD 0x7c000164 284b5c63d90SHaren Myneni #define PPC_INST_PASTE 0x7c20070d 285b5c63d90SHaren Myneni #define PPC_INST_PASTE_MASK 0xfc2007ff 28616c57b36SKumar Gala #define PPC_INST_POPCNTB 0x7c0000f4 28716c57b36SKumar Gala #define PPC_INST_POPCNTB_MASK 0xfc0007fe 2884bb3c7a0SPaul Mackerras #define PPC_INST_RFEBB 0x4c000124 2894bb3c7a0SPaul Mackerras #define PPC_INST_RFID 0x4c000024 290efcac658SAlexey Kardashevskiy #define PPC_INST_MFSPR_DSCR 0x7c1102a6 291178f3582SAnton Blanchard #define PPC_INST_MFSPR_DSCR_MASK 0xfc1ffffe 292efcac658SAlexey Kardashevskiy #define PPC_INST_MTSPR_DSCR 0x7c1103a6 293178f3582SAnton Blanchard #define PPC_INST_MTSPR_DSCR_MASK 0xfc1ffffe 29473d2fb75SAnton Blanchard #define PPC_INST_MFSPR_DSCR_USER 0x7c0302a6 295178f3582SAnton Blanchard #define PPC_INST_MFSPR_DSCR_USER_MASK 0xfc1ffffe 29673d2fb75SAnton Blanchard #define PPC_INST_MTSPR_DSCR_USER 0x7c0303a6 297178f3582SAnton Blanchard #define PPC_INST_MTSPR_DSCR_USER_MASK 0xfc1ffffe 29816c57b36SKumar Gala #define PPC_INST_STRING 0x7c00042a 29916c57b36SKumar Gala #define PPC_INST_STRING_MASK 0xfc0007fe 30016c57b36SKumar Gala #define PPC_INST_STRING_GEN_MASK 0xfc00067e 30116c57b36SKumar Gala #define PPC_INST_STSWI 0x7c0005aa 30216c57b36SKumar Gala #define PPC_INST_STSWX 0x7c00052a 30314c39a4cSMichael Neuling #define PPC_INST_TRECHKPT 0x7c0007dd 30414c39a4cSMichael Neuling #define PPC_INST_TRECLAIM 0x7c00075d 3054bb3c7a0SPaul Mackerras #define PPC_INST_TSR 0x7c0005dd 3060ca87f05SMatt Evans #define PPC_INST_BRANCH_COND 0x40800000 3070ca87f05SMatt Evans 308b6b54b42SJordan Niethe /* Prefixes */ 3090396de6dSJordan Niethe #define PPC_INST_LFS 0xc0000000 3100396de6dSJordan Niethe #define PPC_INST_STFS 0xd0000000 3110396de6dSJordan Niethe #define PPC_INST_LFD 0xc8000000 3120396de6dSJordan Niethe #define PPC_INST_STFD 0xd8000000 313b6b54b42SJordan Niethe #define PPC_PREFIX_MLS 0x06000000 314b6b54b42SJordan Niethe #define PPC_PREFIX_8LS 0x04000000 315b6b54b42SJordan Niethe 316b6b54b42SJordan Niethe /* Prefixed instructions */ 3177e3a68beSNicholas Piggin #define PPC_INST_PADDI 0x38000000 318b6b54b42SJordan Niethe #define PPC_INST_PLD 0xe4000000 319b6b54b42SJordan Niethe #define PPC_INST_PSTD 0xf4000000 320b6b54b42SJordan Niethe 32116c57b36SKumar Gala /* macros to insert fields into opcodes */ 32255a5db18SMichael Neuling #define ___PPC_RA(a) (((a) & 0x1f) << 16) 32355a5db18SMichael Neuling #define ___PPC_RB(b) (((b) & 0x1f) << 11) 324930d6288SSandipan Das #define ___PPC_RC(c) (((c) & 0x1f) << 6) 32555a5db18SMichael Neuling #define ___PPC_RS(s) (((s) & 0x1f) << 21) 32655a5db18SMichael Neuling #define ___PPC_RT(t) ___PPC_RS(t) 3278cd6d3c2SBalbir Singh #define ___PPC_R(r) (((r) & 0x1) << 16) 3288cd6d3c2SBalbir Singh #define ___PPC_PRS(prs) (((prs) & 0x1) << 17) 3298cd6d3c2SBalbir Singh #define ___PPC_RIC(ric) (((ric) & 0x3) << 18) 3300b7673c3SMichael Neuling #define __PPC_RA(a) ___PPC_RA(__REG_##a) 331f4c01579SMichael Neuling #define __PPC_RA0(a) ___PPC_RA(__REGA0_##a) 3320b7673c3SMichael Neuling #define __PPC_RB(b) ___PPC_RB(__REG_##b) 3330b7673c3SMichael Neuling #define __PPC_RS(s) ___PPC_RS(__REG_##s) 3340b7673c3SMichael Neuling #define __PPC_RT(t) ___PPC_RT(__REG_##t) 3350016a4cfSPaul Mackerras #define __PPC_XA(a) ((((a) & 0x1f) << 16) | (((a) & 0x20) >> 3)) 3360016a4cfSPaul Mackerras #define __PPC_XB(b) ((((b) & 0x1f) << 11) | (((b) & 0x20) >> 4)) 337dfb432cbSMichael Neuling #define __PPC_XS(s) ((((s) & 0x1f) << 21) | (((s) & 0x20) >> 5)) 3380016a4cfSPaul Mackerras #define __PPC_XT(s) __PPC_XS(s) 3396ce73ba7SBalamuruhan S #define __PPC_XSP(s) ((((s) & 0x1e) | (((s) >> 5) & 0x1)) << 21) 3406ce73ba7SBalamuruhan S #define __PPC_XTP(s) __PPC_XSP(s) 341da6b43c8SMichael Neuling #define __PPC_T_TLB(t) (((t) & 0x3) << 21) 342dabeb572SNicholas Piggin #define __PPC_PL(p) (((p) & 0x3) << 16) 343da6b43c8SMichael Neuling #define __PPC_WC(w) (((w) & 0x3) << 21) 344931e1241SBenjamin Herrenschmidt #define __PPC_WS(w) (((w) & 0x1f) << 11) 3450ca87f05SMatt Evans #define __PPC_SH(s) __PPC_WS(s) 346c233f597SNaveen N. Rao #define __PPC_SH64(s) (__PPC_SH(s) | (((s) & 0x20) >> 4)) 347930d6288SSandipan Das #define __PPC_MB(s) ___PPC_RC(s) 3480ca87f05SMatt Evans #define __PPC_ME(s) (((s) & 0x1f) << 1) 349277285b8SNaveen N. Rao #define __PPC_MB64(s) (__PPC_MB(s) | ((s) & 0x20)) 350277285b8SNaveen N. Rao #define __PPC_ME64(s) __PPC_MB64(s) 3510ca87f05SMatt Evans #define __PPC_BI(s) (((s) & 0x1f) << 16) 3521afc149dSTony Breeds #define __PPC_CT(t) (((t) & 0x0f) << 21) 353cd99ddbeSChristophe Leroy #define __PPC_SPR(r) ((((r) & 0x1f) << 16) | ((((r) >> 5) & 0x1f) << 11)) 354f1ecbaf4SSimon Guo #define __PPC_RC21 (0x1 << 10) 355b6b54b42SJordan Niethe #define __PPC_PRFX_R(r) (((r) & 0x1) << 20) 356eb5a33eaSChristophe Leroy #define __PPC_EH(eh) (((eh) & 0x1) << 0) 357931e1241SBenjamin Herrenschmidt 3584e14a4d1SAnton Blanchard /* 3597f9c929aSChristophe Leroy * Both low and high 16 bits are added as SIGNED additions, so if low 16 bits 3607f9c929aSChristophe Leroy * has high bit set, high 16 bits must be adjusted. These macros do that (stolen 3617f9c929aSChristophe Leroy * from binutils). 3627f9c929aSChristophe Leroy */ 3637f9c929aSChristophe Leroy #define PPC_LO(v) ((v) & 0xffff) 3647f9c929aSChristophe Leroy #define PPC_HI(v) (((v) >> 16) & 0xffff) 3657f9c929aSChristophe Leroy #define PPC_HA(v) PPC_HI((v) + 0x8000) 3660e628ad2SChristophe Leroy #define PPC_HIGHER(v) (((v) >> 32) & 0xffff) 3670e628ad2SChristophe Leroy #define PPC_HIGHEST(v) (((v) >> 48) & 0xffff) 3687f9c929aSChristophe Leroy 369e89aa642SChristophe Leroy /* LI Field */ 370e89aa642SChristophe Leroy #define PPC_LI_MASK 0x03fffffc 371e89aa642SChristophe Leroy #define PPC_LI(v) ((v) & PPC_LI_MASK) 372e89aa642SChristophe Leroy 373db551f8cSBalamuruhan S /* Base instruction encoding */ 374e4208f13SBalamuruhan S #define PPC_RAW_CP_ABORT (0x7c00068c) 375db551f8cSBalamuruhan S #define PPC_RAW_COPY(a, b) (PPC_INST_COPY | ___PPC_RA(a) | ___PPC_RB(b)) 376e4208f13SBalamuruhan S #define PPC_RAW_DARN(t, l) (0x7c0005e6 | ___PPC_RT(t) | (((l) & 0x3) << 16)) 377e4208f13SBalamuruhan S #define PPC_RAW_DCBAL(a, b) (0x7c2005ec | __PPC_RA(a) | __PPC_RB(b)) 378e4208f13SBalamuruhan S #define PPC_RAW_DCBZL(a, b) (0x7c2007ec | __PPC_RA(a) | __PPC_RB(b)) 379e4208f13SBalamuruhan S #define PPC_RAW_LQARX(t, a, b, eh) (0x7c000228 | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b) | __PPC_EH(eh)) 380e4208f13SBalamuruhan S #define PPC_RAW_LDARX(t, a, b, eh) (0x7c0000a8 | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b) | __PPC_EH(eh)) 381e4208f13SBalamuruhan S #define PPC_RAW_LWARX(t, a, b, eh) (0x7c000028 | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b) | __PPC_EH(eh)) 382e4208f13SBalamuruhan S #define PPC_RAW_PHWSYNC (0x7c8004ac) 383e4208f13SBalamuruhan S #define PPC_RAW_PLWSYNC (0x7ca004ac) 384e4208f13SBalamuruhan S #define PPC_RAW_STQCX(t, a, b) (0x7c00016d | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b)) 385e4208f13SBalamuruhan S #define PPC_RAW_MADDHD(t, a, b, c) (0x10000030 | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b) | ___PPC_RC(c)) 386e4208f13SBalamuruhan S #define PPC_RAW_MADDHDU(t, a, b, c) (0x10000031 | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b) | ___PPC_RC(c)) 387e4208f13SBalamuruhan S #define PPC_RAW_MADDLD(t, a, b, c) (0x10000033 | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b) | ___PPC_RC(c)) 388e4208f13SBalamuruhan S #define PPC_RAW_MSGSND(b) (0x7c00019c | ___PPC_RB(b)) 389e4208f13SBalamuruhan S #define PPC_RAW_MSGSYNC (0x7c0006ec) 390e4208f13SBalamuruhan S #define PPC_RAW_MSGCLR(b) (0x7c0001dc | ___PPC_RB(b)) 391e4208f13SBalamuruhan S #define PPC_RAW_MSGSNDP(b) (0x7c00011c | ___PPC_RB(b)) 392e4208f13SBalamuruhan S #define PPC_RAW_MSGCLRP(b) (0x7c00015c | ___PPC_RB(b)) 393e4208f13SBalamuruhan S #define PPC_RAW_PASTE(a, b) (0x7c20070d | ___PPC_RA(a) | ___PPC_RB(b)) 394db551f8cSBalamuruhan S #define PPC_RAW_POPCNTB(a, s) (PPC_INST_POPCNTB | __PPC_RA(a) | __PPC_RS(s)) 395e4208f13SBalamuruhan S #define PPC_RAW_POPCNTD(a, s) (0x7c0003f4 | __PPC_RA(a) | __PPC_RS(s)) 396e4208f13SBalamuruhan S #define PPC_RAW_POPCNTW(a, s) (0x7c0002f4 | __PPC_RA(a) | __PPC_RS(s)) 397e4208f13SBalamuruhan S #define PPC_RAW_RFCI (0x4c000066) 398e4208f13SBalamuruhan S #define PPC_RAW_RFDI (0x4c00004e) 399e4208f13SBalamuruhan S #define PPC_RAW_RFMCI (0x4c00004c) 400ae7936d2SNick Desaulniers #define PPC_RAW_TLBILX_LPID (0x7c000024) 401e4208f13SBalamuruhan S #define PPC_RAW_TLBILX(t, a, b) (0x7c000024 | __PPC_T_TLB(t) | __PPC_RA0(a) | __PPC_RB(b)) 402dabeb572SNicholas Piggin #define PPC_RAW_WAIT_v203 (0x7c00007c) 403dabeb572SNicholas Piggin #define PPC_RAW_WAIT(w, p) (0x7c00003c | __PPC_WC(w) | __PPC_PL(p)) 404e4208f13SBalamuruhan S #define PPC_RAW_TLBIE(lp, a) (0x7c000264 | ___PPC_RB(a) | ___PPC_RS(lp)) 405db551f8cSBalamuruhan S #define PPC_RAW_TLBIE_5(rb, rs, ric, prs, r) \ 406e4208f13SBalamuruhan S (0x7c000264 | ___PPC_RB(rb) | ___PPC_RS(rs) | ___PPC_RIC(ric) | ___PPC_PRS(prs) | ___PPC_R(r)) 407db551f8cSBalamuruhan S #define PPC_RAW_TLBIEL(rb, rs, ric, prs, r) \ 408e4208f13SBalamuruhan S (0x7c000224 | ___PPC_RB(rb) | ___PPC_RS(rs) | ___PPC_RIC(ric) | ___PPC_PRS(prs) | ___PPC_R(r)) 40962479e6eSAlexey Kardashevskiy #define PPC_RAW_TLBIEL_v205(rb, l) (0x7c000224 | ___PPC_RB(rb) | (l << 21)) 410e4208f13SBalamuruhan S #define PPC_RAW_TLBSRX_DOT(a, b) (0x7c0006a5 | __PPC_RA0(a) | __PPC_RB(b)) 411e4208f13SBalamuruhan S #define PPC_RAW_TLBIVAX(a, b) (0x7c000624 | __PPC_RA0(a) | __PPC_RB(b)) 412e4208f13SBalamuruhan S #define PPC_RAW_ERATWE(s, a, w) (0x7c0001a6 | __PPC_RS(s) | __PPC_RA(a) | __PPC_WS(w)) 413e4208f13SBalamuruhan S #define PPC_RAW_ERATRE(s, a, w) (0x7c000166 | __PPC_RS(s) | __PPC_RA(a) | __PPC_WS(w)) 414e4208f13SBalamuruhan S #define PPC_RAW_ERATILX(t, a, b) (0x7c000066 | __PPC_T_TLB(t) | __PPC_RA0(a) | __PPC_RB(b)) 415e4208f13SBalamuruhan S #define PPC_RAW_ERATIVAX(s, a, b) (0x7c000666 | __PPC_RS(s) | __PPC_RA0(a) | __PPC_RB(b)) 416e4208f13SBalamuruhan S #define PPC_RAW_ERATSX(t, a, w) (0x7c000126 | __PPC_RS(t) | __PPC_RA0(a) | __PPC_RB(b)) 417e4208f13SBalamuruhan S #define PPC_RAW_ERATSX_DOT(t, a, w) (0x7c000127 | __PPC_RS(t) | __PPC_RA0(a) | __PPC_RB(b)) 418e4208f13SBalamuruhan S #define PPC_RAW_SLBFEE_DOT(t, b) (0x7c0007a7 | __PPC_RT(t) | __PPC_RB(b)) 419e4208f13SBalamuruhan S #define __PPC_RAW_SLBFEE_DOT(t, b) (0x7c0007a7 | ___PPC_RT(t) | ___PPC_RB(b)) 420e4208f13SBalamuruhan S #define PPC_RAW_ICBT(c, a, b) (0x7c00002c | __PPC_CT(c) | __PPC_RA0(a) | __PPC_RB(b)) 421e4208f13SBalamuruhan S #define PPC_RAW_LBZCIX(t, a, b) (0x7c0006aa | __PPC_RT(t) | __PPC_RA(a) | __PPC_RB(b)) 422e4208f13SBalamuruhan S #define PPC_RAW_STBCIX(s, a, b) (0x7c0007aa | __PPC_RS(s) | __PPC_RA(a) | __PPC_RB(b)) 423e4208f13SBalamuruhan S #define PPC_RAW_DCBFPS(a, b) (0x7c0000ac | ___PPC_RA(a) | ___PPC_RB(b) | (4 << 21)) 424e4208f13SBalamuruhan S #define PPC_RAW_DCBSTPS(a, b) (0x7c0000ac | ___PPC_RA(a) | ___PPC_RB(b) | (6 << 21)) 4251c9debbcSChristophe Leroy #define PPC_RAW_SC() (0x44000002) 426ef909ba9SChristophe Leroy #define PPC_RAW_SYNC() (0x7c0004ac) 427ef909ba9SChristophe Leroy #define PPC_RAW_ISYNC() (0x4c00012c) 4281c9debbcSChristophe Leroy 429db551f8cSBalamuruhan S /* 430db551f8cSBalamuruhan S * Define what the VSX XX1 form instructions will look like, then add 431db551f8cSBalamuruhan S * the 128 bit load store instructions based on that. 432db551f8cSBalamuruhan S */ 433db551f8cSBalamuruhan S #define VSX_XX1(s, a, b) (__PPC_XS(s) | __PPC_RA(a) | __PPC_RB(b)) 434db551f8cSBalamuruhan S #define VSX_XX3(t, a, b) (__PPC_XT(t) | __PPC_XA(a) | __PPC_XB(b)) 435e4208f13SBalamuruhan S #define PPC_RAW_STXVD2X(s, a, b) (0x7c000798 | VSX_XX1((s), a, b)) 436e4208f13SBalamuruhan S #define PPC_RAW_LXVD2X(s, a, b) (0x7c000698 | VSX_XX1((s), a, b)) 437e4208f13SBalamuruhan S #define PPC_RAW_MFVRD(a, t) (0x7c000066 | VSX_XX1((t) + 32, a, R0)) 438e4208f13SBalamuruhan S #define PPC_RAW_MTVRD(t, a) (0x7c000166 | VSX_XX1((t) + 32, a, R0)) 439e4208f13SBalamuruhan S #define PPC_RAW_VPMSUMW(t, a, b) (0x10000488 | VSX_XX3((t), a, b)) 440e4208f13SBalamuruhan S #define PPC_RAW_VPMSUMD(t, a, b) (0x100004c8 | VSX_XX3((t), a, b)) 441e4208f13SBalamuruhan S #define PPC_RAW_XXLOR(t, a, b) (0xf0000490 | VSX_XX3((t), a, b)) 442e4208f13SBalamuruhan S #define PPC_RAW_XXSWAPD(t, a) (0xf0000250 | VSX_XX3((t), a, a)) 443e4208f13SBalamuruhan S #define PPC_RAW_XVCPSGNDP(t, a, b) ((0xf0000780 | VSX_XX3((t), (a), (b)))) 444db551f8cSBalamuruhan S #define PPC_RAW_VPERMXOR(vrt, vra, vrb, vrc) \ 445e4208f13SBalamuruhan S ((0x1000002d | ___PPC_RT(vrt) | ___PPC_RA(vra) | ___PPC_RB(vrb) | (((vrc) & 0x1f) << 6))) 4466ce73ba7SBalamuruhan S #define PPC_RAW_LXVP(xtp, a, i) (0x18000000 | __PPC_XTP(xtp) | ___PPC_RA(a) | IMM_DQ(i)) 4476ce73ba7SBalamuruhan S #define PPC_RAW_STXVP(xsp, a, i) (0x18000001 | __PPC_XSP(xsp) | ___PPC_RA(a) | IMM_DQ(i)) 4486ce73ba7SBalamuruhan S #define PPC_RAW_LXVPX(xtp, a, b) (0x7c00029a | __PPC_XTP(xtp) | ___PPC_RA(a) | ___PPC_RB(b)) 4496ce73ba7SBalamuruhan S #define PPC_RAW_STXVPX(xsp, a, b) (0x7c00039a | __PPC_XSP(xsp) | ___PPC_RA(a) | ___PPC_RB(b)) 450148a0476SChristophe Leroy #define PPC_RAW_PLXVP_P(xtp, i, a, pr) (PPC_PREFIX_8LS | __PPC_PRFX_R(pr) | IMM_D0(i)) 451148a0476SChristophe Leroy #define PPC_RAW_PLXVP_S(xtp, i, a, pr) (0xe8000000 | __PPC_XTP(xtp) | ___PPC_RA(a) | IMM_D1(i)) 452148a0476SChristophe Leroy #define PPC_RAW_PSTXVP_P(xsp, i, a, pr) (PPC_PREFIX_8LS | __PPC_PRFX_R(pr) | IMM_D0(i)) 453148a0476SChristophe Leroy #define PPC_RAW_PSTXVP_S(xsp, i, a, pr) (0xf8000000 | __PPC_XSP(xsp) | ___PPC_RA(a) | IMM_D1(i)) 454e4208f13SBalamuruhan S #define PPC_RAW_NAP (0x4c000364) 455e4208f13SBalamuruhan S #define PPC_RAW_SLEEP (0x4c0003a4) 456e4208f13SBalamuruhan S #define PPC_RAW_WINKLE (0x4c0003e4) 457e4208f13SBalamuruhan S #define PPC_RAW_STOP (0x4c0002e4) 458e4208f13SBalamuruhan S #define PPC_RAW_CLRBHRB (0x7c00035c) 459e4208f13SBalamuruhan S #define PPC_RAW_MFBHRBE(r, n) (0x7c00025c | __PPC_RT(r) | (((n) & 0x3ff) << 11)) 460db551f8cSBalamuruhan S #define PPC_RAW_TRECHKPT (PPC_INST_TRECHKPT) 461db551f8cSBalamuruhan S #define PPC_RAW_TRECLAIM(r) (PPC_INST_TRECLAIM | __PPC_RA(r)) 462e4208f13SBalamuruhan S #define PPC_RAW_TABORT(r) (0x7c00071d | __PPC_RA(r)) 463db551f8cSBalamuruhan S #define TMRN(x) ((((x) & 0x1f) << 16) | (((x) & 0x3e0) << 6)) 464e4208f13SBalamuruhan S #define PPC_RAW_MTTMR(tmr, r) (0x7c0003dc | TMRN(tmr) | ___PPC_RS(r)) 465e4208f13SBalamuruhan S #define PPC_RAW_MFTMR(tmr, r) (0x7c0002dc | TMRN(tmr) | ___PPC_RT(r)) 466e4208f13SBalamuruhan S #define PPC_RAW_ICSWX(s, a, b) (0x7c00032d | ___PPC_RS(s) | ___PPC_RA(a) | ___PPC_RB(b)) 467e4208f13SBalamuruhan S #define PPC_RAW_ICSWEPX(s, a, b) (0x7c00076d | ___PPC_RS(s) | ___PPC_RA(a) | ___PPC_RB(b)) 468e4208f13SBalamuruhan S #define PPC_RAW_SLBIA(IH) (0x7c0003e4 | (((IH) & 0x7) << 21)) 469db551f8cSBalamuruhan S #define PPC_RAW_VCMPEQUD_RC(vrt, vra, vrb) \ 470e4208f13SBalamuruhan S (0x100000c7 | ___PPC_RT(vrt) | ___PPC_RA(vra) | ___PPC_RB(vrb) | __PPC_RC21) 471db551f8cSBalamuruhan S #define PPC_RAW_VCMPEQUB_RC(vrt, vra, vrb) \ 472e4208f13SBalamuruhan S (0x10000006 | ___PPC_RT(vrt) | ___PPC_RA(vra) | ___PPC_RB(vrb) | __PPC_RC21) 4736bdc81ecSChristophe Leroy #define PPC_RAW_LD(r, base, i) (0xe8000000 | ___PPC_RT(r) | ___PPC_RA(base) | IMM_DS(i)) 474717756c9SArtem Savkov #define PPC_RAW_LWA(r, base, i) (0xe8000002 | ___PPC_RT(r) | ___PPC_RA(base) | IMM_DS(i)) 475e4208f13SBalamuruhan S #define PPC_RAW_LWZ(r, base, i) (0x80000000 | ___PPC_RT(r) | ___PPC_RA(base) | IMM_L(i)) 476e4208f13SBalamuruhan S #define PPC_RAW_LWZX(t, a, b) (0x7c00002e | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b)) 4776bdc81ecSChristophe Leroy #define PPC_RAW_STD(r, base, i) (0xf8000000 | ___PPC_RS(r) | ___PPC_RA(base) | IMM_DS(i)) 478e4208f13SBalamuruhan S #define PPC_RAW_STDCX(s, a, b) (0x7c0001ad | ___PPC_RS(s) | ___PPC_RA(a) | ___PPC_RB(b)) 479e4208f13SBalamuruhan S #define PPC_RAW_LFSX(t, a, b) (0x7c00042e | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b)) 480e4208f13SBalamuruhan S #define PPC_RAW_STFSX(s, a, b) (0x7c00052e | ___PPC_RS(s) | ___PPC_RA(a) | ___PPC_RB(b)) 481e4208f13SBalamuruhan S #define PPC_RAW_LFDX(t, a, b) (0x7c0004ae | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b)) 482e4208f13SBalamuruhan S #define PPC_RAW_STFDX(s, a, b) (0x7c0005ae | ___PPC_RS(s) | ___PPC_RA(a) | ___PPC_RB(b)) 483e4208f13SBalamuruhan S #define PPC_RAW_LVX(t, a, b) (0x7c0000ce | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b)) 484e4208f13SBalamuruhan S #define PPC_RAW_STVX(s, a, b) (0x7c0001ce | ___PPC_RS(s) | ___PPC_RA(a) | ___PPC_RB(b)) 485355a8d26SChristophe Leroy #define PPC_RAW_ADDE(t, a, b) (0x7c000114 | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b)) 486355a8d26SChristophe Leroy #define PPC_RAW_ADDZE(t, a) (0x7c000194 | ___PPC_RT(t) | ___PPC_RA(a)) 487355a8d26SChristophe Leroy #define PPC_RAW_ADDME(t, a) (0x7c0001d4 | ___PPC_RT(t) | ___PPC_RA(a)) 4886bdc81ecSChristophe Leroy #define PPC_RAW_ADD(t, a, b) (0x7c000214 | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b)) 4896bdc81ecSChristophe Leroy #define PPC_RAW_ADD_DOT(t, a, b) (0x7c000214 | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b) | 0x1) 490e4208f13SBalamuruhan S #define PPC_RAW_ADDC(t, a, b) (0x7c000014 | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b)) 491e4208f13SBalamuruhan S #define PPC_RAW_ADDC_DOT(t, a, b) (0x7c000014 | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b) | 0x1) 492f30becb5SChristophe Leroy #define PPC_RAW_NOP() PPC_RAW_ORI(0, 0, 0) 493e7304597SChristophe Leroy #define PPC_RAW_BLR() (0x4e800020) 494e4208f13SBalamuruhan S #define PPC_RAW_BLRL() (0x4e800021) 495e4208f13SBalamuruhan S #define PPC_RAW_MTLR(r) (0x7c0803a6 | ___PPC_RT(r)) 496e08021f8SChristophe Leroy #define PPC_RAW_MFLR(t) (0x7c0802a6 | ___PPC_RT(t)) 49747b04699SChristophe Leroy #define PPC_RAW_BCTR() (0x4e800420) 4981c9debbcSChristophe Leroy #define PPC_RAW_BCTRL() (0x4e800421) 49947b04699SChristophe Leroy #define PPC_RAW_MTCTR(r) (0x7c0903a6 | ___PPC_RT(r)) 50047b04699SChristophe Leroy #define PPC_RAW_ADDI(d, a, i) (0x38000000 | ___PPC_RT(d) | ___PPC_RA(a) | IMM_L(i)) 5013a181237SBalamuruhan S #define PPC_RAW_LI(r, i) PPC_RAW_ADDI(r, 0, i) 50247b04699SChristophe Leroy #define PPC_RAW_ADDIS(d, a, i) (0x3c000000 | ___PPC_RT(d) | ___PPC_RA(a) | IMM_L(i)) 503355a8d26SChristophe Leroy #define PPC_RAW_ADDIC(d, a, i) (0x30000000 | ___PPC_RT(d) | ___PPC_RA(a) | IMM_L(i)) 504355a8d26SChristophe Leroy #define PPC_RAW_ADDIC_DOT(d, a, i) (0x34000000 | ___PPC_RT(d) | ___PPC_RA(a) | IMM_L(i)) 5053a181237SBalamuruhan S #define PPC_RAW_LIS(r, i) PPC_RAW_ADDIS(r, 0, i) 506e4208f13SBalamuruhan S #define PPC_RAW_STDX(r, base, b) (0x7c00012a | ___PPC_RS(r) | ___PPC_RA(base) | ___PPC_RB(b)) 507e4208f13SBalamuruhan S #define PPC_RAW_STDU(r, base, i) (0xf8000001 | ___PPC_RS(r) | ___PPC_RA(base) | ((i) & 0xfffc)) 508e4208f13SBalamuruhan S #define PPC_RAW_STW(r, base, i) (0x90000000 | ___PPC_RS(r) | ___PPC_RA(base) | IMM_L(i)) 509e4208f13SBalamuruhan S #define PPC_RAW_STWU(r, base, i) (0x94000000 | ___PPC_RS(r) | ___PPC_RA(base) | IMM_L(i)) 510e4208f13SBalamuruhan S #define PPC_RAW_STH(r, base, i) (0xb0000000 | ___PPC_RS(r) | ___PPC_RA(base) | IMM_L(i)) 511e4208f13SBalamuruhan S #define PPC_RAW_STB(r, base, i) (0x98000000 | ___PPC_RS(r) | ___PPC_RA(base) | IMM_L(i)) 512e4208f13SBalamuruhan S #define PPC_RAW_LBZ(r, base, i) (0x88000000 | ___PPC_RT(r) | ___PPC_RA(base) | IMM_L(i)) 513e4208f13SBalamuruhan S #define PPC_RAW_LDX(r, base, b) (0x7c00002a | ___PPC_RT(r) | ___PPC_RA(base) | ___PPC_RB(b)) 5148ecf3c1dSChristophe Leroy #define PPC_RAW_LHA(r, base, i) (0xa8000000 | ___PPC_RT(r) | ___PPC_RA(base) | IMM_L(i)) 515e4208f13SBalamuruhan S #define PPC_RAW_LHZ(r, base, i) (0xa0000000 | ___PPC_RT(r) | ___PPC_RA(base) | IMM_L(i)) 516e4208f13SBalamuruhan S #define PPC_RAW_LHBRX(r, base, b) (0x7c00062c | ___PPC_RT(r) | ___PPC_RA(base) | ___PPC_RB(b)) 5173f5f766dSNaveen N. Rao #define PPC_RAW_LWBRX(r, base, b) (0x7c00042c | ___PPC_RT(r) | ___PPC_RA(base) | ___PPC_RB(b)) 518e4208f13SBalamuruhan S #define PPC_RAW_LDBRX(r, base, b) (0x7c000428 | ___PPC_RT(r) | ___PPC_RA(base) | ___PPC_RB(b)) 519e4208f13SBalamuruhan S #define PPC_RAW_STWCX(s, a, b) (0x7c00012d | ___PPC_RS(s) | ___PPC_RA(a) | ___PPC_RB(b)) 520e4208f13SBalamuruhan S #define PPC_RAW_CMPWI(a, i) (0x2c000000 | ___PPC_RA(a) | IMM_L(i)) 521e4208f13SBalamuruhan S #define PPC_RAW_CMPDI(a, i) (0x2c200000 | ___PPC_RA(a) | IMM_L(i)) 522e4208f13SBalamuruhan S #define PPC_RAW_CMPW(a, b) (0x7c000000 | ___PPC_RA(a) | ___PPC_RB(b)) 523e4208f13SBalamuruhan S #define PPC_RAW_CMPD(a, b) (0x7c200000 | ___PPC_RA(a) | ___PPC_RB(b)) 524e4208f13SBalamuruhan S #define PPC_RAW_CMPLWI(a, i) (0x28000000 | ___PPC_RA(a) | IMM_L(i)) 525e4208f13SBalamuruhan S #define PPC_RAW_CMPLDI(a, i) (0x28200000 | ___PPC_RA(a) | IMM_L(i)) 526e4208f13SBalamuruhan S #define PPC_RAW_CMPLW(a, b) (0x7c000040 | ___PPC_RA(a) | ___PPC_RB(b)) 527e4208f13SBalamuruhan S #define PPC_RAW_CMPLD(a, b) (0x7c200040 | ___PPC_RA(a) | ___PPC_RB(b)) 528e4208f13SBalamuruhan S #define PPC_RAW_SUB(d, a, b) (0x7c000050 | ___PPC_RT(d) | ___PPC_RB(a) | ___PPC_RA(b)) 529355a8d26SChristophe Leroy #define PPC_RAW_SUBFC(d, a, b) (0x7c000010 | ___PPC_RT(d) | ___PPC_RA(a) | ___PPC_RB(b)) 530355a8d26SChristophe Leroy #define PPC_RAW_SUBFE(d, a, b) (0x7c000110 | ___PPC_RT(d) | ___PPC_RA(a) | ___PPC_RB(b)) 531355a8d26SChristophe Leroy #define PPC_RAW_SUBFIC(d, a, i) (0x20000000 | ___PPC_RT(d) | ___PPC_RA(a) | IMM_L(i)) 532355a8d26SChristophe Leroy #define PPC_RAW_SUBFZE(d, a) (0x7c000190 | ___PPC_RT(d) | ___PPC_RA(a)) 533e4208f13SBalamuruhan S #define PPC_RAW_MULD(d, a, b) (0x7c0001d2 | ___PPC_RT(d) | ___PPC_RA(a) | ___PPC_RB(b)) 534e4208f13SBalamuruhan S #define PPC_RAW_MULW(d, a, b) (0x7c0001d6 | ___PPC_RT(d) | ___PPC_RA(a) | ___PPC_RB(b)) 535e4208f13SBalamuruhan S #define PPC_RAW_MULHWU(d, a, b) (0x7c000016 | ___PPC_RT(d) | ___PPC_RA(a) | ___PPC_RB(b)) 536e4208f13SBalamuruhan S #define PPC_RAW_MULI(d, a, i) (0x1c000000 | ___PPC_RT(d) | ___PPC_RA(a) | IMM_L(i)) 5378ecf3c1dSChristophe Leroy #define PPC_RAW_DIVW(d, a, b) (0x7c0003d6 | ___PPC_RT(d) | ___PPC_RA(a) | ___PPC_RB(b)) 538e4208f13SBalamuruhan S #define PPC_RAW_DIVWU(d, a, b) (0x7c000396 | ___PPC_RT(d) | ___PPC_RA(a) | ___PPC_RB(b)) 539fde31832SArtem Savkov #define PPC_RAW_DIVD(d, a, b) (0x7c0003d2 | ___PPC_RT(d) | ___PPC_RA(a) | ___PPC_RB(b)) 540e4208f13SBalamuruhan S #define PPC_RAW_DIVDU(d, a, b) (0x7c000392 | ___PPC_RT(d) | ___PPC_RA(a) | ___PPC_RB(b)) 5418902c6f9SBalamuruhan S #define PPC_RAW_DIVDE(t, a, b) (0x7c000352 | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b)) 5428902c6f9SBalamuruhan S #define PPC_RAW_DIVDE_DOT(t, a, b) (0x7c000352 | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b) | 0x1) 5438902c6f9SBalamuruhan S #define PPC_RAW_DIVDEU(t, a, b) (0x7c000312 | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b)) 5448902c6f9SBalamuruhan S #define PPC_RAW_DIVDEU_DOT(t, a, b) (0x7c000312 | ___PPC_RT(t) | ___PPC_RA(a) | ___PPC_RB(b) | 0x1) 545e4208f13SBalamuruhan S #define PPC_RAW_AND(d, a, b) (0x7c000038 | ___PPC_RA(d) | ___PPC_RS(a) | ___PPC_RB(b)) 546e4208f13SBalamuruhan S #define PPC_RAW_ANDI(d, a, i) (0x70000000 | ___PPC_RA(d) | ___PPC_RS(a) | IMM_L(i)) 547355a8d26SChristophe Leroy #define PPC_RAW_ANDIS(d, a, i) (0x74000000 | ___PPC_RA(d) | ___PPC_RS(a) | IMM_L(i)) 548e4208f13SBalamuruhan S #define PPC_RAW_AND_DOT(d, a, b) (0x7c000039 | ___PPC_RA(d) | ___PPC_RS(a) | ___PPC_RB(b)) 549e4208f13SBalamuruhan S #define PPC_RAW_OR(d, a, b) (0x7c000378 | ___PPC_RA(d) | ___PPC_RS(a) | ___PPC_RB(b)) 5503a181237SBalamuruhan S #define PPC_RAW_MR(d, a) PPC_RAW_OR(d, a, a) 5510e628ad2SChristophe Leroy #define PPC_RAW_ORI(d, a, i) (0x60000000 | ___PPC_RA(d) | ___PPC_RS(a) | IMM_L(i)) 5520e628ad2SChristophe Leroy #define PPC_RAW_ORIS(d, a, i) (0x64000000 | ___PPC_RA(d) | ___PPC_RS(a) | IMM_L(i)) 553355a8d26SChristophe Leroy #define PPC_RAW_NOR(d, a, b) (0x7c0000f8 | ___PPC_RA(d) | ___PPC_RS(a) | ___PPC_RB(b)) 554e4208f13SBalamuruhan S #define PPC_RAW_XOR(d, a, b) (0x7c000278 | ___PPC_RA(d) | ___PPC_RS(a) | ___PPC_RB(b)) 555e4208f13SBalamuruhan S #define PPC_RAW_XORI(d, a, i) (0x68000000 | ___PPC_RA(d) | ___PPC_RS(a) | IMM_L(i)) 556e4208f13SBalamuruhan S #define PPC_RAW_XORIS(d, a, i) (0x6c000000 | ___PPC_RA(d) | ___PPC_RS(a) | IMM_L(i)) 5578ecf3c1dSChristophe Leroy #define PPC_RAW_EXTSB(d, a) (0x7c000774 | ___PPC_RA(d) | ___PPC_RS(a)) 5588ecf3c1dSChristophe Leroy #define PPC_RAW_EXTSH(d, a) (0x7c000734 | ___PPC_RA(d) | ___PPC_RS(a)) 559e4208f13SBalamuruhan S #define PPC_RAW_EXTSW(d, a) (0x7c0007b4 | ___PPC_RA(d) | ___PPC_RS(a)) 560e4208f13SBalamuruhan S #define PPC_RAW_SLW(d, a, s) (0x7c000030 | ___PPC_RA(d) | ___PPC_RS(a) | ___PPC_RB(s)) 561e4208f13SBalamuruhan S #define PPC_RAW_SLD(d, a, s) (0x7c000036 | ___PPC_RA(d) | ___PPC_RS(a) | ___PPC_RB(s)) 562e4208f13SBalamuruhan S #define PPC_RAW_SRW(d, a, s) (0x7c000430 | ___PPC_RA(d) | ___PPC_RS(a) | ___PPC_RB(s)) 563e4208f13SBalamuruhan S #define PPC_RAW_SRAW(d, a, s) (0x7c000630 | ___PPC_RA(d) | ___PPC_RS(a) | ___PPC_RB(s)) 564e4208f13SBalamuruhan S #define PPC_RAW_SRAWI(d, a, i) (0x7c000670 | ___PPC_RA(d) | ___PPC_RS(a) | __PPC_SH(i)) 565e4208f13SBalamuruhan S #define PPC_RAW_SRD(d, a, s) (0x7c000436 | ___PPC_RA(d) | ___PPC_RS(a) | ___PPC_RB(s)) 566e4208f13SBalamuruhan S #define PPC_RAW_SRAD(d, a, s) (0x7c000634 | ___PPC_RA(d) | ___PPC_RS(a) | ___PPC_RB(s)) 567e4208f13SBalamuruhan S #define PPC_RAW_SRADI(d, a, i) (0x7c000674 | ___PPC_RA(d) | ___PPC_RS(a) | __PPC_SH64(i)) 568e4208f13SBalamuruhan S #define PPC_RAW_RLWINM(d, a, i, mb, me) (0x54000000 | ___PPC_RA(d) | ___PPC_RS(a) | __PPC_SH(i) | __PPC_MB(mb) | __PPC_ME(me)) 5693a181237SBalamuruhan S #define PPC_RAW_RLWINM_DOT(d, a, i, mb, me) \ 570e4208f13SBalamuruhan S (0x54000001 | ___PPC_RA(d) | ___PPC_RS(a) | __PPC_SH(i) | __PPC_MB(mb) | __PPC_ME(me)) 571e4208f13SBalamuruhan S #define PPC_RAW_RLWIMI(d, a, i, mb, me) (0x50000000 | ___PPC_RA(d) | ___PPC_RS(a) | __PPC_SH(i) | __PPC_MB(mb) | __PPC_ME(me)) 572e4208f13SBalamuruhan S #define PPC_RAW_RLDICL(d, a, i, mb) (0x78000000 | ___PPC_RA(d) | ___PPC_RS(a) | __PPC_SH64(i) | __PPC_MB64(mb)) 5730e628ad2SChristophe Leroy #define PPC_RAW_RLDICR(d, a, i, me) (0x78000004 | ___PPC_RA(d) | ___PPC_RS(a) | __PPC_SH64(i) | __PPC_ME64(me)) 5743a181237SBalamuruhan S 5753a181237SBalamuruhan S /* slwi = rlwinm Rx, Ry, n, 0, 31-n */ 5763a181237SBalamuruhan S #define PPC_RAW_SLWI(d, a, i) PPC_RAW_RLWINM(d, a, i, 0, 31-(i)) 5773a181237SBalamuruhan S /* srwi = rlwinm Rx, Ry, 32-n, n, 31 */ 5783a181237SBalamuruhan S #define PPC_RAW_SRWI(d, a, i) PPC_RAW_RLWINM(d, a, 32-(i), i, 31) 5793a181237SBalamuruhan S /* sldi = rldicr Rx, Ry, n, 63-n */ 5803a181237SBalamuruhan S #define PPC_RAW_SLDI(d, a, i) PPC_RAW_RLDICR(d, a, i, 63-(i)) 5813a181237SBalamuruhan S /* sldi = rldicl Rx, Ry, 64-n, n */ 5823a181237SBalamuruhan S #define PPC_RAW_SRDI(d, a, i) PPC_RAW_RLDICL(d, a, 64-(i), i) 5833a181237SBalamuruhan S 584e4208f13SBalamuruhan S #define PPC_RAW_NEG(d, a) (0x7c0000d0 | ___PPC_RT(d) | ___PPC_RA(a)) 585db551f8cSBalamuruhan S 58670b588a0SChristophe Leroy #define PPC_RAW_MFSPR(d, spr) (0x7c0002a6 | ___PPC_RT(d) | __PPC_SPR(spr)) 587ef909ba9SChristophe Leroy #define PPC_RAW_MTSPR(spr, d) (0x7c0003a6 | ___PPC_RS(d) | __PPC_SPR(spr)) 588ef909ba9SChristophe Leroy #define PPC_RAW_EIEIO() (0x7c0006ac) 58970b588a0SChristophe Leroy 590*d243b62bSNaveen N Rao /* bcl 20,31,$+4 */ 591*d243b62bSNaveen N Rao #define PPC_RAW_BCL4() (0x429f0005) 5924390a58eSChristophe Leroy #define PPC_RAW_BRANCH(offset) (0x48000000 | PPC_LI(offset)) 593e89aa642SChristophe Leroy #define PPC_RAW_BL(offset) (0x48000001 | PPC_LI(offset)) 59459bab33aSChristophe Leroy #define PPC_RAW_TW(t0, a, b) (0x7c000008 | ___PPC_RS(t0) | ___PPC_RA(a) | ___PPC_RB(b)) 595d00d762dSChristophe Leroy #define PPC_RAW_TRAP() PPC_RAW_TW(31, 0, 0) 596de40303bSChristophe Leroy #define PPC_RAW_SETB(t, bfa) (0x7c000100 | ___PPC_RT(t) | ___PPC_RA((bfa) << 2)) 597f15a71b3SHari Bathini 598*d243b62bSNaveen N Rao #ifdef CONFIG_PPC32 599*d243b62bSNaveen N Rao #define PPC_RAW_STL PPC_RAW_STW 600*d243b62bSNaveen N Rao #define PPC_RAW_STLU PPC_RAW_STWU 601*d243b62bSNaveen N Rao #define PPC_RAW_LL PPC_RAW_LWZ 602*d243b62bSNaveen N Rao #define PPC_RAW_CMPLI PPC_RAW_CMPWI 603*d243b62bSNaveen N Rao #else 604*d243b62bSNaveen N Rao #define PPC_RAW_STL PPC_RAW_STD 605*d243b62bSNaveen N Rao #define PPC_RAW_STLU PPC_RAW_STDU 606*d243b62bSNaveen N Rao #define PPC_RAW_LL PPC_RAW_LD 607*d243b62bSNaveen N Rao #define PPC_RAW_CMPLI PPC_RAW_CMPDI 608*d243b62bSNaveen N Rao #endif 609*d243b62bSNaveen N Rao 61016c57b36SKumar Gala /* Deal with instructions that older assemblers aren't aware of */ 61170d7cdafSNicholas Piggin #define PPC_BCCTR_FLUSH stringify_in_c(.long PPC_INST_BCCTR_FLUSH) 612357c5729SBalamuruhan S #define PPC_CP_ABORT stringify_in_c(.long PPC_RAW_CP_ABORT) 613357c5729SBalamuruhan S #define PPC_COPY(a, b) stringify_in_c(.long PPC_RAW_COPY(a, b)) 614357c5729SBalamuruhan S #define PPC_DARN(t, l) stringify_in_c(.long PPC_RAW_DARN(t, l)) 615357c5729SBalamuruhan S #define PPC_DCBAL(a, b) stringify_in_c(.long PPC_RAW_DCBAL(a, b)) 616357c5729SBalamuruhan S #define PPC_DCBZL(a, b) stringify_in_c(.long PPC_RAW_DCBZL(a, b)) 6178902c6f9SBalamuruhan S #define PPC_DIVDE(t, a, b) stringify_in_c(.long PPC_RAW_DIVDE(t, a, b)) 6188902c6f9SBalamuruhan S #define PPC_DIVDEU(t, a, b) stringify_in_c(.long PPC_RAW_DIVDEU(t, a, b)) 619d51f86cfSAlexey Kardashevskiy #define PPC_DSSALL stringify_in_c(.long PPC_INST_DSSALL) 620357c5729SBalamuruhan S #define PPC_LQARX(t, a, b, eh) stringify_in_c(.long PPC_RAW_LQARX(t, a, b, eh)) 621357c5729SBalamuruhan S #define PPC_STQCX(t, a, b) stringify_in_c(.long PPC_RAW_STQCX(t, a, b)) 622357c5729SBalamuruhan S #define PPC_MADDHD(t, a, b, c) stringify_in_c(.long PPC_RAW_MADDHD(t, a, b, c)) 623357c5729SBalamuruhan S #define PPC_MADDHDU(t, a, b, c) stringify_in_c(.long PPC_RAW_MADDHDU(t, a, b, c)) 624357c5729SBalamuruhan S #define PPC_MADDLD(t, a, b, c) stringify_in_c(.long PPC_RAW_MADDLD(t, a, b, c)) 625357c5729SBalamuruhan S #define PPC_MSGSND(b) stringify_in_c(.long PPC_RAW_MSGSND(b)) 626357c5729SBalamuruhan S #define PPC_MSGSYNC stringify_in_c(.long PPC_RAW_MSGSYNC) 627357c5729SBalamuruhan S #define PPC_MSGCLR(b) stringify_in_c(.long PPC_RAW_MSGCLR(b)) 628357c5729SBalamuruhan S #define PPC_MSGSNDP(b) stringify_in_c(.long PPC_RAW_MSGSNDP(b)) 629357c5729SBalamuruhan S #define PPC_MSGCLRP(b) stringify_in_c(.long PPC_RAW_MSGCLRP(b)) 630357c5729SBalamuruhan S #define PPC_PASTE(a, b) stringify_in_c(.long PPC_RAW_PASTE(a, b)) 631357c5729SBalamuruhan S #define PPC_POPCNTB(a, s) stringify_in_c(.long PPC_RAW_POPCNTB(a, s)) 632357c5729SBalamuruhan S #define PPC_POPCNTD(a, s) stringify_in_c(.long PPC_RAW_POPCNTD(a, s)) 633357c5729SBalamuruhan S #define PPC_POPCNTW(a, s) stringify_in_c(.long PPC_RAW_POPCNTW(a, s)) 634357c5729SBalamuruhan S #define PPC_RFCI stringify_in_c(.long PPC_RAW_RFCI) 635357c5729SBalamuruhan S #define PPC_RFDI stringify_in_c(.long PPC_RAW_RFDI) 636357c5729SBalamuruhan S #define PPC_RFMCI stringify_in_c(.long PPC_RAW_RFMCI) 637357c5729SBalamuruhan S #define PPC_TLBILX(t, a, b) stringify_in_c(.long PPC_RAW_TLBILX(t, a, b)) 63816c57b36SKumar Gala #define PPC_TLBILX_ALL(a, b) PPC_TLBILX(0, a, b) 63916c57b36SKumar Gala #define PPC_TLBILX_PID(a, b) PPC_TLBILX(1, a, b) 640ae7936d2SNick Desaulniers #define PPC_TLBILX_LPID stringify_in_c(.long PPC_RAW_TLBILX_LPID) 64116c57b36SKumar Gala #define PPC_TLBILX_VA(a, b) PPC_TLBILX(3, a, b) 642dabeb572SNicholas Piggin #define PPC_WAIT_v203 stringify_in_c(.long PPC_RAW_WAIT_v203) 643dabeb572SNicholas Piggin #define PPC_WAIT(w, p) stringify_in_c(.long PPC_RAW_WAIT(w, p)) 644357c5729SBalamuruhan S #define PPC_TLBIE(lp, a) stringify_in_c(.long PPC_RAW_TLBIE(lp, a)) 6458cd6d3c2SBalbir Singh #define PPC_TLBIE_5(rb, rs, ric, prs, r) \ 646357c5729SBalamuruhan S stringify_in_c(.long PPC_RAW_TLBIE_5(rb, rs, ric, prs, r)) 6478cd6d3c2SBalbir Singh #define PPC_TLBIEL(rb,rs,ric,prs,r) \ 648357c5729SBalamuruhan S stringify_in_c(.long PPC_RAW_TLBIEL(rb, rs, ric, prs, r)) 64962479e6eSAlexey Kardashevskiy #define PPC_TLBIEL_v205(rb, l) stringify_in_c(.long PPC_RAW_TLBIEL_v205(rb, l)) 650357c5729SBalamuruhan S #define PPC_TLBSRX_DOT(a, b) stringify_in_c(.long PPC_RAW_TLBSRX_DOT(a, b)) 651357c5729SBalamuruhan S #define PPC_TLBIVAX(a, b) stringify_in_c(.long PPC_RAW_TLBIVAX(a, b)) 65216c57b36SKumar Gala 653357c5729SBalamuruhan S #define PPC_ERATWE(s, a, w) stringify_in_c(.long PPC_RAW_ERATWE(s, a, w)) 654357c5729SBalamuruhan S #define PPC_ERATRE(s, a, w) stringify_in_c(.long PPC_RAW_ERATRE(a, a, w)) 655357c5729SBalamuruhan S #define PPC_ERATILX(t, a, b) stringify_in_c(.long PPC_RAW_ERATILX(t, a, b)) 656357c5729SBalamuruhan S #define PPC_ERATIVAX(s, a, b) stringify_in_c(.long PPC_RAW_ERATIVAX(s, a, b)) 657357c5729SBalamuruhan S #define PPC_ERATSX(t, a, w) stringify_in_c(.long PPC_RAW_ERATSX(t, a, w)) 658357c5729SBalamuruhan S #define PPC_ERATSX_DOT(t, a, w) stringify_in_c(.long PPC_RAW_ERATSX_DOT(t, a, w)) 659357c5729SBalamuruhan S #define PPC_SLBFEE_DOT(t, b) stringify_in_c(.long PPC_RAW_SLBFEE_DOT(t, b)) 660357c5729SBalamuruhan S #define __PPC_SLBFEE_DOT(t, b) stringify_in_c(.long __PPC_RAW_SLBFEE_DOT(t, b)) 661357c5729SBalamuruhan S #define PPC_ICBT(c, a, b) stringify_in_c(.long PPC_RAW_ICBT(c, a, b)) 6624404a9f9SMichael Neuling /* PASemi instructions */ 663357c5729SBalamuruhan S #define LBZCIX(t, a, b) stringify_in_c(.long PPC_RAW_LBZCIX(t, a, b)) 664357c5729SBalamuruhan S #define STBCIX(s, a, b) stringify_in_c(.long PPC_RAW_STBCIX(s, a, b)) 665357c5729SBalamuruhan S #define PPC_DCBFPS(a, b) stringify_in_c(.long PPC_RAW_DCBFPS(a, b)) 666357c5729SBalamuruhan S #define PPC_DCBSTPS(a, b) stringify_in_c(.long PPC_RAW_DCBSTPS(a, b)) 667357c5729SBalamuruhan S #define PPC_PHWSYNC stringify_in_c(.long PPC_RAW_PHWSYNC) 668357c5729SBalamuruhan S #define PPC_PLWSYNC stringify_in_c(.long PPC_RAW_PLWSYNC) 669357c5729SBalamuruhan S #define STXVD2X(s, a, b) stringify_in_c(.long PPC_RAW_STXVD2X(s, a, b)) 670357c5729SBalamuruhan S #define LXVD2X(s, a, b) stringify_in_c(.long PPC_RAW_LXVD2X(s, a, b)) 671357c5729SBalamuruhan S #define MFVRD(a, t) stringify_in_c(.long PPC_RAW_MFVRD(a, t)) 672357c5729SBalamuruhan S #define MTVRD(t, a) stringify_in_c(.long PPC_RAW_MTVRD(t, a)) 673357c5729SBalamuruhan S #define VPMSUMW(t, a, b) stringify_in_c(.long PPC_RAW_VPMSUMW(t, a, b)) 674357c5729SBalamuruhan S #define VPMSUMD(t, a, b) stringify_in_c(.long PPC_RAW_VPMSUMD(t, a, b)) 675357c5729SBalamuruhan S #define XXLOR(t, a, b) stringify_in_c(.long PPC_RAW_XXLOR(t, a, b)) 676357c5729SBalamuruhan S #define XXSWAPD(t, a) stringify_in_c(.long PPC_RAW_XXSWAPD(t, a)) 677357c5729SBalamuruhan S #define XVCPSGNDP(t, a, b) stringify_in_c(.long (PPC_RAW_XVCPSGNDP(t, a, b))) 678dfb432cbSMichael Neuling 679751ba79cSMatt Brown #define VPERMXOR(vrt, vra, vrb, vrc) \ 680357c5729SBalamuruhan S stringify_in_c(.long (PPC_RAW_VPERMXOR(vrt, vra, vrb, vrc))) 681751ba79cSMatt Brown 682357c5729SBalamuruhan S #define PPC_NAP stringify_in_c(.long PPC_RAW_NAP) 683357c5729SBalamuruhan S #define PPC_SLEEP stringify_in_c(.long PPC_RAW_SLEEP) 684357c5729SBalamuruhan S #define PPC_WINKLE stringify_in_c(.long PPC_RAW_WINKLE) 685948cf67cSBenjamin Herrenschmidt 686357c5729SBalamuruhan S #define PPC_STOP stringify_in_c(.long PPC_RAW_STOP) 687bcef83a0SShreyas B. Prabhu 68895213959SAnshuman Khandual /* BHRB instructions */ 689357c5729SBalamuruhan S #define PPC_CLRBHRB stringify_in_c(.long PPC_RAW_CLRBHRB) 690357c5729SBalamuruhan S #define PPC_MFBHRBE(r, n) stringify_in_c(.long PPC_RAW_MFBHRBE(r, n)) 69195213959SAnshuman Khandual 69214c39a4cSMichael Neuling /* Transactional memory instructions */ 693357c5729SBalamuruhan S #define TRECHKPT stringify_in_c(.long PPC_RAW_TRECHKPT) 694357c5729SBalamuruhan S #define TRECLAIM(r) stringify_in_c(.long PPC_RAW_TRECLAIM(r)) 695357c5729SBalamuruhan S #define TABORT(r) stringify_in_c(.long PPC_RAW_TABORT(r)) 69614c39a4cSMichael Neuling 697e16c8765SAndy Fleming /* book3e thread control instructions */ 698357c5729SBalamuruhan S #define MTTMR(tmr, r) stringify_in_c(.long PPC_RAW_MTTMR(tmr, r)) 699357c5729SBalamuruhan S #define MFTMR(tmr, r) stringify_in_c(.long PPC_RAW_MFTMR(tmr, r)) 700e16c8765SAndy Fleming 701edc424f8SDan Streetman /* Coprocessor instructions */ 702357c5729SBalamuruhan S #define PPC_ICSWX(s, a, b) stringify_in_c(.long PPC_RAW_ICSWX(s, a, b)) 703357c5729SBalamuruhan S #define PPC_ICSWEPX(s, a, b) stringify_in_c(.long PPC_RAW_ICSWEPX(s, a, b)) 704edc424f8SDan Streetman 705357c5729SBalamuruhan S #define PPC_SLBIA(IH) stringify_in_c(.long PPC_RAW_SLBIA(IH)) 7066c46fcceSNicholas Piggin 7076c46fcceSNicholas Piggin /* 7086c46fcceSNicholas Piggin * These may only be used on ISA v3.0 or later (aka. CPU_FTR_ARCH_300, radix 7096c46fcceSNicholas Piggin * implies CPU_FTR_ARCH_300). USER/GUEST invalidates may only be used by radix 7106c46fcceSNicholas Piggin * mode (on HPT these would also invalidate various SLBEs which may not be 7116c46fcceSNicholas Piggin * desired). 7126c46fcceSNicholas Piggin */ 713fe7946ceSNicholas Piggin #define PPC_ISA_3_0_INVALIDATE_ERAT PPC_SLBIA(7) 7146c46fcceSNicholas Piggin #define PPC_RADIX_INVALIDATE_ERAT_USER PPC_SLBIA(3) 7156c46fcceSNicholas Piggin #define PPC_RADIX_INVALIDATE_ERAT_GUEST PPC_SLBIA(6) 716edc424f8SDan Streetman 717357c5729SBalamuruhan S #define VCMPEQUD_RC(vrt, vra, vrb) stringify_in_c(.long PPC_RAW_VCMPEQUD_RC(vrt, vra, vrb)) 718f1ecbaf4SSimon Guo 719357c5729SBalamuruhan S #define VCMPEQUB_RC(vrt, vra, vrb) stringify_in_c(.long PPC_RAW_VCMPEQUB_RC(vrt, vra, vrb)) 720f1ecbaf4SSimon Guo 72116c57b36SKumar Gala #endif /* _ASM_POWERPC_PPC_OPCODE_H */ 722