public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v1 12/18] drivers: net: phy: add SMSC LAN8740 Phy support.
@ 2015-12-17 17:32 Purna Chandra Mandal
  0 siblings, 0 replies; only message in thread
From: Purna Chandra Mandal @ 2015-12-17 17:32 UTC (permalink / raw)
  To: u-boot

Add SMSC LAN8740 Phy support required for PIC32MZ[DA] devices.

Signed-off-by: Purna Chandra Mandal <purna.mandal@microchip.com>
---

 drivers/net/phy/smsc.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/drivers/net/phy/smsc.c b/drivers/net/phy/smsc.c
index bfd9815..34986a2 100644
--- a/drivers/net/phy/smsc.c
+++ b/drivers/net/phy/smsc.c
@@ -69,11 +69,21 @@ static struct phy_driver lan8710_driver = {
     .shutdown = &genphy_shutdown,
 };
 
+static struct phy_driver lan8740_driver = {
+    .name = "SMSC LAN8740",
+    .uid = 0x0007c110,
+    .mask = 0xffff0,
+    .features = PHY_BASIC_FEATURES,
+    .config = &genphy_config_aneg,
+    .startup = &genphy_startup,
+    .shutdown = &genphy_shutdown,
+};
 int phy_smsc_init(void)
 {
     phy_register(&lan8710_driver);
     phy_register(&lan911x_driver);
     phy_register(&lan8700_driver);
+    phy_register(&lan8740_driver);
 
     return 0;
 }
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2015-12-17 17:32 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-17 17:32 [U-Boot] [PATCH v1 12/18] drivers: net: phy: add SMSC LAN8740 Phy support Purna Chandra Mandal

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox