• Arınç ÜNAL's avatar
    net: dsa: remove OF-based MDIO bus registration from DSA core · ae94dc25
    Arınç ÜNAL authored
    The code block under the "!ds->user_mii_bus && ds->ops->phy_read" check
    under dsa_switch_setup() populates ds->user_mii_bus. The use of
    ds->user_mii_bus is inappropriate when the MDIO bus of the switch is
    described on the device tree [1].
    
    For this reason, use this code block only for switches [with MDIO bus]
    probed on platform_data, and OF which the switch MDIO bus isn't described
    on the device tree. Therefore, remove OF-based MDIO bus registration as
    it's useless for these cases.
    
    These subdrivers which control switches [with MDIO bus] probed on OF, will
    lose the ability to register the MDIO bus OF-based:
    
    drivers/net/dsa/b53/b53_common.c
    drivers/net/dsa/lan9303-core.c
    drivers/net/dsa/vitesse-vsc73xx-core.c
    
    These subdrivers let the DSA core driver register the bus:
    - ds->ops->phy_read() and ds->ops->phy_write() are present.
    - ds->user_mii_bus is not populated.
    
    The commit fe7324b9 ("net: dsa: OF-ware slave_mii_bus") which brought
    OF-based MDIO bus registration on the DSA core driver is reasonably recent
    and, in this time frame, there have been no device trees in the Linux
    repository that started describing the MDIO bus, or dt-bindings defining
    the MDIO bus for the switches these subdrivers control. So I don't expect
    any devices to be affected.
    
    The logic we encourage is that all subdrivers should register the switch
    MDIO bus on their own [2]. And, for subdrivers which control switches [with
    MDIO bus] probed on OF, this logic must be followed to support all cases
    properly:
    
    No switch MDIO bus defined: Populate ds->user_mii_bus, register the MDIO
    bus, set the interrupts for PHYs if "interrupt-controller" is defined at
    the switch node. This case should only be covered for the switches which
    their dt-bindings documentation didn't document the MDIO bus from the
    start. This is to keep supporting the device trees that do not describe the
    MDIO bus on the device tree but the MDIO bus is being used nonetheless.
    
    Switch MDIO bus defined: Don't populate ds->user_mii_bus, register the MDIO
    bus, set the interrupts for PHYs if ["interrupt-controller" is defined at
    the switch node and "interrupts" is defined at the PHY nodes under the
    switch MDIO bus node].
    
    Switch MDIO bus defined but explicitly disabled: If the device tree says
    status = "disabled" for the MDIO bus, we shouldn't need an MDIO bus at all.
    Instead, just exit as early as possible and do not call any MDIO API.
    
    After all subdrivers that control switches with MDIO buses are made to
    register the MDIO buses on their own, we will be able to get rid of
    dsa_switch_ops :: phy_read() and :: phy_write(), and the code block for
    registering the MDIO bus on the DSA core driver.
    
    Link: https://lore.kernel.org/netdev/20231213120656.x46fyad6ls7sqyzv@skbuf/ [1]
    Link: https://lore.kernel.org/netdev/20240103184459.dcbh57wdnlox6w7d@skbuf/ [2]
    Suggested-by: default avatarLuiz Angelo Daros de Luca <luizluca@gmail.com>
    Acked-by: default avatarLuiz Angelo Daros de Luca <luizluca@gmail.com>
    Signed-off-by: default avatarArınç ÜNAL <arinc.unal@arinc9.com>
    Reviewed-by: default avatarVladimir Oltean <olteanv@gmail.com>
    Link: https://lore.kernel.org/r/20240213-for-netnext-dsa-mdio-bus-v2-1-0ff6f4823a9e@arinc9.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
    ae94dc25
dsa.c 37.5 KB