]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
powerpc/pasemi: Move lbz/stbciz to ppc-opcode.h
authorMichael Neuling <mikey@neuling.org>
Mon, 25 Jun 2012 13:33:13 +0000 (13:33 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Tue, 10 Jul 2012 09:18:00 +0000 (19:18 +1000)
move lbz/stbciz to ppc-opcode.h.

Signed-off-by: Michael Neuling <mikey@neuling.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/include/asm/ppc-opcode.h
arch/powerpc/kernel/misc_64.S

index 015a3289e22283c0f722de0f5a07f9a22018a290..73eecd1fd5cc6fc32f37954cf3b0e33db5916dd4 100644 (file)
 #define PPC_INST_NEG                   0x7c0000d0
 #define PPC_INST_BRANCH                        0x48000000
 #define PPC_INST_BRANCH_COND           0x40800000
+#define PPC_INST_LBZCIX                        0x7c0006aa
+#define PPC_INST_STBCIX                        0x7c0007aa
 
 /* macros to insert fields into opcodes */
 #define __PPC_RA(a)    (((a) & 0x1f) << 16)
                                        __PPC_RS(t) | __PPC_RA(a) | __PPC_RB(b))
 #define PPC_SLBFEE_DOT(t, b)   stringify_in_c(.long PPC_INST_SLBFEE | \
                                        __PPC_RT(t) | __PPC_RB(b))
+/* PASemi instructions */
+#define LBZCIX(t,a,b)          stringify_in_c(.long PPC_INST_LBZCIX | \
+                                      __PPC_RT(t) | __PPC_RA(a) | __PPC_RB(b))
+#define STBCIX(s,a,b)          stringify_in_c(.long PPC_INST_STBCIX | \
+                                      __PPC_RS(s) | __PPC_RA(a) | __PPC_RB(b))
 
 /*
  * Define what the VSX XX1 form instructions will look like, then add
index 6ba08bc91b21bccbe5356f7c4b5551e4000eb386..f52f9b949fd72ba7f59a345b39d2fec2e725f58b 100644 (file)
@@ -301,11 +301,6 @@ _GLOBAL(real_writeb)
 
 #ifdef CONFIG_PPC_PASEMI
 
-/* No support in all binutils for these yet, so use defines */
-#define LBZCIX(RT,RA,RB)  .long (0x7c0006aa|(RT<<21)|(RA<<16)|(RB << 11))
-#define STBCIX(RS,RA,RB)  .long (0x7c0007aa|(RS<<21)|(RA<<16)|(RB << 11))
-
-
 _GLOBAL(real_205_readb)
        mfmsr   r7
        ori     r0,r7,MSR_DR