2007-10-18 00:04:38 +08:00
|
|
|
#ifdef __ASSEMBLY__
|
|
|
|
|
2009-11-27 23:06:16 +08:00
|
|
|
#include <asm/asm.h>
|
2007-10-18 00:04:38 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
.macro LOCK_PREFIX
|
|
|
|
1: lock
|
|
|
|
.section .smp_locks,"a"
|
2010-04-21 23:08:14 +08:00
|
|
|
.balign 4
|
|
|
|
.long 1b - .
|
2007-10-18 00:04:38 +08:00
|
|
|
.previous
|
|
|
|
.endm
|
|
|
|
#else
|
|
|
|
.macro LOCK_PREFIX
|
|
|
|
.endm
|
|
|
|
#endif
|
|
|
|
|
2011-05-18 06:29:13 +08:00
|
|
|
.macro altinstruction_entry orig alt feature orig_len alt_len
|
2011-07-13 21:24:10 +08:00
|
|
|
.long \orig - .
|
|
|
|
.long \alt - .
|
2011-05-18 06:29:13 +08:00
|
|
|
.word \feature
|
|
|
|
.byte \orig_len
|
|
|
|
.byte \alt_len
|
|
|
|
.endm
|
|
|
|
|
2007-10-18 00:04:38 +08:00
|
|
|
#endif /* __ASSEMBLY__ */
|