tile: clean up relocate_kernel_64 debug code
[deliverable/linux.git] / arch / tile / kernel / intvec_64.S
CommitLineData
18aecc2b
CM
1/*
2 * Copyright 2011 Tilera Corporation. All Rights Reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation, version 2.
7 *
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
11 * NON INFRINGEMENT. See the GNU General Public License for
12 * more details.
13 *
14 * Linux interrupt vectors.
15 */
16
17#include <linux/linkage.h>
18#include <linux/errno.h>
19#include <linux/unistd.h>
2f9ac29e 20#include <linux/init.h>
18aecc2b
CM
21#include <asm/ptrace.h>
22#include <asm/thread_info.h>
23#include <asm/irqflags.h>
24#include <asm/asm-offsets.h>
25#include <asm/types.h>
2f9ac29e 26#include <asm/traps.h>
2858f856 27#include <asm/signal.h>
18aecc2b
CM
28#include <hv/hypervisor.h>
29#include <arch/abi.h>
30#include <arch/interrupts.h>
31#include <arch/spr_def.h>
32
18aecc2b
CM
33#define PTREGS_PTR(reg, ptreg) addli reg, sp, C_ABI_SAVE_AREA_SIZE + (ptreg)
34
35#define PTREGS_OFFSET_SYSCALL PTREGS_OFFSET_REG(TREG_SYSCALL_NR)
36
37
38 .macro push_reg reg, ptr=sp, delta=-8
39 {
40 st \ptr, \reg
41 addli \ptr, \ptr, \delta
42 }
43 .endm
44
45 .macro pop_reg reg, ptr=sp, delta=8
46 {
47 ld \reg, \ptr
48 addli \ptr, \ptr, \delta
49 }
50 .endm
51
52 .macro pop_reg_zero reg, zreg, ptr=sp, delta=8
53 {
54 move \zreg, zero
55 ld \reg, \ptr
56 addi \ptr, \ptr, \delta
57 }
58 .endm
59
60 .macro push_extra_callee_saves reg
61 PTREGS_PTR(\reg, PTREGS_OFFSET_REG(51))
62 push_reg r51, \reg
63 push_reg r50, \reg
64 push_reg r49, \reg
65 push_reg r48, \reg
66 push_reg r47, \reg
67 push_reg r46, \reg
68 push_reg r45, \reg
69 push_reg r44, \reg
70 push_reg r43, \reg
71 push_reg r42, \reg
72 push_reg r41, \reg
73 push_reg r40, \reg
74 push_reg r39, \reg
75 push_reg r38, \reg
76 push_reg r37, \reg
77 push_reg r36, \reg
78 push_reg r35, \reg
79 push_reg r34, \reg, PTREGS_OFFSET_BASE - PTREGS_OFFSET_REG(34)
80 .endm
81
82 .macro panic str
83 .pushsection .rodata, "a"
841:
85 .asciz "\str"
86 .popsection
87 {
88 moveli r0, hw2_last(1b)
89 }
90 {
91 shl16insli r0, r0, hw1(1b)
92 }
93 {
94 shl16insli r0, r0, hw0(1b)
95 jal panic
96 }
97 .endm
98
2f9ac29e
CM
99 /*
100 * Unalign data exception fast handling: In order to handle
101 * unaligned data access, a fast JIT version is generated and stored
102 * in a specific area in user space. We first need to do a quick poke
103 * to see if the JIT is available. We use certain bits in the fault
104 * PC (3 to 9 is used for 16KB page size) as index to address the JIT
105 * code area. The first 64bit word is the fault PC, and the 2nd one is
106 * the fault bundle itself. If these 2 words both match, then we
107 * directly "iret" to JIT code. If not, a slow path is invoked to
108 * generate new JIT code. Note: the current JIT code WILL be
109 * overwritten if it existed. So, ideally we can handle 128 unalign
110 * fixups via JIT. For lookup efficiency and to effectively support
111 * tight loops with multiple unaligned reference, a simple
112 * direct-mapped cache is used.
113 *
114 * SPR_EX_CONTEXT_K_0 is modified to return to JIT code.
115 * SPR_EX_CONTEXT_K_1 has ICS set.
116 * SPR_EX_CONTEXT_0_0 is setup to user program's next PC.
117 * SPR_EX_CONTEXT_0_1 = 0.
118 */
119 .macro int_hand_unalign_fast vecnum, vecname
120 .org (\vecnum << 8)
121intvec_\vecname:
122 /* Put r3 in SPR_SYSTEM_SAVE_K_1. */
123 mtspr SPR_SYSTEM_SAVE_K_1, r3
124
125 mfspr r3, SPR_EX_CONTEXT_K_1
126 /*
127 * Examine if exception comes from user without ICS set.
128 * If not, just go directly to the slow path.
129 */
130 bnez r3, hand_unalign_slow_nonuser
131
132 mfspr r3, SPR_SYSTEM_SAVE_K_0
133
134 /* Get &thread_info->unalign_jit_tmp[0] in r3. */
35f05976 135 bfexts r3, r3, 0, CPU_SHIFT-1
2f9ac29e 136 mm r3, zero, LOG2_THREAD_SIZE, 63
35f05976 137 addli r3, r3, THREAD_INFO_UNALIGN_JIT_TMP_OFFSET
2f9ac29e
CM
138
139 /*
140 * Save r0, r1, r2 into thread_info array r3 points to
141 * from low to high memory in order.
142 */
143 st_add r3, r0, 8
144 st_add r3, r1, 8
145 {
146 st_add r3, r2, 8
147 andi r2, sp, 7
148 }
149
150 /* Save stored r3 value so we can revert it on a page fault. */
151 mfspr r1, SPR_SYSTEM_SAVE_K_1
152 st r3, r1
153
154 {
155 /* Generate a SIGBUS if sp is not 8-byte aligned. */
156 bnez r2, hand_unalign_slow_badsp
157 }
158
159 /*
160 * Get the thread_info in r0; load r1 with pc. Set the low bit of sp
161 * as an indicator to the page fault code in case we fault.
162 */
163 {
164 ori sp, sp, 1
165 mfspr r1, SPR_EX_CONTEXT_K_0
166 }
167
168 /* Add the jit_info offset in thread_info; extract r1 [3:9] into r2. */
169 {
170 addli r0, r3, THREAD_INFO_UNALIGN_JIT_BASE_OFFSET - \
171 (THREAD_INFO_UNALIGN_JIT_TMP_OFFSET + (3 * 8))
172 bfextu r2, r1, 3, (2 + PAGE_SHIFT - UNALIGN_JIT_SHIFT)
173 }
174
175 /* Load the jit_info; multiply r2 by 128. */
176 {
177 ld r0, r0
178 shli r2, r2, UNALIGN_JIT_SHIFT
179 }
180
181 /*
182 * If r0 is NULL, the JIT page is not mapped, so go to slow path;
183 * add offset r2 to r0 at the same time.
184 */
185 {
186 beqz r0, hand_unalign_slow
187 add r2, r0, r2
188 }
189
190 /*
191 * We are loading from userspace (both the JIT info PC and
192 * instruction word, and the instruction word we executed)
193 * and since either could fault while holding the interrupt
194 * critical section, we must tag this region and check it in
195 * do_page_fault() to handle it properly.
196 */
197ENTRY(__start_unalign_asm_code)
198
199 /* Load first word of JIT in r0 and increment r2 by 8. */
200 ld_add r0, r2, 8
201
202 /*
203 * Compare the PC with the 1st word in JIT; load the fault bundle
204 * into r1.
205 */
206 {
207 cmpeq r0, r0, r1
208 ld r1, r1
209 }
210
211 /* Go to slow path if PC doesn't match. */
212 beqz r0, hand_unalign_slow
213
214 /*
215 * Load the 2nd word of JIT, which is supposed to be the fault
216 * bundle for a cache hit. Increment r2; after this bundle r2 will
217 * point to the potential start of the JIT code we want to run.
218 */
219 ld_add r0, r2, 8
220
221 /* No further accesses to userspace are done after this point. */
222ENTRY(__end_unalign_asm_code)
223
224 /* Compare the real bundle with what is saved in the JIT area. */
225 {
226 cmpeq r0, r1, r0
227 mtspr SPR_EX_CONTEXT_0_1, zero
228 }
229
230 /* Go to slow path if the fault bundle does not match. */
231 beqz r0, hand_unalign_slow
232
233 /*
234 * A cache hit is found.
235 * r2 points to start of JIT code (3rd word).
236 * r0 is the fault pc.
237 * r1 is the fault bundle.
238 * Reset the low bit of sp.
239 */
240 {
241 mfspr r0, SPR_EX_CONTEXT_K_0
242 andi sp, sp, ~1
243 }
244
245 /* Write r2 into EX_CONTEXT_K_0 and increment PC. */
246 {
247 mtspr SPR_EX_CONTEXT_K_0, r2
248 addi r0, r0, 8
249 }
250
251 /*
252 * Set ICS on kernel EX_CONTEXT_K_1 in order to "iret" to
253 * user with ICS set. This way, if the JIT fixup causes another
254 * unalign exception (which shouldn't be possible) the user
255 * process will be terminated with SIGBUS. Also, our fixup will
256 * run without interleaving with external interrupts.
257 * Each fixup is at most 14 bundles, so it won't hold ICS for long.
258 */
259 {
260 movei r1, PL_ICS_EX1(USER_PL, 1)
261 mtspr SPR_EX_CONTEXT_0_0, r0
262 }
263
264 {
265 mtspr SPR_EX_CONTEXT_K_1, r1
266 addi r3, r3, -(3 * 8)
267 }
268
269 /* Restore r0..r3. */
270 ld_add r0, r3, 8
271 ld_add r1, r3, 8
272 ld_add r2, r3, 8
273 ld r3, r3
274
275 iret
276 ENDPROC(intvec_\vecname)
277 .endm
18aecc2b
CM
278
279#ifdef __COLLECT_LINKER_FEEDBACK__
280 .pushsection .text.intvec_feedback,"ax"
281intvec_feedback:
282 .popsection
283#endif
284
285 /*
286 * Default interrupt handler.
287 *
288 * vecnum is where we'll put this code.
289 * c_routine is the C routine we'll call.
290 *
291 * The C routine is passed two arguments:
292 * - A pointer to the pt_regs state.
293 * - The interrupt vector number.
294 *
295 * The "processing" argument specifies the code for processing
296 * the interrupt. Defaults to "handle_interrupt".
297 */
2f9ac29e 298 .macro __int_hand vecnum, vecname, c_routine,processing=handle_interrupt
18aecc2b
CM
299intvec_\vecname:
300 /* Temporarily save a register so we have somewhere to work. */
301
302 mtspr SPR_SYSTEM_SAVE_K_1, r0
303 mfspr r0, SPR_EX_CONTEXT_K_1
304
2f9ac29e
CM
305 /*
306 * The unalign data fastpath code sets the low bit in sp to
307 * force us to reset it here on fault.
308 */
309 {
310 blbs sp, 2f
311 andi r0, r0, SPR_EX_CONTEXT_1_1__PL_MASK /* mask off ICS */
312 }
18aecc2b
CM
313
314 .ifc \vecnum, INT_DOUBLE_FAULT
315 /*
316 * For double-faults from user-space, fall through to the normal
317 * register save and stack setup path. Otherwise, it's the
318 * hypervisor giving us one last chance to dump diagnostics, and we
319 * branch to the kernel_double_fault routine to do so.
320 */
321 beqz r0, 1f
322 j _kernel_double_fault
3231:
324 .else
325 /*
326 * If we're coming from user-space, then set sp to the top of
327 * the kernel stack. Otherwise, assume sp is already valid.
328 */
329 {
330 bnez r0, 0f
331 move r0, sp
332 }
333 .endif
334
335 .ifc \c_routine, do_page_fault
336 /*
337 * The page_fault handler may be downcalled directly by the
338 * hypervisor even when Linux is running and has ICS set.
339 *
340 * In this case the contents of EX_CONTEXT_K_1 reflect the
341 * previous fault and can't be relied on to choose whether or
342 * not to reinitialize the stack pointer. So we add a test
343 * to see whether SYSTEM_SAVE_K_2 has the high bit set,
344 * and if so we don't reinitialize sp, since we must be coming
345 * from Linux. (In fact the precise case is !(val & ~1),
346 * but any Linux PC has to have the high bit set.)
347 *
348 * Note that the hypervisor *always* sets SYSTEM_SAVE_K_2 for
349 * any path that turns into a downcall to one of our TLB handlers.
350 *
351 * FIXME: if we end up never using this path, perhaps we should
352 * prevent the hypervisor from generating downcalls in this case.
353 * The advantage of getting a downcall is we can panic in Linux.
354 */
355 mfspr r0, SPR_SYSTEM_SAVE_K_2
356 {
357 bltz r0, 0f /* high bit in S_S_1_2 is for a PC to use */
358 move r0, sp
359 }
360 .endif
361
2f9ac29e 3622:
18aecc2b 363 /*
35f05976
CM
364 * SYSTEM_SAVE_K_0 holds the cpu number in the high bits, and
365 * the current stack top in the lower bits. So we recover
366 * our starting stack value by sign-extending the low bits, then
18aecc2b
CM
367 * point sp at the top aligned address on the actual stack page.
368 */
369 mfspr r0, SPR_SYSTEM_SAVE_K_0
35f05976 370 bfexts r0, r0, 0, CPU_SHIFT-1
18aecc2b
CM
371
3720:
373 /*
374 * Align the stack mod 64 so we can properly predict what
375 * cache lines we need to write-hint to reduce memory fetch
376 * latency as we enter the kernel. The layout of memory is
377 * as follows, with cache line 0 at the lowest VA, and cache
378 * line 8 just below the r0 value this "andi" computes.
379 * Note that we never write to cache line 8, and we skip
380 * cache lines 1-3 for syscalls.
381 *
382 * cache line 8: ptregs padding (two words)
383 * cache line 7: sp, lr, pc, ex1, faultnum, orig_r0, flags, cmpexch
384 * cache line 6: r46...r53 (tp)
385 * cache line 5: r38...r45
386 * cache line 4: r30...r37
387 * cache line 3: r22...r29
388 * cache line 2: r14...r21
389 * cache line 1: r6...r13
390 * cache line 0: 2 x frame, r0..r5
391 */
35f05976
CM
392#if STACK_TOP_DELTA != 64
393#error STACK_TOP_DELTA must be 64 for assumptions here and in task_pt_regs()
394#endif
18aecc2b
CM
395 andi r0, r0, -64
396
397 /*
398 * Push the first four registers on the stack, so that we can set
399 * them to vector-unique values before we jump to the common code.
400 *
401 * Registers are pushed on the stack as a struct pt_regs,
402 * with the sp initially just above the struct, and when we're
403 * done, sp points to the base of the struct, minus
404 * C_ABI_SAVE_AREA_SIZE, so we can directly jal to C code.
405 *
406 * This routine saves just the first four registers, plus the
407 * stack context so we can do proper backtracing right away,
408 * and defers to handle_interrupt to save the rest.
51007004
CM
409 * The backtracer needs pc, ex1, lr, sp, r52, and faultnum,
410 * and needs sp set to its final location at the bottom of
411 * the stack frame.
18aecc2b
CM
412 */
413 addli r0, r0, PTREGS_OFFSET_LR - (PTREGS_SIZE + KSTK_PTREGS_GAP)
414 wh64 r0 /* cache line 7 */
415 {
416 st r0, lr
417 addli r0, r0, PTREGS_OFFSET_SP - PTREGS_OFFSET_LR
418 }
419 {
420 st r0, sp
421 addli sp, r0, PTREGS_OFFSET_REG(52) - PTREGS_OFFSET_SP
422 }
423 wh64 sp /* cache line 6 */
424 {
425 st sp, r52
426 addli sp, sp, PTREGS_OFFSET_REG(1) - PTREGS_OFFSET_REG(52)
427 }
428 wh64 sp /* cache line 0 */
429 {
430 st sp, r1
431 addli sp, sp, PTREGS_OFFSET_REG(2) - PTREGS_OFFSET_REG(1)
432 }
433 {
434 st sp, r2
435 addli sp, sp, PTREGS_OFFSET_REG(3) - PTREGS_OFFSET_REG(2)
436 }
437 {
438 st sp, r3
439 addli sp, sp, PTREGS_OFFSET_PC - PTREGS_OFFSET_REG(3)
440 }
441 mfspr r0, SPR_EX_CONTEXT_K_0
442 .ifc \processing,handle_syscall
443 /*
444 * Bump the saved PC by one bundle so that when we return, we won't
445 * execute the same swint instruction again. We need to do this while
446 * we're in the critical section.
447 */
448 addi r0, r0, 8
449 .endif
450 {
451 st sp, r0
452 addli sp, sp, PTREGS_OFFSET_EX1 - PTREGS_OFFSET_PC
453 }
454 mfspr r0, SPR_EX_CONTEXT_K_1
455 {
456 st sp, r0
457 addi sp, sp, PTREGS_OFFSET_FAULTNUM - PTREGS_OFFSET_EX1
458 /*
459 * Use r0 for syscalls so it's a temporary; use r1 for interrupts
460 * so that it gets passed through unchanged to the handler routine.
461 * Note that the .if conditional confusingly spans bundles.
462 */
463 .ifc \processing,handle_syscall
464 movei r0, \vecnum
465 }
466 {
467 st sp, r0
468 .else
469 movei r1, \vecnum
470 }
471 {
472 st sp, r1
473 .endif
474 addli sp, sp, PTREGS_OFFSET_REG(0) - PTREGS_OFFSET_FAULTNUM
475 }
476 mfspr r0, SPR_SYSTEM_SAVE_K_1 /* Original r0 */
477 {
478 st sp, r0
479 addi sp, sp, -PTREGS_OFFSET_REG(0) - 8
480 }
481 {
482 st sp, zero /* write zero into "Next SP" frame pointer */
483 addi sp, sp, -8 /* leave SP pointing at bottom of frame */
484 }
485 .ifc \processing,handle_syscall
486 j handle_syscall
487 .else
488 /* Capture per-interrupt SPR context to registers. */
489 .ifc \c_routine, do_page_fault
490 mfspr r2, SPR_SYSTEM_SAVE_K_3 /* address of page fault */
491 mfspr r3, SPR_SYSTEM_SAVE_K_2 /* info about page fault */
492 .else
493 .ifc \vecnum, INT_ILL_TRANS
70d2b595 494 mfspr r2, ILL_VA_PC
18aecc2b
CM
495 .else
496 .ifc \vecnum, INT_DOUBLE_FAULT
497 mfspr r2, SPR_SYSTEM_SAVE_K_2 /* double fault info from HV */
498 .else
499 .ifc \c_routine, do_trap
500 mfspr r2, GPV_REASON
501 .else
502 .ifc \c_routine, op_handle_perf_interrupt
503 mfspr r2, PERF_COUNT_STS
504#if CHIP_HAS_AUX_PERF_COUNTERS()
505 .else
506 .ifc \c_routine, op_handle_aux_perf_interrupt
507 mfspr r2, AUX_PERF_COUNT_STS
508 .endif
509#endif
510 .endif
511 .endif
512 .endif
513 .endif
514 .endif
515 /* Put function pointer in r0 */
516 moveli r0, hw2_last(\c_routine)
517 shl16insli r0, r0, hw1(\c_routine)
518 {
519 shl16insli r0, r0, hw0(\c_routine)
520 j \processing
521 }
522 .endif
523 ENDPROC(intvec_\vecname)
524
525#ifdef __COLLECT_LINKER_FEEDBACK__
526 .pushsection .text.intvec_feedback,"ax"
527 .org (\vecnum << 5)
528 FEEDBACK_ENTER_EXPLICIT(intvec_\vecname, .intrpt1, 1 << 8)
529 jrp lr
530 .popsection
531#endif
532
533 .endm
534
535
536 /*
537 * Save the rest of the registers that we didn't save in the actual
538 * vector itself. We can't use r0-r10 inclusive here.
539 */
540 .macro finish_interrupt_save, function
541
542 /* If it's a syscall, save a proper orig_r0, otherwise just zero. */
543 PTREGS_PTR(r52, PTREGS_OFFSET_ORIG_R0)
544 {
545 .ifc \function,handle_syscall
546 st r52, r0
547 .else
548 st r52, zero
549 .endif
550 PTREGS_PTR(r52, PTREGS_OFFSET_TP)
551 }
552 st r52, tp
553 {
554 mfspr tp, CMPEXCH_VALUE
555 PTREGS_PTR(r52, PTREGS_OFFSET_CMPEXCH)
556 }
557
558 /*
559 * For ordinary syscalls, we save neither caller- nor callee-
560 * save registers, since the syscall invoker doesn't expect the
561 * caller-saves to be saved, and the called kernel functions will
562 * take care of saving the callee-saves for us.
563 *
564 * For interrupts we save just the caller-save registers. Saving
565 * them is required (since the "caller" can't save them). Again,
566 * the called kernel functions will restore the callee-save
567 * registers for us appropriately.
568 *
569 * On return, we normally restore nothing special for syscalls,
570 * and just the caller-save registers for interrupts.
571 *
572 * However, there are some important caveats to all this:
573 *
574 * - We always save a few callee-save registers to give us
575 * some scratchpad registers to carry across function calls.
576 *
577 * - fork/vfork/etc require us to save all the callee-save
578 * registers, which we do in PTREGS_SYSCALL_ALL_REGS, below.
579 *
580 * - We always save r0..r5 and r10 for syscalls, since we need
581 * to reload them a bit later for the actual kernel call, and
582 * since we might need them for -ERESTARTNOINTR, etc.
583 *
584 * - Before invoking a signal handler, we save the unsaved
585 * callee-save registers so they are visible to the
586 * signal handler or any ptracer.
587 *
588 * - If the unsaved callee-save registers are modified, we set
589 * a bit in pt_regs so we know to reload them from pt_regs
590 * and not just rely on the kernel function unwinding.
591 * (Done for ptrace register writes and SA_SIGINFO handler.)
592 */
593 {
594 st r52, tp
595 PTREGS_PTR(r52, PTREGS_OFFSET_REG(33))
596 }
597 wh64 r52 /* cache line 4 */
598 push_reg r33, r52
599 push_reg r32, r52
600 push_reg r31, r52
601 .ifc \function,handle_syscall
602 push_reg r30, r52, PTREGS_OFFSET_SYSCALL - PTREGS_OFFSET_REG(30)
603 push_reg TREG_SYSCALL_NR_NAME, r52, \
604 PTREGS_OFFSET_REG(5) - PTREGS_OFFSET_SYSCALL
605 .else
606
607 push_reg r30, r52, PTREGS_OFFSET_REG(29) - PTREGS_OFFSET_REG(30)
608 wh64 r52 /* cache line 3 */
609 push_reg r29, r52
610 push_reg r28, r52
611 push_reg r27, r52
612 push_reg r26, r52
613 push_reg r25, r52
614 push_reg r24, r52
615 push_reg r23, r52
616 push_reg r22, r52
617 wh64 r52 /* cache line 2 */
618 push_reg r21, r52
619 push_reg r20, r52
620 push_reg r19, r52
621 push_reg r18, r52
622 push_reg r17, r52
623 push_reg r16, r52
624 push_reg r15, r52
625 push_reg r14, r52
626 wh64 r52 /* cache line 1 */
627 push_reg r13, r52
628 push_reg r12, r52
629 push_reg r11, r52
630 push_reg r10, r52
631 push_reg r9, r52
632 push_reg r8, r52
633 push_reg r7, r52
634 push_reg r6, r52
635
636 .endif
637
638 push_reg r5, r52
639 st r52, r4
640
18aecc2b
CM
641 /*
642 * If we will be returning to the kernel, we will need to
643 * reset the interrupt masks to the state they had before.
644 * Set DISABLE_IRQ in flags iff we came from PL1 with irqs disabled.
645 */
646 mfspr r32, SPR_EX_CONTEXT_K_1
647 {
648 andi r32, r32, SPR_EX_CONTEXT_1_1__PL_MASK /* mask off ICS */
649 PTREGS_PTR(r21, PTREGS_OFFSET_FLAGS)
650 }
651 beqzt r32, 1f /* zero if from user space */
652 IRQS_DISABLED(r32) /* zero if irqs enabled */
653#if PT_FLAGS_DISABLE_IRQ != 1
654# error Value of IRQS_DISABLED used to set PT_FLAGS_DISABLE_IRQ; fix
655#endif
6561:
657 .ifnc \function,handle_syscall
658 /* Record the fact that we saved the caller-save registers above. */
659 ori r32, r32, PT_FLAGS_CALLER_SAVES
660 .endif
661 st r21, r32
662
51007004
CM
663 /*
664 * we've captured enough state to the stack (including in
665 * particular our EX_CONTEXT state) that we can now release
666 * the interrupt critical section and replace it with our
667 * standard "interrupts disabled" mask value. This allows
668 * synchronous interrupts (and profile interrupts) to punch
669 * through from this point onwards.
670 *
671 * It's important that no code before this point touch memory
672 * other than our own stack (to keep the invariant that this
673 * is all that gets touched under ICS), and that no code after
674 * this point reference any interrupt-specific SPR, in particular
675 * the EX_CONTEXT_K_ values.
676 */
677 .ifc \function,handle_nmi
678 IRQ_DISABLE_ALL(r20)
679 .else
680 IRQ_DISABLE(r20, r21)
681 .endif
682 mtspr INTERRUPT_CRITICAL_SECTION, zero
683
684 /* Load tp with our per-cpu offset. */
685#ifdef CONFIG_SMP
686 {
687 mfspr r20, SPR_SYSTEM_SAVE_K_0
688 moveli r21, hw2_last(__per_cpu_offset)
689 }
690 {
691 shl16insli r21, r21, hw1(__per_cpu_offset)
35f05976 692 bfextu r20, r20, CPU_SHIFT, 63
51007004
CM
693 }
694 shl16insli r21, r21, hw0(__per_cpu_offset)
695 shl3add r20, r20, r21
696 ld tp, r20
697#else
698 move tp, zero
699#endif
700
18aecc2b
CM
701#ifdef __COLLECT_LINKER_FEEDBACK__
702 /*
703 * Notify the feedback routines that we were in the
704 * appropriate fixed interrupt vector area. Note that we
705 * still have ICS set at this point, so we can't invoke any
706 * atomic operations or we will panic. The feedback
707 * routines internally preserve r0..r10 and r30 up.
708 */
709 .ifnc \function,handle_syscall
710 shli r20, r1, 5
711 .else
712 moveli r20, INT_SWINT_1 << 5
713 .endif
714 moveli r21, hw2_last(intvec_feedback)
715 shl16insli r21, r21, hw1(intvec_feedback)
716 shl16insli r21, r21, hw0(intvec_feedback)
717 add r20, r20, r21
718 jalr r20
719
720 /* And now notify the feedback routines that we are here. */
721 FEEDBACK_ENTER(\function)
722#endif
723
18aecc2b
CM
724 /*
725 * Prepare the first 256 stack bytes to be rapidly accessible
726 * without having to fetch the background data.
727 */
728 addi r52, sp, -64
729 {
730 wh64 r52
731 addi r52, r52, -64
732 }
733 {
734 wh64 r52
735 addi r52, r52, -64
736 }
737 {
738 wh64 r52
739 addi r52, r52, -64
740 }
741 wh64 r52
742
743#ifdef CONFIG_TRACE_IRQFLAGS
744 .ifnc \function,handle_nmi
745 /*
746 * We finally have enough state set up to notify the irq
747 * tracing code that irqs were disabled on entry to the handler.
748 * The TRACE_IRQS_OFF call clobbers registers r0-r29.
749 * For syscalls, we already have the register state saved away
750 * on the stack, so we don't bother to do any register saves here,
751 * and later we pop the registers back off the kernel stack.
752 * For interrupt handlers, save r0-r3 in callee-saved registers.
753 */
754 .ifnc \function,handle_syscall
755 { move r30, r0; move r31, r1 }
756 { move r32, r2; move r33, r3 }
757 .endif
758 TRACE_IRQS_OFF
759 .ifnc \function,handle_syscall
760 { move r0, r30; move r1, r31 }
761 { move r2, r32; move r3, r33 }
762 .endif
763 .endif
764#endif
765
766 .endm
767
768 /*
769 * Redispatch a downcall.
770 */
771 .macro dc_dispatch vecnum, vecname
772 .org (\vecnum << 8)
773intvec_\vecname:
9ae09838 774 j _hv_downcall_dispatch
18aecc2b
CM
775 ENDPROC(intvec_\vecname)
776 .endm
777
778 /*
779 * Common code for most interrupts. The C function we're eventually
780 * going to is in r0, and the faultnum is in r1; the original
781 * values for those registers are on the stack.
782 */
783 .pushsection .text.handle_interrupt,"ax"
784handle_interrupt:
785 finish_interrupt_save handle_interrupt
786
787 /* Jump to the C routine; it should enable irqs as soon as possible. */
788 {
789 jalr r0
790 PTREGS_PTR(r0, PTREGS_OFFSET_BASE)
791 }
792 FEEDBACK_REENTER(handle_interrupt)
793 {
794 movei r30, 0 /* not an NMI */
795 j interrupt_return
796 }
797 STD_ENDPROC(handle_interrupt)
798
799/*
800 * This routine takes a boolean in r30 indicating if this is an NMI.
801 * If so, we also expect a boolean in r31 indicating whether to
802 * re-enable the oprofile interrupts.
e1d5c019
CM
803 *
804 * Note that .Lresume_userspace is jumped to directly in several
805 * places, and we need to make sure r30 is set correctly in those
806 * callers as well.
18aecc2b
CM
807 */
808STD_ENTRY(interrupt_return)
809 /* If we're resuming to kernel space, don't check thread flags. */
810 {
811 bnez r30, .Lrestore_all /* NMIs don't special-case user-space */
812 PTREGS_PTR(r29, PTREGS_OFFSET_EX1)
813 }
814 ld r29, r29
815 andi r29, r29, SPR_EX_CONTEXT_1_1__PL_MASK /* mask off ICS */
816 {
817 beqzt r29, .Lresume_userspace
bc1a298f 818 move r29, sp
18aecc2b
CM
819 }
820
bc1a298f
CM
821#ifdef CONFIG_PREEMPT
822 /* Returning to kernel space. Check if we need preemption. */
823 EXTRACT_THREAD_INFO(r29)
824 addli r28, r29, THREAD_INFO_FLAGS_OFFSET
825 {
826 ld r28, r28
827 addli r29, r29, THREAD_INFO_PREEMPT_COUNT_OFFSET
828 }
829 {
830 andi r28, r28, _TIF_NEED_RESCHED
831 ld4s r29, r29
832 }
833 beqzt r28, 1f
834 bnez r29, 1f
835 jal preempt_schedule_irq
836 FEEDBACK_REENTER(interrupt_return)
8371:
838#endif
839
18aecc2b 840 /* If we're resuming to _cpu_idle_nap, bump PC forward by 8. */
bc1a298f
CM
841 {
842 moveli r27, hw2_last(_cpu_idle_nap)
843 PTREGS_PTR(r29, PTREGS_OFFSET_PC)
844 }
18aecc2b
CM
845 {
846 ld r28, r29
847 shl16insli r27, r27, hw1(_cpu_idle_nap)
848 }
849 {
850 shl16insli r27, r27, hw0(_cpu_idle_nap)
851 }
852 {
853 cmpeq r27, r27, r28
854 }
855 {
856 blbc r27, .Lrestore_all
857 addi r28, r28, 8
858 }
859 st r29, r28
860 j .Lrestore_all
861
862.Lresume_userspace:
863 FEEDBACK_REENTER(interrupt_return)
864
fc327e26
CM
865 /*
866 * Use r33 to hold whether we have already loaded the callee-saves
867 * into ptregs. We don't want to do it twice in this loop, since
868 * then we'd clobber whatever changes are made by ptrace, etc.
869 */
870 {
871 movei r33, 0
872 move r32, sp
873 }
874
875 /* Get base of stack in r32. */
876 EXTRACT_THREAD_INFO(r32)
877
878.Lretry_work_pending:
18aecc2b
CM
879 /*
880 * Disable interrupts so as to make sure we don't
881 * miss an interrupt that sets any of the thread flags (like
882 * need_resched or sigpending) between sampling and the iret.
883 * Routines like schedule() or do_signal() may re-enable
884 * interrupts before returning.
885 */
886 IRQ_DISABLE(r20, r21)
887 TRACE_IRQS_OFF /* Note: clobbers registers r0-r29 */
888
18aecc2b
CM
889
890 /* Check to see if there is any work to do before returning to user. */
891 {
892 addi r29, r32, THREAD_INFO_FLAGS_OFFSET
893 moveli r1, hw1_last(_TIF_ALLWORK_MASK)
894 }
895 {
896 ld r29, r29
897 shl16insli r1, r1, hw0(_TIF_ALLWORK_MASK)
898 }
899 and r1, r29, r1
900 beqzt r1, .Lrestore_all
901
902 /*
903 * Make sure we have all the registers saved for signal
fc327e26 904 * handling or notify-resume. Call out to C code to figure out
18aecc2b
CM
905 * exactly what we need to do for each flag bit, then if
906 * necessary, reload the flags and recheck.
907 */
18aecc2b
CM
908 {
909 PTREGS_PTR(r0, PTREGS_OFFSET_BASE)
fc327e26 910 bnez r33, 1f
18aecc2b 911 }
fc327e26
CM
912 push_extra_callee_saves r0
913 movei r33, 1
9141: jal do_work_pending
915 bnez r0, .Lretry_work_pending
18aecc2b
CM
916
917 /*
918 * In the NMI case we
919 * omit the call to single_process_check_nohz, which normally checks
920 * to see if we should start or stop the scheduler tick, because
921 * we can't call arbitrary Linux code from an NMI context.
922 * We always call the homecache TLB deferral code to re-trigger
923 * the deferral mechanism.
924 *
925 * The other chunk of responsibility this code has is to reset the
926 * interrupt masks appropriately to reset irqs and NMIs. We have
927 * to call TRACE_IRQS_OFF and TRACE_IRQS_ON to support all the
928 * lockdep-type stuff, but we can't set ICS until afterwards, since
929 * ICS can only be used in very tight chunks of code to avoid
930 * tripping over various assertions that it is off.
931 */
932.Lrestore_all:
933 PTREGS_PTR(r0, PTREGS_OFFSET_EX1)
934 {
935 ld r0, r0
936 PTREGS_PTR(r32, PTREGS_OFFSET_FLAGS)
937 }
938 {
939 andi r0, r0, SPR_EX_CONTEXT_1_1__PL_MASK
940 ld r32, r32
941 }
942 bnez r0, 1f
943 j 2f
944#if PT_FLAGS_DISABLE_IRQ != 1
945# error Assuming PT_FLAGS_DISABLE_IRQ == 1 so we can use blbct below
946#endif
9471: blbct r32, 2f
948 IRQ_DISABLE(r20,r21)
949 TRACE_IRQS_OFF
950 movei r0, 1
951 mtspr INTERRUPT_CRITICAL_SECTION, r0
952 beqzt r30, .Lrestore_regs
953 j 3f
9542: TRACE_IRQS_ON
51007004 955 IRQ_ENABLE_LOAD(r20, r21)
18aecc2b
CM
956 movei r0, 1
957 mtspr INTERRUPT_CRITICAL_SECTION, r0
51007004 958 IRQ_ENABLE_APPLY(r20, r21)
18aecc2b
CM
959 beqzt r30, .Lrestore_regs
9603:
961
962
963 /*
964 * We now commit to returning from this interrupt, since we will be
965 * doing things like setting EX_CONTEXT SPRs and unwinding the stack
966 * frame. No calls should be made to any other code after this point.
967 * This code should only be entered with ICS set.
968 * r32 must still be set to ptregs.flags.
969 * We launch loads to each cache line separately first, so we can
970 * get some parallelism out of the memory subsystem.
971 * We start zeroing caller-saved registers throughout, since
972 * that will save some cycles if this turns out to be a syscall.
973 */
974.Lrestore_regs:
18aecc2b
CM
975
976 /*
977 * Rotate so we have one high bit and one low bit to test.
978 * - low bit says whether to restore all the callee-saved registers,
979 * or just r30-r33, and r52 up.
980 * - high bit (i.e. sign bit) says whether to restore all the
981 * caller-saved registers, or just r0.
982 */
983#if PT_FLAGS_CALLER_SAVES != 2 || PT_FLAGS_RESTORE_REGS != 4
984# error Rotate trick does not work :-)
985#endif
986 {
987 rotli r20, r32, 62
988 PTREGS_PTR(sp, PTREGS_OFFSET_REG(0))
989 }
990
991 /*
992 * Load cache lines 0, 4, 6 and 7, in that order, then use
993 * the last loaded value, which makes it likely that the other
994 * cache lines have also loaded, at which point we should be
995 * able to safely read all the remaining words on those cache
996 * lines without waiting for the memory subsystem.
997 */
998 pop_reg r0, sp, PTREGS_OFFSET_REG(30) - PTREGS_OFFSET_REG(0)
999 pop_reg r30, sp, PTREGS_OFFSET_REG(52) - PTREGS_OFFSET_REG(30)
1000 pop_reg_zero r52, r3, sp, PTREGS_OFFSET_CMPEXCH - PTREGS_OFFSET_REG(52)
1001 pop_reg_zero r21, r27, sp, PTREGS_OFFSET_EX1 - PTREGS_OFFSET_CMPEXCH
1002 pop_reg_zero lr, r2, sp, PTREGS_OFFSET_PC - PTREGS_OFFSET_EX1
1003 {
1004 mtspr CMPEXCH_VALUE, r21
1005 move r4, zero
1006 }
1007 pop_reg r21, sp, PTREGS_OFFSET_REG(31) - PTREGS_OFFSET_PC
1008 {
1009 mtspr SPR_EX_CONTEXT_K_1, lr
1010 andi lr, lr, SPR_EX_CONTEXT_1_1__PL_MASK /* mask off ICS */
1011 }
1012 {
1013 mtspr SPR_EX_CONTEXT_K_0, r21
1014 move r5, zero
1015 }
1016
1017 /* Restore callee-saveds that we actually use. */
1018 pop_reg_zero r31, r6
1019 pop_reg_zero r32, r7
1020 pop_reg_zero r33, r8, sp, PTREGS_OFFSET_REG(29) - PTREGS_OFFSET_REG(33)
1021
1022 /*
1023 * If we modified other callee-saveds, restore them now.
1024 * This is rare, but could be via ptrace or signal handler.
1025 */
1026 {
1027 move r9, zero
1028 blbs r20, .Lrestore_callees
1029 }
1030.Lcontinue_restore_regs:
1031
1032 /* Check if we're returning from a syscall. */
1033 {
1034 move r10, zero
1035 bltzt r20, 1f /* no, so go restore callee-save registers */
1036 }
1037
1038 /*
1039 * Check if we're returning to userspace.
1040 * Note that if we're not, we don't worry about zeroing everything.
1041 */
1042 {
1043 addli sp, sp, PTREGS_OFFSET_LR - PTREGS_OFFSET_REG(29)
1044 bnez lr, .Lkernel_return
1045 }
1046
1047 /*
1048 * On return from syscall, we've restored r0 from pt_regs, but we
1049 * clear the remainder of the caller-saved registers. We could
1050 * restore the syscall arguments, but there's not much point,
1051 * and it ensures user programs aren't trying to use the
1052 * caller-saves if we clear them, as well as avoiding leaking
1053 * kernel pointers into userspace.
1054 */
1055 pop_reg_zero lr, r11, sp, PTREGS_OFFSET_TP - PTREGS_OFFSET_LR
1056 pop_reg_zero tp, r12, sp, PTREGS_OFFSET_SP - PTREGS_OFFSET_TP
1057 {
1058 ld sp, sp
1059 move r13, zero
1060 move r14, zero
1061 }
1062 { move r15, zero; move r16, zero }
1063 { move r17, zero; move r18, zero }
1064 { move r19, zero; move r20, zero }
1065 { move r21, zero; move r22, zero }
1066 { move r23, zero; move r24, zero }
1067 { move r25, zero; move r26, zero }
1068
1069 /* Set r1 to errno if we are returning an error, otherwise zero. */
1070 {
1071 moveli r29, 4096
1072 sub r1, zero, r0
1073 }
1074 {
1075 move r28, zero
1076 cmpltu r29, r1, r29
1077 }
1078 {
1079 mnz r1, r29, r1
1080 move r29, zero
1081 }
1082 iret
1083
1084 /*
1085 * Not a syscall, so restore caller-saved registers.
1086 * First kick off loads for cache lines 1-3, which we're touching
1087 * for the first time here.
1088 */
1089 .align 64
10901: pop_reg r29, sp, PTREGS_OFFSET_REG(21) - PTREGS_OFFSET_REG(29)
1091 pop_reg r21, sp, PTREGS_OFFSET_REG(13) - PTREGS_OFFSET_REG(21)
1092 pop_reg r13, sp, PTREGS_OFFSET_REG(1) - PTREGS_OFFSET_REG(13)
1093 pop_reg r1
1094 pop_reg r2
1095 pop_reg r3
1096 pop_reg r4
1097 pop_reg r5
1098 pop_reg r6
1099 pop_reg r7
1100 pop_reg r8
1101 pop_reg r9
1102 pop_reg r10
1103 pop_reg r11
1104 pop_reg r12, sp, 16
1105 /* r13 already restored above */
1106 pop_reg r14
1107 pop_reg r15
1108 pop_reg r16
1109 pop_reg r17
1110 pop_reg r18
1111 pop_reg r19
1112 pop_reg r20, sp, 16
1113 /* r21 already restored above */
1114 pop_reg r22
1115 pop_reg r23
1116 pop_reg r24
1117 pop_reg r25
1118 pop_reg r26
1119 pop_reg r27
1120 pop_reg r28, sp, PTREGS_OFFSET_LR - PTREGS_OFFSET_REG(28)
1121 /* r29 already restored above */
1122 bnez lr, .Lkernel_return
1123 pop_reg lr, sp, PTREGS_OFFSET_TP - PTREGS_OFFSET_LR
1124 pop_reg tp, sp, PTREGS_OFFSET_SP - PTREGS_OFFSET_TP
1125 ld sp, sp
1126 iret
1127
1128 /*
1129 * We can't restore tp when in kernel mode, since a thread might
1130 * have migrated from another cpu and brought a stale tp value.
1131 */
1132.Lkernel_return:
1133 pop_reg lr, sp, PTREGS_OFFSET_SP - PTREGS_OFFSET_LR
1134 ld sp, sp
1135 iret
1136
1137 /* Restore callee-saved registers from r34 to r51. */
1138.Lrestore_callees:
1139 addli sp, sp, PTREGS_OFFSET_REG(34) - PTREGS_OFFSET_REG(29)
1140 pop_reg r34
1141 pop_reg r35
1142 pop_reg r36
1143 pop_reg r37
1144 pop_reg r38
1145 pop_reg r39
1146 pop_reg r40
1147 pop_reg r41
1148 pop_reg r42
1149 pop_reg r43
1150 pop_reg r44
1151 pop_reg r45
1152 pop_reg r46
1153 pop_reg r47
1154 pop_reg r48
1155 pop_reg r49
1156 pop_reg r50
1157 pop_reg r51, sp, PTREGS_OFFSET_REG(29) - PTREGS_OFFSET_REG(51)
1158 j .Lcontinue_restore_regs
1159 STD_ENDPROC(interrupt_return)
1160
1161 /*
1162 * "NMI" interrupts mask ALL interrupts before calling the
1163 * handler, and don't check thread flags, etc., on the way
1164 * back out. In general, the only things we do here for NMIs
1165 * are register save/restore and dataplane kernel-TLB management.
1166 * We don't (for example) deal with start/stop of the sched tick.
1167 */
1168 .pushsection .text.handle_nmi,"ax"
1169handle_nmi:
1170 finish_interrupt_save handle_nmi
1171 {
1172 jalr r0
1173 PTREGS_PTR(r0, PTREGS_OFFSET_BASE)
1174 }
1175 FEEDBACK_REENTER(handle_nmi)
1176 {
1177 movei r30, 1
1178 move r31, r0
1179 }
1180 j interrupt_return
1181 STD_ENDPROC(handle_nmi)
1182
1183 /*
1184 * Parallel code for syscalls to handle_interrupt.
1185 */
1186 .pushsection .text.handle_syscall,"ax"
1187handle_syscall:
1188 finish_interrupt_save handle_syscall
1189
1190 /* Enable irqs. */
1191 TRACE_IRQS_ON
1192 IRQ_ENABLE(r20, r21)
1193
1194 /* Bump the counter for syscalls made on this tile. */
1195 moveli r20, hw2_last(irq_stat + IRQ_CPUSTAT_SYSCALL_COUNT_OFFSET)
1196 shl16insli r20, r20, hw1(irq_stat + IRQ_CPUSTAT_SYSCALL_COUNT_OFFSET)
1197 shl16insli r20, r20, hw0(irq_stat + IRQ_CPUSTAT_SYSCALL_COUNT_OFFSET)
1198 add r20, r20, tp
1199 ld4s r21, r20
fc327e26
CM
1200 {
1201 addi r21, r21, 1
1202 move r31, sp
1203 }
1204 {
1205 st4 r20, r21
1206 EXTRACT_THREAD_INFO(r31)
1207 }
18aecc2b
CM
1208
1209 /* Trace syscalls, if requested. */
18aecc2b 1210 addi r31, r31, THREAD_INFO_FLAGS_OFFSET
ef567f25
SM
1211 {
1212 ld r30, r31
1213 moveli r32, _TIF_SYSCALL_ENTRY_WORK
1214 }
1215 and r30, r30, r32
18aecc2b
CM
1216 {
1217 addi r30, r31, THREAD_INFO_STATUS_OFFSET - THREAD_INFO_FLAGS_OFFSET
1218 beqzt r30, .Lrestore_syscall_regs
1219 }
ef182724
SM
1220 {
1221 PTREGS_PTR(r0, PTREGS_OFFSET_BASE)
1222 jal do_syscall_trace_enter
1223 }
18aecc2b
CM
1224 FEEDBACK_REENTER(handle_syscall)
1225
1226 /*
1227 * We always reload our registers from the stack at this
1228 * point. They might be valid, if we didn't build with
1229 * TRACE_IRQFLAGS, and this isn't a dataplane tile, and we're not
1230 * doing syscall tracing, but there are enough cases now that it
1231 * seems simplest just to do the reload unconditionally.
1232 */
1233.Lrestore_syscall_regs:
1234 {
1235 ld r30, r30
1236 PTREGS_PTR(r11, PTREGS_OFFSET_REG(0))
1237 }
1238 pop_reg r0, r11
1239 pop_reg r1, r11
1240 pop_reg r2, r11
1241 pop_reg r3, r11
1242 pop_reg r4, r11
1243 pop_reg r5, r11, PTREGS_OFFSET_SYSCALL - PTREGS_OFFSET_REG(5)
1244 {
1245 ld TREG_SYSCALL_NR_NAME, r11
1246 moveli r21, __NR_syscalls
1247 }
1248
1249 /* Ensure that the syscall number is within the legal range. */
1250 {
1251 moveli r20, hw2(sys_call_table)
570fd501 1252#ifdef CONFIG_COMPAT
18aecc2b 1253 blbs r30, .Lcompat_syscall
570fd501 1254#endif
18aecc2b
CM
1255 }
1256 {
1257 cmpltu r21, TREG_SYSCALL_NR_NAME, r21
1258 shl16insli r20, r20, hw1(sys_call_table)
1259 }
1260 {
1261 blbc r21, .Linvalid_syscall
1262 shl16insli r20, r20, hw0(sys_call_table)
1263 }
1264.Lload_syscall_pointer:
1265 shl3add r20, TREG_SYSCALL_NR_NAME, r20
1266 ld r20, r20
1267
1268 /* Jump to syscall handler. */
1269 jalr r20
1270.Lhandle_syscall_link: /* value of "lr" after "jalr r20" above */
1271
1272 /*
1273 * Write our r0 onto the stack so it gets restored instead
1274 * of whatever the user had there before.
1275 * In compat mode, sign-extend r0 before storing it.
1276 */
1277 {
1278 PTREGS_PTR(r29, PTREGS_OFFSET_REG(0))
1279 blbct r30, 1f
1280 }
1281 addxi r0, r0, 0
12821: st r29, r0
1283
1284.Lsyscall_sigreturn_skip:
1285 FEEDBACK_REENTER(handle_syscall)
1286
1287 /* Do syscall trace again, if requested. */
ef567f25
SM
1288 {
1289 ld r30, r31
1290 moveli r32, _TIF_SYSCALL_EXIT_WORK
1291 }
1292 and r0, r30, r32
2858f856
CM
1293 {
1294 andi r0, r30, _TIF_SINGLESTEP
1295 beqzt r0, 1f
1296 }
ef182724
SM
1297 {
1298 PTREGS_PTR(r0, PTREGS_OFFSET_BASE)
1299 jal do_syscall_trace_exit
1300 }
18aecc2b 1301 FEEDBACK_REENTER(handle_syscall)
2858f856
CM
1302 andi r0, r30, _TIF_SINGLESTEP
1303
13041: beqzt r0, 2f
1305
1306 /* Single stepping -- notify ptrace. */
1307 {
1308 movei r0, SIGTRAP
1309 jal ptrace_notify
1310 }
1311 FEEDBACK_REENTER(handle_syscall)
1312
e1d5c019
CM
13132: {
1314 movei r30, 0 /* not an NMI */
1315 j .Lresume_userspace /* jump into middle of interrupt_return */
1316 }
18aecc2b 1317
570fd501 1318#ifdef CONFIG_COMPAT
18aecc2b
CM
1319.Lcompat_syscall:
1320 /*
1321 * Load the base of the compat syscall table in r20, and
1322 * range-check the syscall number (duplicated from 64-bit path).
1323 * Sign-extend all the user's passed arguments to make them consistent.
1324 * Also save the original "r(n)" values away in "r(11+n)" in
1325 * case the syscall table entry wants to validate them.
1326 */
1327 moveli r20, hw2(compat_sys_call_table)
1328 {
1329 cmpltu r21, TREG_SYSCALL_NR_NAME, r21
1330 shl16insli r20, r20, hw1(compat_sys_call_table)
1331 }
1332 {
1333 blbc r21, .Linvalid_syscall
1334 shl16insli r20, r20, hw0(compat_sys_call_table)
1335 }
1336 { move r11, r0; addxi r0, r0, 0 }
1337 { move r12, r1; addxi r1, r1, 0 }
1338 { move r13, r2; addxi r2, r2, 0 }
1339 { move r14, r3; addxi r3, r3, 0 }
1340 { move r15, r4; addxi r4, r4, 0 }
1341 { move r16, r5; addxi r5, r5, 0 }
1342 j .Lload_syscall_pointer
570fd501 1343#endif
18aecc2b
CM
1344
1345.Linvalid_syscall:
1346 /* Report an invalid syscall back to the user program */
1347 {
1348 PTREGS_PTR(r29, PTREGS_OFFSET_REG(0))
1349 movei r28, -ENOSYS
1350 }
1351 st r29, r28
e1d5c019
CM
1352 {
1353 movei r30, 0 /* not an NMI */
1354 j .Lresume_userspace /* jump into middle of interrupt_return */
1355 }
18aecc2b
CM
1356 STD_ENDPROC(handle_syscall)
1357
1358 /* Return the address for oprofile to suppress in backtraces. */
1359STD_ENTRY_SECTION(handle_syscall_link_address, .text.handle_syscall)
1360 lnk r0
1361 {
1362 addli r0, r0, .Lhandle_syscall_link - .
1363 jrp lr
1364 }
1365 STD_ENDPROC(handle_syscall_link_address)
1366
1367STD_ENTRY(ret_from_fork)
1368 jal sim_notify_fork
1369 jal schedule_tail
1370 FEEDBACK_REENTER(ret_from_fork)
e1d5c019
CM
1371 {
1372 movei r30, 0 /* not an NMI */
1373 j .Lresume_userspace /* jump into middle of interrupt_return */
1374 }
18aecc2b
CM
1375 STD_ENDPROC(ret_from_fork)
1376
0f8b9838
CM
1377STD_ENTRY(ret_from_kernel_thread)
1378 jal sim_notify_fork
1379 jal schedule_tail
1380 FEEDBACK_REENTER(ret_from_fork)
1381 {
1382 move r0, r31
1383 jalr r30
1384 }
1385 FEEDBACK_REENTER(ret_from_kernel_thread)
1386 {
1387 movei r30, 0 /* not an NMI */
1388 j .Lresume_userspace /* jump into middle of interrupt_return */
1389 }
1390 STD_ENDPROC(ret_from_kernel_thread)
1391
18aecc2b
CM
1392/* Various stub interrupt handlers and syscall handlers */
1393
1394STD_ENTRY_LOCAL(_kernel_double_fault)
1395 mfspr r1, SPR_EX_CONTEXT_K_0
1396 move r2, lr
1397 move r3, sp
1398 move r4, r52
1399 addi sp, sp, -C_ABI_SAVE_AREA_SIZE
1400 j kernel_double_fault
1401 STD_ENDPROC(_kernel_double_fault)
1402
1403STD_ENTRY_LOCAL(bad_intr)
1404 mfspr r2, SPR_EX_CONTEXT_K_0
1405 panic "Unhandled interrupt %#x: PC %#lx"
1406 STD_ENDPROC(bad_intr)
1407
18aecc2b
CM
1408/*
1409 * Special-case sigreturn to not write r0 to the stack on return.
1410 * This is technically more efficient, but it also avoids difficulties
1411 * in the 64-bit OS when handling 32-bit compat code, since we must not
1412 * sign-extend r0 for the sigreturn return-value case.
1413 */
1414#define PTREGS_SYSCALL_SIGRETURN(x, reg) \
1415 STD_ENTRY(_##x); \
1416 addli lr, lr, .Lsyscall_sigreturn_skip - .Lhandle_syscall_link; \
1417 { \
1418 PTREGS_PTR(reg, PTREGS_OFFSET_BASE); \
1419 j x \
1420 }; \
1421 STD_ENDPROC(_##x)
1422
18aecc2b
CM
1423PTREGS_SYSCALL_SIGRETURN(sys_rt_sigreturn, r0)
1424#ifdef CONFIG_COMPAT
18aecc2b
CM
1425PTREGS_SYSCALL_SIGRETURN(compat_sys_rt_sigreturn, r0)
1426#endif
1427
6b14e419 1428/* Save additional callee-saves to pt_regs and jump to standard function. */
18aecc2b
CM
1429STD_ENTRY(_sys_clone)
1430 push_extra_callee_saves r4
1431 j sys_clone
1432 STD_ENDPROC(_sys_clone)
1433
2f9ac29e
CM
1434 /*
1435 * Recover r3, r2, r1 and r0 here saved by unalign fast vector.
1436 * The vector area limit is 32 bundles, so we handle the reload here.
1437 * r0, r1, r2 are in thread_info from low to high memory in order.
1438 * r3 points to location the original r3 was saved.
1439 * We put this code in the __HEAD section so it can be reached
1440 * via a conditional branch from the fast path.
1441 */
1442 __HEAD
1443hand_unalign_slow:
1444 andi sp, sp, ~1
1445hand_unalign_slow_badsp:
1446 addi r3, r3, -(3 * 8)
1447 ld_add r0, r3, 8
1448 ld_add r1, r3, 8
1449 ld r2, r3
1450hand_unalign_slow_nonuser:
1451 mfspr r3, SPR_SYSTEM_SAVE_K_1
1452 __int_hand INT_UNALIGN_DATA, UNALIGN_DATA_SLOW, int_unalign
1453
1454/* The unaligned data support needs to read all the registers. */
18aecc2b
CM
1455int_unalign:
1456 push_extra_callee_saves r0
2f9ac29e
CM
1457 j do_unaligned
1458ENDPROC(hand_unalign_slow)
18aecc2b 1459
e1723538
CM
1460/* Fill the return address stack with nonzero entries. */
1461STD_ENTRY(fill_ra_stack)
1462 {
1463 move r0, lr
1464 jal 1f
1465 }
14661: jal 2f
14672: jal 3f
14683: jal 4f
14694: jrp r0
1470 STD_ENDPROC(fill_ra_stack)
1471
2f9ac29e
CM
1472 .macro int_hand vecnum, vecname, c_routine, processing=handle_interrupt
1473 .org (\vecnum << 8)
1474 __int_hand \vecnum, \vecname, \c_routine, \processing
1475 .endm
1476
18aecc2b
CM
1477/* Include .intrpt1 array of interrupt vectors */
1478 .section ".intrpt1", "ax"
1479
1480#define op_handle_perf_interrupt bad_intr
1481#define op_handle_aux_perf_interrupt bad_intr
1482
1483#ifndef CONFIG_HARDWALL
1484#define do_hardwall_trap bad_intr
1485#endif
1486
a714ffff 1487 int_hand INT_MEM_ERROR, MEM_ERROR, do_trap
18aecc2b
CM
1488 int_hand INT_SINGLE_STEP_3, SINGLE_STEP_3, bad_intr
1489#if CONFIG_KERNEL_PL == 2
1490 int_hand INT_SINGLE_STEP_2, SINGLE_STEP_2, gx_singlestep_handle
1491 int_hand INT_SINGLE_STEP_1, SINGLE_STEP_1, bad_intr
1492#else
1493 int_hand INT_SINGLE_STEP_2, SINGLE_STEP_2, bad_intr
1494 int_hand INT_SINGLE_STEP_1, SINGLE_STEP_1, gx_singlestep_handle
1495#endif
1496 int_hand INT_SINGLE_STEP_0, SINGLE_STEP_0, bad_intr
1497 int_hand INT_IDN_COMPLETE, IDN_COMPLETE, bad_intr
1498 int_hand INT_UDN_COMPLETE, UDN_COMPLETE, bad_intr
1499 int_hand INT_ITLB_MISS, ITLB_MISS, do_page_fault
1500 int_hand INT_ILL, ILL, do_trap
1501 int_hand INT_GPV, GPV, do_trap
1502 int_hand INT_IDN_ACCESS, IDN_ACCESS, do_trap
1503 int_hand INT_UDN_ACCESS, UDN_ACCESS, do_trap
1504 int_hand INT_SWINT_3, SWINT_3, do_trap
1505 int_hand INT_SWINT_2, SWINT_2, do_trap
1506 int_hand INT_SWINT_1, SWINT_1, SYSCALL, handle_syscall
1507 int_hand INT_SWINT_0, SWINT_0, do_trap
1508 int_hand INT_ILL_TRANS, ILL_TRANS, do_trap
2f9ac29e 1509 int_hand_unalign_fast INT_UNALIGN_DATA, UNALIGN_DATA
18aecc2b
CM
1510 int_hand INT_DTLB_MISS, DTLB_MISS, do_page_fault
1511 int_hand INT_DTLB_ACCESS, DTLB_ACCESS, do_page_fault
b8ace083 1512 int_hand INT_IDN_FIREWALL, IDN_FIREWALL, do_hardwall_trap
18aecc2b
CM
1513 int_hand INT_UDN_FIREWALL, UDN_FIREWALL, do_hardwall_trap
1514 int_hand INT_TILE_TIMER, TILE_TIMER, do_timer_interrupt
1515 int_hand INT_IDN_TIMER, IDN_TIMER, bad_intr
1516 int_hand INT_UDN_TIMER, UDN_TIMER, bad_intr
1517 int_hand INT_IDN_AVAIL, IDN_AVAIL, bad_intr
1518 int_hand INT_UDN_AVAIL, UDN_AVAIL, bad_intr
1519 int_hand INT_IPI_3, IPI_3, bad_intr
1520#if CONFIG_KERNEL_PL == 2
1521 int_hand INT_IPI_2, IPI_2, tile_dev_intr
1522 int_hand INT_IPI_1, IPI_1, bad_intr
1523#else
1524 int_hand INT_IPI_2, IPI_2, bad_intr
1525 int_hand INT_IPI_1, IPI_1, tile_dev_intr
1526#endif
1527 int_hand INT_IPI_0, IPI_0, bad_intr
1528 int_hand INT_PERF_COUNT, PERF_COUNT, \
1529 op_handle_perf_interrupt, handle_nmi
1530 int_hand INT_AUX_PERF_COUNT, AUX_PERF_COUNT, \
1531 op_handle_perf_interrupt, handle_nmi
1532 int_hand INT_INTCTRL_3, INTCTRL_3, bad_intr
1533#if CONFIG_KERNEL_PL == 2
1534 dc_dispatch INT_INTCTRL_2, INTCTRL_2
1535 int_hand INT_INTCTRL_1, INTCTRL_1, bad_intr
1536#else
1537 int_hand INT_INTCTRL_2, INTCTRL_2, bad_intr
1538 dc_dispatch INT_INTCTRL_1, INTCTRL_1
1539#endif
1540 int_hand INT_INTCTRL_0, INTCTRL_0, bad_intr
1541 int_hand INT_MESSAGE_RCV_DWNCL, MESSAGE_RCV_DWNCL, \
1542 hv_message_intr
1543 int_hand INT_DEV_INTR_DWNCL, DEV_INTR_DWNCL, bad_intr
1544 int_hand INT_I_ASID, I_ASID, bad_intr
1545 int_hand INT_D_ASID, D_ASID, bad_intr
1546 int_hand INT_DOUBLE_FAULT, DOUBLE_FAULT, do_trap
1547
1548 /* Synthetic interrupt delivered only by the simulator */
1549 int_hand INT_BREAKPOINT, BREAKPOINT, do_breakpoint
This page took 0.197835 seconds and 5 git commands to generate.