Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/parisc/kernel/entry.S
26288 views
1
/* SPDX-License-Identifier: GPL-2.0-or-later */
2
/*
3
* Linux/PA-RISC Project (http://www.parisc-linux.org/)
4
*
5
* kernel entry points (interruptions, system call wrappers)
6
* Copyright (C) 1999,2000 Philipp Rumpf
7
* Copyright (C) 1999 SuSE GmbH Nuernberg
8
* Copyright (C) 2000 Hewlett-Packard (John Marvin)
9
* Copyright (C) 1999 Hewlett-Packard (Frank Rowand)
10
*/
11
12
#include <asm/asm-offsets.h>
13
14
/* we have the following possibilities to act on an interruption:
15
* - handle in assembly and use shadowed registers only
16
* - save registers to kernel stack and handle in assembly or C */
17
18
19
#include <asm/psw.h>
20
#include <asm/cache.h> /* for L1_CACHE_SHIFT */
21
#include <asm/assembly.h> /* for LDREG/STREG defines */
22
#include <asm/signal.h>
23
#include <asm/unistd.h>
24
#include <asm/ldcw.h>
25
#include <asm/traps.h>
26
#include <asm/thread_info.h>
27
#include <asm/alternative.h>
28
#include <asm/spinlock_types.h>
29
30
#include <linux/linkage.h>
31
#include <linux/pgtable.h>
32
33
#ifdef CONFIG_64BIT
34
.level 2.0w
35
#else
36
.level 2.0
37
#endif
38
39
/*
40
* We need seven instructions after a TLB insert for it to take effect.
41
* The PA8800/PA8900 processors are an exception and need 12 instructions.
42
* The RFI changes both IAOQ_Back and IAOQ_Front, so it counts as one.
43
*/
44
#ifdef CONFIG_64BIT
45
#define NUM_PIPELINE_INSNS 12
46
#else
47
#define NUM_PIPELINE_INSNS 7
48
#endif
49
50
/* Insert num nops */
51
.macro insert_nops num
52
.rept \num
53
nop
54
.endr
55
.endm
56
57
/* Get aligned page_table_lock address for this mm from cr28/tr4 */
58
.macro get_ptl reg
59
mfctl %cr28,\reg
60
.endm
61
62
/* space_to_prot macro creates a prot id from a space id */
63
64
#if (SPACEID_SHIFT) == 0
65
.macro space_to_prot spc prot
66
depd,z \spc,62,31,\prot
67
.endm
68
#else
69
.macro space_to_prot spc prot
70
extrd,u \spc,(64 - (SPACEID_SHIFT)),32,\prot
71
.endm
72
#endif
73
/*
74
* The "get_stack" macros are responsible for determining the
75
* kernel stack value.
76
*
77
* If sr7 == 0
78
* Already using a kernel stack, so call the
79
* get_stack_use_r30 macro to push a pt_regs structure
80
* on the stack, and store registers there.
81
* else
82
* Need to set up a kernel stack, so call the
83
* get_stack_use_cr30 macro to set up a pointer
84
* to the pt_regs structure contained within the
85
* task pointer pointed to by cr30. Load the stack
86
* pointer from the task structure.
87
*
88
* Note that we use shadowed registers for temps until
89
* we can save %r26 and %r29. %r26 is used to preserve
90
* %r8 (a shadowed register) which temporarily contained
91
* either the fault type ("code") or the eirr. We need
92
* to use a non-shadowed register to carry the value over
93
* the rfir in virt_map. We use %r26 since this value winds
94
* up being passed as the argument to either do_cpu_irq_mask
95
* or handle_interruption. %r29 is used to hold a pointer
96
* the register save area, and once again, it needs to
97
* be a non-shadowed register so that it survives the rfir.
98
*/
99
100
.macro get_stack_use_cr30
101
102
/* we save the registers in the task struct */
103
104
copy %r30, %r17
105
mfctl %cr30, %r1
106
tophys %r1,%r9 /* task_struct */
107
LDREG TASK_STACK(%r9),%r30
108
ldo PT_SZ_ALGN(%r30),%r30
109
mtsp %r0,%sr7 /* clear sr7 after kernel stack was set! */
110
mtsp %r16,%sr3
111
ldo TASK_REGS(%r9),%r9
112
STREG %r17,PT_GR30(%r9)
113
STREG %r29,PT_GR29(%r9)
114
STREG %r26,PT_GR26(%r9)
115
STREG %r16,PT_SR7(%r9)
116
copy %r9,%r29
117
.endm
118
119
.macro get_stack_use_r30
120
121
/* we put a struct pt_regs on the stack and save the registers there */
122
123
tophys %r30,%r9
124
copy %r30,%r1
125
ldo PT_SZ_ALGN(%r30),%r30
126
STREG %r1,PT_GR30(%r9)
127
STREG %r29,PT_GR29(%r9)
128
STREG %r26,PT_GR26(%r9)
129
STREG %r16,PT_SR7(%r9)
130
copy %r9,%r29
131
.endm
132
133
.macro rest_stack
134
LDREG PT_GR1(%r29), %r1
135
LDREG PT_GR30(%r29),%r30
136
LDREG PT_GR29(%r29),%r29
137
.endm
138
139
/* default interruption handler
140
* (calls traps.c:handle_interruption) */
141
.macro def code
142
b intr_save
143
ldi \code, %r8
144
.align 32
145
.endm
146
147
/* Interrupt interruption handler
148
* (calls irq.c:do_cpu_irq_mask) */
149
.macro extint code
150
b intr_extint
151
mfsp %sr7,%r16
152
.align 32
153
.endm
154
155
.import os_hpmc, code
156
157
/* HPMC handler */
158
.macro hpmc code
159
nop /* must be a NOP, will be patched later */
160
load32 PA(os_hpmc), %r3
161
bv,n 0(%r3)
162
nop
163
.word 0 /* checksum (will be patched) */
164
.word 0 /* address of handler */
165
.word 0 /* length of handler */
166
.endm
167
168
/*
169
* Performance Note: Instructions will be moved up into
170
* this part of the code later on, once we are sure
171
* that the tlb miss handlers are close to final form.
172
*/
173
174
/* Register definitions for tlb miss handler macros */
175
176
va = r8 /* virtual address for which the trap occurred */
177
spc = r24 /* space for which the trap occurred */
178
179
#ifndef CONFIG_64BIT
180
181
/*
182
* itlb miss interruption handler (parisc 1.1 - 32 bit)
183
*/
184
185
.macro itlb_11 code
186
187
mfctl %pcsq, spc
188
b itlb_miss_11
189
mfctl %pcoq, va
190
191
.align 32
192
.endm
193
#endif
194
195
/*
196
* itlb miss interruption handler (parisc 2.0)
197
*/
198
199
.macro itlb_20 code
200
mfctl %pcsq, spc
201
#ifdef CONFIG_64BIT
202
b itlb_miss_20w
203
#else
204
b itlb_miss_20
205
#endif
206
mfctl %pcoq, va
207
208
.align 32
209
.endm
210
211
#ifndef CONFIG_64BIT
212
/*
213
* naitlb miss interruption handler (parisc 1.1 - 32 bit)
214
*/
215
216
.macro naitlb_11 code
217
218
mfctl %isr,spc
219
b naitlb_miss_11
220
mfctl %ior,va
221
222
.align 32
223
.endm
224
#endif
225
226
/*
227
* naitlb miss interruption handler (parisc 2.0)
228
*/
229
230
.macro naitlb_20 code
231
232
mfctl %isr,spc
233
#ifdef CONFIG_64BIT
234
b naitlb_miss_20w
235
#else
236
b naitlb_miss_20
237
#endif
238
mfctl %ior,va
239
240
.align 32
241
.endm
242
243
#ifndef CONFIG_64BIT
244
/*
245
* dtlb miss interruption handler (parisc 1.1 - 32 bit)
246
*/
247
248
.macro dtlb_11 code
249
250
mfctl %isr, spc
251
b dtlb_miss_11
252
mfctl %ior, va
253
254
.align 32
255
.endm
256
#endif
257
258
/*
259
* dtlb miss interruption handler (parisc 2.0)
260
*/
261
262
.macro dtlb_20 code
263
264
mfctl %isr, spc
265
#ifdef CONFIG_64BIT
266
b dtlb_miss_20w
267
#else
268
b dtlb_miss_20
269
#endif
270
mfctl %ior, va
271
272
.align 32
273
.endm
274
275
#ifndef CONFIG_64BIT
276
/* nadtlb miss interruption handler (parisc 1.1 - 32 bit) */
277
278
.macro nadtlb_11 code
279
280
mfctl %isr,spc
281
b nadtlb_miss_11
282
mfctl %ior,va
283
284
.align 32
285
.endm
286
#endif
287
288
/* nadtlb miss interruption handler (parisc 2.0) */
289
290
.macro nadtlb_20 code
291
292
mfctl %isr,spc
293
#ifdef CONFIG_64BIT
294
b nadtlb_miss_20w
295
#else
296
b nadtlb_miss_20
297
#endif
298
mfctl %ior,va
299
300
.align 32
301
.endm
302
303
#ifndef CONFIG_64BIT
304
/*
305
* dirty bit trap interruption handler (parisc 1.1 - 32 bit)
306
*/
307
308
.macro dbit_11 code
309
310
mfctl %isr,spc
311
b dbit_trap_11
312
mfctl %ior,va
313
314
.align 32
315
.endm
316
#endif
317
318
/*
319
* dirty bit trap interruption handler (parisc 2.0)
320
*/
321
322
.macro dbit_20 code
323
324
mfctl %isr,spc
325
#ifdef CONFIG_64BIT
326
b dbit_trap_20w
327
#else
328
b dbit_trap_20
329
#endif
330
mfctl %ior,va
331
332
.align 32
333
.endm
334
335
/* In LP64, the space contains part of the upper 32 bits of the
336
* fault. We have to extract this and place it in the va,
337
* zeroing the corresponding bits in the space register */
338
.macro space_adjust spc,va,tmp
339
#ifdef CONFIG_64BIT
340
extrd,u \spc,63,SPACEID_SHIFT,\tmp
341
depd %r0,63,SPACEID_SHIFT,\spc
342
depd \tmp,31,SPACEID_SHIFT,\va
343
#endif
344
.endm
345
346
.import swapper_pg_dir,code
347
348
/* Get the pgd. For faults on space zero (kernel space), this
349
* is simply swapper_pg_dir. For user space faults, the
350
* pgd is stored in %cr25 */
351
.macro get_pgd spc,reg
352
ldil L%PA(swapper_pg_dir),\reg
353
ldo R%PA(swapper_pg_dir)(\reg),\reg
354
or,COND(=) %r0,\spc,%r0
355
mfctl %cr25,\reg
356
.endm
357
358
/*
359
space_check(spc,tmp,fault)
360
361
spc - The space we saw the fault with.
362
tmp - The place to store the current space.
363
fault - Function to call on failure.
364
365
Only allow faults on different spaces from the
366
currently active one if we're the kernel
367
368
*/
369
.macro space_check spc,tmp,fault
370
mfsp %sr7,\tmp
371
/* check against %r0 which is same value as LINUX_GATEWAY_SPACE */
372
or,COND(<>) %r0,\spc,%r0 /* user may execute gateway page
373
* as kernel, so defeat the space
374
* check if it is */
375
copy \spc,\tmp
376
or,COND(=) %r0,\tmp,%r0 /* nullify if executing as kernel */
377
cmpb,COND(<>),n \tmp,\spc,\fault
378
.endm
379
380
/* Look up a PTE in a 2-Level scheme (faulting at each
381
* level if the entry isn't present
382
*
383
* NOTE: we use ldw even for LP64, since the short pointers
384
* can address up to 1TB
385
*/
386
.macro L2_ptep pmd,pte,index,va,fault
387
#if CONFIG_PGTABLE_LEVELS == 3
388
extru_safe \va,31-ASM_PMD_SHIFT,ASM_BITS_PER_PMD,\index
389
#else
390
extru_safe \va,31-ASM_PGDIR_SHIFT,ASM_BITS_PER_PGD,\index
391
#endif
392
dep %r0,31,PAGE_SHIFT,\pmd /* clear offset */
393
#if CONFIG_PGTABLE_LEVELS < 3
394
copy %r0,\pte
395
#endif
396
ldw,s \index(\pmd),\pmd
397
bb,>=,n \pmd,_PxD_PRESENT_BIT,\fault
398
dep %r0,31,PxD_FLAG_SHIFT,\pmd /* clear flags */
399
SHLREG \pmd,PxD_VALUE_SHIFT,\pmd
400
extru_safe \va,31-PAGE_SHIFT,ASM_BITS_PER_PTE,\index
401
dep %r0,31,PAGE_SHIFT,\pmd /* clear offset */
402
shladd \index,BITS_PER_PTE_ENTRY,\pmd,\pmd /* pmd is now pte */
403
.endm
404
405
/* Look up PTE in a 3-Level scheme. */
406
.macro L3_ptep pgd,pte,index,va,fault
407
#if CONFIG_PGTABLE_LEVELS == 3
408
copy %r0,\pte
409
extrd,u \va,63-ASM_PGDIR_SHIFT,ASM_BITS_PER_PGD,\index
410
ldw,s \index(\pgd),\pgd
411
bb,>=,n \pgd,_PxD_PRESENT_BIT,\fault
412
shld \pgd,PxD_VALUE_SHIFT,\pgd
413
#endif
414
L2_ptep \pgd,\pte,\index,\va,\fault
415
.endm
416
417
/* Acquire page_table_lock and check page is present. */
418
.macro ptl_lock spc,ptp,pte,tmp,tmp1,fault
419
#ifdef CONFIG_TLB_PTLOCK
420
98: cmpib,COND(=),n 0,\spc,2f
421
get_ptl \tmp
422
1: LDCW 0(\tmp),\tmp1
423
cmpib,COND(=) 0,\tmp1,1b
424
nop
425
LDREG 0(\ptp),\pte
426
bb,<,n \pte,_PAGE_PRESENT_BIT,3f
427
b \fault
428
stw \tmp1,0(\tmp)
429
99: ALTERNATIVE(98b, 99b, ALT_COND_NO_SMP, INSN_NOP)
430
#endif
431
2: LDREG 0(\ptp),\pte
432
bb,>=,n \pte,_PAGE_PRESENT_BIT,\fault
433
3:
434
.endm
435
436
/* Release page_table_lock if for user space. We use an ordered
437
store to ensure all prior accesses are performed prior to
438
releasing the lock. Note stw may not be executed, so we
439
provide one extra nop when CONFIG_TLB_PTLOCK is defined. */
440
.macro ptl_unlock spc,tmp,tmp2
441
#ifdef CONFIG_TLB_PTLOCK
442
98: get_ptl \tmp
443
ldi __ARCH_SPIN_LOCK_UNLOCKED_VAL, \tmp2
444
or,COND(=) %r0,\spc,%r0
445
stw,ma \tmp2,0(\tmp)
446
99: ALTERNATIVE(98b, 99b, ALT_COND_NO_SMP, INSN_NOP)
447
insert_nops NUM_PIPELINE_INSNS - 4
448
#else
449
insert_nops NUM_PIPELINE_INSNS - 1
450
#endif
451
.endm
452
453
/* Set the _PAGE_ACCESSED bit of the PTE. Be clever and
454
* don't needlessly dirty the cache line if it was already set */
455
.macro update_accessed ptp,pte,tmp,tmp1
456
ldi _PAGE_ACCESSED,\tmp1
457
or \tmp1,\pte,\tmp
458
and,COND(<>) \tmp1,\pte,%r0
459
STREG \tmp,0(\ptp)
460
.endm
461
462
/* Set the dirty bit (and accessed bit). No need to be
463
* clever, this is only used from the dirty fault */
464
.macro update_dirty ptp,pte,tmp
465
ldi _PAGE_ACCESSED|_PAGE_DIRTY,\tmp
466
or \tmp,\pte,\pte
467
STREG \pte,0(\ptp)
468
.endm
469
470
/* We have (depending on the page size):
471
* - 38 to 52-bit Physical Page Number
472
* - 12 to 26-bit page offset
473
*/
474
/* bitshift difference between a PFN (based on kernel's PAGE_SIZE)
475
* to a CPU TLB 4k PFN (4k => 12 bits to shift) */
476
#define PAGE_ADD_SHIFT (PAGE_SHIFT-12)
477
#define PAGE_ADD_HUGE_SHIFT (REAL_HPAGE_SHIFT-12)
478
#define PFN_START_BIT (63-ASM_PFN_PTE_SHIFT+(63-58)-PAGE_ADD_SHIFT)
479
480
/* Drop prot bits and convert to page addr for iitlbt and idtlbt */
481
.macro convert_for_tlb_insert20 pte,tmp
482
#ifdef CONFIG_HUGETLB_PAGE
483
copy \pte,\tmp
484
extrd,u \tmp,PFN_START_BIT,PFN_START_BIT+1,\pte
485
486
depdi _PAGE_SIZE_ENCODING_DEFAULT,63,\
487
(63-58)+PAGE_ADD_SHIFT,\pte
488
extrd,u,*= \tmp,_PAGE_HPAGE_BIT+32,1,%r0
489
depdi _HUGE_PAGE_SIZE_ENCODING_DEFAULT,63,\
490
(63-58)+PAGE_ADD_HUGE_SHIFT,\pte
491
#else /* Huge pages disabled */
492
extrd,u \pte,PFN_START_BIT,PFN_START_BIT+1,\pte
493
depdi _PAGE_SIZE_ENCODING_DEFAULT,63,\
494
(63-58)+PAGE_ADD_SHIFT,\pte
495
#endif
496
.endm
497
498
/* Convert the pte and prot to tlb insertion values. How
499
* this happens is quite subtle, read below */
500
.macro make_insert_tlb spc,pte,prot,tmp
501
space_to_prot \spc \prot /* create prot id from space */
502
503
#if _PAGE_SPECIAL_BIT == _PAGE_DMB_BIT
504
/* need to drop DMB bit, as it's used as SPECIAL flag */
505
depi 0,_PAGE_SPECIAL_BIT,1,\pte
506
#endif
507
508
/* The following is the real subtlety. This is depositing
509
* T <-> _PAGE_REFTRAP
510
* D <-> _PAGE_DIRTY
511
* B <-> _PAGE_DMB (memory break)
512
*
513
* Then incredible subtlety: The access rights are
514
* _PAGE_GATEWAY, _PAGE_EXEC and _PAGE_WRITE
515
* See 3-14 of the parisc 2.0 manual
516
*
517
* Finally, _PAGE_READ goes in the top bit of PL1 (so we
518
* trigger an access rights trap in user space if the user
519
* tries to read an unreadable page */
520
depd \pte,8,7,\prot
521
522
/* PAGE_USER indicates the page can be read with user privileges,
523
* so deposit X1|11 to PL1|PL2 (remember the upper bit of PL1
524
* contains _PAGE_READ). While the kernel can't directly write
525
* user pages which have _PAGE_WRITE zero, it can read pages
526
* which have _PAGE_READ zero (PL <= PL1). Thus, the kernel
527
* exception fault handler doesn't trigger when reading pages
528
* that aren't user read accessible */
529
extrd,u,*= \pte,_PAGE_USER_BIT+32,1,%r0
530
depdi 7,11,3,\prot
531
532
/* If we're a gateway page, drop PL2 back to zero for promotion
533
* to kernel privilege (so we can execute the page as kernel).
534
* Any privilege promotion page always denys read and write */
535
extrd,u,*= \pte,_PAGE_GATEWAY_BIT+32,1,%r0
536
depd %r0,11,2,\prot /* If Gateway, Set PL2 to 0 */
537
538
/* Enforce uncacheable pages.
539
* This should ONLY be use for MMIO on PA 2.0 machines.
540
* Memory/DMA is cache coherent on all PA2.0 machines we support
541
* (that means T-class is NOT supported) and the memory controllers
542
* on most of those machines only handles cache transactions.
543
*/
544
extrd,u,*= \pte,_PAGE_NO_CACHE_BIT+32,1,%r0
545
depdi 1,12,1,\prot
546
547
/* Drop prot bits and convert to page addr for iitlbt and idtlbt */
548
convert_for_tlb_insert20 \pte \tmp
549
.endm
550
551
/* Identical macro to make_insert_tlb above, except it
552
* makes the tlb entry for the differently formatted pa11
553
* insertion instructions */
554
.macro make_insert_tlb_11 spc,pte,prot
555
#if _PAGE_SPECIAL_BIT == _PAGE_DMB_BIT
556
/* need to drop DMB bit, as it's used as SPECIAL flag */
557
depi 0,_PAGE_SPECIAL_BIT,1,\pte
558
#endif
559
zdep \spc,30,15,\prot
560
dep \pte,8,7,\prot
561
extru,= \pte,_PAGE_NO_CACHE_BIT,1,%r0
562
depi 1,12,1,\prot
563
extru,= \pte,_PAGE_USER_BIT,1,%r0
564
depi 7,11,3,\prot /* Set for user space (1 rsvd for read) */
565
extru,= \pte,_PAGE_GATEWAY_BIT,1,%r0
566
depi 0,11,2,\prot /* If Gateway, Set PL2 to 0 */
567
568
/* Get rid of prot bits and convert to page addr for iitlba */
569
570
depi 0,31,ASM_PFN_PTE_SHIFT,\pte
571
SHRREG \pte,(ASM_PFN_PTE_SHIFT-(31-26)),\pte
572
.endm
573
574
/* This is for ILP32 PA2.0 only. The TLB insertion needs
575
* to extend into I/O space if the address is 0xfXXXXXXX
576
* so we extend the f's into the top word of the pte in
577
* this case */
578
.macro f_extend pte,tmp
579
extrd,s \pte,42,4,\tmp
580
addi,<> 1,\tmp,%r0
581
extrd,s \pte,63,25,\pte
582
.endm
583
584
/* The alias region is comprised of a pair of 4 MB regions
585
* aligned to 8 MB. It is used to clear/copy/flush user pages
586
* using kernel virtual addresses congruent with the user
587
* virtual address.
588
*
589
* To use the alias page, you set %r26 up with the to TLB
590
* entry (identifying the physical page) and %r23 up with
591
* the from tlb entry (or nothing if only a to entry---for
592
* clear_user_page_asm) */
593
.macro do_alias spc,tmp,tmp1,va,pte,prot,fault,patype
594
cmpib,COND(<>),n 0,\spc,\fault
595
ldil L%(TMPALIAS_MAP_START),\tmp
596
copy \va,\tmp1
597
depi_safe 0,31,TMPALIAS_SIZE_BITS+1,\tmp1
598
cmpb,COND(<>),n \tmp,\tmp1,\fault
599
mfctl %cr19,\tmp /* iir */
600
/* get the opcode (first six bits) into \tmp */
601
extrw,u \tmp,5,6,\tmp
602
/*
603
* Only setting the T bit prevents data cache movein
604
* Setting access rights to zero prevents instruction cache movein
605
*
606
* Note subtlety here: _PAGE_GATEWAY, _PAGE_EXEC and _PAGE_WRITE go
607
* to type field and _PAGE_READ goes to top bit of PL1
608
*/
609
ldi (_PAGE_REFTRAP|_PAGE_READ|_PAGE_WRITE),\prot
610
/*
611
* so if the opcode is one (i.e. this is a memory management
612
* instruction) nullify the next load so \prot is only T.
613
* Otherwise this is a normal data operation
614
*/
615
cmpiclr,= 0x01,\tmp,%r0
616
ldi (_PAGE_DIRTY|_PAGE_READ|_PAGE_WRITE),\prot
617
.ifc \patype,20
618
depd,z \prot,8,7,\prot
619
.else
620
.ifc \patype,11
621
depw,z \prot,8,7,\prot
622
.else
623
.error "undefined PA type to do_alias"
624
.endif
625
.endif
626
/*
627
* OK, it is in the temp alias region, check whether "from" or "to".
628
* Check "subtle" note in pacache.S re: r23/r26.
629
*/
630
extrw,u,= \va,31-TMPALIAS_SIZE_BITS,1,%r0
631
or,COND(tr) %r23,%r0,\pte
632
or %r26,%r0,\pte
633
634
/* convert phys addr in \pte (from r23 or r26) to tlb insert format */
635
SHRREG \pte,PAGE_SHIFT+PAGE_ADD_SHIFT-5, \pte
636
depi_safe _PAGE_SIZE_ENCODING_DEFAULT, 31,5, \pte
637
.endm
638
639
640
/*
641
* Fault_vectors are architecturally required to be aligned on a 2K
642
* boundary
643
*/
644
645
.section .text.hot
646
.align 2048
647
648
ENTRY(fault_vector_20)
649
/* First vector is invalid (0) */
650
.ascii "cows can fly"
651
.byte 0
652
.align 32
653
654
hpmc 1
655
def 2
656
def 3
657
extint 4
658
def 5
659
itlb_20 PARISC_ITLB_TRAP
660
def 7
661
def 8
662
def 9
663
def 10
664
def 11
665
def 12
666
def 13
667
def 14
668
dtlb_20 15
669
naitlb_20 16
670
nadtlb_20 17
671
def 18
672
def 19
673
dbit_20 20
674
def 21
675
def 22
676
def 23
677
def 24
678
def 25
679
def 26
680
def 27
681
def 28
682
def 29
683
def 30
684
def 31
685
END(fault_vector_20)
686
687
#ifndef CONFIG_64BIT
688
689
.align 2048
690
691
ENTRY(fault_vector_11)
692
/* First vector is invalid (0) */
693
.ascii "cows can fly"
694
.byte 0
695
.align 32
696
697
hpmc 1
698
def 2
699
def 3
700
extint 4
701
def 5
702
itlb_11 PARISC_ITLB_TRAP
703
def 7
704
def 8
705
def 9
706
def 10
707
def 11
708
def 12
709
def 13
710
def 14
711
dtlb_11 15
712
naitlb_11 16
713
nadtlb_11 17
714
def 18
715
def 19
716
dbit_11 20
717
def 21
718
def 22
719
def 23
720
def 24
721
def 25
722
def 26
723
def 27
724
def 28
725
def 29
726
def 30
727
def 31
728
END(fault_vector_11)
729
730
#endif
731
/* Fault vector is separately protected and *must* be on its own page */
732
.align PAGE_SIZE
733
734
.import handle_interruption,code
735
.import do_cpu_irq_mask,code
736
737
/*
738
* Child Returns here
739
*
740
* copy_thread moved args into task save area.
741
*/
742
743
ENTRY(ret_from_kernel_thread)
744
/* Call schedule_tail first though */
745
BL schedule_tail, %r2
746
nop
747
748
mfctl %cr30,%r1 /* task_struct */
749
LDREG TASK_PT_GR25(%r1), %r26
750
#ifdef CONFIG_64BIT
751
LDREG TASK_PT_GR27(%r1), %r27
752
#endif
753
LDREG TASK_PT_GR26(%r1), %r1
754
ble 0(%sr7, %r1)
755
copy %r31, %r2
756
b finish_child_return
757
nop
758
END(ret_from_kernel_thread)
759
760
761
/*
762
* struct task_struct *_switch_to(struct task_struct *prev,
763
* struct task_struct *next)
764
*
765
* switch kernel stacks and return prev */
766
ENTRY_CFI(_switch_to)
767
STREG %r2, -RP_OFFSET(%r30)
768
769
callee_save_float
770
callee_save
771
772
load32 _switch_to_ret, %r2
773
774
STREG %r2, TASK_PT_KPC(%r26)
775
LDREG TASK_PT_KPC(%r25), %r2
776
777
STREG %r30, TASK_PT_KSP(%r26)
778
LDREG TASK_PT_KSP(%r25), %r30
779
bv %r0(%r2)
780
mtctl %r25,%cr30
781
782
ENTRY(_switch_to_ret)
783
mtctl %r0, %cr0 /* Needed for single stepping */
784
callee_rest
785
callee_rest_float
786
787
LDREG -RP_OFFSET(%r30), %r2
788
bv %r0(%r2)
789
copy %r26, %r28
790
ENDPROC_CFI(_switch_to)
791
792
/*
793
* Common rfi return path for interruptions, kernel execve, and
794
* sys_rt_sigreturn (sometimes). The sys_rt_sigreturn syscall will
795
* return via this path if the signal was received when the process
796
* was running; if the process was blocked on a syscall then the
797
* normal syscall_exit path is used. All syscalls for traced
798
* proceses exit via intr_restore.
799
*
800
* XXX If any syscalls that change a processes space id ever exit
801
* this way, then we will need to copy %sr3 in to PT_SR[3..7], and
802
* adjust IASQ[0..1].
803
*
804
*/
805
806
.align PAGE_SIZE
807
808
ENTRY_CFI(syscall_exit_rfi)
809
mfctl %cr30,%r16 /* task_struct */
810
ldo TASK_REGS(%r16),%r16
811
/* Force iaoq to userspace, as the user has had access to our current
812
* context via sigcontext. Also Filter the PSW for the same reason.
813
*/
814
LDREG PT_IAOQ0(%r16),%r19
815
depi PRIV_USER,31,2,%r19
816
STREG %r19,PT_IAOQ0(%r16)
817
LDREG PT_IAOQ1(%r16),%r19
818
depi PRIV_USER,31,2,%r19
819
STREG %r19,PT_IAOQ1(%r16)
820
LDREG PT_PSW(%r16),%r19
821
load32 USER_PSW_MASK,%r1
822
#ifdef CONFIG_64BIT
823
load32 USER_PSW_HI_MASK,%r20
824
depd %r20,31,32,%r1
825
#endif
826
and %r19,%r1,%r19 /* Mask out bits that user shouldn't play with */
827
load32 USER_PSW,%r1
828
or %r19,%r1,%r19 /* Make sure default USER_PSW bits are set */
829
STREG %r19,PT_PSW(%r16)
830
831
/*
832
* If we aren't being traced, we never saved space registers
833
* (we don't store them in the sigcontext), so set them
834
* to "proper" values now (otherwise we'll wind up restoring
835
* whatever was last stored in the task structure, which might
836
* be inconsistent if an interrupt occurred while on the gateway
837
* page). Note that we may be "trashing" values the user put in
838
* them, but we don't support the user changing them.
839
*/
840
841
STREG %r0,PT_SR2(%r16)
842
mfsp %sr3,%r19
843
STREG %r19,PT_SR0(%r16)
844
STREG %r19,PT_SR1(%r16)
845
STREG %r19,PT_SR3(%r16)
846
STREG %r19,PT_SR4(%r16)
847
STREG %r19,PT_SR5(%r16)
848
STREG %r19,PT_SR6(%r16)
849
STREG %r19,PT_SR7(%r16)
850
851
ENTRY(intr_return)
852
/* check for reschedule */
853
mfctl %cr30,%r1
854
LDREG TASK_TI_FLAGS(%r1),%r19 /* sched.h: TIF_NEED_RESCHED */
855
bb,<,n %r19,31-TIF_NEED_RESCHED,intr_do_resched /* forward */
856
857
.import do_notify_resume,code
858
intr_check_sig:
859
/* As above */
860
mfctl %cr30,%r1
861
LDREG TASK_TI_FLAGS(%r1),%r19
862
ldi (_TIF_USER_WORK_MASK & ~_TIF_NEED_RESCHED), %r20
863
and,COND(<>) %r19, %r20, %r0
864
b,n intr_restore /* skip past if we've nothing to do */
865
866
/* This check is critical to having LWS
867
* working. The IASQ is zero on the gateway
868
* page and we cannot deliver any signals until
869
* we get off the gateway page.
870
*
871
* Only do signals if we are returning to user space
872
*/
873
LDREG PT_IASQ0(%r16), %r20
874
cmpib,COND(=),n LINUX_GATEWAY_SPACE, %r20, intr_restore /* forward */
875
LDREG PT_IASQ1(%r16), %r20
876
cmpib,COND(=),n LINUX_GATEWAY_SPACE, %r20, intr_restore /* forward */
877
878
copy %r0, %r25 /* long in_syscall = 0 */
879
#ifdef CONFIG_64BIT
880
ldo -16(%r30),%r29 /* Reference param save area */
881
#endif
882
883
/* NOTE: We need to enable interrupts if we have to deliver
884
* signals. We used to do this earlier but it caused kernel
885
* stack overflows. */
886
ssm PSW_SM_I, %r0
887
888
BL do_notify_resume,%r2
889
copy %r16, %r26 /* struct pt_regs *regs */
890
891
b,n intr_check_sig
892
893
intr_restore:
894
copy %r16,%r29
895
ldo PT_FR31(%r29),%r1
896
rest_fp %r1
897
rest_general %r29
898
899
/* inverse of virt_map */
900
pcxt_ssm_bug
901
rsm PSW_SM_QUIET,%r0 /* prepare for rfi */
902
tophys_r1 %r29
903
904
/* Restore space id's and special cr's from PT_REGS
905
* structure pointed to by r29
906
*/
907
rest_specials %r29
908
909
/* IMPORTANT: rest_stack restores r29 last (we are using it)!
910
* It also restores r1 and r30.
911
*/
912
rest_stack
913
914
rfi
915
nop
916
917
#ifndef CONFIG_PREEMPTION
918
# define intr_do_preempt intr_restore
919
#endif /* !CONFIG_PREEMPTION */
920
921
.import schedule,code
922
intr_do_resched:
923
/* Only call schedule on return to userspace. If we're returning
924
* to kernel space, we may schedule if CONFIG_PREEMPTION, otherwise
925
* we jump back to intr_restore.
926
*/
927
LDREG PT_IASQ0(%r16), %r20
928
cmpib,COND(=) 0, %r20, intr_do_preempt
929
nop
930
LDREG PT_IASQ1(%r16), %r20
931
cmpib,COND(=) 0, %r20, intr_do_preempt
932
nop
933
934
/* NOTE: We need to enable interrupts if we schedule. We used
935
* to do this earlier but it caused kernel stack overflows. */
936
ssm PSW_SM_I, %r0
937
938
#ifdef CONFIG_64BIT
939
ldo -16(%r30),%r29 /* Reference param save area */
940
#endif
941
942
ldil L%intr_check_sig, %r2
943
#ifndef CONFIG_64BIT
944
b schedule
945
#else
946
load32 schedule, %r20
947
bv %r0(%r20)
948
#endif
949
ldo R%intr_check_sig(%r2), %r2
950
951
/* preempt the current task on returning to kernel
952
* mode from an interrupt, iff need_resched is set,
953
* and preempt_count is 0. otherwise, we continue on
954
* our merry way back to the current running task.
955
*/
956
#ifdef CONFIG_PREEMPTION
957
.import preempt_schedule_irq,code
958
intr_do_preempt:
959
rsm PSW_SM_I, %r0 /* disable interrupts */
960
961
/* current_thread_info()->preempt_count */
962
mfctl %cr30, %r1
963
ldw TI_PRE_COUNT(%r1), %r19
964
cmpib,<> 0, %r19, intr_restore /* if preempt_count > 0 */
965
nop /* prev insn branched backwards */
966
967
/* check if we interrupted a critical path */
968
LDREG PT_PSW(%r16), %r20
969
bb,<,n %r20, 31 - PSW_SM_I, intr_restore
970
nop
971
972
/* ssm PSW_SM_I done later in intr_restore */
973
#ifdef CONFIG_MLONGCALLS
974
ldil L%intr_restore, %r2
975
load32 preempt_schedule_irq, %r1
976
bv %r0(%r1)
977
ldo R%intr_restore(%r2), %r2
978
#else
979
ldil L%intr_restore, %r1
980
BL preempt_schedule_irq, %r2
981
ldo R%intr_restore(%r1), %r2
982
#endif
983
#endif /* CONFIG_PREEMPTION */
984
985
/*
986
* External interrupts.
987
*/
988
989
intr_extint:
990
cmpib,COND(=),n 0,%r16,1f
991
992
get_stack_use_cr30
993
b,n 2f
994
995
1:
996
get_stack_use_r30
997
2:
998
save_specials %r29
999
virt_map
1000
save_general %r29
1001
1002
ldo PT_FR0(%r29), %r24
1003
save_fp %r24
1004
1005
loadgp
1006
1007
copy %r29, %r26 /* arg0 is pt_regs */
1008
copy %r29, %r16 /* save pt_regs */
1009
1010
ldil L%intr_return, %r2
1011
1012
#ifdef CONFIG_64BIT
1013
ldo -16(%r30),%r29 /* Reference param save area */
1014
#endif
1015
1016
b do_cpu_irq_mask
1017
ldo R%intr_return(%r2), %r2 /* return to intr_return, not here */
1018
ENDPROC_CFI(syscall_exit_rfi)
1019
1020
1021
/* Generic interruptions (illegal insn, unaligned, page fault, etc) */
1022
1023
ENTRY_CFI(intr_save) /* for os_hpmc */
1024
mfsp %sr7,%r16
1025
cmpib,COND(=),n 0,%r16,1f
1026
get_stack_use_cr30
1027
b 2f
1028
copy %r8,%r26
1029
1030
1:
1031
get_stack_use_r30
1032
copy %r8,%r26
1033
1034
2:
1035
save_specials %r29
1036
1037
/* If this trap is a itlb miss, skip saving/adjusting isr/ior */
1038
cmpib,COND(=),n PARISC_ITLB_TRAP,%r26,skip_save_ior
1039
1040
1041
mfctl %isr, %r16
1042
nop /* serialize mfctl on PA 2.0 to avoid 4 cycle penalty */
1043
mfctl %ior, %r17
1044
1045
1046
#ifdef CONFIG_64BIT
1047
/*
1048
* If the interrupted code was running with W bit off (32 bit),
1049
* clear the b bits (bits 0 & 1) in the ior.
1050
* save_specials left ipsw value in r8 for us to test.
1051
*/
1052
extrd,u,*<> %r8,PSW_W_BIT,1,%r0
1053
depdi 0,1,2,%r17
1054
1055
/* adjust isr/ior: get high bits from isr and deposit in ior */
1056
space_adjust %r16,%r17,%r1
1057
#endif
1058
STREG %r16, PT_ISR(%r29)
1059
STREG %r17, PT_IOR(%r29)
1060
1061
#if defined(CONFIG_64BIT)
1062
b,n intr_save2
1063
1064
skip_save_ior:
1065
/* We have a itlb miss, and when executing code above 4 Gb on ILP64, we
1066
* need to adjust iasq/iaoq here in the same way we adjusted isr/ior
1067
* above.
1068
*/
1069
bb,COND(>=),n %r8,PSW_W_BIT,intr_save2
1070
LDREG PT_IASQ0(%r29), %r16
1071
LDREG PT_IAOQ0(%r29), %r17
1072
/* adjust iasq/iaoq */
1073
space_adjust %r16,%r17,%r1
1074
STREG %r16, PT_IASQ0(%r29)
1075
STREG %r17, PT_IAOQ0(%r29)
1076
#else
1077
skip_save_ior:
1078
#endif
1079
1080
intr_save2:
1081
virt_map
1082
save_general %r29
1083
1084
ldo PT_FR0(%r29), %r25
1085
save_fp %r25
1086
1087
loadgp
1088
1089
copy %r29, %r25 /* arg1 is pt_regs */
1090
#ifdef CONFIG_64BIT
1091
ldo -16(%r30),%r29 /* Reference param save area */
1092
#endif
1093
1094
ldil L%intr_check_sig, %r2
1095
copy %r25, %r16 /* save pt_regs */
1096
1097
b handle_interruption
1098
ldo R%intr_check_sig(%r2), %r2
1099
ENDPROC_CFI(intr_save)
1100
1101
1102
/*
1103
* Note for all tlb miss handlers:
1104
*
1105
* cr24 contains a pointer to the kernel address space
1106
* page directory.
1107
*
1108
* cr25 contains a pointer to the current user address
1109
* space page directory.
1110
*
1111
* sr3 will contain the space id of the user address space
1112
* of the current running thread while that thread is
1113
* running in the kernel.
1114
*/
1115
1116
/*
1117
* register number allocations. Note that these are all
1118
* in the shadowed registers
1119
*/
1120
1121
t0 = r1 /* temporary register 0 */
1122
va = r8 /* virtual address for which the trap occurred */
1123
t1 = r9 /* temporary register 1 */
1124
pte = r16 /* pte/phys page # */
1125
prot = r17 /* prot bits */
1126
spc = r24 /* space for which the trap occurred */
1127
ptp = r25 /* page directory/page table pointer */
1128
1129
#ifdef CONFIG_64BIT
1130
1131
dtlb_miss_20w:
1132
space_adjust spc,va,t0
1133
get_pgd spc,ptp
1134
space_check spc,t0,dtlb_fault
1135
1136
L3_ptep ptp,pte,t0,va,dtlb_check_alias_20w
1137
1138
ptl_lock spc,ptp,pte,t0,t1,dtlb_check_alias_20w
1139
update_accessed ptp,pte,t0,t1
1140
1141
make_insert_tlb spc,pte,prot,t1
1142
1143
idtlbt pte,prot
1144
1145
ptl_unlock spc,t0,t1
1146
rfir
1147
nop
1148
1149
dtlb_check_alias_20w:
1150
do_alias spc,t0,t1,va,pte,prot,dtlb_fault,20
1151
1152
idtlbt pte,prot
1153
1154
insert_nops NUM_PIPELINE_INSNS - 1
1155
rfir
1156
nop
1157
1158
nadtlb_miss_20w:
1159
space_adjust spc,va,t0
1160
get_pgd spc,ptp
1161
space_check spc,t0,nadtlb_fault
1162
1163
L3_ptep ptp,pte,t0,va,nadtlb_check_alias_20w
1164
1165
ptl_lock spc,ptp,pte,t0,t1,nadtlb_check_alias_20w
1166
update_accessed ptp,pte,t0,t1
1167
1168
make_insert_tlb spc,pte,prot,t1
1169
1170
idtlbt pte,prot
1171
1172
ptl_unlock spc,t0,t1
1173
rfir
1174
nop
1175
1176
nadtlb_check_alias_20w:
1177
do_alias spc,t0,t1,va,pte,prot,nadtlb_emulate,20
1178
1179
idtlbt pte,prot
1180
1181
insert_nops NUM_PIPELINE_INSNS - 1
1182
rfir
1183
nop
1184
1185
#else
1186
1187
dtlb_miss_11:
1188
get_pgd spc,ptp
1189
1190
space_check spc,t0,dtlb_fault
1191
1192
L2_ptep ptp,pte,t0,va,dtlb_check_alias_11
1193
1194
ptl_lock spc,ptp,pte,t0,t1,dtlb_check_alias_11
1195
update_accessed ptp,pte,t0,t1
1196
1197
make_insert_tlb_11 spc,pte,prot
1198
1199
mfsp %sr1,t1 /* Save sr1 so we can use it in tlb inserts */
1200
mtsp spc,%sr1
1201
1202
idtlba pte,(%sr1,va)
1203
idtlbp prot,(%sr1,va)
1204
1205
mtsp t1, %sr1 /* Restore sr1 */
1206
1207
ptl_unlock spc,t0,t1
1208
rfir
1209
nop
1210
1211
dtlb_check_alias_11:
1212
do_alias spc,t0,t1,va,pte,prot,dtlb_fault,11
1213
1214
idtlba pte,(va)
1215
idtlbp prot,(va)
1216
1217
insert_nops NUM_PIPELINE_INSNS - 1
1218
rfir
1219
nop
1220
1221
nadtlb_miss_11:
1222
get_pgd spc,ptp
1223
1224
space_check spc,t0,nadtlb_fault
1225
1226
L2_ptep ptp,pte,t0,va,nadtlb_check_alias_11
1227
1228
ptl_lock spc,ptp,pte,t0,t1,nadtlb_check_alias_11
1229
update_accessed ptp,pte,t0,t1
1230
1231
make_insert_tlb_11 spc,pte,prot
1232
1233
mfsp %sr1,t1 /* Save sr1 so we can use it in tlb inserts */
1234
mtsp spc,%sr1
1235
1236
idtlba pte,(%sr1,va)
1237
idtlbp prot,(%sr1,va)
1238
1239
mtsp t1, %sr1 /* Restore sr1 */
1240
1241
ptl_unlock spc,t0,t1
1242
rfir
1243
nop
1244
1245
nadtlb_check_alias_11:
1246
do_alias spc,t0,t1,va,pte,prot,nadtlb_emulate,11
1247
1248
idtlba pte,(va)
1249
idtlbp prot,(va)
1250
1251
insert_nops NUM_PIPELINE_INSNS - 1
1252
rfir
1253
nop
1254
1255
dtlb_miss_20:
1256
space_adjust spc,va,t0
1257
get_pgd spc,ptp
1258
space_check spc,t0,dtlb_fault
1259
1260
L2_ptep ptp,pte,t0,va,dtlb_check_alias_20
1261
1262
ptl_lock spc,ptp,pte,t0,t1,dtlb_check_alias_20
1263
update_accessed ptp,pte,t0,t1
1264
1265
make_insert_tlb spc,pte,prot,t1
1266
1267
f_extend pte,t1
1268
1269
idtlbt pte,prot
1270
1271
ptl_unlock spc,t0,t1
1272
rfir
1273
nop
1274
1275
dtlb_check_alias_20:
1276
do_alias spc,t0,t1,va,pte,prot,dtlb_fault,20
1277
1278
idtlbt pte,prot
1279
1280
insert_nops NUM_PIPELINE_INSNS - 1
1281
rfir
1282
nop
1283
1284
nadtlb_miss_20:
1285
get_pgd spc,ptp
1286
1287
space_check spc,t0,nadtlb_fault
1288
1289
L2_ptep ptp,pte,t0,va,nadtlb_check_alias_20
1290
1291
ptl_lock spc,ptp,pte,t0,t1,nadtlb_check_alias_20
1292
update_accessed ptp,pte,t0,t1
1293
1294
make_insert_tlb spc,pte,prot,t1
1295
1296
f_extend pte,t1
1297
1298
idtlbt pte,prot
1299
1300
ptl_unlock spc,t0,t1
1301
rfir
1302
nop
1303
1304
nadtlb_check_alias_20:
1305
do_alias spc,t0,t1,va,pte,prot,nadtlb_emulate,20
1306
1307
idtlbt pte,prot
1308
1309
insert_nops NUM_PIPELINE_INSNS - 1
1310
rfir
1311
nop
1312
1313
#endif
1314
1315
nadtlb_emulate:
1316
1317
/*
1318
* Non-access misses can be caused by fdc,fic,pdc,lpa,probe and
1319
* probei instructions. The kernel no longer faults doing flushes.
1320
* Use of lpa and probe instructions is rare. Given the issue
1321
* with shadow registers, we defer everything to the "slow" path.
1322
*/
1323
b,n nadtlb_fault
1324
1325
#ifdef CONFIG_64BIT
1326
itlb_miss_20w:
1327
1328
/*
1329
* I miss is a little different, since we allow users to fault
1330
* on the gateway page which is in the kernel address space.
1331
*/
1332
1333
space_adjust spc,va,t0
1334
get_pgd spc,ptp
1335
space_check spc,t0,itlb_fault
1336
1337
L3_ptep ptp,pte,t0,va,itlb_fault
1338
1339
ptl_lock spc,ptp,pte,t0,t1,itlb_fault
1340
update_accessed ptp,pte,t0,t1
1341
1342
make_insert_tlb spc,pte,prot,t1
1343
1344
iitlbt pte,prot
1345
1346
ptl_unlock spc,t0,t1
1347
rfir
1348
nop
1349
1350
naitlb_miss_20w:
1351
1352
/*
1353
* I miss is a little different, since we allow users to fault
1354
* on the gateway page which is in the kernel address space.
1355
*/
1356
1357
space_adjust spc,va,t0
1358
get_pgd spc,ptp
1359
space_check spc,t0,naitlb_fault
1360
1361
L3_ptep ptp,pte,t0,va,naitlb_check_alias_20w
1362
1363
ptl_lock spc,ptp,pte,t0,t1,naitlb_check_alias_20w
1364
update_accessed ptp,pte,t0,t1
1365
1366
make_insert_tlb spc,pte,prot,t1
1367
1368
iitlbt pte,prot
1369
1370
ptl_unlock spc,t0,t1
1371
rfir
1372
nop
1373
1374
naitlb_check_alias_20w:
1375
do_alias spc,t0,t1,va,pte,prot,naitlb_fault,20
1376
1377
iitlbt pte,prot
1378
1379
insert_nops NUM_PIPELINE_INSNS - 1
1380
rfir
1381
nop
1382
1383
#else
1384
1385
itlb_miss_11:
1386
get_pgd spc,ptp
1387
1388
space_check spc,t0,itlb_fault
1389
1390
L2_ptep ptp,pte,t0,va,itlb_fault
1391
1392
ptl_lock spc,ptp,pte,t0,t1,itlb_fault
1393
update_accessed ptp,pte,t0,t1
1394
1395
make_insert_tlb_11 spc,pte,prot
1396
1397
mfsp %sr1,t1 /* Save sr1 so we can use it in tlb inserts */
1398
mtsp spc,%sr1
1399
1400
iitlba pte,(%sr1,va)
1401
iitlbp prot,(%sr1,va)
1402
1403
mtsp t1, %sr1 /* Restore sr1 */
1404
1405
ptl_unlock spc,t0,t1
1406
rfir
1407
nop
1408
1409
naitlb_miss_11:
1410
get_pgd spc,ptp
1411
1412
space_check spc,t0,naitlb_fault
1413
1414
L2_ptep ptp,pte,t0,va,naitlb_check_alias_11
1415
1416
ptl_lock spc,ptp,pte,t0,t1,naitlb_check_alias_11
1417
update_accessed ptp,pte,t0,t1
1418
1419
make_insert_tlb_11 spc,pte,prot
1420
1421
mfsp %sr1,t1 /* Save sr1 so we can use it in tlb inserts */
1422
mtsp spc,%sr1
1423
1424
iitlba pte,(%sr1,va)
1425
iitlbp prot,(%sr1,va)
1426
1427
mtsp t1, %sr1 /* Restore sr1 */
1428
1429
ptl_unlock spc,t0,t1
1430
rfir
1431
nop
1432
1433
naitlb_check_alias_11:
1434
do_alias spc,t0,t1,va,pte,prot,itlb_fault,11
1435
1436
iitlba pte,(%sr0, va)
1437
iitlbp prot,(%sr0, va)
1438
1439
insert_nops NUM_PIPELINE_INSNS - 1
1440
rfir
1441
nop
1442
1443
1444
itlb_miss_20:
1445
get_pgd spc,ptp
1446
1447
space_check spc,t0,itlb_fault
1448
1449
L2_ptep ptp,pte,t0,va,itlb_fault
1450
1451
ptl_lock spc,ptp,pte,t0,t1,itlb_fault
1452
update_accessed ptp,pte,t0,t1
1453
1454
make_insert_tlb spc,pte,prot,t1
1455
1456
f_extend pte,t1
1457
1458
iitlbt pte,prot
1459
1460
ptl_unlock spc,t0,t1
1461
rfir
1462
nop
1463
1464
naitlb_miss_20:
1465
get_pgd spc,ptp
1466
1467
space_check spc,t0,naitlb_fault
1468
1469
L2_ptep ptp,pte,t0,va,naitlb_check_alias_20
1470
1471
ptl_lock spc,ptp,pte,t0,t1,naitlb_check_alias_20
1472
update_accessed ptp,pte,t0,t1
1473
1474
make_insert_tlb spc,pte,prot,t1
1475
1476
f_extend pte,t1
1477
1478
iitlbt pte,prot
1479
1480
ptl_unlock spc,t0,t1
1481
rfir
1482
nop
1483
1484
naitlb_check_alias_20:
1485
do_alias spc,t0,t1,va,pte,prot,naitlb_fault,20
1486
1487
iitlbt pte,prot
1488
1489
insert_nops NUM_PIPELINE_INSNS - 1
1490
rfir
1491
nop
1492
1493
#endif
1494
1495
#ifdef CONFIG_64BIT
1496
1497
dbit_trap_20w:
1498
space_adjust spc,va,t0
1499
get_pgd spc,ptp
1500
space_check spc,t0,dbit_fault
1501
1502
L3_ptep ptp,pte,t0,va,dbit_fault
1503
1504
ptl_lock spc,ptp,pte,t0,t1,dbit_fault
1505
update_dirty ptp,pte,t1
1506
1507
make_insert_tlb spc,pte,prot,t1
1508
1509
idtlbt pte,prot
1510
1511
ptl_unlock spc,t0,t1
1512
rfir
1513
nop
1514
#else
1515
1516
dbit_trap_11:
1517
1518
get_pgd spc,ptp
1519
1520
space_check spc,t0,dbit_fault
1521
1522
L2_ptep ptp,pte,t0,va,dbit_fault
1523
1524
ptl_lock spc,ptp,pte,t0,t1,dbit_fault
1525
update_dirty ptp,pte,t1
1526
1527
make_insert_tlb_11 spc,pte,prot
1528
1529
mfsp %sr1,t1 /* Save sr1 so we can use it in tlb inserts */
1530
mtsp spc,%sr1
1531
1532
idtlba pte,(%sr1,va)
1533
idtlbp prot,(%sr1,va)
1534
1535
mtsp t1, %sr1 /* Restore sr1 */
1536
1537
ptl_unlock spc,t0,t1
1538
rfir
1539
nop
1540
1541
dbit_trap_20:
1542
get_pgd spc,ptp
1543
1544
space_check spc,t0,dbit_fault
1545
1546
L2_ptep ptp,pte,t0,va,dbit_fault
1547
1548
ptl_lock spc,ptp,pte,t0,t1,dbit_fault
1549
update_dirty ptp,pte,t1
1550
1551
make_insert_tlb spc,pte,prot,t1
1552
1553
f_extend pte,t1
1554
1555
idtlbt pte,prot
1556
1557
ptl_unlock spc,t0,t1
1558
rfir
1559
nop
1560
#endif
1561
1562
.import handle_interruption,code
1563
1564
kernel_bad_space:
1565
b intr_save
1566
ldi 31,%r8 /* Use an unused code */
1567
1568
dbit_fault:
1569
b intr_save
1570
ldi 20,%r8
1571
1572
itlb_fault:
1573
b intr_save
1574
ldi PARISC_ITLB_TRAP,%r8
1575
1576
nadtlb_fault:
1577
b intr_save
1578
ldi 17,%r8
1579
1580
naitlb_fault:
1581
b intr_save
1582
ldi 16,%r8
1583
1584
dtlb_fault:
1585
b intr_save
1586
ldi 15,%r8
1587
1588
/* Register saving semantics for system calls:
1589
1590
%r1 clobbered by system call macro in userspace
1591
%r2 saved in PT_REGS by gateway page
1592
%r3 - %r18 preserved by C code (saved by signal code)
1593
%r19 - %r20 saved in PT_REGS by gateway page
1594
%r21 - %r22 non-standard syscall args
1595
stored in kernel stack by gateway page
1596
%r23 - %r26 arg3-arg0, saved in PT_REGS by gateway page
1597
%r27 - %r30 saved in PT_REGS by gateway page
1598
%r31 syscall return pointer
1599
*/
1600
1601
/* Floating point registers (FIXME: what do we do with these?)
1602
1603
%fr0 - %fr3 status/exception, not preserved
1604
%fr4 - %fr7 arguments
1605
%fr8 - %fr11 not preserved by C code
1606
%fr12 - %fr21 preserved by C code
1607
%fr22 - %fr31 not preserved by C code
1608
*/
1609
1610
.macro reg_save regs
1611
STREG %r3, PT_GR3(\regs)
1612
STREG %r4, PT_GR4(\regs)
1613
STREG %r5, PT_GR5(\regs)
1614
STREG %r6, PT_GR6(\regs)
1615
STREG %r7, PT_GR7(\regs)
1616
STREG %r8, PT_GR8(\regs)
1617
STREG %r9, PT_GR9(\regs)
1618
STREG %r10,PT_GR10(\regs)
1619
STREG %r11,PT_GR11(\regs)
1620
STREG %r12,PT_GR12(\regs)
1621
STREG %r13,PT_GR13(\regs)
1622
STREG %r14,PT_GR14(\regs)
1623
STREG %r15,PT_GR15(\regs)
1624
STREG %r16,PT_GR16(\regs)
1625
STREG %r17,PT_GR17(\regs)
1626
STREG %r18,PT_GR18(\regs)
1627
.endm
1628
1629
.macro reg_restore regs
1630
LDREG PT_GR3(\regs), %r3
1631
LDREG PT_GR4(\regs), %r4
1632
LDREG PT_GR5(\regs), %r5
1633
LDREG PT_GR6(\regs), %r6
1634
LDREG PT_GR7(\regs), %r7
1635
LDREG PT_GR8(\regs), %r8
1636
LDREG PT_GR9(\regs), %r9
1637
LDREG PT_GR10(\regs),%r10
1638
LDREG PT_GR11(\regs),%r11
1639
LDREG PT_GR12(\regs),%r12
1640
LDREG PT_GR13(\regs),%r13
1641
LDREG PT_GR14(\regs),%r14
1642
LDREG PT_GR15(\regs),%r15
1643
LDREG PT_GR16(\regs),%r16
1644
LDREG PT_GR17(\regs),%r17
1645
LDREG PT_GR18(\regs),%r18
1646
.endm
1647
1648
.macro fork_like name
1649
ENTRY_CFI(sys_\name\()_wrapper)
1650
mfctl %cr30,%r1
1651
ldo TASK_REGS(%r1),%r1
1652
reg_save %r1
1653
mfctl %cr27, %r28
1654
ldil L%sys_\name, %r31
1655
be R%sys_\name(%sr4,%r31)
1656
STREG %r28, PT_CR27(%r1)
1657
ENDPROC_CFI(sys_\name\()_wrapper)
1658
.endm
1659
1660
fork_like clone
1661
fork_like clone3
1662
fork_like fork
1663
fork_like vfork
1664
1665
/* Set the return value for the child */
1666
ENTRY(child_return)
1667
BL schedule_tail, %r2
1668
nop
1669
finish_child_return:
1670
mfctl %cr30,%r1
1671
ldo TASK_REGS(%r1),%r1 /* get pt regs */
1672
1673
LDREG PT_CR27(%r1), %r3
1674
mtctl %r3, %cr27
1675
reg_restore %r1
1676
b syscall_exit
1677
copy %r0,%r28
1678
END(child_return)
1679
1680
ENTRY_CFI(sys_rt_sigreturn_wrapper)
1681
mfctl %cr30,%r26
1682
ldo TASK_REGS(%r26),%r26 /* get pt regs */
1683
/* Don't save regs, we are going to restore them from sigcontext. */
1684
STREG %r2, -RP_OFFSET(%r30)
1685
#ifdef CONFIG_64BIT
1686
ldo FRAME_SIZE(%r30), %r30
1687
BL sys_rt_sigreturn,%r2
1688
ldo -16(%r30),%r29 /* Reference param save area */
1689
#else
1690
BL sys_rt_sigreturn,%r2
1691
ldo FRAME_SIZE(%r30), %r30
1692
#endif
1693
1694
ldo -FRAME_SIZE(%r30), %r30
1695
LDREG -RP_OFFSET(%r30), %r2
1696
1697
/* FIXME: I think we need to restore a few more things here. */
1698
mfctl %cr30,%r1
1699
ldo TASK_REGS(%r1),%r1 /* get pt regs */
1700
reg_restore %r1
1701
1702
/* If the signal was received while the process was blocked on a
1703
* syscall, then r2 will take us to syscall_exit; otherwise r2 will
1704
* take us to syscall_exit_rfi and on to intr_return.
1705
*/
1706
bv %r0(%r2)
1707
LDREG PT_GR28(%r1),%r28 /* reload original r28 for syscall_exit */
1708
ENDPROC_CFI(sys_rt_sigreturn_wrapper)
1709
1710
ENTRY(syscall_exit)
1711
/* NOTE: Not all syscalls exit this way. rt_sigreturn will exit
1712
* via syscall_exit_rfi if the signal was received while the process
1713
* was running.
1714
*/
1715
1716
/* save return value now */
1717
mfctl %cr30, %r1
1718
STREG %r28,TASK_PT_GR28(%r1)
1719
1720
/* Seems to me that dp could be wrong here, if the syscall involved
1721
* calling a module, and nothing got round to restoring dp on return.
1722
*/
1723
loadgp
1724
1725
syscall_check_resched:
1726
1727
/* check for reschedule */
1728
mfctl %cr30,%r19
1729
LDREG TASK_TI_FLAGS(%r19),%r19 /* long */
1730
bb,<,n %r19, 31-TIF_NEED_RESCHED, syscall_do_resched /* forward */
1731
1732
.import do_signal,code
1733
syscall_check_sig:
1734
mfctl %cr30,%r19
1735
LDREG TASK_TI_FLAGS(%r19),%r19
1736
ldi (_TIF_USER_WORK_MASK & ~_TIF_NEED_RESCHED), %r26
1737
and,COND(<>) %r19, %r26, %r0
1738
b,n syscall_restore /* skip past if we've nothing to do */
1739
1740
syscall_do_signal:
1741
/* Save callee-save registers (for sigcontext).
1742
* FIXME: After this point the process structure should be
1743
* consistent with all the relevant state of the process
1744
* before the syscall. We need to verify this.
1745
*/
1746
mfctl %cr30,%r1
1747
ldo TASK_REGS(%r1), %r26 /* struct pt_regs *regs */
1748
reg_save %r26
1749
1750
#ifdef CONFIG_64BIT
1751
ldo -16(%r30),%r29 /* Reference param save area */
1752
#endif
1753
1754
BL do_notify_resume,%r2
1755
ldi 1, %r25 /* long in_syscall = 1 */
1756
1757
mfctl %cr30,%r1
1758
ldo TASK_REGS(%r1), %r20 /* reload pt_regs */
1759
reg_restore %r20
1760
1761
b,n syscall_check_sig
1762
1763
syscall_restore:
1764
mfctl %cr30,%r1
1765
1766
/* Are we being ptraced? */
1767
LDREG TASK_TI_FLAGS(%r1),%r19
1768
ldi _TIF_SINGLESTEP|_TIF_BLOCKSTEP,%r2
1769
and,COND(=) %r19,%r2,%r0
1770
b,n syscall_restore_rfi
1771
1772
ldo TASK_PT_FR31(%r1),%r19 /* reload fpregs */
1773
rest_fp %r19
1774
1775
LDREG TASK_PT_SAR(%r1),%r19 /* restore SAR */
1776
mtsar %r19
1777
1778
LDREG TASK_PT_GR2(%r1),%r2 /* restore user rp */
1779
LDREG TASK_PT_GR19(%r1),%r19
1780
LDREG TASK_PT_GR20(%r1),%r20
1781
LDREG TASK_PT_GR21(%r1),%r21
1782
LDREG TASK_PT_GR22(%r1),%r22
1783
LDREG TASK_PT_GR23(%r1),%r23
1784
LDREG TASK_PT_GR24(%r1),%r24
1785
LDREG TASK_PT_GR25(%r1),%r25
1786
LDREG TASK_PT_GR26(%r1),%r26
1787
LDREG TASK_PT_GR27(%r1),%r27 /* restore user dp */
1788
LDREG TASK_PT_GR28(%r1),%r28 /* syscall return value */
1789
LDREG TASK_PT_GR29(%r1),%r29
1790
LDREG TASK_PT_GR31(%r1),%r31 /* restore syscall rp */
1791
1792
/* NOTE: We use rsm/ssm pair to make this operation atomic */
1793
LDREG TASK_PT_GR30(%r1),%r1 /* Get user sp */
1794
rsm PSW_SM_I, %r0
1795
copy %r1,%r30 /* Restore user sp */
1796
mfsp %sr3,%r1 /* Get user space id */
1797
mtsp %r1,%sr7 /* Restore sr7 */
1798
ssm PSW_SM_I, %r0
1799
1800
/* Set sr2 to zero for userspace syscalls to work. */
1801
mtsp %r0,%sr2
1802
mtsp %r1,%sr4 /* Restore sr4 */
1803
mtsp %r1,%sr5 /* Restore sr5 */
1804
mtsp %r1,%sr6 /* Restore sr6 */
1805
1806
depi PRIV_USER,31,2,%r31 /* ensure return to user mode. */
1807
1808
#ifdef CONFIG_64BIT
1809
/* decide whether to reset the wide mode bit
1810
*
1811
* For a syscall, the W bit is stored in the lowest bit
1812
* of sp. Extract it and reset W if it is zero */
1813
extrd,u,*<> %r30,63,1,%r1
1814
rsm PSW_SM_W, %r0
1815
/* now reset the lowest bit of sp if it was set */
1816
xor %r30,%r1,%r30
1817
#endif
1818
be,n 0(%sr3,%r31) /* return to user space */
1819
1820
/* We have to return via an RFI, so that PSW T and R bits can be set
1821
* appropriately.
1822
* This sets up pt_regs so we can return via intr_restore, which is not
1823
* the most efficient way of doing things, but it works.
1824
*/
1825
syscall_restore_rfi:
1826
ldo -1(%r0),%r2 /* Set recovery cntr to -1 */
1827
mtctl %r2,%cr0 /* for immediate trap */
1828
LDREG TASK_PT_PSW(%r1),%r2 /* Get old PSW */
1829
ldi 0x0b,%r20 /* Create new PSW */
1830
depi -1,13,1,%r20 /* C, Q, D, and I bits */
1831
1832
/* The values of SINGLESTEP_BIT and BLOCKSTEP_BIT are
1833
* set in thread_info.h and converted to PA bitmap
1834
* numbers in asm-offsets.c */
1835
1836
/* if ((%r19.SINGLESTEP_BIT)) { %r20.27=1} */
1837
extru,= %r19,TIF_SINGLESTEP_PA_BIT,1,%r0
1838
depi -1,27,1,%r20 /* R bit */
1839
1840
/* if ((%r19.BLOCKSTEP_BIT)) { %r20.7=1} */
1841
extru,= %r19,TIF_BLOCKSTEP_PA_BIT,1,%r0
1842
depi -1,7,1,%r20 /* T bit */
1843
1844
STREG %r20,TASK_PT_PSW(%r1)
1845
1846
/* Always store space registers, since sr3 can be changed (e.g. fork) */
1847
1848
mfsp %sr3,%r25
1849
STREG %r25,TASK_PT_SR3(%r1)
1850
STREG %r25,TASK_PT_SR4(%r1)
1851
STREG %r25,TASK_PT_SR5(%r1)
1852
STREG %r25,TASK_PT_SR6(%r1)
1853
STREG %r25,TASK_PT_SR7(%r1)
1854
STREG %r25,TASK_PT_IASQ0(%r1)
1855
STREG %r25,TASK_PT_IASQ1(%r1)
1856
1857
/* XXX W bit??? */
1858
/* Now if old D bit is clear, it means we didn't save all registers
1859
* on syscall entry, so do that now. This only happens on TRACEME
1860
* calls, or if someone attached to us while we were on a syscall.
1861
* We could make this more efficient by not saving r3-r18, but
1862
* then we wouldn't be able to use the common intr_restore path.
1863
* It is only for traced processes anyway, so performance is not
1864
* an issue.
1865
*/
1866
bb,< %r2,30,pt_regs_ok /* Branch if D set */
1867
ldo TASK_REGS(%r1),%r25
1868
reg_save %r25 /* Save r3 to r18 */
1869
1870
/* Save the current sr */
1871
mfsp %sr0,%r2
1872
STREG %r2,TASK_PT_SR0(%r1)
1873
1874
/* Save the scratch sr */
1875
mfsp %sr1,%r2
1876
STREG %r2,TASK_PT_SR1(%r1)
1877
1878
/* sr2 should be set to zero for userspace syscalls */
1879
STREG %r0,TASK_PT_SR2(%r1)
1880
1881
LDREG TASK_PT_GR31(%r1),%r2
1882
depi PRIV_USER,31,2,%r2 /* ensure return to user mode. */
1883
STREG %r2,TASK_PT_IAOQ0(%r1)
1884
ldo 4(%r2),%r2
1885
STREG %r2,TASK_PT_IAOQ1(%r1)
1886
b intr_restore
1887
copy %r25,%r16
1888
1889
pt_regs_ok:
1890
LDREG TASK_PT_IAOQ0(%r1),%r2
1891
depi PRIV_USER,31,2,%r2 /* ensure return to user mode. */
1892
STREG %r2,TASK_PT_IAOQ0(%r1)
1893
LDREG TASK_PT_IAOQ1(%r1),%r2
1894
depi PRIV_USER,31,2,%r2
1895
STREG %r2,TASK_PT_IAOQ1(%r1)
1896
b intr_restore
1897
copy %r25,%r16
1898
1899
syscall_do_resched:
1900
load32 syscall_check_resched,%r2 /* if resched, we start over again */
1901
load32 schedule,%r19
1902
bv %r0(%r19) /* jumps to schedule() */
1903
#ifdef CONFIG_64BIT
1904
ldo -16(%r30),%r29 /* Reference param save area */
1905
#else
1906
nop
1907
#endif
1908
END(syscall_exit)
1909
1910
1911
#ifdef CONFIG_FUNCTION_TRACER
1912
1913
.import ftrace_function_trampoline,code
1914
.align L1_CACHE_BYTES
1915
ENTRY_CFI(mcount, caller)
1916
_mcount:
1917
.export _mcount,data
1918
/*
1919
* The 64bit mcount() function pointer needs 4 dwords, of which the
1920
* first two are free. We optimize it here and put 2 instructions for
1921
* calling mcount(), and 2 instructions for ftrace_stub(). That way we
1922
* have all on one L1 cacheline.
1923
*/
1924
ldi 0, %arg3
1925
b ftrace_function_trampoline
1926
copy %r3, %arg2 /* caller original %sp */
1927
ftrace_stub:
1928
.globl ftrace_stub
1929
.type ftrace_stub, @function
1930
#ifdef CONFIG_64BIT
1931
bve (%rp)
1932
#else
1933
bv %r0(%rp)
1934
#endif
1935
nop
1936
#ifdef CONFIG_64BIT
1937
.dword mcount
1938
.dword 0 /* code in head.S puts value of global gp here */
1939
#endif
1940
ENDPROC_CFI(mcount)
1941
1942
#ifdef CONFIG_DYNAMIC_FTRACE
1943
1944
#ifdef CONFIG_64BIT
1945
#define FTRACE_FRAME_SIZE (2*FRAME_SIZE)
1946
#else
1947
#define FTRACE_FRAME_SIZE FRAME_SIZE
1948
#endif
1949
ENTRY_CFI(ftrace_caller, caller,frame=FTRACE_FRAME_SIZE,CALLS,SAVE_RP,SAVE_SP)
1950
ftrace_caller:
1951
.global ftrace_caller
1952
1953
STREG %r3, -FTRACE_FRAME_SIZE+1*REG_SZ(%sp)
1954
ldo -FTRACE_FRAME_SIZE(%sp), %r3
1955
STREG %rp, -RP_OFFSET(%r3)
1956
1957
/* Offset 0 is already allocated for %r1 */
1958
STREG %r23, 2*REG_SZ(%r3)
1959
STREG %r24, 3*REG_SZ(%r3)
1960
STREG %r25, 4*REG_SZ(%r3)
1961
STREG %r26, 5*REG_SZ(%r3)
1962
STREG %r28, 6*REG_SZ(%r3)
1963
STREG %r29, 7*REG_SZ(%r3)
1964
#ifdef CONFIG_64BIT
1965
STREG %r19, 8*REG_SZ(%r3)
1966
STREG %r20, 9*REG_SZ(%r3)
1967
STREG %r21, 10*REG_SZ(%r3)
1968
STREG %r22, 11*REG_SZ(%r3)
1969
STREG %r27, 12*REG_SZ(%r3)
1970
STREG %r31, 13*REG_SZ(%r3)
1971
loadgp
1972
ldo -16(%sp),%r29
1973
#endif
1974
LDREG 0(%r3), %r25
1975
copy %rp, %r26
1976
ldo -8(%r25), %r25
1977
ldi 0, %r23 /* no pt_regs */
1978
b,l ftrace_function_trampoline, %rp
1979
copy %r3, %r24
1980
1981
LDREG -RP_OFFSET(%r3), %rp
1982
LDREG 2*REG_SZ(%r3), %r23
1983
LDREG 3*REG_SZ(%r3), %r24
1984
LDREG 4*REG_SZ(%r3), %r25
1985
LDREG 5*REG_SZ(%r3), %r26
1986
LDREG 6*REG_SZ(%r3), %r28
1987
LDREG 7*REG_SZ(%r3), %r29
1988
#ifdef CONFIG_64BIT
1989
LDREG 8*REG_SZ(%r3), %r19
1990
LDREG 9*REG_SZ(%r3), %r20
1991
LDREG 10*REG_SZ(%r3), %r21
1992
LDREG 11*REG_SZ(%r3), %r22
1993
LDREG 12*REG_SZ(%r3), %r27
1994
LDREG 13*REG_SZ(%r3), %r31
1995
#endif
1996
LDREG 1*REG_SZ(%r3), %r3
1997
1998
LDREGM -FTRACE_FRAME_SIZE(%sp), %r1
1999
/* Adjust return point to jump back to beginning of traced function */
2000
ldo -4(%r1), %r1
2001
bv,n (%r1)
2002
2003
ENDPROC_CFI(ftrace_caller)
2004
2005
#ifdef CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS
2006
ENTRY_CFI(ftrace_regs_caller,caller,frame=FTRACE_FRAME_SIZE+PT_SZ_ALGN,
2007
CALLS,SAVE_RP,SAVE_SP)
2008
ftrace_regs_caller:
2009
.global ftrace_regs_caller
2010
2011
ldo -FTRACE_FRAME_SIZE(%sp), %r1
2012
STREG %rp, -RP_OFFSET(%r1)
2013
2014
copy %sp, %r1
2015
ldo PT_SZ_ALGN(%sp), %sp
2016
2017
STREG %rp, PT_GR2(%r1)
2018
STREG %r3, PT_GR3(%r1)
2019
STREG %r4, PT_GR4(%r1)
2020
STREG %r5, PT_GR5(%r1)
2021
STREG %r6, PT_GR6(%r1)
2022
STREG %r7, PT_GR7(%r1)
2023
STREG %r8, PT_GR8(%r1)
2024
STREG %r9, PT_GR9(%r1)
2025
STREG %r10, PT_GR10(%r1)
2026
STREG %r11, PT_GR11(%r1)
2027
STREG %r12, PT_GR12(%r1)
2028
STREG %r13, PT_GR13(%r1)
2029
STREG %r14, PT_GR14(%r1)
2030
STREG %r15, PT_GR15(%r1)
2031
STREG %r16, PT_GR16(%r1)
2032
STREG %r17, PT_GR17(%r1)
2033
STREG %r18, PT_GR18(%r1)
2034
STREG %r19, PT_GR19(%r1)
2035
STREG %r20, PT_GR20(%r1)
2036
STREG %r21, PT_GR21(%r1)
2037
STREG %r22, PT_GR22(%r1)
2038
STREG %r23, PT_GR23(%r1)
2039
STREG %r24, PT_GR24(%r1)
2040
STREG %r25, PT_GR25(%r1)
2041
STREG %r26, PT_GR26(%r1)
2042
STREG %r27, PT_GR27(%r1)
2043
STREG %r28, PT_GR28(%r1)
2044
STREG %r29, PT_GR29(%r1)
2045
STREG %r30, PT_GR30(%r1)
2046
STREG %r31, PT_GR31(%r1)
2047
mfctl %cr11, %r26
2048
STREG %r26, PT_SAR(%r1)
2049
2050
copy %rp, %r26
2051
LDREG -FTRACE_FRAME_SIZE-PT_SZ_ALGN(%sp), %r25
2052
ldo -8(%r25), %r25
2053
ldo -FTRACE_FRAME_SIZE(%r1), %arg2
2054
b,l ftrace_function_trampoline, %rp
2055
copy %r1, %arg3 /* struct pt_regs */
2056
2057
ldo -PT_SZ_ALGN(%sp), %r1
2058
2059
LDREG PT_SAR(%r1), %rp
2060
mtctl %rp, %cr11
2061
2062
LDREG PT_GR2(%r1), %rp
2063
LDREG PT_GR3(%r1), %r3
2064
LDREG PT_GR4(%r1), %r4
2065
LDREG PT_GR5(%r1), %r5
2066
LDREG PT_GR6(%r1), %r6
2067
LDREG PT_GR7(%r1), %r7
2068
LDREG PT_GR8(%r1), %r8
2069
LDREG PT_GR9(%r1), %r9
2070
LDREG PT_GR10(%r1),%r10
2071
LDREG PT_GR11(%r1),%r11
2072
LDREG PT_GR12(%r1),%r12
2073
LDREG PT_GR13(%r1),%r13
2074
LDREG PT_GR14(%r1),%r14
2075
LDREG PT_GR15(%r1),%r15
2076
LDREG PT_GR16(%r1),%r16
2077
LDREG PT_GR17(%r1),%r17
2078
LDREG PT_GR18(%r1),%r18
2079
LDREG PT_GR19(%r1),%r19
2080
LDREG PT_GR20(%r1),%r20
2081
LDREG PT_GR21(%r1),%r21
2082
LDREG PT_GR22(%r1),%r22
2083
LDREG PT_GR23(%r1),%r23
2084
LDREG PT_GR24(%r1),%r24
2085
LDREG PT_GR25(%r1),%r25
2086
LDREG PT_GR26(%r1),%r26
2087
LDREG PT_GR27(%r1),%r27
2088
LDREG PT_GR28(%r1),%r28
2089
LDREG PT_GR29(%r1),%r29
2090
LDREG PT_GR30(%r1),%r30
2091
LDREG PT_GR31(%r1),%r31
2092
2093
ldo -PT_SZ_ALGN(%sp), %sp
2094
LDREGM -FTRACE_FRAME_SIZE(%sp), %r1
2095
/* Adjust return point to jump back to beginning of traced function */
2096
ldo -4(%r1), %r1
2097
bv,n (%r1)
2098
2099
ENDPROC_CFI(ftrace_regs_caller)
2100
2101
#endif
2102
#endif
2103
2104
#ifdef CONFIG_FUNCTION_GRAPH_TRACER
2105
.align 8
2106
ENTRY_CFI(return_to_handler, caller,frame=FRAME_SIZE)
2107
.export parisc_return_to_handler,data
2108
parisc_return_to_handler:
2109
copy %r3,%r1
2110
STREG %r0,-RP_OFFSET(%sp) /* store 0 as %rp */
2111
copy %sp,%r3
2112
STREGM %r1,FRAME_SIZE(%sp)
2113
STREG %ret0,8(%r3)
2114
STREG %ret1,16(%r3)
2115
2116
#ifdef CONFIG_64BIT
2117
loadgp
2118
#endif
2119
2120
/* call ftrace_return_to_handler(0) */
2121
.import ftrace_return_to_handler,code
2122
load32 ftrace_return_to_handler,%ret0
2123
load32 .Lftrace_ret,%r2
2124
#ifdef CONFIG_64BIT
2125
ldo -16(%sp),%ret1 /* Reference param save area */
2126
bve (%ret0)
2127
#else
2128
bv %r0(%ret0)
2129
#endif
2130
ldi 0,%r26
2131
.Lftrace_ret:
2132
copy %ret0,%rp
2133
2134
/* restore original return values */
2135
LDREG 8(%r3),%ret0
2136
LDREG 16(%r3),%ret1
2137
2138
/* return from function */
2139
#ifdef CONFIG_64BIT
2140
bve (%rp)
2141
#else
2142
bv %r0(%rp)
2143
#endif
2144
LDREGM -FRAME_SIZE(%sp),%r3
2145
ENDPROC_CFI(return_to_handler)
2146
2147
#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
2148
2149
#endif /* CONFIG_FUNCTION_TRACER */
2150
2151
#ifdef CONFIG_IRQSTACKS
2152
/* void call_on_stack(unsigned long param1, void *func,
2153
unsigned long new_stack) */
2154
ENTRY_CFI(call_on_stack, FRAME=2*FRAME_SIZE,CALLS,SAVE_RP,SAVE_SP)
2155
ENTRY(_call_on_stack)
2156
copy %sp, %r1
2157
2158
/* Regarding the HPPA calling conventions for function pointers,
2159
we assume the PIC register is not changed across call. For
2160
CONFIG_64BIT, the argument pointer is left to point at the
2161
argument region allocated for the call to call_on_stack. */
2162
2163
/* Switch to new stack. We allocate two frames. */
2164
ldo 2*FRAME_SIZE(%arg2), %sp
2165
# ifdef CONFIG_64BIT
2166
/* Save previous stack pointer and return pointer in frame marker */
2167
STREG %rp, -FRAME_SIZE-RP_OFFSET(%sp)
2168
/* Calls always use function descriptor */
2169
LDREG 16(%arg1), %arg1
2170
bve,l (%arg1), %rp
2171
STREG %r1, -FRAME_SIZE-REG_SZ(%sp)
2172
LDREG -FRAME_SIZE-RP_OFFSET(%sp), %rp
2173
bve (%rp)
2174
LDREG -FRAME_SIZE-REG_SZ(%sp), %sp
2175
# else
2176
/* Save previous stack pointer and return pointer in frame marker */
2177
STREG %r1, -FRAME_SIZE-REG_SZ(%sp)
2178
STREG %rp, -FRAME_SIZE-RP_OFFSET(%sp)
2179
/* Calls use function descriptor if PLABEL bit is set */
2180
bb,>=,n %arg1, 30, 1f
2181
depwi 0,31,2, %arg1
2182
LDREG 0(%arg1), %arg1
2183
1:
2184
be,l 0(%sr4,%arg1), %sr0, %r31
2185
copy %r31, %rp
2186
LDREG -FRAME_SIZE-RP_OFFSET(%sp), %rp
2187
bv (%rp)
2188
LDREG -FRAME_SIZE-REG_SZ(%sp), %sp
2189
# endif /* CONFIG_64BIT */
2190
ENDPROC_CFI(call_on_stack)
2191
#endif /* CONFIG_IRQSTACKS */
2192
2193
ENTRY_CFI(get_register)
2194
/*
2195
* get_register is used by the non access tlb miss handlers to
2196
* copy the value of the general register specified in r8 into
2197
* r1. This routine can't be used for shadowed registers, since
2198
* the rfir will restore the original value. So, for the shadowed
2199
* registers we put a -1 into r1 to indicate that the register
2200
* should not be used (the register being copied could also have
2201
* a -1 in it, but that is OK, it just means that we will have
2202
* to use the slow path instead).
2203
*/
2204
blr %r8,%r0
2205
nop
2206
bv %r0(%r25) /* r0 */
2207
copy %r0,%r1
2208
bv %r0(%r25) /* r1 - shadowed */
2209
ldi -1,%r1
2210
bv %r0(%r25) /* r2 */
2211
copy %r2,%r1
2212
bv %r0(%r25) /* r3 */
2213
copy %r3,%r1
2214
bv %r0(%r25) /* r4 */
2215
copy %r4,%r1
2216
bv %r0(%r25) /* r5 */
2217
copy %r5,%r1
2218
bv %r0(%r25) /* r6 */
2219
copy %r6,%r1
2220
bv %r0(%r25) /* r7 */
2221
copy %r7,%r1
2222
bv %r0(%r25) /* r8 - shadowed */
2223
ldi -1,%r1
2224
bv %r0(%r25) /* r9 - shadowed */
2225
ldi -1,%r1
2226
bv %r0(%r25) /* r10 */
2227
copy %r10,%r1
2228
bv %r0(%r25) /* r11 */
2229
copy %r11,%r1
2230
bv %r0(%r25) /* r12 */
2231
copy %r12,%r1
2232
bv %r0(%r25) /* r13 */
2233
copy %r13,%r1
2234
bv %r0(%r25) /* r14 */
2235
copy %r14,%r1
2236
bv %r0(%r25) /* r15 */
2237
copy %r15,%r1
2238
bv %r0(%r25) /* r16 - shadowed */
2239
ldi -1,%r1
2240
bv %r0(%r25) /* r17 - shadowed */
2241
ldi -1,%r1
2242
bv %r0(%r25) /* r18 */
2243
copy %r18,%r1
2244
bv %r0(%r25) /* r19 */
2245
copy %r19,%r1
2246
bv %r0(%r25) /* r20 */
2247
copy %r20,%r1
2248
bv %r0(%r25) /* r21 */
2249
copy %r21,%r1
2250
bv %r0(%r25) /* r22 */
2251
copy %r22,%r1
2252
bv %r0(%r25) /* r23 */
2253
copy %r23,%r1
2254
bv %r0(%r25) /* r24 - shadowed */
2255
ldi -1,%r1
2256
bv %r0(%r25) /* r25 - shadowed */
2257
ldi -1,%r1
2258
bv %r0(%r25) /* r26 */
2259
copy %r26,%r1
2260
bv %r0(%r25) /* r27 */
2261
copy %r27,%r1
2262
bv %r0(%r25) /* r28 */
2263
copy %r28,%r1
2264
bv %r0(%r25) /* r29 */
2265
copy %r29,%r1
2266
bv %r0(%r25) /* r30 */
2267
copy %r30,%r1
2268
bv %r0(%r25) /* r31 */
2269
copy %r31,%r1
2270
ENDPROC_CFI(get_register)
2271
2272
2273
ENTRY_CFI(set_register)
2274
/*
2275
* set_register is used by the non access tlb miss handlers to
2276
* copy the value of r1 into the general register specified in
2277
* r8.
2278
*/
2279
blr %r8,%r0
2280
nop
2281
bv %r0(%r25) /* r0 (silly, but it is a place holder) */
2282
copy %r1,%r0
2283
bv %r0(%r25) /* r1 */
2284
copy %r1,%r1
2285
bv %r0(%r25) /* r2 */
2286
copy %r1,%r2
2287
bv %r0(%r25) /* r3 */
2288
copy %r1,%r3
2289
bv %r0(%r25) /* r4 */
2290
copy %r1,%r4
2291
bv %r0(%r25) /* r5 */
2292
copy %r1,%r5
2293
bv %r0(%r25) /* r6 */
2294
copy %r1,%r6
2295
bv %r0(%r25) /* r7 */
2296
copy %r1,%r7
2297
bv %r0(%r25) /* r8 */
2298
copy %r1,%r8
2299
bv %r0(%r25) /* r9 */
2300
copy %r1,%r9
2301
bv %r0(%r25) /* r10 */
2302
copy %r1,%r10
2303
bv %r0(%r25) /* r11 */
2304
copy %r1,%r11
2305
bv %r0(%r25) /* r12 */
2306
copy %r1,%r12
2307
bv %r0(%r25) /* r13 */
2308
copy %r1,%r13
2309
bv %r0(%r25) /* r14 */
2310
copy %r1,%r14
2311
bv %r0(%r25) /* r15 */
2312
copy %r1,%r15
2313
bv %r0(%r25) /* r16 */
2314
copy %r1,%r16
2315
bv %r0(%r25) /* r17 */
2316
copy %r1,%r17
2317
bv %r0(%r25) /* r18 */
2318
copy %r1,%r18
2319
bv %r0(%r25) /* r19 */
2320
copy %r1,%r19
2321
bv %r0(%r25) /* r20 */
2322
copy %r1,%r20
2323
bv %r0(%r25) /* r21 */
2324
copy %r1,%r21
2325
bv %r0(%r25) /* r22 */
2326
copy %r1,%r22
2327
bv %r0(%r25) /* r23 */
2328
copy %r1,%r23
2329
bv %r0(%r25) /* r24 */
2330
copy %r1,%r24
2331
bv %r0(%r25) /* r25 */
2332
copy %r1,%r25
2333
bv %r0(%r25) /* r26 */
2334
copy %r1,%r26
2335
bv %r0(%r25) /* r27 */
2336
copy %r1,%r27
2337
bv %r0(%r25) /* r28 */
2338
copy %r1,%r28
2339
bv %r0(%r25) /* r29 */
2340
copy %r1,%r29
2341
bv %r0(%r25) /* r30 */
2342
copy %r1,%r30
2343
bv %r0(%r25) /* r31 */
2344
copy %r1,%r31
2345
ENDPROC_CFI(set_register)
2346
2347
2348