1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17#include <linux/kernel.h>
18#include <linux/module.h>
19#include <linux/mii.h>
20#include <linux/ethtool.h>
21#include <linux/phy.h>
22#include <linux/microchipphy.h>
23#include <linux/delay.h>
24#include <linux/of.h>
25#include <dt-bindings/net/microchip-lan78xx.h>
26
27#define DRIVER_AUTHOR "WOOJUNG HUH <woojung.huh@microchip.com>"
28#define DRIVER_DESC "Microchip LAN88XX PHY driver"
29
30struct lan88xx_priv {
31 int chip_id;
32 int chip_rev;
33 __u32 wolopts;
34};
35
36static int lan88xx_read_page(struct phy_device *phydev)
37{
38 return __phy_read(phydev, LAN88XX_EXT_PAGE_ACCESS);
39}
40
41static int lan88xx_write_page(struct phy_device *phydev, int page)
42{
43 return __phy_write(phydev, LAN88XX_EXT_PAGE_ACCESS, page);
44}
45
46static int lan88xx_phy_config_intr(struct phy_device *phydev)
47{
48 int rc;
49
50 if (phydev->interrupts == PHY_INTERRUPT_ENABLED) {
51
52 rc = phy_write(phydev, LAN88XX_INT_MASK, 0x7FFF);
53 rc = phy_read(phydev, LAN88XX_INT_STS);
54 rc = phy_write(phydev, LAN88XX_INT_MASK,
55 LAN88XX_INT_MASK_MDINTPIN_EN_ |
56 LAN88XX_INT_MASK_LINK_CHANGE_);
57 } else {
58 rc = phy_write(phydev, LAN88XX_INT_MASK, 0);
59 }
60
61 return rc < 0 ? rc : 0;
62}
63
64static int lan88xx_phy_ack_interrupt(struct phy_device *phydev)
65{
66 int rc = phy_read(phydev, LAN88XX_INT_STS);
67
68 return rc < 0 ? rc : 0;
69}
70
71static int lan88xx_suspend(struct phy_device *phydev)
72{
73 struct lan88xx_priv *priv = phydev->priv;
74
75
76 if (!priv->wolopts)
77 genphy_suspend(phydev);
78
79 return 0;
80}
81
82static int lan88xx_TR_reg_set(struct phy_device *phydev, u16 regaddr,
83 u32 data)
84{
85 int val, save_page, ret = 0;
86 u16 buf;
87
88
89 save_page = phy_save_page(phydev);
90 if (save_page < 0) {
91 pr_warn("Failed to get current page\n");
92 goto err;
93 }
94
95
96 lan88xx_write_page(phydev, LAN88XX_EXT_PAGE_ACCESS_TR);
97
98 ret = __phy_write(phydev, LAN88XX_EXT_PAGE_TR_LOW_DATA,
99 (data & 0xFFFF));
100 if (ret < 0) {
101 pr_warn("Failed to write TR low data\n");
102 goto err;
103 }
104
105 ret = __phy_write(phydev, LAN88XX_EXT_PAGE_TR_HIGH_DATA,
106 (data & 0x00FF0000) >> 16);
107 if (ret < 0) {
108 pr_warn("Failed to write TR high data\n");
109 goto err;
110 }
111
112
113 buf = (regaddr & ~(0x3 << 13));
114 buf |= 0x8000;
115
116 ret = __phy_write(phydev, LAN88XX_EXT_PAGE_TR_CR, buf);
117 if (ret < 0) {
118 pr_warn("Failed to write data in reg\n");
119 goto err;
120 }
121
122 usleep_range(1000, 2000);
123 val = __phy_read(phydev, LAN88XX_EXT_PAGE_TR_CR);
124 if (!(val & 0x8000))
125 pr_warn("TR Register[0x%X] configuration failed\n", regaddr);
126err:
127 return phy_restore_page(phydev, save_page, ret);
128}
129
130static void lan88xx_config_TR_regs(struct phy_device *phydev)
131{
132 int err;
133
134
135
136
137
138 err = lan88xx_TR_reg_set(phydev, 0x0F82, 0x12B00A);
139 if (err < 0)
140 pr_warn("Failed to Set Register[0x0F82]\n");
141
142
143
144
145
146 err = lan88xx_TR_reg_set(phydev, 0x168C, 0xD2C46F);
147 if (err < 0)
148 pr_warn("Failed to Set Register[0x168C]\n");
149
150
151
152
153
154 err = lan88xx_TR_reg_set(phydev, 0x17A2, 0x620);
155 if (err < 0)
156 pr_warn("Failed to Set Register[0x17A2]\n");
157
158
159
160
161
162
163 err = lan88xx_TR_reg_set(phydev, 0x16A0, 0xEEFFDD);
164 if (err < 0)
165 pr_warn("Failed to Set Register[0x16A0]\n");
166
167
168
169
170
171 err = lan88xx_TR_reg_set(phydev, 0x16A6, 0x071448);
172 if (err < 0)
173 pr_warn("Failed to Set Register[0x16A6]\n");
174
175
176
177
178
179 err = lan88xx_TR_reg_set(phydev, 0x16A4, 0x13132F);
180 if (err < 0)
181 pr_warn("Failed to Set Register[0x16A4]\n");
182
183
184
185
186
187 err = lan88xx_TR_reg_set(phydev, 0x16A8, 0x0);
188 if (err < 0)
189 pr_warn("Failed to Set Register[0x16A8]\n");
190
191
192
193
194
195
196 err = lan88xx_TR_reg_set(phydev, 0x0FE8, 0x91B06C);
197 if (err < 0)
198 pr_warn("Failed to Set Register[0x0FE8]\n");
199
200
201
202
203
204
205 err = lan88xx_TR_reg_set(phydev, 0x0FFC, 0xC0A028);
206 if (err < 0)
207 pr_warn("Failed to Set Register[0x0FFC]\n");
208
209
210
211
212
213
214 err = lan88xx_TR_reg_set(phydev, 0x0FEA, 0x041600);
215 if (err < 0)
216 pr_warn("Failed to Set Register[0x0FEA]\n");
217
218
219
220
221 err = lan88xx_TR_reg_set(phydev, 0x1686, 0x000004);
222 if (err < 0)
223 pr_warn("Failed to Set Register[0x1686]\n");
224}
225
226static int lan88xx_probe(struct phy_device *phydev)
227{
228 struct device *dev = &phydev->mdio.dev;
229 struct lan88xx_priv *priv;
230 u32 led_modes[4];
231 int len;
232
233 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
234 if (!priv)
235 return -ENOMEM;
236
237 priv->wolopts = 0;
238
239 len = of_property_read_variable_u32_array(dev->of_node,
240 "microchip,led-modes",
241 led_modes,
242 0,
243 ARRAY_SIZE(led_modes));
244 if (len >= 0) {
245 u32 reg = 0;
246 int i;
247
248 for (i = 0; i < len; i++) {
249 if (led_modes[i] > 15)
250 return -EINVAL;
251 reg |= led_modes[i] << (i * 4);
252 }
253 for (; i < ARRAY_SIZE(led_modes); i++)
254 reg |= LAN78XX_FORCE_LED_OFF << (i * 4);
255 (void)phy_write(phydev, LAN78XX_PHY_LED_MODE_SELECT, reg);
256 } else if (len == -EOVERFLOW) {
257 return -EINVAL;
258 }
259
260
261 priv->chip_id = phy_read_mmd(phydev, 3, LAN88XX_MMD3_CHIP_ID);
262 priv->chip_rev = phy_read_mmd(phydev, 3, LAN88XX_MMD3_CHIP_REV);
263
264 phydev->priv = priv;
265
266 return 0;
267}
268
269static void lan88xx_remove(struct phy_device *phydev)
270{
271 struct device *dev = &phydev->mdio.dev;
272 struct lan88xx_priv *priv = phydev->priv;
273
274 if (priv)
275 devm_kfree(dev, priv);
276}
277
278static int lan88xx_set_wol(struct phy_device *phydev,
279 struct ethtool_wolinfo *wol)
280{
281 struct lan88xx_priv *priv = phydev->priv;
282
283 priv->wolopts = wol->wolopts;
284
285 return 0;
286}
287
288static void lan88xx_set_mdix(struct phy_device *phydev)
289{
290 int buf;
291 int val;
292
293 switch (phydev->mdix_ctrl) {
294 case ETH_TP_MDI:
295 val = LAN88XX_EXT_MODE_CTRL_MDI_;
296 break;
297 case ETH_TP_MDI_X:
298 val = LAN88XX_EXT_MODE_CTRL_MDI_X_;
299 break;
300 case ETH_TP_MDI_AUTO:
301 val = LAN88XX_EXT_MODE_CTRL_AUTO_MDIX_;
302 break;
303 default:
304 return;
305 }
306
307 phy_write(phydev, LAN88XX_EXT_PAGE_ACCESS, LAN88XX_EXT_PAGE_SPACE_1);
308 buf = phy_read(phydev, LAN88XX_EXT_MODE_CTRL);
309 buf &= ~LAN88XX_EXT_MODE_CTRL_MDIX_MASK_;
310 buf |= val;
311 phy_write(phydev, LAN88XX_EXT_MODE_CTRL, buf);
312 phy_write(phydev, LAN88XX_EXT_PAGE_ACCESS, LAN88XX_EXT_PAGE_SPACE_0);
313}
314
315static int lan88xx_config_init(struct phy_device *phydev)
316{
317 int val;
318
319 genphy_config_init(phydev);
320
321 val = phy_read_mmd(phydev, MDIO_MMD_PCS,
322 PHY_ARDENNES_MMD_DEV_3_PHY_CFG);
323 val |= PHY_ARDENNES_MMD_DEV_3_PHY_CFG_ZD_DLY_EN_;
324
325 phy_write_mmd(phydev, MDIO_MMD_PCS, PHY_ARDENNES_MMD_DEV_3_PHY_CFG,
326 val);
327
328
329 lan88xx_config_TR_regs(phydev);
330
331 return 0;
332}
333
334static int lan88xx_config_aneg(struct phy_device *phydev)
335{
336 lan88xx_set_mdix(phydev);
337
338 return genphy_config_aneg(phydev);
339}
340
341static struct phy_driver microchip_phy_driver[] = {
342{
343 .phy_id = 0x0007c130,
344 .phy_id_mask = 0xfffffff0,
345 .name = "Microchip LAN88xx",
346
347 .features = PHY_GBIT_FEATURES,
348 .flags = PHY_HAS_INTERRUPT,
349
350 .probe = lan88xx_probe,
351 .remove = lan88xx_remove,
352
353 .config_init = lan88xx_config_init,
354 .config_aneg = lan88xx_config_aneg,
355
356 .ack_interrupt = lan88xx_phy_ack_interrupt,
357 .config_intr = lan88xx_phy_config_intr,
358
359 .suspend = lan88xx_suspend,
360 .resume = genphy_resume,
361 .set_wol = lan88xx_set_wol,
362 .read_page = lan88xx_read_page,
363 .write_page = lan88xx_write_page,
364} };
365
366module_phy_driver(microchip_phy_driver);
367
368static struct mdio_device_id __maybe_unused microchip_tbl[] = {
369 { 0x0007c130, 0xfffffff0 },
370 { }
371};
372
373MODULE_DEVICE_TABLE(mdio, microchip_tbl);
374
375MODULE_AUTHOR(DRIVER_AUTHOR);
376MODULE_DESCRIPTION(DRIVER_DESC);
377MODULE_LICENSE("GPL");
378