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
33 * 25-Dec-2004 - LG Soft India
34 * 1. Fix in return_from_int, to make sure any pending
35 * system call in ILAT for this process to get
36 * executed, otherwise in case context switch happens,
37 * system call of first process (i.e in ILAT) will be
38 * carried forward to the switched process.
39 * 2. Removed Constant references for the following
46 * NOTE: This code handles signal-recognition, which happens every time
47 * after a timer-interrupt and after each system call.
51 #include <linux/linkage.h>
52 #include <asm/blackfin.h>
53 #include <asm/unistd.h>
54 #include <asm/errno.h>
55 #include <asm/thread_info.h> /* TIF_NEED_RESCHED */
56 #include <asm/asm-offsets.h>
58 #include <asm/mach-common/context.S>
60 #ifdef CONFIG_DEBUG_BFIN_NO_KERN_HWTRACE
62 * TODO: this should be proper save/restore, but for now
63 * we'll just cheat and use 0x1/0x13
65 # define DEBUG_START_HWTRACE \
70 # define DEBUG_STOP_HWTRACE \
76 # define DEBUG_START_HWTRACE
77 # define DEBUG_STOP_HWTRACE
80 #ifdef CONFIG_EXCPT_IRQ_SYSC_L1
86 /* Slightly simplified and streamlined entry point for CPLB misses.
87 * This one does not lower the level to IRQ5, and thus can be used to
88 * patch up CPLB misses on the kernel stack.
91 #if defined(ANOMALY_05000261)
93 * Work around an anomaly: if we see a new DCPLB fault, return
94 * without doing anything. Then, if we get the same fault again,
97 p5.l = _last_cplb_fault_retx;
98 p5.h = _last_cplb_fault_retx;
103 if !cc jump _return_from_exception;
108 (R7:6,P5:4) = [sp++];
118 /* Transform this into a syscall - twiddle the syscall vector. */
129 (R7:6,P5:4) = [sp++];
131 raise 15; /* invoked by TRAP #0, for sys call */
137 /* To end up here, vector 15 was changed - so we have to change it
142 p1.l = _evt_system_call;
143 p1.h = _evt_system_call;
148 call _sys_bfin_spinlock;
160 ENTRY(_ex_single_step)
164 if cc jump _return_from_exception
173 if !cc jump _ex_trap_c;
176 r6.h = _exception_to_level5;
177 r6.l = _exception_to_level5;
180 if !cc jump _ex_trap_c;
182 _return_from_exception:
184 #ifdef ANOMALY_05000257
190 (R7:6,P5:4) = [sp++];
195 ENTRY(_handle_bad_cplb)
196 /* To get here, we just tried and failed to change a CPLB
197 * so, handle things in trap_c (C code), by lowering to
198 * IRQ5, just like we normally do. Since this is not a
199 * "normal" return path, we have a do alot of stuff to
200 * the stack to get ready so, we can fall through - we
201 * need to make a CPLB exception look like a normal exception
207 [--sp] = (R7:6, P5:4);
210 /* Call C code (trap_c) to handle the exception, which most
211 * likely involves sending a signal to the current process.
212 * To avoid double faults, lower our priority to IRQ5 first.
214 P5.h = _exception_to_level5;
215 P5.l = _exception_to_level5;
221 /* Disable all interrupts, but make sure level 5 is enabled so
222 * we can switch to that level. Save the old mask. */
224 p4.l = _excpt_saved_imask;
225 p4.h = _excpt_saved_imask;
230 /* Save the excause into a circular buffer, in case the instruction
231 * which caused this excecptions causes others.
233 P5.l = _in_ptr_excause;
234 P5.h = _in_ptr_excause;
240 R6.l = _excause_circ_buf;
241 R6.h = _excause_circ_buf;
248 (R7:6,P5:4) = [sp++];
254 ENTRY(_exception_to_level5)
257 /* Restore interrupt mask. We haven't pushed RETI, so this
258 * doesn't enable interrupts until we return from this handler. */
259 p4.l = _excpt_saved_imask;
260 p4.h = _excpt_saved_imask;
264 /* Restore the hardware error vector. */
275 r0 = [p2]; /* Read current IPEND */
276 [sp + PT_IPEND] = r0; /* Store IPEND */
278 /* Pop the excause from the circular buffer and push it on the stack
279 * (in the right place - if you change the location of SEQSTAT, you
280 * must change this offset.
283 P5.l = _out_ptr_excause;
284 P5.h = _out_ptr_excause;
290 R6.l = _excause_circ_buf;
291 R6.h = _excause_circ_buf;
297 r0 = sp; /* stack frame pt_regs pointer argument ==> r0 */
302 /* See if anything else is in the exception buffer
303 * if there is, process it
305 P5.l = _out_ptr_excause;
306 P5.h = _out_ptr_excause;
307 P4.l = _in_ptr_excause;
308 P4.h = _in_ptr_excause;
312 if ! CC JUMP .L_excep_to_5_again
314 call _ret_from_exception;
318 ENTRY(_trap) /* Exception: 4th entry into system event table(supervisor mode)*/
319 /* Since the kernel stack can be anywhere, it's not guaranteed to be
320 * covered by a CPLB. Switch to an exception stack; use RETN as a
321 * scratch register (for want of a better option).
324 sp.l = _exception_stack_top;
325 sp.h = _exception_stack_top;
326 /* Try to deal with syscalls quickly. */
328 [--sp] = (R7:6, P5:4);
330 r7 = SEQSTAT; /* reason code is in bit 5:0 */
331 r6.l = lo(SEQSTAT_EXCAUSE);
332 r6.h = hi(SEQSTAT_EXCAUSE);
342 r7 = -ENOSYS; /* signextending enough */
343 [sp + PT_R0] = r7; /* return value from system call */
344 jump .Lsyscall_really_exit;
346 ENTRY(_kernel_execve)
349 r3 = SIZEOF_PTREGS / 4;
364 /* Success. Copy our temporary pt_regs to the top of the kernel
365 * stack and do a normal exception return.
368 r0 = (-KERNEL_STACK_SIZE) (x);
372 r0 = KERNEL_STACK_SIZE - 4 (z);
378 r3 = SIZEOF_PTREGS / 4;
384 if ! cc jump 0b (bp);
386 r0 = (KERNEL_STACK_SIZE - SIZEOF_PTREGS) (z);
391 [SP + PT_SYSCFG] = r0;
392 [p3 + (TASK_THREAD + THREAD_KSP)] = sp;
406 [sp + PT_IPEND] = r0;
408 /* Store RETS for now */
410 [sp + PT_RESERVED] = r0;
411 /* Set the stack for the current process */
413 r6.l = lo(ALIGN_PAGE_MASK);
414 r6.h = hi(ALIGN_PAGE_MASK);
415 r7 = r7 & r6; /* thread_info */
419 [p2+(TASK_THREAD+THREAD_KSP)] = sp;
421 /* Check the System Call */
423 /* System call number is passed in P0 */
426 if ! cc jump .Lbadsys;
428 /* are we tracing syscalls?*/
430 r6.l = lo(ALIGN_PAGE_MASK);
431 r6.h = hi(ALIGN_PAGE_MASK);
435 CC = BITTST(r7,TIF_SYSCALL_TRACE);
436 if CC JUMP _sys_trace;
438 /* Execute the appropriate system call */
441 p5.l = _sys_call_table;
442 p5.h = _sys_call_table;
459 r4.l = lo(ALIGN_PAGE_MASK);
460 r4.h = hi(ALIGN_PAGE_MASK);
461 r7 = r7 & r4; /* thread_info->flags */
463 .Lresume_userspace_1:
464 /* Disable interrupts. */
468 r7 = [p5 + TI_FLAGS];
469 r4.l = lo(_TIF_WORK_MASK);
470 r4.h = hi(_TIF_WORK_MASK);
474 cc = BITTST(r7, TIF_NEED_RESCHED);
475 if !cc jump .Lsyscall_sigpending;
477 /* Reenable interrupts. */
485 jump .Lresume_userspace_1;
487 .Lsyscall_sigpending:
488 cc = BITTST(r7, TIF_RESTORE_SIGMASK);
489 if cc jump .Lsyscall_do_signals;
490 cc = BITTST(r7, TIF_SIGPENDING);
491 if !cc jump .Lsyscall_really_exit;
492 .Lsyscall_do_signals:
493 /* Reenable interrupts. */
502 .Lsyscall_really_exit:
503 r5 = [sp + PT_RESERVED];
510 /* Execute the appropriate system call */
513 p5.l = _sys_call_table;
514 p5.h = _sys_call_table;
533 jump .Lresume_userspace;
537 * Beware - when entering resume, prev (the current task) is
538 * in r0, next (the new task) is in r1.
544 [--sp] = (r7:4, p5:3);
548 [p0+(TASK_THREAD+THREAD_USP)] = p2;
550 /* save current kernel stack pointer */
551 [p0+(TASK_THREAD+THREAD_KSP)] = sp;
553 /* save program counter */
554 r1.l = _new_old_task;
555 r1.h = _new_old_task;
556 [p0+(TASK_THREAD+THREAD_PC)] = r1;
558 /* restore the kernel stack pointer */
559 sp = [p1+(TASK_THREAD+THREAD_KSP)];
561 /* restore user stack pointer */
562 p0 = [p1+(TASK_THREAD+THREAD_USP)];
566 p0 = [p1+(TASK_THREAD+THREAD_PC)];
570 * Following code actually lands up in a new (old) task.
574 (r7:4, p5:3) = [sp++];
579 * When we come out of resume, r0 carries "old" task, becuase we are
584 ENTRY(_ret_from_exception)
590 [sp + PT_IPEND] = r0;
598 if !cc jump 4f; /* if not return to user mode, get out */
600 /* Make sure any pending system call or deferred exception
601 * return in ILAT for this process to get executed, otherwise
602 * in case context switch happens, system call of
603 * first process (i.e in ILAT) will be carried
604 * forward to the switched process
610 r1 = (EVT_IVG14 | EVT_IVG15) (z);
615 /* Set the stack for the current process */
617 r4.l = lo(ALIGN_PAGE_MASK);
618 r4.h = hi(ALIGN_PAGE_MASK);
619 r7 = r7 & r4; /* thread_info->flags */
621 r7 = [p5 + TI_FLAGS];
622 r4.l = lo(_TIF_WORK_MASK);
623 r4.h = hi(_TIF_WORK_MASK);
630 p1.l = _schedule_and_signal;
631 p1.h = _schedule_and_signal;
634 raise 15; /* raise evt14 to do signal or reschedule */
642 ENTRY(_return_from_int)
643 /* If someone else already raised IRQ 15, do nothing. */
648 cc = bittst (r0, EVT_IVG15_P);
651 /* if not return to user mode, get out */
665 /* Lower the interrupt level to 15. */
668 p1.l = _schedule_and_signal_from_int;
669 p1.h = _schedule_and_signal_from_int;
672 #if defined(ANOMALY_05000281)
673 r0.l = lo(CONFIG_BOOT_LOAD);
674 r0.h = hi(CONFIG_BOOT_LOAD);
679 raise 15; /* raise evt15 to do signal or reschedule */
684 ENTRY(_lower_to_irq14)
685 #if defined(ANOMALY_05000281)
686 r0.l = lo(CONFIG_BOOT_LOAD);
687 r0.h = hi(CONFIG_BOOT_LOAD);
694 ENTRY(_evt14_softirq)
695 #ifdef CONFIG_DEBUG_HWERR
705 _schedule_and_signal_from_int:
706 /* To end up here, vector 15 was changed - so we have to change it
711 p1.l = _evt_system_call;
712 p1.h = _evt_system_call;
716 /* Set orig_p0 to -1 to indicate this isn't the end of a syscall. */
718 [sp + PT_ORIG_P0] = r0;
721 [sp + PT_RESERVED] = p1;
728 jump.s .Lresume_userspace;
730 _schedule_and_signal:
732 /* To end up here, vector 15 was changed - so we have to change it
737 p1.l = _evt_system_call;
738 p1.h = _evt_system_call;
743 [sp + PT_RESERVED] = P0;
744 call .Lresume_userspace;
749 /* Make sure when we start, that the circular buffer is initialized properly
750 * R0 and P0 are call clobbered, so we can use them here.
752 ENTRY(_init_exception_buff)
754 p0.h = _in_ptr_excause;
755 p0.l = _in_ptr_excause;
757 p0.h = _out_ptr_excause;
758 p0.l = _out_ptr_excause;
763 * Put these in the kernel data section - that should always be covered by
764 * a CPLB. This is needed to ensure we don't get double fault conditions
767 #ifdef CONFIG_SYSCALL_TAB_L1
774 /* entry for each EXCAUSE[5:0]
775 * This table bmust be in sync with the table in ./kernel/traps.c
776 * EXCPT instruction can provide 4 bits of EXCAUSE, allowing 16 to be user defined
778 .long _ex_syscall; /* 0x00 - User Defined - Linux Syscall */
779 .long _ex_soft_bp /* 0x01 - User Defined - Software breakpoint */
780 .long _ex_trap_c /* 0x02 - User Defined */
781 .long _ex_trap_c /* 0x03 - User Defined - Atomic test and set service */
782 .long _ex_spinlock /* 0x04 - User Defined */
783 .long _ex_trap_c /* 0x05 - User Defined */
784 .long _ex_trap_c /* 0x06 - User Defined */
785 .long _ex_trap_c /* 0x07 - User Defined */
786 .long _ex_trap_c /* 0x08 - User Defined */
787 .long _ex_trap_c /* 0x09 - User Defined */
788 .long _ex_trap_c /* 0x0A - User Defined */
789 .long _ex_trap_c /* 0x0B - User Defined */
790 .long _ex_trap_c /* 0x0C - User Defined */
791 .long _ex_trap_c /* 0x0D - User Defined */
792 .long _ex_trap_c /* 0x0E - User Defined */
793 .long _ex_trap_c /* 0x0F - User Defined */
794 .long _ex_single_step /* 0x10 - HW Single step */
795 .long _ex_trap_c /* 0x11 - Trace Buffer Full */
796 .long _ex_trap_c /* 0x12 - Reserved */
797 .long _ex_trap_c /* 0x13 - Reserved */
798 .long _ex_trap_c /* 0x14 - Reserved */
799 .long _ex_trap_c /* 0x15 - Reserved */
800 .long _ex_trap_c /* 0x16 - Reserved */
801 .long _ex_trap_c /* 0x17 - Reserved */
802 .long _ex_trap_c /* 0x18 - Reserved */
803 .long _ex_trap_c /* 0x19 - Reserved */
804 .long _ex_trap_c /* 0x1A - Reserved */
805 .long _ex_trap_c /* 0x1B - Reserved */
806 .long _ex_trap_c /* 0x1C - Reserved */
807 .long _ex_trap_c /* 0x1D - Reserved */
808 .long _ex_trap_c /* 0x1E - Reserved */
809 .long _ex_trap_c /* 0x1F - Reserved */
810 .long _ex_trap_c /* 0x20 - Reserved */
811 .long _ex_trap_c /* 0x21 - Undefined Instruction */
812 .long _ex_trap_c /* 0x22 - Illegal Instruction Combination */
813 .long _ex_dcplb /* 0x23 - Data CPLB Protection Violation */
814 .long _ex_trap_c /* 0x24 - Data access misaligned */
815 .long _ex_trap_c /* 0x25 - Unrecoverable Event */
816 .long _ex_dcplb /* 0x26 - Data CPLB Miss */
817 .long _ex_trap_c /* 0x27 - Data CPLB Multiple Hits - Linux Trap Zero */
818 .long _ex_trap_c /* 0x28 - Emulation Watchpoint */
819 .long _ex_trap_c /* 0x29 - Instruction fetch access error (535 only) */
820 .long _ex_trap_c /* 0x2A - Instruction fetch misaligned */
821 .long _ex_icplb /* 0x2B - Instruction CPLB protection Violation */
822 .long _ex_icplb /* 0x2C - Instruction CPLB miss */
823 .long _ex_trap_c /* 0x2D - Instruction CPLB Multiple Hits */
824 .long _ex_trap_c /* 0x2E - Illegal use of Supervisor Resource */
825 .long _ex_trap_c /* 0x2E - Illegal use of Supervisor Resource */
826 .long _ex_trap_c /* 0x2F - Reserved */
827 .long _ex_trap_c /* 0x30 - Reserved */
828 .long _ex_trap_c /* 0x31 - Reserved */
829 .long _ex_trap_c /* 0x32 - Reserved */
830 .long _ex_trap_c /* 0x33 - Reserved */
831 .long _ex_trap_c /* 0x34 - Reserved */
832 .long _ex_trap_c /* 0x35 - Reserved */
833 .long _ex_trap_c /* 0x36 - Reserved */
834 .long _ex_trap_c /* 0x37 - Reserved */
835 .long _ex_trap_c /* 0x38 - Reserved */
836 .long _ex_trap_c /* 0x39 - Reserved */
837 .long _ex_trap_c /* 0x3A - Reserved */
838 .long _ex_trap_c /* 0x3B - Reserved */
839 .long _ex_trap_c /* 0x3C - Reserved */
840 .long _ex_trap_c /* 0x3D - Reserved */
841 .long _ex_trap_c /* 0x3E - Reserved */
842 .long _ex_trap_c /* 0x3F - Reserved */
845 ENTRY(_sys_call_table)
846 .long _sys_ni_syscall /* 0 - old "setup()" system call*/
851 .long _sys_open /* 5 */
853 .long _sys_ni_syscall /* old waitpid */
856 .long _sys_unlink /* 10 */
861 .long _sys_chmod /* 15 */
862 .long _sys_chown /* chown16 */
863 .long _sys_ni_syscall /* old break syscall holder */
864 .long _sys_ni_syscall /* old stat */
866 .long _sys_getpid /* 20 */
868 .long _sys_ni_syscall /* old umount */
871 .long _sys_stime /* 25 */
874 .long _sys_ni_syscall /* old fstat */
876 .long _sys_ni_syscall /* old utime */ /* 30 */
877 .long _sys_ni_syscall /* old stty syscall holder */
878 .long _sys_ni_syscall /* old gtty syscall holder */
881 .long _sys_ni_syscall /* 35 */ /* old ftime syscall holder */
886 .long _sys_rmdir /* 40 */
890 .long _sys_ni_syscall /* old prof syscall holder */
891 .long _sys_brk /* 45 */
894 .long _sys_ni_syscall /* old sys_signal */
895 .long _sys_geteuid /* geteuid16 */
896 .long _sys_getegid /* getegid16 */ /* 50 */
898 .long _sys_umount /* recycled never used phys() */
899 .long _sys_ni_syscall /* old lock syscall holder */
901 .long _sys_fcntl /* 55 */
902 .long _sys_ni_syscall /* old mpx syscall holder */
904 .long _sys_ni_syscall /* old ulimit syscall holder */
905 .long _sys_ni_syscall /* old old uname */
906 .long _sys_umask /* 60 */
911 .long _sys_getpgrp /* 65 */
913 .long _sys_ni_syscall /* old sys_sigaction */
916 .long _sys_setreuid /* setreuid16 */ /* 70 */
917 .long _sys_setregid /* setregid16 */
918 .long _sys_ni_syscall /* old sys_sigsuspend */
919 .long _sys_ni_syscall /* old sys_sigpending */
920 .long _sys_sethostname
921 .long _sys_setrlimit /* 75 */
922 .long _sys_ni_syscall /* old getrlimit */
924 .long _sys_gettimeofday
925 .long _sys_settimeofday
926 .long _sys_getgroups /* getgroups16 */ /* 80 */
927 .long _sys_setgroups /* setgroups16 */
928 .long _sys_ni_syscall /* old_select */
930 .long _sys_ni_syscall /* old lstat */
931 .long _sys_readlink /* 85 */
933 .long _sys_ni_syscall /* sys_swapon */
935 .long _sys_ni_syscall /* old_readdir */
936 .long _sys_ni_syscall /* sys_mmap */ /* 90 */
941 .long _sys_fchown /* fchown16 */ /* 95 */
942 .long _sys_getpriority
943 .long _sys_setpriority
944 .long _sys_ni_syscall /* old profil syscall holder */
946 .long _sys_fstatfs /* 100 */
947 .long _sys_ni_syscall
948 .long _sys_ni_syscall /* old sys_socketcall */
951 .long _sys_getitimer /* 105 */
955 .long _sys_ni_syscall /* old uname */
956 .long _sys_ni_syscall /* iopl for i386 */ /* 110 */
958 .long _sys_ni_syscall /* obsolete idle() syscall */
959 .long _sys_ni_syscall /* vm86old for i386 */
961 .long _sys_ni_syscall /* 115 */ /* sys_swapoff */
963 .long _sys_ni_syscall /* old sys_ipc */
965 .long _sys_ni_syscall /* old sys_sigreturn */
966 .long _sys_clone /* 120 */
967 .long _sys_setdomainname
969 .long _sys_ni_syscall /* old sys_modify_ldt */
971 .long _sys_ni_syscall /* 125 */ /* sys_mprotect */
972 .long _sys_ni_syscall /* old sys_sigprocmask */
973 .long _sys_ni_syscall /* old "creat_module" */
974 .long _sys_init_module
975 .long _sys_delete_module
976 .long _sys_ni_syscall /* 130: old "get_kernel_syms" */
981 .long _sys_ni_syscall /* 135 */ /* sys_sysfs */
982 .long _sys_personality
983 .long _sys_ni_syscall /* for afs_syscall */
984 .long _sys_setfsuid /* setfsuid16 */
985 .long _sys_setfsgid /* setfsgid16 */
986 .long _sys_llseek /* 140 */
988 .long _sys_ni_syscall /* sys_select */
990 .long _sys_ni_syscall /* sys_msync */
991 .long _sys_readv /* 145 */
996 .long _sys_ni_syscall /* 150 */ /* sys_mlock */
997 .long _sys_ni_syscall /* sys_munlock */
998 .long _sys_ni_syscall /* sys_mlockall */
999 .long _sys_ni_syscall /* sys_munlockall */
1000 .long _sys_sched_setparam
1001 .long _sys_sched_getparam /* 155 */
1002 .long _sys_sched_setscheduler
1003 .long _sys_sched_getscheduler
1004 .long _sys_sched_yield
1005 .long _sys_sched_get_priority_max
1006 .long _sys_sched_get_priority_min /* 160 */
1007 .long _sys_sched_rr_get_interval
1008 .long _sys_nanosleep
1009 .long _sys_ni_syscall /* sys_mremap */
1010 .long _sys_setresuid /* setresuid16 */
1011 .long _sys_getresuid /* getresuid16 */ /* 165 */
1012 .long _sys_ni_syscall /* for vm86 */
1013 .long _sys_ni_syscall /* old "query_module" */
1014 .long _sys_ni_syscall /* sys_poll */
1015 .long _sys_ni_syscall /* sys_nfsservctl */
1016 .long _sys_setresgid /* setresgid16 */ /* 170 */
1017 .long _sys_getresgid /* getresgid16 */
1019 .long _sys_rt_sigreturn
1020 .long _sys_rt_sigaction
1021 .long _sys_rt_sigprocmask /* 175 */
1022 .long _sys_rt_sigpending
1023 .long _sys_rt_sigtimedwait
1024 .long _sys_rt_sigqueueinfo
1025 .long _sys_rt_sigsuspend
1026 .long _sys_pread64 /* 180 */
1028 .long _sys_lchown /* lchown16 */
1031 .long _sys_capset /* 185 */
1032 .long _sys_sigaltstack
1034 .long _sys_ni_syscall /* streams1 */
1035 .long _sys_ni_syscall /* streams2 */
1036 .long _sys_vfork /* 190 */
1037 .long _sys_getrlimit
1039 .long _sys_truncate64
1040 .long _sys_ftruncate64
1041 .long _sys_stat64 /* 195 */
1046 .long _sys_getgid /* 200 */
1051 .long _sys_getgroups /* 205 */
1052 .long _sys_setgroups
1054 .long _sys_setresuid
1055 .long _sys_getresuid
1056 .long _sys_setresgid /* 210 */
1057 .long _sys_getresgid
1061 .long _sys_setfsuid /* 215 */
1063 .long _sys_pivot_root
1064 .long _sys_ni_syscall /* sys_mincore */
1065 .long _sys_ni_syscall /* sys_madvise */
1066 .long _sys_getdents64 /* 220 */
1068 .long _sys_ni_syscall /* reserved for TUX */
1069 .long _sys_ni_syscall
1071 .long _sys_ni_syscall /* 225 */ /* sys_readahead */
1073 .long _sys_lsetxattr
1074 .long _sys_fsetxattr
1076 .long _sys_lgetxattr /* 230 */
1077 .long _sys_fgetxattr
1078 .long _sys_listxattr
1079 .long _sys_llistxattr
1080 .long _sys_flistxattr
1081 .long _sys_removexattr /* 235 */
1082 .long _sys_lremovexattr
1083 .long _sys_fremovexattr
1085 .long _sys_sendfile64
1086 .long _sys_futex /* 240 */
1087 .long _sys_sched_setaffinity
1088 .long _sys_sched_getaffinity
1089 .long _sys_ni_syscall /* sys_set_thread_area */
1090 .long _sys_ni_syscall /* sys_get_thread_area */
1091 .long _sys_io_setup /* 245 */
1092 .long _sys_io_destroy
1093 .long _sys_io_getevents
1094 .long _sys_io_submit
1095 .long _sys_io_cancel
1096 .long _sys_ni_syscall /* 250 */ /* sys_alloc_hugepages */
1097 .long _sys_ni_syscall /* sys_freec_hugepages */
1098 .long _sys_exit_group
1099 .long _sys_lookup_dcookie
1100 .long _sys_bfin_spinlock
1101 .long _sys_epoll_create /* 255 */
1102 .long _sys_epoll_ctl
1103 .long _sys_epoll_wait
1104 .long _sys_ni_syscall /* remap_file_pages */
1105 .long _sys_set_tid_address
1106 .long _sys_timer_create /* 260 */
1107 .long _sys_timer_settime
1108 .long _sys_timer_gettime
1109 .long _sys_timer_getoverrun
1110 .long _sys_timer_delete
1111 .long _sys_clock_settime /* 265 */
1112 .long _sys_clock_gettime
1113 .long _sys_clock_getres
1114 .long _sys_clock_nanosleep
1116 .long _sys_fstatfs64 /* 270 */
1119 .long _sys_fadvise64_64
1120 .long _sys_ni_syscall /* vserver */
1121 .long _sys_ni_syscall /* 275, mbind */
1122 .long _sys_ni_syscall /* get_mempolicy */
1123 .long _sys_ni_syscall /* set_mempolicy */
1125 .long _sys_mq_unlink
1126 .long _sys_mq_timedsend /* 280 */
1127 .long _sys_mq_timedreceive
1128 .long _sys_mq_notify
1129 .long _sys_mq_getsetattr
1130 .long _sys_ni_syscall /* kexec_load */
1131 .long _sys_waitid /* 285 */
1133 .long _sys_request_key
1135 .long _sys_ioprio_set
1136 .long _sys_ioprio_get /* 290 */
1137 .long _sys_inotify_init
1138 .long _sys_inotify_add_watch
1139 .long _sys_inotify_rm_watch
1140 .long _sys_ni_syscall /* migrate_pages */
1141 .long _sys_openat /* 295 */
1145 .long _sys_futimesat
1146 .long _sys_fstatat64 /* 300 */
1150 .long _sys_symlinkat
1151 .long _sys_readlinkat /* 305 */
1153 .long _sys_faccessat
1156 .long _sys_unshare /* 310 */
1157 .long _sys_sram_alloc
1158 .long _sys_sram_free
1159 .long _sys_dma_memcpy
1161 .long _sys_bind /* 315 */
1163 .long _sys_getpeername
1164 .long _sys_getsockname
1165 .long _sys_getsockopt
1166 .long _sys_listen /* 320 */
1171 .long _sys_sendmsg /* 325 */
1173 .long _sys_setsockopt
1176 .long _sys_socketpair /* 330 */
1181 .long _sys_msgget /* 335 */
1186 .long _sys_shmdt /* 340 */
1188 .rept NR_syscalls-(.-_sys_call_table)/4
1189 .long _sys_ni_syscall
1198 _exception_stack_top:
1200 #if defined(ANOMALY_05000261)
1201 /* Used by the assembly entry point to work around an anomaly. */
1202 _last_cplb_fault_retx:
1206 * Single instructions can have multiple faults, which need to be
1207 * handled by traps.c, in irq5. We store the exception cause to ensure
1208 * we don't miss a double fault condition
1210 ENTRY(_in_ptr_excause)
1212 ENTRY(_out_ptr_excause)
1215 ENTRY(_excause_circ_buf)