Home
last modified time | relevance | path

Searched refs:FFA_MINOR_VERSION (Results 1 – 3 of 3) sorted by relevance

/linux/arch/arm64/kvm/hyp/nvhe/
H A Dffa.c723 if (FFA_MINOR_VERSION(ffa_req_version) < FFA_MINOR_VERSION(hyp_ffa_version)) { in do_ffa_version()
888 if (FFA_MINOR_VERSION(res.a0) < FFA_MINOR_VERSION(FFA_VERSION_1_1)) in hyp_ffa_init()
/linux/drivers/firmware/arm_ffa/
H A Ddriver.c129 u16 major = FFA_MAJOR_VERSION(version), minor = FFA_MINOR_VERSION(version); in ffa_compatible_version_find()
131 u16 drv_minor = FFA_MINOR_VERSION(FFA_DRIVER_VERSION); in ffa_compatible_version_find()
155 FFA_MAJOR_VERSION(ver.a0), FFA_MINOR_VERSION(ver.a0), in ffa_version_check()
157 FFA_MINOR_VERSION(FFA_MIN_VERSION)); in ffa_version_check()
162 FFA_MINOR_VERSION(FFA_DRIVER_VERSION)); in ffa_version_check()
164 FFA_MINOR_VERSION(ver.a0)); in ffa_version_check()
/linux/include/linux/
H A Darm_ffa.h109 #define FFA_MINOR_VERSION(x) ((u16)(FIELD_GET(FFA_MINOR_VERSION_MASK, (x)))) macro