~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/arm64/mm/trans_pgd-asm.S

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0-only */
  2 
  3 /*
  4  * Copyright (c) 2021, Microsoft Corporation.
  5  * Pasha Tatashin <pasha.tatashin@soleen.com>
  6  */
  7 
  8 #include <linux/linkage.h>
  9 #include <asm/assembler.h>
 10 #include <asm/kvm_asm.h>
 11 
 12 .macro invalid_vector   label
 13 SYM_CODE_START_LOCAL(\label)
 14         .align 7
 15         b       \label
 16 SYM_CODE_END(\label)
 17 .endm
 18 
 19 .macro el1_sync_vector
 20 SYM_CODE_START_LOCAL(el1_sync)
 21         .align 7
 22         cmp     x0, #HVC_SET_VECTORS    /* Called from hibernate */
 23         b.ne    1f
 24         msr     vbar_el2, x1
 25         mov     x0, xzr
 26         eret
 27 1:      cmp     x0, #HVC_SOFT_RESTART   /* Called from kexec */
 28         b.ne    2f
 29         mov     x0, x2
 30         mov     x2, x4
 31         mov     x4, x1
 32         mov     x1, x3
 33         br      x4
 34 2:      /* Unexpected argument, set an error */
 35         mov_q   x0, HVC_STUB_ERR
 36         eret
 37 SYM_CODE_END(el1_sync)
 38 .endm
 39 
 40 SYM_CODE_START(trans_pgd_stub_vectors)
 41         invalid_vector  hyp_stub_el2t_sync_invalid      // Synchronous EL2t
 42         invalid_vector  hyp_stub_el2t_irq_invalid       // IRQ EL2t
 43         invalid_vector  hyp_stub_el2t_fiq_invalid       // FIQ EL2t
 44         invalid_vector  hyp_stub_el2t_error_invalid     // Error EL2t
 45 
 46         invalid_vector  hyp_stub_el2h_sync_invalid      // Synchronous EL2h
 47         invalid_vector  hyp_stub_el2h_irq_invalid       // IRQ EL2h
 48         invalid_vector  hyp_stub_el2h_fiq_invalid       // FIQ EL2h
 49         invalid_vector  hyp_stub_el2h_error_invalid     // Error EL2h
 50 
 51         el1_sync_vector                                 // Synchronous 64-bit EL1
 52         invalid_vector  hyp_stub_el1_irq_invalid        // IRQ 64-bit EL1
 53         invalid_vector  hyp_stub_el1_fiq_invalid        // FIQ 64-bit EL1
 54         invalid_vector  hyp_stub_el1_error_invalid      // Error 64-bit EL1
 55 
 56         invalid_vector  hyp_stub_32b_el1_sync_invalid   // Synchronous 32-bit EL1
 57         invalid_vector  hyp_stub_32b_el1_irq_invalid    // IRQ 32-bit EL1
 58         invalid_vector  hyp_stub_32b_el1_fiq_invalid    // FIQ 32-bit EL1
 59         invalid_vector  hyp_stub_32b_el1_error_invalid  // Error 32-bit EL1
 60         .align 11
 61 SYM_INNER_LABEL(__trans_pgd_stub_vectors_end, SYM_L_LOCAL)
 62 SYM_CODE_END(trans_pgd_stub_vectors)
 63 
 64 # Check the trans_pgd_stub_vectors didn't overflow
 65 .org . - (__trans_pgd_stub_vectors_end - trans_pgd_stub_vectors) + SZ_2K

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php