]> www.infradead.org Git - users/jedix/linux-maple.git/commit
firmware: arm_ffa: Skip Rx buffer ownership release if not acquired
authorSudeep Holla <sudeep.holla@arm.com>
Fri, 21 Mar 2025 11:57:00 +0000 (11:57 +0000)
committerSudeep Holla <sudeep.holla@arm.com>
Tue, 8 Apr 2025 09:32:15 +0000 (10:32 +0100)
commit4567bdaaaaa1744da3d7da07d9aca2f941f5b4e5
treedd99ef7d7f9420bb01953aede8eaa3f3bc5a229d
parent0af2f6be1b4281385b618cb86ad946eded089ac8
firmware: arm_ffa: Skip Rx buffer ownership release if not acquired

Completion of the FFA_PARTITION_INFO_GET ABI transfers the ownership of
the caller’s Rx buffer from the producer(typically partition mnager) to
the consumer(this driver/OS). FFA_RX_RELEASE transfers the ownership
from the consumer back to the producer.

However, when we set the flag to just return the count of partitions
deployed in the system corresponding to the specified UUID while
invoking FFA_PARTITION_INFO_GET, the Rx buffer ownership shouldn't be
transferred to this driver. We must be able to skip transferring back
the ownership to the partition manager when we request just to get the
count of the partitions as the buffers are not acquired in this case.

Firmware may return FFA_RET_DENIED or other error for the ffa_rx_release()
in such cases.

Fixes: bb1be7498500 ("firmware: arm_ffa: Add v1.1 get_partition_info support")
Message-Id: <20250321115700.3525197-1-sudeep.holla@arm.com>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
drivers/firmware/arm_ffa/driver.c