Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1305218 > unrolled thread
| Started by | Joshua Henderson <joshua.henderson@microchip.com> |
|---|---|
| First post | 2016-01-09 12:50 +0100 |
| Last post | 2016-01-11 05:20 +0100 |
| Articles | 3 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH v2] net: phy: Add support for SMSC LAN8740 PHY Joshua Henderson <joshua.henderson@microchip.com> - 2016-01-09 12:50 +0100
Re: [PATCH v2] net: phy: Add support for SMSC LAN8740 PHY Andrew Lunn <andrew@lunn.ch> - 2016-01-09 17:10 +0100
Re: [PATCH v2] net: phy: Add support for SMSC LAN8740 PHY David Miller <davem@davemloft.net> - 2016-01-11 05:20 +0100
| From | Joshua Henderson <joshua.henderson@microchip.com> |
|---|---|
| Date | 2016-01-09 12:50 +0100 |
| Subject | [PATCH v2] net: phy: Add support for SMSC LAN8740 PHY |
| Message-ID | <qP0bU-515-9@gated-at.bofh.it> |
LAN8740 has a different phy_id than LAN8710/LAN8720.
Signed-off-by: Joshua Henderson <joshua.henderson@microchip.com>
---
Changes from v1:
+ Remove explicitly setting .driver and apply against net-next
drivers/net/phy/smsc.c | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/drivers/net/phy/smsc.c b/drivers/net/phy/smsc.c
index ddb0613..e485f26 100644
--- a/drivers/net/phy/smsc.c
+++ b/drivers/net/phy/smsc.c
@@ -254,6 +254,27 @@ static struct phy_driver smsc_phy_driver[] = {
.suspend = genphy_suspend,
.resume = genphy_resume,
+}, {
+ .phy_id = 0x0007c110,
+ .phy_id_mask = 0xfffffff0,
+ .name = "SMSC LAN8740",
+
+ .features = (PHY_BASIC_FEATURES | SUPPORTED_Pause
+ | SUPPORTED_Asym_Pause),
+ .flags = PHY_HAS_INTERRUPT | PHY_HAS_MAGICANEG,
+
+ /* basic functions */
+ .config_aneg = genphy_config_aneg,
+ .read_status = lan87xx_read_status,
+ .config_init = smsc_phy_config_init,
+ .soft_reset = smsc_phy_reset,
+
+ /* IRQ related */
+ .ack_interrupt = smsc_phy_ack_interrupt,
+ .config_intr = smsc_phy_config_intr,
+
+ .suspend = genphy_suspend,
+ .resume = genphy_resume,
} };
module_phy_driver(smsc_phy_driver);
@@ -268,6 +289,7 @@ static struct mdio_device_id __maybe_unused smsc_tbl[] = {
{ 0x0007c0c0, 0xfffffff0 },
{ 0x0007c0d0, 0xfffffff0 },
{ 0x0007c0f0, 0xfffffff0 },
+ { 0x0007c110, 0xfffffff0 },
{ }
};
--
1.7.9.5
[toc] | [next] | [standalone]
| From | Andrew Lunn <andrew@lunn.ch> |
|---|---|
| Date | 2016-01-09 17:10 +0100 |
| Message-ID | <qP4fx-7W6-47@gated-at.bofh.it> |
| In reply to | #1305218 |
On Sat, Jan 09, 2016 at 04:54:21AM -0700, Joshua Henderson wrote:
> LAN8740 has a different phy_id than LAN8710/LAN8720.
>
> Signed-off-by: Joshua Henderson <joshua.henderson@microchip.com>
> ---
> Changes from v1:
> + Remove explicitly setting .driver and apply against net-next
Thanks.
FYI: It is normal to put in the subject line if the patch is against
net or net-next.
Andrew
[toc] | [prev] | [next] | [standalone]
| From | David Miller <davem@davemloft.net> |
|---|---|
| Date | 2016-01-11 05:20 +0100 |
| Message-ID | <qPC7w-5Cu-3@gated-at.bofh.it> |
| In reply to | #1305218 |
From: Joshua Henderson <joshua.henderson@microchip.com> Date: Sat, 9 Jan 2016 04:54:21 -0700 > LAN8740 has a different phy_id than LAN8710/LAN8720. > > Signed-off-by: Joshua Henderson <joshua.henderson@microchip.com> Applied.
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web