* [PATCH] firmware_loader: Add /lib/firmware/vendor paths for Apple ARM platforms
@ 2026-07-30 0:42 Neal Gompa
2026-07-30 6:01 ` Greg Kroah-Hartman
0 siblings, 1 reply; 4+ messages in thread
From: Neal Gompa @ 2026-07-30 0:42 UTC (permalink / raw)
To: Danilo Krummrich, Russ Weight, Luis Chamberlain
Cc: asahi, driver-core, linux-kernel, linux-arm-kernel, linux-doc,
Sven Peter, Janne Grunau, Jonathan Corbet, Shuah Khan,
Rafael J. Wysocki, Greg Kroah-Hartman, Neal Gompa
On Apple ARM machines (branded Apple Silicon Macs), there is
non-redistributable firmware provided in macOS that is required
for Linux to leverage the hardware to run properly.
The firmware covers Wi-Fi+BT support, USB, hardware ISP, the touchbar
touchscreen, and the trackpad.
In order to ensure this firmware can be installed without messing
with firmware provided by linux-firmware and other packages that
put things in the tree, the empty "vendor" subdirectory was created
to serve this purpose. This directory is used by the asahi dracut
module as part of the Asahi Linux installation process to transfer
firmware from macOS to the newly installed Linux system.
This is based on the patch originally written by Hector Martin
for Asahi Linux.
Link: https://asahilinux.org/docs/platform/introduction/
Signed-off-by: Neal Gompa <neal@gompa.dev>
---
Documentation/driver-api/firmware/fw_search_path.rst | 2 ++
drivers/base/firmware_loader/main.c | 2 ++
2 files changed, 4 insertions(+)
diff --git a/Documentation/driver-api/firmware/fw_search_path.rst b/Documentation/driver-api/firmware/fw_search_path.rst
index d7cb1e8f0076..ddd945a47fed 100644
--- a/Documentation/driver-api/firmware/fw_search_path.rst
+++ b/Documentation/driver-api/firmware/fw_search_path.rst
@@ -6,6 +6,8 @@ The following search paths are used to look for firmware on your
root filesystem.
* fw_path_para - module parameter - default is empty so this is ignored
+* /lib/firmware/vendor/UTS_RELEASE/
+* /lib/firmware/vendor/
* /lib/firmware/updates/UTS_RELEASE/
* /lib/firmware/updates/
* /lib/firmware/UTS_RELEASE/
diff --git a/drivers/base/firmware_loader/main.c b/drivers/base/firmware_loader/main.c
index 24213a0ea831..1acc5842fb24 100644
--- a/drivers/base/firmware_loader/main.c
+++ b/drivers/base/firmware_loader/main.c
@@ -471,6 +471,8 @@ static int fw_decompress_xz(struct device *dev, struct fw_priv *fw_priv,
static char fw_path_para[256];
static const char * const fw_path[] = {
fw_path_para,
+ "/lib/firmware/vendor/" UTS_RELEASE,
+ "/lib/firmware/vendor",
"/lib/firmware/updates/" UTS_RELEASE,
"/lib/firmware/updates",
"/lib/firmware/" UTS_RELEASE,
--
2.55.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] firmware_loader: Add /lib/firmware/vendor paths for Apple ARM platforms
2026-07-30 0:42 [PATCH] firmware_loader: Add /lib/firmware/vendor paths for Apple ARM platforms Neal Gompa
@ 2026-07-30 6:01 ` Greg Kroah-Hartman
2026-07-30 14:55 ` Neal Gompa
0 siblings, 1 reply; 4+ messages in thread
From: Greg Kroah-Hartman @ 2026-07-30 6:01 UTC (permalink / raw)
To: Neal Gompa
Cc: Danilo Krummrich, Russ Weight, Luis Chamberlain, asahi,
driver-core, linux-kernel, linux-arm-kernel, linux-doc,
Sven Peter, Janne Grunau, Jonathan Corbet, Shuah Khan,
Rafael J. Wysocki
On Wed, Jul 29, 2026 at 08:42:58PM -0400, Neal Gompa wrote:
> On Apple ARM machines (branded Apple Silicon Macs), there is
> non-redistributable firmware provided in macOS that is required
> for Linux to leverage the hardware to run properly.
>
> The firmware covers Wi-Fi+BT support, USB, hardware ISP, the touchbar
> touchscreen, and the trackpad.
>
> In order to ensure this firmware can be installed without messing
> with firmware provided by linux-firmware and other packages that
> put things in the tree, the empty "vendor" subdirectory was created
> to serve this purpose. This directory is used by the asahi dracut
> module as part of the Asahi Linux installation process to transfer
> firmware from macOS to the newly installed Linux system.
Why is this needed when there is the ability for userspace to add their
own firmware search path to the list today?
We aren't going to keep adding random paths here, please use the option
that is designed specifically for this:
> * fw_path_para - module parameter - default is empty so this is ignored
Right there.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] firmware_loader: Add /lib/firmware/vendor paths for Apple ARM platforms
2026-07-30 6:01 ` Greg Kroah-Hartman
@ 2026-07-30 14:55 ` Neal Gompa
2026-07-30 15:05 ` Greg Kroah-Hartman
0 siblings, 1 reply; 4+ messages in thread
From: Neal Gompa @ 2026-07-30 14:55 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: Danilo Krummrich, Russ Weight, Luis Chamberlain, asahi,
driver-core, linux-kernel, linux-arm-kernel, linux-doc,
Sven Peter, Janne Grunau, Jonathan Corbet, Shuah Khan,
Rafael J. Wysocki
On Thu, Jul 30, 2026 at 2:01 AM Greg Kroah-Hartman
<gregkh@linuxfoundation.org> wrote:
>
> On Wed, Jul 29, 2026 at 08:42:58PM -0400, Neal Gompa wrote:
> > On Apple ARM machines (branded Apple Silicon Macs), there is
> > non-redistributable firmware provided in macOS that is required
> > for Linux to leverage the hardware to run properly.
> >
> > The firmware covers Wi-Fi+BT support, USB, hardware ISP, the touchbar
> > touchscreen, and the trackpad.
> >
> > In order to ensure this firmware can be installed without messing
> > with firmware provided by linux-firmware and other packages that
> > put things in the tree, the empty "vendor" subdirectory was created
> > to serve this purpose. This directory is used by the asahi dracut
> > module as part of the Asahi Linux installation process to transfer
> > firmware from macOS to the newly installed Linux system.
>
> Why is this needed when there is the ability for userspace to add their
> own firmware search path to the list today?
>
> We aren't going to keep adding random paths here, please use the option
> that is designed specifically for this:
>
> > * fw_path_para - module parameter - default is empty so this is ignored
>
> Right there.
I was not familiar with this feature, and I had inherited the patch as
part of our cleanup effort to upstream the Asahi work. Sorry about
that!
Based on the documentation, this is the patch I've created for our
dracut module: https://github.com/AsahiLinux/asahi-scripts/pull/72
Is this how it is supposed to be used?
--
真実はいつも一つ!/ Always, there's only one truth!
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] firmware_loader: Add /lib/firmware/vendor paths for Apple ARM platforms
2026-07-30 14:55 ` Neal Gompa
@ 2026-07-30 15:05 ` Greg Kroah-Hartman
0 siblings, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2026-07-30 15:05 UTC (permalink / raw)
To: Neal Gompa
Cc: Danilo Krummrich, Russ Weight, Luis Chamberlain, asahi,
driver-core, linux-kernel, linux-arm-kernel, linux-doc,
Sven Peter, Janne Grunau, Jonathan Corbet, Shuah Khan,
Rafael J. Wysocki
On Thu, Jul 30, 2026 at 10:55:00AM -0400, Neal Gompa wrote:
> On Thu, Jul 30, 2026 at 2:01 AM Greg Kroah-Hartman
> <gregkh@linuxfoundation.org> wrote:
> >
> > On Wed, Jul 29, 2026 at 08:42:58PM -0400, Neal Gompa wrote:
> > > On Apple ARM machines (branded Apple Silicon Macs), there is
> > > non-redistributable firmware provided in macOS that is required
> > > for Linux to leverage the hardware to run properly.
> > >
> > > The firmware covers Wi-Fi+BT support, USB, hardware ISP, the touchbar
> > > touchscreen, and the trackpad.
> > >
> > > In order to ensure this firmware can be installed without messing
> > > with firmware provided by linux-firmware and other packages that
> > > put things in the tree, the empty "vendor" subdirectory was created
> > > to serve this purpose. This directory is used by the asahi dracut
> > > module as part of the Asahi Linux installation process to transfer
> > > firmware from macOS to the newly installed Linux system.
> >
> > Why is this needed when there is the ability for userspace to add their
> > own firmware search path to the list today?
> >
> > We aren't going to keep adding random paths here, please use the option
> > that is designed specifically for this:
> >
> > > * fw_path_para - module parameter - default is empty so this is ignored
> >
> > Right there.
>
> I was not familiar with this feature, and I had inherited the patch as
> part of our cleanup effort to upstream the Asahi work. Sorry about
> that!
>
> Based on the documentation, this is the patch I've created for our
> dracut module: https://github.com/AsahiLinux/asahi-scripts/pull/72
>
> Is this how it is supposed to be used?
If it works, yes :)
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-07-30 16:21 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-30 0:42 [PATCH] firmware_loader: Add /lib/firmware/vendor paths for Apple ARM platforms Neal Gompa
2026-07-30 6:01 ` Greg Kroah-Hartman
2026-07-30 14:55 ` Neal Gompa
2026-07-30 15:05 ` Greg Kroah-Hartman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox