-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Blackfin arch: defines and provides entry points for certain user spa…
…ce functions at fixed addresses This patch defines (and provides) entry points for certain user space functions at fixed addresses. The Blackfin has no usable atomic instructions, but we can ensure that these code sequences appear atomic from a user space point of view by detecting when we're in the process of executing them during the interrupt handler return path. This allows much more efficient pthread lock implementations than the bfin_spinlock syscall we're currently using. Also provided is a small sys_rt_sigreturn stub which can be used by the signal handler setup code. The signal.c part will be committed separately. Signed-off-by: Bernd Schmidt <bernd.schmidt@analog.com> Signed-off-by: Bryan Wu <bryan.wu@analog.com>
- Loading branch information
Bernd Schmidt
authored and
Bryan Wu
committed
Jun 21, 2007
1 parent
0ba9e35
commit 7adfb58
Showing
9 changed files
with
261 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
/* | ||
* This file contains sequences of code that will be copied to a | ||
* fixed location, defined in <asm/atomic_seq.h>. The interrupt | ||
* handlers ensure that these sequences appear to be atomic when | ||
* executed from userspace. | ||
* These are aligned to 16 bytes, so that we have some space to replace | ||
* these sequences with something else (e.g. kernel traps if we ever do | ||
* BF561 SMP). | ||
*/ | ||
#include <linux/linkage.h> | ||
#include <asm/entry.h> | ||
#include <asm/unistd.h> | ||
|
||
.text | ||
ENTRY(_fixed_code_start) | ||
|
||
.align 16 | ||
ENTRY(_sigreturn_stub) | ||
P0 = __NR_rt_sigreturn; | ||
EXCPT 0; | ||
/* Speculative execution paranoia. */ | ||
0: JUMP.S 0b; | ||
ENDPROC (_sigreturn_stub) | ||
|
||
.align 16 | ||
/* | ||
* Atomic swap, 8 bit. | ||
* Inputs: P0: memory address to use | ||
* R1: value to store | ||
* Output: R0: old contents of the memory address, zero extended. | ||
*/ | ||
ENTRY(_atomic_xchg32) | ||
R0 = [P0]; | ||
[P0] = R1; | ||
rts; | ||
ENDPROC (_atomic_xchg32) | ||
|
||
.align 16 | ||
/* | ||
* Compare and swap, 32 bit. | ||
* Inputs: P0: memory address to use | ||
* R1: compare value | ||
* R2: new value to store | ||
* The new value is stored if the contents of the memory | ||
* address is equal to the compare value. | ||
* Output: R0: old contents of the memory address. | ||
*/ | ||
ENTRY(_atomic_cas32) | ||
R0 = [P0]; | ||
CC = R0 == R1; | ||
IF !CC JUMP 1f; | ||
[P0] = R2; | ||
1: | ||
rts; | ||
ENDPROC (_atomic_cas32) | ||
|
||
.align 16 | ||
/* | ||
* Atomic add, 32 bit. | ||
* Inputs: P0: memory address to use | ||
* R0: value to add | ||
* Outputs: R0: new contents of the memory address. | ||
* R1: previous contents of the memory address. | ||
*/ | ||
ENTRY(_atomic_add32) | ||
R1 = [P0]; | ||
R0 = R1 + R0; | ||
[P0] = R0; | ||
rts; | ||
ENDPROC (_atomic_add32) | ||
|
||
.align 16 | ||
/* | ||
* Atomic sub, 32 bit. | ||
* Inputs: P0: memory address to use | ||
* R0: value to subtract | ||
* Outputs: R0: new contents of the memory address. | ||
* R1: previous contents of the memory address. | ||
*/ | ||
ENTRY(_atomic_sub32) | ||
R1 = [P0]; | ||
R0 = R1 - R0; | ||
[P0] = R0; | ||
rts; | ||
ENDPROC (_atomic_sub32) | ||
|
||
.align 16 | ||
/* | ||
* Atomic ior, 32 bit. | ||
* Inputs: P0: memory address to use | ||
* R0: value to ior | ||
* Outputs: R0: new contents of the memory address. | ||
* R1: previous contents of the memory address. | ||
*/ | ||
ENTRY(_atomic_ior32) | ||
R1 = [P0]; | ||
R0 = R1 | R0; | ||
[P0] = R0; | ||
rts; | ||
ENDPROC (_atomic_ior32) | ||
|
||
.align 16 | ||
/* | ||
* Atomic ior, 32 bit. | ||
* Inputs: P0: memory address to use | ||
* R0: value to ior | ||
* Outputs: R0: new contents of the memory address. | ||
* R1: previous contents of the memory address. | ||
*/ | ||
ENTRY(_atomic_and32) | ||
R1 = [P0]; | ||
R0 = R1 & R0; | ||
[P0] = R0; | ||
rts; | ||
ENDPROC (_atomic_ior32) | ||
|
||
.align 16 | ||
/* | ||
* Atomic ior, 32 bit. | ||
* Inputs: P0: memory address to use | ||
* R0: value to ior | ||
* Outputs: R0: new contents of the memory address. | ||
* R1: previous contents of the memory address. | ||
*/ | ||
ENTRY(_atomic_xor32) | ||
R1 = [P0]; | ||
R0 = R1 ^ R0; | ||
[P0] = R0; | ||
rts; | ||
ENDPROC (_atomic_ior32) | ||
|
||
ENTRY(_fixed_code_end) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
include include/asm-generic/Kbuild.asm | ||
|
||
header-y += fixed_code.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* This file defines the fixed addresses where userspace programs can find | ||
atomic code sequences. */ | ||
|
||
#define FIXED_CODE_START 0x400 | ||
|
||
#define SIGRETURN_STUB 0x400 | ||
|
||
#define ATOMIC_SEQS_START 0x410 | ||
|
||
#define ATOMIC_XCHG32 0x410 | ||
#define ATOMIC_CAS32 0x420 | ||
#define ATOMIC_ADD32 0x430 | ||
#define ATOMIC_SUB32 0x440 | ||
#define ATOMIC_IOR32 0x450 | ||
#define ATOMIC_AND32 0x460 | ||
#define ATOMIC_XOR32 0x470 | ||
|
||
#define ATOMIC_SEQS_END 0x480 | ||
|
||
#define FIXED_CODE_END 0x480 |