devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next v3 0/2] Add MxL Ethernet driver & devicetree binding
@ 2025-08-29 12:48 Jack Ping CHNG
  2025-08-29 12:48 ` [PATCH net-next v3 1/2] dt-bindings: net: mxl: Add MxL LGM Network Processor SoC Jack Ping CHNG
  2025-08-29 12:48 ` [PATCH net-next v3 2/2] net: maxlinear: Add support for MxL LGM SoC Jack Ping CHNG
  0 siblings, 2 replies; 14+ messages in thread
From: Jack Ping CHNG @ 2025-08-29 12:48 UTC (permalink / raw)
  To: netdev, devicetree
  Cc: davem, andrew+netdev, edumazet, kuba, pabeni, robh, krzk+dt,
	conor+dt, yzhu, sureshnagaraj, Jack Ping CHNG

Hello netdev maintainers,

This patch series adds support for the MaxLinear LGM SoC's Ethernet
controller, including:

Patch 1: Introduces the devicetree binding documentation for the MaxLinear
LGM Network Processor.
Patch 2: Adds build infrastructure and the main driver for the MaxLinear
LGM SoC Ethernet controller.

The driver supports multi-port operation and is integrated with standard
Linux network device driver framework. The devicetree binding documents
the required properties for the hardware description.

Changelog:
v2 -> v3:
  - Renamed compatible string and YAML filename to maxlinear.
  - Changed child nodes to ethernet-ports with port@N.
  - Added reg and mdio properties.
  - Added schema references for port and mdio.
  - Updated required properties and example.
  - Add resource management and better error handling
  - Improved device tree integration for multiple ports

v1 -> v2:
  - Moved devicetree bindings to the first patch in the series.
  - Verified bindings with 'make dt_binding_check DT_SCHEMA_FILES=mxl,lgm-eth.yaml'.
  - Reformatted commit messages to follow Linux kernel submission guidelines.
  - Removed redundant code and addressed all reviewer comments.

links:
v2: https://lore.kernel.org/netdev/20250826031044.563778-3-jchng@maxlinear.com/
v1: https://lore.kernel.org/netdev/20250822090809.1464232-1-jchng@maxlinear.com/

Jack Ping CHNG (2):
  dt-bindings: net: mxl: Add MxL LGM Network Processor SoC
  net: maxlinear: Add support for MxL LGM SoC

 .../bindings/net/maxlinear,lgm-eth.yaml       | 119 +++++++++++
 .../device_drivers/ethernet/index.rst         |   1 +
 .../device_drivers/ethernet/maxlinear/mxl.rst |  49 +++++
 MAINTAINERS                                   |   8 +
 drivers/net/ethernet/Kconfig                  |   1 +
 drivers/net/ethernet/Makefile                 |   1 +
 drivers/net/ethernet/maxlinear/Kconfig        |  15 ++
 drivers/net/ethernet/maxlinear/Makefile       |   6 +
 drivers/net/ethernet/maxlinear/mxl_eth.c      | 202 ++++++++++++++++++
 9 files changed, 402 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/net/maxlinear,lgm-eth.yaml
 create mode 100644 Documentation/networking/device_drivers/ethernet/maxlinear/mxl.rst
 create mode 100644 drivers/net/ethernet/maxlinear/Kconfig
 create mode 100644 drivers/net/ethernet/maxlinear/Makefile
 create mode 100644 drivers/net/ethernet/maxlinear/mxl_eth.c

-- 
2.34.1


^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2025-09-04 12:20 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-29 12:48 [PATCH net-next v3 0/2] Add MxL Ethernet driver & devicetree binding Jack Ping CHNG
2025-08-29 12:48 ` [PATCH net-next v3 1/2] dt-bindings: net: mxl: Add MxL LGM Network Processor SoC Jack Ping CHNG
2025-09-01  4:59   ` Krzysztof Kozlowski
2025-08-29 12:48 ` [PATCH net-next v3 2/2] net: maxlinear: Add support for MxL LGM SoC Jack Ping CHNG
2025-08-29 20:24   ` Andrew Lunn
2025-09-01  9:38     ` Jack Ping Chng
2025-09-01 13:11       ` Andrew Lunn
2025-09-02 10:39         ` Jack Ping Chng
2025-09-02 12:30           ` Andrew Lunn
2025-09-04  6:33             ` Jack Ping Chng
2025-09-04 12:20               ` Andrew Lunn
2025-08-29 20:29   ` Andrew Lunn
2025-09-01  5:01   ` Krzysztof Kozlowski
2025-09-02  8:46   ` Simon Horman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).