Linux-ARM-Kernel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] firmware: arm_ffa: Allow the FF-A drivers to use 32bit mode of messaging
@ 2023-10-05 14:28 Sudeep Holla
  2023-10-06 11:14 ` Jens Wiklander
  2023-10-06 15:16 ` Sudeep Holla
  0 siblings, 2 replies; 4+ messages in thread
From: Sudeep Holla @ 2023-10-05 14:28 UTC (permalink / raw)
  To: linux-arm-kernel; +Cc: Sudeep Holla, Marc Bonnici, Jens Wiklander

An FF-A ABI could support both the SMC32 and SMC64 conventions.
A callee that runs in the AArch64 execution state and implements such
an ABI must implement both SMC32 and SMC64 conventions of the ABI.

So the FF-A drivers will need the option to choose the mode irrespective
of FF-A version and the partition execution mode flag in the partition
information.

Let us remove the check on the FF-A version for allowing the selection
of 32bit mode of messaging. The driver will continue to set the 32-bit
mode if the partition execution mode flag specified that the partition
supports only 32-bit execution.

Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
---
 drivers/firmware/arm_ffa/driver.c | 12 ++----------
 1 file changed, 2 insertions(+), 10 deletions(-)

Hi Jens,

Based on our discussion in private, I am posting this patch. I am not marking
fixes tag as the driver version is not yet bumped in the mainline. But if you
think it is better to add, I can update when pulling in the change. Let me
know.

Regards,
Sudeep

diff --git a/drivers/firmware/arm_ffa/driver.c b/drivers/firmware/arm_ffa/driver.c
index 121f4fc903cd..7cd6b1564e80 100644
--- a/drivers/firmware/arm_ffa/driver.c
+++ b/drivers/firmware/arm_ffa/driver.c
@@ -587,17 +587,9 @@ static int ffa_partition_info_get(const char *uuid_str,
 	return 0;
 }
 
-static void _ffa_mode_32bit_set(struct ffa_device *dev)
-{
-	dev->mode_32bit = true;
-}
-
 static void ffa_mode_32bit_set(struct ffa_device *dev)
 {
-	if (drv_info->version > FFA_VERSION_1_0)
-		return;
-
-	_ffa_mode_32bit_set(dev);
+	dev->mode_32bit = true;
 }
 
 static int ffa_sync_send_receive(struct ffa_device *dev,
@@ -706,7 +698,7 @@ static void ffa_setup_partitions(void)
 
 		if (drv_info->version > FFA_VERSION_1_0 &&
 		    !(tpbuf->properties & FFA_PARTITION_AARCH64_EXEC))
-			_ffa_mode_32bit_set(ffa_dev);
+			ffa_mode_32bit_set(ffa_dev);
 	}
 	kfree(pbuf);
 }
-- 
2.42.0


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] firmware: arm_ffa: Allow the FF-A drivers to use 32bit mode of messaging
  2023-10-05 14:28 [PATCH] firmware: arm_ffa: Allow the FF-A drivers to use 32bit mode of messaging Sudeep Holla
@ 2023-10-06 11:14 ` Jens Wiklander
  2023-10-06 11:20   ` Sudeep Holla
  2023-10-06 15:16 ` Sudeep Holla
  1 sibling, 1 reply; 4+ messages in thread
From: Jens Wiklander @ 2023-10-06 11:14 UTC (permalink / raw)
  To: Sudeep Holla; +Cc: linux-arm-kernel, Marc Bonnici

Hi Sudeep,

On Thu, Oct 5, 2023 at 4:28 PM Sudeep Holla <sudeep.holla@arm.com> wrote:
>
> An FF-A ABI could support both the SMC32 and SMC64 conventions.
> A callee that runs in the AArch64 execution state and implements such
> an ABI must implement both SMC32 and SMC64 conventions of the ABI.
>
> So the FF-A drivers will need the option to choose the mode irrespective
> of FF-A version and the partition execution mode flag in the partition
> information.
>
> Let us remove the check on the FF-A version for allowing the selection
> of 32bit mode of messaging. The driver will continue to set the 32-bit
> mode if the partition execution mode flag specified that the partition
> supports only 32-bit execution.
>
> Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
> ---
>  drivers/firmware/arm_ffa/driver.c | 12 ++----------
>  1 file changed, 2 insertions(+), 10 deletions(-)
>
> Hi Jens,
>
> Based on our discussion in private, I am posting this patch. I am not marking
> fixes tag as the driver version is not yet bumped in the mainline. But if you
> think it is better to add, I can update when pulling in the change. Let me
> know.

A fixes tag would be nice, to make sure that this patch isn't missed.

Thanks,
Jens

>
> Regards,
> Sudeep
>
> diff --git a/drivers/firmware/arm_ffa/driver.c b/drivers/firmware/arm_ffa/driver.c
> index 121f4fc903cd..7cd6b1564e80 100644
> --- a/drivers/firmware/arm_ffa/driver.c
> +++ b/drivers/firmware/arm_ffa/driver.c
> @@ -587,17 +587,9 @@ static int ffa_partition_info_get(const char *uuid_str,
>         return 0;
>  }
>
> -static void _ffa_mode_32bit_set(struct ffa_device *dev)
> -{
> -       dev->mode_32bit = true;
> -}
> -
>  static void ffa_mode_32bit_set(struct ffa_device *dev)
>  {
> -       if (drv_info->version > FFA_VERSION_1_0)
> -               return;
> -
> -       _ffa_mode_32bit_set(dev);
> +       dev->mode_32bit = true;
>  }
>
>  static int ffa_sync_send_receive(struct ffa_device *dev,
> @@ -706,7 +698,7 @@ static void ffa_setup_partitions(void)
>
>                 if (drv_info->version > FFA_VERSION_1_0 &&
>                     !(tpbuf->properties & FFA_PARTITION_AARCH64_EXEC))
> -                       _ffa_mode_32bit_set(ffa_dev);
> +                       ffa_mode_32bit_set(ffa_dev);
>         }
>         kfree(pbuf);
>  }
> --
> 2.42.0
>

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] firmware: arm_ffa: Allow the FF-A drivers to use 32bit mode of messaging
  2023-10-06 11:14 ` Jens Wiklander
@ 2023-10-06 11:20   ` Sudeep Holla
  0 siblings, 0 replies; 4+ messages in thread
From: Sudeep Holla @ 2023-10-06 11:20 UTC (permalink / raw)
  To: Jens Wiklander; +Cc: linux-arm-kernel, Marc Bonnici

On Fri, Oct 06, 2023 at 01:14:33PM +0200, Jens Wiklander wrote:
> Hi Sudeep,
> 
> On Thu, Oct 5, 2023 at 4:28 PM Sudeep Holla <sudeep.holla@arm.com> wrote:
> >
> > An FF-A ABI could support both the SMC32 and SMC64 conventions.
> > A callee that runs in the AArch64 execution state and implements such
> > an ABI must implement both SMC32 and SMC64 conventions of the ABI.
> >
> > So the FF-A drivers will need the option to choose the mode irrespective
> > of FF-A version and the partition execution mode flag in the partition
> > information.
> >
> > Let us remove the check on the FF-A version for allowing the selection
> > of 32bit mode of messaging. The driver will continue to set the 32-bit
> > mode if the partition execution mode flag specified that the partition
> > supports only 32-bit execution.
> >
> > Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
> > ---
> >  drivers/firmware/arm_ffa/driver.c | 12 ++----------
> >  1 file changed, 2 insertions(+), 10 deletions(-)
> >
> > Hi Jens,
> >
> > Based on our discussion in private, I am posting this patch. I am not marking
> > fixes tag as the driver version is not yet bumped in the mainline. But if you
> > think it is better to add, I can update when pulling in the change. Let me
> > know.
> 
> A fixes tag would be nice, to make sure that this patch isn't missed.
> 

Thanks I will add.

-- 
Regards,
Sudeep

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] firmware: arm_ffa: Allow the FF-A drivers to use 32bit mode of messaging
  2023-10-05 14:28 [PATCH] firmware: arm_ffa: Allow the FF-A drivers to use 32bit mode of messaging Sudeep Holla
  2023-10-06 11:14 ` Jens Wiklander
@ 2023-10-06 15:16 ` Sudeep Holla
  1 sibling, 0 replies; 4+ messages in thread
From: Sudeep Holla @ 2023-10-06 15:16 UTC (permalink / raw)
  To: linux-arm-kernel, Sudeep Holla; +Cc: Marc Bonnici, Jens Wiklander

On Thu, 05 Oct 2023 15:28:23 +0100, Sudeep Holla wrote:
> An FF-A ABI could support both the SMC32 and SMC64 conventions.
> A callee that runs in the AArch64 execution state and implements such
> an ABI must implement both SMC32 and SMC64 conventions of the ABI.
>
> So the FF-A drivers will need the option to choose the mode irrespective
> of FF-A version and the partition execution mode flag in the partition
> information.
>
> [...]

Applied to sudeep.holla/linux (for-next/ffa/updates), thanks!

[1/1] firmware: arm_ffa: Allow the FF-A drivers to use 32bit mode of messaging
      https://git.kernel.org/sudeep.holla/c/2d698e8b4fd2
--
Regards,
Sudeep


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-10-06 15:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-05 14:28 [PATCH] firmware: arm_ffa: Allow the FF-A drivers to use 32bit mode of messaging Sudeep Holla
2023-10-06 11:14 ` Jens Wiklander
2023-10-06 11:20   ` Sudeep Holla
2023-10-06 15:16 ` Sudeep Holla

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox