blob: 977a90b950228487214789ba07950278aea1cc39 [file] [log] [blame]
developerc50c2352021-12-01 10:45:35 +08001// SPDX-License-Identifier: GPL-2.0+
2#include <linux/bitfield.h>
3#include <linux/module.h>
developerc50c2352021-12-01 10:45:35 +08004#include <linux/phy.h>
5
developerc50c2352021-12-01 10:45:35 +08006#define MTK_EXT_PAGE_ACCESS 0x1f
7#define MTK_PHY_PAGE_STANDARD 0x0000
8#define MTK_PHY_PAGE_EXTENDED 0x0001
9#define MTK_PHY_PAGE_EXTENDED_2 0x0002
10#define MTK_PHY_PAGE_EXTENDED_3 0x0003
11#define MTK_PHY_PAGE_EXTENDED_2A30 0x2a30
12#define MTK_PHY_PAGE_EXTENDED_52B5 0x52b5
13
developer2149cd92023-03-10 19:01:41 +080014static int mtk_gephy_read_page(struct phy_device *phydev)
15{
16 return __phy_read(phydev, MTK_EXT_PAGE_ACCESS);
17}
developerc50c2352021-12-01 10:45:35 +080018
developer2149cd92023-03-10 19:01:41 +080019static int mtk_gephy_write_page(struct phy_device *phydev, int page)
20{
21 return __phy_write(phydev, MTK_EXT_PAGE_ACCESS, page);
22}
developerc50c2352021-12-01 10:45:35 +080023
developer2149cd92023-03-10 19:01:41 +080024static void mtk_gephy_config_init(struct phy_device *phydev)
25{
26 /* Disable EEE */
27 phy_write_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV, 0);
developerc50c2352021-12-01 10:45:35 +080028
developer2149cd92023-03-10 19:01:41 +080029 /* Enable HW auto downshift */
30 phy_modify_paged(phydev, MTK_PHY_PAGE_EXTENDED, 0x14, 0, BIT(4));
developerc50c2352021-12-01 10:45:35 +080031
developer2149cd92023-03-10 19:01:41 +080032 /* Increase SlvDPSready time */
33 phy_select_page(phydev, MTK_PHY_PAGE_EXTENDED_52B5);
34 __phy_write(phydev, 0x10, 0xafae);
35 __phy_write(phydev, 0x12, 0x2f);
36 __phy_write(phydev, 0x10, 0x8fae);
37 phy_restore_page(phydev, MTK_PHY_PAGE_STANDARD, 0);
developerc50c2352021-12-01 10:45:35 +080038
developer2149cd92023-03-10 19:01:41 +080039 /* Adjust 100_mse_threshold */
40 phy_write_mmd(phydev, MDIO_MMD_VEND1, 0x123, 0xffff);
developerc50c2352021-12-01 10:45:35 +080041
developer2149cd92023-03-10 19:01:41 +080042 /* Disable mcc */
43 phy_write_mmd(phydev, MDIO_MMD_VEND1, 0xa6, 0x300);
44}
developerc50c2352021-12-01 10:45:35 +080045
developer2149cd92023-03-10 19:01:41 +080046static int mt7530_phy_config_init(struct phy_device *phydev)
developerc50c2352021-12-01 10:45:35 +080047{
developer2149cd92023-03-10 19:01:41 +080048 mtk_gephy_config_init(phydev);
49
50 /* Increase post_update_timer */
51 phy_write_paged(phydev, MTK_PHY_PAGE_EXTENDED_3, 0x11, 0x4b);
52
53 return 0;
developerc50c2352021-12-01 10:45:35 +080054}
55
developer2149cd92023-03-10 19:01:41 +080056static int mt7531_phy_config_init(struct phy_device *phydev)
developerc50c2352021-12-01 10:45:35 +080057{
developer2149cd92023-03-10 19:01:41 +080058 mtk_gephy_config_init(phydev);
59
60 /* PHY link down power saving enable */
61 phy_set_bits(phydev, 0x17, BIT(4));
62 phy_clear_bits_mmd(phydev, MDIO_MMD_VEND1, 0xc6, 0x300);
63
64 /* Set TX Pair delay selection */
65 phy_write_mmd(phydev, MDIO_MMD_VEND1, 0x13, 0x404);
66 phy_write_mmd(phydev, MDIO_MMD_VEND1, 0x14, 0x404);
67
68 return 0;
developerc50c2352021-12-01 10:45:35 +080069}
70
developerc50c2352021-12-01 10:45:35 +080071static struct phy_driver mtk_gephy_driver[] = {
developerc50c2352021-12-01 10:45:35 +080072 {
developer394d5eb2023-04-14 16:46:45 +080073 PHY_ID_MATCH_EXACT(0x03a29412),
developerc50c2352021-12-01 10:45:35 +080074 .name = "MediaTek MT7530 PHY",
75 .config_init = mt7530_phy_config_init,
76 /* Interrupts are handled by the switch, not the PHY
77 * itself.
78 */
79 .config_intr = genphy_no_config_intr,
80 .handle_interrupt = genphy_no_ack_interrupt,
81 .suspend = genphy_suspend,
82 .resume = genphy_resume,
83 .read_page = mtk_gephy_read_page,
84 .write_page = mtk_gephy_write_page,
85 },
86 {
developer394d5eb2023-04-14 16:46:45 +080087 PHY_ID_MATCH_EXACT(0x03a29441),
developerc50c2352021-12-01 10:45:35 +080088 .name = "MediaTek MT7531 PHY",
89 .config_init = mt7531_phy_config_init,
90 /* Interrupts are handled by the switch, not the PHY
91 * itself.
92 */
93 .config_intr = genphy_no_config_intr,
94 .handle_interrupt = genphy_no_ack_interrupt,
95 .suspend = genphy_suspend,
96 .resume = genphy_resume,
97 .read_page = mtk_gephy_read_page,
98 .write_page = mtk_gephy_write_page,
99 },
developerc50c2352021-12-01 10:45:35 +0800100};
101
102module_phy_driver(mtk_gephy_driver);
103
104static struct mdio_device_id __maybe_unused mtk_gephy_tbl[] = {
105 { PHY_ID_MATCH_VENDOR(0x03a29400) },
106 { }
107};
108
109MODULE_DESCRIPTION("MediaTek Gigabit Ethernet PHY driver");
developerc50c2352021-12-01 10:45:35 +0800110MODULE_AUTHOR("DENG, Qingfang <dqfext@gmail.com>");
111MODULE_LICENSE("GPL");
112
113MODULE_DEVICE_TABLE(mdio, mtk_gephy_tbl);