2 * File: arch/blackfin/mach-common/entry.S
4 * Author: Linus Torvalds
7 * Description: contains the system-call and fault low-level handling routines.
8 * This also contains the timer-interrupt handler, as well as all
9 * interrupts and faults that can result in a task-switch.
12 * Copyright 2004-2006 Analog Devices Inc.
14 * Bugs: Enter bugs at http://blackfin.uclinux.org/
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, see the file COPYING, or write
28 * to the Free Software Foundation, Inc.,
29 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
32 /* NOTE: This code handles signal-recognition, which happens every time
33 * after a timer-interrupt and after each system call.
36 #include <linux/init.h>
37 #include <linux/linkage.h>
38 #include <linux/unistd.h>
39 #include <linux/threads.h>
40 #include <asm/blackfin.h>
41 #include <asm/errno.h>
42 #include <asm/fixed_code.h>
43 #include <asm/thread_info.h> /* TIF_NEED_RESCHED */
44 #include <asm/asm-offsets.h>
45 #include <asm/trace.h>
47 #include <asm/context.S>
49 #if defined(CONFIG_BFIN_SCRATCH_REG_RETN)
50 # define EX_SCRATCH_REG RETN
51 #elif defined(CONFIG_BFIN_SCRATCH_REG_RETE)
52 # define EX_SCRATCH_REG RETE
54 # define EX_SCRATCH_REG CYCLES
57 #ifdef CONFIG_EXCPT_IRQ_SYSC_L1
63 /* Slightly simplified and streamlined entry point for CPLB misses.
64 * This one does not lower the level to IRQ5, and thus can be used to
65 * patch up CPLB misses on the kernel stack.
68 #define _ex_dviol _ex_workaround_261
69 #define _ex_dmiss _ex_workaround_261
70 #define _ex_dmult _ex_workaround_261
72 ENTRY(_ex_workaround_261)
74 * Work around an anomaly: if we see a new DCPLB fault, return
75 * without doing anything. Then, if we get the same fault again,
78 P4 = R7; /* Store EXCAUSE */
81 r7 = [p5 + PDA_LFRETX];
83 [p5 + PDA_LFRETX] = r6;
85 if !cc jump _bfin_return_from_exception;
88 R6 = 0x26; /* Data CPLB Miss */
90 if cc jump _ex_dcplb_miss (BP);
91 R6 = 0x23; /* Data CPLB Miss */
93 if cc jump _ex_dcplb_viol (BP);
94 /* Handle 0x23 Data CPLB Protection Violation
95 * and Data CPLB Multiple Hits - Linux Trap Zero
98 ENDPROC(_ex_workaround_261)
102 #define _ex_dviol _ex_dcplb_viol
104 #define _ex_dviol _ex_trap_c
106 #define _ex_dmiss _ex_dcplb_miss
107 #define _ex_dmult _ex_trap_c
111 ENTRY(_ex_dcplb_viol)
112 ENTRY(_ex_dcplb_miss)
113 ENTRY(_ex_icplb_miss)
114 (R7:6,P5:4) = [sp++];
115 /* We leave the previously pushed ASTAT on the stack. */
118 /* We must load R1 here, _before_ DEBUG_HWTRACE_SAVE, since that
119 * will change the stack pointer. */
123 DEBUG_HWTRACE_SAVE(p5, r7)
129 IF !CC JUMP _handle_bad_cplb;
131 #ifdef CONFIG_DEBUG_DOUBLEFAULT
132 /* While we were processing this, did we double fault? */
133 r7 = SEQSTAT; /* reason code is in bit 5:0 */
134 r6.l = lo(SEQSTAT_EXCAUSE);
135 r6.h = hi(SEQSTAT_EXCAUSE);
139 if CC JUMP _double_fault;
142 DEBUG_HWTRACE_RESTORE(p5, r7)
147 ENDPROC(_ex_icplb_miss)
150 raise 15; /* invoked by TRAP #0, for sys call */
151 jump.s _bfin_return_from_exception;
154 ENTRY(_ex_single_step)
155 /* If we just returned from an interrupt, the single step event is
156 for the RTI instruction. */
160 if cc jump _bfin_return_from_exception;
163 /* Don't do single step in hardware exception handler */
168 if cc jump _bfin_return_from_exception;
170 if cc jump _bfin_return_from_exception;
172 /* skip single step if current interrupt priority is higher than
173 * that of the first instruction, from which gdb starts single step */
176 .Lfind_priority_start:
178 if cc jump .Lfind_priority_done;
182 if cc jump .Lfind_priority_done;
183 jump.s .Lfind_priority_start;
184 .Lfind_priority_done:
185 p4.l = _kgdb_single_step;
186 p4.h = _kgdb_single_step;
189 if cc jump .Ldo_single_step;
195 /* If we were in user mode, do the single step normally. */
205 /* Single stepping only a single instruction, so clear the trace
214 * We were in an interrupt handler. By convention, all of them save
215 * SYSCFG with their first instruction, so by checking whether our
216 * RETX points at the entry point, we can determine whether to allow
217 * a single step, or whether to clear SYSCFG.
219 * First, find out the interrupt level and the event vector for it.
229 /* What we actually do is test for the _second_ instruction in the
230 * IRQ handler. That way, if there are insns following the restore
231 * of SYSCFG after leaving the handler, we will not turn off SYSCFG
238 if !cc jump _bfin_return_from_exception;
244 /* Fall through to _bfin_return_from_exception. */
245 ENDPROC(_ex_single_step)
247 ENTRY(_bfin_return_from_exception)
255 #ifdef CONFIG_DEBUG_DOUBLEFAULT
256 /* While we were processing the current exception,
257 * did we cause another, and double fault?
259 r7 = SEQSTAT; /* reason code is in bit 5:0 */
260 r6.l = lo(SEQSTAT_EXCAUSE);
261 r6.h = hi(SEQSTAT_EXCAUSE);
265 if CC JUMP _double_fault;
267 /* Did we cause a HW error? */
271 r7 = 0x20; /* Did I just cause anther HW error? */
274 if CC JUMP _double_fault;
277 (R7:6,P5:4) = [sp++];
281 ENDPROC(_bfin_return_from_exception)
283 ENTRY(_handle_bad_cplb)
284 DEBUG_HWTRACE_RESTORE(p5, r7)
285 /* To get here, we just tried and failed to change a CPLB
286 * so, handle things in trap_c (C code), by lowering to
287 * IRQ5, just like we normally do. Since this is not a
288 * "normal" return path, we have a do alot of stuff to
289 * the stack to get ready so, we can fall through - we
290 * need to make a CPLB exception look like a normal exception
293 /* ASTAT is still on the stack, where it is needed. */
294 [--sp] = (R7:6,P5:4);
296 ENTRY(_ex_replaceable)
300 /* Make sure we are not in a double fault */
305 if CC jump _double_fault;
307 /* Call C code (trap_c) to handle the exception, which most
308 * likely involves sending a signal to the current process.
309 * To avoid double faults, lower our priority to IRQ5 first.
311 P5.h = _exception_to_level5;
312 P5.l = _exception_to_level5;
319 #ifndef CONFIG_DEBUG_DOUBLEFAULT
322 * Save these registers, as they are only valid in exception context
323 * (where we are now - as soon as we defer to IRQ5, they can change)
324 * DCPLB_STATUS and ICPLB_STATUS are also only valid in EVT3,
325 * but they are not very interesting, so don't save them
328 p4.l = lo(DCPLB_FAULT_ADDR);
329 p4.h = hi(DCPLB_FAULT_ADDR);
331 [p5 + PDA_DCPLB] = r7;
333 p4.l = lo(ICPLB_FAULT_ADDR);
334 p4.h = hi(ICPLB_FAULT_ADDR);
336 [p5 + PDA_ICPLB] = r6;
339 [p5 + PDA_RETX] = r6;
342 [p5 + PDA_SYSCFG] = r6;
346 /* Disable all interrupts, but make sure level 5 is enabled so
347 * we can switch to that level. Save the old mask. */
349 [p5 + PDA_EXIMASK] = r6;
351 p4.l = lo(SAFE_USER_INSTRUCTION);
352 p4.h = hi(SAFE_USER_INSTRUCTION);
359 jump.s _bfin_return_from_exception;
362 /* We just realized we got an exception, while we were processing a different
363 * exception. This is a unrecoverable event, so crash.
364 * Note: this cannot be ENTRY() as we jump here with "if cc jump" ...
367 /* Turn caches & protection off, to ensure we don't get any more
371 P4.L = LO(IMEM_CONTROL);
372 P4.H = HI(IMEM_CONTROL);
374 R5 = [P4]; /* Control Register*/
375 BITCLR(R5,ENICPLB_P);
376 SSYNC; /* SSYNC required before writing to IMEM_CONTROL. */
381 P4.L = LO(DMEM_CONTROL);
382 P4.H = HI(DMEM_CONTROL);
384 BITCLR(R5,ENDCPLB_P);
385 SSYNC; /* SSYNC required before writing to DMEM_CONTROL. */
390 /* Fix up the stack */
391 (R7:6,P5:4) = [sp++];
395 /* We should be out of the exception stack, and back down into
396 * kernel or user space stack
400 /* The dumping functions expect the return address in the RETI
405 r0 = sp; /* stack frame pt_regs pointer argument ==> r0 */
407 call _double_fault_c;
409 .L_double_fault_panic:
410 JUMP .L_double_fault_panic
412 ENDPROC(_double_fault)
414 ENTRY(_exception_to_level5)
417 GET_PDA(p4, r7); /* Fetch current PDA */
418 r6 = [p4 + PDA_RETX];
421 r6 = [p4 + PDA_SYSCFG];
422 [sp + PT_SYSCFG] = r6;
424 /* Restore interrupt mask. We haven't pushed RETI, so this
425 * doesn't enable interrupts until we return from this handler. */
426 r6 = [p4 + PDA_EXIMASK];
429 /* Restore the hardware error vector. */
440 r0 = [p2]; /* Read current IPEND */
441 [sp + PT_IPEND] = r0; /* Store IPEND */
443 r0 = sp; /* stack frame pt_regs pointer argument ==> r0 */
448 #ifdef CONFIG_DEBUG_DOUBLEFAULT
453 r1 = 0x20; /* Did I just cause anther HW error? */
456 if CC JUMP _double_fault;
459 call _ret_from_exception;
462 ENDPROC(_exception_to_level5)
464 ENTRY(_trap) /* Exception: 4th entry into system event table(supervisor mode)*/
465 /* Since the kernel stack can be anywhere, it's not guaranteed to be
466 * covered by a CPLB. Switch to an exception stack; use RETN as a
467 * scratch register (for want of a better option).
471 sp = [sp + PDA_EXSTACK]
472 /* Try to deal with syscalls quickly. */
474 [--sp] = (R7:6,P5:4);
476 #if ANOMALY_05000283 || ANOMALY_05000315
485 #ifdef CONFIG_DEBUG_DOUBLEFAULT
487 * Save these registers, as they are only valid in exception context
488 * (where we are now - as soon as we defer to IRQ5, they can change)
489 * DCPLB_STATUS and ICPLB_STATUS are also only valid in EVT3,
490 * but they are not very interesting, so don't save them
494 p4.l = lo(DCPLB_FAULT_ADDR);
495 p4.h = hi(DCPLB_FAULT_ADDR);
497 [p5 + PDA_DCPLB] = r7;
499 p4.l = lo(ICPLB_FAULT_ADDR);
500 p4.h = hi(ICPLB_FAULT_ADDR);
502 [p5 + PDA_ICPLB] = r7;
505 [p5 + PDA_RETX] = r6;
507 r7 = SEQSTAT; /* reason code is in bit 5:0 */
508 [p5 + PDA_SEQSTAT] = r7;
510 r7 = SEQSTAT; /* reason code is in bit 5:0 */
512 r6.l = lo(SEQSTAT_EXCAUSE);
513 r6.h = hi(SEQSTAT_EXCAUSE);
523 r7 = -ENOSYS; /* signextending enough */
524 [sp + PT_R0] = r7; /* return value from system call */
525 jump .Lsyscall_really_exit;
528 ENTRY(_kernel_execve)
531 r3 = SIZEOF_PTREGS / 4;
537 if !cc jump .Lclear_regs (bp);
545 if ! cc jump .Lexecve_failed;
546 /* Success. Copy our temporary pt_regs to the top of the kernel
547 * stack and do a normal exception return.
550 r0 = (-KERNEL_STACK_SIZE) (x);
554 r0 = KERNEL_STACK_SIZE - 4 (z);
560 r3 = SIZEOF_PTREGS / 4;
566 if ! cc jump .Lcopy_regs (bp);
568 r0 = (KERNEL_STACK_SIZE - SIZEOF_PTREGS) (z);
573 [SP + PT_SYSCFG] = r0;
574 [p3 + (TASK_THREAD + THREAD_KSP)] = sp;
581 ENDPROC(_kernel_execve)
589 [sp + PT_IPEND] = r0;
591 /* Store RETS for now */
593 [sp + PT_RESERVED] = r0;
594 /* Set the stack for the current process */
596 r6.l = lo(ALIGN_PAGE_MASK);
597 r6.h = hi(ALIGN_PAGE_MASK);
598 r7 = r7 & r6; /* thread_info */
602 [p2+(TASK_THREAD+THREAD_KSP)] = sp;
606 call ___ipipe_syscall_root;
609 if cc jump .Lsyscall_really_exit;
611 if cc jump .Lresume_userspace;
614 p0 = [sp + PT_ORIG_P0];
615 #endif /* CONFIG_IPIPE */
617 /* Check the System Call */
619 /* System call number is passed in P0 */
622 if ! cc jump .Lbadsys;
624 /* are we tracing syscalls?*/
626 r6.l = lo(ALIGN_PAGE_MASK);
627 r6.h = hi(ALIGN_PAGE_MASK);
631 CC = BITTST(r7,TIF_SYSCALL_TRACE);
632 if CC JUMP _sys_trace;
634 /* Execute the appropriate system call */
637 p5.l = _sys_call_table;
638 p5.h = _sys_call_table;
655 r4.l = lo(ALIGN_PAGE_MASK);
656 r4.h = hi(ALIGN_PAGE_MASK);
657 r7 = r7 & r4; /* thread_info->flags */
659 .Lresume_userspace_1:
660 /* Disable interrupts. */
664 r7 = [p5 + TI_FLAGS];
665 r4.l = lo(_TIF_WORK_MASK);
666 r4.h = hi(_TIF_WORK_MASK);
671 cc = BITTST(r7, TIF_IRQ_SYNC);
672 if !cc jump .Lsyscall_no_irqsync;
676 call ___ipipe_sync_root;
678 jump .Lresume_userspace_1;
679 .Lsyscall_no_irqsync:
681 cc = BITTST(r7, TIF_NEED_RESCHED);
682 if !cc jump .Lsyscall_sigpending;
684 /* Reenable interrupts. */
692 jump .Lresume_userspace_1;
694 .Lsyscall_sigpending:
695 cc = BITTST(r7, TIF_RESTORE_SIGMASK);
696 if cc jump .Lsyscall_do_signals;
697 cc = BITTST(r7, TIF_SIGPENDING);
698 if !cc jump .Lsyscall_really_exit;
699 .Lsyscall_do_signals:
700 /* Reenable interrupts. */
709 .Lsyscall_really_exit:
710 r5 = [sp + PT_RESERVED];
715 #endif /* CONFIG_IPIPE */
717 ENDPROC(_system_call)
719 /* Do not mark as ENTRY() to avoid error in assembler ...
720 * this symbol need not be global anyways, so ...
725 /* Execute the appropriate system call */
728 p5.l = _sys_call_table;
729 p5.h = _sys_call_table;
748 jump .Lresume_userspace;
753 * Beware - when entering resume, prev (the current task) is
754 * in r0, next (the new task) is in r1.
760 [--sp] = (r7:4, p5:3);
764 [p0+(TASK_THREAD+THREAD_USP)] = p2;
766 /* save current kernel stack pointer */
767 [p0+(TASK_THREAD+THREAD_KSP)] = sp;
769 /* save program counter */
770 r1.l = _new_old_task;
771 r1.h = _new_old_task;
772 [p0+(TASK_THREAD+THREAD_PC)] = r1;
774 /* restore the kernel stack pointer */
775 sp = [p1+(TASK_THREAD+THREAD_KSP)];
777 /* restore user stack pointer */
778 p0 = [p1+(TASK_THREAD+THREAD_USP)];
782 p0 = [p1+(TASK_THREAD+THREAD_PC)];
786 * Following code actually lands up in a new (old) task.
790 (r7:4, p5:3) = [sp++];
795 * When we come out of resume, r0 carries "old" task, becuase we are
801 ENTRY(_ret_from_exception)
805 call ___ipipe_check_root
809 if cc jump 4f; /* not on behalf of Linux, get out */
810 #endif /* CONFIG_IPIPE */
816 [sp + PT_IPEND] = r0;
822 if !cc jump 4f; /* if not return to user mode, get out */
824 /* Make sure any pending system call or deferred exception
825 * return in ILAT for this process to get executed, otherwise
826 * in case context switch happens, system call of
827 * first process (i.e in ILAT) will be carried
828 * forward to the switched process
834 r1 = (EVT_IVG14 | EVT_IVG15) (z);
839 /* Set the stack for the current process */
841 r4.l = lo(ALIGN_PAGE_MASK);
842 r4.h = hi(ALIGN_PAGE_MASK);
843 r7 = r7 & r4; /* thread_info->flags */
845 r7 = [p5 + TI_FLAGS];
846 r4.l = lo(_TIF_WORK_MASK);
847 r4.h = hi(_TIF_WORK_MASK);
854 p1.l = _schedule_and_signal;
855 p1.h = _schedule_and_signal;
858 raise 15; /* raise evt14 to do signal or reschedule */
865 ENDPROC(_ret_from_exception)
870 [--sp] = reti; /* Reenable interrupts */
872 jump.l ___ipipe_sync_root
874 _resume_kernel_from_int:
875 r0.l = _sync_root_irqs
876 r0.h = _sync_root_irqs
878 [--sp] = ( r7:4, p5:3 );
880 call ___ipipe_call_irqtail
882 ( r7:4, p5:3 ) = [sp++];
886 #define _resume_kernel_from_int 2f
889 ENTRY(_return_from_int)
890 /* If someone else already raised IRQ 15, do nothing. */
895 cc = bittst (r0, EVT_IVG15_P);
898 /* if not return to user mode, get out */
910 if !cc jump _resume_kernel_from_int;
912 /* Lower the interrupt level to 15. */
915 p1.l = _schedule_and_signal_from_int;
916 p1.h = _schedule_and_signal_from_int;
920 r0.l = lo(SAFE_USER_INSTRUCTION);
921 r0.h = hi(SAFE_USER_INSTRUCTION);
926 raise 15; /* raise evt15 to do signal or reschedule */
930 ENDPROC(_return_from_int)
932 ENTRY(_lower_to_irq14)
934 r0.l = lo(SAFE_USER_INSTRUCTION);
935 r0.h = hi(SAFE_USER_INSTRUCTION);
942 ENTRY(_evt14_softirq)
943 #ifdef CONFIG_DEBUG_HWERR
953 _schedule_and_signal_from_int:
954 /* To end up here, vector 15 was changed - so we have to change it
959 p1.l = _evt_system_call;
960 p1.h = _evt_system_call;
964 /* Set orig_p0 to -1 to indicate this isn't the end of a syscall. */
966 [sp + PT_ORIG_P0] = r0;
969 [sp + PT_RESERVED] = p1;
972 GET_PDA(p0, r0); /* Fetch current PDA (can't migrate to other CPU here) */
973 r0 = [p0 + PDA_IRQFLAGS];
975 p0.l = _bfin_irq_flags;
976 p0.h = _bfin_irq_flags;
983 call _finish_atomic_sections;
985 jump.s .Lresume_userspace;
987 _schedule_and_signal:
989 /* To end up here, vector 15 was changed - so we have to change it
994 p1.l = _evt_system_call;
995 p1.h = _evt_system_call;
1000 [sp + PT_RESERVED] = P0;
1001 call .Lresume_userspace;
1005 ENDPROC(_lower_to_irq14)
1007 /* We handle this 100% in exception space - to reduce overhead
1008 * Only potiential problem is if the software buffer gets swapped out of the
1009 * CPLB table - then double fault. - so we don't let this happen in other places
1011 #ifdef CONFIG_DEBUG_BFIN_HWTRACE_EXPAND
1012 ENTRY(_ex_trace_buff_full)
1018 P5.L = _trace_buff_offset;
1019 P5.H = _trace_buff_offset;
1020 P3 = [P5]; /* trace_buff_offset */
1021 P5.L = lo(TBUFSTAT);
1022 P5.H = hi(TBUFSTAT);
1024 R7 <<= 1; /* double, since we need to read twice */
1026 R7 <<= 2; /* need to shift over again,
1027 * to get the number of bytes */
1030 R6 = ((1 << CONFIG_DEBUG_BFIN_HWTRACE_EXPAND_LEN)*1024) - 1;
1037 P2.L = _trace_buff_offset;
1038 P2.H = _trace_buff_offset;
1041 P2.L = _software_trace_buff;
1042 P2.H = _software_trace_buff;
1044 LSETUP (.Lstart, .Lend) LC0;
1046 R7 = [P5]; /* read TBUF */
1060 jump _bfin_return_from_exception;
1061 ENDPROC(_ex_trace_buff_full)
1063 #if CONFIG_DEBUG_BFIN_HWTRACE_EXPAND_LEN == 4
1067 #endif /* CONFIG_DEBUG_BFIN_HWTRACE_EXPAND_LEN */
1068 ENTRY(_trace_buff_offset)
1071 ENTRY(_software_trace_buff)
1072 .rept ((1 << CONFIG_DEBUG_BFIN_HWTRACE_EXPAND_LEN)*256);
1075 #endif /* CONFIG_DEBUG_BFIN_HWTRACE_EXPAND */
1077 #if CONFIG_EARLY_PRINTK
1081 trace_buffer_stop(p0,r0);
1083 #if ANOMALY_05000283 || ANOMALY_05000315
1092 /* Turn caches off, to ensure we don't get double exceptions */
1094 P4.L = LO(IMEM_CONTROL);
1095 P4.H = HI(IMEM_CONTROL);
1097 R5 = [P4]; /* Control Register*/
1098 BITCLR(R5,ENICPLB_P);
1100 SSYNC; /* SSYNC required before writing to IMEM_CONTROL. */
1105 P4.L = LO(DMEM_CONTROL);
1106 P4.H = HI(DMEM_CONTROL);
1108 BITCLR(R5,ENDCPLB_P);
1109 SSYNC; /* SSYNC required before writing to DMEM_CONTROL. */
1115 r0 = sp; /* stack frame pt_regs pointer argument ==> r0 */
1121 ENDPROC(_early_trap)
1123 #endif /* CONFIG_EARLY_PRINTK */
1126 * Put these in the kernel data section - that should always be covered by
1127 * a CPLB. This is needed to ensure we don't get double fault conditions
1130 #ifdef CONFIG_SYSCALL_TAB_L1
1137 /* entry for each EXCAUSE[5:0]
1138 * This table must be in sync with the table in ./kernel/traps.c
1139 * EXCPT instruction can provide 4 bits of EXCAUSE, allowing 16 to be user defined
1141 .long _ex_syscall /* 0x00 - User Defined - Linux Syscall */
1142 .long _ex_trap_c /* 0x01 - User Defined - Software breakpoint */
1144 .long _ex_trap_c /* 0x02 - User Defined - KGDB initial connection
1145 and break signal trap */
1147 .long _ex_replaceable /* 0x02 - User Defined */
1149 .long _ex_trap_c /* 0x03 - User Defined - userspace stack overflow */
1150 .long _ex_trap_c /* 0x04 - User Defined - dump trace buffer */
1151 .long _ex_replaceable /* 0x05 - User Defined */
1152 .long _ex_replaceable /* 0x06 - User Defined */
1153 .long _ex_replaceable /* 0x07 - User Defined */
1154 .long _ex_replaceable /* 0x08 - User Defined */
1155 .long _ex_replaceable /* 0x09 - User Defined */
1156 .long _ex_replaceable /* 0x0A - User Defined */
1157 .long _ex_replaceable /* 0x0B - User Defined */
1158 .long _ex_replaceable /* 0x0C - User Defined */
1159 .long _ex_replaceable /* 0x0D - User Defined */
1160 .long _ex_replaceable /* 0x0E - User Defined */
1161 .long _ex_replaceable /* 0x0F - User Defined */
1162 .long _ex_single_step /* 0x10 - HW Single step */
1163 #ifdef CONFIG_DEBUG_BFIN_HWTRACE_EXPAND
1164 .long _ex_trace_buff_full /* 0x11 - Trace Buffer Full */
1166 .long _ex_trap_c /* 0x11 - Trace Buffer Full */
1168 .long _ex_trap_c /* 0x12 - Reserved */
1169 .long _ex_trap_c /* 0x13 - Reserved */
1170 .long _ex_trap_c /* 0x14 - Reserved */
1171 .long _ex_trap_c /* 0x15 - Reserved */
1172 .long _ex_trap_c /* 0x16 - Reserved */
1173 .long _ex_trap_c /* 0x17 - Reserved */
1174 .long _ex_trap_c /* 0x18 - Reserved */
1175 .long _ex_trap_c /* 0x19 - Reserved */
1176 .long _ex_trap_c /* 0x1A - Reserved */
1177 .long _ex_trap_c /* 0x1B - Reserved */
1178 .long _ex_trap_c /* 0x1C - Reserved */
1179 .long _ex_trap_c /* 0x1D - Reserved */
1180 .long _ex_trap_c /* 0x1E - Reserved */
1181 .long _ex_trap_c /* 0x1F - Reserved */
1182 .long _ex_trap_c /* 0x20 - Reserved */
1183 .long _ex_trap_c /* 0x21 - Undefined Instruction */
1184 .long _ex_trap_c /* 0x22 - Illegal Instruction Combination */
1185 .long _ex_dviol /* 0x23 - Data CPLB Protection Violation */
1186 .long _ex_trap_c /* 0x24 - Data access misaligned */
1187 .long _ex_trap_c /* 0x25 - Unrecoverable Event */
1188 .long _ex_dmiss /* 0x26 - Data CPLB Miss */
1189 .long _ex_dmult /* 0x27 - Data CPLB Multiple Hits - Linux Trap Zero */
1190 .long _ex_trap_c /* 0x28 - Emulation Watchpoint */
1191 .long _ex_trap_c /* 0x29 - Instruction fetch access error (535 only) */
1192 .long _ex_trap_c /* 0x2A - Instruction fetch misaligned */
1193 .long _ex_trap_c /* 0x2B - Instruction CPLB protection Violation */
1194 .long _ex_icplb_miss /* 0x2C - Instruction CPLB miss */
1195 .long _ex_trap_c /* 0x2D - Instruction CPLB Multiple Hits */
1196 .long _ex_trap_c /* 0x2E - Illegal use of Supervisor Resource */
1197 .long _ex_trap_c /* 0x2E - Illegal use of Supervisor Resource */
1198 .long _ex_trap_c /* 0x2F - Reserved */
1199 .long _ex_trap_c /* 0x30 - Reserved */
1200 .long _ex_trap_c /* 0x31 - Reserved */
1201 .long _ex_trap_c /* 0x32 - Reserved */
1202 .long _ex_trap_c /* 0x33 - Reserved */
1203 .long _ex_trap_c /* 0x34 - Reserved */
1204 .long _ex_trap_c /* 0x35 - Reserved */
1205 .long _ex_trap_c /* 0x36 - Reserved */
1206 .long _ex_trap_c /* 0x37 - Reserved */
1207 .long _ex_trap_c /* 0x38 - Reserved */
1208 .long _ex_trap_c /* 0x39 - Reserved */
1209 .long _ex_trap_c /* 0x3A - Reserved */
1210 .long _ex_trap_c /* 0x3B - Reserved */
1211 .long _ex_trap_c /* 0x3C - Reserved */
1212 .long _ex_trap_c /* 0x3D - Reserved */
1213 .long _ex_trap_c /* 0x3E - Reserved */
1214 .long _ex_trap_c /* 0x3F - Reserved */
1217 ENTRY(_sys_call_table)
1218 .long _sys_restart_syscall /* 0 */
1223 .long _sys_open /* 5 */
1225 .long _sys_ni_syscall /* old waitpid */
1228 .long _sys_unlink /* 10 */
1233 .long _sys_chmod /* 15 */
1234 .long _sys_chown /* chown16 */
1235 .long _sys_ni_syscall /* old break syscall holder */
1236 .long _sys_ni_syscall /* old stat */
1238 .long _sys_getpid /* 20 */
1240 .long _sys_ni_syscall /* old umount */
1243 .long _sys_stime /* 25 */
1246 .long _sys_ni_syscall /* old fstat */
1248 .long _sys_ni_syscall /* old utime */ /* 30 */
1249 .long _sys_ni_syscall /* old stty syscall holder */
1250 .long _sys_ni_syscall /* old gtty syscall holder */
1253 .long _sys_ni_syscall /* 35 */ /* old ftime syscall holder */
1258 .long _sys_rmdir /* 40 */
1262 .long _sys_ni_syscall /* old prof syscall holder */
1263 .long _sys_brk /* 45 */
1266 .long _sys_ni_syscall /* old sys_signal */
1267 .long _sys_geteuid /* geteuid16 */
1268 .long _sys_getegid /* getegid16 */ /* 50 */
1270 .long _sys_umount /* recycled never used phys() */
1271 .long _sys_ni_syscall /* old lock syscall holder */
1273 .long _sys_fcntl /* 55 */
1274 .long _sys_ni_syscall /* old mpx syscall holder */
1276 .long _sys_ni_syscall /* old ulimit syscall holder */
1277 .long _sys_ni_syscall /* old old uname */
1278 .long _sys_umask /* 60 */
1283 .long _sys_getpgrp /* 65 */
1285 .long _sys_ni_syscall /* old sys_sigaction */
1288 .long _sys_setreuid /* setreuid16 */ /* 70 */
1289 .long _sys_setregid /* setregid16 */
1290 .long _sys_ni_syscall /* old sys_sigsuspend */
1291 .long _sys_ni_syscall /* old sys_sigpending */
1292 .long _sys_sethostname
1293 .long _sys_setrlimit /* 75 */
1294 .long _sys_ni_syscall /* old getrlimit */
1295 .long _sys_getrusage
1296 .long _sys_gettimeofday
1297 .long _sys_settimeofday
1298 .long _sys_getgroups /* getgroups16 */ /* 80 */
1299 .long _sys_setgroups /* setgroups16 */
1300 .long _sys_ni_syscall /* old_select */
1302 .long _sys_ni_syscall /* old lstat */
1303 .long _sys_readlink /* 85 */
1305 .long _sys_ni_syscall /* sys_swapon */
1307 .long _sys_ni_syscall /* old_readdir */
1308 .long _sys_ni_syscall /* sys_mmap */ /* 90 */
1311 .long _sys_ftruncate
1313 .long _sys_fchown /* fchown16 */ /* 95 */
1314 .long _sys_getpriority
1315 .long _sys_setpriority
1316 .long _sys_ni_syscall /* old profil syscall holder */
1318 .long _sys_fstatfs /* 100 */
1319 .long _sys_ni_syscall
1320 .long _sys_ni_syscall /* old sys_socketcall */
1322 .long _sys_setitimer
1323 .long _sys_getitimer /* 105 */
1327 .long _sys_ni_syscall /* old uname */
1328 .long _sys_ni_syscall /* iopl for i386 */ /* 110 */
1330 .long _sys_ni_syscall /* obsolete idle() syscall */
1331 .long _sys_ni_syscall /* vm86old for i386 */
1333 .long _sys_ni_syscall /* 115 */ /* sys_swapoff */
1335 .long _sys_ni_syscall /* old sys_ipc */
1337 .long _sys_ni_syscall /* old sys_sigreturn */
1338 .long _sys_clone /* 120 */
1339 .long _sys_setdomainname
1341 .long _sys_ni_syscall /* old sys_modify_ldt */
1343 .long _sys_ni_syscall /* 125 */ /* sys_mprotect */
1344 .long _sys_ni_syscall /* old sys_sigprocmask */
1345 .long _sys_ni_syscall /* old "creat_module" */
1346 .long _sys_init_module
1347 .long _sys_delete_module
1348 .long _sys_ni_syscall /* 130: old "get_kernel_syms" */
1353 .long _sys_ni_syscall /* 135 */ /* sys_sysfs */
1354 .long _sys_personality
1355 .long _sys_ni_syscall /* for afs_syscall */
1356 .long _sys_setfsuid /* setfsuid16 */
1357 .long _sys_setfsgid /* setfsgid16 */
1358 .long _sys_llseek /* 140 */
1360 .long _sys_ni_syscall /* sys_select */
1362 .long _sys_ni_syscall /* sys_msync */
1363 .long _sys_readv /* 145 */
1366 .long _sys_fdatasync
1368 .long _sys_ni_syscall /* 150 */ /* sys_mlock */
1369 .long _sys_ni_syscall /* sys_munlock */
1370 .long _sys_ni_syscall /* sys_mlockall */
1371 .long _sys_ni_syscall /* sys_munlockall */
1372 .long _sys_sched_setparam
1373 .long _sys_sched_getparam /* 155 */
1374 .long _sys_sched_setscheduler
1375 .long _sys_sched_getscheduler
1376 .long _sys_sched_yield
1377 .long _sys_sched_get_priority_max
1378 .long _sys_sched_get_priority_min /* 160 */
1379 .long _sys_sched_rr_get_interval
1380 .long _sys_nanosleep
1382 .long _sys_setresuid /* setresuid16 */
1383 .long _sys_getresuid /* getresuid16 */ /* 165 */
1384 .long _sys_ni_syscall /* for vm86 */
1385 .long _sys_ni_syscall /* old "query_module" */
1386 .long _sys_ni_syscall /* sys_poll */
1387 .long _sys_nfsservctl
1388 .long _sys_setresgid /* setresgid16 */ /* 170 */
1389 .long _sys_getresgid /* getresgid16 */
1391 .long _sys_rt_sigreturn
1392 .long _sys_rt_sigaction
1393 .long _sys_rt_sigprocmask /* 175 */
1394 .long _sys_rt_sigpending
1395 .long _sys_rt_sigtimedwait
1396 .long _sys_rt_sigqueueinfo
1397 .long _sys_rt_sigsuspend
1398 .long _sys_pread64 /* 180 */
1400 .long _sys_lchown /* lchown16 */
1403 .long _sys_capset /* 185 */
1404 .long _sys_sigaltstack
1406 .long _sys_ni_syscall /* streams1 */
1407 .long _sys_ni_syscall /* streams2 */
1408 .long _sys_vfork /* 190 */
1409 .long _sys_getrlimit
1411 .long _sys_truncate64
1412 .long _sys_ftruncate64
1413 .long _sys_stat64 /* 195 */
1418 .long _sys_getgid /* 200 */
1423 .long _sys_getgroups /* 205 */
1424 .long _sys_setgroups
1426 .long _sys_setresuid
1427 .long _sys_getresuid
1428 .long _sys_setresgid /* 210 */
1429 .long _sys_getresgid
1433 .long _sys_setfsuid /* 215 */
1435 .long _sys_pivot_root
1436 .long _sys_ni_syscall /* sys_mincore */
1437 .long _sys_ni_syscall /* sys_madvise */
1438 .long _sys_getdents64 /* 220 */
1440 .long _sys_ni_syscall /* reserved for TUX */
1441 .long _sys_ni_syscall
1443 .long _sys_readahead /* 225 */
1445 .long _sys_lsetxattr
1446 .long _sys_fsetxattr
1448 .long _sys_lgetxattr /* 230 */
1449 .long _sys_fgetxattr
1450 .long _sys_listxattr
1451 .long _sys_llistxattr
1452 .long _sys_flistxattr
1453 .long _sys_removexattr /* 235 */
1454 .long _sys_lremovexattr
1455 .long _sys_fremovexattr
1457 .long _sys_sendfile64
1458 .long _sys_futex /* 240 */
1459 .long _sys_sched_setaffinity
1460 .long _sys_sched_getaffinity
1461 .long _sys_ni_syscall /* sys_set_thread_area */
1462 .long _sys_ni_syscall /* sys_get_thread_area */
1463 .long _sys_io_setup /* 245 */
1464 .long _sys_io_destroy
1465 .long _sys_io_getevents
1466 .long _sys_io_submit
1467 .long _sys_io_cancel
1468 .long _sys_ni_syscall /* 250 */ /* sys_alloc_hugepages */
1469 .long _sys_ni_syscall /* sys_freec_hugepages */
1470 .long _sys_exit_group
1471 .long _sys_lookup_dcookie
1472 .long _sys_bfin_spinlock
1473 .long _sys_epoll_create /* 255 */
1474 .long _sys_epoll_ctl
1475 .long _sys_epoll_wait
1476 .long _sys_ni_syscall /* remap_file_pages */
1477 .long _sys_set_tid_address
1478 .long _sys_timer_create /* 260 */
1479 .long _sys_timer_settime
1480 .long _sys_timer_gettime
1481 .long _sys_timer_getoverrun
1482 .long _sys_timer_delete
1483 .long _sys_clock_settime /* 265 */
1484 .long _sys_clock_gettime
1485 .long _sys_clock_getres
1486 .long _sys_clock_nanosleep
1488 .long _sys_fstatfs64 /* 270 */
1491 .long _sys_fadvise64_64
1492 .long _sys_ni_syscall /* vserver */
1493 .long _sys_ni_syscall /* 275, mbind */
1494 .long _sys_ni_syscall /* get_mempolicy */
1495 .long _sys_ni_syscall /* set_mempolicy */
1497 .long _sys_mq_unlink
1498 .long _sys_mq_timedsend /* 280 */
1499 .long _sys_mq_timedreceive
1500 .long _sys_mq_notify
1501 .long _sys_mq_getsetattr
1502 .long _sys_ni_syscall /* kexec_load */
1503 .long _sys_waitid /* 285 */
1505 .long _sys_request_key
1507 .long _sys_ioprio_set
1508 .long _sys_ioprio_get /* 290 */
1509 .long _sys_inotify_init
1510 .long _sys_inotify_add_watch
1511 .long _sys_inotify_rm_watch
1512 .long _sys_ni_syscall /* migrate_pages */
1513 .long _sys_openat /* 295 */
1517 .long _sys_futimesat
1518 .long _sys_fstatat64 /* 300 */
1522 .long _sys_symlinkat
1523 .long _sys_readlinkat /* 305 */
1525 .long _sys_faccessat
1528 .long _sys_unshare /* 310 */
1529 .long _sys_sram_alloc
1530 .long _sys_sram_free
1531 .long _sys_dma_memcpy
1533 .long _sys_bind /* 315 */
1535 .long _sys_getpeername
1536 .long _sys_getsockname
1537 .long _sys_getsockopt
1538 .long _sys_listen /* 320 */
1543 .long _sys_sendmsg /* 325 */
1545 .long _sys_setsockopt
1548 .long _sys_socketpair /* 330 */
1553 .long _sys_msgget /* 335 */
1558 .long _sys_shmdt /* 340 */
1561 .long _sys_sync_file_range
1563 .long _sys_vmsplice /* 345 */
1564 .long _sys_epoll_pwait
1565 .long _sys_utimensat
1567 .long _sys_timerfd_create
1568 .long _sys_eventfd /* 350 */
1571 .long _sys_fadvise64
1572 .long _sys_set_robust_list
1573 .long _sys_get_robust_list /* 355 */
1574 .long _sys_fallocate
1575 .long _sys_semtimedop
1576 .long _sys_timerfd_settime
1577 .long _sys_timerfd_gettime
1578 .long _sys_signalfd4 /* 360 */
1580 .long _sys_epoll_create1
1583 .long _sys_inotify_init1 /* 365 */
1585 .rept NR_syscalls-(.-_sys_call_table)/4
1586 .long _sys_ni_syscall
1588 END(_sys_call_table)
1590 #ifdef CONFIG_EXCEPTION_L1_SCRATCH
1591 /* .section .l1.bss.scratch */
1592 .set _exception_stack_top, L1_SCRATCH_START + L1_SCRATCH_LENGTH
1594 #ifdef CONFIG_SYSCALL_TAB_L1
1599 ENTRY(_exception_stack)
1600 .rept 1024 * NR_CPUS
1603 _exception_stack_top: