blob: 643464d5a727b3b937fbe803072861de15a1414f [file] [log] [blame]
Matus Ujhelyi0ca71112012-10-14 19:07:16 +00001/*
2 * drivers/net/phy/at803x.c
3 *
4 * Driver for Atheros 803x PHY
5 *
6 * Author: Matus Ujhelyi <ujhelyi.m@gmail.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 */
13
14#include <linux/phy.h>
15#include <linux/module.h>
16#include <linux/string.h>
17#include <linux/netdevice.h>
18#include <linux/etherdevice.h>
19
20#define AT803X_INTR_ENABLE 0x12
21#define AT803X_INTR_STATUS 0x13
22#define AT803X_WOL_ENABLE 0x01
23#define AT803X_DEVICE_ADDR 0x03
24#define AT803X_LOC_MAC_ADDR_0_15_OFFSET 0x804C
25#define AT803X_LOC_MAC_ADDR_16_31_OFFSET 0x804B
26#define AT803X_LOC_MAC_ADDR_32_47_OFFSET 0x804A
27#define AT803X_MMD_ACCESS_CONTROL 0x0D
28#define AT803X_MMD_ACCESS_CONTROL_DATA 0x0E
29#define AT803X_FUNC_DATA 0x4003
Zhao Qiang77a99392014-03-28 15:39:41 +080030#define AT803X_INER 0x0012
31#define AT803X_INER_INIT 0xec00
32#define AT803X_INSR 0x0013
Mugunthan V N1ca6d1b2013-06-03 20:10:06 +000033#define AT803X_DEBUG_ADDR 0x1D
34#define AT803X_DEBUG_DATA 0x1E
35#define AT803X_DEBUG_SYSTEM_MODE_CTRL 0x05
36#define AT803X_DEBUG_RGMII_TX_CLK_DLY BIT(8)
Matus Ujhelyi0ca71112012-10-14 19:07:16 +000037
38MODULE_DESCRIPTION("Atheros 803x PHY driver");
39MODULE_AUTHOR("Matus Ujhelyi");
40MODULE_LICENSE("GPL");
41
Mugunthan V Nea13c9e2013-06-03 20:10:05 +000042static int at803x_set_wol(struct phy_device *phydev,
43 struct ethtool_wolinfo *wol)
Matus Ujhelyi0ca71112012-10-14 19:07:16 +000044{
45 struct net_device *ndev = phydev->attached_dev;
46 const u8 *mac;
Mugunthan V Nea13c9e2013-06-03 20:10:05 +000047 int ret;
48 u32 value;
Matus Ujhelyi0ca71112012-10-14 19:07:16 +000049 unsigned int i, offsets[] = {
50 AT803X_LOC_MAC_ADDR_32_47_OFFSET,
51 AT803X_LOC_MAC_ADDR_16_31_OFFSET,
52 AT803X_LOC_MAC_ADDR_0_15_OFFSET,
53 };
54
55 if (!ndev)
Mugunthan V Nea13c9e2013-06-03 20:10:05 +000056 return -ENODEV;
Matus Ujhelyi0ca71112012-10-14 19:07:16 +000057
Mugunthan V Nea13c9e2013-06-03 20:10:05 +000058 if (wol->wolopts & WAKE_MAGIC) {
59 mac = (const u8 *) ndev->dev_addr;
Matus Ujhelyi0ca71112012-10-14 19:07:16 +000060
Mugunthan V Nea13c9e2013-06-03 20:10:05 +000061 if (!is_valid_ether_addr(mac))
62 return -EFAULT;
Matus Ujhelyi0ca71112012-10-14 19:07:16 +000063
Mugunthan V Nea13c9e2013-06-03 20:10:05 +000064 for (i = 0; i < 3; i++) {
65 phy_write(phydev, AT803X_MMD_ACCESS_CONTROL,
Matus Ujhelyi0ca71112012-10-14 19:07:16 +000066 AT803X_DEVICE_ADDR);
Mugunthan V Nea13c9e2013-06-03 20:10:05 +000067 phy_write(phydev, AT803X_MMD_ACCESS_CONTROL_DATA,
Matus Ujhelyi0ca71112012-10-14 19:07:16 +000068 offsets[i]);
Mugunthan V Nea13c9e2013-06-03 20:10:05 +000069 phy_write(phydev, AT803X_MMD_ACCESS_CONTROL,
Matus Ujhelyi0ca71112012-10-14 19:07:16 +000070 AT803X_FUNC_DATA);
Mugunthan V Nea13c9e2013-06-03 20:10:05 +000071 phy_write(phydev, AT803X_MMD_ACCESS_CONTROL_DATA,
Matus Ujhelyi0ca71112012-10-14 19:07:16 +000072 mac[(i * 2) + 1] | (mac[(i * 2)] << 8));
Mugunthan V Nea13c9e2013-06-03 20:10:05 +000073 }
74
75 value = phy_read(phydev, AT803X_INTR_ENABLE);
76 value |= AT803X_WOL_ENABLE;
77 ret = phy_write(phydev, AT803X_INTR_ENABLE, value);
78 if (ret)
79 return ret;
80 value = phy_read(phydev, AT803X_INTR_STATUS);
81 } else {
82 value = phy_read(phydev, AT803X_INTR_ENABLE);
83 value &= (~AT803X_WOL_ENABLE);
84 ret = phy_write(phydev, AT803X_INTR_ENABLE, value);
85 if (ret)
86 return ret;
87 value = phy_read(phydev, AT803X_INTR_STATUS);
Matus Ujhelyi0ca71112012-10-14 19:07:16 +000088 }
Mugunthan V Nea13c9e2013-06-03 20:10:05 +000089
90 return ret;
91}
92
93static void at803x_get_wol(struct phy_device *phydev,
94 struct ethtool_wolinfo *wol)
95{
96 u32 value;
97
98 wol->supported = WAKE_MAGIC;
99 wol->wolopts = 0;
100
101 value = phy_read(phydev, AT803X_INTR_ENABLE);
102 if (value & AT803X_WOL_ENABLE)
103 wol->wolopts |= WAKE_MAGIC;
Matus Ujhelyi0ca71112012-10-14 19:07:16 +0000104}
105
Daniel Mack6229ed12013-09-21 16:53:02 +0200106static int at803x_suspend(struct phy_device *phydev)
107{
108 int value;
109 int wol_enabled;
110
111 mutex_lock(&phydev->lock);
112
113 value = phy_read(phydev, AT803X_INTR_ENABLE);
114 wol_enabled = value & AT803X_WOL_ENABLE;
115
116 value = phy_read(phydev, MII_BMCR);
117
118 if (wol_enabled)
119 value |= BMCR_ISOLATE;
120 else
121 value |= BMCR_PDOWN;
122
123 phy_write(phydev, MII_BMCR, value);
124
125 mutex_unlock(&phydev->lock);
126
127 return 0;
128}
129
130static int at803x_resume(struct phy_device *phydev)
131{
132 int value;
133
134 mutex_lock(&phydev->lock);
135
136 value = phy_read(phydev, MII_BMCR);
137 value &= ~(BMCR_PDOWN | BMCR_ISOLATE);
138 phy_write(phydev, MII_BMCR, value);
139
140 mutex_unlock(&phydev->lock);
141
142 return 0;
143}
144
Matus Ujhelyi0ca71112012-10-14 19:07:16 +0000145static int at803x_config_init(struct phy_device *phydev)
146{
147 int val;
Mugunthan V N1ca6d1b2013-06-03 20:10:06 +0000148 int ret;
Matus Ujhelyi0ca71112012-10-14 19:07:16 +0000149 u32 features;
Matus Ujhelyi0ca71112012-10-14 19:07:16 +0000150
151 features = SUPPORTED_TP | SUPPORTED_MII | SUPPORTED_AUI |
152 SUPPORTED_FIBRE | SUPPORTED_BNC;
153
154 val = phy_read(phydev, MII_BMSR);
155 if (val < 0)
156 return val;
157
158 if (val & BMSR_ANEGCAPABLE)
159 features |= SUPPORTED_Autoneg;
160 if (val & BMSR_100FULL)
161 features |= SUPPORTED_100baseT_Full;
162 if (val & BMSR_100HALF)
163 features |= SUPPORTED_100baseT_Half;
164 if (val & BMSR_10FULL)
165 features |= SUPPORTED_10baseT_Full;
166 if (val & BMSR_10HALF)
167 features |= SUPPORTED_10baseT_Half;
168
169 if (val & BMSR_ESTATEN) {
170 val = phy_read(phydev, MII_ESTATUS);
171 if (val < 0)
172 return val;
173
174 if (val & ESTATUS_1000_TFULL)
175 features |= SUPPORTED_1000baseT_Full;
176 if (val & ESTATUS_1000_THALF)
177 features |= SUPPORTED_1000baseT_Half;
178 }
179
180 phydev->supported = features;
181 phydev->advertising = features;
182
Mugunthan V N1ca6d1b2013-06-03 20:10:06 +0000183 if (phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID) {
184 ret = phy_write(phydev, AT803X_DEBUG_ADDR,
185 AT803X_DEBUG_SYSTEM_MODE_CTRL);
186 if (ret)
187 return ret;
188 ret = phy_write(phydev, AT803X_DEBUG_DATA,
189 AT803X_DEBUG_RGMII_TX_CLK_DLY);
190 if (ret)
191 return ret;
192 }
193
Matus Ujhelyi0ca71112012-10-14 19:07:16 +0000194 return 0;
195}
196
Zhao Qiang77a99392014-03-28 15:39:41 +0800197static int at803x_ack_interrupt(struct phy_device *phydev)
198{
199 int err;
200
201 err = phy_read(phydev, AT803X_INSR);
202
203 return (err < 0) ? err : 0;
204}
205
206static int at803x_config_intr(struct phy_device *phydev)
207{
208 int err;
209 int value;
210
211 value = phy_read(phydev, AT803X_INER);
212
213 if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
214 err = phy_write(phydev, AT803X_INER,
215 value | AT803X_INER_INIT);
216 else
217 err = phy_write(phydev, AT803X_INER, 0);
218
219 return err;
220}
221
Mugunthan V N317420a2013-06-03 20:10:04 +0000222static struct phy_driver at803x_driver[] = {
223{
224 /* ATHEROS 8035 */
Matus Ujhelyi0ca71112012-10-14 19:07:16 +0000225 .phy_id = 0x004dd072,
226 .name = "Atheros 8035 ethernet",
227 .phy_id_mask = 0xffffffef,
228 .config_init = at803x_config_init,
Mugunthan V Nea13c9e2013-06-03 20:10:05 +0000229 .set_wol = at803x_set_wol,
230 .get_wol = at803x_get_wol,
Daniel Mack6229ed12013-09-21 16:53:02 +0200231 .suspend = at803x_suspend,
232 .resume = at803x_resume,
Matus Ujhelyi0ca71112012-10-14 19:07:16 +0000233 .features = PHY_GBIT_FEATURES,
234 .flags = PHY_HAS_INTERRUPT,
Daniel Mack0197ffe2013-09-21 16:53:01 +0200235 .config_aneg = genphy_config_aneg,
236 .read_status = genphy_read_status,
Matus Ujhelyi0ca71112012-10-14 19:07:16 +0000237 .driver = {
238 .owner = THIS_MODULE,
239 },
Mugunthan V N317420a2013-06-03 20:10:04 +0000240}, {
241 /* ATHEROS 8030 */
Matus Ujhelyi0ca71112012-10-14 19:07:16 +0000242 .phy_id = 0x004dd076,
243 .name = "Atheros 8030 ethernet",
244 .phy_id_mask = 0xffffffef,
245 .config_init = at803x_config_init,
Mugunthan V Nea13c9e2013-06-03 20:10:05 +0000246 .set_wol = at803x_set_wol,
247 .get_wol = at803x_get_wol,
Daniel Mack6229ed12013-09-21 16:53:02 +0200248 .suspend = at803x_suspend,
249 .resume = at803x_resume,
Matus Ujhelyi0ca71112012-10-14 19:07:16 +0000250 .features = PHY_GBIT_FEATURES,
251 .flags = PHY_HAS_INTERRUPT,
Daniel Mack0197ffe2013-09-21 16:53:01 +0200252 .config_aneg = genphy_config_aneg,
253 .read_status = genphy_read_status,
Matus Ujhelyi0ca71112012-10-14 19:07:16 +0000254 .driver = {
255 .owner = THIS_MODULE,
256 },
Mugunthan V N05d7cce2013-06-03 20:10:07 +0000257}, {
258 /* ATHEROS 8031 */
259 .phy_id = 0x004dd074,
260 .name = "Atheros 8031 ethernet",
261 .phy_id_mask = 0xffffffef,
262 .config_init = at803x_config_init,
263 .set_wol = at803x_set_wol,
264 .get_wol = at803x_get_wol,
Daniel Mack6229ed12013-09-21 16:53:02 +0200265 .suspend = at803x_suspend,
266 .resume = at803x_resume,
Mugunthan V N05d7cce2013-06-03 20:10:07 +0000267 .features = PHY_GBIT_FEATURES,
268 .flags = PHY_HAS_INTERRUPT,
Daniel Mack0197ffe2013-09-21 16:53:01 +0200269 .config_aneg = genphy_config_aneg,
270 .read_status = genphy_read_status,
Zhao Qiang77a99392014-03-28 15:39:41 +0800271 .ack_interrupt = &at803x_ack_interrupt,
272 .config_intr = &at803x_config_intr,
Mugunthan V N05d7cce2013-06-03 20:10:07 +0000273 .driver = {
274 .owner = THIS_MODULE,
275 },
Mugunthan V N317420a2013-06-03 20:10:04 +0000276} };
Matus Ujhelyi0ca71112012-10-14 19:07:16 +0000277
278static int __init atheros_init(void)
279{
Mugunthan V N317420a2013-06-03 20:10:04 +0000280 return phy_drivers_register(at803x_driver,
281 ARRAY_SIZE(at803x_driver));
Matus Ujhelyi0ca71112012-10-14 19:07:16 +0000282}
283
284static void __exit atheros_exit(void)
285{
Mugunthan V N317420a2013-06-03 20:10:04 +0000286 return phy_drivers_unregister(at803x_driver,
287 ARRAY_SIZE(at803x_driver));
Matus Ujhelyi0ca71112012-10-14 19:07:16 +0000288}
289
290module_init(atheros_init);
291module_exit(atheros_exit);
292
293static struct mdio_device_id __maybe_unused atheros_tbl[] = {
294 { 0x004dd076, 0xffffffef },
Helmut Schaace9a1bf2013-07-11 13:57:34 +0200295 { 0x004dd074, 0xffffffef },
Matus Ujhelyi0ca71112012-10-14 19:07:16 +0000296 { 0x004dd072, 0xffffffef },
297 { }
298};
299
300MODULE_DEVICE_TABLE(mdio, atheros_tbl);