* [PATCH] phy: Add support for VSC8234
@ 2011-10-16 6:49 Andy Fleming
2013-03-22 14:13 ` David Miller
0 siblings, 1 reply; 4+ messages in thread
From: Andy Fleming @ 2011-10-16 6:49 UTC (permalink / raw)
To: linux-kernel; +Cc: Kumar Gala, netdev
No functional changes other than to recognize this PHYID.
Signed-off-by: Andy Fleming <afleming@freescale.com>
Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
Signed-off-by: Ben Collins <ben.c@servergy.com>
Cc: netdev@vger.kernel.org
---
drivers/net/phy/vitesse.c | 17 ++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/drivers/net/phy/vitesse.c b/drivers/net/phy/vitesse.c
index 2585c38..b760ba1 100644
--- a/drivers/net/phy/vitesse.c
+++ b/drivers/net/phy/vitesse.c
@@ -54,6 +54,7 @@
#define MII_VSC8221_AUXCONSTAT_INIT 0x0004 /* need to set this bit? */
#define MII_VSC8221_AUXCONSTAT_RESERVED 0x0004
+#define PHY_ID_VSC8234 0x000fc620
#define PHY_ID_VSC8244 0x000fc6c0
#define PHY_ID_VSC8221 0x000fc550
@@ -119,7 +120,8 @@ static int vsc82xx_config_intr(struct phy_device *phydev)
if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
err = phy_write(phydev, MII_VSC8244_IMASK,
- phydev->drv->phy_id == PHY_ID_VSC8244 ?
+ ((phydev->drv->phy_id == PHY_ID_VSC8234) ||
+ (phydev->drv->phy_id == PHY_ID_VSC8244)) ?
MII_VSC8244_IMASK_MASK :
MII_VSC8221_IMASK_MASK);
else {
@@ -165,6 +167,19 @@ static struct phy_driver vsc82xx_driver[] = {
.config_intr = &vsc82xx_config_intr,
.driver = { .owner = THIS_MODULE,},
}, {
+ /* Vitesse 8234 */
+ .phy_id = PHY_ID_VSC8234,
+ .phy_id_mask = 0x000ffff0,
+ .name = "Vitesse VSC8234",
+ .features = PHY_GBIT_FEATURES,
+ .flags = PHY_HAS_INTERRUPT,
+ .config_init = &vsc8221_config_init,
+ .config_aneg = &genphy_config_aneg,
+ .read_status = &genphy_read_status,
+ .ack_interrupt = &vsc824x_ack_interrupt,
+ .config_intr = &vsc82xx_config_intr,
+ .driver = { .owner = THIS_MODULE,},
+}, {
/* Vitesse 8221 */
.phy_id = PHY_ID_VSC8221,
.phy_id_mask = 0x000ffff0,
--
1.8.1.2
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] phy: Add support for VSC8234
2011-10-16 6:49 [PATCH] phy: Add support for VSC8234 Andy Fleming
@ 2013-03-22 14:13 ` David Miller
2013-03-22 14:16 ` Ben Collins
2013-03-22 14:27 ` Fleming Andy-AFLEMING
0 siblings, 2 replies; 4+ messages in thread
From: David Miller @ 2013-03-22 14:13 UTC (permalink / raw)
To: afleming; +Cc: linux-kernel, kumar.gala, netdev
From: Andy Fleming <afleming@freescale.com>
Date: Sun, 16 Oct 2011 01:49:49 -0500
> No functional changes other than to recognize this PHYID.
>
> Signed-off-by: Andy Fleming <afleming@freescale.com>
> Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
> Signed-off-by: Ben Collins <ben.c@servergy.com>
Please do not submit patches with the commit date integrated
into your formal email headers.
This screws up archives and patch queue maintainence systems which
order submissions by date.
Thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] phy: Add support for VSC8234
2013-03-22 14:13 ` David Miller
@ 2013-03-22 14:16 ` Ben Collins
2013-03-22 14:27 ` Fleming Andy-AFLEMING
1 sibling, 0 replies; 4+ messages in thread
From: Ben Collins @ 2013-03-22 14:16 UTC (permalink / raw)
To: David Miller; +Cc: afleming, linux-kernel, kumar.gala, netdev
On Mar 22, 2013, at 10:13 AM, David Miller <davem@davemloft.net> wrote:
> From: Andy Fleming <afleming@freescale.com>
> Date: Sun, 16 Oct 2011 01:49:49 -0500
>
>> No functional changes other than to recognize this PHYID.
>>
>> Signed-off-by: Andy Fleming <afleming@freescale.com>
>> Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
>> Signed-off-by: Ben Collins <ben.c@servergy.com>
>
> Please do not submit patches with the commit date integrated
> into your formal email headers.
>
> This screws up archives and patch queue maintainence systems which
> order submissions by date.
For the record, this wasn't Andy, it was me. Noted.
--
Servergy : http://www.servergy.com/
SwissDisk : http://www.swissdisk.com/
Ubuntu : http://www.ubuntu.com/
My Blog : http://ben-collins.blogspot.com/
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] phy: Add support for VSC8234
2013-03-22 14:13 ` David Miller
2013-03-22 14:16 ` Ben Collins
@ 2013-03-22 14:27 ` Fleming Andy-AFLEMING
1 sibling, 0 replies; 4+ messages in thread
From: Fleming Andy-AFLEMING @ 2013-03-22 14:27 UTC (permalink / raw)
To: David Miller
Cc: linux-kernel@vger.kernel.org, Gala Kumar-B11780,
netdev@vger.kernel.org
On Mar 22, 2013, at 9:13, "David Miller" <davem@davemloft.net> wrote:
> From: Andy Fleming <afleming@freescale.com>
> Date: Sun, 16 Oct 2011 01:49:49 -0500
>
>> No functional changes other than to recognize this PHYID.
>>
>> Signed-off-by: Andy Fleming <afleming@freescale.com>
>> Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
>> Signed-off-by: Ben Collins <ben.c@servergy.com>
>
> Please do not submit patches with the commit date integrated
> into your formal email headers.
>
> This screws up archives and patch queue maintainence systems which
> order submissions by date.
Yes, I'm very confused, as I didn't send any of these.
Andy
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-03-22 14:27 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-16 6:49 [PATCH] phy: Add support for VSC8234 Andy Fleming
2013-03-22 14:13 ` David Miller
2013-03-22 14:16 ` Ben Collins
2013-03-22 14:27 ` Fleming Andy-AFLEMING
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox