Searched refs:ffa_dev (Results 1 – 6 of 6) sorted by relevance
/Linux-v6.1/drivers/firmware/arm_ffa/ |
D | bus.c | 21 struct ffa_device *ffa_dev; in ffa_device_match() local 24 ffa_dev = to_ffa_dev(dev); in ffa_device_match() 33 if (uuid_is_null(&ffa_dev->uuid)) in ffa_device_match() 34 ffa_device_match_uuid(ffa_dev, &id_table->uuid); in ffa_device_match() 36 if (uuid_equal(&ffa_dev->uuid, &id_table->uuid)) in ffa_device_match() 47 struct ffa_device *ffa_dev = to_ffa_dev(dev); in ffa_device_probe() local 49 return ffa_drv->probe(ffa_dev); in ffa_device_probe() 61 struct ffa_device *ffa_dev = to_ffa_dev(dev); in ffa_device_uevent() local 64 ffa_dev->vm_id, &ffa_dev->uuid); in ffa_device_uevent() 70 struct ffa_device *ffa_dev = to_ffa_dev(dev); in partition_id_show() local [all …]
|
D | common.h | 19 bool ffa_device_is_valid(struct ffa_device *ffa_dev); 20 void ffa_device_match_uuid(struct ffa_device *ffa_dev, const uuid_t *uuid);
|
D | driver.c | 716 void ffa_device_match_uuid(struct ffa_device *ffa_dev, const uuid_t *uuid) in ffa_device_match_uuid() argument 734 if (tpbuf->id == ffa_dev->vm_id) in ffa_device_match_uuid() 735 uuid_copy(&ffa_dev->uuid, uuid); in ffa_device_match_uuid() 743 struct ffa_device *ffa_dev; in ffa_setup_partitions() local 761 ffa_dev = ffa_device_register(&uuid, tpbuf->id, &ffa_drv_ops); in ffa_setup_partitions() 762 if (!ffa_dev) { in ffa_setup_partitions() 770 _ffa_mode_32bit_set(ffa_dev); in ffa_setup_partitions()
|
/Linux-v6.1/drivers/tee/optee/ |
D | ffa_abi.c | 274 struct ffa_device *ffa_dev = optee->ffa.ffa_dev; in optee_ffa_shm_register() local 275 const struct ffa_mem_ops *mem_ops = ffa_dev->ops->mem_ops; in optee_ffa_shm_register() 277 .receiver = ffa_dev->vm_id, in optee_ffa_shm_register() 317 struct ffa_device *ffa_dev = optee->ffa.ffa_dev; in optee_ffa_shm_unregister() local 318 const struct ffa_msg_ops *msg_ops = ffa_dev->ops->msg_ops; in optee_ffa_shm_unregister() 319 const struct ffa_mem_ops *mem_ops = ffa_dev->ops->mem_ops; in optee_ffa_shm_unregister() 331 rc = msg_ops->sync_send_receive(ffa_dev, &data); in optee_ffa_shm_unregister() 357 mem_ops = optee->ffa.ffa_dev->ops->mem_ops; in optee_ffa_shm_unregister_supp() 534 struct ffa_device *ffa_dev = optee->ffa.ffa_dev; in optee_ffa_yielding_call() local 535 const struct ffa_msg_ops *msg_ops = ffa_dev->ops->msg_ops; in optee_ffa_yielding_call() [all …]
|
D | optee_private.h | 113 struct ffa_device *ffa_dev; member
|
/Linux-v6.1/include/linux/ |
D | arm_ffa.h | 53 void ffa_device_unregister(struct ffa_device *ffa_dev); 57 bool ffa_device_is_valid(struct ffa_device *ffa_dev); 79 bool ffa_device_is_valid(struct ffa_device *ffa_dev) { return false; } in ffa_device_is_valid() argument
|