mbox series

[net-next,v4,0/4] net: phy: generic polarity + LED support for qca808x

Message ID 20231215212244.1658-1-ansuelsmth@gmail.com
Headers show
Series net: phy: generic polarity + LED support for qca808x | expand

Message

Christian Marangi Dec. 15, 2023, 9:22 p.m. UTC
This small series add LEDs support for qca808x.

Qca808x apply on PHY reset a strange polarity settings and require
some tweak to apply a more common configuration found on devices.
On adding support for it, it was pointed out that a similar
feature is also being implemented for a marvell PHY where
LED polarity is set per LED (and not global) and also have
a special mode where the LED is tristated.

The first 2 patch are to generalize this as we expect more PHY
in the future to have a similar configuration.

The implementation is extensible to support additional special
mode in the future with minimal changes and don't create regression
on already implemented PHY drivers.

(changelog present in single patch)

Christian Marangi (4):
  dt-bindings: net: phy: Document new LEDs polarity property
  net: phy: add support for PHY LEDs polarity modes
  dt-bindings: net: Document QCA808x PHYs
  net: phy: at803x: add LED support for qca808x

 .../devicetree/bindings/net/ethernet-phy.yaml |  11 +
 .../devicetree/bindings/net/qca,qca808x.yaml  |  54 +++
 drivers/net/phy/at803x.c                      | 308 ++++++++++++++++++
 drivers/net/phy/phy_device.c                  |  45 +++
 include/linux/phy.h                           |  25 ++
 5 files changed, 443 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/net/qca,qca808x.yaml