linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: Cristian Marussi <cristian.marussi@arm.com>
To: Sudeep Holla <sudeep.holla@arm.com>, arnd@arndb.de
Cc: Olof Johansson <olof@lixom.net>, SoC Team <soc@kernel.org>,
	ARM SoC Team <arm@kernel.org>,
	ALKML <linux-arm-kernel@lists.infradead.org>,
	Kevin Hilman <khilman@kernel.org>
Subject: Re: [GIT PULL] firmware: arm_scmi: updates for v5.9
Date: Tue, 7 Jul 2020 09:33:24 +0100	[thread overview]
Message-ID: <20200707083300.GA29665@e119603-lin.cambridge.arm.com> (raw)
In-Reply-To: <20200707080410.GC10953@bogus>

Hi

On Tue, Jul 07, 2020 at 09:04:10AM +0100, Sudeep Holla wrote:
> Hi Arnd,
> 
> On Mon, Jul 06, 2020 at 09:23:46PM +0200, Arnd Bergmann wrote:
> > On Mon, Jul 6, 2020 at 6:53 PM Sudeep Holla <sudeep.holla@arm.com> wrote:
> > >
> > > The following changes since commit b3a9e3b9622ae10064826dccb4f7a52bd88c7407:
> > >
> > >   Linux 5.8-rc1 (2020-06-14 12:45:04 -0700)
> > >
> > > are available in the Git repository at:
> > >
> > >   git://git.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux.git tags/scmi-updates-5.9
> > >
> > > for you to fetch changes up to 585dfab3fb80e67b3a54790b3d5ef2991feb3950:
> > >
> > >   firmware: arm_scmi: Add base notifications support (2020-07-01 17:07:26 +0100)
> > >
> > > ----------------------------------------------------------------
> > > ARM SCMI/SCPI updates for v5.9
> > >
> > > The main addition for this time is the support for platform notifications.
> > > SCMI protocol specification allows the platform to signal events to the
> > > interested agents via notification messages. We are adding support for
> > > the dispatch and delivery of such notifications to the interested users
> > > inside the kernel.
> > >
> > > Other than that, there are minor changes like checking and using the
> > > fast_switch capability quering the firmware instead of doing it
> > > unconditionally(using polling mode transfer), cosmetic trace update and
> > > use of HAVE_ARM_SMCCC_DISCOVERY instead of ARM_PSCI_FW.
> >
> > I haven't pulled this yet, as I noticed one data structure definition that
> > seems very odd:
> >
> > struct scmi_event_header {
> >         u64     timestamp;
> >         u8      evt_id;
> >         size_t  payld_sz;
> >         u8      payld[];
> > } __packed;
> >
> > This is an odd mix of fixed-length fields (u64) and variable length
> > fields (size_t is different on 32-bit machines), out of which at least
> > one is misaligned because of the __packed attribute.
> >
> 
> Agreed, my mistake. I did mention to get rid of __packed in earlier version
> and completely missed to observe in later versions.
> 

This structure is used only internally to the SCMI Notifications machinery to
describe and push the events from the RX ISR to the deferred worked through the
kfifos, so the size_t seemed a good fit given it represents a length and the struct
is just an internal helper.
The reason for the unneeded __packed was because it seemed odd to me to push
around padding through the internal fifos, but it is not needed and it would
hurt perfomance indeed due to the forced misalignment: I'll drop it.

> > There are others that are just slightly odd:
> >
> > struct scmi_reset_issued_report {
> >        u64 timestamp;
> >        u32 agent_id;
> >        u32 domain_id;
> >        u32 reset_state;
> >       /* four bytes padding */
> > };
> >
> > struct scmi_perf_level_report {
> >        u64 timestamp;
> >        u32 agent_id;
> >        u32 domain_id;
> >        u32 performance_level;
> >       /* four bytes padding */
> > };
> >
> > struct scmi_base_error_report {
> >        u64 timestamp;
> >        u32 agent_id;
> >        bool fatal;
> >        /* 1 byte padding */
> >        u16 cmd_count;
> >        u64 reports[0];
> > };
> >
> > as this includes four implied padding bytes at the end. I could not figure
> > out exactly what the guarantees for interface stability on either of
> > them are, but if these get passed between the kernel and some other
> > code (firmware or user space), or might be in the future, then I'd suggest
> > redefining them in a way that avoids those oddities.
> >
> 
> These structures are not shared across kernel and userspace/firmware. It
> is entirely constructed by kernel for other users within kernel.
> 
> Cristian, correct me if I am wrong ? Or add more info/clarity if it
> helps the discussion here.

Correct, these structs are just common per-event descriptors built by the
notifications core while dispatching events and passed to the interested users
(SCMI drivers) as an argument to their notifier_block registered callback to
provide specific info about the received event.

Not sure though, Arnd, if you added the padding comments above just to
highlight the possible issue here or if you want them added ?

By the way there's also a residual zero-lenght array definition in base report,
I'll remove that too.

> 
> > Once this has been clarified, please just add any further patches
> > (if needed) on top of the existing branch and send a new pull request.
> >
> 
> Thanks
> 

Thanks

Cristian

> --
> Regards,
> Sudeep

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

  reply	other threads:[~2020-07-07  8:35 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-06 16:53 [GIT PULL] firmware: arm_scmi: updates for v5.9 Sudeep Holla
2020-07-06 19:23 ` Arnd Bergmann
2020-07-07  8:04   ` Sudeep Holla
2020-07-07  8:33     ` Cristian Marussi [this message]
2020-07-07  9:37       ` Arnd Bergmann
2020-07-07 15:12         ` Cristian Marussi
2020-07-08 13:41           ` Cristian Marussi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200707083300.GA29665@e119603-lin.cambridge.arm.com \
    --to=cristian.marussi@arm.com \
    --cc=arm@kernel.org \
    --cc=arnd@arndb.de \
    --cc=khilman@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=olof@lixom.net \
    --cc=soc@kernel.org \
    --cc=sudeep.holla@arm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).