[PATCH net-next v7 0/2] net: phy: add X-Powers AC200/AC300 EPHY support
From: James Hilliard <hidden>
Date: 2026-08-11 23:28:43
Also in:
linux-devicetree, linux-sunxi, lkml
This submission contains only the networking binding and PHY driver and is intended for net-next. The AC200 I2C register provider was submitted separately for the MFD tree: https://patch.msgid.link/20260811-submit-ac200-mfd-v7-0-8b06f552a4d7@gmail.com Neither series has a compile-time dependency or required merge order. Their shared design point is the DT representation: the MDIO PHY-package node references the separately described AC200 I2C node for access to package-control registers. The AC200 and AC300 contain compatible Fast Ethernet link PHYs which report the same Clause 22 identifier and use the same link-side register layout. The link endpoint is inaccessible until package-specific control registers have powered and configured it. Both variants are modeled as standard Ethernet PHY packages with one forced-ID link-PHY child. The package reg value is the link address. AC300's control range is a fixed package-relative offset of 16 and is accessed with the PHY package helpers. AC200 reaches its control registers through a phandle to the companion IC's I2C register interface. For AC200, the driver resolves the referenced I2C device, establishes a managed device link, and takes the supplier device lock without waiting. It requires the provider to be fully bound before retrieving the regmap attached to that device. The link then keeps the provider bound until the PHY consumer has unbound. This uses the generic device and regmap interfaces and supports multiple AC200 instances without syscon or a private cross-subsystem API. Fixed hardware uses an AC200- or AC300-specific package compatible. Systems which can contain either package use the ACx00 package compatible and one packed SID configuration field. Bits 3 through 0 carry the analog calibration, bit 8 selects AC300, and bit 9 selects its low-calibration tuning. The driver chooses the backend before acquiring any backend-specific resource. One xpowers-acx00 module binds the link child, joins the parent package and runs the selected backend. It manages the package supply, MII or RMII mode, vendor analog initialization and package state across suspend and resume. The common link implementation preserves automatic MDI/MDI-X and standard MAC-managed EEE advertisement while disabling only the vendor PHY-autonomous Intelligent EEE mode. The two patches add the AC200/AC300 PHY-package binding and combined PHY driver. Board Device Trees and optional PHY features remain outside this initial series. The AC200 portions build on earlier work by Jernej Skrabec and Andre Przywara: https://github.com/jernejsk/linux-1/commits/ac200-v4 Public AC200 and AC300 documentation is linked from: https://linux-sunxi.org/AC200 Validation completed for v7: - dt_binding_check for the PHY-package schema; - an x86_64 allmodconfig composite-object build with W=1; - a built-in AC300-only configuration with I2C and MFD_SYSCON disabled, built with W=1; and - strict checkpatch checks with no errors and only the generic new-file MAINTAINERS prompts. The final AC200 v7 path was hardware-tested on an H616 board through a full Buildroot kernel, FIT, rootfs and SWU build. The provider reported revision 0x101 in package 1, the PHY resolved its regmap after establishing the supplier device link, and RMII negotiated a 100 Mbps full-duplex link. Eight MiB passed in each direction and 100 consecutive pings completed without loss. An administrative down/up cycle changed the package regulator consumer count from one to zero and back to one, then restored the same link mode. Unbinding the AC200 I2C supplier while the interface was down first unbound the PHY consumer. Rebinding the supplier and PHY recreated the device link, restored the regulator and renegotiated 100 Mbps full duplex; another eight MiB then passed in each direction. The AC300 results carry forward from v5. On the connected H616 board the driver selected AC300 without accessing the AC200 I2C path, negotiated a 100 Mbps full-duplex RMII link, passed eight MiB in each direction and restored the regulator, package state and link across an administrative down/up cycle. Assisted-by: Codex:gpt-5.6-sol Signed-off-by: James Hilliard <redacted> --- Changes in v7: - link to the separately submitted MFD v7 series: https://patch.msgid.link/20260811-submit-ac200-mfd-v7-0-8b06f552a4d7@gmail.com - replace syscon publication and lookup with direct AC200 device/regmap lookup - require the referenced AC200 provider to be fully bound under its device lock - keep teardown ordered with the managed device link - rebase onto current net-next - Link to v6: https://patch.msgid.link/20260811-submit-acx00-of-dynamic-v1-v6-0-0229b99a32f6@gmail.com Changes in v6: - split the networking work from the independently mergeable MFD series - add the posting link for the separately submitted MFD series - remove the redundant explicit schema selector - describe the AC200 phandle in hardware terms and state its purpose - simplify the clock description and keep only the needed NVMEM dependency - reduce the binding examples to one - rebase onto current net-next - Link to v5: https://patch.msgid.link/20260809-submit-acx00-of-dynamic-v1-v5-0-bfa1f8518b28@gmail.com To: Andrew Lunn <andrew+netdev@lunn.ch> To: "David S. Miller" <davem@davemloft.net> To: Eric Dumazet <edumazet@google.com> To: Jakub Kicinski <kuba@kernel.org> To: Paolo Abeni <pabeni@redhat.com> To: Rob Herring <robh@kernel.org> To: Krzysztof Kozlowski <krzk+dt@kernel.org> To: Conor Dooley <conor+dt@kernel.org> To: James Hilliard <redacted> To: Andrew Lunn <andrew@lunn.ch> To: Heiner Kallweit <hkallweit1@gmail.com> To: Russell King <linux@armlinux.org.uk> Cc: netdev@vger.kernel.org Cc: devicetree@vger.kernel.org Cc: linux-kernel@vger.kernel.org --- James Hilliard (2): dt-bindings: net: x-powers: add AC200/AC300 EPHY packages net: phy: add X-Powers AC200/AC300 EPHY driver .../bindings/net/x-powers,acx00-ephy-package.yaml | 154 ++++++ drivers/net/phy/Kconfig | 11 + drivers/net/phy/Makefile | 1 + drivers/net/phy/xpowers/Makefile | 3 + drivers/net/phy/xpowers/ac200.c | 313 ++++++++++++ drivers/net/phy/xpowers/ac300.c | 387 +++++++++++++++ drivers/net/phy/xpowers/acx00.c | 536 +++++++++++++++++++++ drivers/net/phy/xpowers/acx00.h | 28 ++ 8 files changed, 1433 insertions(+) --- base-commit: 31397cf1819210bd63fa3d2c7d8c24f7c8667d99 change-id: 20260802-submit-acx00-of-dynamic-v1-94a0dc15f282 Best regards, -- James Hilliard [off-list ref]