Loading...
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2012 Daniel Schwierzeck <daniel.schwierzeck@googlemail.com>
4 * Copyright (C) 2016 Hauke Mehrtens <hauke@hauke-m.de>
5 */
6
7#include <linux/mdio.h>
8#include <linux/module.h>
9#include <linux/phy.h>
10#include <linux/of.h>
11#include <linux/bitfield.h>
12
13#define XWAY_MDIO_MIICTRL 0x17 /* mii control */
14#define XWAY_MDIO_IMASK 0x19 /* interrupt mask */
15#define XWAY_MDIO_ISTAT 0x1A /* interrupt status */
16#define XWAY_MDIO_LED 0x1B /* led control */
17
18#define XWAY_MDIO_MIICTRL_RXSKEW_MASK GENMASK(14, 12)
19#define XWAY_MDIO_MIICTRL_TXSKEW_MASK GENMASK(10, 8)
20
21/* bit 15:12 are reserved */
22#define XWAY_MDIO_LED_LED3_EN BIT(11) /* Enable the integrated function of LED3 */
23#define XWAY_MDIO_LED_LED2_EN BIT(10) /* Enable the integrated function of LED2 */
24#define XWAY_MDIO_LED_LED1_EN BIT(9) /* Enable the integrated function of LED1 */
25#define XWAY_MDIO_LED_LED0_EN BIT(8) /* Enable the integrated function of LED0 */
26/* bit 7:4 are reserved */
27#define XWAY_MDIO_LED_LED3_DA BIT(3) /* Direct Access to LED3 */
28#define XWAY_MDIO_LED_LED2_DA BIT(2) /* Direct Access to LED2 */
29#define XWAY_MDIO_LED_LED1_DA BIT(1) /* Direct Access to LED1 */
30#define XWAY_MDIO_LED_LED0_DA BIT(0) /* Direct Access to LED0 */
31
32#define XWAY_MDIO_INIT_WOL BIT(15) /* Wake-On-LAN */
33#define XWAY_MDIO_INIT_MSRE BIT(14)
34#define XWAY_MDIO_INIT_NPRX BIT(13)
35#define XWAY_MDIO_INIT_NPTX BIT(12)
36#define XWAY_MDIO_INIT_ANE BIT(11) /* Auto-Neg error */
37#define XWAY_MDIO_INIT_ANC BIT(10) /* Auto-Neg complete */
38#define XWAY_MDIO_INIT_ADSC BIT(5) /* Link auto-downspeed detect */
39#define XWAY_MDIO_INIT_MPIPC BIT(4)
40#define XWAY_MDIO_INIT_MDIXC BIT(3)
41#define XWAY_MDIO_INIT_DXMC BIT(2) /* Duplex mode change */
42#define XWAY_MDIO_INIT_LSPC BIT(1) /* Link speed change */
43#define XWAY_MDIO_INIT_LSTC BIT(0) /* Link state change */
44#define XWAY_MDIO_INIT_MASK (XWAY_MDIO_INIT_LSTC | \
45 XWAY_MDIO_INIT_ADSC)
46
47#define ADVERTISED_MPD BIT(10) /* Multi-port device */
48
49/* LED Configuration */
50#define XWAY_MMD_LEDCH 0x01E0
51/* Inverse of SCAN Function */
52#define XWAY_MMD_LEDCH_NACS_NONE 0x0000
53#define XWAY_MMD_LEDCH_NACS_LINK 0x0001
54#define XWAY_MMD_LEDCH_NACS_PDOWN 0x0002
55#define XWAY_MMD_LEDCH_NACS_EEE 0x0003
56#define XWAY_MMD_LEDCH_NACS_ANEG 0x0004
57#define XWAY_MMD_LEDCH_NACS_ABIST 0x0005
58#define XWAY_MMD_LEDCH_NACS_CDIAG 0x0006
59#define XWAY_MMD_LEDCH_NACS_TEST 0x0007
60/* Slow Blink Frequency */
61#define XWAY_MMD_LEDCH_SBF_F02HZ 0x0000
62#define XWAY_MMD_LEDCH_SBF_F04HZ 0x0010
63#define XWAY_MMD_LEDCH_SBF_F08HZ 0x0020
64#define XWAY_MMD_LEDCH_SBF_F16HZ 0x0030
65/* Fast Blink Frequency */
66#define XWAY_MMD_LEDCH_FBF_F02HZ 0x0000
67#define XWAY_MMD_LEDCH_FBF_F04HZ 0x0040
68#define XWAY_MMD_LEDCH_FBF_F08HZ 0x0080
69#define XWAY_MMD_LEDCH_FBF_F16HZ 0x00C0
70/* LED Configuration */
71#define XWAY_MMD_LEDCL 0x01E1
72/* Complex Blinking Configuration */
73#define XWAY_MMD_LEDCH_CBLINK_NONE 0x0000
74#define XWAY_MMD_LEDCH_CBLINK_LINK 0x0001
75#define XWAY_MMD_LEDCH_CBLINK_PDOWN 0x0002
76#define XWAY_MMD_LEDCH_CBLINK_EEE 0x0003
77#define XWAY_MMD_LEDCH_CBLINK_ANEG 0x0004
78#define XWAY_MMD_LEDCH_CBLINK_ABIST 0x0005
79#define XWAY_MMD_LEDCH_CBLINK_CDIAG 0x0006
80#define XWAY_MMD_LEDCH_CBLINK_TEST 0x0007
81/* Complex SCAN Configuration */
82#define XWAY_MMD_LEDCH_SCAN_NONE 0x0000
83#define XWAY_MMD_LEDCH_SCAN_LINK 0x0010
84#define XWAY_MMD_LEDCH_SCAN_PDOWN 0x0020
85#define XWAY_MMD_LEDCH_SCAN_EEE 0x0030
86#define XWAY_MMD_LEDCH_SCAN_ANEG 0x0040
87#define XWAY_MMD_LEDCH_SCAN_ABIST 0x0050
88#define XWAY_MMD_LEDCH_SCAN_CDIAG 0x0060
89#define XWAY_MMD_LEDCH_SCAN_TEST 0x0070
90/* Configuration for LED Pin x */
91#define XWAY_MMD_LED0H 0x01E2
92/* Fast Blinking Configuration */
93#define XWAY_MMD_LEDxH_BLINKF_MASK 0x000F
94#define XWAY_MMD_LEDxH_BLINKF_NONE 0x0000
95#define XWAY_MMD_LEDxH_BLINKF_LINK10 0x0001
96#define XWAY_MMD_LEDxH_BLINKF_LINK100 0x0002
97#define XWAY_MMD_LEDxH_BLINKF_LINK10X 0x0003
98#define XWAY_MMD_LEDxH_BLINKF_LINK1000 0x0004
99#define XWAY_MMD_LEDxH_BLINKF_LINK10_0 0x0005
100#define XWAY_MMD_LEDxH_BLINKF_LINK100X 0x0006
101#define XWAY_MMD_LEDxH_BLINKF_LINK10XX 0x0007
102#define XWAY_MMD_LEDxH_BLINKF_PDOWN 0x0008
103#define XWAY_MMD_LEDxH_BLINKF_EEE 0x0009
104#define XWAY_MMD_LEDxH_BLINKF_ANEG 0x000A
105#define XWAY_MMD_LEDxH_BLINKF_ABIST 0x000B
106#define XWAY_MMD_LEDxH_BLINKF_CDIAG 0x000C
107/* Constant On Configuration */
108#define XWAY_MMD_LEDxH_CON_MASK 0x00F0
109#define XWAY_MMD_LEDxH_CON_NONE 0x0000
110#define XWAY_MMD_LEDxH_CON_LINK10 0x0010
111#define XWAY_MMD_LEDxH_CON_LINK100 0x0020
112#define XWAY_MMD_LEDxH_CON_LINK10X 0x0030
113#define XWAY_MMD_LEDxH_CON_LINK1000 0x0040
114#define XWAY_MMD_LEDxH_CON_LINK10_0 0x0050
115#define XWAY_MMD_LEDxH_CON_LINK100X 0x0060
116#define XWAY_MMD_LEDxH_CON_LINK10XX 0x0070
117#define XWAY_MMD_LEDxH_CON_PDOWN 0x0080
118#define XWAY_MMD_LEDxH_CON_EEE 0x0090
119#define XWAY_MMD_LEDxH_CON_ANEG 0x00A0
120#define XWAY_MMD_LEDxH_CON_ABIST 0x00B0
121#define XWAY_MMD_LEDxH_CON_CDIAG 0x00C0
122#define XWAY_MMD_LEDxH_CON_COPPER 0x00D0
123#define XWAY_MMD_LEDxH_CON_FIBER 0x00E0
124/* Configuration for LED Pin x */
125#define XWAY_MMD_LED0L 0x01E3
126/* Pulsing Configuration */
127#define XWAY_MMD_LEDxL_PULSE_MASK 0x000F
128#define XWAY_MMD_LEDxL_PULSE_NONE 0x0000
129#define XWAY_MMD_LEDxL_PULSE_TXACT 0x0001
130#define XWAY_MMD_LEDxL_PULSE_RXACT 0x0002
131#define XWAY_MMD_LEDxL_PULSE_COL 0x0004
132/* Slow Blinking Configuration */
133#define XWAY_MMD_LEDxL_BLINKS_MASK 0x00F0
134#define XWAY_MMD_LEDxL_BLINKS_NONE 0x0000
135#define XWAY_MMD_LEDxL_BLINKS_LINK10 0x0010
136#define XWAY_MMD_LEDxL_BLINKS_LINK100 0x0020
137#define XWAY_MMD_LEDxL_BLINKS_LINK10X 0x0030
138#define XWAY_MMD_LEDxL_BLINKS_LINK1000 0x0040
139#define XWAY_MMD_LEDxL_BLINKS_LINK10_0 0x0050
140#define XWAY_MMD_LEDxL_BLINKS_LINK100X 0x0060
141#define XWAY_MMD_LEDxL_BLINKS_LINK10XX 0x0070
142#define XWAY_MMD_LEDxL_BLINKS_PDOWN 0x0080
143#define XWAY_MMD_LEDxL_BLINKS_EEE 0x0090
144#define XWAY_MMD_LEDxL_BLINKS_ANEG 0x00A0
145#define XWAY_MMD_LEDxL_BLINKS_ABIST 0x00B0
146#define XWAY_MMD_LEDxL_BLINKS_CDIAG 0x00C0
147#define XWAY_MMD_LED1H 0x01E4
148#define XWAY_MMD_LED1L 0x01E5
149#define XWAY_MMD_LED2H 0x01E6
150#define XWAY_MMD_LED2L 0x01E7
151#define XWAY_MMD_LED3H 0x01E8
152#define XWAY_MMD_LED3L 0x01E9
153
154#define PHY_ID_PHY11G_1_3 0x030260D1
155#define PHY_ID_PHY22F_1_3 0x030260E1
156#define PHY_ID_PHY11G_1_4 0xD565A400
157#define PHY_ID_PHY22F_1_4 0xD565A410
158#define PHY_ID_PHY11G_1_5 0xD565A401
159#define PHY_ID_PHY22F_1_5 0xD565A411
160#define PHY_ID_PHY11G_VR9_1_1 0xD565A408
161#define PHY_ID_PHY22F_VR9_1_1 0xD565A418
162#define PHY_ID_PHY11G_VR9_1_2 0xD565A409
163#define PHY_ID_PHY22F_VR9_1_2 0xD565A419
164
165static const int xway_internal_delay[] = {0, 500, 1000, 1500, 2000, 2500,
166 3000, 3500};
167
168static int xway_gphy_rgmii_init(struct phy_device *phydev)
169{
170 struct device *dev = &phydev->mdio.dev;
171 unsigned int delay_size = ARRAY_SIZE(xway_internal_delay);
172 s32 int_delay;
173 int val = 0;
174
175 if (!phy_interface_is_rgmii(phydev))
176 return 0;
177
178 /* Existing behavior was to use default pin strapping delay in rgmii
179 * mode, but rgmii should have meant no delay. Warn existing users,
180 * but do not change anything at the moment.
181 */
182 if (phydev->interface == PHY_INTERFACE_MODE_RGMII) {
183 u16 txskew, rxskew;
184
185 val = phy_read(phydev, XWAY_MDIO_MIICTRL);
186 if (val < 0)
187 return val;
188
189 txskew = FIELD_GET(XWAY_MDIO_MIICTRL_TXSKEW_MASK, val);
190 rxskew = FIELD_GET(XWAY_MDIO_MIICTRL_RXSKEW_MASK, val);
191
192 if (txskew > 0 || rxskew > 0)
193 phydev_warn(phydev,
194 "PHY has delays (e.g. via pin strapping), but phy-mode = 'rgmii'\n"
195 "Should be 'rgmii-id' to use internal delays txskew:%d ps rxskew:%d ps\n",
196 xway_internal_delay[txskew],
197 xway_internal_delay[rxskew]);
198 return 0;
199 }
200
201 if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID ||
202 phydev->interface == PHY_INTERFACE_MODE_RGMII_RXID) {
203 int_delay = phy_get_internal_delay(phydev, dev,
204 xway_internal_delay,
205 delay_size, true);
206
207 /* if rx-internal-delay-ps is missing, use default of 2.0 ns */
208 if (int_delay < 0)
209 int_delay = 4; /* 2000 ps */
210
211 val |= FIELD_PREP(XWAY_MDIO_MIICTRL_RXSKEW_MASK, int_delay);
212 }
213
214 if (phydev->interface == PHY_INTERFACE_MODE_RGMII_ID ||
215 phydev->interface == PHY_INTERFACE_MODE_RGMII_TXID) {
216 int_delay = phy_get_internal_delay(phydev, dev,
217 xway_internal_delay,
218 delay_size, false);
219
220 /* if tx-internal-delay-ps is missing, use default of 2.0 ns */
221 if (int_delay < 0)
222 int_delay = 4; /* 2000 ps */
223
224 val |= FIELD_PREP(XWAY_MDIO_MIICTRL_TXSKEW_MASK, int_delay);
225 }
226
227 return phy_modify(phydev, XWAY_MDIO_MIICTRL,
228 XWAY_MDIO_MIICTRL_RXSKEW_MASK |
229 XWAY_MDIO_MIICTRL_TXSKEW_MASK, val);
230}
231
232static int xway_gphy_config_init(struct phy_device *phydev)
233{
234 int err;
235 u32 ledxh;
236 u32 ledxl;
237
238 /* Mask all interrupts */
239 err = phy_write(phydev, XWAY_MDIO_IMASK, 0);
240 if (err)
241 return err;
242
243 /* Clear all pending interrupts */
244 phy_read(phydev, XWAY_MDIO_ISTAT);
245
246 /* Ensure that integrated led function is enabled for all leds */
247 err = phy_write(phydev, XWAY_MDIO_LED,
248 XWAY_MDIO_LED_LED0_EN |
249 XWAY_MDIO_LED_LED1_EN |
250 XWAY_MDIO_LED_LED2_EN |
251 XWAY_MDIO_LED_LED3_EN);
252 if (err)
253 return err;
254
255 phy_write_mmd(phydev, MDIO_MMD_VEND2, XWAY_MMD_LEDCH,
256 XWAY_MMD_LEDCH_NACS_NONE |
257 XWAY_MMD_LEDCH_SBF_F02HZ |
258 XWAY_MMD_LEDCH_FBF_F16HZ);
259 phy_write_mmd(phydev, MDIO_MMD_VEND2, XWAY_MMD_LEDCL,
260 XWAY_MMD_LEDCH_CBLINK_NONE |
261 XWAY_MMD_LEDCH_SCAN_NONE);
262
263 /**
264 * In most cases only one LED is connected to this phy, so
265 * configure them all to constant on and pulse mode. LED3 is
266 * only available in some packages, leave it in its reset
267 * configuration.
268 */
269 ledxh = XWAY_MMD_LEDxH_BLINKF_NONE | XWAY_MMD_LEDxH_CON_LINK10XX;
270 ledxl = XWAY_MMD_LEDxL_PULSE_TXACT | XWAY_MMD_LEDxL_PULSE_RXACT |
271 XWAY_MMD_LEDxL_BLINKS_NONE;
272 phy_write_mmd(phydev, MDIO_MMD_VEND2, XWAY_MMD_LED0H, ledxh);
273 phy_write_mmd(phydev, MDIO_MMD_VEND2, XWAY_MMD_LED0L, ledxl);
274 phy_write_mmd(phydev, MDIO_MMD_VEND2, XWAY_MMD_LED1H, ledxh);
275 phy_write_mmd(phydev, MDIO_MMD_VEND2, XWAY_MMD_LED1L, ledxl);
276 phy_write_mmd(phydev, MDIO_MMD_VEND2, XWAY_MMD_LED2H, ledxh);
277 phy_write_mmd(phydev, MDIO_MMD_VEND2, XWAY_MMD_LED2L, ledxl);
278
279 err = xway_gphy_rgmii_init(phydev);
280 if (err)
281 return err;
282
283 return 0;
284}
285
286static int xway_gphy14_config_aneg(struct phy_device *phydev)
287{
288 int reg, err;
289
290 /* Advertise as multi-port device, see IEEE802.3-2002 40.5.1.1 */
291 /* This is a workaround for an errata in rev < 1.5 devices */
292 reg = phy_read(phydev, MII_CTRL1000);
293 reg |= ADVERTISED_MPD;
294 err = phy_write(phydev, MII_CTRL1000, reg);
295 if (err)
296 return err;
297
298 return genphy_config_aneg(phydev);
299}
300
301static int xway_gphy_ack_interrupt(struct phy_device *phydev)
302{
303 int reg;
304
305 reg = phy_read(phydev, XWAY_MDIO_ISTAT);
306 return (reg < 0) ? reg : 0;
307}
308
309static int xway_gphy_config_intr(struct phy_device *phydev)
310{
311 u16 mask = 0;
312 int err;
313
314 if (phydev->interrupts == PHY_INTERRUPT_ENABLED) {
315 err = xway_gphy_ack_interrupt(phydev);
316 if (err)
317 return err;
318
319 mask = XWAY_MDIO_INIT_MASK;
320 err = phy_write(phydev, XWAY_MDIO_IMASK, mask);
321 } else {
322 err = phy_write(phydev, XWAY_MDIO_IMASK, mask);
323 if (err)
324 return err;
325
326 err = xway_gphy_ack_interrupt(phydev);
327 }
328
329 return err;
330}
331
332static irqreturn_t xway_gphy_handle_interrupt(struct phy_device *phydev)
333{
334 int irq_status;
335
336 irq_status = phy_read(phydev, XWAY_MDIO_ISTAT);
337 if (irq_status < 0) {
338 phy_error(phydev);
339 return IRQ_NONE;
340 }
341
342 if (!(irq_status & XWAY_MDIO_INIT_MASK))
343 return IRQ_NONE;
344
345 phy_trigger_machine(phydev);
346
347 return IRQ_HANDLED;
348}
349
350static struct phy_driver xway_gphy[] = {
351 {
352 .phy_id = PHY_ID_PHY11G_1_3,
353 .phy_id_mask = 0xffffffff,
354 .name = "Intel XWAY PHY11G (PEF 7071/PEF 7072) v1.3",
355 /* PHY_GBIT_FEATURES */
356 .config_init = xway_gphy_config_init,
357 .config_aneg = xway_gphy14_config_aneg,
358 .handle_interrupt = xway_gphy_handle_interrupt,
359 .config_intr = xway_gphy_config_intr,
360 .suspend = genphy_suspend,
361 .resume = genphy_resume,
362 }, {
363 .phy_id = PHY_ID_PHY22F_1_3,
364 .phy_id_mask = 0xffffffff,
365 .name = "Intel XWAY PHY22F (PEF 7061) v1.3",
366 /* PHY_BASIC_FEATURES */
367 .config_init = xway_gphy_config_init,
368 .config_aneg = xway_gphy14_config_aneg,
369 .handle_interrupt = xway_gphy_handle_interrupt,
370 .config_intr = xway_gphy_config_intr,
371 .suspend = genphy_suspend,
372 .resume = genphy_resume,
373 }, {
374 .phy_id = PHY_ID_PHY11G_1_4,
375 .phy_id_mask = 0xffffffff,
376 .name = "Intel XWAY PHY11G (PEF 7071/PEF 7072) v1.4",
377 /* PHY_GBIT_FEATURES */
378 .config_init = xway_gphy_config_init,
379 .config_aneg = xway_gphy14_config_aneg,
380 .handle_interrupt = xway_gphy_handle_interrupt,
381 .config_intr = xway_gphy_config_intr,
382 .suspend = genphy_suspend,
383 .resume = genphy_resume,
384 }, {
385 .phy_id = PHY_ID_PHY22F_1_4,
386 .phy_id_mask = 0xffffffff,
387 .name = "Intel XWAY PHY22F (PEF 7061) v1.4",
388 /* PHY_BASIC_FEATURES */
389 .config_init = xway_gphy_config_init,
390 .config_aneg = xway_gphy14_config_aneg,
391 .handle_interrupt = xway_gphy_handle_interrupt,
392 .config_intr = xway_gphy_config_intr,
393 .suspend = genphy_suspend,
394 .resume = genphy_resume,
395 }, {
396 .phy_id = PHY_ID_PHY11G_1_5,
397 .phy_id_mask = 0xffffffff,
398 .name = "Intel XWAY PHY11G (PEF 7071/PEF 7072) v1.5 / v1.6",
399 /* PHY_GBIT_FEATURES */
400 .config_init = xway_gphy_config_init,
401 .handle_interrupt = xway_gphy_handle_interrupt,
402 .config_intr = xway_gphy_config_intr,
403 .suspend = genphy_suspend,
404 .resume = genphy_resume,
405 }, {
406 .phy_id = PHY_ID_PHY22F_1_5,
407 .phy_id_mask = 0xffffffff,
408 .name = "Intel XWAY PHY22F (PEF 7061) v1.5 / v1.6",
409 /* PHY_BASIC_FEATURES */
410 .config_init = xway_gphy_config_init,
411 .handle_interrupt = xway_gphy_handle_interrupt,
412 .config_intr = xway_gphy_config_intr,
413 .suspend = genphy_suspend,
414 .resume = genphy_resume,
415 }, {
416 .phy_id = PHY_ID_PHY11G_VR9_1_1,
417 .phy_id_mask = 0xffffffff,
418 .name = "Intel XWAY PHY11G (xRX v1.1 integrated)",
419 /* PHY_GBIT_FEATURES */
420 .config_init = xway_gphy_config_init,
421 .handle_interrupt = xway_gphy_handle_interrupt,
422 .config_intr = xway_gphy_config_intr,
423 .suspend = genphy_suspend,
424 .resume = genphy_resume,
425 }, {
426 .phy_id = PHY_ID_PHY22F_VR9_1_1,
427 .phy_id_mask = 0xffffffff,
428 .name = "Intel XWAY PHY22F (xRX v1.1 integrated)",
429 /* PHY_BASIC_FEATURES */
430 .config_init = xway_gphy_config_init,
431 .handle_interrupt = xway_gphy_handle_interrupt,
432 .config_intr = xway_gphy_config_intr,
433 .suspend = genphy_suspend,
434 .resume = genphy_resume,
435 }, {
436 .phy_id = PHY_ID_PHY11G_VR9_1_2,
437 .phy_id_mask = 0xffffffff,
438 .name = "Intel XWAY PHY11G (xRX v1.2 integrated)",
439 /* PHY_GBIT_FEATURES */
440 .config_init = xway_gphy_config_init,
441 .handle_interrupt = xway_gphy_handle_interrupt,
442 .config_intr = xway_gphy_config_intr,
443 .suspend = genphy_suspend,
444 .resume = genphy_resume,
445 }, {
446 .phy_id = PHY_ID_PHY22F_VR9_1_2,
447 .phy_id_mask = 0xffffffff,
448 .name = "Intel XWAY PHY22F (xRX v1.2 integrated)",
449 /* PHY_BASIC_FEATURES */
450 .config_init = xway_gphy_config_init,
451 .handle_interrupt = xway_gphy_handle_interrupt,
452 .config_intr = xway_gphy_config_intr,
453 .suspend = genphy_suspend,
454 .resume = genphy_resume,
455 },
456};
457module_phy_driver(xway_gphy);
458
459static struct mdio_device_id __maybe_unused xway_gphy_tbl[] = {
460 { PHY_ID_PHY11G_1_3, 0xffffffff },
461 { PHY_ID_PHY22F_1_3, 0xffffffff },
462 { PHY_ID_PHY11G_1_4, 0xffffffff },
463 { PHY_ID_PHY22F_1_4, 0xffffffff },
464 { PHY_ID_PHY11G_1_5, 0xffffffff },
465 { PHY_ID_PHY22F_1_5, 0xffffffff },
466 { PHY_ID_PHY11G_VR9_1_1, 0xffffffff },
467 { PHY_ID_PHY22F_VR9_1_1, 0xffffffff },
468 { PHY_ID_PHY11G_VR9_1_2, 0xffffffff },
469 { PHY_ID_PHY22F_VR9_1_2, 0xffffffff },
470 { }
471};
472MODULE_DEVICE_TABLE(mdio, xway_gphy_tbl);
473
474MODULE_DESCRIPTION("Intel XWAY PHY driver");
475MODULE_LICENSE("GPL");
1/*
2 * Copyright (C) 2012 Daniel Schwierzeck <daniel.schwierzeck@googlemail.com>
3 * Copyright (C) 2016 Hauke Mehrtens <hauke@hauke-m.de>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#include <linux/mdio.h>
17#include <linux/module.h>
18#include <linux/phy.h>
19#include <linux/of.h>
20
21#define XWAY_MDIO_IMASK 0x19 /* interrupt mask */
22#define XWAY_MDIO_ISTAT 0x1A /* interrupt status */
23
24#define XWAY_MDIO_INIT_WOL BIT(15) /* Wake-On-LAN */
25#define XWAY_MDIO_INIT_MSRE BIT(14)
26#define XWAY_MDIO_INIT_NPRX BIT(13)
27#define XWAY_MDIO_INIT_NPTX BIT(12)
28#define XWAY_MDIO_INIT_ANE BIT(11) /* Auto-Neg error */
29#define XWAY_MDIO_INIT_ANC BIT(10) /* Auto-Neg complete */
30#define XWAY_MDIO_INIT_ADSC BIT(5) /* Link auto-downspeed detect */
31#define XWAY_MDIO_INIT_MPIPC BIT(4)
32#define XWAY_MDIO_INIT_MDIXC BIT(3)
33#define XWAY_MDIO_INIT_DXMC BIT(2) /* Duplex mode change */
34#define XWAY_MDIO_INIT_LSPC BIT(1) /* Link speed change */
35#define XWAY_MDIO_INIT_LSTC BIT(0) /* Link state change */
36#define XWAY_MDIO_INIT_MASK (XWAY_MDIO_INIT_LSTC | \
37 XWAY_MDIO_INIT_ADSC)
38
39#define ADVERTISED_MPD BIT(10) /* Multi-port device */
40
41/* LED Configuration */
42#define XWAY_MMD_LEDCH 0x01E0
43/* Inverse of SCAN Function */
44#define XWAY_MMD_LEDCH_NACS_NONE 0x0000
45#define XWAY_MMD_LEDCH_NACS_LINK 0x0001
46#define XWAY_MMD_LEDCH_NACS_PDOWN 0x0002
47#define XWAY_MMD_LEDCH_NACS_EEE 0x0003
48#define XWAY_MMD_LEDCH_NACS_ANEG 0x0004
49#define XWAY_MMD_LEDCH_NACS_ABIST 0x0005
50#define XWAY_MMD_LEDCH_NACS_CDIAG 0x0006
51#define XWAY_MMD_LEDCH_NACS_TEST 0x0007
52/* Slow Blink Frequency */
53#define XWAY_MMD_LEDCH_SBF_F02HZ 0x0000
54#define XWAY_MMD_LEDCH_SBF_F04HZ 0x0010
55#define XWAY_MMD_LEDCH_SBF_F08HZ 0x0020
56#define XWAY_MMD_LEDCH_SBF_F16HZ 0x0030
57/* Fast Blink Frequency */
58#define XWAY_MMD_LEDCH_FBF_F02HZ 0x0000
59#define XWAY_MMD_LEDCH_FBF_F04HZ 0x0040
60#define XWAY_MMD_LEDCH_FBF_F08HZ 0x0080
61#define XWAY_MMD_LEDCH_FBF_F16HZ 0x00C0
62/* LED Configuration */
63#define XWAY_MMD_LEDCL 0x01E1
64/* Complex Blinking Configuration */
65#define XWAY_MMD_LEDCH_CBLINK_NONE 0x0000
66#define XWAY_MMD_LEDCH_CBLINK_LINK 0x0001
67#define XWAY_MMD_LEDCH_CBLINK_PDOWN 0x0002
68#define XWAY_MMD_LEDCH_CBLINK_EEE 0x0003
69#define XWAY_MMD_LEDCH_CBLINK_ANEG 0x0004
70#define XWAY_MMD_LEDCH_CBLINK_ABIST 0x0005
71#define XWAY_MMD_LEDCH_CBLINK_CDIAG 0x0006
72#define XWAY_MMD_LEDCH_CBLINK_TEST 0x0007
73/* Complex SCAN Configuration */
74#define XWAY_MMD_LEDCH_SCAN_NONE 0x0000
75#define XWAY_MMD_LEDCH_SCAN_LINK 0x0010
76#define XWAY_MMD_LEDCH_SCAN_PDOWN 0x0020
77#define XWAY_MMD_LEDCH_SCAN_EEE 0x0030
78#define XWAY_MMD_LEDCH_SCAN_ANEG 0x0040
79#define XWAY_MMD_LEDCH_SCAN_ABIST 0x0050
80#define XWAY_MMD_LEDCH_SCAN_CDIAG 0x0060
81#define XWAY_MMD_LEDCH_SCAN_TEST 0x0070
82/* Configuration for LED Pin x */
83#define XWAY_MMD_LED0H 0x01E2
84/* Fast Blinking Configuration */
85#define XWAY_MMD_LEDxH_BLINKF_MASK 0x000F
86#define XWAY_MMD_LEDxH_BLINKF_NONE 0x0000
87#define XWAY_MMD_LEDxH_BLINKF_LINK10 0x0001
88#define XWAY_MMD_LEDxH_BLINKF_LINK100 0x0002
89#define XWAY_MMD_LEDxH_BLINKF_LINK10X 0x0003
90#define XWAY_MMD_LEDxH_BLINKF_LINK1000 0x0004
91#define XWAY_MMD_LEDxH_BLINKF_LINK10_0 0x0005
92#define XWAY_MMD_LEDxH_BLINKF_LINK100X 0x0006
93#define XWAY_MMD_LEDxH_BLINKF_LINK10XX 0x0007
94#define XWAY_MMD_LEDxH_BLINKF_PDOWN 0x0008
95#define XWAY_MMD_LEDxH_BLINKF_EEE 0x0009
96#define XWAY_MMD_LEDxH_BLINKF_ANEG 0x000A
97#define XWAY_MMD_LEDxH_BLINKF_ABIST 0x000B
98#define XWAY_MMD_LEDxH_BLINKF_CDIAG 0x000C
99/* Constant On Configuration */
100#define XWAY_MMD_LEDxH_CON_MASK 0x00F0
101#define XWAY_MMD_LEDxH_CON_NONE 0x0000
102#define XWAY_MMD_LEDxH_CON_LINK10 0x0010
103#define XWAY_MMD_LEDxH_CON_LINK100 0x0020
104#define XWAY_MMD_LEDxH_CON_LINK10X 0x0030
105#define XWAY_MMD_LEDxH_CON_LINK1000 0x0040
106#define XWAY_MMD_LEDxH_CON_LINK10_0 0x0050
107#define XWAY_MMD_LEDxH_CON_LINK100X 0x0060
108#define XWAY_MMD_LEDxH_CON_LINK10XX 0x0070
109#define XWAY_MMD_LEDxH_CON_PDOWN 0x0080
110#define XWAY_MMD_LEDxH_CON_EEE 0x0090
111#define XWAY_MMD_LEDxH_CON_ANEG 0x00A0
112#define XWAY_MMD_LEDxH_CON_ABIST 0x00B0
113#define XWAY_MMD_LEDxH_CON_CDIAG 0x00C0
114#define XWAY_MMD_LEDxH_CON_COPPER 0x00D0
115#define XWAY_MMD_LEDxH_CON_FIBER 0x00E0
116/* Configuration for LED Pin x */
117#define XWAY_MMD_LED0L 0x01E3
118/* Pulsing Configuration */
119#define XWAY_MMD_LEDxL_PULSE_MASK 0x000F
120#define XWAY_MMD_LEDxL_PULSE_NONE 0x0000
121#define XWAY_MMD_LEDxL_PULSE_TXACT 0x0001
122#define XWAY_MMD_LEDxL_PULSE_RXACT 0x0002
123#define XWAY_MMD_LEDxL_PULSE_COL 0x0004
124/* Slow Blinking Configuration */
125#define XWAY_MMD_LEDxL_BLINKS_MASK 0x00F0
126#define XWAY_MMD_LEDxL_BLINKS_NONE 0x0000
127#define XWAY_MMD_LEDxL_BLINKS_LINK10 0x0010
128#define XWAY_MMD_LEDxL_BLINKS_LINK100 0x0020
129#define XWAY_MMD_LEDxL_BLINKS_LINK10X 0x0030
130#define XWAY_MMD_LEDxL_BLINKS_LINK1000 0x0040
131#define XWAY_MMD_LEDxL_BLINKS_LINK10_0 0x0050
132#define XWAY_MMD_LEDxL_BLINKS_LINK100X 0x0060
133#define XWAY_MMD_LEDxL_BLINKS_LINK10XX 0x0070
134#define XWAY_MMD_LEDxL_BLINKS_PDOWN 0x0080
135#define XWAY_MMD_LEDxL_BLINKS_EEE 0x0090
136#define XWAY_MMD_LEDxL_BLINKS_ANEG 0x00A0
137#define XWAY_MMD_LEDxL_BLINKS_ABIST 0x00B0
138#define XWAY_MMD_LEDxL_BLINKS_CDIAG 0x00C0
139#define XWAY_MMD_LED1H 0x01E4
140#define XWAY_MMD_LED1L 0x01E5
141#define XWAY_MMD_LED2H 0x01E6
142#define XWAY_MMD_LED2L 0x01E7
143#define XWAY_MMD_LED3H 0x01E8
144#define XWAY_MMD_LED3L 0x01E9
145
146#define PHY_ID_PHY11G_1_3 0x030260D1
147#define PHY_ID_PHY22F_1_3 0x030260E1
148#define PHY_ID_PHY11G_1_4 0xD565A400
149#define PHY_ID_PHY22F_1_4 0xD565A410
150#define PHY_ID_PHY11G_1_5 0xD565A401
151#define PHY_ID_PHY22F_1_5 0xD565A411
152#define PHY_ID_PHY11G_VR9_1_1 0xD565A408
153#define PHY_ID_PHY22F_VR9_1_1 0xD565A418
154#define PHY_ID_PHY11G_VR9_1_2 0xD565A409
155#define PHY_ID_PHY22F_VR9_1_2 0xD565A419
156
157static int xway_gphy_config_init(struct phy_device *phydev)
158{
159 int err;
160 u32 ledxh;
161 u32 ledxl;
162
163 /* Mask all interrupts */
164 err = phy_write(phydev, XWAY_MDIO_IMASK, 0);
165 if (err)
166 return err;
167
168 /* Clear all pending interrupts */
169 phy_read(phydev, XWAY_MDIO_ISTAT);
170
171 phy_write_mmd(phydev, MDIO_MMD_VEND2, XWAY_MMD_LEDCH,
172 XWAY_MMD_LEDCH_NACS_NONE |
173 XWAY_MMD_LEDCH_SBF_F02HZ |
174 XWAY_MMD_LEDCH_FBF_F16HZ);
175 phy_write_mmd(phydev, MDIO_MMD_VEND2, XWAY_MMD_LEDCL,
176 XWAY_MMD_LEDCH_CBLINK_NONE |
177 XWAY_MMD_LEDCH_SCAN_NONE);
178
179 /**
180 * In most cases only one LED is connected to this phy, so
181 * configure them all to constant on and pulse mode. LED3 is
182 * only available in some packages, leave it in its reset
183 * configuration.
184 */
185 ledxh = XWAY_MMD_LEDxH_BLINKF_NONE | XWAY_MMD_LEDxH_CON_LINK10XX;
186 ledxl = XWAY_MMD_LEDxL_PULSE_TXACT | XWAY_MMD_LEDxL_PULSE_RXACT |
187 XWAY_MMD_LEDxL_BLINKS_NONE;
188 phy_write_mmd(phydev, MDIO_MMD_VEND2, XWAY_MMD_LED0H, ledxh);
189 phy_write_mmd(phydev, MDIO_MMD_VEND2, XWAY_MMD_LED0L, ledxl);
190 phy_write_mmd(phydev, MDIO_MMD_VEND2, XWAY_MMD_LED1H, ledxh);
191 phy_write_mmd(phydev, MDIO_MMD_VEND2, XWAY_MMD_LED1L, ledxl);
192 phy_write_mmd(phydev, MDIO_MMD_VEND2, XWAY_MMD_LED2H, ledxh);
193 phy_write_mmd(phydev, MDIO_MMD_VEND2, XWAY_MMD_LED2L, ledxl);
194
195 return 0;
196}
197
198static int xway_gphy14_config_aneg(struct phy_device *phydev)
199{
200 int reg, err;
201
202 /* Advertise as multi-port device, see IEEE802.3-2002 40.5.1.1 */
203 /* This is a workaround for an errata in rev < 1.5 devices */
204 reg = phy_read(phydev, MII_CTRL1000);
205 reg |= ADVERTISED_MPD;
206 err = phy_write(phydev, MII_CTRL1000, reg);
207 if (err)
208 return err;
209
210 return genphy_config_aneg(phydev);
211}
212
213static int xway_gphy_ack_interrupt(struct phy_device *phydev)
214{
215 int reg;
216
217 reg = phy_read(phydev, XWAY_MDIO_ISTAT);
218 return (reg < 0) ? reg : 0;
219}
220
221static int xway_gphy_did_interrupt(struct phy_device *phydev)
222{
223 int reg;
224
225 reg = phy_read(phydev, XWAY_MDIO_ISTAT);
226 return reg & XWAY_MDIO_INIT_MASK;
227}
228
229static int xway_gphy_config_intr(struct phy_device *phydev)
230{
231 u16 mask = 0;
232
233 if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
234 mask = XWAY_MDIO_INIT_MASK;
235
236 return phy_write(phydev, XWAY_MDIO_IMASK, mask);
237}
238
239static struct phy_driver xway_gphy[] = {
240 {
241 .phy_id = PHY_ID_PHY11G_1_3,
242 .phy_id_mask = 0xffffffff,
243 .name = "Intel XWAY PHY11G (PEF 7071/PEF 7072) v1.3",
244 .features = PHY_GBIT_FEATURES,
245 .flags = PHY_HAS_INTERRUPT,
246 .config_init = xway_gphy_config_init,
247 .config_aneg = xway_gphy14_config_aneg,
248 .ack_interrupt = xway_gphy_ack_interrupt,
249 .did_interrupt = xway_gphy_did_interrupt,
250 .config_intr = xway_gphy_config_intr,
251 .suspend = genphy_suspend,
252 .resume = genphy_resume,
253 }, {
254 .phy_id = PHY_ID_PHY22F_1_3,
255 .phy_id_mask = 0xffffffff,
256 .name = "Intel XWAY PHY22F (PEF 7061) v1.3",
257 .features = PHY_BASIC_FEATURES,
258 .flags = PHY_HAS_INTERRUPT,
259 .config_init = xway_gphy_config_init,
260 .config_aneg = xway_gphy14_config_aneg,
261 .ack_interrupt = xway_gphy_ack_interrupt,
262 .did_interrupt = xway_gphy_did_interrupt,
263 .config_intr = xway_gphy_config_intr,
264 .suspend = genphy_suspend,
265 .resume = genphy_resume,
266 }, {
267 .phy_id = PHY_ID_PHY11G_1_4,
268 .phy_id_mask = 0xffffffff,
269 .name = "Intel XWAY PHY11G (PEF 7071/PEF 7072) v1.4",
270 .features = PHY_GBIT_FEATURES,
271 .flags = PHY_HAS_INTERRUPT,
272 .config_init = xway_gphy_config_init,
273 .config_aneg = xway_gphy14_config_aneg,
274 .ack_interrupt = xway_gphy_ack_interrupt,
275 .did_interrupt = xway_gphy_did_interrupt,
276 .config_intr = xway_gphy_config_intr,
277 .suspend = genphy_suspend,
278 .resume = genphy_resume,
279 }, {
280 .phy_id = PHY_ID_PHY22F_1_4,
281 .phy_id_mask = 0xffffffff,
282 .name = "Intel XWAY PHY22F (PEF 7061) v1.4",
283 .features = PHY_BASIC_FEATURES,
284 .flags = PHY_HAS_INTERRUPT,
285 .config_init = xway_gphy_config_init,
286 .config_aneg = xway_gphy14_config_aneg,
287 .ack_interrupt = xway_gphy_ack_interrupt,
288 .did_interrupt = xway_gphy_did_interrupt,
289 .config_intr = xway_gphy_config_intr,
290 .suspend = genphy_suspend,
291 .resume = genphy_resume,
292 }, {
293 .phy_id = PHY_ID_PHY11G_1_5,
294 .phy_id_mask = 0xffffffff,
295 .name = "Intel XWAY PHY11G (PEF 7071/PEF 7072) v1.5 / v1.6",
296 .features = PHY_GBIT_FEATURES,
297 .flags = PHY_HAS_INTERRUPT,
298 .config_init = xway_gphy_config_init,
299 .ack_interrupt = xway_gphy_ack_interrupt,
300 .did_interrupt = xway_gphy_did_interrupt,
301 .config_intr = xway_gphy_config_intr,
302 .suspend = genphy_suspend,
303 .resume = genphy_resume,
304 }, {
305 .phy_id = PHY_ID_PHY22F_1_5,
306 .phy_id_mask = 0xffffffff,
307 .name = "Intel XWAY PHY22F (PEF 7061) v1.5 / v1.6",
308 .features = PHY_BASIC_FEATURES,
309 .flags = PHY_HAS_INTERRUPT,
310 .config_init = xway_gphy_config_init,
311 .ack_interrupt = xway_gphy_ack_interrupt,
312 .did_interrupt = xway_gphy_did_interrupt,
313 .config_intr = xway_gphy_config_intr,
314 .suspend = genphy_suspend,
315 .resume = genphy_resume,
316 }, {
317 .phy_id = PHY_ID_PHY11G_VR9_1_1,
318 .phy_id_mask = 0xffffffff,
319 .name = "Intel XWAY PHY11G (xRX v1.1 integrated)",
320 .features = PHY_GBIT_FEATURES,
321 .flags = PHY_HAS_INTERRUPT,
322 .config_init = xway_gphy_config_init,
323 .ack_interrupt = xway_gphy_ack_interrupt,
324 .did_interrupt = xway_gphy_did_interrupt,
325 .config_intr = xway_gphy_config_intr,
326 .suspend = genphy_suspend,
327 .resume = genphy_resume,
328 }, {
329 .phy_id = PHY_ID_PHY22F_VR9_1_1,
330 .phy_id_mask = 0xffffffff,
331 .name = "Intel XWAY PHY22F (xRX v1.1 integrated)",
332 .features = PHY_BASIC_FEATURES,
333 .flags = PHY_HAS_INTERRUPT,
334 .config_init = xway_gphy_config_init,
335 .ack_interrupt = xway_gphy_ack_interrupt,
336 .did_interrupt = xway_gphy_did_interrupt,
337 .config_intr = xway_gphy_config_intr,
338 .suspend = genphy_suspend,
339 .resume = genphy_resume,
340 }, {
341 .phy_id = PHY_ID_PHY11G_VR9_1_2,
342 .phy_id_mask = 0xffffffff,
343 .name = "Intel XWAY PHY11G (xRX v1.2 integrated)",
344 .features = PHY_GBIT_FEATURES,
345 .flags = PHY_HAS_INTERRUPT,
346 .config_init = xway_gphy_config_init,
347 .ack_interrupt = xway_gphy_ack_interrupt,
348 .did_interrupt = xway_gphy_did_interrupt,
349 .config_intr = xway_gphy_config_intr,
350 .suspend = genphy_suspend,
351 .resume = genphy_resume,
352 }, {
353 .phy_id = PHY_ID_PHY22F_VR9_1_2,
354 .phy_id_mask = 0xffffffff,
355 .name = "Intel XWAY PHY22F (xRX v1.2 integrated)",
356 .features = PHY_BASIC_FEATURES,
357 .flags = PHY_HAS_INTERRUPT,
358 .config_init = xway_gphy_config_init,
359 .ack_interrupt = xway_gphy_ack_interrupt,
360 .did_interrupt = xway_gphy_did_interrupt,
361 .config_intr = xway_gphy_config_intr,
362 .suspend = genphy_suspend,
363 .resume = genphy_resume,
364 },
365};
366module_phy_driver(xway_gphy);
367
368static struct mdio_device_id __maybe_unused xway_gphy_tbl[] = {
369 { PHY_ID_PHY11G_1_3, 0xffffffff },
370 { PHY_ID_PHY22F_1_3, 0xffffffff },
371 { PHY_ID_PHY11G_1_4, 0xffffffff },
372 { PHY_ID_PHY22F_1_4, 0xffffffff },
373 { PHY_ID_PHY11G_1_5, 0xffffffff },
374 { PHY_ID_PHY22F_1_5, 0xffffffff },
375 { PHY_ID_PHY11G_VR9_1_1, 0xffffffff },
376 { PHY_ID_PHY22F_VR9_1_1, 0xffffffff },
377 { PHY_ID_PHY11G_VR9_1_2, 0xffffffff },
378 { PHY_ID_PHY22F_VR9_1_2, 0xffffffff },
379 { }
380};
381MODULE_DEVICE_TABLE(mdio, xway_gphy_tbl);
382
383MODULE_DESCRIPTION("Intel XWAY PHY driver");
384MODULE_LICENSE("GPL");