1. 12 Feb, 2024 36 commits
  2. 10 Feb, 2024 4 commits
    • David S. Miller's avatar
      Merge branch 'phy-package' · 970cb1ce
      David S. Miller authored
      Christian Marangi says:
      
      ====================
      net: phy: Introduce PHY Package concept
      
      Idea of this big series is to introduce the concept of PHY package in DT
      and give PHY drivers a way to derive the base address from DT.
      
      The concept of PHY package is nothing new and is already a thing in the
      kernel with the API phy_package_join/leave/read/write.
      
      What is currently lacking is describing this in DT and better reference
      a base address to calculate offset from.
      
      In the scenario of a PHY package where multiple address are used and
      there isn't a way to get the base address of the PHY package from some
      regs, getting the information from DT is the only way.
      
      A possible example to this problem is this:
      
              ethernet-phy-package@0 {
                  compatible = "qcom,qca8075-package";
                  #address-cells = <1>;
                  #size-cells = <0>;
      
                  reg = <0>;
                  qcom,package-mode = "qsgmii";
      
                  ethernet-phy@1 {
                    reg = <1>;
                  };
      
                  phy4: ethernet-phy@4 {
                    reg = <4>;
                  };
              };
      
      The mdio parse functions are changed to address for this additional
      special node, the function is changed to simply detect this node and
      search also in this. (we match the node name to be "ethernet-phy-package")
      
      PHY driver can then use introduced helper of_phy_package_join to join the
      PHY to the PHY package and derive the base address from DT.
      
      Changes v7:
      - Rebase on top of net-next
      - Add Reviewed-by tag for DT patch
      - Change tx-driver-strength to tx-drive-strength
      - Drop driver reference in DT
      Changes v6:
      - Back to absolute PHY implementation
      - Correctly drop refcount for node on error condition and on PHY leave
      - Drop DT include patch in favor for 3 boolean vendor property
      - Fix Documentation problem for compatible and missing type and
        description
      - Drop redundand gpio-controller dependency and description
      - Skip scanphy with invalid PHY Package node and make reg mandatory
      - Rework fiber read status to use more generic function
      - Split qca808x LED generalization patch to permit easier review
      - Correctly return -EINVAL with wrong data passed to vendor property
      - Drop removing LED ops for qca807x PHY driver with gpio-controller
      Changes v5:
      - Rebase on top of net-next
      - Change implementation to base addr + offset in subnode
      - Adapt to all the changes and cleanup done to at803x
      Changes v4:
      - Rework DT implementation
      - Drop of autojoin support and rework to simple helper
      - Rework PHY driver to the new implementation
      - Add compatible for qca807x package
      - Further cleanup patches
      Changes v3:
      - Add back compatible implementation
      - Detach patch that can be handled separately (phy_package_mmd,
        phy_package extended)
      - Rework code to new simplified implementation with base addr + offset
      - Improve documentation with additional info and description
      Changes v2:
      - Drop compatible "ethernet-phy-package", use node name prefix matching
        instead
      - Improve DT example
      - Add reg for ethernet-phy-package
      - Drop phy-mode for ethernet-phy-package
      - Drop patch for generalization of phy-mode
      - Drop global-phy property (handle internally to the PHY driver)
      - Rework OF phy package code and PHY driver to handle base address
      - Fix missing of_node_put
      - Add some missing docs for added variables in struct
      - Move some define from dt-bindings include to PHY driver
      - Handle qsgmii validation in PHY driver
      - Fix wrong include for gpiolib
      - Drop reduntant version.h include
      ====================
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      970cb1ce
    • Christian Marangi's avatar
      net: phy: qca807x: add support for configurable LED · f508a226
      Christian Marangi authored
      QCA8072/5 have up to 2 LEDs attached for PHY.
      
      LEDs can be configured to be ON/hw blink or be set to HW control.
      
      Hw blink mode is set to blink at 4Hz or 250ms.
      
      PHY can support both copper (TP) or fiber (FIBRE) kind and supports
      different HW control modes based on the port type.
      
      HW control modes supported for netdev trigger for copper ports are:
      - LINK_10
      - LINK_100
      - LINK_1000
      - TX
      - RX
      - FULL_DUPLEX
      - HALF_DUPLEX
      
      HW control modes supported for netdev trigger for fiber ports are:
      - LINK_100
      - LINK_1000
      - TX
      - RX
      - FULL_DUPLEX
      - HALF_DUPLEX
      
      LED support conflicts with GPIO controller feature and must be disabled
      if gpio-controller is used for the PHY.
      Signed-off-by: default avatarChristian Marangi <ansuelsmth@gmail.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      f508a226
    • Christian Marangi's avatar
      net: phy: qcom: generalize some qca808x LED functions · 47b930d0
      Christian Marangi authored
      Generalize some qca808x LED functions in preparation for qca807x LED
      support.
      
      The LED implementation of qca808x and qca807x is the same but qca807x
      supports also Fiber port and have different hw control bits for Fiber
      port. To limit code duplication introduce micro functions that takes reg
      instead of LED index to tweak all the supported LED modes.
      Signed-off-by: default avatarChristian Marangi <ansuelsmth@gmail.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      47b930d0
    • Christian Marangi's avatar
      net: phy: qcom: move common qca808x LED define to shared header · ee9d9807
      Christian Marangi authored
      The LED implementation of qca808x and qca807x is the same but qca807x
      supports also Fiber port and have different hw control bits for Fiber
      port.
      
      In preparation for qca807x introduction, move all the common define to
      shared header.
      Signed-off-by: default avatarChristian Marangi <ansuelsmth@gmail.com>
      Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      ee9d9807