1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright (c) 2015,2019 The Linux Foundation. All rights reserved.
6 #include <linux/errno.h>
7 #include <linux/delay.h>
8 #include <linux/mutex.h>
9 #include <linux/slab.h>
10 #include <linux/types.h>
11 #include <linux/qcom_scm.h>
12 #include <linux/arm-smccc.h>
13 #include <linux/dma-mapping.h>
18 * struct arm_smccc_args
19 * @args: The array of values used in registers in smc instruction
21 struct arm_smccc_args
{
22 unsigned long args
[8];
25 static DEFINE_MUTEX(qcom_scm_lock
);
27 #define QCOM_SCM_EBUSY_WAIT_MS 30
28 #define QCOM_SCM_EBUSY_MAX_RETRY 20
30 #define SCM_SMC_N_REG_ARGS 4
31 #define SCM_SMC_FIRST_EXT_IDX (SCM_SMC_N_REG_ARGS - 1)
32 #define SCM_SMC_N_EXT_ARGS (MAX_QCOM_SCM_ARGS - SCM_SMC_N_REG_ARGS + 1)
33 #define SCM_SMC_FIRST_REG_IDX 2
34 #define SCM_SMC_LAST_REG_IDX (SCM_SMC_FIRST_REG_IDX + SCM_SMC_N_REG_ARGS - 1)
36 static void __scm_smc_do_quirk(const struct arm_smccc_args
*smc
,
37 struct arm_smccc_res
*res
)
39 unsigned long a0
= smc
->args
[0];
40 struct arm_smccc_quirk quirk
= { .id
= ARM_SMCCC_QUIRK_QCOM_A6
};
45 arm_smccc_smc_quirk(a0
, smc
->args
[1], smc
->args
[2],
46 smc
->args
[3], smc
->args
[4], smc
->args
[5],
47 quirk
.state
.a6
, smc
->args
[7], res
, &quirk
);
49 if (res
->a0
== QCOM_SCM_INTERRUPTED
)
52 } while (res
->a0
== QCOM_SCM_INTERRUPTED
);
55 static void __scm_smc_do(const struct arm_smccc_args
*smc
,
56 struct arm_smccc_res
*res
, bool atomic
)
61 __scm_smc_do_quirk(smc
, res
);
66 mutex_lock(&qcom_scm_lock
);
68 __scm_smc_do_quirk(smc
, res
);
70 mutex_unlock(&qcom_scm_lock
);
72 if (res
->a0
== QCOM_SCM_V2_EBUSY
) {
73 if (retry_count
++ > QCOM_SCM_EBUSY_MAX_RETRY
)
75 msleep(QCOM_SCM_EBUSY_WAIT_MS
);
77 } while (res
->a0
== QCOM_SCM_V2_EBUSY
);
80 int scm_smc_call(struct device
*dev
, const struct qcom_scm_desc
*desc
,
81 struct qcom_scm_res
*res
, bool atomic
)
83 int arglen
= desc
->arginfo
& 0xf;
85 dma_addr_t args_phys
= 0;
86 void *args_virt
= NULL
;
88 gfp_t flag
= atomic
? GFP_ATOMIC
: GFP_KERNEL
;
89 u32 smccc_call_type
= atomic
? ARM_SMCCC_FAST_CALL
: ARM_SMCCC_STD_CALL
;
90 u32 qcom_smccc_convention
=
91 (qcom_scm_convention
== SMC_CONVENTION_ARM_32
) ?
92 ARM_SMCCC_SMC_32
: ARM_SMCCC_SMC_64
;
93 struct arm_smccc_res smc_res
;
94 struct arm_smccc_args smc
= {0};
96 smc
.args
[0] = ARM_SMCCC_CALL_VAL(
98 qcom_smccc_convention
,
100 SCM_SMC_FNID(desc
->svc
, desc
->cmd
));
101 smc
.args
[1] = desc
->arginfo
;
102 for (i
= 0; i
< SCM_SMC_N_REG_ARGS
; i
++)
103 smc
.args
[i
+ SCM_SMC_FIRST_REG_IDX
] = desc
->args
[i
];
105 if (unlikely(arglen
> SCM_SMC_N_REG_ARGS
)) {
106 alloc_len
= SCM_SMC_N_EXT_ARGS
* sizeof(u64
);
107 args_virt
= kzalloc(PAGE_ALIGN(alloc_len
), flag
);
112 if (qcom_smccc_convention
== ARM_SMCCC_SMC_32
) {
113 __le32
*args
= args_virt
;
115 for (i
= 0; i
< SCM_SMC_N_EXT_ARGS
; i
++)
116 args
[i
] = cpu_to_le32(desc
->args
[i
+
117 SCM_SMC_FIRST_EXT_IDX
]);
119 __le64
*args
= args_virt
;
121 for (i
= 0; i
< SCM_SMC_N_EXT_ARGS
; i
++)
122 args
[i
] = cpu_to_le64(desc
->args
[i
+
123 SCM_SMC_FIRST_EXT_IDX
]);
126 args_phys
= dma_map_single(dev
, args_virt
, alloc_len
,
129 if (dma_mapping_error(dev
, args_phys
)) {
134 smc
.args
[SCM_SMC_LAST_REG_IDX
] = args_phys
;
137 __scm_smc_do(&smc
, &smc_res
, atomic
);
140 dma_unmap_single(dev
, args_phys
, alloc_len
, DMA_TO_DEVICE
);
145 res
->result
[0] = smc_res
.a1
;
146 res
->result
[1] = smc_res
.a2
;
147 res
->result
[2] = smc_res
.a3
;
150 return (long)smc_res
.a0
? qcom_scm_remap_error(smc_res
.a0
) : 0;