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