Re: [PATCH v13 05/10] arm_ffa: introduce armffa command

2023-07-03 Thread Simon Glass
On Mon, 3 Jul 2023 at 16:53, Abdellatif El Khlifi wrote: > > Hi Simon, Ilias, > > On Mon, Jul 03, 2023 at 02:30:51PM +0100, Simon Glass wrote: > ... > > > > > > > + log_info("device name %s, dev %p, driver name %s, ops > > > > > > > %p\n", > > > > > > > +dev->name, > > > > >

Re: [PATCH v13 05/10] arm_ffa: introduce armffa command

2023-07-03 Thread Abdellatif El Khlifi
Hi Simon, Ilias, On Mon, Jul 03, 2023 at 02:30:51PM +0100, Simon Glass wrote: ... > > > > > > + log_info("device name %s, dev %p, driver name %s, ops %p\n", > > > > > > +dev->name, > > > > > > + (void *)map_to_sysmem(dev), > > > > > > +dev->drive

Re: [PATCH v13 05/10] arm_ffa: introduce armffa command

2023-07-03 Thread Simon Glass
Hi Abdellatif, On Mon, 3 Jul 2023 at 13:09, Abdellatif El Khlifi wrote: > > Hi Ilias, > > On Mon, Jul 03, 2023 at 12:59:58PM +0300, Ilias Apalodimas wrote: > > > > [...] > > > > > +int do_ffa_ping(struct cmd_tbl *cmdtp, int flag, int argc, char > > > > > *const argv[]) > > > > > +{ > > > > > +

Re: [PATCH v13 05/10] arm_ffa: introduce armffa command

2023-07-03 Thread Abdellatif El Khlifi
Hi Ilias, On Mon, Jul 03, 2023 at 12:59:58PM +0300, Ilias Apalodimas wrote: > > > [...] > > > > +int do_ffa_ping(struct cmd_tbl *cmdtp, int flag, int argc, char *const > > > > argv[]) > > > > +{ > > > > + struct ffa_send_direct_data msg = { > > > > + .data0 = 0xaaa

Re: [PATCH v13 05/10] arm_ffa: introduce armffa command

2023-07-03 Thread Ilias Apalodimas
On Mon, 3 Jul 2023 at 12:55, Abdellatif El Khlifi wrote: > > Hi Ilias, > > On Tue, Jun 20, 2023 at 05:25:51PM +0300, Ilias Apalodimas wrote: > > [...] > > > +int do_ffa_ping(struct cmd_tbl *cmdtp, int flag, int argc, char *const > > > argv[]) > > > +{ > > > + struct ffa_send_direct_data msg

Re: [PATCH v13 05/10] arm_ffa: introduce armffa command

2023-07-03 Thread Abdellatif El Khlifi
Hi Ilias, On Tue, Jun 20, 2023 at 05:25:51PM +0300, Ilias Apalodimas wrote: > [...] > > +int do_ffa_ping(struct cmd_tbl *cmdtp, int flag, int argc, char *const > > argv[]) > > +{ > > + struct ffa_send_direct_data msg = { > > + .data0 = 0x, > > +

Re: [PATCH v13 05/10] arm_ffa: introduce armffa command

2023-06-20 Thread Ilias Apalodimas
[...] > > diff --git a/MAINTAINERS b/MAINTAINERS > index 43603522fd..0d960731cf 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -269,7 +269,9 @@ F: configs/cortina_presidio-asic-pnand_defconfig > ARM FF-A > M: Abdellatif El Khlifi > S: Maintained > +F: cmd/armffa.c > F: d

Re: [PATCH v13 05/10] arm_ffa: introduce armffa command

2023-06-20 Thread Simon Glass
On Fri, 16 Jun 2023 at 16:28, Abdellatif El Khlifi wrote: > > Provide armffa command showcasing the use of the U-Boot FF-A support > > armffa is a command showcasing how to invoke FF-A operations. > This provides a guidance to the client developers on how to > call the FF-A bus interfaces. The com