Author: blogic Date: 2015-08-17 13:25:57 +0200 (Mon, 17 Aug 2015) New Revision: 46670
Modified: trunk/target/linux/lantiq/patches-3.18/0023-NET-PHY-adds-driver-for-lantiq-PHY11G.patch trunk/target/linux/lantiq/patches-4.1/0023-NET-PHY-adds-driver-for-lantiq-PHY11G.patch Log: lantiq: Support newer versions of the PEF7071 ethernet PHYs The BT Home Hub 5A uses three PEF7071 with PHY ID 0xd565a401. Daniel's PHY driver (for his u-boot sources) already supports that PHY because it uses a PHY ID mask of 0xfffffff8. Signed-off-by: Martin Blumenstingl <[email protected]> Modified: trunk/target/linux/lantiq/patches-3.18/0023-NET-PHY-adds-driver-for-lantiq-PHY11G.patch =================================================================== --- trunk/target/linux/lantiq/patches-3.18/0023-NET-PHY-adds-driver-for-lantiq-PHY11G.patch 2015-08-17 11:25:51 UTC (rev 46669) +++ trunk/target/linux/lantiq/patches-3.18/0023-NET-PHY-adds-driver-for-lantiq-PHY11G.patch 2015-08-17 11:25:57 UTC (rev 46670) @@ -189,7 +189,7 @@ +static struct phy_driver lantiq_phy[] = { + { + .phy_id = 0xd565a400, -+ .phy_id_mask = 0xffffffff, ++ .phy_id_mask = 0xfffffff8, + .name = "Lantiq XWAY PEF7071", + .features = (PHY_GBIT_FEATURES | SUPPORTED_Pause), + .flags = 0, /*PHY_HAS_INTERRUPT,*/ Modified: trunk/target/linux/lantiq/patches-4.1/0023-NET-PHY-adds-driver-for-lantiq-PHY11G.patch =================================================================== --- trunk/target/linux/lantiq/patches-4.1/0023-NET-PHY-adds-driver-for-lantiq-PHY11G.patch 2015-08-17 11:25:51 UTC (rev 46669) +++ trunk/target/linux/lantiq/patches-4.1/0023-NET-PHY-adds-driver-for-lantiq-PHY11G.patch 2015-08-17 11:25:57 UTC (rev 46670) @@ -189,7 +189,7 @@ +static struct phy_driver lantiq_phy[] = { + { + .phy_id = 0xd565a400, -+ .phy_id_mask = 0xffffffff, ++ .phy_id_mask = 0xfffffff8, + .name = "Lantiq XWAY PEF7071", + .features = (PHY_GBIT_FEATURES | SUPPORTED_Pause), + .flags = 0, /*PHY_HAS_INTERRUPT,*/ _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
