2 * Contains the system-call and fault low-level handling routines.
3 * This also contains the timer-interrupt handler, as well as all
4 * interrupts and faults that can result in a task-switch.
6 * Copyright 2005-2009 Analog Devices Inc.
8 * Licensed under the GPL-2 or later.
11 /* NOTE: This code handles signal-recognition, which happens every time
12 * after a timer-interrupt and after each system call.
15 #include <linux/init.h>
16 #include <linux/linkage.h>
17 #include <linux/unistd.h>
18 #include <asm/blackfin.h>
19 #include <asm/errno.h>
20 #include <asm/fixed_code.h>
21 #include <asm/thread_info.h> /* TIF_NEED_RESCHED */
22 #include <asm/asm-offsets.h>
23 #include <asm/trace.h>
24 #include <asm/traps.h>
26 #include <asm/context.S>
29 #ifdef CONFIG_EXCPT_IRQ_SYSC_L1
35 /* Slightly simplified and streamlined entry point for CPLB misses.
36 * This one does not lower the level to IRQ5, and thus can be used to
37 * patch up CPLB misses on the kernel stack.
40 #define _ex_dviol _ex_workaround_261
41 #define _ex_dmiss _ex_workaround_261
42 #define _ex_dmult _ex_workaround_261
44 ENTRY(_ex_workaround_261)
46 * Work around an anomaly: if we see a new DCPLB fault, return
47 * without doing anything. Then, if we get the same fault again,
50 P4 = R7; /* Store EXCAUSE */
53 r7 = [p5 + PDA_LFRETX];
55 [p5 + PDA_LFRETX] = r6;
57 if !cc jump _bfin_return_from_exception;
60 R6 = VEC_CPLB_M; /* Data CPLB Miss */
62 if cc jump _ex_dcplb_miss (BP);
64 R6 = VEC_CPLB_VL; /* Data CPLB Violation */
66 if cc jump _ex_dcplb_viol (BP);
68 /* Handle Data CPLB Protection Violation
69 * and Data CPLB Multiple Hits - Linux Trap Zero
72 ENDPROC(_ex_workaround_261)
76 #define _ex_dviol _ex_dcplb_viol
78 #define _ex_dviol _ex_trap_c
80 #define _ex_dmiss _ex_dcplb_miss
81 #define _ex_dmult _ex_trap_c
89 /* We leave the previously pushed ASTAT on the stack. */
92 /* We must load R1 here, _before_ DEBUG_HWTRACE_SAVE, since that
93 * will change the stack pointer. */
97 DEBUG_HWTRACE_SAVE(p5, r7)
103 IF !CC JUMP _handle_bad_cplb;
105 #ifdef CONFIG_DEBUG_DOUBLEFAULT
106 /* While we were processing this, did we double fault? */
107 r7 = SEQSTAT; /* reason code is in bit 5:0 */
108 r6.l = lo(SEQSTAT_EXCAUSE);
109 r6.h = hi(SEQSTAT_EXCAUSE);
113 if CC JUMP _double_fault;
116 DEBUG_HWTRACE_RESTORE(p5, r7)
121 ENDPROC(_ex_icplb_miss)
124 raise 15; /* invoked by TRAP #0, for sys call */
125 jump.s _bfin_return_from_exception;
128 ENTRY(_ex_single_step)
129 /* If we just returned from an interrupt, the single step event is
130 for the RTI instruction. */
134 if cc jump _bfin_return_from_exception;
137 /* Don't do single step in hardware exception handler */
142 if cc jump _bfin_return_from_exception;
144 if cc jump _bfin_return_from_exception;
146 /* skip single step if current interrupt priority is higher than
147 * that of the first instruction, from which gdb starts single step */
150 .Lfind_priority_start:
152 if cc jump .Lfind_priority_done;
156 if cc jump .Lfind_priority_done;
157 jump.s .Lfind_priority_start;
158 .Lfind_priority_done:
159 p4.l = _kgdb_single_step;
160 p4.h = _kgdb_single_step;
163 if cc jump .Ldo_single_step;
169 /* If we were in user mode, do the single step normally. */
178 #ifdef CONFIG_EXACT_HWERR
179 /* Read the ILAT, and to check to see if the process we are
180 * single stepping caused a previous hardware error
181 * If so, do not single step, (which lowers to IRQ5, and makes
182 * us miss the error).
187 cc = bittst(r7, EVT_IVHW_P);
190 /* Single stepping only a single instruction, so clear the trace
193 bitclr (r7, SYSCFG_SSSTEP_P);
199 * We were in an interrupt handler. By convention, all of them save
200 * SYSCFG with their first instruction, so by checking whether our
201 * RETX points at the entry point, we can determine whether to allow
202 * a single step, or whether to clear SYSCFG.
204 * First, find out the interrupt level and the event vector for it.
214 /* What we actually do is test for the _second_ instruction in the
215 * IRQ handler. That way, if there are insns following the restore
216 * of SYSCFG after leaving the handler, we will not turn off SYSCFG
223 if !cc jump _bfin_return_from_exception;
226 bitclr (r7, SYSCFG_SSSTEP_P); /* Turn off single step */
229 /* Fall through to _bfin_return_from_exception. */
230 ENDPROC(_ex_single_step)
232 ENTRY(_bfin_return_from_exception)
240 #ifdef CONFIG_DEBUG_DOUBLEFAULT
241 /* While we were processing the current exception,
242 * did we cause another, and double fault?
244 r7 = SEQSTAT; /* reason code is in bit 5:0 */
245 r6.l = lo(SEQSTAT_EXCAUSE);
246 r6.h = hi(SEQSTAT_EXCAUSE);
250 if CC JUMP _double_fault;
253 (R7:6,P5:4) = [sp++];
257 ENDPROC(_bfin_return_from_exception)
259 ENTRY(_handle_bad_cplb)
260 DEBUG_HWTRACE_RESTORE(p5, r7)
261 /* To get here, we just tried and failed to change a CPLB
262 * so, handle things in trap_c (C code), by lowering to
263 * IRQ5, just like we normally do. Since this is not a
264 * "normal" return path, we have a do a lot of stuff to
265 * the stack to get ready so, we can fall through - we
266 * need to make a CPLB exception look like a normal exception
269 /* ASTAT is still on the stack, where it is needed. */
270 [--sp] = (R7:6,P5:4);
272 ENTRY(_ex_replaceable)
276 /* The only thing that has been saved in this context is
277 * (R7:6,P5:4), ASTAT & SP - don't use anything else
282 /* Make sure we are not in a double fault */
287 if CC jump _double_fault;
288 [p5 + PDA_EXIPEND] = r7;
290 /* Call C code (trap_c) to handle the exception, which most
291 * likely involves sending a signal to the current process.
292 * To avoid double faults, lower our priority to IRQ5 first.
294 r7.h = _exception_to_level5;
295 r7.l = _exception_to_level5;
302 * Save these registers, as they are only valid in exception context
303 * (where we are now - as soon as we defer to IRQ5, they can change)
304 * DCPLB_STATUS and ICPLB_STATUS are also only valid in EVT3,
305 * but they are not very interesting, so don't save them
308 p4.l = lo(DCPLB_FAULT_ADDR);
309 p4.h = hi(DCPLB_FAULT_ADDR);
311 [p5 + PDA_DCPLB] = r7;
313 p4.l = lo(ICPLB_FAULT_ADDR);
314 p4.h = hi(ICPLB_FAULT_ADDR);
316 [p5 + PDA_ICPLB] = r6;
319 [p5 + PDA_RETX] = r6;
322 [p5 + PDA_SEQSTAT] = r6;
324 /* Save the state of single stepping */
326 [p5 + PDA_SYSCFG] = r6;
327 /* Clear it while we handle the exception in IRQ5 mode */
328 BITCLR(r6, SYSCFG_SSSTEP_P);
331 /* Save the current IMASK, since we change in order to jump to level 5 */
333 [p5 + PDA_EXIMASK] = r6;
335 p4.l = lo(SAFE_USER_INSTRUCTION);
336 p4.h = hi(SAFE_USER_INSTRUCTION);
339 /* Disable all interrupts, but make sure level 5 is enabled so
340 * we can switch to that level.
345 /* In case interrupts are disabled IPEND[4] (global interrupt disable bit)
346 * clear it (re-enabling interrupts again) by the special sequence of pushing
347 * RETI onto the stack. This way we can lower ourselves to IVG5 even if the
348 * exception was taken after the interrupt handler was called but before it
349 * got a chance to enable global interrupts itself.
355 jump.s _bfin_return_from_exception;
358 /* We just realized we got an exception, while we were processing a different
359 * exception. This is a unrecoverable event, so crash.
360 * Note: this cannot be ENTRY() as we jump here with "if cc jump" ...
363 /* Turn caches & protection off, to ensure we don't get any more
367 P4.L = LO(IMEM_CONTROL);
368 P4.H = HI(IMEM_CONTROL);
370 R5 = [P4]; /* Control Register*/
371 BITCLR(R5,ENICPLB_P);
372 CSYNC; /* Disabling of CPLBs should be proceeded by a CSYNC */
376 P4.L = LO(DMEM_CONTROL);
377 P4.H = HI(DMEM_CONTROL);
379 BITCLR(R5,ENDCPLB_P);
380 CSYNC; /* Disabling of CPLBs should be proceeded by a CSYNC */
384 /* Fix up the stack */
385 (R7:6,P5:4) = [sp++];
389 /* We should be out of the exception stack, and back down into
390 * kernel or user space stack
394 /* The dumping functions expect the return address in the RETI
399 r0 = sp; /* stack frame pt_regs pointer argument ==> r0 */
401 pseudo_long_call _double_fault_c, p5;
403 .L_double_fault_panic:
404 JUMP .L_double_fault_panic
406 ENDPROC(_double_fault)
408 ENTRY(_exception_to_level5)
411 GET_PDA(p5, r7); /* Fetch current PDA */
412 r6 = [p5 + PDA_RETX];
415 r6 = [p5 + PDA_SYSCFG];
416 [sp + PT_SYSCFG] = r6;
418 r6 = [p5 + PDA_SEQSTAT]; /* Read back seqstat */
419 [sp + PT_SEQSTAT] = r6;
421 /* Restore the hardware error vector. */
429 #ifdef CONFIG_DEBUG_DOUBLEFAULT
430 /* Now that we have the hardware error vector programmed properly
431 * we can re-enable interrupts (IPEND[4]), so if the _trap_c causes
432 * another hardware error, we can catch it (self-nesting).
438 r7 = [p5 + PDA_EXIPEND] /* Read the IPEND from the Exception state */
439 [sp + PT_IPEND] = r7; /* Store IPEND onto the stack */
441 r0 = sp; /* stack frame pt_regs pointer argument ==> r0 */
443 pseudo_long_call _trap_c, p4;
446 /* If interrupts were off during the exception (IPEND[4] = 1), turn them off
449 CC = BITTST(r7, EVT_IRPTEN_P)
451 /* this will load a random value into the reti register - but that is OK,
452 * since we do restore it to the correct value in the 'RESTORE_ALL_SYS' macro
457 /* restore the interrupt mask (IMASK) */
458 r6 = [p5 + PDA_EXIMASK];
461 call _ret_from_exception;
464 ENDPROC(_exception_to_level5)
466 ENTRY(_trap) /* Exception: 4th entry into system event table(supervisor mode)*/
467 /* Since the kernel stack can be anywhere, it's not guaranteed to be
468 * covered by a CPLB. Switch to an exception stack; use RETN as a
469 * scratch register (for want of a better option).
473 sp = [sp + PDA_EXSTACK];
474 /* Try to deal with syscalls quickly. */
476 [--sp] = (R7:6,P5:4);
478 ANOMALY_283_315_WORKAROUND(p5, r7)
480 #ifdef CONFIG_EXACT_HWERR
481 /* Make sure all pending read/writes complete. This will ensure any
482 * accesses which could cause hardware errors completes, and signal
483 * the the hardware before we do something silly, like crash the
484 * kernel. We don't need to work around anomaly 05000312, since
485 * we are already atomic
490 #ifdef CONFIG_DEBUG_DOUBLEFAULT
492 * Save these registers, as they are only valid in exception context
493 * (where we are now - as soon as we defer to IRQ5, they can change)
494 * DCPLB_STATUS and ICPLB_STATUS are also only valid in EVT3,
495 * but they are not very interesting, so don't save them
499 p4.l = lo(DCPLB_FAULT_ADDR);
500 p4.h = hi(DCPLB_FAULT_ADDR);
502 [p5 + PDA_DF_DCPLB] = r7;
504 p4.l = lo(ICPLB_FAULT_ADDR);
505 p4.h = hi(ICPLB_FAULT_ADDR);
507 [p5 + PDA_DF_ICPLB] = r7;
510 [p5 + PDA_DF_RETX] = r7;
512 r7 = SEQSTAT; /* reason code is in bit 5:0 */
513 [p5 + PDA_DF_SEQSTAT] = r7;
515 r7 = SEQSTAT; /* reason code is in bit 5:0 */
517 r6.l = lo(SEQSTAT_EXCAUSE);
518 r6.h = hi(SEQSTAT_EXCAUSE);
528 r7 = -ENOSYS; /* signextending enough */
529 [sp + PT_R0] = r7; /* return value from system call */
530 jump .Lsyscall_really_exit;
539 [sp + PT_IPEND] = r0;
541 /* Store RETS for now */
543 [sp + PT_RESERVED] = r0;
544 /* Set the stack for the current process */
546 r6.l = lo(ALIGN_PAGE_MASK);
547 r6.h = hi(ALIGN_PAGE_MASK);
548 r7 = r7 & r6; /* thread_info */
552 [p2+(TASK_THREAD+THREAD_KSP)] = sp;
556 pseudo_long_call ___ipipe_syscall_root, p0;
559 if cc jump .Lsyscall_really_exit;
561 if cc jump .Lresume_userspace;
564 p0 = [sp + PT_ORIG_P0];
565 #endif /* CONFIG_IPIPE */
567 /* are we tracing syscalls?*/
569 r6.l = lo(ALIGN_PAGE_MASK);
570 r6.h = hi(ALIGN_PAGE_MASK);
574 CC = BITTST(r7,TIF_SYSCALL_TRACE);
575 if CC JUMP _sys_trace;
576 CC = BITTST(r7,TIF_SINGLESTEP);
577 if CC JUMP _sys_trace;
579 /* Make sure the system call # is valid */
581 /* System call number is passed in P0 */
585 /* Execute the appropriate system call */
588 p5.l = _sys_call_table;
589 p5.h = _sys_call_table;
606 r4.l = lo(ALIGN_PAGE_MASK);
607 r4.h = hi(ALIGN_PAGE_MASK);
608 r7 = r7 & r4; /* thread_info->flags */
610 .Lresume_userspace_1:
611 /* Disable interrupts. */
615 r7 = [p5 + TI_FLAGS];
616 r4.l = lo(_TIF_WORK_MASK);
617 r4.h = hi(_TIF_WORK_MASK);
622 cc = BITTST(r7, TIF_IRQ_SYNC);
623 if !cc jump .Lsyscall_no_irqsync;
625 * Clear IPEND[4] manually to undo what resume_userspace_1 just did;
626 * we need this so that high priority domain interrupts may still
627 * preempt the current domain while the pipeline log is being played
631 SP += 4; /* don't merge with next insn to keep the pattern obvious */
633 pseudo_long_call ___ipipe_sync_root, p4;
635 jump .Lresume_userspace_1;
636 .Lsyscall_no_irqsync:
638 cc = BITTST(r7, TIF_NEED_RESCHED);
639 if !cc jump .Lsyscall_sigpending;
641 /* Reenable interrupts. */
646 pseudo_long_call _schedule, p4;
649 jump .Lresume_userspace_1;
651 .Lsyscall_sigpending:
652 cc = BITTST(r7, TIF_SIGPENDING);
653 if cc jump .Lsyscall_do_signals;
654 cc = BITTST(r7, TIF_NOTIFY_RESUME);
655 if !cc jump .Lsyscall_really_exit;
656 .Lsyscall_do_signals:
657 /* Reenable interrupts. */
663 pseudo_long_call _do_notify_resume, p5;
666 .Lsyscall_really_exit:
667 r5 = [sp + PT_RESERVED];
670 ENDPROC(_system_call)
672 /* Do not mark as ENTRY() to avoid error in assembler ...
673 * this symbol need not be global anyways, so ...
677 pseudo_long_call _syscall_trace_enter, p5;
679 /* Make sure the system call # is valid */
684 if cc jump .Lsys_trace_badsys;
686 /* Execute the appropriate system call */
687 p5.l = _sys_call_table;
688 p5.h = _sys_call_table;
708 pseudo_long_call _syscall_trace_leave, p5;
709 jump .Lresume_userspace;
714 * Beware - when entering resume, prev (the current task) is
715 * in r0, next (the new task) is in r1.
721 [--sp] = (r7:4, p5:3);
725 [p0+(TASK_THREAD+THREAD_USP)] = p2;
727 /* save current kernel stack pointer */
728 [p0+(TASK_THREAD+THREAD_KSP)] = sp;
730 /* save program counter */
731 r1.l = _new_old_task;
732 r1.h = _new_old_task;
733 [p0+(TASK_THREAD+THREAD_PC)] = r1;
735 /* restore the kernel stack pointer */
736 sp = [p1+(TASK_THREAD+THREAD_KSP)];
738 /* restore user stack pointer */
739 p0 = [p1+(TASK_THREAD+THREAD_USP)];
743 p0 = [p1+(TASK_THREAD+THREAD_PC)];
747 * Following code actually lands up in a new (old) task.
751 (r7:4, p5:3) = [sp++];
756 * When we come out of resume, r0 carries "old" task, because we are
762 ENTRY(_ret_from_exception)
764 p2.l = _ipipe_percpu_domain;
765 p2.h = _ipipe_percpu_domain;
770 if !cc jump 4f; /* not on behalf of the root domain, get out */
771 #endif /* CONFIG_IPIPE */
777 [sp + PT_IPEND] = r0;
783 if !cc jump 4f; /* if not return to user mode, get out */
785 /* Make sure any pending system call or deferred exception
786 * return in ILAT for this process to get executed, otherwise
787 * in case context switch happens, system call of
788 * first process (i.e in ILAT) will be carried
789 * forward to the switched process
795 r1 = (EVT_IVG14 | EVT_IVG15) (z);
800 /* Set the stack for the current process */
802 r4.l = lo(ALIGN_PAGE_MASK);
803 r4.h = hi(ALIGN_PAGE_MASK);
804 r7 = r7 & r4; /* thread_info->flags */
806 r7 = [p5 + TI_FLAGS];
807 r4.l = lo(_TIF_WORK_MASK);
808 r4.h = hi(_TIF_WORK_MASK);
815 p1.l = _schedule_and_signal;
816 p1.h = _schedule_and_signal;
819 raise 15; /* raise evt15 to do signal or reschedule */
822 bitclr(r0, SYSCFG_SSSTEP_P); /* Turn off single step */
826 ENDPROC(_ret_from_exception)
828 #if defined(CONFIG_PREEMPT)
831 #if ANOMALY_05000281 || ANOMALY_05000461
832 r0.l = lo(SAFE_USER_INSTRUCTION);
833 r0.h = hi(SAFE_USER_INSTRUCTION);
837 #ifdef CONFIG_DEBUG_HWERR
838 /* enable irq14 & hwerr interrupt, until we transition to _evt_evt14 */
839 r0 = (EVT_IVG14 | EVT_IVHW | EVT_IRPTEN | EVT_EVX | EVT_NMI | EVT_RST | EVT_EMU);
841 /* Only enable irq14 interrupt, until we transition to _evt_evt14 */
842 r0 = (EVT_IVG14 | EVT_IRPTEN | EVT_EVX | EVT_NMI | EVT_RST | EVT_EMU);
848 p1.l = _evt_up_evt14;
849 p1.h = _evt_up_evt14;
856 ENDPROC(_up_to_irq14)
859 #ifdef CONFIG_DEBUG_HWERR
860 r0 = (EVT_IVHW | EVT_IRPTEN | EVT_EVX | EVT_NMI | EVT_RST | EVT_EMU);
865 #ifdef CONFIG_TRACE_IRQFLAGS
868 call _trace_hardirqs_off;
875 /* restore normal evt14 */
884 ENDPROC(_evt_up_evt14)
890 _resume_kernel_from_int:
891 r1 = LO(~0x8000) (Z);
897 /* Sync the root stage only from the outer interrupt level. */
898 if !cc jump .Lnosync;
899 r0.l = ___ipipe_sync_root;
900 r0.h = ___ipipe_sync_root;
903 [--sp] = ( r7:4, p5:3 );
905 call ___ipipe_call_irqtail
907 ( r7:4, p5:3 ) = [sp++];
912 #elif defined(CONFIG_PREEMPT)
914 _resume_kernel_from_int:
915 /* check preempt_count */
917 r4.l = lo(ALIGN_PAGE_MASK);
918 r4.h = hi(ALIGN_PAGE_MASK);
921 r7 = [p5 + TI_PREEMPT];
923 if !cc jump .Lreturn_to_kernel;
925 r7 = [p5 + TI_FLAGS];
926 r4.l = lo(_TIF_WORK_MASK);
927 r4.h = hi(_TIF_WORK_MASK);
929 cc = BITTST(r7, TIF_NEED_RESCHED);
930 if !cc jump .Lreturn_to_kernel;
932 * let schedule done at level 15, otherwise sheduled process will run
933 * at high level and block low level interrupt
935 r6 = reti; /* save reti */
936 r5.l = .Lkernel_schedule;
937 r5.h = .Lkernel_schedule;
943 pseudo_long_call _preempt_schedule_irq, p4;
949 /* up to irq14 so that reti after restore_all can return to irq15(kernel) */
950 pseudo_long_call _up_to_irq14, p4;
954 reti = r6; /* restore reti so that origin process can return to interrupted point */
956 jump .Lneed_schedule;
959 #define _resume_kernel_from_int .Lreturn_to_kernel
962 ENTRY(_return_from_int)
963 /* If someone else already raised IRQ 15, do nothing. */
968 cc = bittst (r0, EVT_IVG15_P);
969 if cc jump .Lreturn_to_kernel;
971 /* if not return to user mode, get out */
983 if !cc jump _resume_kernel_from_int;
985 /* Lower the interrupt level to 15. */
988 p1.l = _schedule_and_signal_from_int;
989 p1.h = _schedule_and_signal_from_int;
992 #if ANOMALY_05000281 || ANOMALY_05000461
993 r0.l = lo(SAFE_USER_INSTRUCTION);
994 r0.h = hi(SAFE_USER_INSTRUCTION);
999 raise 15; /* raise evt15 to do signal or reschedule */
1003 ENDPROC(_return_from_int)
1005 ENTRY(_lower_to_irq14)
1006 #if ANOMALY_05000281 || ANOMALY_05000461
1007 r0.l = lo(SAFE_USER_INSTRUCTION);
1008 r0.h = hi(SAFE_USER_INSTRUCTION);
1012 #ifdef CONFIG_DEBUG_HWERR
1013 /* enable irq14 & hwerr interrupt, until we transition to _evt_evt14 */
1014 r0 = (EVT_IVG14 | EVT_IVHW | EVT_IRPTEN | EVT_EVX | EVT_NMI | EVT_RST | EVT_EMU);
1016 /* Only enable irq14 interrupt, until we transition to _evt_evt14 */
1017 r0 = (EVT_IVG14 | EVT_IRPTEN | EVT_EVX | EVT_NMI | EVT_RST | EVT_EMU);
1022 ENDPROC(_lower_to_irq14)
1025 #ifdef CONFIG_DEBUG_HWERR
1026 r0 = (EVT_IVHW | EVT_IRPTEN | EVT_EVX | EVT_NMI | EVT_RST | EVT_EMU);
1031 #ifdef CONFIG_TRACE_IRQFLAGS
1034 call _trace_hardirqs_off;
1043 ENTRY(_schedule_and_signal_from_int)
1044 /* To end up here, vector 15 was changed - so we have to change it
1049 p1.l = _evt_system_call;
1050 p1.h = _evt_system_call;
1054 /* Set orig_p0 to -1 to indicate this isn't the end of a syscall. */
1056 [sp + PT_ORIG_P0] = r0;
1059 [sp + PT_RESERVED] = p1;
1061 #ifdef CONFIG_TRACE_IRQFLAGS
1062 /* trace_hardirqs_on() checks if all irqs are disabled. But here IRQ 15
1063 * is turned on, so disable all irqs. */
1066 call _trace_hardirqs_on;
1070 GET_PDA(p0, r0); /* Fetch current PDA (can't migrate to other CPU here) */
1071 r0 = [p0 + PDA_IRQFLAGS];
1073 p0.l = _bfin_irq_flags;
1074 p0.h = _bfin_irq_flags;
1079 /* finish the userspace "atomic" functions for it */
1080 r1.l = lo(FIXED_CODE_END);
1081 r1.h = hi(FIXED_CODE_END);
1084 if cc jump .Lresume_userspace (bp);
1089 pseudo_long_call _finish_atomic_sections, p5;
1091 jump.s .Lresume_userspace;
1092 ENDPROC(_schedule_and_signal_from_int)
1094 ENTRY(_schedule_and_signal)
1095 SAVE_CONTEXT_SYSCALL
1096 /* To end up here, vector 15 was changed - so we have to change it
1101 p1.l = _evt_system_call;
1102 p1.h = _evt_system_call;
1107 [sp + PT_RESERVED] = P0;
1108 call .Lresume_userspace;
1112 ENDPROC(_schedule_and_signal)
1114 /* We handle this 100% in exception space - to reduce overhead
1115 * Only potiential problem is if the software buffer gets swapped out of the
1116 * CPLB table - then double fault. - so we don't let this happen in other places
1118 #ifdef CONFIG_DEBUG_BFIN_HWTRACE_EXPAND
1119 ENTRY(_ex_trace_buff_full)
1125 P5.L = _trace_buff_offset;
1126 P5.H = _trace_buff_offset;
1127 P3 = [P5]; /* trace_buff_offset */
1128 P5.L = lo(TBUFSTAT);
1129 P5.H = hi(TBUFSTAT);
1131 R7 <<= 1; /* double, since we need to read twice */
1133 R7 <<= 2; /* need to shift over again,
1134 * to get the number of bytes */
1137 R6 = ((1 << CONFIG_DEBUG_BFIN_HWTRACE_EXPAND_LEN)*1024) - 1;
1144 P2.L = _trace_buff_offset;
1145 P2.H = _trace_buff_offset;
1148 P2.L = _software_trace_buff;
1149 P2.H = _software_trace_buff;
1151 LSETUP (.Lstart, .Lend) LC0;
1153 R7 = [P5]; /* read TBUF */
1167 jump _bfin_return_from_exception;
1168 ENDPROC(_ex_trace_buff_full)
1170 #if CONFIG_DEBUG_BFIN_HWTRACE_EXPAND_LEN == 4
1174 #endif /* CONFIG_DEBUG_BFIN_HWTRACE_EXPAND_LEN */
1175 ENTRY(_trace_buff_offset)
1178 ENTRY(_software_trace_buff)
1179 .rept ((1 << CONFIG_DEBUG_BFIN_HWTRACE_EXPAND_LEN)*256);
1182 #endif /* CONFIG_DEBUG_BFIN_HWTRACE_EXPAND */
1184 #ifdef CONFIG_EARLY_PRINTK
1188 trace_buffer_stop(p0,r0);
1190 ANOMALY_283_315_WORKAROUND(p4, r5)
1192 /* Turn caches off, to ensure we don't get double exceptions */
1194 P4.L = LO(IMEM_CONTROL);
1195 P4.H = HI(IMEM_CONTROL);
1197 R5 = [P4]; /* Control Register*/
1198 BITCLR(R5,ENICPLB_P);
1199 CSYNC; /* Disabling of CPLBs should be proceeded by a CSYNC */
1203 P4.L = LO(DMEM_CONTROL);
1204 P4.H = HI(DMEM_CONTROL);
1206 BITCLR(R5,ENDCPLB_P);
1207 CSYNC; /* Disabling of CPLBs should be proceeded by a CSYNC */
1211 r0 = sp; /* stack frame pt_regs pointer argument ==> r0 */
1217 ENDPROC(_early_trap)
1219 #endif /* CONFIG_EARLY_PRINTK */
1222 * Put these in the kernel data section - that should always be covered by
1223 * a CPLB. This is needed to ensure we don't get double fault conditions
1226 #ifdef CONFIG_SYSCALL_TAB_L1
1233 /* entry for each EXCAUSE[5:0]
1234 * This table must be in sync with the table in ./kernel/traps.c
1235 * EXCPT instruction can provide 4 bits of EXCAUSE, allowing 16 to be user defined
1237 .long _ex_syscall /* 0x00 - User Defined - Linux Syscall */
1238 .long _ex_trap_c /* 0x01 - User Defined - Software breakpoint */
1240 .long _ex_trap_c /* 0x02 - User Defined - KGDB initial connection
1241 and break signal trap */
1243 .long _ex_replaceable /* 0x02 - User Defined */
1245 .long _ex_trap_c /* 0x03 - User Defined - userspace stack overflow */
1246 .long _ex_trap_c /* 0x04 - User Defined - dump trace buffer */
1247 .long _ex_replaceable /* 0x05 - User Defined */
1248 .long _ex_replaceable /* 0x06 - User Defined */
1249 .long _ex_replaceable /* 0x07 - User Defined */
1250 .long _ex_replaceable /* 0x08 - User Defined */
1251 .long _ex_replaceable /* 0x09 - User Defined */
1252 .long _ex_replaceable /* 0x0A - User Defined */
1253 .long _ex_replaceable /* 0x0B - User Defined */
1254 .long _ex_replaceable /* 0x0C - User Defined */
1255 .long _ex_replaceable /* 0x0D - User Defined */
1256 .long _ex_replaceable /* 0x0E - User Defined */
1257 .long _ex_replaceable /* 0x0F - User Defined */
1258 .long _ex_single_step /* 0x10 - HW Single step */
1259 #ifdef CONFIG_DEBUG_BFIN_HWTRACE_EXPAND
1260 .long _ex_trace_buff_full /* 0x11 - Trace Buffer Full */
1262 .long _ex_trap_c /* 0x11 - Trace Buffer Full */
1264 .long _ex_trap_c /* 0x12 - Reserved */
1265 .long _ex_trap_c /* 0x13 - Reserved */
1266 .long _ex_trap_c /* 0x14 - Reserved */
1267 .long _ex_trap_c /* 0x15 - Reserved */
1268 .long _ex_trap_c /* 0x16 - Reserved */
1269 .long _ex_trap_c /* 0x17 - Reserved */
1270 .long _ex_trap_c /* 0x18 - Reserved */
1271 .long _ex_trap_c /* 0x19 - Reserved */
1272 .long _ex_trap_c /* 0x1A - Reserved */
1273 .long _ex_trap_c /* 0x1B - Reserved */
1274 .long _ex_trap_c /* 0x1C - Reserved */
1275 .long _ex_trap_c /* 0x1D - Reserved */
1276 .long _ex_trap_c /* 0x1E - Reserved */
1277 .long _ex_trap_c /* 0x1F - Reserved */
1278 .long _ex_trap_c /* 0x20 - Reserved */
1279 .long _ex_trap_c /* 0x21 - Undefined Instruction */
1280 .long _ex_trap_c /* 0x22 - Illegal Instruction Combination */
1281 .long _ex_dviol /* 0x23 - Data CPLB Protection Violation */
1282 .long _ex_trap_c /* 0x24 - Data access misaligned */
1283 .long _ex_trap_c /* 0x25 - Unrecoverable Event */
1284 .long _ex_dmiss /* 0x26 - Data CPLB Miss */
1285 .long _ex_dmult /* 0x27 - Data CPLB Multiple Hits - Linux Trap Zero */
1286 .long _ex_trap_c /* 0x28 - Emulation Watchpoint */
1287 .long _ex_trap_c /* 0x29 - Instruction fetch access error (535 only) */
1288 .long _ex_trap_c /* 0x2A - Instruction fetch misaligned */
1289 .long _ex_trap_c /* 0x2B - Instruction CPLB protection Violation */
1290 .long _ex_icplb_miss /* 0x2C - Instruction CPLB miss */
1291 .long _ex_trap_c /* 0x2D - Instruction CPLB Multiple Hits */
1292 .long _ex_trap_c /* 0x2E - Illegal use of Supervisor Resource */
1293 .long _ex_trap_c /* 0x2E - Illegal use of Supervisor Resource */
1294 .long _ex_trap_c /* 0x2F - Reserved */
1295 .long _ex_trap_c /* 0x30 - Reserved */
1296 .long _ex_trap_c /* 0x31 - Reserved */
1297 .long _ex_trap_c /* 0x32 - Reserved */
1298 .long _ex_trap_c /* 0x33 - Reserved */
1299 .long _ex_trap_c /* 0x34 - Reserved */
1300 .long _ex_trap_c /* 0x35 - Reserved */
1301 .long _ex_trap_c /* 0x36 - Reserved */
1302 .long _ex_trap_c /* 0x37 - Reserved */
1303 .long _ex_trap_c /* 0x38 - Reserved */
1304 .long _ex_trap_c /* 0x39 - Reserved */
1305 .long _ex_trap_c /* 0x3A - Reserved */
1306 .long _ex_trap_c /* 0x3B - Reserved */
1307 .long _ex_trap_c /* 0x3C - Reserved */
1308 .long _ex_trap_c /* 0x3D - Reserved */
1309 .long _ex_trap_c /* 0x3E - Reserved */
1310 .long _ex_trap_c /* 0x3F - Reserved */
1313 ENTRY(_sys_call_table)
1314 .long _sys_restart_syscall /* 0 */
1316 .long _sys_ni_syscall /* fork */
1319 .long _sys_open /* 5 */
1321 .long _sys_ni_syscall /* old waitpid */
1324 .long _sys_unlink /* 10 */
1329 .long _sys_chmod /* 15 */
1330 .long _sys_chown /* chown16 */
1331 .long _sys_ni_syscall /* old break syscall holder */
1332 .long _sys_ni_syscall /* old stat */
1334 .long _sys_getpid /* 20 */
1336 .long _sys_ni_syscall /* old umount */
1339 .long _sys_stime /* 25 */
1342 .long _sys_ni_syscall /* old fstat */
1344 .long _sys_ni_syscall /* old utime */ /* 30 */
1345 .long _sys_ni_syscall /* old stty syscall holder */
1346 .long _sys_ni_syscall /* old gtty syscall holder */
1349 .long _sys_ni_syscall /* 35 */ /* old ftime syscall holder */
1354 .long _sys_rmdir /* 40 */
1358 .long _sys_ni_syscall /* old prof syscall holder */
1359 .long _sys_brk /* 45 */
1362 .long _sys_ni_syscall /* old sys_signal */
1363 .long _sys_geteuid /* geteuid16 */
1364 .long _sys_getegid /* getegid16 */ /* 50 */
1366 .long _sys_umount /* recycled never used phys() */
1367 .long _sys_ni_syscall /* old lock syscall holder */
1369 .long _sys_fcntl /* 55 */
1370 .long _sys_ni_syscall /* old mpx syscall holder */
1372 .long _sys_ni_syscall /* old ulimit syscall holder */
1373 .long _sys_ni_syscall /* old old uname */
1374 .long _sys_umask /* 60 */
1379 .long _sys_getpgrp /* 65 */
1381 .long _sys_ni_syscall /* old sys_sigaction */
1384 .long _sys_setreuid /* setreuid16 */ /* 70 */
1385 .long _sys_setregid /* setregid16 */
1386 .long _sys_ni_syscall /* old sys_sigsuspend */
1387 .long _sys_ni_syscall /* old sys_sigpending */
1388 .long _sys_sethostname
1389 .long _sys_setrlimit /* 75 */
1390 .long _sys_ni_syscall /* old getrlimit */
1391 .long _sys_getrusage
1392 .long _sys_gettimeofday
1393 .long _sys_settimeofday
1394 .long _sys_getgroups /* getgroups16 */ /* 80 */
1395 .long _sys_setgroups /* setgroups16 */
1396 .long _sys_ni_syscall /* old_select */
1398 .long _sys_ni_syscall /* old lstat */
1399 .long _sys_readlink /* 85 */
1401 .long _sys_ni_syscall /* sys_swapon */
1403 .long _sys_ni_syscall /* old_readdir */
1404 .long _sys_ni_syscall /* sys_mmap */ /* 90 */
1407 .long _sys_ftruncate
1409 .long _sys_fchown /* fchown16 */ /* 95 */
1410 .long _sys_getpriority
1411 .long _sys_setpriority
1412 .long _sys_ni_syscall /* old profil syscall holder */
1414 .long _sys_fstatfs /* 100 */
1415 .long _sys_ni_syscall
1416 .long _sys_ni_syscall /* old sys_socketcall */
1418 .long _sys_setitimer
1419 .long _sys_getitimer /* 105 */
1423 .long _sys_ni_syscall /* old uname */
1424 .long _sys_ni_syscall /* iopl for i386 */ /* 110 */
1426 .long _sys_ni_syscall /* obsolete idle() syscall */
1427 .long _sys_ni_syscall /* vm86old for i386 */
1429 .long _sys_ni_syscall /* 115 */ /* sys_swapoff */
1431 .long _sys_ni_syscall /* old sys_ipc */
1433 .long _sys_ni_syscall /* old sys_sigreturn */
1434 .long _bfin_clone /* 120 */
1435 .long _sys_setdomainname
1437 .long _sys_ni_syscall /* old sys_modify_ldt */
1439 .long _sys_mprotect /* 125 */
1440 .long _sys_ni_syscall /* old sys_sigprocmask */
1441 .long _sys_ni_syscall /* old "creat_module" */
1442 .long _sys_init_module
1443 .long _sys_delete_module
1444 .long _sys_ni_syscall /* 130: old "get_kernel_syms" */
1449 .long _sys_ni_syscall /* 135 */ /* sys_sysfs */
1450 .long _sys_personality
1451 .long _sys_ni_syscall /* for afs_syscall */
1452 .long _sys_setfsuid /* setfsuid16 */
1453 .long _sys_setfsgid /* setfsgid16 */
1454 .long _sys_llseek /* 140 */
1456 .long _sys_ni_syscall /* sys_select */
1459 .long _sys_readv /* 145 */
1462 .long _sys_fdatasync
1464 .long _sys_mlock /* 150 */
1467 .long _sys_munlockall
1468 .long _sys_sched_setparam
1469 .long _sys_sched_getparam /* 155 */
1470 .long _sys_sched_setscheduler
1471 .long _sys_sched_getscheduler
1472 .long _sys_sched_yield
1473 .long _sys_sched_get_priority_max
1474 .long _sys_sched_get_priority_min /* 160 */
1475 .long _sys_sched_rr_get_interval
1476 .long _sys_nanosleep
1478 .long _sys_setresuid /* setresuid16 */
1479 .long _sys_getresuid /* getresuid16 */ /* 165 */
1480 .long _sys_ni_syscall /* for vm86 */
1481 .long _sys_ni_syscall /* old "query_module" */
1482 .long _sys_ni_syscall /* sys_poll */
1483 .long _sys_ni_syscall /* old nfsservctl */
1484 .long _sys_setresgid /* setresgid16 */ /* 170 */
1485 .long _sys_getresgid /* getresgid16 */
1487 .long _sys_rt_sigreturn
1488 .long _sys_rt_sigaction
1489 .long _sys_rt_sigprocmask /* 175 */
1490 .long _sys_rt_sigpending
1491 .long _sys_rt_sigtimedwait
1492 .long _sys_rt_sigqueueinfo
1493 .long _sys_rt_sigsuspend
1494 .long _sys_pread64 /* 180 */
1496 .long _sys_lchown /* lchown16 */
1499 .long _sys_capset /* 185 */
1500 .long _sys_sigaltstack
1502 .long _sys_ni_syscall /* streams1 */
1503 .long _sys_ni_syscall /* streams2 */
1504 .long _sys_vfork /* 190 */
1505 .long _sys_getrlimit
1506 .long _sys_mmap_pgoff
1507 .long _sys_truncate64
1508 .long _sys_ftruncate64
1509 .long _sys_stat64 /* 195 */
1514 .long _sys_getgid /* 200 */
1519 .long _sys_getgroups /* 205 */
1520 .long _sys_setgroups
1522 .long _sys_setresuid
1523 .long _sys_getresuid
1524 .long _sys_setresgid /* 210 */
1525 .long _sys_getresgid
1529 .long _sys_setfsuid /* 215 */
1531 .long _sys_pivot_root
1534 .long _sys_getdents64 /* 220 */
1536 .long _sys_ni_syscall /* reserved for TUX */
1537 .long _sys_ni_syscall
1539 .long _sys_readahead /* 225 */
1541 .long _sys_lsetxattr
1542 .long _sys_fsetxattr
1544 .long _sys_lgetxattr /* 230 */
1545 .long _sys_fgetxattr
1546 .long _sys_listxattr
1547 .long _sys_llistxattr
1548 .long _sys_flistxattr
1549 .long _sys_removexattr /* 235 */
1550 .long _sys_lremovexattr
1551 .long _sys_fremovexattr
1553 .long _sys_sendfile64
1554 .long _sys_futex /* 240 */
1555 .long _sys_sched_setaffinity
1556 .long _sys_sched_getaffinity
1557 .long _sys_ni_syscall /* sys_set_thread_area */
1558 .long _sys_ni_syscall /* sys_get_thread_area */
1559 .long _sys_io_setup /* 245 */
1560 .long _sys_io_destroy
1561 .long _sys_io_getevents
1562 .long _sys_io_submit
1563 .long _sys_io_cancel
1564 .long _sys_ni_syscall /* 250 */ /* sys_alloc_hugepages */
1565 .long _sys_ni_syscall /* sys_freec_hugepages */
1566 .long _sys_exit_group
1567 .long _sys_lookup_dcookie
1568 .long _sys_bfin_spinlock
1569 .long _sys_epoll_create /* 255 */
1570 .long _sys_epoll_ctl
1571 .long _sys_epoll_wait
1572 .long _sys_ni_syscall /* remap_file_pages */
1573 .long _sys_set_tid_address
1574 .long _sys_timer_create /* 260 */
1575 .long _sys_timer_settime
1576 .long _sys_timer_gettime
1577 .long _sys_timer_getoverrun
1578 .long _sys_timer_delete
1579 .long _sys_clock_settime /* 265 */
1580 .long _sys_clock_gettime
1581 .long _sys_clock_getres
1582 .long _sys_clock_nanosleep
1584 .long _sys_fstatfs64 /* 270 */
1587 .long _sys_fadvise64_64
1588 .long _sys_ni_syscall /* vserver */
1589 .long _sys_mbind /* 275 */
1590 .long _sys_ni_syscall /* get_mempolicy */
1591 .long _sys_ni_syscall /* set_mempolicy */
1593 .long _sys_mq_unlink
1594 .long _sys_mq_timedsend /* 280 */
1595 .long _sys_mq_timedreceive
1596 .long _sys_mq_notify
1597 .long _sys_mq_getsetattr
1598 .long _sys_ni_syscall /* kexec_load */
1599 .long _sys_waitid /* 285 */
1601 .long _sys_request_key
1603 .long _sys_ioprio_set
1604 .long _sys_ioprio_get /* 290 */
1605 .long _sys_inotify_init
1606 .long _sys_inotify_add_watch
1607 .long _sys_inotify_rm_watch
1608 .long _sys_ni_syscall /* migrate_pages */
1609 .long _sys_openat /* 295 */
1613 .long _sys_futimesat
1614 .long _sys_fstatat64 /* 300 */
1618 .long _sys_symlinkat
1619 .long _sys_readlinkat /* 305 */
1621 .long _sys_faccessat
1624 .long _sys_unshare /* 310 */
1625 .long _sys_sram_alloc
1626 .long _sys_sram_free
1627 .long _sys_dma_memcpy
1629 .long _sys_bind /* 315 */
1631 .long _sys_getpeername
1632 .long _sys_getsockname
1633 .long _sys_getsockopt
1634 .long _sys_listen /* 320 */
1639 .long _sys_sendmsg /* 325 */
1641 .long _sys_setsockopt
1644 .long _sys_socketpair /* 330 */
1649 .long _sys_msgget /* 335 */
1654 .long _sys_shmdt /* 340 */
1657 .long _sys_sync_file_range
1659 .long _sys_vmsplice /* 345 */
1660 .long _sys_epoll_pwait
1661 .long _sys_utimensat
1663 .long _sys_timerfd_create
1664 .long _sys_eventfd /* 350 */
1667 .long _sys_fadvise64
1668 .long _sys_set_robust_list
1669 .long _sys_get_robust_list /* 355 */
1670 .long _sys_fallocate
1671 .long _sys_semtimedop
1672 .long _sys_timerfd_settime
1673 .long _sys_timerfd_gettime
1674 .long _sys_signalfd4 /* 360 */
1676 .long _sys_epoll_create1
1679 .long _sys_inotify_init1 /* 365 */
1682 .long _sys_rt_tgsigqueueinfo
1683 .long _sys_perf_event_open
1684 .long _sys_recvmmsg /* 370 */
1685 .long _sys_fanotify_init
1686 .long _sys_fanotify_mark
1687 .long _sys_prlimit64
1688 .long _sys_cacheflush
1689 .long _sys_name_to_handle_at /* 375 */
1690 .long _sys_open_by_handle_at
1691 .long _sys_clock_adjtime
1694 .long _sys_sendmmsg /* 380 */
1695 .long _sys_process_vm_readv
1696 .long _sys_process_vm_writev
1698 .rept NR_syscalls-(.-_sys_call_table)/4
1699 .long _sys_ni_syscall
1701 END(_sys_call_table)