netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: phy: broadcom: Add BCM54616S phy entry
@ 2015-04-08 10:15 Alessio Igor Bogani
  2015-04-08 17:25 ` Florian Fainelli
  0 siblings, 1 reply; 3+ messages in thread
From: Alessio Igor Bogani @ 2015-04-08 10:15 UTC (permalink / raw)
  To: Florian Fainelli; +Cc: netdev, linux-kernel, Alessio Igor Bogani

Signed-off-by: Alessio Igor Bogani <alessio.bogani@elettra.eu>
---
This phy is used in the MVME2500 powerpc system
(arch/powerpc/boot/dts/mvme2500.dts)

 drivers/net/phy/Kconfig    |  4 ++--
 drivers/net/phy/broadcom.c | 14 ++++++++++++++
 include/linux/brcmphy.h    |  1 +
 3 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/drivers/net/phy/Kconfig b/drivers/net/phy/Kconfig
index 16adbc4..8fadaa1 100644
--- a/drivers/net/phy/Kconfig
+++ b/drivers/net/phy/Kconfig
@@ -68,8 +68,8 @@ config SMSC_PHY
 config BROADCOM_PHY
 	tristate "Drivers for Broadcom PHYs"
 	---help---
-	  Currently supports the BCM5411, BCM5421, BCM5461, BCM5464, BCM5481
-	  and BCM5482 PHYs.
+	  Currently supports the BCM5411, BCM5421, BCM5461, BCM54616S, BCM5464,
+	  BCM5481 and BCM5482 PHYs.
 
 config BCM63XX_PHY
 	tristate "Drivers for Broadcom 63xx SOCs internal PHY"
diff --git a/drivers/net/phy/broadcom.c b/drivers/net/phy/broadcom.c
index a52afb2..9c71295 100644
--- a/drivers/net/phy/broadcom.c
+++ b/drivers/net/phy/broadcom.c
@@ -549,6 +549,19 @@ static struct phy_driver broadcom_drivers[] = {
 	.config_intr	= bcm54xx_config_intr,
 	.driver		= { .owner = THIS_MODULE },
 }, {
+	.phy_id		= PHY_ID_BCM54616S,
+	.phy_id_mask	= 0xfffffff0,
+	.name		= "Broadcom BCM54616S",
+	.features	= PHY_GBIT_FEATURES |
+			  SUPPORTED_Pause | SUPPORTED_Asym_Pause,
+	.flags		= PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
+	.config_init	= bcm54xx_config_init,
+	.config_aneg	= genphy_config_aneg,
+	.read_status	= genphy_read_status,
+	.ack_interrupt	= bcm54xx_ack_interrupt,
+	.config_intr	= bcm54xx_config_intr,
+	.driver		= { .owner = THIS_MODULE },
+}, {
 	.phy_id		= PHY_ID_BCM5464,
 	.phy_id_mask	= 0xfffffff0,
 	.name		= "Broadcom BCM5464",
@@ -660,6 +673,7 @@ static struct mdio_device_id __maybe_unused broadcom_tbl[] = {
 	{ PHY_ID_BCM5411, 0xfffffff0 },
 	{ PHY_ID_BCM5421, 0xfffffff0 },
 	{ PHY_ID_BCM5461, 0xfffffff0 },
+	{ PHY_ID_BCM54616S, 0xfffffff0 },
 	{ PHY_ID_BCM5464, 0xfffffff0 },
 	{ PHY_ID_BCM5482, 0xfffffff0 },
 	{ PHY_ID_BCM5482, 0xfffffff0 },
diff --git a/include/linux/brcmphy.h b/include/linux/brcmphy.h
index 7ccd928..1c9920b 100644
--- a/include/linux/brcmphy.h
+++ b/include/linux/brcmphy.h
@@ -11,6 +11,7 @@
 #define PHY_ID_BCM5421			0x002060e0
 #define PHY_ID_BCM5464			0x002060b0
 #define PHY_ID_BCM5461			0x002060c0
+#define PHY_ID_BCM54616S		0x03625d10
 #define PHY_ID_BCM57780			0x03625d90
 
 #define PHY_ID_BCM7250			0xae025280
-- 
2.3.5

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] net: phy: broadcom: Add BCM54616S phy entry
  2015-04-08 10:15 [PATCH] net: phy: broadcom: Add BCM54616S phy entry Alessio Igor Bogani
@ 2015-04-08 17:25 ` Florian Fainelli
  2015-04-08 19:28   ` David Miller
  0 siblings, 1 reply; 3+ messages in thread
From: Florian Fainelli @ 2015-04-08 17:25 UTC (permalink / raw)
  To: Alessio Igor Bogani; +Cc: netdev, linux-kernel

On 08/04/15 03:15, Alessio Igor Bogani wrote:
> Signed-off-by: Alessio Igor Bogani <alessio.bogani@elettra.eu>

Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>

This is indeed the correct PHY ID for this chip, technically, this is a
variant of the 54616 (non-S version), but it does not really matter.
-- 
Florian

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] net: phy: broadcom: Add BCM54616S phy entry
  2015-04-08 17:25 ` Florian Fainelli
@ 2015-04-08 19:28   ` David Miller
  0 siblings, 0 replies; 3+ messages in thread
From: David Miller @ 2015-04-08 19:28 UTC (permalink / raw)
  To: f.fainelli; +Cc: alessio.bogani, netdev, linux-kernel

From: Florian Fainelli <f.fainelli@gmail.com>
Date: Wed, 08 Apr 2015 10:25:43 -0700

> On 08/04/15 03:15, Alessio Igor Bogani wrote:
>> Signed-off-by: Alessio Igor Bogani <alessio.bogani@elettra.eu>
> 
> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
> 
> This is indeed the correct PHY ID for this chip, technically, this is a
> variant of the 54616 (non-S version), but it does not really matter.

Applied, thanks everyone.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-04-08 19:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-08 10:15 [PATCH] net: phy: broadcom: Add BCM54616S phy entry Alessio Igor Bogani
2015-04-08 17:25 ` Florian Fainelli
2015-04-08 19:28   ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).