[PATCH v14 05/44] arm64: RMI: Add wrappers for RMI calls
Steven Price
steven.price at arm.com
Thu May 21 08:44:39 PDT 2026
On 19/05/2026 06:35, Aneesh Kumar K.V wrote:
> Steven Price <steven.price at arm.com> writes:
>
>> The wrappers make the call sites easier to read and deal with the
>> boiler plate of handling the error codes from the RMM.
>>
>> Signed-off-by: Steven Price <steven.price at arm.com>
>> +#define rmi_smccc(...) do { \
>> + arm_smccc_1_1_invoke(__VA_ARGS__); \
>> +} while (RMI_RETURN_STATUS(res.a0) == RMI_BUSY || \
>> + RMI_RETURN_STATUS(res.a0) == RMI_BLOCKED)
>> +
>
> I guess this is not used. Also, that would require the call site to have a struct arm_smccc_res res.
Ah good spot - yes this was replaced with a proper static inline
rmi_smccc_invoke() function. I missed removing this macro.
Thanks,
Steve
More information about the linux-arm-kernel
mailing list