diff options
| author | Mike Frysinger <vapier.adi@gmail.com> | 2008-08-14 02:36:15 -0400 |
|---|---|---|
| committer | Bryan Wu <cooloney@kernel.org> | 2008-08-14 02:36:15 -0400 |
| commit | 3c012eebf8869dd3118c21a73a2f8cc9e9c694ea (patch) | |
| tree | afa0646e32c23ac864ef9d42650d46e5313c1245 /include | |
| parent | 9216bbc83826b77da9f2f396578c9d32b81e0d0b (diff) | |
Blackfin arch: move fixed code defines into fixed_code.h as very few things actually need to know these details
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/asm-blackfin/Kbuild | 2 | ||||
| -rw-r--r-- | include/asm-blackfin/bfin-global.h | 13 | ||||
| -rw-r--r-- | include/asm-blackfin/fixed_code.h | 24 |
3 files changed, 25 insertions, 14 deletions
diff --git a/include/asm-blackfin/Kbuild b/include/asm-blackfin/Kbuild index 71f8fe783258..606ecfdcc962 100644 --- a/include/asm-blackfin/Kbuild +++ b/include/asm-blackfin/Kbuild | |||
| @@ -1,3 +1,3 @@ | |||
| 1 | include include/asm-generic/Kbuild.asm | 1 | include include/asm-generic/Kbuild.asm |
| 2 | 2 | ||
| 3 | header-y += fixed_code.h | 3 | unifdef-y += fixed_code.h |
diff --git a/include/asm-blackfin/bfin-global.h b/include/asm-blackfin/bfin-global.h index 8918cea3116d..e61ffc0162b8 100644 --- a/include/asm-blackfin/bfin-global.h +++ b/include/asm-blackfin/bfin-global.h | |||
| @@ -70,19 +70,6 @@ extern void evt14_softirq(void); | |||
| 70 | extern asmlinkage void asm_do_IRQ(unsigned int irq, struct pt_regs *regs); | 70 | extern asmlinkage void asm_do_IRQ(unsigned int irq, struct pt_regs *regs); |
| 71 | extern int bfin_internal_set_wake(unsigned int irq, unsigned int state); | 71 | extern int bfin_internal_set_wake(unsigned int irq, unsigned int state); |
| 72 | 72 | ||
| 73 | extern asmlinkage void finish_atomic_sections (struct pt_regs *regs); | ||
| 74 | extern char fixed_code_start; | ||
| 75 | extern char fixed_code_end; | ||
| 76 | extern int atomic_xchg32(void); | ||
| 77 | extern int atomic_cas32(void); | ||
| 78 | extern int atomic_add32(void); | ||
| 79 | extern int atomic_sub32(void); | ||
| 80 | extern int atomic_ior32(void); | ||
| 81 | extern int atomic_and32(void); | ||
| 82 | extern int atomic_xor32(void); | ||
| 83 | extern void safe_user_instruction(void); | ||
| 84 | extern void sigreturn_stub(void); | ||
| 85 | |||
| 86 | extern void *l1_data_A_sram_alloc(size_t); | 73 | extern void *l1_data_A_sram_alloc(size_t); |
| 87 | extern void *l1_data_B_sram_alloc(size_t); | 74 | extern void *l1_data_B_sram_alloc(size_t); |
| 88 | extern void *l1_inst_sram_alloc(size_t); | 75 | extern void *l1_inst_sram_alloc(size_t); |
diff --git a/include/asm-blackfin/fixed_code.h b/include/asm-blackfin/fixed_code.h index 37db66c7030d..32c4d495d847 100644 --- a/include/asm-blackfin/fixed_code.h +++ b/include/asm-blackfin/fixed_code.h | |||
| @@ -1,6 +1,28 @@ | |||
| 1 | /* This file defines the fixed addresses where userspace programs can find | 1 | /* This file defines the fixed addresses where userspace programs can find |
| 2 | atomic code sequences. */ | 2 | atomic code sequences. */ |
| 3 | 3 | ||
| 4 | #ifndef __BFIN_ASM_FIXED_CODE_H__ | ||
| 5 | #define __BFIN_ASM_FIXED_CODE_H__ | ||
| 6 | |||
| 7 | #ifdef __KERNEL__ | ||
| 8 | #ifndef __ASSEMBLY__ | ||
| 9 | #include <linux/linkage.h> | ||
| 10 | #include <linux/ptrace.h> | ||
| 11 | extern asmlinkage void finish_atomic_sections(struct pt_regs *regs); | ||
| 12 | extern char fixed_code_start; | ||
| 13 | extern char fixed_code_end; | ||
| 14 | extern int atomic_xchg32(void); | ||
| 15 | extern int atomic_cas32(void); | ||
| 16 | extern int atomic_add32(void); | ||
| 17 | extern int atomic_sub32(void); | ||
| 18 | extern int atomic_ior32(void); | ||
| 19 | extern int atomic_and32(void); | ||
| 20 | extern int atomic_xor32(void); | ||
| 21 | extern void safe_user_instruction(void); | ||
| 22 | extern void sigreturn_stub(void); | ||
| 23 | #endif | ||
| 24 | #endif | ||
| 25 | |||
| 4 | #define FIXED_CODE_START 0x400 | 26 | #define FIXED_CODE_START 0x400 |
| 5 | 27 | ||
| 6 | #define SIGRETURN_STUB 0x400 | 28 | #define SIGRETURN_STUB 0x400 |
| @@ -20,3 +42,5 @@ | |||
| 20 | #define SAFE_USER_INSTRUCTION 0x480 | 42 | #define SAFE_USER_INSTRUCTION 0x480 |
| 21 | 43 | ||
| 22 | #define FIXED_CODE_END 0x490 | 44 | #define FIXED_CODE_END 0x490 |
| 45 | |||
| 46 | #endif | ||
