blob: dc85dcb891cfa5a60adc894c692f5aed2ec39549 [file] [log] [blame]
David Gibson3ddfbcf2005-11-10 12:56:55 +11001#ifndef _ASM_POWERPC_ASM_COMPAT_H
2#define _ASM_POWERPC_ASM_COMPAT_H
3
David Gibson3ddfbcf2005-11-10 12:56:55 +11004#include <asm/types.h>
Anton Blanchard864b9e62010-02-10 01:02:36 +00005#include <asm/ppc-opcode.h>
David Gibson3ddfbcf2005-11-10 12:56:55 +11006
7#ifdef __ASSEMBLY__
8# define stringify_in_c(...) __VA_ARGS__
9# define ASM_CONST(x) x
10#else
11/* This version of stringify will deal with commas... */
12# define __stringify_in_c(...) #__VA_ARGS__
13# define stringify_in_c(...) __stringify_in_c(__VA_ARGS__) " "
14# define __ASM_CONST(x) x##UL
15# define ASM_CONST(x) __ASM_CONST(x)
16#endif
17
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +100018
David Gibson3ddfbcf2005-11-10 12:56:55 +110019#ifdef __powerpc64__
20
21/* operations for longs and pointers */
22#define PPC_LL stringify_in_c(ld)
23#define PPC_STL stringify_in_c(std)
Alexander Graf56db45a2010-04-16 00:11:43 +020024#define PPC_STLU stringify_in_c(stdu)
David Gibson3ddfbcf2005-11-10 12:56:55 +110025#define PPC_LCMPI stringify_in_c(cmpdi)
Denis Kirjanovfb7fc082015-02-17 10:04:38 +030026#define PPC_LCMPLI stringify_in_c(cmpldi)
27#define PPC_LCMP stringify_in_c(cmpd)
David Gibson3ddfbcf2005-11-10 12:56:55 +110028#define PPC_LONG stringify_in_c(.llong)
Michael Ellerman6a2a24b2008-07-17 17:17:51 +100029#define PPC_LONG_ALIGN stringify_in_c(.balign 8)
David Gibson3ddfbcf2005-11-10 12:56:55 +110030#define PPC_TLNEI stringify_in_c(tdnei)
Anton Blanchard864b9e62010-02-10 01:02:36 +000031#define PPC_LLARX(t, a, b, eh) PPC_LDARX(t, a, b, eh)
David Gibson3ddfbcf2005-11-10 12:56:55 +110032#define PPC_STLCX stringify_in_c(stdcx.)
33#define PPC_CNTLZL stringify_in_c(cntlzd)
Michael Neuling86e32fd2012-06-25 13:33:16 +000034#define PPC_MTOCRF(FXM, RS) MTOCRF((FXM), RS)
Paul Mackerras9eff26e2010-03-18 16:05:13 +110035#define PPC_LR_STKOFF 16
Paul Mackerras0016a4c2010-06-15 14:48:58 +100036#define PPC_MIN_STKFRM 112
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +100037
38#ifdef __BIG_ENDIAN__
Alexander Graf8f6822c2014-06-11 10:07:40 +020039#define LWZX_BE stringify_in_c(lwzx)
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +100040#define LDX_BE stringify_in_c(ldx)
Alexander Graf8f6822c2014-06-11 10:07:40 +020041#define STWX_BE stringify_in_c(stwx)
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +100042#define STDX_BE stringify_in_c(stdx)
43#else
Alexander Graf8f6822c2014-06-11 10:07:40 +020044#define LWZX_BE stringify_in_c(lwbrx)
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +100045#define LDX_BE stringify_in_c(ldbrx)
Alexander Graf8f6822c2014-06-11 10:07:40 +020046#define STWX_BE stringify_in_c(stwbrx)
Anton Blanchard7ffcf8e2013-08-07 02:01:46 +100047#define STDX_BE stringify_in_c(stdbrx)
48#endif
49
David Gibson3ddfbcf2005-11-10 12:56:55 +110050#else /* 32-bit */
51
52/* operations for longs and pointers */
53#define PPC_LL stringify_in_c(lwz)
54#define PPC_STL stringify_in_c(stw)
Alexander Graf56db45a2010-04-16 00:11:43 +020055#define PPC_STLU stringify_in_c(stwu)
David Gibson3ddfbcf2005-11-10 12:56:55 +110056#define PPC_LCMPI stringify_in_c(cmpwi)
Denis Kirjanovfb7fc082015-02-17 10:04:38 +030057#define PPC_LCMPLI stringify_in_c(cmplwi)
58#define PPC_LCMP stringify_in_c(cmpw)
David Gibson3ddfbcf2005-11-10 12:56:55 +110059#define PPC_LONG stringify_in_c(.long)
Michael Ellerman6a2a24b2008-07-17 17:17:51 +100060#define PPC_LONG_ALIGN stringify_in_c(.balign 4)
David Gibson3ddfbcf2005-11-10 12:56:55 +110061#define PPC_TLNEI stringify_in_c(twnei)
Anton Blanchard864b9e62010-02-10 01:02:36 +000062#define PPC_LLARX(t, a, b, eh) PPC_LWARX(t, a, b, eh)
David Gibson3ddfbcf2005-11-10 12:56:55 +110063#define PPC_STLCX stringify_in_c(stwcx.)
64#define PPC_CNTLZL stringify_in_c(cntlzw)
Olof Johansson3467bfd2007-03-22 09:34:13 -050065#define PPC_MTOCRF stringify_in_c(mtcrf)
Paul Mackerras9eff26e2010-03-18 16:05:13 +110066#define PPC_LR_STKOFF 4
Paul Mackerras0016a4c2010-06-15 14:48:58 +100067#define PPC_MIN_STKFRM 16
David Gibson3ddfbcf2005-11-10 12:56:55 +110068
69#endif
70
Arnd Bergmann88ced032005-12-16 22:43:46 +010071#ifdef __KERNEL__
David Gibson3ddfbcf2005-11-10 12:56:55 +110072#ifdef CONFIG_IBM405_ERR77
73/* Erratum #77 on the 405 means we need a sync or dcbt before every
74 * stwcx. The old ATOMIC_SYNC_FIX covered some but not all of this.
75 */
76#define PPC405_ERR77(ra,rb) stringify_in_c(dcbt ra, rb;)
77#define PPC405_ERR77_SYNC stringify_in_c(sync;)
78#else
79#define PPC405_ERR77(ra,rb)
80#define PPC405_ERR77_SYNC
81#endif
Arnd Bergmann88ced032005-12-16 22:43:46 +010082#endif
David Gibson3ddfbcf2005-11-10 12:56:55 +110083
84#endif /* _ASM_POWERPC_ASM_COMPAT_H */