blob: fb1795d5be2af2e9765f31c1c40fafd90257580e [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001/*
2 * File: arch/blackfin/mach-common/entry.S
3 * Based on:
4 * Author: Linus Torvalds
5 *
6 * Created: ?
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.
10 *
11 * Modified:
12 * Copyright 2004-2006 Analog Devices Inc.
13 *
14 * Bugs: Enter bugs at http://blackfin.uclinux.org/
15 *
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.
20 *
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.
25 *
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
30 */
31
Robin Getz2ebcade2007-10-09 17:24:30 +080032/* NOTE: This code handles signal-recognition, which happens every time
Bryan Wu1394f032007-05-06 14:50:22 -070033 * after a timer-interrupt and after each system call.
34 */
35
Mike Frysinger9cb07b22007-11-21 16:45:08 +080036#include <linux/init.h>
Bryan Wu1394f032007-05-06 14:50:22 -070037#include <linux/linkage.h>
Mike Frysinger1f83b8f2007-07-12 22:58:21 +080038#include <linux/unistd.h>
Bryan Wu1394f032007-05-06 14:50:22 -070039#include <asm/blackfin.h>
Bryan Wu1394f032007-05-06 14:50:22 -070040#include <asm/errno.h>
Bernd Schmidt5d750b92008-04-25 05:02:33 +080041#include <asm/fixed_code.h>
Bryan Wu1394f032007-05-06 14:50:22 -070042#include <asm/thread_info.h> /* TIF_NEED_RESCHED */
43#include <asm/asm-offsets.h>
Robin Getz669b7922007-06-21 16:34:08 +080044#include <asm/trace.h>
Robin Getz16aadcb2009-06-09 01:18:41 +000045#include <asm/traps.h>
Bryan Wu1394f032007-05-06 14:50:22 -070046
Bryan Wu639f6572008-08-27 10:51:02 +080047#include <asm/context.S>
Bryan Wu1394f032007-05-06 14:50:22 -070048
Mike Frysingerf0b5d122007-08-05 17:03:59 +080049#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
53#else
54# define EX_SCRATCH_REG CYCLES
55#endif
56
Bryan Wu1394f032007-05-06 14:50:22 -070057#ifdef CONFIG_EXCPT_IRQ_SYSC_L1
58.section .l1.text
59#else
60.text
61#endif
62
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.
66 */
Mike Frysinger1aafd902007-07-25 11:19:14 +080067#if ANOMALY_05000261
Robin Getzf26fbc42007-11-12 22:21:30 +080068#define _ex_dviol _ex_workaround_261
69#define _ex_dmiss _ex_workaround_261
70#define _ex_dmult _ex_workaround_261
71
72ENTRY(_ex_workaround_261)
Bryan Wu1394f032007-05-06 14:50:22 -070073 /*
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,
76 * handle it.
77 */
Robin Getzf26fbc42007-11-12 22:21:30 +080078 P4 = R7; /* Store EXCAUSE */
Graf Yang6b3087c2009-01-07 23:14:39 +080079
80 GET_PDA(p5, r7);
81 r7 = [p5 + PDA_LFRETX];
Bryan Wu1394f032007-05-06 14:50:22 -070082 r6 = retx;
Graf Yang6b3087c2009-01-07 23:14:39 +080083 [p5 + PDA_LFRETX] = r6;
Bryan Wu1394f032007-05-06 14:50:22 -070084 cc = r6 == r7;
Mike Frysinger8d6c2422007-11-21 15:53:49 +080085 if !cc jump _bfin_return_from_exception;
Bryan Wu1394f032007-05-06 14:50:22 -070086 /* fall through */
Robin Getzf26fbc42007-11-12 22:21:30 +080087 R7 = P4;
Robin Getz16aadcb2009-06-09 01:18:41 +000088 R6 = VEC_CPLB_M; /* Data CPLB Miss */
Robin Getzf26fbc42007-11-12 22:21:30 +080089 cc = R6 == R7;
90 if cc jump _ex_dcplb_miss (BP);
Robin Getz16aadcb2009-06-09 01:18:41 +000091#ifdef CONFIG_MPU
92 R6 = VEC_CPLB_VL; /* Data CPLB Violation */
Bernd Schmidtb97b8a92008-01-27 18:39:16 +080093 cc = R6 == R7;
94 if cc jump _ex_dcplb_viol (BP);
Robin Getz16aadcb2009-06-09 01:18:41 +000095#endif
96 /* Handle Data CPLB Protection Violation
Robin Getzf26fbc42007-11-12 22:21:30 +080097 * and Data CPLB Multiple Hits - Linux Trap Zero
98 */
99 jump _ex_trap_c;
100ENDPROC(_ex_workaround_261)
Bryan Wu1394f032007-05-06 14:50:22 -0700101
Robin Getzf26fbc42007-11-12 22:21:30 +0800102#else
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800103#ifdef CONFIG_MPU
104#define _ex_dviol _ex_dcplb_viol
105#else
Robin Getzf26fbc42007-11-12 22:21:30 +0800106#define _ex_dviol _ex_trap_c
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800107#endif
Robin Getzf26fbc42007-11-12 22:21:30 +0800108#define _ex_dmiss _ex_dcplb_miss
109#define _ex_dmult _ex_trap_c
110#endif
111
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800112
113ENTRY(_ex_dcplb_viol)
Robin Getzf26fbc42007-11-12 22:21:30 +0800114ENTRY(_ex_dcplb_miss)
115ENTRY(_ex_icplb_miss)
Bryan Wu1394f032007-05-06 14:50:22 -0700116 (R7:6,P5:4) = [sp++];
Bernd Schmidtdbdf20d2009-01-07 23:14:38 +0800117 /* We leave the previously pushed ASTAT on the stack. */
118 SAVE_CONTEXT_CPLB
119
Bernd Schmidt2a0c4fd2008-04-23 07:17:34 +0800120 /* We must load R1 here, _before_ DEBUG_HWTRACE_SAVE, since that
121 * will change the stack pointer. */
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800122 R0 = SEQSTAT;
123 R1 = SP;
Bernd Schmidtdbdf20d2009-01-07 23:14:38 +0800124
Bernd Schmidt2a0c4fd2008-04-23 07:17:34 +0800125 DEBUG_HWTRACE_SAVE(p5, r7)
Bernd Schmidtdbdf20d2009-01-07 23:14:38 +0800126
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800127 sp += -12;
128 call _cplb_hdr;
129 sp += 12;
130 CC = R0 == 0;
131 IF !CC JUMP _handle_bad_cplb;
Robin Getz0c7a6b22008-10-08 16:27:12 +0800132
133#ifdef CONFIG_DEBUG_DOUBLEFAULT
134 /* While we were processing this, did we double fault? */
135 r7 = SEQSTAT; /* reason code is in bit 5:0 */
136 r6.l = lo(SEQSTAT_EXCAUSE);
137 r6.h = hi(SEQSTAT_EXCAUSE);
138 r7 = r7 & r6;
139 r6 = 0x25;
140 CC = R7 == R6;
141 if CC JUMP _double_fault;
142#endif
143
Mike Frysinger80f31c82008-02-02 15:47:24 +0800144 DEBUG_HWTRACE_RESTORE(p5, r7)
Bernd Schmidtdbdf20d2009-01-07 23:14:38 +0800145 RESTORE_CONTEXT_CPLB
146 ASTAT = [SP++];
Mike Frysingerf0b5d122007-08-05 17:03:59 +0800147 SP = EX_SCRATCH_REG;
Bryan Wu1394f032007-05-06 14:50:22 -0700148 rtx;
Robin Getzf26fbc42007-11-12 22:21:30 +0800149ENDPROC(_ex_icplb_miss)
Bryan Wu1394f032007-05-06 14:50:22 -0700150
Bryan Wu1394f032007-05-06 14:50:22 -0700151ENTRY(_ex_syscall)
Bryan Wu1394f032007-05-06 14:50:22 -0700152 raise 15; /* invoked by TRAP #0, for sys call */
Robin Getz0c7a6b22008-10-08 16:27:12 +0800153 jump.s _bfin_return_from_exception;
Mike Frysinger51be24c2007-06-11 15:31:30 +0800154ENDPROC(_ex_syscall)
Bryan Wu1394f032007-05-06 14:50:22 -0700155
Bryan Wu1394f032007-05-06 14:50:22 -0700156ENTRY(_ex_single_step)
Bernd Schmidt0893f122008-05-07 11:41:26 +0800157 /* If we just returned from an interrupt, the single step event is
158 for the RTI instruction. */
Bryan Wu1394f032007-05-06 14:50:22 -0700159 r7 = retx;
160 r6 = reti;
161 cc = r7 == r6;
Bernd Schmidt0893f122008-05-07 11:41:26 +0800162 if cc jump _bfin_return_from_exception;
163
Jie Zhang5400c5a2008-08-05 17:33:38 +0800164#ifdef CONFIG_KGDB
Sonic Zhang0d1cdd72008-07-26 18:54:38 +0800165 /* Don't do single step in hardware exception handler */
166 p5.l = lo(IPEND);
167 p5.h = hi(IPEND);
168 r6 = [p5];
Sonic Zhangd6a29892008-08-05 18:28:26 +0800169 cc = bittst(r6, 4);
170 if cc jump _bfin_return_from_exception;
Sonic Zhang0d1cdd72008-07-26 18:54:38 +0800171 cc = bittst(r6, 5);
172 if cc jump _bfin_return_from_exception;
173
Sonic Zhang0d1cdd72008-07-26 18:54:38 +0800174 /* skip single step if current interrupt priority is higher than
175 * that of the first instruction, from which gdb starts single step */
176 r6 >>= 6;
177 r7 = 10;
178.Lfind_priority_start:
179 cc = bittst(r6, 0);
180 if cc jump .Lfind_priority_done;
181 r6 >>= 1;
182 r7 += -1;
183 cc = r7 == 0;
184 if cc jump .Lfind_priority_done;
185 jump.s .Lfind_priority_start;
186.Lfind_priority_done:
Sonic Zhanga5ac0122008-10-13 14:07:19 +0800187 p4.l = _kgdb_single_step;
188 p4.h = _kgdb_single_step;
Sonic Zhang0d1cdd72008-07-26 18:54:38 +0800189 r6 = [p4];
190 cc = r6 == 0;
191 if cc jump .Ldo_single_step;
192 r6 += -1;
193 cc = r6 < r7;
Sonic Zhangd6a29892008-08-05 18:28:26 +0800194 if cc jump 1f;
Sonic Zhang0d1cdd72008-07-26 18:54:38 +0800195.Ldo_single_step:
Sonic Zhangd6a29892008-08-05 18:28:26 +0800196#else
Bernd Schmidt0893f122008-05-07 11:41:26 +0800197 /* If we were in user mode, do the single step normally. */
Jie Zhang5400c5a2008-08-05 17:33:38 +0800198 p5.l = lo(IPEND);
199 p5.h = hi(IPEND);
Bernd Schmidt0893f122008-05-07 11:41:26 +0800200 r6 = [p5];
201 r7 = 0xffe0 (z);
202 r7 = r7 & r6;
203 cc = r7 == 0;
Jie Zhang5400c5a2008-08-05 17:33:38 +0800204 if !cc jump 1f;
Sonic Zhangd6a29892008-08-05 18:28:26 +0800205#endif
Robin Getzb9a38992009-05-18 18:33:26 +0000206#ifdef CONFIG_EXACT_HWERR
207 /* Read the ILAT, and to check to see if the process we are
208 * single stepping caused a previous hardware error
209 * If so, do not single step, (which lowers to IRQ5, and makes
210 * us miss the error).
211 */
212 p5.l = lo(ILAT);
213 p5.h = hi(ILAT);
214 r7 = [p5];
215 cc = bittst(r7, EVT_IVHW_P);
216 if cc jump 1f;
217#endif
Jie Zhang5400c5a2008-08-05 17:33:38 +0800218 /* Single stepping only a single instruction, so clear the trace
219 * bit here. */
220 r7 = syscfg;
Robin Getz19976602009-06-17 15:18:18 +0000221 bitclr (r7, SYSCFG_SSSTEP_P);
Jie Zhang5400c5a2008-08-05 17:33:38 +0800222 syscfg = R7;
223 jump _ex_trap_c;
224
2251:
Bernd Schmidt0893f122008-05-07 11:41:26 +0800226 /*
227 * We were in an interrupt handler. By convention, all of them save
228 * SYSCFG with their first instruction, so by checking whether our
229 * RETX points at the entry point, we can determine whether to allow
230 * a single step, or whether to clear SYSCFG.
231 *
232 * First, find out the interrupt level and the event vector for it.
233 */
234 p5.l = lo(EVT0);
235 p5.h = hi(EVT0);
236 p5 += -4;
2372:
238 r7 = rot r7 by -1;
239 p5 += 4;
240 if !cc jump 2b;
241
242 /* What we actually do is test for the _second_ instruction in the
243 * IRQ handler. That way, if there are insns following the restore
244 * of SYSCFG after leaving the handler, we will not turn off SYSCFG
245 * for them. */
246
247 r7 = [p5];
248 r7 += 2;
249 r6 = RETX;
250 cc = R7 == R6;
251 if !cc jump _bfin_return_from_exception;
252
Bryan Wu1394f032007-05-06 14:50:22 -0700253 r7 = syscfg;
Robin Getz19976602009-06-17 15:18:18 +0000254 bitclr (r7, SYSCFG_SSSTEP_P); /* Turn off single step */
Bryan Wu1394f032007-05-06 14:50:22 -0700255 syscfg = R7;
256
Jie Zhang5400c5a2008-08-05 17:33:38 +0800257 /* Fall through to _bfin_return_from_exception. */
Mike Frysinger46c87c32007-11-21 16:15:48 +0800258ENDPROC(_ex_single_step)
Bryan Wu1394f032007-05-06 14:50:22 -0700259
Mike Frysinger8d6c2422007-11-21 15:53:49 +0800260ENTRY(_bfin_return_from_exception)
Mike Frysinger1aafd902007-07-25 11:19:14 +0800261#if ANOMALY_05000257
Michael Hennerich8af10b72007-05-21 18:09:09 +0800262 R7=LC0;
263 LC0=R7;
264 R7=LC1;
265 LC1=R7;
266#endif
Robin Getz0c7a6b22008-10-08 16:27:12 +0800267
268#ifdef CONFIG_DEBUG_DOUBLEFAULT
269 /* While we were processing the current exception,
270 * did we cause another, and double fault?
271 */
272 r7 = SEQSTAT; /* reason code is in bit 5:0 */
273 r6.l = lo(SEQSTAT_EXCAUSE);
274 r6.h = hi(SEQSTAT_EXCAUSE);
275 r7 = r7 & r6;
Robin Getz16aadcb2009-06-09 01:18:41 +0000276 r6 = VEC_UNCOV;
Robin Getz0c7a6b22008-10-08 16:27:12 +0800277 CC = R7 == R6;
278 if CC JUMP _double_fault;
Robin Getz0c7a6b22008-10-08 16:27:12 +0800279#endif
280
Bryan Wu1394f032007-05-06 14:50:22 -0700281 (R7:6,P5:4) = [sp++];
282 ASTAT = [sp++];
Mike Frysingerf0b5d122007-08-05 17:03:59 +0800283 sp = EX_SCRATCH_REG;
Bryan Wu1394f032007-05-06 14:50:22 -0700284 rtx;
Mike Frysinger46c87c32007-11-21 16:15:48 +0800285ENDPROC(_bfin_return_from_exception)
Bryan Wu1394f032007-05-06 14:50:22 -0700286
287ENTRY(_handle_bad_cplb)
Bernd Schmidt2a0c4fd2008-04-23 07:17:34 +0800288 DEBUG_HWTRACE_RESTORE(p5, r7)
Bryan Wu1394f032007-05-06 14:50:22 -0700289 /* To get here, we just tried and failed to change a CPLB
290 * so, handle things in trap_c (C code), by lowering to
291 * IRQ5, just like we normally do. Since this is not a
292 * "normal" return path, we have a do alot of stuff to
293 * the stack to get ready so, we can fall through - we
294 * need to make a CPLB exception look like a normal exception
295 */
Bernd Schmidtdbdf20d2009-01-07 23:14:38 +0800296 RESTORE_CONTEXT_CPLB
297 /* ASTAT is still on the stack, where it is needed. */
Mike Frysinger80f31c82008-02-02 15:47:24 +0800298 [--sp] = (R7:6,P5:4);
Bryan Wu1394f032007-05-06 14:50:22 -0700299
Mike Frysinger1ffe6642007-08-05 17:14:04 +0800300ENTRY(_ex_replaceable)
301 nop;
302
Bryan Wu1394f032007-05-06 14:50:22 -0700303ENTRY(_ex_trap_c)
Robin Getz2ebcade2007-10-09 17:24:30 +0800304 /* Make sure we are not in a double fault */
305 p4.l = lo(IPEND);
306 p4.h = hi(IPEND);
307 r7 = [p4];
308 CC = BITTST (r7, 5);
309 if CC jump _double_fault;
310
Bryan Wu1394f032007-05-06 14:50:22 -0700311 /* Call C code (trap_c) to handle the exception, which most
312 * likely involves sending a signal to the current process.
313 * To avoid double faults, lower our priority to IRQ5 first.
314 */
315 P5.h = _exception_to_level5;
316 P5.l = _exception_to_level5;
317 p4.l = lo(EVT5);
318 p4.h = hi(EVT5);
319 [p4] = p5;
320 csync;
321
Graf Yang6b3087c2009-01-07 23:14:39 +0800322 GET_PDA(p5, r6);
Robin Getz0c7a6b22008-10-08 16:27:12 +0800323#ifndef CONFIG_DEBUG_DOUBLEFAULT
Graf Yang6b3087c2009-01-07 23:14:39 +0800324
Robin Getz0c7a6b22008-10-08 16:27:12 +0800325 /*
326 * Save these registers, as they are only valid in exception context
327 * (where we are now - as soon as we defer to IRQ5, they can change)
328 * DCPLB_STATUS and ICPLB_STATUS are also only valid in EVT3,
329 * but they are not very interesting, so don't save them
330 */
331
Bernd Schmidt5d750b92008-04-25 05:02:33 +0800332 p4.l = lo(DCPLB_FAULT_ADDR);
333 p4.h = hi(DCPLB_FAULT_ADDR);
334 r7 = [p4];
Graf Yang6b3087c2009-01-07 23:14:39 +0800335 [p5 + PDA_DCPLB] = r7;
Bernd Schmidt5d750b92008-04-25 05:02:33 +0800336
Graf Yang6b3087c2009-01-07 23:14:39 +0800337 p4.l = lo(ICPLB_FAULT_ADDR);
338 p4.h = hi(ICPLB_FAULT_ADDR);
339 r6 = [p4];
340 [p5 + PDA_ICPLB] = r6;
Bernd Schmidt5d750b92008-04-25 05:02:33 +0800341
Bernd Schmidt5d750b92008-04-25 05:02:33 +0800342 r6 = retx;
Graf Yang6b3087c2009-01-07 23:14:39 +0800343 [p5 + PDA_RETX] = r6;
Robin Getz0c7a6b22008-10-08 16:27:12 +0800344#endif
Robin Getz19976602009-06-17 15:18:18 +0000345 /* Save the state of single stepping */
Bernd Schmidt0893f122008-05-07 11:41:26 +0800346 r6 = SYSCFG;
Graf Yang6b3087c2009-01-07 23:14:39 +0800347 [p5 + PDA_SYSCFG] = r6;
Robin Getz19976602009-06-17 15:18:18 +0000348 /* Clear it while we handle the exception in IRQ5 mode */
349 BITCLR(r6, SYSCFG_SSSTEP_P);
Bernd Schmidt0893f122008-05-07 11:41:26 +0800350 SYSCFG = r6;
Bernd Schmidt5d750b92008-04-25 05:02:33 +0800351
Bryan Wu1394f032007-05-06 14:50:22 -0700352 /* Disable all interrupts, but make sure level 5 is enabled so
353 * we can switch to that level. Save the old mask. */
354 cli r6;
Graf Yang6b3087c2009-01-07 23:14:39 +0800355 [p5 + PDA_EXIMASK] = r6;
Bernd Schmidt0893f122008-05-07 11:41:26 +0800356
357 p4.l = lo(SAFE_USER_INSTRUCTION);
358 p4.h = hi(SAFE_USER_INSTRUCTION);
359 retx = p4;
360
Bryan Wu1394f032007-05-06 14:50:22 -0700361 r6 = 0x3f;
362 sti r6;
363
Bryan Wu1394f032007-05-06 14:50:22 -0700364 raise 5;
Robin Getz0c7a6b22008-10-08 16:27:12 +0800365 jump.s _bfin_return_from_exception;
Mike Frysinger51be24c2007-06-11 15:31:30 +0800366ENDPROC(_ex_trap_c)
Bryan Wu1394f032007-05-06 14:50:22 -0700367
Robin Getz2ebcade2007-10-09 17:24:30 +0800368/* We just realized we got an exception, while we were processing a different
Mike Frysinger33c86912008-11-18 17:48:22 +0800369 * exception. This is a unrecoverable event, so crash.
370 * Note: this cannot be ENTRY() as we jump here with "if cc jump" ...
Robin Getz2ebcade2007-10-09 17:24:30 +0800371 */
Robin Getz19976602009-06-17 15:18:18 +0000372ENTRY(_double_fault)
Robin Getz0c7a6b22008-10-08 16:27:12 +0800373 /* Turn caches & protection off, to ensure we don't get any more
374 * double exceptions
375 */
Robin Getz2ebcade2007-10-09 17:24:30 +0800376
Robin Getz0c7a6b22008-10-08 16:27:12 +0800377 P4.L = LO(IMEM_CONTROL);
378 P4.H = HI(IMEM_CONTROL);
Robin Getz2ebcade2007-10-09 17:24:30 +0800379
Robin Getz0c7a6b22008-10-08 16:27:12 +0800380 R5 = [P4]; /* Control Register*/
381 BITCLR(R5,ENICPLB_P);
382 SSYNC; /* SSYNC required before writing to IMEM_CONTROL. */
383 .align 8;
384 [P4] = R5;
385 SSYNC;
Robin Getz2ebcade2007-10-09 17:24:30 +0800386
Robin Getz0c7a6b22008-10-08 16:27:12 +0800387 P4.L = LO(DMEM_CONTROL);
388 P4.H = HI(DMEM_CONTROL);
389 R5 = [P4];
390 BITCLR(R5,ENDCPLB_P);
391 SSYNC; /* SSYNC required before writing to DMEM_CONTROL. */
392 .align 8;
393 [P4] = R5;
394 SSYNC;
Robin Getz2ebcade2007-10-09 17:24:30 +0800395
Robin Getz0c7a6b22008-10-08 16:27:12 +0800396 /* Fix up the stack */
397 (R7:6,P5:4) = [sp++];
398 ASTAT = [sp++];
399 SP = EX_SCRATCH_REG;
Robin Getz2ebcade2007-10-09 17:24:30 +0800400
Robin Getz0c7a6b22008-10-08 16:27:12 +0800401 /* We should be out of the exception stack, and back down into
402 * kernel or user space stack
403 */
404 SAVE_ALL_SYS
Robin Getz2ebcade2007-10-09 17:24:30 +0800405
Bernd Schmidtddb3f002008-05-07 11:41:26 +0800406 /* The dumping functions expect the return address in the RETI
407 * slot. */
408 r6 = retx;
409 [sp + PT_PC] = r6;
410
Robin Getz0c7a6b22008-10-08 16:27:12 +0800411 r0 = sp; /* stack frame pt_regs pointer argument ==> r0 */
412 SP += -12;
413 call _double_fault_c;
414 SP += 12;
Robin Getz2ebcade2007-10-09 17:24:30 +0800415.L_double_fault_panic:
416 JUMP .L_double_fault_panic
417
418ENDPROC(_double_fault)
419
Bryan Wu1394f032007-05-06 14:50:22 -0700420ENTRY(_exception_to_level5)
421 SAVE_ALL_SYS
422
Graf Yang6b3087c2009-01-07 23:14:39 +0800423 GET_PDA(p4, r7); /* Fetch current PDA */
424 r6 = [p4 + PDA_RETX];
Bernd Schmidt5d750b92008-04-25 05:02:33 +0800425 [sp + PT_PC] = r6;
426
Graf Yang6b3087c2009-01-07 23:14:39 +0800427 r6 = [p4 + PDA_SYSCFG];
Bernd Schmidt0893f122008-05-07 11:41:26 +0800428 [sp + PT_SYSCFG] = r6;
429
Bryan Wu1394f032007-05-06 14:50:22 -0700430 /* Restore interrupt mask. We haven't pushed RETI, so this
431 * doesn't enable interrupts until we return from this handler. */
Graf Yang6b3087c2009-01-07 23:14:39 +0800432 r6 = [p4 + PDA_EXIMASK];
Bryan Wu1394f032007-05-06 14:50:22 -0700433 sti r6;
434
435 /* Restore the hardware error vector. */
436 P5.h = _evt_ivhw;
437 P5.l = _evt_ivhw;
438 p4.l = lo(EVT5);
439 p4.h = hi(EVT5);
440 [p4] = p5;
441 csync;
442
443 p2.l = lo(IPEND);
444 p2.h = hi(IPEND);
445 csync;
446 r0 = [p2]; /* Read current IPEND */
447 [sp + PT_IPEND] = r0; /* Store IPEND */
448
Bryan Wu1394f032007-05-06 14:50:22 -0700449 r0 = sp; /* stack frame pt_regs pointer argument ==> r0 */
450 SP += -12;
451 call _trap_c;
452 SP += 12;
453
Robin Getz0c7a6b22008-10-08 16:27:12 +0800454#ifdef CONFIG_DEBUG_DOUBLEFAULT
455 /* Grab ILAT */
456 p2.l = lo(ILAT);
457 p2.h = hi(ILAT);
458 r0 = [p2];
459 r1 = 0x20; /* Did I just cause anther HW error? */
460 r0 = r0 & r1;
461 CC = R0 == R1;
462 if CC JUMP _double_fault;
463#endif
464
Bryan Wu1394f032007-05-06 14:50:22 -0700465 call _ret_from_exception;
466 RESTORE_ALL_SYS
467 rti;
Mike Frysinger51be24c2007-06-11 15:31:30 +0800468ENDPROC(_exception_to_level5)
Bryan Wu1394f032007-05-06 14:50:22 -0700469
470ENTRY(_trap) /* Exception: 4th entry into system event table(supervisor mode)*/
471 /* Since the kernel stack can be anywhere, it's not guaranteed to be
472 * covered by a CPLB. Switch to an exception stack; use RETN as a
473 * scratch register (for want of a better option).
474 */
Mike Frysingerf0b5d122007-08-05 17:03:59 +0800475 EX_SCRATCH_REG = sp;
Graf Yang6b3087c2009-01-07 23:14:39 +0800476 GET_PDA_SAFE(sp);
477 sp = [sp + PDA_EXSTACK]
Bryan Wu1394f032007-05-06 14:50:22 -0700478 /* Try to deal with syscalls quickly. */
479 [--sp] = ASTAT;
Mike Frysinger80f31c82008-02-02 15:47:24 +0800480 [--sp] = (R7:6,P5:4);
Robin Getz0c7a6b22008-10-08 16:27:12 +0800481
Robin Getzb9a38992009-05-18 18:33:26 +0000482#ifdef CONFIG_EXACT_HWERR
483 /* Make sure all pending read/writes complete. This will ensure any
484 * accesses which could cause hardware errors completes, and signal
485 * the the hardware before we do something silly, like crash the
486 * kernel. We don't need to work around anomaly 05000312, since
487 * we are already atomic
488 */
489 ssync;
490#endif
491
Michael Hennerich5e9e7682008-10-09 12:31:03 +0800492#if ANOMALY_05000283 || ANOMALY_05000315
493 cc = r7 == r7;
494 p5.h = HI(CHIPID);
495 p5.l = LO(CHIPID);
496 if cc jump 1f;
497 r7.l = W[p5];
4981:
499#endif
500
Robin Getz0c7a6b22008-10-08 16:27:12 +0800501#ifdef CONFIG_DEBUG_DOUBLEFAULT
502 /*
503 * Save these registers, as they are only valid in exception context
504 * (where we are now - as soon as we defer to IRQ5, they can change)
505 * DCPLB_STATUS and ICPLB_STATUS are also only valid in EVT3,
506 * but they are not very interesting, so don't save them
507 */
508
Graf Yang6b3087c2009-01-07 23:14:39 +0800509 GET_PDA(p5, r7);
Robin Getz0c7a6b22008-10-08 16:27:12 +0800510 p4.l = lo(DCPLB_FAULT_ADDR);
511 p4.h = hi(DCPLB_FAULT_ADDR);
512 r7 = [p4];
Graf Yang6b3087c2009-01-07 23:14:39 +0800513 [p5 + PDA_DCPLB] = r7;
Robin Getz0c7a6b22008-10-08 16:27:12 +0800514
Graf Yang6b3087c2009-01-07 23:14:39 +0800515 p4.l = lo(ICPLB_FAULT_ADDR);
516 p4.h = hi(ICPLB_FAULT_ADDR);
517 r7 = [p4];
518 [p5 + PDA_ICPLB] = r7;
Robin Getz0c7a6b22008-10-08 16:27:12 +0800519
Robin Getz0c7a6b22008-10-08 16:27:12 +0800520 r6 = retx;
Graf Yang6b3087c2009-01-07 23:14:39 +0800521 [p5 + PDA_RETX] = r6;
Robin Getz0c7a6b22008-10-08 16:27:12 +0800522
Bryan Wu1394f032007-05-06 14:50:22 -0700523 r7 = SEQSTAT; /* reason code is in bit 5:0 */
Graf Yang6b3087c2009-01-07 23:14:39 +0800524 [p5 + PDA_SEQSTAT] = r7;
Robin Getz0c7a6b22008-10-08 16:27:12 +0800525#else
526 r7 = SEQSTAT; /* reason code is in bit 5:0 */
527#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700528 r6.l = lo(SEQSTAT_EXCAUSE);
529 r6.h = hi(SEQSTAT_EXCAUSE);
530 r7 = r7 & r6;
Mike Frysinger1ffe6642007-08-05 17:14:04 +0800531 p5.h = _ex_table;
532 p5.l = _ex_table;
Bryan Wu1394f032007-05-06 14:50:22 -0700533 p4 = r7;
534 p5 = p5 + (p4 << 2);
535 p4 = [p5];
536 jump (p4);
537
538.Lbadsys:
539 r7 = -ENOSYS; /* signextending enough */
540 [sp + PT_R0] = r7; /* return value from system call */
541 jump .Lsyscall_really_exit;
Mike Frysinger51be24c2007-06-11 15:31:30 +0800542ENDPROC(_trap)
Bryan Wu1394f032007-05-06 14:50:22 -0700543
544ENTRY(_kernel_execve)
545 link SIZEOF_PTREGS;
546 p0 = sp;
547 r3 = SIZEOF_PTREGS / 4;
548 r4 = 0(x);
Graf Yang6b3087c2009-01-07 23:14:39 +0800549.Lclear_regs:
Bryan Wu1394f032007-05-06 14:50:22 -0700550 [p0++] = r4;
551 r3 += -1;
552 cc = r3 == 0;
Graf Yang6b3087c2009-01-07 23:14:39 +0800553 if !cc jump .Lclear_regs (bp);
Bryan Wu1394f032007-05-06 14:50:22 -0700554
555 p0 = sp;
556 sp += -16;
557 [sp + 12] = p0;
558 call _do_execve;
559 SP += 16;
560 cc = r0 == 0;
Graf Yang6b3087c2009-01-07 23:14:39 +0800561 if ! cc jump .Lexecve_failed;
Bryan Wu1394f032007-05-06 14:50:22 -0700562 /* Success. Copy our temporary pt_regs to the top of the kernel
563 * stack and do a normal exception return.
564 */
565 r1 = sp;
566 r0 = (-KERNEL_STACK_SIZE) (x);
567 r1 = r1 & r0;
568 p2 = r1;
569 p3 = [p2];
570 r0 = KERNEL_STACK_SIZE - 4 (z);
571 p1 = r0;
572 p1 = p1 + p2;
573
574 p0 = fp;
575 r4 = [p0--];
576 r3 = SIZEOF_PTREGS / 4;
Graf Yang6b3087c2009-01-07 23:14:39 +0800577.Lcopy_regs:
Bryan Wu1394f032007-05-06 14:50:22 -0700578 r4 = [p0--];
579 [p1--] = r4;
580 r3 += -1;
581 cc = r3 == 0;
Graf Yang6b3087c2009-01-07 23:14:39 +0800582 if ! cc jump .Lcopy_regs (bp);
Bryan Wu1394f032007-05-06 14:50:22 -0700583
584 r0 = (KERNEL_STACK_SIZE - SIZEOF_PTREGS) (z);
585 p1 = r0;
586 p1 = p1 + p2;
587 sp = p1;
588 r0 = syscfg;
589 [SP + PT_SYSCFG] = r0;
590 [p3 + (TASK_THREAD + THREAD_KSP)] = sp;
591
592 RESTORE_CONTEXT;
593 rti;
Graf Yang6b3087c2009-01-07 23:14:39 +0800594.Lexecve_failed:
Bryan Wu1394f032007-05-06 14:50:22 -0700595 unlink;
596 rts;
Mike Frysinger51be24c2007-06-11 15:31:30 +0800597ENDPROC(_kernel_execve)
Bryan Wu1394f032007-05-06 14:50:22 -0700598
599ENTRY(_system_call)
600 /* Store IPEND */
601 p2.l = lo(IPEND);
602 p2.h = hi(IPEND);
603 csync;
604 r0 = [p2];
605 [sp + PT_IPEND] = r0;
606
607 /* Store RETS for now */
608 r0 = rets;
609 [sp + PT_RESERVED] = r0;
610 /* Set the stack for the current process */
611 r7 = sp;
612 r6.l = lo(ALIGN_PAGE_MASK);
613 r6.h = hi(ALIGN_PAGE_MASK);
614 r7 = r7 & r6; /* thread_info */
615 p2 = r7;
616 p2 = [p2];
617
618 [p2+(TASK_THREAD+THREAD_KSP)] = sp;
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800619#ifdef CONFIG_IPIPE
620 r0 = sp;
621 SP += -12;
622 call ___ipipe_syscall_root;
623 SP += 12;
624 cc = r0 == 1;
625 if cc jump .Lsyscall_really_exit;
626 cc = r0 == -1;
627 if cc jump .Lresume_userspace;
628 r3 = [sp + PT_R3];
629 r4 = [sp + PT_R4];
630 p0 = [sp + PT_ORIG_P0];
631#endif /* CONFIG_IPIPE */
Bryan Wu1394f032007-05-06 14:50:22 -0700632
633 /* Check the System Call */
634 r7 = __NR_syscall;
635 /* System call number is passed in P0 */
636 r6 = p0;
637 cc = r6 < r7;
638 if ! cc jump .Lbadsys;
639
640 /* are we tracing syscalls?*/
641 r7 = sp;
642 r6.l = lo(ALIGN_PAGE_MASK);
643 r6.h = hi(ALIGN_PAGE_MASK);
644 r7 = r7 & r6;
645 p2 = r7;
646 r7 = [p2+TI_FLAGS];
647 CC = BITTST(r7,TIF_SYSCALL_TRACE);
648 if CC JUMP _sys_trace;
649
650 /* Execute the appropriate system call */
651
652 p4 = p0;
653 p5.l = _sys_call_table;
654 p5.h = _sys_call_table;
655 p5 = p5 + (p4 << 2);
656 r0 = [sp + PT_R0];
657 r1 = [sp + PT_R1];
658 r2 = [sp + PT_R2];
659 p5 = [p5];
660
661 [--sp] = r5;
662 [--sp] = r4;
663 [--sp] = r3;
664 SP += -12;
665 call (p5);
666 SP += 24;
667 [sp + PT_R0] = r0;
668
669.Lresume_userspace:
670 r7 = sp;
671 r4.l = lo(ALIGN_PAGE_MASK);
672 r4.h = hi(ALIGN_PAGE_MASK);
673 r7 = r7 & r4; /* thread_info->flags */
674 p5 = r7;
675.Lresume_userspace_1:
676 /* Disable interrupts. */
677 [--sp] = reti;
678 reti = [sp++];
679
680 r7 = [p5 + TI_FLAGS];
681 r4.l = lo(_TIF_WORK_MASK);
682 r4.h = hi(_TIF_WORK_MASK);
683 r7 = r7 & r4;
684
685.Lsyscall_resched:
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800686#ifdef CONFIG_IPIPE
687 cc = BITTST(r7, TIF_IRQ_SYNC);
688 if !cc jump .Lsyscall_no_irqsync;
689 [--sp] = reti;
690 r0 = [sp++];
691 SP += -12;
692 call ___ipipe_sync_root;
693 SP += 12;
694 jump .Lresume_userspace_1;
695.Lsyscall_no_irqsync:
696#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700697 cc = BITTST(r7, TIF_NEED_RESCHED);
698 if !cc jump .Lsyscall_sigpending;
699
700 /* Reenable interrupts. */
701 [--sp] = reti;
702 r0 = [sp++];
703
704 SP += -12;
705 call _schedule;
706 SP += 12;
707
708 jump .Lresume_userspace_1;
709
710.Lsyscall_sigpending:
711 cc = BITTST(r7, TIF_RESTORE_SIGMASK);
712 if cc jump .Lsyscall_do_signals;
713 cc = BITTST(r7, TIF_SIGPENDING);
714 if !cc jump .Lsyscall_really_exit;
715.Lsyscall_do_signals:
716 /* Reenable interrupts. */
717 [--sp] = reti;
718 r0 = [sp++];
719
720 r0 = sp;
721 SP += -12;
722 call _do_signal;
723 SP += 12;
724
725.Lsyscall_really_exit:
726 r5 = [sp + PT_RESERVED];
727 rets = r5;
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800728#ifdef CONFIG_IPIPE
729 [--sp] = reti;
730 r5 = [sp++];
731#endif /* CONFIG_IPIPE */
Bryan Wu1394f032007-05-06 14:50:22 -0700732 rts;
Mike Frysinger51be24c2007-06-11 15:31:30 +0800733ENDPROC(_system_call)
Bryan Wu1394f032007-05-06 14:50:22 -0700734
Mike Frysinger47664c12008-10-09 15:32:18 +0800735/* Do not mark as ENTRY() to avoid error in assembler ...
736 * this symbol need not be global anyways, so ...
737 */
Bryan Wu1394f032007-05-06 14:50:22 -0700738_sys_trace:
739 call _syscall_trace;
740
741 /* Execute the appropriate system call */
742
743 p4 = [SP + PT_P0];
744 p5.l = _sys_call_table;
745 p5.h = _sys_call_table;
746 p5 = p5 + (p4 << 2);
747 r0 = [sp + PT_R0];
748 r1 = [sp + PT_R1];
749 r2 = [sp + PT_R2];
750 r3 = [sp + PT_R3];
751 r4 = [sp + PT_R4];
752 r5 = [sp + PT_R5];
753 p5 = [p5];
754
755 [--sp] = r5;
756 [--sp] = r4;
757 [--sp] = r3;
758 SP += -12;
759 call (p5);
760 SP += 24;
761 [sp + PT_R0] = r0;
762
763 call _syscall_trace;
764 jump .Lresume_userspace;
Mike Frysinger51be24c2007-06-11 15:31:30 +0800765ENDPROC(_sys_trace)
Bryan Wu1394f032007-05-06 14:50:22 -0700766
767ENTRY(_resume)
768 /*
769 * Beware - when entering resume, prev (the current task) is
770 * in r0, next (the new task) is in r1.
771 */
772 p0 = r0;
773 p1 = r1;
774 [--sp] = rets;
775 [--sp] = fp;
776 [--sp] = (r7:4, p5:3);
777
778 /* save usp */
779 p2 = usp;
780 [p0+(TASK_THREAD+THREAD_USP)] = p2;
781
782 /* save current kernel stack pointer */
783 [p0+(TASK_THREAD+THREAD_KSP)] = sp;
784
785 /* save program counter */
786 r1.l = _new_old_task;
787 r1.h = _new_old_task;
788 [p0+(TASK_THREAD+THREAD_PC)] = r1;
789
790 /* restore the kernel stack pointer */
791 sp = [p1+(TASK_THREAD+THREAD_KSP)];
792
793 /* restore user stack pointer */
794 p0 = [p1+(TASK_THREAD+THREAD_USP)];
795 usp = p0;
796
797 /* restore pc */
798 p0 = [p1+(TASK_THREAD+THREAD_PC)];
799 jump (p0);
800
801 /*
802 * Following code actually lands up in a new (old) task.
803 */
804
805_new_old_task:
806 (r7:4, p5:3) = [sp++];
807 fp = [sp++];
808 rets = [sp++];
809
810 /*
811 * When we come out of resume, r0 carries "old" task, becuase we are
812 * in "new" task.
813 */
814 rts;
Mike Frysinger51be24c2007-06-11 15:31:30 +0800815ENDPROC(_resume)
Bryan Wu1394f032007-05-06 14:50:22 -0700816
817ENTRY(_ret_from_exception)
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800818#ifdef CONFIG_IPIPE
819 [--sp] = rets;
820 SP += -12;
821 call ___ipipe_check_root
822 SP += 12
823 rets = [sp++];
824 cc = r0 == 0;
825 if cc jump 4f; /* not on behalf of Linux, get out */
826#endif /* CONFIG_IPIPE */
Bryan Wu1394f032007-05-06 14:50:22 -0700827 p2.l = lo(IPEND);
828 p2.h = hi(IPEND);
829
830 csync;
831 r0 = [p2];
832 [sp + PT_IPEND] = r0;
833
8341:
Robin Getzd5c4b5e2007-12-21 17:49:53 +0800835 r2 = LO(~0x37) (Z);
Bryan Wu1394f032007-05-06 14:50:22 -0700836 r0 = r2 & r0;
837 cc = r0 == 0;
838 if !cc jump 4f; /* if not return to user mode, get out */
839
840 /* Make sure any pending system call or deferred exception
841 * return in ILAT for this process to get executed, otherwise
842 * in case context switch happens, system call of
843 * first process (i.e in ILAT) will be carried
844 * forward to the switched process
845 */
846
847 p2.l = lo(ILAT);
848 p2.h = hi(ILAT);
849 r0 = [p2];
850 r1 = (EVT_IVG14 | EVT_IVG15) (z);
851 r0 = r0 & r1;
852 cc = r0 == 0;
853 if !cc jump 5f;
854
855 /* Set the stack for the current process */
856 r7 = sp;
857 r4.l = lo(ALIGN_PAGE_MASK);
858 r4.h = hi(ALIGN_PAGE_MASK);
859 r7 = r7 & r4; /* thread_info->flags */
860 p5 = r7;
861 r7 = [p5 + TI_FLAGS];
862 r4.l = lo(_TIF_WORK_MASK);
863 r4.h = hi(_TIF_WORK_MASK);
864 r7 = r7 & r4;
865 cc = r7 == 0;
866 if cc jump 4f;
867
868 p0.l = lo(EVT15);
869 p0.h = hi(EVT15);
870 p1.l = _schedule_and_signal;
871 p1.h = _schedule_and_signal;
872 [p0] = p1;
873 csync;
Robin Getzb9a38992009-05-18 18:33:26 +0000874 raise 15; /* raise evt15 to do signal or reschedule */
Bryan Wu1394f032007-05-06 14:50:22 -07008754:
876 r0 = syscfg;
Robin Getz19976602009-06-17 15:18:18 +0000877 bitclr(r0, SYSCFG_SSSTEP_P); /* Turn off single step */
Bryan Wu1394f032007-05-06 14:50:22 -0700878 syscfg = r0;
8795:
880 rts;
Mike Frysinger51be24c2007-06-11 15:31:30 +0800881ENDPROC(_ret_from_exception)
Bryan Wu1394f032007-05-06 14:50:22 -0700882
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800883#ifdef CONFIG_IPIPE
884
885_sync_root_irqs:
886 [--sp] = reti; /* Reenable interrupts */
887 r0 = [sp++];
888 jump.l ___ipipe_sync_root
889
890_resume_kernel_from_int:
891 r0.l = _sync_root_irqs
892 r0.h = _sync_root_irqs
893 [--sp] = rets;
894 [--sp] = ( r7:4, p5:3 );
895 SP += -12;
896 call ___ipipe_call_irqtail
897 SP += 12;
898 ( r7:4, p5:3 ) = [sp++];
899 rets = [sp++];
900 rts
901#else
902#define _resume_kernel_from_int 2f
903#endif
904
Bryan Wu1394f032007-05-06 14:50:22 -0700905ENTRY(_return_from_int)
906 /* If someone else already raised IRQ 15, do nothing. */
907 csync;
908 p2.l = lo(ILAT);
909 p2.h = hi(ILAT);
910 r0 = [p2];
911 cc = bittst (r0, EVT_IVG15_P);
912 if cc jump 2f;
913
914 /* if not return to user mode, get out */
915 p2.l = lo(IPEND);
916 p2.h = hi(IPEND);
917 r0 = [p2];
918 r1 = 0x17(Z);
919 r2 = ~r1;
920 r2.h = 0;
921 r0 = r2 & r0;
922 r1 = 1;
923 r1 = r0 - r1;
924 r2 = r0 & r1;
925 cc = r2 == 0;
Philippe Gerum9bd50df2009-03-04 16:52:38 +0800926 if !cc jump _resume_kernel_from_int;
Bryan Wu1394f032007-05-06 14:50:22 -0700927
928 /* Lower the interrupt level to 15. */
929 p0.l = lo(EVT15);
930 p0.h = hi(EVT15);
931 p1.l = _schedule_and_signal_from_int;
932 p1.h = _schedule_and_signal_from_int;
933 [p0] = p1;
934 csync;
Robin Getzb9a38992009-05-18 18:33:26 +0000935#if ANOMALY_05000281 || ANOMALY_05000461
Bernd Schmidt5d750b92008-04-25 05:02:33 +0800936 r0.l = lo(SAFE_USER_INSTRUCTION);
937 r0.h = hi(SAFE_USER_INSTRUCTION);
Bryan Wu1394f032007-05-06 14:50:22 -0700938 reti = r0;
939#endif
940 r0 = 0x801f (z);
941 STI r0;
942 raise 15; /* raise evt15 to do signal or reschedule */
943 rti;
9442:
945 rts;
Mike Frysinger51be24c2007-06-11 15:31:30 +0800946ENDPROC(_return_from_int)
Bryan Wu1394f032007-05-06 14:50:22 -0700947
948ENTRY(_lower_to_irq14)
Robin Getzb9a38992009-05-18 18:33:26 +0000949#if ANOMALY_05000281 || ANOMALY_05000461
Bernd Schmidt5d750b92008-04-25 05:02:33 +0800950 r0.l = lo(SAFE_USER_INSTRUCTION);
951 r0.h = hi(SAFE_USER_INSTRUCTION);
Bryan Wu1394f032007-05-06 14:50:22 -0700952 reti = r0;
953#endif
Robin Getzb9a38992009-05-18 18:33:26 +0000954
955#ifdef CONFIG_DEBUG_HWERR
956 /* enable irq14 & hwerr interrupt, until we transition to _evt14_softirq */
957 r0 = (EVT_IVG14 | EVT_IVHW | EVT_IRPTEN | EVT_EVX | EVT_NMI | EVT_RST | EVT_EMU);
958#else
959 /* Only enable irq14 interrupt, until we transition to _evt14_softirq */
960 r0 = (EVT_IVG14 | EVT_IRPTEN | EVT_EVX | EVT_NMI | EVT_RST | EVT_EMU);
961#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700962 sti r0;
963 raise 14;
964 rti;
Robin Getzb9a38992009-05-18 18:33:26 +0000965ENDPROC(_lower_to_irq14)
966
Bryan Wu1394f032007-05-06 14:50:22 -0700967ENTRY(_evt14_softirq)
968#ifdef CONFIG_DEBUG_HWERR
Robin Getzb9a38992009-05-18 18:33:26 +0000969 r0 = (EVT_IVHW | EVT_IRPTEN | EVT_EVX | EVT_NMI | EVT_RST | EVT_EMU);
Bryan Wu1394f032007-05-06 14:50:22 -0700970 sti r0;
971#else
972 cli r0;
973#endif
974 [--sp] = RETI;
975 SP += 4;
976 rts;
Robin Getzb9a38992009-05-18 18:33:26 +0000977ENDPROC(_evt14_softirq)
Bryan Wu1394f032007-05-06 14:50:22 -0700978
Robin Getzb9a38992009-05-18 18:33:26 +0000979ENTRY(_schedule_and_signal_from_int)
Bryan Wu1394f032007-05-06 14:50:22 -0700980 /* To end up here, vector 15 was changed - so we have to change it
981 * back.
982 */
983 p0.l = lo(EVT15);
984 p0.h = hi(EVT15);
985 p1.l = _evt_system_call;
986 p1.h = _evt_system_call;
987 [p0] = p1;
988 csync;
Bernd Schmidtc8244982007-05-21 18:09:33 +0800989
990 /* Set orig_p0 to -1 to indicate this isn't the end of a syscall. */
991 r0 = -1 (x);
992 [sp + PT_ORIG_P0] = r0;
993
Bryan Wu1394f032007-05-06 14:50:22 -0700994 p1 = rets;
995 [sp + PT_RESERVED] = p1;
996
Graf Yang6b3087c2009-01-07 23:14:39 +0800997#ifdef CONFIG_SMP
998 GET_PDA(p0, r0); /* Fetch current PDA (can't migrate to other CPU here) */
999 r0 = [p0 + PDA_IRQFLAGS];
1000#else
Mike Frysinger40059782008-11-18 17:48:22 +08001001 p0.l = _bfin_irq_flags;
1002 p0.h = _bfin_irq_flags;
Bryan Wu1394f032007-05-06 14:50:22 -07001003 r0 = [p0];
Graf Yang6b3087c2009-01-07 23:14:39 +08001004#endif
Bryan Wu1394f032007-05-06 14:50:22 -07001005 sti r0;
1006
Bernd Schmidt7adfb582007-06-21 11:34:16 +08001007 r0 = sp;
1008 sp += -12;
1009 call _finish_atomic_sections;
1010 sp += 12;
Bryan Wu1394f032007-05-06 14:50:22 -07001011 jump.s .Lresume_userspace;
Robin Getzb9a38992009-05-18 18:33:26 +00001012ENDPROC(_schedule_and_signal_from_int)
Bryan Wu1394f032007-05-06 14:50:22 -07001013
Robin Getzb9a38992009-05-18 18:33:26 +00001014ENTRY(_schedule_and_signal)
Bryan Wu1394f032007-05-06 14:50:22 -07001015 SAVE_CONTEXT_SYSCALL
1016 /* To end up here, vector 15 was changed - so we have to change it
1017 * back.
1018 */
1019 p0.l = lo(EVT15);
1020 p0.h = hi(EVT15);
1021 p1.l = _evt_system_call;
1022 p1.h = _evt_system_call;
1023 [p0] = p1;
1024 csync;
1025 p0.l = 1f;
1026 p0.h = 1f;
1027 [sp + PT_RESERVED] = P0;
1028 call .Lresume_userspace;
10291:
1030 RESTORE_CONTEXT
1031 rti;
Robin Getzb9a38992009-05-18 18:33:26 +00001032ENDPROC(_schedule_and_signal)
Bryan Wu1394f032007-05-06 14:50:22 -07001033
Robin Getz518039b2007-07-25 11:03:28 +08001034/* We handle this 100% in exception space - to reduce overhead
1035 * Only potiential problem is if the software buffer gets swapped out of the
1036 * CPLB table - then double fault. - so we don't let this happen in other places
1037 */
1038#ifdef CONFIG_DEBUG_BFIN_HWTRACE_EXPAND
1039ENTRY(_ex_trace_buff_full)
1040 [--sp] = P3;
1041 [--sp] = P2;
1042 [--sp] = LC0;
1043 [--sp] = LT0;
1044 [--sp] = LB0;
1045 P5.L = _trace_buff_offset;
1046 P5.H = _trace_buff_offset;
1047 P3 = [P5]; /* trace_buff_offset */
1048 P5.L = lo(TBUFSTAT);
1049 P5.H = hi(TBUFSTAT);
1050 R7 = [P5];
1051 R7 <<= 1; /* double, since we need to read twice */
1052 LC0 = R7;
1053 R7 <<= 2; /* need to shift over again,
1054 * to get the number of bytes */
1055 P5.L = lo(TBUF);
1056 P5.H = hi(TBUF);
1057 R6 = ((1 << CONFIG_DEBUG_BFIN_HWTRACE_EXPAND_LEN)*1024) - 1;
1058
1059 P2 = R7;
1060 P3 = P3 + P2;
1061 R7 = P3;
1062 R7 = R7 & R6;
1063 P3 = R7;
1064 P2.L = _trace_buff_offset;
1065 P2.H = _trace_buff_offset;
1066 [P2] = P3;
1067
1068 P2.L = _software_trace_buff;
1069 P2.H = _software_trace_buff;
1070
1071 LSETUP (.Lstart, .Lend) LC0;
1072.Lstart:
1073 R7 = [P5]; /* read TBUF */
1074 P4 = P3 + P2;
1075 [P4] = R7;
1076 P3 += -4;
1077 R7 = P3;
1078 R7 = R7 & R6;
1079.Lend:
1080 P3 = R7;
1081
1082 LB0 = [sp++];
1083 LT0 = [sp++];
1084 LC0 = [sp++];
1085 P2 = [sp++];
1086 P3 = [sp++];
Mike Frysinger8d6c2422007-11-21 15:53:49 +08001087 jump _bfin_return_from_exception;
Robin Getz337d3902007-10-09 17:31:46 +08001088ENDPROC(_ex_trace_buff_full)
Robin Getz518039b2007-07-25 11:03:28 +08001089
1090#if CONFIG_DEBUG_BFIN_HWTRACE_EXPAND_LEN == 4
1091.data
1092#else
1093.section .l1.data.B
Robin Getz337d3902007-10-09 17:31:46 +08001094#endif /* CONFIG_DEBUG_BFIN_HWTRACE_EXPAND_LEN */
Robin Getz518039b2007-07-25 11:03:28 +08001095ENTRY(_trace_buff_offset)
1096 .long 0;
1097ALIGN
1098ENTRY(_software_trace_buff)
1099 .rept ((1 << CONFIG_DEBUG_BFIN_HWTRACE_EXPAND_LEN)*256);
1100 .long 0
1101 .endr
Robin Getz337d3902007-10-09 17:31:46 +08001102#endif /* CONFIG_DEBUG_BFIN_HWTRACE_EXPAND */
1103
1104#if CONFIG_EARLY_PRINTK
Mike Frysinger9cb07b22007-11-21 16:45:08 +08001105__INIT
Robin Getz337d3902007-10-09 17:31:46 +08001106ENTRY(_early_trap)
1107 SAVE_ALL_SYS
1108 trace_buffer_stop(p0,r0);
1109
Michael Hennerich5e9e7682008-10-09 12:31:03 +08001110#if ANOMALY_05000283 || ANOMALY_05000315
1111 cc = r5 == r5;
1112 p4.h = HI(CHIPID);
1113 p4.l = LO(CHIPID);
1114 if cc jump 1f;
1115 r5.l = W[p4];
11161:
1117#endif
1118
Robin Getz337d3902007-10-09 17:31:46 +08001119 /* Turn caches off, to ensure we don't get double exceptions */
1120
1121 P4.L = LO(IMEM_CONTROL);
1122 P4.H = HI(IMEM_CONTROL);
1123
1124 R5 = [P4]; /* Control Register*/
1125 BITCLR(R5,ENICPLB_P);
1126 CLI R1;
1127 SSYNC; /* SSYNC required before writing to IMEM_CONTROL. */
1128 .align 8;
1129 [P4] = R5;
1130 SSYNC;
1131
1132 P4.L = LO(DMEM_CONTROL);
1133 P4.H = HI(DMEM_CONTROL);
1134 R5 = [P4];
1135 BITCLR(R5,ENDCPLB_P);
1136 SSYNC; /* SSYNC required before writing to DMEM_CONTROL. */
1137 .align 8;
1138 [P4] = R5;
1139 SSYNC;
1140 STI R1;
1141
1142 r0 = sp; /* stack frame pt_regs pointer argument ==> r0 */
1143 r1 = RETX;
1144
1145 SP += -12;
1146 call _early_trap_c;
1147 SP += 12;
1148ENDPROC(_early_trap)
Mike Frysinger9cb07b22007-11-21 16:45:08 +08001149__FINIT
Robin Getz337d3902007-10-09 17:31:46 +08001150#endif /* CONFIG_EARLY_PRINTK */
Robin Getz518039b2007-07-25 11:03:28 +08001151
Bryan Wu1394f032007-05-06 14:50:22 -07001152/*
1153 * Put these in the kernel data section - that should always be covered by
1154 * a CPLB. This is needed to ensure we don't get double fault conditions
1155 */
1156
1157#ifdef CONFIG_SYSCALL_TAB_L1
1158.section .l1.data
1159#else
1160.data
1161#endif
Robin Getzf26fbc42007-11-12 22:21:30 +08001162
Mike Frysinger1ffe6642007-08-05 17:14:04 +08001163ENTRY(_ex_table)
Bryan Wu1394f032007-05-06 14:50:22 -07001164 /* entry for each EXCAUSE[5:0]
Mike Frysinger9401e612007-07-12 11:50:43 +08001165 * This table must be in sync with the table in ./kernel/traps.c
Bryan Wu1394f032007-05-06 14:50:22 -07001166 * EXCPT instruction can provide 4 bits of EXCAUSE, allowing 16 to be user defined
1167 */
Mike Frysinger1ffe6642007-08-05 17:14:04 +08001168 .long _ex_syscall /* 0x00 - User Defined - Linux Syscall */
Jie Zhang3aee91b2009-02-04 16:49:45 +08001169 .long _ex_trap_c /* 0x01 - User Defined - Software breakpoint */
Sonic Zhanga5ac0122008-10-13 14:07:19 +08001170#ifdef CONFIG_KGDB
1171 .long _ex_trap_c /* 0x02 - User Defined - KGDB initial connection
1172 and break signal trap */
1173#else
Mike Frysinger1ffe6642007-08-05 17:14:04 +08001174 .long _ex_replaceable /* 0x02 - User Defined */
Sonic Zhanga5ac0122008-10-13 14:07:19 +08001175#endif
Mike Frysinger9401e612007-07-12 11:50:43 +08001176 .long _ex_trap_c /* 0x03 - User Defined - userspace stack overflow */
Robin Getz9f336a52007-10-29 18:23:28 +08001177 .long _ex_trap_c /* 0x04 - User Defined - dump trace buffer */
Mike Frysinger1ffe6642007-08-05 17:14:04 +08001178 .long _ex_replaceable /* 0x05 - User Defined */
1179 .long _ex_replaceable /* 0x06 - User Defined */
1180 .long _ex_replaceable /* 0x07 - User Defined */
1181 .long _ex_replaceable /* 0x08 - User Defined */
1182 .long _ex_replaceable /* 0x09 - User Defined */
1183 .long _ex_replaceable /* 0x0A - User Defined */
1184 .long _ex_replaceable /* 0x0B - User Defined */
1185 .long _ex_replaceable /* 0x0C - User Defined */
1186 .long _ex_replaceable /* 0x0D - User Defined */
1187 .long _ex_replaceable /* 0x0E - User Defined */
1188 .long _ex_replaceable /* 0x0F - User Defined */
Bryan Wu1394f032007-05-06 14:50:22 -07001189 .long _ex_single_step /* 0x10 - HW Single step */
Robin Getz518039b2007-07-25 11:03:28 +08001190#ifdef CONFIG_DEBUG_BFIN_HWTRACE_EXPAND
1191 .long _ex_trace_buff_full /* 0x11 - Trace Buffer Full */
1192#else
Bryan Wu1394f032007-05-06 14:50:22 -07001193 .long _ex_trap_c /* 0x11 - Trace Buffer Full */
Robin Getz518039b2007-07-25 11:03:28 +08001194#endif
Bryan Wu1394f032007-05-06 14:50:22 -07001195 .long _ex_trap_c /* 0x12 - Reserved */
1196 .long _ex_trap_c /* 0x13 - Reserved */
1197 .long _ex_trap_c /* 0x14 - Reserved */
1198 .long _ex_trap_c /* 0x15 - Reserved */
1199 .long _ex_trap_c /* 0x16 - Reserved */
1200 .long _ex_trap_c /* 0x17 - Reserved */
1201 .long _ex_trap_c /* 0x18 - Reserved */
1202 .long _ex_trap_c /* 0x19 - Reserved */
1203 .long _ex_trap_c /* 0x1A - Reserved */
1204 .long _ex_trap_c /* 0x1B - Reserved */
1205 .long _ex_trap_c /* 0x1C - Reserved */
1206 .long _ex_trap_c /* 0x1D - Reserved */
1207 .long _ex_trap_c /* 0x1E - Reserved */
1208 .long _ex_trap_c /* 0x1F - Reserved */
1209 .long _ex_trap_c /* 0x20 - Reserved */
1210 .long _ex_trap_c /* 0x21 - Undefined Instruction */
1211 .long _ex_trap_c /* 0x22 - Illegal Instruction Combination */
Robin Getzf26fbc42007-11-12 22:21:30 +08001212 .long _ex_dviol /* 0x23 - Data CPLB Protection Violation */
Bryan Wu1394f032007-05-06 14:50:22 -07001213 .long _ex_trap_c /* 0x24 - Data access misaligned */
1214 .long _ex_trap_c /* 0x25 - Unrecoverable Event */
Robin Getzf26fbc42007-11-12 22:21:30 +08001215 .long _ex_dmiss /* 0x26 - Data CPLB Miss */
1216 .long _ex_dmult /* 0x27 - Data CPLB Multiple Hits - Linux Trap Zero */
Bryan Wu1394f032007-05-06 14:50:22 -07001217 .long _ex_trap_c /* 0x28 - Emulation Watchpoint */
1218 .long _ex_trap_c /* 0x29 - Instruction fetch access error (535 only) */
1219 .long _ex_trap_c /* 0x2A - Instruction fetch misaligned */
Robin Getzf26fbc42007-11-12 22:21:30 +08001220 .long _ex_trap_c /* 0x2B - Instruction CPLB protection Violation */
1221 .long _ex_icplb_miss /* 0x2C - Instruction CPLB miss */
Bryan Wu1394f032007-05-06 14:50:22 -07001222 .long _ex_trap_c /* 0x2D - Instruction CPLB Multiple Hits */
1223 .long _ex_trap_c /* 0x2E - Illegal use of Supervisor Resource */
1224 .long _ex_trap_c /* 0x2E - Illegal use of Supervisor Resource */
1225 .long _ex_trap_c /* 0x2F - Reserved */
1226 .long _ex_trap_c /* 0x30 - Reserved */
1227 .long _ex_trap_c /* 0x31 - Reserved */
1228 .long _ex_trap_c /* 0x32 - Reserved */
1229 .long _ex_trap_c /* 0x33 - Reserved */
1230 .long _ex_trap_c /* 0x34 - Reserved */
1231 .long _ex_trap_c /* 0x35 - Reserved */
1232 .long _ex_trap_c /* 0x36 - Reserved */
1233 .long _ex_trap_c /* 0x37 - Reserved */
1234 .long _ex_trap_c /* 0x38 - Reserved */
1235 .long _ex_trap_c /* 0x39 - Reserved */
1236 .long _ex_trap_c /* 0x3A - Reserved */
1237 .long _ex_trap_c /* 0x3B - Reserved */
1238 .long _ex_trap_c /* 0x3C - Reserved */
1239 .long _ex_trap_c /* 0x3D - Reserved */
1240 .long _ex_trap_c /* 0x3E - Reserved */
1241 .long _ex_trap_c /* 0x3F - Reserved */
Mike Frysinger1ffe6642007-08-05 17:14:04 +08001242END(_ex_table)
Bryan Wu1394f032007-05-06 14:50:22 -07001243
Bryan Wu1394f032007-05-06 14:50:22 -07001244ENTRY(_sys_call_table)
Bryan Wu0b95f222007-09-23 00:51:32 +08001245 .long _sys_restart_syscall /* 0 */
Bryan Wu1394f032007-05-06 14:50:22 -07001246 .long _sys_exit
1247 .long _sys_fork
1248 .long _sys_read
1249 .long _sys_write
1250 .long _sys_open /* 5 */
1251 .long _sys_close
1252 .long _sys_ni_syscall /* old waitpid */
1253 .long _sys_creat
1254 .long _sys_link
1255 .long _sys_unlink /* 10 */
1256 .long _sys_execve
1257 .long _sys_chdir
1258 .long _sys_time
1259 .long _sys_mknod
1260 .long _sys_chmod /* 15 */
1261 .long _sys_chown /* chown16 */
1262 .long _sys_ni_syscall /* old break syscall holder */
1263 .long _sys_ni_syscall /* old stat */
1264 .long _sys_lseek
1265 .long _sys_getpid /* 20 */
1266 .long _sys_mount
1267 .long _sys_ni_syscall /* old umount */
1268 .long _sys_setuid
1269 .long _sys_getuid
1270 .long _sys_stime /* 25 */
1271 .long _sys_ptrace
1272 .long _sys_alarm
1273 .long _sys_ni_syscall /* old fstat */
1274 .long _sys_pause
1275 .long _sys_ni_syscall /* old utime */ /* 30 */
1276 .long _sys_ni_syscall /* old stty syscall holder */
1277 .long _sys_ni_syscall /* old gtty syscall holder */
1278 .long _sys_access
1279 .long _sys_nice
1280 .long _sys_ni_syscall /* 35 */ /* old ftime syscall holder */
1281 .long _sys_sync
1282 .long _sys_kill
1283 .long _sys_rename
1284 .long _sys_mkdir
1285 .long _sys_rmdir /* 40 */
1286 .long _sys_dup
1287 .long _sys_pipe
1288 .long _sys_times
1289 .long _sys_ni_syscall /* old prof syscall holder */
1290 .long _sys_brk /* 45 */
1291 .long _sys_setgid
1292 .long _sys_getgid
1293 .long _sys_ni_syscall /* old sys_signal */
1294 .long _sys_geteuid /* geteuid16 */
1295 .long _sys_getegid /* getegid16 */ /* 50 */
1296 .long _sys_acct
1297 .long _sys_umount /* recycled never used phys() */
1298 .long _sys_ni_syscall /* old lock syscall holder */
1299 .long _sys_ioctl
1300 .long _sys_fcntl /* 55 */
1301 .long _sys_ni_syscall /* old mpx syscall holder */
1302 .long _sys_setpgid
1303 .long _sys_ni_syscall /* old ulimit syscall holder */
1304 .long _sys_ni_syscall /* old old uname */
1305 .long _sys_umask /* 60 */
1306 .long _sys_chroot
1307 .long _sys_ustat
1308 .long _sys_dup2
1309 .long _sys_getppid
1310 .long _sys_getpgrp /* 65 */
1311 .long _sys_setsid
1312 .long _sys_ni_syscall /* old sys_sigaction */
1313 .long _sys_sgetmask
1314 .long _sys_ssetmask
1315 .long _sys_setreuid /* setreuid16 */ /* 70 */
1316 .long _sys_setregid /* setregid16 */
1317 .long _sys_ni_syscall /* old sys_sigsuspend */
1318 .long _sys_ni_syscall /* old sys_sigpending */
1319 .long _sys_sethostname
1320 .long _sys_setrlimit /* 75 */
1321 .long _sys_ni_syscall /* old getrlimit */
1322 .long _sys_getrusage
1323 .long _sys_gettimeofday
1324 .long _sys_settimeofday
1325 .long _sys_getgroups /* getgroups16 */ /* 80 */
1326 .long _sys_setgroups /* setgroups16 */
1327 .long _sys_ni_syscall /* old_select */
1328 .long _sys_symlink
1329 .long _sys_ni_syscall /* old lstat */
1330 .long _sys_readlink /* 85 */
1331 .long _sys_uselib
1332 .long _sys_ni_syscall /* sys_swapon */
1333 .long _sys_reboot
1334 .long _sys_ni_syscall /* old_readdir */
1335 .long _sys_ni_syscall /* sys_mmap */ /* 90 */
1336 .long _sys_munmap
1337 .long _sys_truncate
1338 .long _sys_ftruncate
1339 .long _sys_fchmod
1340 .long _sys_fchown /* fchown16 */ /* 95 */
1341 .long _sys_getpriority
1342 .long _sys_setpriority
1343 .long _sys_ni_syscall /* old profil syscall holder */
1344 .long _sys_statfs
1345 .long _sys_fstatfs /* 100 */
1346 .long _sys_ni_syscall
1347 .long _sys_ni_syscall /* old sys_socketcall */
1348 .long _sys_syslog
1349 .long _sys_setitimer
1350 .long _sys_getitimer /* 105 */
1351 .long _sys_newstat
1352 .long _sys_newlstat
1353 .long _sys_newfstat
1354 .long _sys_ni_syscall /* old uname */
1355 .long _sys_ni_syscall /* iopl for i386 */ /* 110 */
1356 .long _sys_vhangup
1357 .long _sys_ni_syscall /* obsolete idle() syscall */
1358 .long _sys_ni_syscall /* vm86old for i386 */
1359 .long _sys_wait4
1360 .long _sys_ni_syscall /* 115 */ /* sys_swapoff */
1361 .long _sys_sysinfo
1362 .long _sys_ni_syscall /* old sys_ipc */
1363 .long _sys_fsync
1364 .long _sys_ni_syscall /* old sys_sigreturn */
1365 .long _sys_clone /* 120 */
1366 .long _sys_setdomainname
1367 .long _sys_newuname
1368 .long _sys_ni_syscall /* old sys_modify_ldt */
1369 .long _sys_adjtimex
1370 .long _sys_ni_syscall /* 125 */ /* sys_mprotect */
1371 .long _sys_ni_syscall /* old sys_sigprocmask */
1372 .long _sys_ni_syscall /* old "creat_module" */
1373 .long _sys_init_module
1374 .long _sys_delete_module
1375 .long _sys_ni_syscall /* 130: old "get_kernel_syms" */
1376 .long _sys_quotactl
1377 .long _sys_getpgid
1378 .long _sys_fchdir
1379 .long _sys_bdflush
1380 .long _sys_ni_syscall /* 135 */ /* sys_sysfs */
1381 .long _sys_personality
1382 .long _sys_ni_syscall /* for afs_syscall */
1383 .long _sys_setfsuid /* setfsuid16 */
1384 .long _sys_setfsgid /* setfsgid16 */
1385 .long _sys_llseek /* 140 */
1386 .long _sys_getdents
1387 .long _sys_ni_syscall /* sys_select */
1388 .long _sys_flock
1389 .long _sys_ni_syscall /* sys_msync */
1390 .long _sys_readv /* 145 */
1391 .long _sys_writev
1392 .long _sys_getsid
1393 .long _sys_fdatasync
1394 .long _sys_sysctl
1395 .long _sys_ni_syscall /* 150 */ /* sys_mlock */
1396 .long _sys_ni_syscall /* sys_munlock */
1397 .long _sys_ni_syscall /* sys_mlockall */
1398 .long _sys_ni_syscall /* sys_munlockall */
1399 .long _sys_sched_setparam
1400 .long _sys_sched_getparam /* 155 */
1401 .long _sys_sched_setscheduler
1402 .long _sys_sched_getscheduler
1403 .long _sys_sched_yield
1404 .long _sys_sched_get_priority_max
1405 .long _sys_sched_get_priority_min /* 160 */
1406 .long _sys_sched_rr_get_interval
1407 .long _sys_nanosleep
Bryan Wu0b95f222007-09-23 00:51:32 +08001408 .long _sys_mremap
Bryan Wu1394f032007-05-06 14:50:22 -07001409 .long _sys_setresuid /* setresuid16 */
1410 .long _sys_getresuid /* getresuid16 */ /* 165 */
1411 .long _sys_ni_syscall /* for vm86 */
1412 .long _sys_ni_syscall /* old "query_module" */
1413 .long _sys_ni_syscall /* sys_poll */
Bryan Wu0b95f222007-09-23 00:51:32 +08001414 .long _sys_nfsservctl
Bryan Wu1394f032007-05-06 14:50:22 -07001415 .long _sys_setresgid /* setresgid16 */ /* 170 */
1416 .long _sys_getresgid /* getresgid16 */
1417 .long _sys_prctl
1418 .long _sys_rt_sigreturn
1419 .long _sys_rt_sigaction
1420 .long _sys_rt_sigprocmask /* 175 */
1421 .long _sys_rt_sigpending
1422 .long _sys_rt_sigtimedwait
1423 .long _sys_rt_sigqueueinfo
1424 .long _sys_rt_sigsuspend
1425 .long _sys_pread64 /* 180 */
1426 .long _sys_pwrite64
1427 .long _sys_lchown /* lchown16 */
1428 .long _sys_getcwd
1429 .long _sys_capget
1430 .long _sys_capset /* 185 */
1431 .long _sys_sigaltstack
1432 .long _sys_sendfile
1433 .long _sys_ni_syscall /* streams1 */
1434 .long _sys_ni_syscall /* streams2 */
1435 .long _sys_vfork /* 190 */
1436 .long _sys_getrlimit
1437 .long _sys_mmap2
1438 .long _sys_truncate64
1439 .long _sys_ftruncate64
1440 .long _sys_stat64 /* 195 */
1441 .long _sys_lstat64
1442 .long _sys_fstat64
1443 .long _sys_chown
1444 .long _sys_getuid
1445 .long _sys_getgid /* 200 */
1446 .long _sys_geteuid
1447 .long _sys_getegid
1448 .long _sys_setreuid
1449 .long _sys_setregid
1450 .long _sys_getgroups /* 205 */
1451 .long _sys_setgroups
1452 .long _sys_fchown
1453 .long _sys_setresuid
1454 .long _sys_getresuid
1455 .long _sys_setresgid /* 210 */
1456 .long _sys_getresgid
1457 .long _sys_lchown
1458 .long _sys_setuid
1459 .long _sys_setgid
1460 .long _sys_setfsuid /* 215 */
1461 .long _sys_setfsgid
1462 .long _sys_pivot_root
1463 .long _sys_ni_syscall /* sys_mincore */
1464 .long _sys_ni_syscall /* sys_madvise */
1465 .long _sys_getdents64 /* 220 */
1466 .long _sys_fcntl64
1467 .long _sys_ni_syscall /* reserved for TUX */
1468 .long _sys_ni_syscall
1469 .long _sys_gettid
Bryan Wu0b95f222007-09-23 00:51:32 +08001470 .long _sys_readahead /* 225 */
Bryan Wu1394f032007-05-06 14:50:22 -07001471 .long _sys_setxattr
1472 .long _sys_lsetxattr
1473 .long _sys_fsetxattr
1474 .long _sys_getxattr
1475 .long _sys_lgetxattr /* 230 */
1476 .long _sys_fgetxattr
1477 .long _sys_listxattr
1478 .long _sys_llistxattr
1479 .long _sys_flistxattr
1480 .long _sys_removexattr /* 235 */
1481 .long _sys_lremovexattr
1482 .long _sys_fremovexattr
1483 .long _sys_tkill
1484 .long _sys_sendfile64
1485 .long _sys_futex /* 240 */
1486 .long _sys_sched_setaffinity
1487 .long _sys_sched_getaffinity
1488 .long _sys_ni_syscall /* sys_set_thread_area */
1489 .long _sys_ni_syscall /* sys_get_thread_area */
1490 .long _sys_io_setup /* 245 */
1491 .long _sys_io_destroy
1492 .long _sys_io_getevents
1493 .long _sys_io_submit
1494 .long _sys_io_cancel
1495 .long _sys_ni_syscall /* 250 */ /* sys_alloc_hugepages */
1496 .long _sys_ni_syscall /* sys_freec_hugepages */
1497 .long _sys_exit_group
1498 .long _sys_lookup_dcookie
1499 .long _sys_bfin_spinlock
1500 .long _sys_epoll_create /* 255 */
1501 .long _sys_epoll_ctl
1502 .long _sys_epoll_wait
1503 .long _sys_ni_syscall /* remap_file_pages */
1504 .long _sys_set_tid_address
1505 .long _sys_timer_create /* 260 */
1506 .long _sys_timer_settime
1507 .long _sys_timer_gettime
1508 .long _sys_timer_getoverrun
1509 .long _sys_timer_delete
1510 .long _sys_clock_settime /* 265 */
1511 .long _sys_clock_gettime
1512 .long _sys_clock_getres
1513 .long _sys_clock_nanosleep
1514 .long _sys_statfs64
1515 .long _sys_fstatfs64 /* 270 */
1516 .long _sys_tgkill
1517 .long _sys_utimes
1518 .long _sys_fadvise64_64
1519 .long _sys_ni_syscall /* vserver */
1520 .long _sys_ni_syscall /* 275, mbind */
1521 .long _sys_ni_syscall /* get_mempolicy */
1522 .long _sys_ni_syscall /* set_mempolicy */
1523 .long _sys_mq_open
1524 .long _sys_mq_unlink
1525 .long _sys_mq_timedsend /* 280 */
1526 .long _sys_mq_timedreceive
1527 .long _sys_mq_notify
1528 .long _sys_mq_getsetattr
1529 .long _sys_ni_syscall /* kexec_load */
1530 .long _sys_waitid /* 285 */
1531 .long _sys_add_key
1532 .long _sys_request_key
1533 .long _sys_keyctl
1534 .long _sys_ioprio_set
1535 .long _sys_ioprio_get /* 290 */
1536 .long _sys_inotify_init
1537 .long _sys_inotify_add_watch
1538 .long _sys_inotify_rm_watch
1539 .long _sys_ni_syscall /* migrate_pages */
1540 .long _sys_openat /* 295 */
1541 .long _sys_mkdirat
1542 .long _sys_mknodat
1543 .long _sys_fchownat
1544 .long _sys_futimesat
1545 .long _sys_fstatat64 /* 300 */
1546 .long _sys_unlinkat
1547 .long _sys_renameat
1548 .long _sys_linkat
1549 .long _sys_symlinkat
1550 .long _sys_readlinkat /* 305 */
1551 .long _sys_fchmodat
1552 .long _sys_faccessat
1553 .long _sys_pselect6
1554 .long _sys_ppoll
1555 .long _sys_unshare /* 310 */
1556 .long _sys_sram_alloc
1557 .long _sys_sram_free
1558 .long _sys_dma_memcpy
1559 .long _sys_accept
1560 .long _sys_bind /* 315 */
1561 .long _sys_connect
1562 .long _sys_getpeername
1563 .long _sys_getsockname
1564 .long _sys_getsockopt
1565 .long _sys_listen /* 320 */
1566 .long _sys_recv
1567 .long _sys_recvfrom
1568 .long _sys_recvmsg
1569 .long _sys_send
1570 .long _sys_sendmsg /* 325 */
1571 .long _sys_sendto
1572 .long _sys_setsockopt
1573 .long _sys_shutdown
1574 .long _sys_socket
1575 .long _sys_socketpair /* 330 */
1576 .long _sys_semctl
1577 .long _sys_semget
1578 .long _sys_semop
1579 .long _sys_msgctl
1580 .long _sys_msgget /* 335 */
1581 .long _sys_msgrcv
1582 .long _sys_msgsnd
1583 .long _sys_shmat
1584 .long _sys_shmctl
1585 .long _sys_shmdt /* 340 */
1586 .long _sys_shmget
Bryan Wu0b95f222007-09-23 00:51:32 +08001587 .long _sys_splice
1588 .long _sys_sync_file_range
1589 .long _sys_tee
1590 .long _sys_vmsplice /* 345 */
1591 .long _sys_epoll_pwait
1592 .long _sys_utimensat
1593 .long _sys_signalfd
Bryan Wu2f775db2008-03-06 16:04:58 -07001594 .long _sys_timerfd_create
Bryan Wu0b95f222007-09-23 00:51:32 +08001595 .long _sys_eventfd /* 350 */
1596 .long _sys_pread64
1597 .long _sys_pwrite64
1598 .long _sys_fadvise64
1599 .long _sys_set_robust_list
1600 .long _sys_get_robust_list /* 355 */
1601 .long _sys_fallocate
Bernd Schmidtfc975512008-01-27 19:56:43 +08001602 .long _sys_semtimedop
Bryan Wu2f775db2008-03-06 16:04:58 -07001603 .long _sys_timerfd_settime
1604 .long _sys_timerfd_gettime
Bryan Wua4b7b6d2008-08-14 15:40:19 +08001605 .long _sys_signalfd4 /* 360 */
1606 .long _sys_eventfd2
1607 .long _sys_epoll_create1
1608 .long _sys_dup3
1609 .long _sys_pipe2
1610 .long _sys_inotify_init1 /* 365 */
Mike Frysinger7a1450f2009-05-26 04:55:38 -04001611 .long _sys_preadv
1612 .long _sys_pwritev
Mike Frysinger61cdd7a2009-06-12 07:30:55 -04001613 .long _sys_rt_tgsigqueueinfo
Mike Frysinger5ecf3e02009-06-19 18:56:57 -04001614 .long _sys_perf_counter_open
Bryan Wu2f775db2008-03-06 16:04:58 -07001615
Bryan Wu1394f032007-05-06 14:50:22 -07001616 .rept NR_syscalls-(.-_sys_call_table)/4
1617 .long _sys_ni_syscall
1618 .endr
Robin Getz0c7a6b22008-10-08 16:27:12 +08001619END(_sys_call_table)