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

TOMOYO Linux Cross Reference
Linux/arch/arm/kernel/smccc-call.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  * Copyright (c) 2015, Linaro Limited
  4  */
  5 #include <linux/linkage.h>
  6 #include <linux/arm-smccc.h>
  7 
  8 #include <asm/asm-offsets.h>
  9 #include <asm/opcodes-sec.h>
 10 #include <asm/opcodes-virt.h>
 11 #include <asm/unwind.h>
 12 
 13         /*
 14          * Wrap c macros in asm macros to delay expansion until after the
 15          * SMCCC asm macro is expanded.
 16          */
 17         .macro SMCCC_SMC
 18         __SMC(0)
 19         .endm
 20 
 21         .macro SMCCC_HVC
 22         __HVC(0)
 23         .endm
 24 
 25         .macro SMCCC instr
 26 UNWIND( .fnstart)
 27         mov     r12, sp
 28         push    {r4-r7}
 29 UNWIND( .save   {r4-r7})
 30         ldm     r12, {r4-r7}
 31         \instr
 32         ldr     r4, [sp, #36]
 33         cmp     r4, #0
 34         beq     1f                      // No quirk structure
 35         ldr     r5, [r4, #ARM_SMCCC_QUIRK_ID_OFFS]
 36         cmp     r5, #ARM_SMCCC_QUIRK_QCOM_A6
 37         bne     1f                      // No quirk present
 38         str     r6, [r4, #ARM_SMCCC_QUIRK_STATE_OFFS]
 39 1:      pop     {r4-r7}
 40         ldr     r12, [sp, #(4 * 4)]
 41         stm     r12, {r0-r3}
 42         bx      lr
 43 UNWIND( .fnend)
 44         .endm
 45 
 46 /*
 47  * void smccc_smc(unsigned long a0, unsigned long a1, unsigned long a2,
 48  *                unsigned long a3, unsigned long a4, unsigned long a5,
 49  *                unsigned long a6, unsigned long a7, struct arm_smccc_res *res,
 50  *                struct arm_smccc_quirk *quirk)
 51  */
 52 ENTRY(__arm_smccc_smc)
 53         SMCCC SMCCC_SMC
 54 ENDPROC(__arm_smccc_smc)
 55 
 56 /*
 57  * void smccc_hvc(unsigned long a0, unsigned long a1, unsigned long a2,
 58  *                unsigned long a3, unsigned long a4, unsigned long a5,
 59  *                unsigned long a6, unsigned long a7, struct arm_smccc_res *res,
 60  *                struct arm_smccc_quirk *quirk)
 61  */
 62 ENTRY(__arm_smccc_hvc)
 63         SMCCC SMCCC_HVC
 64 ENDPROC(__arm_smccc_hvc)

~ [ 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