[PATCH] modules/firmware: add a new option to denote a firmware group to choose one.

Lucas De Marchi lucas.demarchi at intel.com
Mon Apr 24 17:01:13 UTC 2023


On Mon, Apr 24, 2023 at 03:44:18PM +1000, Dave Airlie wrote:
>On Fri, 21 Apr 2023 at 05:09, Lucas De Marchi <lucas.demarchi at intel.com> wrote:
>>
>> On Wed, Apr 19, 2023 at 02:36:52PM +1000, Dave Airlie wrote:
>> >From: Dave Airlie <airlied at redhat.com>
>> >
>> >This adds a tag that will go into the module info, only one firmware from
>> >the group given needs to be available for this driver to work. This allows
>> >dracut to avoid adding in firmware that aren't needed.
>> >
>> >This just brackets a module list in the modinfo, the modules in the list
>> >will get entries in reversed order so the last module in the list is the
>> >preferred one.
>> >
>> >The corresponding dracut code it at:
>> >https://github.com/dracutdevs/dracut/pull/2309
>>
>> it would be good to have the example usage in the commit message here so
>> it can be easily checked as reference for other drivers.
>
>Good point.
>
>>
>> I don't think we ever had any ordering in modinfo being relevant for
>> other things. Considering the use case and that we could also use a
>> similar thing for i915 / xe modules wrt to the major version,
>> couldn't we do something like below?
>>
>>         MODULE_FIRMWARE_GROUP("nvidia/ga106/gsp/gsp");
>>         MODULE_FIRMWARE("nvidia/ga106/gsp/gsp-5258902.bin");
>>         MODULE_FIRMWARE("nvidia/ga106/gsp/gsp-5303002.bin");
>>
>> so the group is created by startswith() rather than by the order the
>> modinfo appears in the elf section. In i915 we'd have:
>
>The way userspace parses these is reverse order, and it doesn't see

the main issue I have with it is that it relies on a order that is
implicit rather than intended. The order comes from how the .modinfo ELF
section is assembled together... so the fact that your call to
kmod_module_get_info() returns a list with the keys in the reverse order
of the MODULE_FIRMWARE() definitions, is basically because the compiler
toolchain did it did that way.

It's worse when those sections come from different compilation units as
the order then is not predictable and can easily break with changes to
the build infra if the files are linked in different order.

I think the grouping thing here would only be supported with firmware
defined on the same compilation unit, but it's something to keep in mind
and document.

>the GROUP until after the FIRMWARE, so this can't work, as it already
>will have included all the ones below, hence why I bracketed top and
>bottom with a group.

well... that is something that can be adapted easily by using a 2 pass
approach, filtering out the list based on the groups.

I agree that yours is simpler though.  If we can rely on the
order produced by the compiler and we document the expectations of
MODULE_FIRMWARE_GROUP_ONLY_ONE, then I believe we can stay with the
simpler approach.

Luis, any thoughts here?

thanks
Lucas De Marchi

>
>>
>> MODULE_FIRMWARE_GROUP("i915/tgl_guc")
>>
>> There is still an order the kernel would probably like: latest version.
>> But then it's an order only among things with the same key.
>
>Dave.


More information about the dri-devel mailing list