aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/phy/bcm7xxx.c
diff options
context:
space:
mode:
authorFlorian Fainelli <f.fainelli@gmail.com>2014-08-26 16:15:27 -0400
committerDavid S. Miller <davem@davemloft.net>2014-08-28 02:16:13 -0400
commit430ad68ffb5fa632a277162e5995cd6f7a39fb78 (patch)
treeec70cce5eb2d17248ac25ac98792ea6e95f2ac0f /drivers/net/phy/bcm7xxx.c
parent11bf2bbd596add62a86a74fc7aedc0b86c6ec154 (diff)
net: phy: bcm7xxx: add BCM7250 and BCM7364 PHY entries
Add two new entries to the Broadcom BCM7xxx internal PHY driver for BCM7250 and BCM7364 chips. Those chips share the usual 28nm process Gigabit PHY sequence and require the same workarounds so far. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/bcm7xxx.c')
-rw-r--r--drivers/net/phy/bcm7xxx.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/phy/bcm7xxx.c b/drivers/net/phy/bcm7xxx.c
index 948c7086679a..09dd6e1dc6e1 100644
--- a/drivers/net/phy/bcm7xxx.c
+++ b/drivers/net/phy/bcm7xxx.c
@@ -335,6 +335,8 @@ static int bcm7xxx_dummy_config_init(struct phy_device *phydev)
335} 335}
336 336
337static struct phy_driver bcm7xxx_driver[] = { 337static struct phy_driver bcm7xxx_driver[] = {
338 BCM7XXX_28NM_GPHY(PHY_ID_BCM7250, "Broadcom BCM7250"),
339 BCM7XXX_28NM_GPHY(PHY_ID_BCM7364, "Broadcom BCM7364"),
338 BCM7XXX_28NM_GPHY(PHY_ID_BCM7366, "Broadcom BCM7366"), 340 BCM7XXX_28NM_GPHY(PHY_ID_BCM7366, "Broadcom BCM7366"),
339 BCM7XXX_28NM_GPHY(PHY_ID_BCM7439, "Broadcom BCM7439"), 341 BCM7XXX_28NM_GPHY(PHY_ID_BCM7439, "Broadcom BCM7439"),
340 BCM7XXX_28NM_GPHY(PHY_ID_BCM7445, "Broadcom BCM7445"), 342 BCM7XXX_28NM_GPHY(PHY_ID_BCM7445, "Broadcom BCM7445"),
@@ -367,6 +369,8 @@ static struct phy_driver bcm7xxx_driver[] = {
367} }; 369} };
368 370
369static struct mdio_device_id __maybe_unused bcm7xxx_tbl[] = { 371static struct mdio_device_id __maybe_unused bcm7xxx_tbl[] = {
372 { PHY_ID_BCM7250, 0xfffffff0, },
373 { PHY_ID_BCM7364, 0xfffffff0, },
370 { PHY_ID_BCM7366, 0xfffffff0, }, 374 { PHY_ID_BCM7366, 0xfffffff0, },
371 { PHY_ID_BCM7439, 0xfffffff0, }, 375 { PHY_ID_BCM7439, 0xfffffff0, },
372 { PHY_ID_BCM7445, 0xfffffff0, }, 376 { PHY_ID_BCM7445, 0xfffffff0, },