• Vladimir Oltean's avatar
    net: dsa: fall back to default tagger if we can't load the one from DT · a2c65a9d
    Vladimir Oltean authored
    DSA tagging protocol drivers can be changed at runtime through sysfs and
    at probe time through the device tree (support for the latter was added
    later).
    
    When changing through sysfs, it is assumed that the module for the new
    tagging protocol was already loaded into the kernel (in fact this is
    only a concern for Ocelot/Felix switches, where we have tag_ocelot.ko
    and tag_ocelot_8021q.ko; for every other switch, the default and
    alternative protocols are compiled within the same .ko, so there is
    nothing for the user to load).
    
    The kernel cannot currently call request_module(), because it has no way
    of constructing the modalias name of the tagging protocol driver
    ("dsa_tag-%d", where the number is one of DSA_TAG_PROTO_*_VALUE).
    The device tree only contains the string name of the tagging protocol
    ("ocelot-8021q"), and the only mapping between the string and the
    DSA_TAG_PROTO_OCELOT_8021Q_VALUE is present in tag_ocelot_8021q.ko.
    So this is a chicken-and-egg situation and dsa_core.ko has nothing based
    on which it can automatically request the insertion of the module.
    
    As a consequence, if CONFIG_NET_DSA_TAG_OCELOT_8021Q is built as module,
    the switch will forever defer probing.
    
    The long-term solution is to make DSA call request_module() somehow,
    but that probably needs some refactoring.
    
    What we can do to keep operating with existing device tree blobs is to
    cancel the attempt to change the tagging protocol with the one specified
    there, and to remain operating with the default one. Depending on the
    situation, the default protocol might still allow some functionality
    (in the case of ocelot, it does), and it's better to have that than to
    fail to probe.
    
    Fixes: deff7107 ("net: dsa: Allow default tag protocol to be overridden from DT")
    Link: https://lore.kernel.org/lkml/20221027113248.420216-1-michael@walle.cc/Reported-by: default avatarHeiko Thiery <heiko.thiery@gmail.com>
    Reported-by: default avatarMichael Walle <michael@walle.cc>
    Signed-off-by: default avatarVladimir Oltean <vladimir.oltean@nxp.com>
    Tested-by: default avatarMichael Walle <michael@walle.cc>
    Reviewed-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
    Link: https://lore.kernel.org/r/20221027145439.3086017-1-vladimir.oltean@nxp.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
    a2c65a9d
dsa2.c 40.3 KB