We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12591df commit a541354Copy full SHA for a541354
drivers/net/phy/realtek.c
@@ -361,6 +361,23 @@ static struct phy_driver realtek_drvs[] = {
361
#else
362
.suspend = genphy_suspend,
363
.resume = genphy_resume,
364
+#endif
365
+ },{
366
+ .phy_id = 0x001cc878,
367
+ .name = "RTL8211F-VD Gigabit Ethernet",
368
+ .phy_id_mask = 0x001fffff,
369
+ .features = PHY_GBIT_FEATURES,
370
+ .flags = PHY_HAS_INTERRUPT,
371
+ .config_aneg = &genphy_config_aneg,
372
+ .config_init = &rtl8211f_config_init,
373
+ .read_status = &genphy_read_status,
374
+ .ack_interrupt = &rtl8211f_ack_interrupt,
375
+ .config_intr = &rtl8211f_config_intr,
376
+#ifdef CONFIG_AMLOGIC_ETH_PRIVE
377
+ .resume = rtl8211f_resume,
378
+#else
379
+ .suspend = genphy_suspend,
380
+ .resume = genphy_resume,
381
#endif
382
},
383
};
@@ -372,6 +389,7 @@ static struct mdio_device_id __maybe_unused realtek_tbl[] = {
389
{ 0x001cc914, 0x001fffff },
390
{ 0x001cc915, 0x001fffff },
391
{ 0x001cc916, 0x001fffff },
392
+ { 0x001cc878, 0x001fffff },
393
{ }
394
395
0 commit comments