aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin/mach-common
diff options
context:
space:
mode:
authorMike Frysinger <michael.frysinger@analog.com>2007-07-11 23:50:43 -0400
committerBryan Wu <bryan.wu@analog.com>2007-07-11 23:50:43 -0400
commit9401e618c8f70920f34893946239e24d40a3519a (patch)
treeb2b057cbf5acdd7c5a7b300977099ea297a24c83 /arch/blackfin/mach-common
parentc9e27ece79f6170fd1cd1a40c5de5d93456606e7 (diff)
Blackfin arch: scrub dead code
we converted to using a system call for userspace spinlocks rather than a dedicated exception long ago Signed-off-by: Mike Frysinger <michael.frysinger@analog.com> Signed-off-by: Bryan Wu <bryan.wu@analog.com>
Diffstat (limited to 'arch/blackfin/mach-common')
-rw-r--r--arch/blackfin/mach-common/entry.S37
1 files changed, 3 insertions, 34 deletions
diff --git a/arch/blackfin/mach-common/entry.S b/arch/blackfin/mach-common/entry.S
index fa4e6336317d..d61bba98fb54 100644
--- a/arch/blackfin/mach-common/entry.S
+++ b/arch/blackfin/mach-common/entry.S
@@ -97,17 +97,6 @@ ENTRY(_ex_icplb)
97 rtx; 97 rtx;
98ENDPROC(_ex_icplb) 98ENDPROC(_ex_icplb)
99 99
100ENTRY(_ex_spinlock)
101 /* Transform this into a syscall - twiddle the syscall vector. */
102 p5.l = lo(EVT15);
103 p5.h = hi(EVT15);
104 r7.l = _spinlock_bh;
105 r7.h = _spinlock_bh;
106 [p5] = r7;
107 csync;
108 /* Fall through. */
109ENDPROC(_ex_spinlock)
110
111ENTRY(_ex_syscall) 100ENTRY(_ex_syscall)
112 DEBUG_START_HWTRACE(p5, r7) 101 DEBUG_START_HWTRACE(p5, r7)
113 (R7:6,P5:4) = [sp++]; 102 (R7:6,P5:4) = [sp++];
@@ -117,26 +106,6 @@ ENTRY(_ex_syscall)
117 rtx 106 rtx
118ENDPROC(_ex_syscall) 107ENDPROC(_ex_syscall)
119 108
120ENTRY(_spinlock_bh)
121 SAVE_ALL_SYS
122 /* To end up here, vector 15 was changed - so we have to change it
123 * back.
124 */
125 p0.l = lo(EVT15);
126 p0.h = hi(EVT15);
127 p1.l = _evt_system_call;
128 p1.h = _evt_system_call;
129 [p0] = p1;
130 csync;
131 r0 = [sp + PT_R0];
132 sp += -12;
133 call _sys_bfin_spinlock;
134 sp += 12;
135 [SP + PT_R0] = R0;
136 RESTORE_ALL_SYS
137 rti;
138ENDPROC(_spinlock_bh)
139
140ENTRY(_ex_soft_bp) 109ENTRY(_ex_soft_bp)
141 r7 = retx; 110 r7 = retx;
142 r7 += -2; 111 r7 += -2;
@@ -775,14 +744,14 @@ ENDPROC(_init_exception_buff)
775ALIGN 744ALIGN
776_extable: 745_extable:
777 /* entry for each EXCAUSE[5:0] 746 /* entry for each EXCAUSE[5:0]
778 * This table bmust be in sync with the table in ./kernel/traps.c 747 * This table must be in sync with the table in ./kernel/traps.c
779 * EXCPT instruction can provide 4 bits of EXCAUSE, allowing 16 to be user defined 748 * EXCPT instruction can provide 4 bits of EXCAUSE, allowing 16 to be user defined
780 */ 749 */
781 .long _ex_syscall; /* 0x00 - User Defined - Linux Syscall */ 750 .long _ex_syscall; /* 0x00 - User Defined - Linux Syscall */
782 .long _ex_soft_bp /* 0x01 - User Defined - Software breakpoint */ 751 .long _ex_soft_bp /* 0x01 - User Defined - Software breakpoint */
783 .long _ex_trap_c /* 0x02 - User Defined */ 752 .long _ex_trap_c /* 0x02 - User Defined */
784 .long _ex_trap_c /* 0x03 - User Defined - Atomic test and set service */ 753 .long _ex_trap_c /* 0x03 - User Defined - userspace stack overflow */
785 .long _ex_spinlock /* 0x04 - User Defined */ 754 .long _ex_trap_c /* 0x04 - User Defined */
786 .long _ex_trap_c /* 0x05 - User Defined */ 755 .long _ex_trap_c /* 0x05 - User Defined */
787 .long _ex_trap_c /* 0x06 - User Defined */ 756 .long _ex_trap_c /* 0x06 - User Defined */
788 .long _ex_trap_c /* 0x07 - User Defined */ 757 .long _ex_trap_c /* 0x07 - User Defined */