2008-02-03 03: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 .
*
* This program is free software ; you can redistribute it and / or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation ; either version 2 of the License , or ( at your
* option ) any later version .
*
*/
2017-12-02 22:51:24 +01:00
# include <linux/bitops.h>
2008-02-03 03:50:54 -08:00
# include <linux/phy.h>
2011-07-03 15:21:01 -04:00
# include <linux/module.h>
2008-02-03 03:50:54 -08:00
2017-12-02 22:51:27 +01:00
# define RTL821x_PHYSR 0x11
# define RTL821x_PHYSR_DUPLEX BIT(13)
# define RTL821x_PHYSR_SPEED GENMASK(15, 14)
2017-12-02 22:51:26 +01:00
2017-12-02 22:51:27 +01: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-02 22:51:26 +01:00
2017-12-02 22:51:27 +01:00
# define RTL821x_INSR 0x13
2017-12-02 22:51:26 +01:00
2017-12-02 22:51:27 +01:00
# define RTL821x_PAGE_SELECT 0x1f
2008-02-03 03:50:54 -08:00
2017-12-02 22:51:27 +01:00
# define RTL8211F_INSR 0x1d
2013-01-23 00:30:03 +00:00
2017-12-02 22:51:27 +01:00
# define RTL8211F_TX_DELAY BIT(8)
# define RTL8201F_ISR 0x1e
# define RTL8201F_IER 0x13
2017-09-12 18:54:36 +09:00
2008-02-03 03:50:54 -08:00
MODULE_DESCRIPTION ( " Realtek PHY driver " ) ;
MODULE_AUTHOR ( " Johnson Leung " ) ;
MODULE_LICENSE ( " GPL " ) ;
2018-01-12 23:17:34 +01:00
static int rtl821x_read_page ( struct phy_device * phydev )
2017-12-02 22:51:28 +01:00
{
2018-01-12 23:17:34 +01:00
return __phy_read ( phydev , RTL821x_PAGE_SELECT ) ;
2017-12-02 22:51:28 +01:00
}
2018-01-12 23:17:34 +01:00
static int rtl821x_write_page ( struct phy_device * phydev , int page )
2017-12-02 22:51:28 +01:00
{
2018-01-12 23:17:34 +01:00
return __phy_write ( phydev , RTL821x_PAGE_SELECT , page ) ;
2017-12-02 22:51:28 +01:00
}
2017-09-12 18:54:36 +09: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 03: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-12 23:17:34 +01: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 18:54:36 +09:00
static int rtl8201_config_intr ( struct phy_device * phydev )
{
2017-12-02 22:51:28 +01:00
u16 val ;
2017-09-12 18:54:36 +09:00
if ( phydev - > interrupts = = PHY_INTERRUPT_ENABLED )
2017-12-02 22:51:28 +01:00
val = BIT ( 13 ) | BIT ( 12 ) | BIT ( 11 ) ;
2017-09-12 18:54:36 +09:00
else
2017-12-02 22:51:28 +01:00
val = 0 ;
2017-09-12 18:54:36 +09:00
2018-01-12 23:17:34 +01:00
return phy_write_paged ( phydev , 0x7 , RTL8201F_IER , val ) ;
2017-09-12 18:54:36 +09:00
}
2013-01-23 00:30:03 +00:00
static int rtl8211b_config_intr ( struct phy_device * phydev )
2008-02-03 03:50:54 -08:00
{
int err ;
if ( phydev - > interrupts = = PHY_INTERRUPT_ENABLED )
err = phy_write ( phydev , RTL821x_INER ,
2017-12-02 22:51:25 +01:00
RTL8211B_INER_INIT ) ;
2008-02-03 03:50:54 -08:00
else
err = phy_write ( phydev , RTL821x_INER , 0 ) ;
return err ;
}
2013-01-23 00:30:03 +00: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 08:48:34 +02:00
RTL8211E_INER_LINK_STATUS ) ;
2013-01-23 00:30:03 +00: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-02 22:51:28 +01:00
u16 val ;
2015-06-18 16:42:47 +08:00
if ( phydev - > interrupts = = PHY_INTERRUPT_ENABLED )
2017-12-02 22:51:28 +01:00
val = RTL8211F_INER_LINK_STATUS ;
2015-06-18 16:42:47 +08:00
else
2017-12-02 22:51:28 +01:00
val = 0 ;
2015-06-18 16:42:47 +08:00
2018-01-12 23:17:34 +01:00
return phy_write_paged ( phydev , 0xa42 , RTL821x_INER , val ) ;
2015-06-18 16:42:47 +08:00
}
static int rtl8211f_config_init ( struct phy_device * phydev )
{
int ret ;
2018-01-12 23:17:34 +01: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 14:12:01 +01: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-12 23:17:34 +01:00
val = RTL8211F_TX_DELAY ;
2015-06-18 16:42:47 +08:00
2018-01-12 23:17:34 +01:00
return phy_modify_paged ( phydev , 0xd08 , 0x11 , RTL8211F_TX_DELAY , val ) ;
2015-06-18 16:42:47 +08:00
}
2014-06-10 12:50:12 +09:00
static struct phy_driver realtek_drvs [ ] = {
{
. phy_id = 0x00008201 ,
. name = " RTL8201CP Ethernet " ,
. phy_id_mask = 0x0000ffff ,
. features = PHY_BASIC_FEATURES ,
. flags = PHY_HAS_INTERRUPT ,
2017-09-12 18:54:36 +09:00
} , {
. phy_id = 0x001cc816 ,
. name = " RTL8201F 10/100Mbps Ethernet " ,
. phy_id_mask = 0x001fffff ,
. features = PHY_BASIC_FEATURES ,
. flags = PHY_HAS_INTERRUPT ,
. ack_interrupt = & rtl8201_ack_interrupt ,
. config_intr = & rtl8201_config_intr ,
. suspend = genphy_suspend ,
. resume = genphy_resume ,
2018-01-12 23:17:34 +01:00
. read_page = rtl821x_read_page ,
. write_page = rtl821x_write_page ,
2014-06-10 12:50:12 +09:00
} , {
. phy_id = 0x001cc912 ,
. name = " RTL8211B Gigabit Ethernet " ,
. phy_id_mask = 0x001fffff ,
. features = PHY_GBIT_FEATURES ,
. flags = PHY_HAS_INTERRUPT ,
. ack_interrupt = & rtl821x_ack_interrupt ,
. config_intr = & rtl8211b_config_intr ,
2015-08-06 19:03:35 +08:00
} , {
. phy_id = 0x001cc914 ,
. name = " RTL8211DN Gigabit Ethernet " ,
. phy_id_mask = 0x001fffff ,
. features = PHY_GBIT_FEATURES ,
. flags = PHY_HAS_INTERRUPT ,
. ack_interrupt = rtl821x_ack_interrupt ,
. config_intr = rtl8211e_config_intr ,
. suspend = genphy_suspend ,
. resume = genphy_resume ,
2014-06-10 12:50:12 +09:00
} , {
. phy_id = 0x001cc915 ,
. name = " RTL8211E Gigabit Ethernet " ,
. phy_id_mask = 0x001fffff ,
. features = PHY_GBIT_FEATURES ,
. flags = PHY_HAS_INTERRUPT ,
. ack_interrupt = & rtl821x_ack_interrupt ,
. config_intr = & rtl8211e_config_intr ,
. suspend = genphy_suspend ,
. resume = genphy_resume ,
2015-06-18 16:42:47 +08:00
} , {
. phy_id = 0x001cc916 ,
. name = " RTL8211F Gigabit Ethernet " ,
. phy_id_mask = 0x001fffff ,
. features = PHY_GBIT_FEATURES ,
. flags = PHY_HAS_INTERRUPT ,
. config_init = & rtl8211f_config_init ,
. ack_interrupt = & rtl8211f_ack_interrupt ,
. config_intr = & rtl8211f_config_intr ,
. suspend = genphy_suspend ,
. resume = genphy_resume ,
2018-01-12 23:17:34 +01:00
. read_page = rtl821x_read_page ,
. write_page = rtl821x_write_page ,
2014-06-10 12:50:12 +09:00
} ,
2008-02-03 03:50:54 -08:00
} ;
2014-11-11 19:45:59 +01:00
module_phy_driver ( realtek_drvs ) ;
2010-04-02 01:05:56 +00:00
2010-10-03 23:43:32 +00:00
static struct mdio_device_id __maybe_unused realtek_tbl [ ] = {
2017-09-12 18:54:36 +09:00
{ 0x001cc816 , 0x001fffff } ,
2010-04-02 01:05:56 +00:00
{ 0x001cc912 , 0x001fffff } ,
2015-08-06 19:03:35 +08:00
{ 0x001cc914 , 0x001fffff } ,
2013-01-23 00:30:03 +00:00
{ 0x001cc915 , 0x001fffff } ,
2015-06-18 16:42:47 +08:00
{ 0x001cc916 , 0x001fffff } ,
2010-04-02 01:05:56 +00:00
{ }
} ;
MODULE_DEVICE_TABLE ( mdio , realtek_tbl ) ;