diff options
author | Sudeep Holla <sudeep.holla@arm.com> | 2021-05-21 18:10:32 +0300 |
---|---|---|
committer | Sudeep Holla <sudeep.holla@arm.com> | 2021-05-27 00:38:43 +0300 |
commit | d0c0bce831223b08e5bade2cefc93c3ddb790796 (patch) | |
tree | 73fbc6bf8009f496dd0fcf12afde04d4a9613a18 /drivers/firmware/arm_ffa/common.h | |
parent | 714be77e976a4b013b935b3223b2ef68856084d0 (diff) | |
download | linux-d0c0bce831223b08e5bade2cefc93c3ddb790796.tar.xz |
firmware: arm_ffa: Setup in-kernel users of FFA partitions
Parse the FFA nodes from the device-tree and register all the partitions
whose services will be used in the kernel.
In order to also enable in-kernel users of FFA interface, let us add
simple set of operations for such devices.
The in-kernel users are registered without the character device interface.
Link: https://lore.kernel.org/r/20210521151033.181846-5-sudeep.holla@arm.com
Tested-by: Jens Wiklander <jens.wiklander@linaro.org>
Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
Diffstat (limited to 'drivers/firmware/arm_ffa/common.h')
-rw-r--r-- | drivers/firmware/arm_ffa/common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/firmware/arm_ffa/common.h b/drivers/firmware/arm_ffa/common.h index f24754a59f47..d6eccf1fd3f6 100644 --- a/drivers/firmware/arm_ffa/common.h +++ b/drivers/firmware/arm_ffa/common.h @@ -6,6 +6,7 @@ #ifndef _FFA_COMMON_H #define _FFA_COMMON_H +#include <linux/arm_ffa.h> #include <linux/arm-smccc.h> #include <linux/err.h> @@ -15,6 +16,8 @@ typedef void (ffa_fn)(ffa_value_t, ffa_value_t *); int arm_ffa_bus_init(void); void arm_ffa_bus_exit(void); +bool ffa_device_is_valid(struct ffa_device *ffa_dev); +void ffa_device_match_uuid(struct ffa_device *ffa_dev, const uuid_t *uuid); #ifdef CONFIG_ARM_FFA_SMCCC int __init ffa_transport_init(ffa_fn **invoke_ffa_fn); |