2005-09-22 19:20:04 +00:00
|
|
|
#ifndef _ASM_POWERPC_SYNCH_H
|
|
|
|
#define _ASM_POWERPC_SYNCH_H
|
2005-12-16 21:43:46 +00:00
|
|
|
#ifdef __KERNEL__
|
2005-09-22 19:20:04 +00:00
|
|
|
|
2006-01-13 04:37:17 +00:00
|
|
|
#include <linux/stringify.h>
|
2008-07-01 15:16:40 +00:00
|
|
|
#include <asm/feature-fixups.h>
|
2006-01-13 04:37:17 +00:00
|
|
|
|
2008-11-11 17:50:48 +00:00
|
|
|
#if defined(__powerpc64__) || defined(CONFIG_PPC_E500MC)
|
|
|
|
#define __SUBARCH_HAS_LWSYNC
|
|
|
|
#endif
|
|
|
|
|
2008-07-01 15:16:40 +00:00
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
extern unsigned int __start___lwsync_fixup, __stop___lwsync_fixup;
|
|
|
|
extern void do_lwsync_fixups(unsigned long value, void *fixup_start,
|
|
|
|
void *fixup_end);
|
|
|
|
|
|
|
|
static inline void eieio(void)
|
|
|
|
{
|
|
|
|
__asm__ __volatile__ ("eieio" : : : "memory");
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void isync(void)
|
|
|
|
{
|
|
|
|
__asm__ __volatile__ ("isync" : : : "memory");
|
|
|
|
}
|
|
|
|
#endif /* __ASSEMBLY__ */
|
2005-09-22 19:20:04 +00:00
|
|
|
|
2008-07-01 15:16:40 +00:00
|
|
|
#if defined(__powerpc64__)
|
2005-09-22 19:20:04 +00:00
|
|
|
# define LWSYNC lwsync
|
2008-07-01 15:16:40 +00:00
|
|
|
#elif defined(CONFIG_E500)
|
|
|
|
# define LWSYNC \
|
|
|
|
START_LWSYNC_SECTION(96); \
|
|
|
|
sync; \
|
|
|
|
MAKE_LWSYNC_SECTION_ENTRY(96, __lwsync_fixup);
|
2005-09-22 19:20:04 +00:00
|
|
|
#else
|
|
|
|
# define LWSYNC sync
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
2010-02-10 01:04:06 +00:00
|
|
|
#define PPC_ACQUIRE_BARRIER "\n\tisync\n"
|
|
|
|
#define PPC_RELEASE_BARRIER stringify_in_c(LWSYNC) "\n"
|
2005-09-22 19:20:04 +00:00
|
|
|
#else
|
2010-02-10 01:04:06 +00:00
|
|
|
#define PPC_ACQUIRE_BARRIER
|
|
|
|
#define PPC_RELEASE_BARRIER
|
2005-09-22 19:20:04 +00:00
|
|
|
#endif
|
|
|
|
|
2005-12-16 21:43:46 +00:00
|
|
|
#endif /* __KERNEL__ */
|
2005-09-22 19:20:04 +00:00
|
|
|
#endif /* _ASM_POWERPC_SYNCH_H */
|