1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (c) 2015, Linaro Limited
5 #include <linux/linkage.h>
6 #include <linux/arm-smccc.h>
8 #include <asm/asm-offsets.h>
9 #include <asm/opcodes-sec.h>
10 #include <asm/opcodes-virt.h>
11 #include <asm/unwind.h>
14 * Wrap c macros in asm macros to delay expansion until after the
15 * SMCCC asm macro is expanded.
29 UNWIND( .save {r4-r7})
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]
40 ldr r12, [sp, #(4 * 4)]
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)
52 ENTRY(__arm_smccc_smc)
54 ENDPROC(__arm_smccc_smc)
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)
62 ENTRY(__arm_smccc_hvc)
64 ENDPROC(__arm_smccc_hvc)