[PATCH net-next v8 0/2] net: phy: add X-Powers AC200/AC300 EPHY support
From: James Hilliard <hidden>
Date: 2026-08-13 21:54:20
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 before checking that the provider is fully bound and retrieving the regmap attached to that device. It waits for transient lock holders instead of treating lock contention as a missing dependency. 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 v8: - 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 v8 path was hardware-tested on an H616 board through a clean Buildroot kernel, FIT, rootfs and SWU build with source overrides disabled. The resulting SWU was installed on the board. 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 both before and after the rebind stress tests. 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. Five AC200 supplier unbind/rebind cycles each unbound the PHY consumer, recreated the device link and recovered the 100 Mbps full-duplex link and ping traffic. A separate 100-iteration test started each PHY bind while the AC200 supplier was still inside its 40 ms probe delay and holding the supplier device lock. Every PHY bind waited for the supplier, recovered with the correct PHY ID and device-link relationships, and the final link came up at 100 Mbps full duplex without new warnings or probe errors. 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 v8: - replace the AC200 supplier trylock/defer path with a blocking device lock - add Krzysztof's Reviewed-by tag to the PHY-package binding - rebase onto current net-next - Link to v7: https://patch.msgid.link/20260811-submit-acx00-of-dynamic-v1-v7-0-03f5b91775d5@gmail.com 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 | 308 ++++++++++++ drivers/net/phy/xpowers/ac300.c | 387 +++++++++++++++ drivers/net/phy/xpowers/acx00.c | 536 +++++++++++++++++++++ drivers/net/phy/xpowers/acx00.h | 28 ++ 8 files changed, 1428 insertions(+) --- base-commit: 3da8c3c8b8fa99505624b65ef590482f48e766b6 change-id: 20260802-submit-acx00-of-dynamic-v1-94a0dc15f282 Best regards, -- James Hilliard [off-list ref]