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