mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Michal Suchánek" <msuchanek@suse.de>
To: Andre Przywara <andre.przywara@arm.com>
Cc: Mark Rutland <mark.rutland@arm.com>,
	Lorenzo Pieralisi <lpieralisi@kernel.org>,
	Sudeep Holla <sudeep.holla@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	vsethi@nvidia.com, Salman Nabi <salman.nabi@arm.com>,
	Rob Herring <robh@kernel.org>,
	linux-kernel@vger.kernel.org, Varun Wadekar <vwadekar@nvidia.com>,
	Trilok Soni <trilokkumar.soni@oss.qualcomm.com>,
	devicetree@vger.kernel.org, Nirmoy Das <nirmoyd@nvidia.com>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v3 0/8] Arm Live Firmware Activation (LFA) support
Date: Tue, 14 Jul 2026 13:52:55 +0200	[thread overview]
Message-ID: <alYjFwi0dnld-wP3@kunlun.suse.cz> (raw)
In-Reply-To: <alUMGCJzVG6U3Ggm@kunlun.suse.cz>

On Mon, Jul 13, 2026 at 06:02:35PM +0200, Michal Suchánek wrote:
> On Mon, Jul 06, 2026 at 03:44:40PM +0200, Andre Przywara wrote:
> > Hi all,
> > 
> > this is version 3 of the Live Firmware Activation kernel support. The
> > device part of the code now relies on Aneesh's SMCCC bus patches[1],
> > which solves some problems rather nicely. I also added the formerly
> > missing sysfs ABI documentation. Based on v7.2-rc1, plus the first
> > two patches from Aneesh's series. More detailed changelog below.
> > ==============================
> > 
> > This series implements the kernel side support of the Arm Live
> > Firmware Activation (LFA) specification [2]. LFA enables the activation
> > of updated firmware components without requiring a system reboot,
> > reducing downtime and allowing quicker deployment of critical bug fixes
> > in environments such as data centers and hyperscale systems.
> > It requires explicit firmware support, both via an agent running in EL3
> > (for instance in TF-A, already merged), but also in the firmware
> > component to be activated. TF-RMM recently merged support for this.
> > 
> > Unlike the usual firmware update process (which may use tools like
> > fwupd), LFA focuses solely on the activation of an already updated
> > firmware component, called "pending activation" in LFA lingo. This works
> > by signalling the LFA agent (part of the EL3 runtime firmware) via an
> > SMC call, which then does the heavy lifting of the live update, in
> > cooperation with the to-be-updated firmware component.
> > 
> > Key features of the driver:
> > * Detects LFA support in system firmware (EL3).
> > * Lists all firmware components that support live activation, identified
> >   by their GUID.
> > * Exposes component attributes (e.g., activation capability, and
> >   activation pending) via sysfs under /sys/firmware/lfa/<GUID>/.
> > * Provides interfaces to:
> >   - Trigger activation of an updated firmware component.
> >   - Cancel an ongoing activation if required.
> > A more detailed list of features can be found in patch 2/8.
> > Based on v7.2-rc1.
> > 
> > This work is conceptually similar to Intel’s Platform Firmware Runtime
> > Update and telemetry (PFRUT) [3] and TDX module updates [4], but
> > targets Arm platforms. The driver has been used to successfully activate
> > a Realm Management Monitor (RMM) firmware image in a controlled test
> > environment. RMM is analogous to Intel’s TDX module.
> > 
> > There is effort on similar work from the OCP [5]. Future work may
> > include integration with utilities like fwupd to automatically select
> > the appropriate driver, based on platform architecture, for Live/Runtime
> > firmware updates.
> > 
> > Please have a look, test and comment!
> 
> Hello,
> 
> booting a kernel with v2 of this patchset applied the module does not
> get autoloaded. Loading it manually I get
> 
> [ 1972.957282] [   T5195] Arm LFA: Live Firmware Activation: detected v1.0
> [ 1972.958620] [   T5195] Arm LFA: registered LFA ACPI notification
> 
> Is this expected?
> 
> I would expect the driver to load automatically.
> 
> I do not see anything in the v3 changelog obviously addressing
> autoloading but changing to using a bus might affect that.
> 
> I will try to update to v3 later.

Hello,

updating to v3 of the patchset resolves the problem.

The driver is now autoloaded.

Thanks

Michal

      reply	other threads:[~2026-07-14 11:52 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-06 13:44 Andre Przywara
2026-07-06 13:44 ` [PATCH v3 1/8] dt-bindings: arm: Add Live Firmware Activation Andre Przywara
2026-07-16 20:51   ` Rob Herring (Arm)
2026-07-17  8:38   ` Sudeep Holla
2026-07-06 13:44 ` [PATCH v3 2/8] firmware: smccc: Add support for Live Firmware Activation (LFA) Andre Przywara
2026-07-10  9:30   ` Nirmoy Das
2026-07-17  9:03   ` Sudeep Holla
2026-07-06 13:44 ` [PATCH v3 3/8] firmware: smccc: lfa: Add timeout and trigger watchdog Andre Przywara
2026-07-10 10:08   ` Nirmoy Das
2026-07-06 13:44 ` [PATCH v3 4/8] firmware: smccc: lfa: Register ACPI notification Andre Przywara
2026-07-10 11:04   ` Nirmoy Das
2026-07-06 13:44 ` [PATCH v3 5/8] firmware: smccc: lfa: Add auto_activate sysfs file Andre Przywara
2026-07-10 14:07   ` Nirmoy Das
2026-07-06 13:44 ` [PATCH v3 6/8] firmware: smccc: lfa: Register DT interrupt Andre Przywara
2026-07-06 13:44 ` [PATCH v3 7/8] firmware: smccc: lfa: introduce SMC access lock Andre Przywara
2026-07-06 13:44 ` [PATCH v3 8/8] firmware: smccc: lfa: add sysfs ABI documentation Andre Przywara
2026-07-13 16:02 ` [PATCH v3 0/8] Arm Live Firmware Activation (LFA) support Michal Suchánek
2026-07-14 11:52   ` Michal Suchánek [this message]

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=alYjFwi0dnld-wP3@kunlun.suse.cz \
    --to=msuchanek@suse.de \
    --cc=andre.przywara@arm.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lpieralisi@kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=nirmoyd@nvidia.com \
    --cc=robh@kernel.org \
    --cc=salman.nabi@arm.com \
    --cc=sudeep.holla@kernel.org \
    --cc=trilokkumar.soni@oss.qualcomm.com \
    --cc=vsethi@nvidia.com \
    --cc=vwadekar@nvidia.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

Powered by JetHome