mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-01 11:36:49 +00:00
8667ca841b
This backport patch inserted suspend/resume callbacks for the wrong PHY driver. The fixed patch is needed for Huawei AP5030DN to initialize its second PHY. Refresh all affected patch with make target/linux/refresh. Fixes:06cdc07f8c
("ath79: add support for Huawei AP5030DN") Signed-off-by: Marco von Rosenberg <marcovr@selfnet.de> Link: https://github.com/openwrt/openwrt/pull/17312 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> (cherry picked from commitd7f638bc69
)
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From e04a5456fd53dddcff0d33c0c6647270c2f5fbf7 Mon Sep 17 00:00:00 2001
|
|
From: Jonathan Lemon <jonathan.lemon@gmail.com>
|
|
Date: Wed, 4 May 2022 14:33:05 -0700
|
|
Subject: [PATCH 0382/1085] Populate phy driver block for BCM54213PE
|
|
|
|
The BCM54213PE identifier is a RPI-specific addition.
|
|
Populate the remainder of the driver functions, including the
|
|
required probe routine.
|
|
|
|
Add a version of bcm54xx_suspend, from upstream.
|
|
|
|
Signed-off-by: Jonathan Lemon <jonathan.lemon@gmail.com>
|
|
---
|
|
drivers/net/phy/broadcom.c | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
--- a/drivers/net/phy/broadcom.c
|
|
+++ b/drivers/net/phy/broadcom.c
|
|
@@ -1050,8 +1050,14 @@ static struct phy_driver broadcom_driver
|
|
.phy_id_mask = 0xffffffff,
|
|
.name = "Broadcom BCM54213PE",
|
|
/* PHY_GBIT_FEATURES */
|
|
+ .get_sset_count = bcm_phy_get_sset_count,
|
|
+ .get_strings = bcm_phy_get_strings,
|
|
+ .get_stats = bcm54xx_get_stats,
|
|
+ .probe = bcm54xx_phy_probe,
|
|
.config_init = bcm54xx_config_init,
|
|
.config_intr = bcm_phy_config_intr,
|
|
+ .suspend = bcm54xx_suspend,
|
|
+ .resume = bcm54xx_resume,
|
|
}, {
|
|
.phy_id = PHY_ID_BCM5461,
|
|
.phy_id_mask = 0xfffffff0,
|