diff options
author | John Crispin <blogic@openwrt.org> | 2015-08-17 11:25:57 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-08-17 11:25:57 +0000 |
commit | 521e96a7cc30b858bfab965cfc809142dde6b303 (patch) | |
tree | d8484d14e44e8c2fa120731a90db55e392a80581 /target/linux/lantiq | |
parent | 5ee296b7bc2a07ca3bb45e7c944d59ac6fbdb486 (diff) | |
download | master-187ad058-521e96a7cc30b858bfab965cfc809142dde6b303.tar.gz master-187ad058-521e96a7cc30b858bfab965cfc809142dde6b303.tar.bz2 master-187ad058-521e96a7cc30b858bfab965cfc809142dde6b303.zip |
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 <martin.blumenstingl@googlemail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@46670 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/lantiq')
-rw-r--r-- | target/linux/lantiq/patches-3.18/0023-NET-PHY-adds-driver-for-lantiq-PHY11G.patch | 2 | ||||
-rw-r--r-- | target/linux/lantiq/patches-4.1/0023-NET-PHY-adds-driver-for-lantiq-PHY11G.patch | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/lantiq/patches-3.18/0023-NET-PHY-adds-driver-for-lantiq-PHY11G.patch b/target/linux/lantiq/patches-3.18/0023-NET-PHY-adds-driver-for-lantiq-PHY11G.patch index 4574b99a0e..6d1805f157 100644 --- a/target/linux/lantiq/patches-3.18/0023-NET-PHY-adds-driver-for-lantiq-PHY11G.patch +++ b/target/linux/lantiq/patches-3.18/0023-NET-PHY-adds-driver-for-lantiq-PHY11G.patch @@ -189,7 +189,7 @@ Signed-off-by: John Crispin <blogic@openwrt.org> +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,*/ diff --git a/target/linux/lantiq/patches-4.1/0023-NET-PHY-adds-driver-for-lantiq-PHY11G.patch b/target/linux/lantiq/patches-4.1/0023-NET-PHY-adds-driver-for-lantiq-PHY11G.patch index c93fdc8d0c..08e6b64811 100644 --- a/target/linux/lantiq/patches-4.1/0023-NET-PHY-adds-driver-for-lantiq-PHY11G.patch +++ b/target/linux/lantiq/patches-4.1/0023-NET-PHY-adds-driver-for-lantiq-PHY11G.patch @@ -189,7 +189,7 @@ Signed-off-by: John Crispin <blogic@openwrt.org> +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,*/ |