* [PATCH v3 net-next 2/5] phy: micrel: add Microchip KSZ 9477 Switch PHY support
@ 2017-05-19 22:57 Woojung.Huh
2017-05-20 0:03 ` Florian Fainelli
2017-05-22 14:32 ` Andrew Lunn
0 siblings, 2 replies; 5+ messages in thread
From: Woojung.Huh @ 2017-05-19 22:57 UTC (permalink / raw)
To: andrew, f.fainelli, vivien.didelot, sergei.shtylyov
Cc: netdev, davem, UNGLinuxDriver
From: Woojung Huh <Woojung.Huh@microchip.com>
Adding Microchip 9477 Phy included in KSZ9477 Switch.
Signed-off-by: Woojung Huh <Woojung.Huh@microchip.com>
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
---
drivers/net/phy/micrel.c | 11 +++++++++++
include/linux/micrel_phy.h | 2 ++
2 files changed, 13 insertions(+)
diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c
index 4cfd541..46e80bc 100644
--- a/drivers/net/phy/micrel.c
+++ b/drivers/net/phy/micrel.c
@@ -20,6 +20,7 @@
* ksz8081, ksz8091,
* ksz8061,
* Switch : ksz8873, ksz886x
+ * ksz9477
*/
#include <linux/kernel.h>
@@ -996,6 +997,16 @@ static struct phy_driver ksphy_driver[] = {
.read_status = ksz8873mll_read_status,
.suspend = genphy_suspend,
.resume = genphy_resume,
+}, {
+ .phy_id = PHY_ID_KSZ9477,
+ .phy_id_mask = MICREL_PHY_ID_MASK,
+ .name = "Microchip KSZ9477",
+ .features = PHY_GBIT_FEATURES,
+ .config_init = kszphy_config_init,
+ .config_aneg = genphy_config_aneg,
+ .read_status = genphy_read_status,
+ .suspend = genphy_suspend,
+ .resume = genphy_resume,
} };
module_phy_driver(ksphy_driver);
diff --git a/include/linux/micrel_phy.h b/include/linux/micrel_phy.h
index f541da6..472fa4d 100644
--- a/include/linux/micrel_phy.h
+++ b/include/linux/micrel_phy.h
@@ -37,6 +37,8 @@
#define PHY_ID_KSZ8795 0x00221550
+#define PHY_ID_KSZ9477 0x00221631
+
/* struct phy_device dev_flags definitions */
#define MICREL_PHY_50MHZ_CLK 0x00000001
#define MICREL_PHY_FXEN 0x00000002
--
2.7.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v3 net-next 2/5] phy: micrel: add Microchip KSZ 9477 Switch PHY support
2017-05-19 22:57 [PATCH v3 net-next 2/5] phy: micrel: add Microchip KSZ 9477 Switch PHY support Woojung.Huh
@ 2017-05-20 0:03 ` Florian Fainelli
2017-05-22 14:32 ` Andrew Lunn
1 sibling, 0 replies; 5+ messages in thread
From: Florian Fainelli @ 2017-05-20 0:03 UTC (permalink / raw)
To: Woojung.Huh, andrew, vivien.didelot, sergei.shtylyov
Cc: netdev, davem, UNGLinuxDriver
On 05/19/2017 03:57 PM, Woojung.Huh@microchip.com wrote:
> From: Woojung Huh <Woojung.Huh@microchip.com>
>
> Adding Microchip 9477 Phy included in KSZ9477 Switch.
>
> Signed-off-by: Woojung Huh <Woojung.Huh@microchip.com>
> Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
--
Florian
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v3 net-next 2/5] phy: micrel: add Microchip KSZ 9477 Switch PHY support
2017-05-19 22:57 [PATCH v3 net-next 2/5] phy: micrel: add Microchip KSZ 9477 Switch PHY support Woojung.Huh
2017-05-20 0:03 ` Florian Fainelli
@ 2017-05-22 14:32 ` Andrew Lunn
2017-05-22 14:38 ` Woojung.Huh
1 sibling, 1 reply; 5+ messages in thread
From: Andrew Lunn @ 2017-05-22 14:32 UTC (permalink / raw)
To: Woojung.Huh
Cc: f.fainelli, vivien.didelot, sergei.shtylyov, netdev, davem,
UNGLinuxDriver
On Fri, May 19, 2017 at 10:57:15PM +0000, Woojung.Huh@microchip.com wrote:
> From: Woojung Huh <Woojung.Huh@microchip.com>
>
> Adding Microchip 9477 Phy included in KSZ9477 Switch.
>
> Signed-off-by: Woojung Huh <Woojung.Huh@microchip.com>
> Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by? I didn't contribute any code. It probably should be
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Andrew
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH v3 net-next 2/5] phy: micrel: add Microchip KSZ 9477 Switch PHY support
2017-05-22 14:32 ` Andrew Lunn
@ 2017-05-22 14:38 ` Woojung.Huh
2017-05-22 14:44 ` Andrew Lunn
0 siblings, 1 reply; 5+ messages in thread
From: Woojung.Huh @ 2017-05-22 14:38 UTC (permalink / raw)
To: andrew
Cc: f.fainelli, vivien.didelot, sergei.shtylyov, netdev, davem,
UNGLinuxDriver
> > Signed-off-by: Woojung Huh <Woojung.Huh@microchip.com>
> > Signed-off-by: Andrew Lunn <andrew@lunn.ch>
>
> Signed-off-by? I didn't contribute any code. It probably should be
>
> Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Andrew,
Your reply on 5/13 was with "Signed-off" :)
Will change to "Reviewed-by" in next patch.
Woojung
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v3 net-next 2/5] phy: micrel: add Microchip KSZ 9477 Switch PHY support
2017-05-22 14:38 ` Woojung.Huh
@ 2017-05-22 14:44 ` Andrew Lunn
0 siblings, 0 replies; 5+ messages in thread
From: Andrew Lunn @ 2017-05-22 14:44 UTC (permalink / raw)
To: Woojung.Huh
Cc: f.fainelli, vivien.didelot, sergei.shtylyov, netdev, davem,
UNGLinuxDriver
On Mon, May 22, 2017 at 02:38:39PM +0000, Woojung.Huh@microchip.com wrote:
> > > Signed-off-by: Woojung Huh <Woojung.Huh@microchip.com>
> > > Signed-off-by: Andrew Lunn <andrew@lunn.ch>
> >
> > Signed-off-by? I didn't contribute any code. It probably should be
> >
> > Reviewed-by: Andrew Lunn <andrew@lunn.ch>
> Andrew,
>
> Your reply on 5/13 was with "Signed-off" :)
O.K. My error then. Please feel free at ask me, if you think something
i say is wrong...
> Will change to "Reviewed-by" in next patch.
Thanks.
Andrew
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2017-05-22 14:45 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-19 22:57 [PATCH v3 net-next 2/5] phy: micrel: add Microchip KSZ 9477 Switch PHY support Woojung.Huh
2017-05-20 0:03 ` Florian Fainelli
2017-05-22 14:32 ` Andrew Lunn
2017-05-22 14:38 ` Woojung.Huh
2017-05-22 14:44 ` Andrew Lunn
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).