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 (R7:6,P5:4) = [sp++];
189 ENTRY(_handle_bad_cplb)
190 /* To get here, we just tried and failed to change a CPLB
191 * so, handle things in trap_c (C code), by lowering to
192 * IRQ5, just like we normally do. Since this is not a
193 * "normal" return path, we have a do alot of stuff to
194 * the stack to get ready so, we can fall through - we
195 * need to make a CPLB exception look like a normal exception
201 [--sp] = (R7:6, P5:4);
204 /* Call C code (trap_c) to handle the exception, which most
205 * likely involves sending a signal to the current process.
206 * To avoid double faults, lower our priority to IRQ5 first.
208 P5.h = _exception_to_level5;
209 P5.l = _exception_to_level5;
215 /* Disable all interrupts, but make sure level 5 is enabled so
216 * we can switch to that level. Save the old mask. */
218 p4.l = _excpt_saved_imask;
219 p4.h = _excpt_saved_imask;
224 /* Save the excause into a circular buffer, in case the instruction
225 * which caused this excecptions causes others.
227 P5.l = _in_ptr_excause;
228 P5.h = _in_ptr_excause;
234 R6.l = _excause_circ_buf;
235 R6.h = _excause_circ_buf;
242 (R7:6,P5:4) = [sp++];
248 ENTRY(_exception_to_level5)
251 /* Restore interrupt mask. We haven't pushed RETI, so this
252 * doesn't enable interrupts until we return from this handler. */
253 p4.l = _excpt_saved_imask;
254 p4.h = _excpt_saved_imask;
258 /* Restore the hardware error vector. */
269 r0 = [p2]; /* Read current IPEND */
270 [sp + PT_IPEND] = r0; /* Store IPEND */
272 /* Pop the excause from the circular buffer and push it on the stack
273 * (in the right place - if you change the location of SEQSTAT, you
274 * must change this offset.
277 P5.l = _out_ptr_excause;
278 P5.h = _out_ptr_excause;
284 R6.l = _excause_circ_buf;
285 R6.h = _excause_circ_buf;
291 r0 = sp; /* stack frame pt_regs pointer argument ==> r0 */
296 /* See if anything else is in the exception buffer
297 * if there is, process it
299 P5.l = _out_ptr_excause;
300 P5.h = _out_ptr_excause;
301 P4.l = _in_ptr_excause;
302 P4.h = _in_ptr_excause;
306 if ! CC JUMP .L_excep_to_5_again
308 call _ret_from_exception;
312 ENTRY(_trap) /* Exception: 4th entry into system event table(supervisor mode)*/
313 /* Since the kernel stack can be anywhere, it's not guaranteed to be
314 * covered by a CPLB. Switch to an exception stack; use RETN as a
315 * scratch register (for want of a better option).
318 sp.l = _exception_stack_top;
319 sp.h = _exception_stack_top;
320 /* Try to deal with syscalls quickly. */
322 [--sp] = (R7:6, P5:4);
324 r7 = SEQSTAT; /* reason code is in bit 5:0 */
325 r6.l = lo(SEQSTAT_EXCAUSE);
326 r6.h = hi(SEQSTAT_EXCAUSE);
336 r7 = -ENOSYS; /* signextending enough */
337 [sp + PT_R0] = r7; /* return value from system call */
338 jump .Lsyscall_really_exit;
340 ENTRY(_kernel_execve)
343 r3 = SIZEOF_PTREGS / 4;
358 /* Success. Copy our temporary pt_regs to the top of the kernel
359 * stack and do a normal exception return.
362 r0 = (-KERNEL_STACK_SIZE) (x);
366 r0 = KERNEL_STACK_SIZE - 4 (z);
372 r3 = SIZEOF_PTREGS / 4;
378 if ! cc jump 0b (bp);
380 r0 = (KERNEL_STACK_SIZE - SIZEOF_PTREGS) (z);
385 [SP + PT_SYSCFG] = r0;
386 [p3 + (TASK_THREAD + THREAD_KSP)] = sp;
400 [sp + PT_IPEND] = r0;
402 /* Store RETS for now */
404 [sp + PT_RESERVED] = r0;
405 /* Set the stack for the current process */
407 r6.l = lo(ALIGN_PAGE_MASK);
408 r6.h = hi(ALIGN_PAGE_MASK);
409 r7 = r7 & r6; /* thread_info */
413 [p2+(TASK_THREAD+THREAD_KSP)] = sp;
415 /* Check the System Call */
417 /* System call number is passed in P0 */
420 if ! cc jump .Lbadsys;
422 /* are we tracing syscalls?*/
424 r6.l = lo(ALIGN_PAGE_MASK);
425 r6.h = hi(ALIGN_PAGE_MASK);
429 CC = BITTST(r7,TIF_SYSCALL_TRACE);
430 if CC JUMP _sys_trace;
432 /* Execute the appropriate system call */
435 p5.l = _sys_call_table;
436 p5.h = _sys_call_table;
453 r4.l = lo(ALIGN_PAGE_MASK);
454 r4.h = hi(ALIGN_PAGE_MASK);
455 r7 = r7 & r4; /* thread_info->flags */
457 .Lresume_userspace_1:
458 /* Disable interrupts. */
462 r7 = [p5 + TI_FLAGS];
463 r4.l = lo(_TIF_WORK_MASK);
464 r4.h = hi(_TIF_WORK_MASK);
468 cc = BITTST(r7, TIF_NEED_RESCHED);
469 if !cc jump .Lsyscall_sigpending;
471 /* Reenable interrupts. */
479 jump .Lresume_userspace_1;
481 .Lsyscall_sigpending:
482 cc = BITTST(r7, TIF_RESTORE_SIGMASK);
483 if cc jump .Lsyscall_do_signals;
484 cc = BITTST(r7, TIF_SIGPENDING);
485 if !cc jump .Lsyscall_really_exit;
486 .Lsyscall_do_signals:
487 /* Reenable interrupts. */
496 .Lsyscall_really_exit:
497 r5 = [sp + PT_RESERVED];
504 /* Execute the appropriate system call */
507 p5.l = _sys_call_table;
508 p5.h = _sys_call_table;
527 jump .Lresume_userspace;
531 * Beware - when entering resume, prev (the current task) is
532 * in r0, next (the new task) is in r1.
538 [--sp] = (r7:4, p5:3);
542 [p0+(TASK_THREAD+THREAD_USP)] = p2;
544 /* save current kernel stack pointer */
545 [p0+(TASK_THREAD+THREAD_KSP)] = sp;
547 /* save program counter */
548 r1.l = _new_old_task;
549 r1.h = _new_old_task;
550 [p0+(TASK_THREAD+THREAD_PC)] = r1;
552 /* restore the kernel stack pointer */
553 sp = [p1+(TASK_THREAD+THREAD_KSP)];
555 /* restore user stack pointer */
556 p0 = [p1+(TASK_THREAD+THREAD_USP)];
560 p0 = [p1+(TASK_THREAD+THREAD_PC)];
564 * Following code actually lands up in a new (old) task.
568 (r7:4, p5:3) = [sp++];
573 * When we come out of resume, r0 carries "old" task, becuase we are
578 ENTRY(_ret_from_exception)
584 [sp + PT_IPEND] = r0;
592 if !cc jump 4f; /* if not return to user mode, get out */
594 /* Make sure any pending system call or deferred exception
595 * return in ILAT for this process to get executed, otherwise
596 * in case context switch happens, system call of
597 * first process (i.e in ILAT) will be carried
598 * forward to the switched process
604 r1 = (EVT_IVG14 | EVT_IVG15) (z);
609 /* Set the stack for the current process */
611 r4.l = lo(ALIGN_PAGE_MASK);
612 r4.h = hi(ALIGN_PAGE_MASK);
613 r7 = r7 & r4; /* thread_info->flags */
615 r7 = [p5 + TI_FLAGS];
616 r4.l = lo(_TIF_WORK_MASK);
617 r4.h = hi(_TIF_WORK_MASK);
624 p1.l = _schedule_and_signal;
625 p1.h = _schedule_and_signal;
628 raise 15; /* raise evt14 to do signal or reschedule */
636 ENTRY(_return_from_int)
637 /* If someone else already raised IRQ 15, do nothing. */
642 cc = bittst (r0, EVT_IVG15_P);
645 /* if not return to user mode, get out */
659 /* Lower the interrupt level to 15. */
662 p1.l = _schedule_and_signal_from_int;
663 p1.h = _schedule_and_signal_from_int;
666 #if defined(ANOMALY_05000281)
667 r0.l = lo(CONFIG_BOOT_LOAD);
668 r0.h = hi(CONFIG_BOOT_LOAD);
673 raise 15; /* raise evt15 to do signal or reschedule */
678 ENTRY(_lower_to_irq14)
679 #if defined(ANOMALY_05000281)
680 r0.l = lo(CONFIG_BOOT_LOAD);
681 r0.h = hi(CONFIG_BOOT_LOAD);
688 ENTRY(_evt14_softirq)
689 #ifdef CONFIG_DEBUG_HWERR
699 _schedule_and_signal_from_int:
700 /* To end up here, vector 15 was changed - so we have to change it
705 p1.l = _evt_system_call;
706 p1.h = _evt_system_call;
710 [sp + PT_RESERVED] = p1;
717 jump.s .Lresume_userspace;
719 _schedule_and_signal:
721 /* To end up here, vector 15 was changed - so we have to change it
726 p1.l = _evt_system_call;
727 p1.h = _evt_system_call;
732 [sp + PT_RESERVED] = P0;
733 call .Lresume_userspace;
738 /* Make sure when we start, that the circular buffer is initialized properly
739 * R0 and P0 are call clobbered, so we can use them here.
741 ENTRY(_init_exception_buff)
743 p0.h = _in_ptr_excause;
744 p0.l = _in_ptr_excause;
746 p0.h = _out_ptr_excause;
747 p0.l = _out_ptr_excause;
752 * Put these in the kernel data section - that should always be covered by
753 * a CPLB. This is needed to ensure we don't get double fault conditions
756 #ifdef CONFIG_SYSCALL_TAB_L1
763 /* entry for each EXCAUSE[5:0]
764 * This table bmust be in sync with the table in ./kernel/traps.c
765 * EXCPT instruction can provide 4 bits of EXCAUSE, allowing 16 to be user defined
767 .long _ex_syscall; /* 0x00 - User Defined - Linux Syscall */
768 .long _ex_soft_bp /* 0x01 - User Defined - Software breakpoint */
769 .long _ex_trap_c /* 0x02 - User Defined */
770 .long _ex_trap_c /* 0x03 - User Defined - Atomic test and set service */
771 .long _ex_spinlock /* 0x04 - User Defined */
772 .long _ex_trap_c /* 0x05 - User Defined */
773 .long _ex_trap_c /* 0x06 - User Defined */
774 .long _ex_trap_c /* 0x07 - User Defined */
775 .long _ex_trap_c /* 0x08 - User Defined */
776 .long _ex_trap_c /* 0x09 - User Defined */
777 .long _ex_trap_c /* 0x0A - User Defined */
778 .long _ex_trap_c /* 0x0B - User Defined */
779 .long _ex_trap_c /* 0x0C - User Defined */
780 .long _ex_trap_c /* 0x0D - User Defined */
781 .long _ex_trap_c /* 0x0E - User Defined */
782 .long _ex_trap_c /* 0x0F - User Defined */
783 .long _ex_single_step /* 0x10 - HW Single step */
784 .long _ex_trap_c /* 0x11 - Trace Buffer Full */
785 .long _ex_trap_c /* 0x12 - Reserved */
786 .long _ex_trap_c /* 0x13 - Reserved */
787 .long _ex_trap_c /* 0x14 - Reserved */
788 .long _ex_trap_c /* 0x15 - Reserved */
789 .long _ex_trap_c /* 0x16 - Reserved */
790 .long _ex_trap_c /* 0x17 - Reserved */
791 .long _ex_trap_c /* 0x18 - Reserved */
792 .long _ex_trap_c /* 0x19 - Reserved */
793 .long _ex_trap_c /* 0x1A - Reserved */
794 .long _ex_trap_c /* 0x1B - Reserved */
795 .long _ex_trap_c /* 0x1C - Reserved */
796 .long _ex_trap_c /* 0x1D - Reserved */
797 .long _ex_trap_c /* 0x1E - Reserved */
798 .long _ex_trap_c /* 0x1F - Reserved */
799 .long _ex_trap_c /* 0x20 - Reserved */
800 .long _ex_trap_c /* 0x21 - Undefined Instruction */
801 .long _ex_trap_c /* 0x22 - Illegal Instruction Combination */
802 .long _ex_dcplb /* 0x23 - Data CPLB Protection Violation */
803 .long _ex_trap_c /* 0x24 - Data access misaligned */
804 .long _ex_trap_c /* 0x25 - Unrecoverable Event */
805 .long _ex_dcplb /* 0x26 - Data CPLB Miss */
806 .long _ex_trap_c /* 0x27 - Data CPLB Multiple Hits - Linux Trap Zero */
807 .long _ex_trap_c /* 0x28 - Emulation Watchpoint */
808 .long _ex_trap_c /* 0x29 - Instruction fetch access error (535 only) */
809 .long _ex_trap_c /* 0x2A - Instruction fetch misaligned */
810 .long _ex_icplb /* 0x2B - Instruction CPLB protection Violation */
811 .long _ex_icplb /* 0x2C - Instruction CPLB miss */
812 .long _ex_trap_c /* 0x2D - Instruction CPLB Multiple Hits */
813 .long _ex_trap_c /* 0x2E - Illegal use of Supervisor Resource */
814 .long _ex_trap_c /* 0x2E - Illegal use of Supervisor Resource */
815 .long _ex_trap_c /* 0x2F - Reserved */
816 .long _ex_trap_c /* 0x30 - Reserved */
817 .long _ex_trap_c /* 0x31 - Reserved */
818 .long _ex_trap_c /* 0x32 - Reserved */
819 .long _ex_trap_c /* 0x33 - Reserved */
820 .long _ex_trap_c /* 0x34 - Reserved */
821 .long _ex_trap_c /* 0x35 - Reserved */
822 .long _ex_trap_c /* 0x36 - Reserved */
823 .long _ex_trap_c /* 0x37 - Reserved */
824 .long _ex_trap_c /* 0x38 - Reserved */
825 .long _ex_trap_c /* 0x39 - Reserved */
826 .long _ex_trap_c /* 0x3A - Reserved */
827 .long _ex_trap_c /* 0x3B - Reserved */
828 .long _ex_trap_c /* 0x3C - Reserved */
829 .long _ex_trap_c /* 0x3D - Reserved */
830 .long _ex_trap_c /* 0x3E - Reserved */
831 .long _ex_trap_c /* 0x3F - Reserved */
834 ENTRY(_sys_call_table)
835 .long _sys_ni_syscall /* 0 - old "setup()" system call*/
840 .long _sys_open /* 5 */
842 .long _sys_ni_syscall /* old waitpid */
845 .long _sys_unlink /* 10 */
850 .long _sys_chmod /* 15 */
851 .long _sys_chown /* chown16 */
852 .long _sys_ni_syscall /* old break syscall holder */
853 .long _sys_ni_syscall /* old stat */
855 .long _sys_getpid /* 20 */
857 .long _sys_ni_syscall /* old umount */
860 .long _sys_stime /* 25 */
863 .long _sys_ni_syscall /* old fstat */
865 .long _sys_ni_syscall /* old utime */ /* 30 */
866 .long _sys_ni_syscall /* old stty syscall holder */
867 .long _sys_ni_syscall /* old gtty syscall holder */
870 .long _sys_ni_syscall /* 35 */ /* old ftime syscall holder */
875 .long _sys_rmdir /* 40 */
879 .long _sys_ni_syscall /* old prof syscall holder */
880 .long _sys_brk /* 45 */
883 .long _sys_ni_syscall /* old sys_signal */
884 .long _sys_geteuid /* geteuid16 */
885 .long _sys_getegid /* getegid16 */ /* 50 */
887 .long _sys_umount /* recycled never used phys() */
888 .long _sys_ni_syscall /* old lock syscall holder */
890 .long _sys_fcntl /* 55 */
891 .long _sys_ni_syscall /* old mpx syscall holder */
893 .long _sys_ni_syscall /* old ulimit syscall holder */
894 .long _sys_ni_syscall /* old old uname */
895 .long _sys_umask /* 60 */
900 .long _sys_getpgrp /* 65 */
902 .long _sys_ni_syscall /* old sys_sigaction */
905 .long _sys_setreuid /* setreuid16 */ /* 70 */
906 .long _sys_setregid /* setregid16 */
907 .long _sys_ni_syscall /* old sys_sigsuspend */
908 .long _sys_ni_syscall /* old sys_sigpending */
909 .long _sys_sethostname
910 .long _sys_setrlimit /* 75 */
911 .long _sys_ni_syscall /* old getrlimit */
913 .long _sys_gettimeofday
914 .long _sys_settimeofday
915 .long _sys_getgroups /* getgroups16 */ /* 80 */
916 .long _sys_setgroups /* setgroups16 */
917 .long _sys_ni_syscall /* old_select */
919 .long _sys_ni_syscall /* old lstat */
920 .long _sys_readlink /* 85 */
922 .long _sys_ni_syscall /* sys_swapon */
924 .long _sys_ni_syscall /* old_readdir */
925 .long _sys_ni_syscall /* sys_mmap */ /* 90 */
930 .long _sys_fchown /* fchown16 */ /* 95 */
931 .long _sys_getpriority
932 .long _sys_setpriority
933 .long _sys_ni_syscall /* old profil syscall holder */
935 .long _sys_fstatfs /* 100 */
936 .long _sys_ni_syscall
937 .long _sys_ni_syscall /* old sys_socketcall */
940 .long _sys_getitimer /* 105 */
944 .long _sys_ni_syscall /* old uname */
945 .long _sys_ni_syscall /* iopl for i386 */ /* 110 */
947 .long _sys_ni_syscall /* obsolete idle() syscall */
948 .long _sys_ni_syscall /* vm86old for i386 */
950 .long _sys_ni_syscall /* 115 */ /* sys_swapoff */
952 .long _sys_ni_syscall /* old sys_ipc */
954 .long _sys_ni_syscall /* old sys_sigreturn */
955 .long _sys_clone /* 120 */
956 .long _sys_setdomainname
958 .long _sys_ni_syscall /* old sys_modify_ldt */
960 .long _sys_ni_syscall /* 125 */ /* sys_mprotect */
961 .long _sys_ni_syscall /* old sys_sigprocmask */
962 .long _sys_ni_syscall /* old "creat_module" */
963 .long _sys_init_module
964 .long _sys_delete_module
965 .long _sys_ni_syscall /* 130: old "get_kernel_syms" */
970 .long _sys_ni_syscall /* 135 */ /* sys_sysfs */
971 .long _sys_personality
972 .long _sys_ni_syscall /* for afs_syscall */
973 .long _sys_setfsuid /* setfsuid16 */
974 .long _sys_setfsgid /* setfsgid16 */
975 .long _sys_llseek /* 140 */
977 .long _sys_ni_syscall /* sys_select */
979 .long _sys_ni_syscall /* sys_msync */
980 .long _sys_readv /* 145 */
985 .long _sys_ni_syscall /* 150 */ /* sys_mlock */
986 .long _sys_ni_syscall /* sys_munlock */
987 .long _sys_ni_syscall /* sys_mlockall */
988 .long _sys_ni_syscall /* sys_munlockall */
989 .long _sys_sched_setparam
990 .long _sys_sched_getparam /* 155 */
991 .long _sys_sched_setscheduler
992 .long _sys_sched_getscheduler
993 .long _sys_sched_yield
994 .long _sys_sched_get_priority_max
995 .long _sys_sched_get_priority_min /* 160 */
996 .long _sys_sched_rr_get_interval
998 .long _sys_ni_syscall /* sys_mremap */
999 .long _sys_setresuid /* setresuid16 */
1000 .long _sys_getresuid /* getresuid16 */ /* 165 */
1001 .long _sys_ni_syscall /* for vm86 */
1002 .long _sys_ni_syscall /* old "query_module" */
1003 .long _sys_ni_syscall /* sys_poll */
1004 .long _sys_ni_syscall /* sys_nfsservctl */
1005 .long _sys_setresgid /* setresgid16 */ /* 170 */
1006 .long _sys_getresgid /* getresgid16 */
1008 .long _sys_rt_sigreturn
1009 .long _sys_rt_sigaction
1010 .long _sys_rt_sigprocmask /* 175 */
1011 .long _sys_rt_sigpending
1012 .long _sys_rt_sigtimedwait
1013 .long _sys_rt_sigqueueinfo
1014 .long _sys_rt_sigsuspend
1015 .long _sys_pread64 /* 180 */
1017 .long _sys_lchown /* lchown16 */
1020 .long _sys_capset /* 185 */
1021 .long _sys_sigaltstack
1023 .long _sys_ni_syscall /* streams1 */
1024 .long _sys_ni_syscall /* streams2 */
1025 .long _sys_vfork /* 190 */
1026 .long _sys_getrlimit
1028 .long _sys_truncate64
1029 .long _sys_ftruncate64
1030 .long _sys_stat64 /* 195 */
1035 .long _sys_getgid /* 200 */
1040 .long _sys_getgroups /* 205 */
1041 .long _sys_setgroups
1043 .long _sys_setresuid
1044 .long _sys_getresuid
1045 .long _sys_setresgid /* 210 */
1046 .long _sys_getresgid
1050 .long _sys_setfsuid /* 215 */
1052 .long _sys_pivot_root
1053 .long _sys_ni_syscall /* sys_mincore */
1054 .long _sys_ni_syscall /* sys_madvise */
1055 .long _sys_getdents64 /* 220 */
1057 .long _sys_ni_syscall /* reserved for TUX */
1058 .long _sys_ni_syscall
1060 .long _sys_ni_syscall /* 225 */ /* sys_readahead */
1062 .long _sys_lsetxattr
1063 .long _sys_fsetxattr
1065 .long _sys_lgetxattr /* 230 */
1066 .long _sys_fgetxattr
1067 .long _sys_listxattr
1068 .long _sys_llistxattr
1069 .long _sys_flistxattr
1070 .long _sys_removexattr /* 235 */
1071 .long _sys_lremovexattr
1072 .long _sys_fremovexattr
1074 .long _sys_sendfile64
1075 .long _sys_futex /* 240 */
1076 .long _sys_sched_setaffinity
1077 .long _sys_sched_getaffinity
1078 .long _sys_ni_syscall /* sys_set_thread_area */
1079 .long _sys_ni_syscall /* sys_get_thread_area */
1080 .long _sys_io_setup /* 245 */
1081 .long _sys_io_destroy
1082 .long _sys_io_getevents
1083 .long _sys_io_submit
1084 .long _sys_io_cancel
1085 .long _sys_ni_syscall /* 250 */ /* sys_alloc_hugepages */
1086 .long _sys_ni_syscall /* sys_freec_hugepages */
1087 .long _sys_exit_group
1088 .long _sys_lookup_dcookie
1089 .long _sys_bfin_spinlock
1090 .long _sys_epoll_create /* 255 */
1091 .long _sys_epoll_ctl
1092 .long _sys_epoll_wait
1093 .long _sys_ni_syscall /* remap_file_pages */
1094 .long _sys_set_tid_address
1095 .long _sys_timer_create /* 260 */
1096 .long _sys_timer_settime
1097 .long _sys_timer_gettime
1098 .long _sys_timer_getoverrun
1099 .long _sys_timer_delete
1100 .long _sys_clock_settime /* 265 */
1101 .long _sys_clock_gettime
1102 .long _sys_clock_getres
1103 .long _sys_clock_nanosleep
1105 .long _sys_fstatfs64 /* 270 */
1108 .long _sys_fadvise64_64
1109 .long _sys_ni_syscall /* vserver */
1110 .long _sys_ni_syscall /* 275, mbind */
1111 .long _sys_ni_syscall /* get_mempolicy */
1112 .long _sys_ni_syscall /* set_mempolicy */
1114 .long _sys_mq_unlink
1115 .long _sys_mq_timedsend /* 280 */
1116 .long _sys_mq_timedreceive
1117 .long _sys_mq_notify
1118 .long _sys_mq_getsetattr
1119 .long _sys_ni_syscall /* kexec_load */
1120 .long _sys_waitid /* 285 */
1122 .long _sys_request_key
1124 .long _sys_ioprio_set
1125 .long _sys_ioprio_get /* 290 */
1126 .long _sys_inotify_init
1127 .long _sys_inotify_add_watch
1128 .long _sys_inotify_rm_watch
1129 .long _sys_ni_syscall /* migrate_pages */
1130 .long _sys_openat /* 295 */
1134 .long _sys_futimesat
1135 .long _sys_fstatat64 /* 300 */
1139 .long _sys_symlinkat
1140 .long _sys_readlinkat /* 305 */
1142 .long _sys_faccessat
1145 .long _sys_unshare /* 310 */
1146 .long _sys_sram_alloc
1147 .long _sys_sram_free
1148 .long _sys_dma_memcpy
1150 .long _sys_bind /* 315 */
1152 .long _sys_getpeername
1153 .long _sys_getsockname
1154 .long _sys_getsockopt
1155 .long _sys_listen /* 320 */
1160 .long _sys_sendmsg /* 325 */
1162 .long _sys_setsockopt
1165 .long _sys_socketpair /* 330 */
1170 .long _sys_msgget /* 335 */
1175 .long _sys_shmdt /* 340 */
1177 .rept NR_syscalls-(.-_sys_call_table)/4
1178 .long _sys_ni_syscall
1187 _exception_stack_top:
1189 #if defined(ANOMALY_05000261)
1190 /* Used by the assembly entry point to work around an anomaly. */
1191 _last_cplb_fault_retx:
1195 * Single instructions can have multiple faults, which need to be
1196 * handled by traps.c, in irq5. We store the exception cause to ensure
1197 * we don't miss a double fault condition
1199 ENTRY(_in_ptr_excause)
1201 ENTRY(_out_ptr_excause)
1204 ENTRY(_excause_circ_buf)