2019-01-22 02:05:50 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2008-02-03 19:50:54 +08:00
|
|
|
/*
|
|
|
|
* drivers/net/phy/realtek.c
|
|
|
|
*
|
|
|
|
* Driver for Realtek PHYs
|
|
|
|
*
|
|
|
|
* Author: Johnson Leung <r58129@freescale.com>
|
|
|
|
*
|
|
|
|
* Copyright (c) 2004 Freescale Semiconductor, Inc.
|
|
|
|
*/
|
2017-12-03 05:51:24 +08:00
|
|
|
#include <linux/bitops.h>
|
2008-02-03 19:50:54 +08:00
|
|
|
#include <linux/phy.h>
|
2011-07-04 03:21:01 +08:00
|
|
|
#include <linux/module.h>
|
2008-02-03 19:50:54 +08:00
|
|
|
|
2017-12-03 05:51:27 +08:00
|
|
|
#define RTL821x_PHYSR 0x11
|
|
|
|
#define RTL821x_PHYSR_DUPLEX BIT(13)
|
|
|
|
#define RTL821x_PHYSR_SPEED GENMASK(15, 14)
|
2017-12-03 05:51:26 +08:00
|
|
|
|
2017-12-03 05:51:27 +08:00
|
|
|
#define RTL821x_INER 0x12
|
|
|
|
#define RTL8211B_INER_INIT 0x6400
|
|
|
|
#define RTL8211E_INER_LINK_STATUS BIT(10)
|
|
|
|
#define RTL8211F_INER_LINK_STATUS BIT(4)
|
2017-12-03 05:51:26 +08:00
|
|
|
|
2017-12-03 05:51:27 +08:00
|
|
|
#define RTL821x_INSR 0x13
|
2017-12-03 05:51:26 +08:00
|
|
|
|
2017-12-03 05:51:27 +08:00
|
|
|
#define RTL821x_PAGE_SELECT 0x1f
|
2008-02-03 19:50:54 +08:00
|
|
|
|
2017-12-03 05:51:27 +08:00
|
|
|
#define RTL8211F_INSR 0x1d
|
2013-01-23 08:30:03 +08:00
|
|
|
|
2017-12-03 05:51:27 +08:00
|
|
|
#define RTL8211F_TX_DELAY BIT(8)
|
|
|
|
|
|
|
|
#define RTL8201F_ISR 0x1e
|
|
|
|
#define RTL8201F_IER 0x13
|
2017-09-12 17:54:36 +08:00
|
|
|
|
2018-07-14 17:45:53 +08:00
|
|
|
#define RTL8366RB_POWER_SAVE 0x15
|
|
|
|
#define RTL8366RB_POWER_SAVE_ON BIT(12)
|
|
|
|
|
2008-02-03 19:50:54 +08:00
|
|
|
MODULE_DESCRIPTION("Realtek PHY driver");
|
|
|
|
MODULE_AUTHOR("Johnson Leung");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
|
2018-01-13 06:17:34 +08:00
|
|
|
static int rtl821x_read_page(struct phy_device *phydev)
|
2017-12-03 05:51:28 +08:00
|
|
|
{
|
2018-01-13 06:17:34 +08:00
|
|
|
return __phy_read(phydev, RTL821x_PAGE_SELECT);
|
2017-12-03 05:51:28 +08:00
|
|
|
}
|
|
|
|
|
2018-01-13 06:17:34 +08:00
|
|
|
static int rtl821x_write_page(struct phy_device *phydev, int page)
|
2017-12-03 05:51:28 +08:00
|
|
|
{
|
2018-01-13 06:17:34 +08:00
|
|
|
return __phy_write(phydev, RTL821x_PAGE_SELECT, page);
|
2017-12-03 05:51:28 +08:00
|
|
|
}
|
|
|
|
|
2017-09-12 17:54:36 +08:00
|
|
|
static int rtl8201_ack_interrupt(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = phy_read(phydev, RTL8201F_ISR);
|
|
|
|
|
|
|
|
return (err < 0) ? err : 0;
|
|
|
|
}
|
|
|
|
|
2008-02-03 19:50:54 +08:00
|
|
|
static int rtl821x_ack_interrupt(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = phy_read(phydev, RTL821x_INSR);
|
|
|
|
|
|
|
|
return (err < 0) ? err : 0;
|
|
|
|
}
|
|
|
|
|
2015-06-18 16:42:47 +08:00
|
|
|
static int rtl8211f_ack_interrupt(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
2018-01-13 06:17:34 +08:00
|
|
|
err = phy_read_paged(phydev, 0xa43, RTL8211F_INSR);
|
2015-06-18 16:42:47 +08:00
|
|
|
|
|
|
|
return (err < 0) ? err : 0;
|
|
|
|
}
|
|
|
|
|
2017-09-12 17:54:36 +08:00
|
|
|
static int rtl8201_config_intr(struct phy_device *phydev)
|
|
|
|
{
|
2017-12-03 05:51:28 +08:00
|
|
|
u16 val;
|
2017-09-12 17:54:36 +08:00
|
|
|
|
|
|
|
if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
|
2017-12-03 05:51:28 +08:00
|
|
|
val = BIT(13) | BIT(12) | BIT(11);
|
2017-09-12 17:54:36 +08:00
|
|
|
else
|
2017-12-03 05:51:28 +08:00
|
|
|
val = 0;
|
2017-09-12 17:54:36 +08:00
|
|
|
|
2018-01-13 06:17:34 +08:00
|
|
|
return phy_write_paged(phydev, 0x7, RTL8201F_IER, val);
|
2017-09-12 17:54:36 +08:00
|
|
|
}
|
|
|
|
|
2013-01-23 08:30:03 +08:00
|
|
|
static int rtl8211b_config_intr(struct phy_device *phydev)
|
2008-02-03 19:50:54 +08:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
|
|
|
|
err = phy_write(phydev, RTL821x_INER,
|
2017-12-03 05:51:25 +08:00
|
|
|
RTL8211B_INER_INIT);
|
2008-02-03 19:50:54 +08:00
|
|
|
else
|
|
|
|
err = phy_write(phydev, RTL821x_INER, 0);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2013-01-23 08:30:03 +08:00
|
|
|
static int rtl8211e_config_intr(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
|
|
|
if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
|
|
|
|
err = phy_write(phydev, RTL821x_INER,
|
2013-08-19 14:48:34 +08:00
|
|
|
RTL8211E_INER_LINK_STATUS);
|
2013-01-23 08:30:03 +08:00
|
|
|
else
|
|
|
|
err = phy_write(phydev, RTL821x_INER, 0);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2015-06-18 16:42:47 +08:00
|
|
|
static int rtl8211f_config_intr(struct phy_device *phydev)
|
|
|
|
{
|
2017-12-03 05:51:28 +08:00
|
|
|
u16 val;
|
2015-06-18 16:42:47 +08:00
|
|
|
|
|
|
|
if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
|
2017-12-03 05:51:28 +08:00
|
|
|
val = RTL8211F_INER_LINK_STATUS;
|
2015-06-18 16:42:47 +08:00
|
|
|
else
|
2017-12-03 05:51:28 +08:00
|
|
|
val = 0;
|
2015-06-18 16:42:47 +08:00
|
|
|
|
2018-01-13 06:17:34 +08:00
|
|
|
return phy_write_paged(phydev, 0xa42, RTL821x_INER, val);
|
2015-06-18 16:42:47 +08:00
|
|
|
}
|
|
|
|
|
2018-06-29 02:46:45 +08:00
|
|
|
static int rtl8211_config_aneg(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = genphy_config_aneg(phydev);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* Quirk was copied from vendor driver. Unfortunately it includes no
|
|
|
|
* description of the magic numbers.
|
|
|
|
*/
|
|
|
|
if (phydev->speed == SPEED_100 && phydev->autoneg == AUTONEG_DISABLE) {
|
|
|
|
phy_write(phydev, 0x17, 0x2138);
|
|
|
|
phy_write(phydev, 0x0e, 0x0260);
|
|
|
|
} else {
|
|
|
|
phy_write(phydev, 0x17, 0x2108);
|
|
|
|
phy_write(phydev, 0x0e, 0x0000);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-07-02 14:08:13 +08:00
|
|
|
static int rtl8211c_config_init(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
/* RTL8211C has an issue when operating in Gigabit slave mode */
|
|
|
|
phy_set_bits(phydev, MII_CTRL1000,
|
|
|
|
CTL1000_ENABLE_MASTER | CTL1000_AS_MASTER);
|
|
|
|
|
|
|
|
return genphy_config_init(phydev);
|
|
|
|
}
|
|
|
|
|
2015-06-18 16:42:47 +08:00
|
|
|
static int rtl8211f_config_init(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
int ret;
|
2018-01-13 06:17:34 +08:00
|
|
|
u16 val = 0;
|
2015-06-18 16:42:47 +08:00
|
|
|
|
|
|
|
ret = genphy_config_init(phydev);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2016-11-25 21:12:01 +08:00
|
|
|
/* enable TX-delay for rgmii-id and rgmii-txid, otherwise disable it */
|
|
|
|
if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID ||
|
|
|
|
phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID)
|
2018-01-13 06:17:34 +08:00
|
|
|
val = RTL8211F_TX_DELAY;
|
2015-06-18 16:42:47 +08:00
|
|
|
|
2018-01-13 06:17:34 +08:00
|
|
|
return phy_modify_paged(phydev, 0xd08, 0x11, RTL8211F_TX_DELAY, val);
|
2015-06-18 16:42:47 +08:00
|
|
|
}
|
|
|
|
|
2018-05-25 04:40:12 +08:00
|
|
|
static int rtl8211b_suspend(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
phy_write(phydev, MII_MMD_DATA, BIT(9));
|
|
|
|
|
|
|
|
return genphy_suspend(phydev);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int rtl8211b_resume(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
phy_write(phydev, MII_MMD_DATA, 0);
|
|
|
|
|
|
|
|
return genphy_resume(phydev);
|
|
|
|
}
|
|
|
|
|
2018-07-14 17:45:53 +08:00
|
|
|
static int rtl8366rb_config_init(struct phy_device *phydev)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = genphy_config_init(phydev);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = phy_set_bits(phydev, RTL8366RB_POWER_SAVE,
|
|
|
|
RTL8366RB_POWER_SAVE_ON);
|
|
|
|
if (ret) {
|
|
|
|
dev_err(&phydev->mdio.dev,
|
|
|
|
"error enabling power management\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-06-10 11:50:12 +08:00
|
|
|
static struct phy_driver realtek_drvs[] = {
|
|
|
|
{
|
2018-11-10 07:40:37 +08:00
|
|
|
PHY_ID_MATCH_EXACT(0x00008201),
|
2014-06-10 11:50:12 +08:00
|
|
|
.name = "RTL8201CP Ethernet",
|
|
|
|
.features = PHY_BASIC_FEATURES,
|
2017-09-12 17:54:36 +08:00
|
|
|
}, {
|
2018-11-10 07:40:37 +08:00
|
|
|
PHY_ID_MATCH_EXACT(0x001cc816),
|
2018-11-05 02:02:42 +08:00
|
|
|
.name = "RTL8201F Fast Ethernet",
|
2017-09-12 17:54:36 +08:00
|
|
|
.features = PHY_BASIC_FEATURES,
|
|
|
|
.ack_interrupt = &rtl8201_ack_interrupt,
|
|
|
|
.config_intr = &rtl8201_config_intr,
|
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = genphy_resume,
|
2018-01-13 06:17:34 +08:00
|
|
|
.read_page = rtl821x_read_page,
|
|
|
|
.write_page = rtl821x_write_page,
|
2018-06-29 02:46:45 +08:00
|
|
|
}, {
|
2018-11-10 07:40:37 +08:00
|
|
|
PHY_ID_MATCH_EXACT(0x001cc910),
|
2018-06-29 02:46:45 +08:00
|
|
|
.name = "RTL8211 Gigabit Ethernet",
|
|
|
|
.features = PHY_GBIT_FEATURES,
|
|
|
|
.config_aneg = rtl8211_config_aneg,
|
|
|
|
.read_mmd = &genphy_read_mmd_unsupported,
|
|
|
|
.write_mmd = &genphy_write_mmd_unsupported,
|
2014-06-10 11:50:12 +08:00
|
|
|
}, {
|
2018-11-10 07:40:37 +08:00
|
|
|
PHY_ID_MATCH_EXACT(0x001cc912),
|
2014-06-10 11:50:12 +08:00
|
|
|
.name = "RTL8211B Gigabit Ethernet",
|
|
|
|
.features = PHY_GBIT_FEATURES,
|
|
|
|
.ack_interrupt = &rtl821x_ack_interrupt,
|
|
|
|
.config_intr = &rtl8211b_config_intr,
|
2018-03-20 09:44:53 +08:00
|
|
|
.read_mmd = &genphy_read_mmd_unsupported,
|
|
|
|
.write_mmd = &genphy_write_mmd_unsupported,
|
2018-05-25 04:40:12 +08:00
|
|
|
.suspend = rtl8211b_suspend,
|
|
|
|
.resume = rtl8211b_resume,
|
2018-07-02 14:08:13 +08:00
|
|
|
}, {
|
2018-11-10 07:40:37 +08:00
|
|
|
PHY_ID_MATCH_EXACT(0x001cc913),
|
2018-07-02 14:08:13 +08:00
|
|
|
.name = "RTL8211C Gigabit Ethernet",
|
|
|
|
.features = PHY_GBIT_FEATURES,
|
|
|
|
.config_init = rtl8211c_config_init,
|
|
|
|
.read_mmd = &genphy_read_mmd_unsupported,
|
|
|
|
.write_mmd = &genphy_write_mmd_unsupported,
|
2015-08-06 19:03:35 +08:00
|
|
|
}, {
|
2018-11-10 07:40:37 +08:00
|
|
|
PHY_ID_MATCH_EXACT(0x001cc914),
|
2015-08-06 19:03:35 +08:00
|
|
|
.name = "RTL8211DN Gigabit Ethernet",
|
|
|
|
.features = PHY_GBIT_FEATURES,
|
|
|
|
.ack_interrupt = rtl821x_ack_interrupt,
|
|
|
|
.config_intr = rtl8211e_config_intr,
|
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = genphy_resume,
|
2014-06-10 11:50:12 +08:00
|
|
|
}, {
|
2018-11-10 07:40:37 +08:00
|
|
|
PHY_ID_MATCH_EXACT(0x001cc915),
|
2014-06-10 11:50:12 +08:00
|
|
|
.name = "RTL8211E Gigabit Ethernet",
|
|
|
|
.features = PHY_GBIT_FEATURES,
|
|
|
|
.ack_interrupt = &rtl821x_ack_interrupt,
|
|
|
|
.config_intr = &rtl8211e_config_intr,
|
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = genphy_resume,
|
2015-06-18 16:42:47 +08:00
|
|
|
}, {
|
2018-11-10 07:40:37 +08:00
|
|
|
PHY_ID_MATCH_EXACT(0x001cc916),
|
2015-06-18 16:42:47 +08:00
|
|
|
.name = "RTL8211F Gigabit Ethernet",
|
|
|
|
.features = PHY_GBIT_FEATURES,
|
|
|
|
.config_init = &rtl8211f_config_init,
|
|
|
|
.ack_interrupt = &rtl8211f_ack_interrupt,
|
|
|
|
.config_intr = &rtl8211f_config_intr,
|
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = genphy_resume,
|
2018-01-13 06:17:34 +08:00
|
|
|
.read_page = rtl821x_read_page,
|
|
|
|
.write_page = rtl821x_write_page,
|
2019-02-03 23:07:33 +08:00
|
|
|
}, {
|
|
|
|
PHY_ID_MATCH_EXACT(0x001cc800),
|
|
|
|
.name = "Generic Realtek PHY",
|
|
|
|
.features = PHY_GBIT_FEATURES,
|
|
|
|
.config_init = genphy_config_init,
|
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = genphy_resume,
|
|
|
|
.read_page = rtl821x_read_page,
|
|
|
|
.write_page = rtl821x_write_page,
|
2018-07-14 17:45:53 +08:00
|
|
|
}, {
|
2018-11-10 07:40:37 +08:00
|
|
|
PHY_ID_MATCH_EXACT(0x001cc961),
|
2018-07-14 17:45:53 +08:00
|
|
|
.name = "RTL8366RB Gigabit Ethernet",
|
|
|
|
.features = PHY_GBIT_FEATURES,
|
|
|
|
.config_init = &rtl8366rb_config_init,
|
2019-02-24 08:11:15 +08:00
|
|
|
/* These interrupts are handled by the irq controller
|
|
|
|
* embedded inside the RTL8366RB, they get unmasked when the
|
|
|
|
* irq is requested and ACKed by reading the status register,
|
|
|
|
* which is done by the irqchip code.
|
|
|
|
*/
|
|
|
|
.ack_interrupt = genphy_no_ack_interrupt,
|
|
|
|
.config_intr = genphy_no_config_intr,
|
2018-07-14 17:45:53 +08:00
|
|
|
.suspend = genphy_suspend,
|
|
|
|
.resume = genphy_resume,
|
2014-06-10 11:50:12 +08:00
|
|
|
},
|
2008-02-03 19:50:54 +08:00
|
|
|
};
|
|
|
|
|
2014-11-12 02:45:59 +08:00
|
|
|
module_phy_driver(realtek_drvs);
|
2010-04-02 09:05:56 +08:00
|
|
|
|
2018-11-07 15:52:46 +08:00
|
|
|
static const struct mdio_device_id __maybe_unused realtek_tbl[] = {
|
2018-11-10 07:40:37 +08:00
|
|
|
{ PHY_ID_MATCH_VENDOR(0x001cc800) },
|
2010-04-02 09:05:56 +08:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
MODULE_DEVICE_TABLE(mdio, realtek_tbl);
|