698d92dd7d334c77359f21d42bc85867edaf03c4
[openwrt/svn-archive/archive.git] / target / linux / generic / files / drivers / net / phy / ar8216.c
1 /*
2 * ar8216.c: AR8216 switch driver
3 *
4 * Copyright (C) 2009 Felix Fietkau <nbd@openwrt.org>
5 * Copyright (C) 2011-2012 Gabor Juhos <juhosg@openwrt.org>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17
18 #include <linux/if.h>
19 #include <linux/module.h>
20 #include <linux/init.h>
21 #include <linux/list.h>
22 #include <linux/if_ether.h>
23 #include <linux/skbuff.h>
24 #include <linux/netdevice.h>
25 #include <linux/netlink.h>
26 #include <linux/bitops.h>
27 #include <net/genetlink.h>
28 #include <linux/switch.h>
29 #include <linux/delay.h>
30 #include <linux/phy.h>
31 #include <linux/netdevice.h>
32 #include <linux/etherdevice.h>
33 #include <linux/lockdep.h>
34 #include <linux/ar8216_platform.h>
35 #include "ar8216.h"
36
37 /* size of the vlan table */
38 #define AR8X16_MAX_VLANS 128
39 #define AR8X16_PROBE_RETRIES 10
40 #define AR8X16_MAX_PORTS 8
41
42 struct ar8216_priv;
43
44 #define AR8XXX_CAP_GIGE BIT(0)
45
46 enum {
47 AR8XXX_VER_AR8216 = 0x01,
48 AR8XXX_VER_AR8236 = 0x03,
49 AR8XXX_VER_AR8316 = 0x10,
50 AR8XXX_VER_AR8327 = 0x12,
51 };
52
53 struct ar8xxx_chip {
54 unsigned long caps;
55
56 int (*hw_init)(struct ar8216_priv *priv);
57 void (*init_globals)(struct ar8216_priv *priv);
58 void (*init_port)(struct ar8216_priv *priv, int port);
59 void (*setup_port)(struct ar8216_priv *priv, int port, u32 egress,
60 u32 ingress, u32 members, u32 pvid);
61 u32 (*read_port_status)(struct ar8216_priv *priv, int port);
62 int (*atu_flush)(struct ar8216_priv *priv);
63 void (*vtu_flush)(struct ar8216_priv *priv);
64 void (*vtu_load_vlan)(struct ar8216_priv *priv, u32 vid, u32 port_mask);
65 };
66
67 struct ar8216_priv {
68 struct switch_dev dev;
69 struct phy_device *phy;
70 u32 (*read)(struct ar8216_priv *priv, int reg);
71 void (*write)(struct ar8216_priv *priv, int reg, u32 val);
72 const struct net_device_ops *ndo_old;
73 struct net_device_ops ndo;
74 struct mutex reg_mutex;
75 u8 chip_ver;
76 u8 chip_rev;
77 const struct ar8xxx_chip *chip;
78 bool initialized;
79 bool port4_phy;
80 char buf[80];
81
82 bool init;
83 bool mii_lo_first;
84
85 /* all fields below are cleared on reset */
86 bool vlan;
87 u16 vlan_id[AR8X16_MAX_VLANS];
88 u8 vlan_table[AR8X16_MAX_VLANS];
89 u8 vlan_tagged;
90 u16 pvid[AR8X16_MAX_PORTS];
91 };
92
93 #define to_ar8216(_dev) container_of(_dev, struct ar8216_priv, dev)
94
95 static inline bool ar8xxx_has_gige(struct ar8216_priv *priv)
96 {
97 return priv->chip->caps & AR8XXX_CAP_GIGE;
98 }
99
100 static inline bool chip_is_ar8216(struct ar8216_priv *priv)
101 {
102 return priv->chip_ver == AR8XXX_VER_AR8216;
103 }
104
105 static inline bool chip_is_ar8236(struct ar8216_priv *priv)
106 {
107 return priv->chip_ver == AR8XXX_VER_AR8236;
108 }
109
110 static inline bool chip_is_ar8316(struct ar8216_priv *priv)
111 {
112 return priv->chip_ver == AR8XXX_VER_AR8316;
113 }
114
115 static inline bool chip_is_ar8327(struct ar8216_priv *priv)
116 {
117 return priv->chip_ver == AR8XXX_VER_AR8327;
118 }
119
120 static inline void
121 split_addr(u32 regaddr, u16 *r1, u16 *r2, u16 *page)
122 {
123 regaddr >>= 1;
124 *r1 = regaddr & 0x1e;
125
126 regaddr >>= 5;
127 *r2 = regaddr & 0x7;
128
129 regaddr >>= 3;
130 *page = regaddr & 0x1ff;
131 }
132
133 static u32
134 ar8216_mii_read(struct ar8216_priv *priv, int reg)
135 {
136 struct phy_device *phy = priv->phy;
137 struct mii_bus *bus = phy->bus;
138 u16 r1, r2, page;
139 u16 lo, hi;
140
141 split_addr((u32) reg, &r1, &r2, &page);
142
143 mutex_lock(&bus->mdio_lock);
144
145 bus->write(bus, 0x18, 0, page);
146 usleep_range(1000, 2000); /* wait for the page switch to propagate */
147 lo = bus->read(bus, 0x10 | r2, r1);
148 hi = bus->read(bus, 0x10 | r2, r1 + 1);
149
150 mutex_unlock(&bus->mdio_lock);
151
152 return (hi << 16) | lo;
153 }
154
155 static void
156 ar8216_mii_write(struct ar8216_priv *priv, int reg, u32 val)
157 {
158 struct phy_device *phy = priv->phy;
159 struct mii_bus *bus = phy->bus;
160 u16 r1, r2, r3;
161 u16 lo, hi;
162
163 split_addr((u32) reg, &r1, &r2, &r3);
164 lo = val & 0xffff;
165 hi = (u16) (val >> 16);
166
167 mutex_lock(&bus->mdio_lock);
168
169 bus->write(bus, 0x18, 0, r3);
170 usleep_range(1000, 2000); /* wait for the page switch to propagate */
171 if (priv->mii_lo_first) {
172 bus->write(bus, 0x10 | r2, r1, lo);
173 bus->write(bus, 0x10 | r2, r1 + 1, hi);
174 } else {
175 bus->write(bus, 0x10 | r2, r1 + 1, hi);
176 bus->write(bus, 0x10 | r2, r1, lo);
177 }
178
179 mutex_unlock(&bus->mdio_lock);
180 }
181
182 static void
183 ar8216_phy_dbg_write(struct ar8216_priv *priv, int phy_addr,
184 u16 dbg_addr, u16 dbg_data)
185 {
186 struct mii_bus *bus = priv->phy->bus;
187
188 mutex_lock(&bus->mdio_lock);
189 bus->write(bus, phy_addr, MII_ATH_DBG_ADDR, dbg_addr);
190 bus->write(bus, phy_addr, MII_ATH_DBG_DATA, dbg_data);
191 mutex_unlock(&bus->mdio_lock);
192 }
193
194 static void
195 ar8216_phy_mmd_write(struct ar8216_priv *priv, int phy_addr, u16 addr, u16 data)
196 {
197 struct mii_bus *bus = priv->phy->bus;
198
199 mutex_lock(&bus->mdio_lock);
200 bus->write(bus, phy_addr, MII_ATH_MMD_ADDR, addr);
201 bus->write(bus, phy_addr, MII_ATH_MMD_DATA, data);
202 mutex_unlock(&bus->mdio_lock);
203 }
204
205 static u32
206 ar8216_rmw(struct ar8216_priv *priv, int reg, u32 mask, u32 val)
207 {
208 u32 v;
209
210 lockdep_assert_held(&priv->reg_mutex);
211
212 v = priv->read(priv, reg);
213 v &= ~mask;
214 v |= val;
215 priv->write(priv, reg, v);
216
217 return v;
218 }
219
220 static void
221 ar8216_read_port_link(struct ar8216_priv *priv, int port,
222 struct switch_port_link *link)
223 {
224 u32 status;
225 u32 speed;
226
227 memset(link, '\0', sizeof(*link));
228
229 status = priv->chip->read_port_status(priv, port);
230
231 link->aneg = !!(status & AR8216_PORT_STATUS_LINK_AUTO);
232 if (link->aneg) {
233 link->link = !!(status & AR8216_PORT_STATUS_LINK_UP);
234 if (!link->link)
235 return;
236 } else {
237 link->link = true;
238 }
239
240 link->duplex = !!(status & AR8216_PORT_STATUS_DUPLEX);
241 link->tx_flow = !!(status & AR8216_PORT_STATUS_TXFLOW);
242 link->rx_flow = !!(status & AR8216_PORT_STATUS_RXFLOW);
243
244 speed = (status & AR8216_PORT_STATUS_SPEED) >>
245 AR8216_PORT_STATUS_SPEED_S;
246
247 switch (speed) {
248 case AR8216_PORT_SPEED_10M:
249 link->speed = SWITCH_PORT_SPEED_10;
250 break;
251 case AR8216_PORT_SPEED_100M:
252 link->speed = SWITCH_PORT_SPEED_100;
253 break;
254 case AR8216_PORT_SPEED_1000M:
255 link->speed = SWITCH_PORT_SPEED_1000;
256 break;
257 default:
258 link->speed = SWITCH_PORT_SPEED_UNKNOWN;
259 break;
260 }
261 }
262
263 static struct sk_buff *
264 ar8216_mangle_tx(struct net_device *dev, struct sk_buff *skb)
265 {
266 struct ar8216_priv *priv = dev->phy_ptr;
267 unsigned char *buf;
268
269 if (unlikely(!priv))
270 goto error;
271
272 if (!priv->vlan)
273 goto send;
274
275 if (unlikely(skb_headroom(skb) < 2)) {
276 if (pskb_expand_head(skb, 2, 0, GFP_ATOMIC) < 0)
277 goto error;
278 }
279
280 buf = skb_push(skb, 2);
281 buf[0] = 0x10;
282 buf[1] = 0x80;
283
284 send:
285 return skb;
286
287 error:
288 dev_kfree_skb_any(skb);
289 return NULL;
290 }
291
292 static void
293 ar8216_mangle_rx(struct net_device *dev, struct sk_buff *skb)
294 {
295 struct ar8216_priv *priv;
296 unsigned char *buf;
297 int port, vlan;
298
299 priv = dev->phy_ptr;
300 if (!priv)
301 return;
302
303 /* don't strip the header if vlan mode is disabled */
304 if (!priv->vlan)
305 return;
306
307 /* strip header, get vlan id */
308 buf = skb->data;
309 skb_pull(skb, 2);
310
311 /* check for vlan header presence */
312 if ((buf[12 + 2] != 0x81) || (buf[13 + 2] != 0x00))
313 return;
314
315 port = buf[0] & 0xf;
316
317 /* no need to fix up packets coming from a tagged source */
318 if (priv->vlan_tagged & (1 << port))
319 return;
320
321 /* lookup port vid from local table, the switch passes an invalid vlan id */
322 vlan = priv->vlan_id[priv->pvid[port]];
323
324 buf[14 + 2] &= 0xf0;
325 buf[14 + 2] |= vlan >> 8;
326 buf[15 + 2] = vlan & 0xff;
327 }
328
329 static int
330 ar8216_wait_bit(struct ar8216_priv *priv, int reg, u32 mask, u32 val)
331 {
332 int timeout = 20;
333 u32 t = 0;
334
335 while (1) {
336 t = priv->read(priv, reg);
337 if ((t & mask) == val)
338 return 0;
339
340 if (timeout-- <= 0)
341 break;
342
343 udelay(10);
344 }
345
346 pr_err("ar8216: timeout on reg %08x: %08x & %08x != %08x\n",
347 (unsigned int) reg, t, mask, val);
348 return -ETIMEDOUT;
349 }
350
351 static void
352 ar8216_vtu_op(struct ar8216_priv *priv, u32 op, u32 val)
353 {
354 if (ar8216_wait_bit(priv, AR8216_REG_VTU, AR8216_VTU_ACTIVE, 0))
355 return;
356 if ((op & AR8216_VTU_OP) == AR8216_VTU_OP_LOAD) {
357 val &= AR8216_VTUDATA_MEMBER;
358 val |= AR8216_VTUDATA_VALID;
359 priv->write(priv, AR8216_REG_VTU_DATA, val);
360 }
361 op |= AR8216_VTU_ACTIVE;
362 priv->write(priv, AR8216_REG_VTU, op);
363 }
364
365 static void
366 ar8216_vtu_flush(struct ar8216_priv *priv)
367 {
368 ar8216_vtu_op(priv, AR8216_VTU_OP_FLUSH, 0);
369 }
370
371 static void
372 ar8216_vtu_load_vlan(struct ar8216_priv *priv, u32 vid, u32 port_mask)
373 {
374 u32 op;
375
376 op = AR8216_VTU_OP_LOAD | (vid << AR8216_VTU_VID_S);
377 ar8216_vtu_op(priv, op, port_mask);
378 }
379
380 static int
381 ar8216_atu_flush(struct ar8216_priv *priv)
382 {
383 int ret;
384
385 ret = ar8216_wait_bit(priv, AR8216_REG_ATU, AR8216_ATU_ACTIVE, 0);
386 if (!ret)
387 priv->write(priv, AR8216_REG_ATU, AR8216_ATU_OP_FLUSH);
388
389 return ret;
390 }
391
392 static u32
393 ar8216_read_port_status(struct ar8216_priv *priv, int port)
394 {
395 return priv->read(priv, AR8216_REG_PORT_STATUS(port));
396 }
397
398 static void
399 ar8216_setup_port(struct ar8216_priv *priv, int port, u32 egress, u32 ingress,
400 u32 members, u32 pvid)
401 {
402 u32 header;
403
404 if (chip_is_ar8216(priv) && priv->vlan && port == AR8216_PORT_CPU)
405 header = AR8216_PORT_CTRL_HEADER;
406 else
407 header = 0;
408
409 ar8216_rmw(priv, AR8216_REG_PORT_CTRL(port),
410 AR8216_PORT_CTRL_LEARN | AR8216_PORT_CTRL_VLAN_MODE |
411 AR8216_PORT_CTRL_SINGLE_VLAN | AR8216_PORT_CTRL_STATE |
412 AR8216_PORT_CTRL_HEADER | AR8216_PORT_CTRL_LEARN_LOCK,
413 AR8216_PORT_CTRL_LEARN | header |
414 (egress << AR8216_PORT_CTRL_VLAN_MODE_S) |
415 (AR8216_PORT_STATE_FORWARD << AR8216_PORT_CTRL_STATE_S));
416
417 ar8216_rmw(priv, AR8216_REG_PORT_VLAN(port),
418 AR8216_PORT_VLAN_DEST_PORTS | AR8216_PORT_VLAN_MODE |
419 AR8216_PORT_VLAN_DEFAULT_ID,
420 (members << AR8216_PORT_VLAN_DEST_PORTS_S) |
421 (ingress << AR8216_PORT_VLAN_MODE_S) |
422 (pvid << AR8216_PORT_VLAN_DEFAULT_ID_S));
423 }
424
425 static int
426 ar8216_hw_init(struct ar8216_priv *priv)
427 {
428 return 0;
429 }
430
431 static void
432 ar8216_init_globals(struct ar8216_priv *priv)
433 {
434 /* standard atheros magic */
435 priv->write(priv, 0x38, 0xc000050e);
436
437 ar8216_rmw(priv, AR8216_REG_GLOBAL_CTRL,
438 AR8216_GCTRL_MTU, 1518 + 8 + 2);
439 }
440
441 static void
442 ar8216_init_port(struct ar8216_priv *priv, int port)
443 {
444 /* Enable port learning and tx */
445 priv->write(priv, AR8216_REG_PORT_CTRL(port),
446 AR8216_PORT_CTRL_LEARN |
447 (4 << AR8216_PORT_CTRL_STATE_S));
448
449 priv->write(priv, AR8216_REG_PORT_VLAN(port), 0);
450
451 if (port == AR8216_PORT_CPU) {
452 priv->write(priv, AR8216_REG_PORT_STATUS(port),
453 AR8216_PORT_STATUS_LINK_UP |
454 (ar8xxx_has_gige(priv) ?
455 AR8216_PORT_SPEED_1000M : AR8216_PORT_SPEED_100M) |
456 AR8216_PORT_STATUS_TXMAC |
457 AR8216_PORT_STATUS_RXMAC |
458 (chip_is_ar8316(priv) ? AR8216_PORT_STATUS_RXFLOW : 0) |
459 (chip_is_ar8316(priv) ? AR8216_PORT_STATUS_TXFLOW : 0) |
460 AR8216_PORT_STATUS_DUPLEX);
461 } else {
462 priv->write(priv, AR8216_REG_PORT_STATUS(port),
463 AR8216_PORT_STATUS_LINK_AUTO);
464 }
465 }
466
467 static const struct ar8xxx_chip ar8216_chip = {
468 .hw_init = ar8216_hw_init,
469 .init_globals = ar8216_init_globals,
470 .init_port = ar8216_init_port,
471 .setup_port = ar8216_setup_port,
472 .read_port_status = ar8216_read_port_status,
473 .atu_flush = ar8216_atu_flush,
474 .vtu_flush = ar8216_vtu_flush,
475 .vtu_load_vlan = ar8216_vtu_load_vlan,
476 };
477
478 static void
479 ar8236_setup_port(struct ar8216_priv *priv, int port, u32 egress, u32 ingress,
480 u32 members, u32 pvid)
481 {
482 ar8216_rmw(priv, AR8216_REG_PORT_CTRL(port),
483 AR8216_PORT_CTRL_LEARN | AR8216_PORT_CTRL_VLAN_MODE |
484 AR8216_PORT_CTRL_SINGLE_VLAN | AR8216_PORT_CTRL_STATE |
485 AR8216_PORT_CTRL_HEADER | AR8216_PORT_CTRL_LEARN_LOCK,
486 AR8216_PORT_CTRL_LEARN |
487 (egress << AR8216_PORT_CTRL_VLAN_MODE_S) |
488 (AR8216_PORT_STATE_FORWARD << AR8216_PORT_CTRL_STATE_S));
489
490 ar8216_rmw(priv, AR8236_REG_PORT_VLAN(port),
491 AR8236_PORT_VLAN_DEFAULT_ID,
492 (pvid << AR8236_PORT_VLAN_DEFAULT_ID_S));
493
494 ar8216_rmw(priv, AR8236_REG_PORT_VLAN2(port),
495 AR8236_PORT_VLAN2_VLAN_MODE |
496 AR8236_PORT_VLAN2_MEMBER,
497 (ingress << AR8236_PORT_VLAN2_VLAN_MODE_S) |
498 (members << AR8236_PORT_VLAN2_MEMBER_S));
499 }
500
501 static int
502 ar8236_hw_init(struct ar8216_priv *priv)
503 {
504 int i;
505 struct mii_bus *bus;
506
507 if (priv->initialized)
508 return 0;
509
510 /* Initialize the PHYs */
511 bus = priv->phy->bus;
512 for (i = 0; i < 5; i++) {
513 mdiobus_write(bus, i, MII_ADVERTISE,
514 ADVERTISE_ALL | ADVERTISE_PAUSE_CAP |
515 ADVERTISE_PAUSE_ASYM);
516 mdiobus_write(bus, i, MII_BMCR, BMCR_RESET | BMCR_ANENABLE);
517 }
518 msleep(1000);
519
520 priv->initialized = true;
521 return 0;
522 }
523
524 static void
525 ar8236_init_globals(struct ar8216_priv *priv)
526 {
527 /* enable jumbo frames */
528 ar8216_rmw(priv, AR8216_REG_GLOBAL_CTRL,
529 AR8316_GCTRL_MTU, 9018 + 8 + 2);
530 }
531
532 static const struct ar8xxx_chip ar8236_chip = {
533 .hw_init = ar8236_hw_init,
534 .init_globals = ar8236_init_globals,
535 .init_port = ar8216_init_port,
536 .setup_port = ar8236_setup_port,
537 .read_port_status = ar8216_read_port_status,
538 .atu_flush = ar8216_atu_flush,
539 .vtu_flush = ar8216_vtu_flush,
540 .vtu_load_vlan = ar8216_vtu_load_vlan,
541 };
542
543 static int
544 ar8316_hw_init(struct ar8216_priv *priv)
545 {
546 int i;
547 u32 val, newval;
548 struct mii_bus *bus;
549
550 val = priv->read(priv, 0x8);
551
552 if (priv->phy->interface == PHY_INTERFACE_MODE_RGMII) {
553 if (priv->port4_phy) {
554 /* value taken from Ubiquiti RouterStation Pro */
555 newval = 0x81461bea;
556 printk(KERN_INFO "ar8316: Using port 4 as PHY\n");
557 } else {
558 newval = 0x01261be2;
559 printk(KERN_INFO "ar8316: Using port 4 as switch port\n");
560 }
561 } else if (priv->phy->interface == PHY_INTERFACE_MODE_GMII) {
562 /* value taken from AVM Fritz!Box 7390 sources */
563 newval = 0x010e5b71;
564 } else {
565 /* no known value for phy interface */
566 printk(KERN_ERR "ar8316: unsupported mii mode: %d.\n",
567 priv->phy->interface);
568 return -EINVAL;
569 }
570
571 if (val == newval)
572 goto out;
573
574 priv->write(priv, 0x8, newval);
575
576 /* Initialize the ports */
577 bus = priv->phy->bus;
578 for (i = 0; i < 5; i++) {
579 if ((i == 4) && priv->port4_phy &&
580 priv->phy->interface == PHY_INTERFACE_MODE_RGMII) {
581 /* work around for phy4 rgmii mode */
582 ar8216_phy_dbg_write(priv, i, 0x12, 0x480c);
583 /* rx delay */
584 ar8216_phy_dbg_write(priv, i, 0x0, 0x824e);
585 /* tx delay */
586 ar8216_phy_dbg_write(priv, i, 0x5, 0x3d47);
587 msleep(1000);
588 }
589
590 /* initialize the port itself */
591 mdiobus_write(bus, i, MII_ADVERTISE,
592 ADVERTISE_ALL | ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM);
593 mdiobus_write(bus, i, MII_CTRL1000, ADVERTISE_1000FULL);
594 mdiobus_write(bus, i, MII_BMCR, BMCR_RESET | BMCR_ANENABLE);
595 msleep(1000);
596 }
597
598 out:
599 priv->initialized = true;
600 return 0;
601 }
602
603 static void
604 ar8316_init_globals(struct ar8216_priv *priv)
605 {
606 /* standard atheros magic */
607 priv->write(priv, 0x38, 0xc000050e);
608
609 /* enable cpu port to receive multicast and broadcast frames */
610 priv->write(priv, AR8216_REG_FLOOD_MASK, 0x003f003f);
611
612 /* enable jumbo frames */
613 ar8216_rmw(priv, AR8216_REG_GLOBAL_CTRL,
614 AR8316_GCTRL_MTU, 9018 + 8 + 2);
615 }
616
617 static const struct ar8xxx_chip ar8316_chip = {
618 .caps = AR8XXX_CAP_GIGE,
619 .hw_init = ar8316_hw_init,
620 .init_globals = ar8316_init_globals,
621 .init_port = ar8216_init_port,
622 .setup_port = ar8216_setup_port,
623 .read_port_status = ar8216_read_port_status,
624 .atu_flush = ar8216_atu_flush,
625 .vtu_flush = ar8216_vtu_flush,
626 .vtu_load_vlan = ar8216_vtu_load_vlan,
627 };
628
629 static u32
630 ar8327_get_pad_cfg(struct ar8327_pad_cfg *cfg)
631 {
632 u32 t;
633
634 if (!cfg)
635 return 0;
636
637 t = 0;
638 switch (cfg->mode) {
639 case AR8327_PAD_NC:
640 break;
641
642 case AR8327_PAD_MAC2MAC_MII:
643 t = AR8327_PAD_MAC_MII_EN;
644 if (cfg->rxclk_sel)
645 t |= AR8327_PAD_MAC_MII_RXCLK_SEL;
646 if (cfg->txclk_sel)
647 t |= AR8327_PAD_MAC_MII_TXCLK_SEL;
648 break;
649
650 case AR8327_PAD_MAC2MAC_GMII:
651 t = AR8327_PAD_MAC_GMII_EN;
652 if (cfg->rxclk_sel)
653 t |= AR8327_PAD_MAC_GMII_RXCLK_SEL;
654 if (cfg->txclk_sel)
655 t |= AR8327_PAD_MAC_GMII_TXCLK_SEL;
656 break;
657
658 case AR8327_PAD_MAC_SGMII:
659 t = AR8327_PAD_SGMII_EN;
660 break;
661
662 case AR8327_PAD_MAC2PHY_MII:
663 t = AR8327_PAD_PHY_MII_EN;
664 if (cfg->rxclk_sel)
665 t |= AR8327_PAD_PHY_MII_RXCLK_SEL;
666 if (cfg->txclk_sel)
667 t |= AR8327_PAD_PHY_MII_TXCLK_SEL;
668 break;
669
670 case AR8327_PAD_MAC2PHY_GMII:
671 t = AR8327_PAD_PHY_GMII_EN;
672 if (cfg->pipe_rxclk_sel)
673 t |= AR8327_PAD_PHY_GMII_PIPE_RXCLK_SEL;
674 if (cfg->rxclk_sel)
675 t |= AR8327_PAD_PHY_GMII_RXCLK_SEL;
676 if (cfg->txclk_sel)
677 t |= AR8327_PAD_PHY_GMII_TXCLK_SEL;
678 break;
679
680 case AR8327_PAD_MAC_RGMII:
681 t = AR8327_PAD_RGMII_EN;
682 t |= cfg->txclk_delay_sel << AR8327_PAD_RGMII_TXCLK_DELAY_SEL_S;
683 t |= cfg->rxclk_delay_sel << AR8327_PAD_RGMII_RXCLK_DELAY_SEL_S;
684 if (cfg->rxclk_delay_en)
685 t |= AR8327_PAD_RGMII_RXCLK_DELAY_EN;
686 if (cfg->txclk_delay_en)
687 t |= AR8327_PAD_RGMII_TXCLK_DELAY_EN;
688 break;
689
690 case AR8327_PAD_PHY_GMII:
691 t = AR8327_PAD_PHYX_GMII_EN;
692 break;
693
694 case AR8327_PAD_PHY_RGMII:
695 t = AR8327_PAD_PHYX_RGMII_EN;
696 break;
697
698 case AR8327_PAD_PHY_MII:
699 t = AR8327_PAD_PHYX_MII_EN;
700 break;
701 }
702
703 return t;
704 }
705
706 static void
707 ar8327_phy_fixup(struct ar8216_priv *priv, int phy)
708 {
709 switch (priv->chip_rev) {
710 case 1:
711 /* For 100M waveform */
712 ar8216_phy_dbg_write(priv, phy, 0, 0x02ea);
713 /* Turn on Gigabit clock */
714 ar8216_phy_dbg_write(priv, phy, 0x3d, 0x68a0);
715 break;
716
717 case 2:
718 ar8216_phy_mmd_write(priv, phy, 0x7, 0x3c);
719 ar8216_phy_mmd_write(priv, phy, 0x4007, 0x0);
720 /* fallthrough */
721 case 4:
722 ar8216_phy_mmd_write(priv, phy, 0x3, 0x800d);
723 ar8216_phy_mmd_write(priv, phy, 0x4003, 0x803f);
724
725 ar8216_phy_dbg_write(priv, phy, 0x3d, 0x6860);
726 ar8216_phy_dbg_write(priv, phy, 0x5, 0x2c46);
727 ar8216_phy_dbg_write(priv, phy, 0x3c, 0x6000);
728 break;
729 }
730 }
731
732 static int
733 ar8327_hw_init(struct ar8216_priv *priv)
734 {
735 struct ar8327_platform_data *pdata;
736 struct ar8327_led_cfg *led_cfg;
737 u32 pos, new_pos;
738 u32 t;
739 int i;
740
741 pdata = priv->phy->dev.platform_data;
742 if (!pdata)
743 return -EINVAL;
744
745 t = ar8327_get_pad_cfg(pdata->pad0_cfg);
746 priv->write(priv, AR8327_REG_PAD0_MODE, t);
747 t = ar8327_get_pad_cfg(pdata->pad5_cfg);
748 priv->write(priv, AR8327_REG_PAD5_MODE, t);
749 t = ar8327_get_pad_cfg(pdata->pad6_cfg);
750 priv->write(priv, AR8327_REG_PAD6_MODE, t);
751
752 pos = priv->read(priv, AR8327_REG_POWER_ON_STRIP);
753 new_pos = pos;
754
755 led_cfg = pdata->led_cfg;
756 if (led_cfg) {
757 if (led_cfg->open_drain)
758 new_pos |= AR8327_POWER_ON_STRIP_LED_OPEN_EN;
759 else
760 new_pos &= ~AR8327_POWER_ON_STRIP_LED_OPEN_EN;
761
762 priv->write(priv, AR8327_REG_LED_CTRL0, led_cfg->led_ctrl0);
763 priv->write(priv, AR8327_REG_LED_CTRL1, led_cfg->led_ctrl1);
764 priv->write(priv, AR8327_REG_LED_CTRL2, led_cfg->led_ctrl2);
765 priv->write(priv, AR8327_REG_LED_CTRL3, led_cfg->led_ctrl3);
766 }
767
768 if (new_pos != pos) {
769 new_pos |= AR8327_POWER_ON_STRIP_POWER_ON_SEL;
770 priv->write(priv, AR8327_REG_POWER_ON_STRIP, new_pos);
771 }
772
773 for (i = 0; i < AR8327_NUM_PHYS; i++)
774 ar8327_phy_fixup(priv, i);
775
776 return 0;
777 }
778
779 static void
780 ar8327_init_globals(struct ar8216_priv *priv)
781 {
782 u32 t;
783
784 /* enable CPU port and disable mirror port */
785 t = AR8327_FWD_CTRL0_CPU_PORT_EN |
786 AR8327_FWD_CTRL0_MIRROR_PORT;
787 priv->write(priv, AR8327_REG_FWD_CTRL0, t);
788
789 /* forward multicast and broadcast frames to CPU */
790 t = (AR8327_PORTS_ALL << AR8327_FWD_CTRL1_UC_FLOOD_S) |
791 (AR8327_PORTS_ALL << AR8327_FWD_CTRL1_MC_FLOOD_S) |
792 (AR8327_PORTS_ALL << AR8327_FWD_CTRL1_BC_FLOOD_S);
793 priv->write(priv, AR8327_REG_FWD_CTRL1, t);
794
795 /* setup MTU */
796 ar8216_rmw(priv, AR8327_REG_MAX_FRAME_SIZE,
797 AR8327_MAX_FRAME_SIZE_MTU, 1518 + 8 + 2);
798 }
799
800 static void
801 ar8327_init_cpuport(struct ar8216_priv *priv)
802 {
803 struct ar8327_platform_data *pdata;
804 struct ar8327_port_cfg *cfg;
805 u32 t;
806
807 pdata = priv->phy->dev.platform_data;
808 if (!pdata)
809 return;
810
811 cfg = &pdata->cpuport_cfg;
812 if (!cfg->force_link) {
813 priv->write(priv, AR8327_REG_PORT_STATUS(AR8216_PORT_CPU),
814 AR8216_PORT_STATUS_LINK_AUTO);
815 return;
816 }
817
818 t = AR8216_PORT_STATUS_TXMAC | AR8216_PORT_STATUS_RXMAC;
819 t |= cfg->duplex ? AR8216_PORT_STATUS_DUPLEX : 0;
820 t |= cfg->rxpause ? AR8216_PORT_STATUS_RXFLOW : 0;
821 t |= cfg->txpause ? AR8216_PORT_STATUS_TXFLOW : 0;
822 switch (cfg->speed) {
823 case AR8327_PORT_SPEED_10:
824 t |= AR8216_PORT_SPEED_10M;
825 break;
826 case AR8327_PORT_SPEED_100:
827 t |= AR8216_PORT_SPEED_100M;
828 break;
829 case AR8327_PORT_SPEED_1000:
830 t |= AR8216_PORT_SPEED_1000M;
831 break;
832 }
833
834 priv->write(priv, AR8327_REG_PORT_STATUS(AR8216_PORT_CPU), t);
835 }
836
837 static void
838 ar8327_init_port(struct ar8216_priv *priv, int port)
839 {
840 u32 t;
841
842 if (port == AR8216_PORT_CPU) {
843 ar8327_init_cpuport(priv);
844 } else {
845 t = AR8216_PORT_STATUS_LINK_AUTO;
846 priv->write(priv, AR8327_REG_PORT_STATUS(port), t);
847 }
848
849 priv->write(priv, AR8327_REG_PORT_HEADER(port), 0);
850
851 priv->write(priv, AR8327_REG_PORT_VLAN0(port), 0);
852
853 t = AR8327_PORT_VLAN1_OUT_MODE_UNTOUCH << AR8327_PORT_VLAN1_OUT_MODE_S;
854 priv->write(priv, AR8327_REG_PORT_VLAN1(port), t);
855
856 t = AR8327_PORT_LOOKUP_LEARN;
857 t |= AR8216_PORT_STATE_FORWARD << AR8327_PORT_LOOKUP_STATE_S;
858 priv->write(priv, AR8327_REG_PORT_LOOKUP(port), t);
859 }
860
861 static u32
862 ar8327_read_port_status(struct ar8216_priv *priv, int port)
863 {
864 return priv->read(priv, AR8327_REG_PORT_STATUS(port));
865 }
866
867 static int
868 ar8327_atu_flush(struct ar8216_priv *priv)
869 {
870 int ret;
871
872 ret = ar8216_wait_bit(priv, AR8327_REG_ATU_FUNC,
873 AR8327_ATU_FUNC_BUSY, 0);
874 if (!ret)
875 priv->write(priv, AR8327_REG_ATU_FUNC,
876 AR8327_ATU_FUNC_OP_FLUSH);
877
878 return ret;
879 }
880
881 static void
882 ar8327_vtu_op(struct ar8216_priv *priv, u32 op, u32 val)
883 {
884 if (ar8216_wait_bit(priv, AR8327_REG_VTU_FUNC1,
885 AR8327_VTU_FUNC1_BUSY, 0))
886 return;
887
888 if ((op & AR8327_VTU_FUNC1_OP) == AR8327_VTU_FUNC1_OP_LOAD)
889 priv->write(priv, AR8327_REG_VTU_FUNC0, val);
890
891 op |= AR8327_VTU_FUNC1_BUSY;
892 priv->write(priv, AR8327_REG_VTU_FUNC1, op);
893 }
894
895 static void
896 ar8327_vtu_flush(struct ar8216_priv *priv)
897 {
898 ar8327_vtu_op(priv, AR8327_VTU_FUNC1_OP_FLUSH, 0);
899 }
900
901 static void
902 ar8327_vtu_load_vlan(struct ar8216_priv *priv, u32 vid, u32 port_mask)
903 {
904 u32 op;
905 u32 val;
906 int i;
907
908 op = AR8327_VTU_FUNC1_OP_LOAD | (vid << AR8327_VTU_FUNC1_VID_S);
909 val = AR8327_VTU_FUNC0_VALID | AR8327_VTU_FUNC0_IVL;
910 for (i = 0; i < AR8327_NUM_PORTS; i++) {
911 u32 mode;
912
913 if ((port_mask & BIT(i)) == 0)
914 mode = AR8327_VTU_FUNC0_EG_MODE_NOT;
915 else if (priv->vlan == 0)
916 mode = AR8327_VTU_FUNC0_EG_MODE_KEEP;
917 else if (priv->vlan_tagged & BIT(i))
918 mode = AR8327_VTU_FUNC0_EG_MODE_TAG;
919 else
920 mode = AR8327_VTU_FUNC0_EG_MODE_UNTAG;
921
922 val |= mode << AR8327_VTU_FUNC0_EG_MODE_S(i);
923 }
924 ar8327_vtu_op(priv, op, val);
925 }
926
927 static void
928 ar8327_setup_port(struct ar8216_priv *priv, int port, u32 egress, u32 ingress,
929 u32 members, u32 pvid)
930 {
931 u32 t;
932 u32 mode;
933
934 t = pvid << AR8327_PORT_VLAN0_DEF_SVID_S;
935 t |= pvid << AR8327_PORT_VLAN0_DEF_CVID_S;
936 priv->write(priv, AR8327_REG_PORT_VLAN0(port), t);
937
938 mode = AR8327_PORT_VLAN1_OUT_MODE_UNMOD;
939 switch (egress) {
940 case AR8216_OUT_KEEP:
941 mode = AR8327_PORT_VLAN1_OUT_MODE_UNTOUCH;
942 break;
943 case AR8216_OUT_STRIP_VLAN:
944 mode = AR8327_PORT_VLAN1_OUT_MODE_UNTAG;
945 break;
946 case AR8216_OUT_ADD_VLAN:
947 mode = AR8327_PORT_VLAN1_OUT_MODE_TAG;
948 break;
949 }
950
951 t = AR8327_PORT_VLAN1_PORT_VLAN_PROP;
952 t |= mode << AR8327_PORT_VLAN1_OUT_MODE_S;
953 priv->write(priv, AR8327_REG_PORT_VLAN1(port), t);
954
955 t = members;
956 t |= AR8327_PORT_LOOKUP_LEARN;
957 t |= ingress << AR8327_PORT_LOOKUP_IN_MODE_S;
958 t |= AR8216_PORT_STATE_FORWARD << AR8327_PORT_LOOKUP_STATE_S;
959 priv->write(priv, AR8327_REG_PORT_LOOKUP(port), t);
960 }
961
962 static const struct ar8xxx_chip ar8327_chip = {
963 .caps = AR8XXX_CAP_GIGE,
964 .hw_init = ar8327_hw_init,
965 .init_globals = ar8327_init_globals,
966 .init_port = ar8327_init_port,
967 .setup_port = ar8327_setup_port,
968 .read_port_status = ar8327_read_port_status,
969 .atu_flush = ar8327_atu_flush,
970 .vtu_flush = ar8327_vtu_flush,
971 .vtu_load_vlan = ar8327_vtu_load_vlan,
972 };
973
974 static int
975 ar8216_sw_set_vlan(struct switch_dev *dev, const struct switch_attr *attr,
976 struct switch_val *val)
977 {
978 struct ar8216_priv *priv = to_ar8216(dev);
979 priv->vlan = !!val->value.i;
980 return 0;
981 }
982
983 static int
984 ar8216_sw_get_vlan(struct switch_dev *dev, const struct switch_attr *attr,
985 struct switch_val *val)
986 {
987 struct ar8216_priv *priv = to_ar8216(dev);
988 val->value.i = priv->vlan;
989 return 0;
990 }
991
992
993 static int
994 ar8216_sw_set_pvid(struct switch_dev *dev, int port, int vlan)
995 {
996 struct ar8216_priv *priv = to_ar8216(dev);
997
998 /* make sure no invalid PVIDs get set */
999
1000 if (vlan >= dev->vlans)
1001 return -EINVAL;
1002
1003 priv->pvid[port] = vlan;
1004 return 0;
1005 }
1006
1007 static int
1008 ar8216_sw_get_pvid(struct switch_dev *dev, int port, int *vlan)
1009 {
1010 struct ar8216_priv *priv = to_ar8216(dev);
1011 *vlan = priv->pvid[port];
1012 return 0;
1013 }
1014
1015 static int
1016 ar8216_sw_set_vid(struct switch_dev *dev, const struct switch_attr *attr,
1017 struct switch_val *val)
1018 {
1019 struct ar8216_priv *priv = to_ar8216(dev);
1020 priv->vlan_id[val->port_vlan] = val->value.i;
1021 return 0;
1022 }
1023
1024 static int
1025 ar8216_sw_get_vid(struct switch_dev *dev, const struct switch_attr *attr,
1026 struct switch_val *val)
1027 {
1028 struct ar8216_priv *priv = to_ar8216(dev);
1029 val->value.i = priv->vlan_id[val->port_vlan];
1030 return 0;
1031 }
1032
1033 static int
1034 ar8216_sw_get_port_link(struct switch_dev *dev, int port,
1035 struct switch_port_link *link)
1036 {
1037 struct ar8216_priv *priv = to_ar8216(dev);
1038
1039 ar8216_read_port_link(priv, port, link);
1040 return 0;
1041 }
1042
1043 static int
1044 ar8216_sw_get_ports(struct switch_dev *dev, struct switch_val *val)
1045 {
1046 struct ar8216_priv *priv = to_ar8216(dev);
1047 u8 ports = priv->vlan_table[val->port_vlan];
1048 int i;
1049
1050 val->len = 0;
1051 for (i = 0; i < dev->ports; i++) {
1052 struct switch_port *p;
1053
1054 if (!(ports & (1 << i)))
1055 continue;
1056
1057 p = &val->value.ports[val->len++];
1058 p->id = i;
1059 if (priv->vlan_tagged & (1 << i))
1060 p->flags = (1 << SWITCH_PORT_FLAG_TAGGED);
1061 else
1062 p->flags = 0;
1063 }
1064 return 0;
1065 }
1066
1067 static int
1068 ar8216_sw_set_ports(struct switch_dev *dev, struct switch_val *val)
1069 {
1070 struct ar8216_priv *priv = to_ar8216(dev);
1071 u8 *vt = &priv->vlan_table[val->port_vlan];
1072 int i, j;
1073
1074 *vt = 0;
1075 for (i = 0; i < val->len; i++) {
1076 struct switch_port *p = &val->value.ports[i];
1077
1078 if (p->flags & (1 << SWITCH_PORT_FLAG_TAGGED)) {
1079 priv->vlan_tagged |= (1 << p->id);
1080 } else {
1081 priv->vlan_tagged &= ~(1 << p->id);
1082 priv->pvid[p->id] = val->port_vlan;
1083
1084 /* make sure that an untagged port does not
1085 * appear in other vlans */
1086 for (j = 0; j < AR8X16_MAX_VLANS; j++) {
1087 if (j == val->port_vlan)
1088 continue;
1089 priv->vlan_table[j] &= ~(1 << p->id);
1090 }
1091 }
1092
1093 *vt |= 1 << p->id;
1094 }
1095 return 0;
1096 }
1097
1098 static int
1099 ar8216_sw_hw_apply(struct switch_dev *dev)
1100 {
1101 struct ar8216_priv *priv = to_ar8216(dev);
1102 u8 portmask[AR8X16_MAX_PORTS];
1103 int i, j;
1104
1105 mutex_lock(&priv->reg_mutex);
1106 /* flush all vlan translation unit entries */
1107 priv->chip->vtu_flush(priv);
1108
1109 memset(portmask, 0, sizeof(portmask));
1110 if (!priv->init) {
1111 /* calculate the port destination masks and load vlans
1112 * into the vlan translation unit */
1113 for (j = 0; j < AR8X16_MAX_VLANS; j++) {
1114 u8 vp = priv->vlan_table[j];
1115
1116 if (!vp)
1117 continue;
1118
1119 for (i = 0; i < dev->ports; i++) {
1120 u8 mask = (1 << i);
1121 if (vp & mask)
1122 portmask[i] |= vp & ~mask;
1123 }
1124
1125 priv->chip->vtu_load_vlan(priv, priv->vlan_id[j],
1126 priv->vlan_table[j]);
1127 }
1128 } else {
1129 /* vlan disabled:
1130 * isolate all ports, but connect them to the cpu port */
1131 for (i = 0; i < dev->ports; i++) {
1132 if (i == AR8216_PORT_CPU)
1133 continue;
1134
1135 portmask[i] = 1 << AR8216_PORT_CPU;
1136 portmask[AR8216_PORT_CPU] |= (1 << i);
1137 }
1138 }
1139
1140 /* update the port destination mask registers and tag settings */
1141 for (i = 0; i < dev->ports; i++) {
1142 int egress, ingress;
1143 int pvid;
1144
1145 if (priv->vlan) {
1146 pvid = priv->vlan_id[priv->pvid[i]];
1147 if (priv->vlan_tagged & (1 << i))
1148 egress = AR8216_OUT_ADD_VLAN;
1149 else
1150 egress = AR8216_OUT_STRIP_VLAN;
1151 ingress = AR8216_IN_SECURE;
1152 } else {
1153 pvid = i;
1154 egress = AR8216_OUT_KEEP;
1155 ingress = AR8216_IN_PORT_ONLY;
1156 }
1157
1158 priv->chip->setup_port(priv, i, egress, ingress, portmask[i],
1159 pvid);
1160 }
1161 mutex_unlock(&priv->reg_mutex);
1162 return 0;
1163 }
1164
1165 static int
1166 ar8216_sw_reset_switch(struct switch_dev *dev)
1167 {
1168 struct ar8216_priv *priv = to_ar8216(dev);
1169 int i;
1170
1171 mutex_lock(&priv->reg_mutex);
1172 memset(&priv->vlan, 0, sizeof(struct ar8216_priv) -
1173 offsetof(struct ar8216_priv, vlan));
1174
1175 for (i = 0; i < AR8X16_MAX_VLANS; i++)
1176 priv->vlan_id[i] = i;
1177
1178 /* Configure all ports */
1179 for (i = 0; i < dev->ports; i++)
1180 priv->chip->init_port(priv, i);
1181
1182 priv->chip->init_globals(priv);
1183 mutex_unlock(&priv->reg_mutex);
1184
1185 return ar8216_sw_hw_apply(dev);
1186 }
1187
1188 static struct switch_attr ar8216_globals[] = {
1189 {
1190 .type = SWITCH_TYPE_INT,
1191 .name = "enable_vlan",
1192 .description = "Enable VLAN mode",
1193 .set = ar8216_sw_set_vlan,
1194 .get = ar8216_sw_get_vlan,
1195 .max = 1
1196 },
1197 };
1198
1199 static struct switch_attr ar8216_port[] = {
1200 };
1201
1202 static struct switch_attr ar8216_vlan[] = {
1203 {
1204 .type = SWITCH_TYPE_INT,
1205 .name = "vid",
1206 .description = "VLAN ID (0-4094)",
1207 .set = ar8216_sw_set_vid,
1208 .get = ar8216_sw_get_vid,
1209 .max = 4094,
1210 },
1211 };
1212
1213 static const struct switch_dev_ops ar8216_sw_ops = {
1214 .attr_global = {
1215 .attr = ar8216_globals,
1216 .n_attr = ARRAY_SIZE(ar8216_globals),
1217 },
1218 .attr_port = {
1219 .attr = ar8216_port,
1220 .n_attr = ARRAY_SIZE(ar8216_port),
1221 },
1222 .attr_vlan = {
1223 .attr = ar8216_vlan,
1224 .n_attr = ARRAY_SIZE(ar8216_vlan),
1225 },
1226 .get_port_pvid = ar8216_sw_get_pvid,
1227 .set_port_pvid = ar8216_sw_set_pvid,
1228 .get_vlan_ports = ar8216_sw_get_ports,
1229 .set_vlan_ports = ar8216_sw_set_ports,
1230 .apply_config = ar8216_sw_hw_apply,
1231 .reset_switch = ar8216_sw_reset_switch,
1232 .get_port_link = ar8216_sw_get_port_link,
1233 };
1234
1235 static int
1236 ar8216_id_chip(struct ar8216_priv *priv)
1237 {
1238 u32 val;
1239 u16 id;
1240 int i;
1241
1242 val = ar8216_mii_read(priv, AR8216_REG_CTRL);
1243 if (val == ~0)
1244 return -ENODEV;
1245
1246 id = val & (AR8216_CTRL_REVISION | AR8216_CTRL_VERSION);
1247 for (i = 0; i < AR8X16_PROBE_RETRIES; i++) {
1248 u16 t;
1249
1250 val = ar8216_mii_read(priv, AR8216_REG_CTRL);
1251 if (val == ~0)
1252 return -ENODEV;
1253
1254 t = val & (AR8216_CTRL_REVISION | AR8216_CTRL_VERSION);
1255 if (t != id)
1256 return -ENODEV;
1257 }
1258
1259 priv->chip_ver = (id & AR8216_CTRL_VERSION) >> AR8216_CTRL_VERSION_S;
1260 priv->chip_rev = (id & AR8216_CTRL_REVISION);
1261
1262 switch (priv->chip_ver) {
1263 case AR8XXX_VER_AR8216:
1264 priv->chip = &ar8216_chip;
1265 break;
1266 case AR8XXX_VER_AR8236:
1267 priv->chip = &ar8236_chip;
1268 break;
1269 case AR8XXX_VER_AR8316:
1270 priv->chip = &ar8316_chip;
1271 break;
1272 case AR8XXX_VER_AR8327:
1273 priv->mii_lo_first = true;
1274 priv->chip = &ar8327_chip;
1275 break;
1276 default:
1277 printk(KERN_DEBUG
1278 "ar8216: Unknown Atheros device [ver=%d, rev=%d, phy_id=%04x%04x]\n",
1279 priv->chip_ver, priv->chip_rev,
1280 mdiobus_read(priv->phy->bus, priv->phy->addr, 2),
1281 mdiobus_read(priv->phy->bus, priv->phy->addr, 3));
1282
1283 return -ENODEV;
1284 }
1285
1286 return 0;
1287 }
1288
1289 static int
1290 ar8216_config_init(struct phy_device *pdev)
1291 {
1292 struct ar8216_priv *priv = pdev->priv;
1293 struct net_device *dev = pdev->attached_dev;
1294 struct switch_dev *swdev;
1295 int ret;
1296
1297 if (!priv) {
1298 priv = kzalloc(sizeof(struct ar8216_priv), GFP_KERNEL);
1299 if (priv == NULL)
1300 return -ENOMEM;
1301 }
1302
1303 priv->phy = pdev;
1304
1305 ret = ar8216_id_chip(priv);
1306 if (ret)
1307 goto err_free_priv;
1308
1309 if (pdev->addr != 0) {
1310 if (ar8xxx_has_gige(priv)) {
1311 pdev->supported |= SUPPORTED_1000baseT_Full;
1312 pdev->advertising |= ADVERTISED_1000baseT_Full;
1313 }
1314
1315 if (chip_is_ar8316(priv)) {
1316 /* check if we're attaching to the switch twice */
1317 pdev = pdev->bus->phy_map[0];
1318 if (!pdev) {
1319 kfree(priv);
1320 return 0;
1321 }
1322
1323 /* switch device has not been initialized, reuse priv */
1324 if (!pdev->priv) {
1325 priv->port4_phy = true;
1326 pdev->priv = priv;
1327 return 0;
1328 }
1329
1330 kfree(priv);
1331
1332 /* switch device has been initialized, reinit */
1333 priv = pdev->priv;
1334 priv->dev.ports = (AR8216_NUM_PORTS - 1);
1335 priv->initialized = false;
1336 priv->port4_phy = true;
1337 ar8316_hw_init(priv);
1338 return 0;
1339 }
1340
1341 kfree(priv);
1342 return 0;
1343 }
1344
1345 if (ar8xxx_has_gige(priv))
1346 pdev->supported = SUPPORTED_1000baseT_Full;
1347 else
1348 pdev->supported = SUPPORTED_100baseT_Full;
1349 pdev->advertising = pdev->supported;
1350
1351 mutex_init(&priv->reg_mutex);
1352 priv->read = ar8216_mii_read;
1353 priv->write = ar8216_mii_write;
1354
1355 pdev->priv = priv;
1356
1357 swdev = &priv->dev;
1358 swdev->cpu_port = AR8216_PORT_CPU;
1359 swdev->ops = &ar8216_sw_ops;
1360 swdev->ports = AR8216_NUM_PORTS;
1361
1362 if (chip_is_ar8316(priv)) {
1363 swdev->name = "Atheros AR8316";
1364 swdev->vlans = AR8X16_MAX_VLANS;
1365
1366 if (priv->port4_phy) {
1367 /* port 5 connected to the other mac, therefore unusable */
1368 swdev->ports = (AR8216_NUM_PORTS - 1);
1369 }
1370 } else if (chip_is_ar8236(priv)) {
1371 swdev->name = "Atheros AR8236";
1372 swdev->vlans = AR8216_NUM_VLANS;
1373 swdev->ports = AR8216_NUM_PORTS;
1374 } else if (chip_is_ar8327(priv)) {
1375 swdev->name = "Atheros AR8327";
1376 swdev->vlans = AR8X16_MAX_VLANS;
1377 swdev->ports = AR8327_NUM_PORTS;
1378 } else {
1379 swdev->name = "Atheros AR8216";
1380 swdev->vlans = AR8216_NUM_VLANS;
1381 }
1382
1383 ret = register_switch(&priv->dev, pdev->attached_dev);
1384 if (ret)
1385 goto err_free_priv;
1386
1387 printk(KERN_INFO "%s: %s switch driver attached.\n",
1388 pdev->attached_dev->name, swdev->name);
1389
1390 priv->init = true;
1391
1392 ret = priv->chip->hw_init(priv);
1393 if (ret)
1394 goto err_free_priv;
1395
1396 ret = ar8216_sw_reset_switch(&priv->dev);
1397 if (ret)
1398 goto err_free_priv;
1399
1400 dev->phy_ptr = priv;
1401
1402 /* VID fixup only needed on ar8216 */
1403 if (chip_is_ar8216(priv) && pdev->addr == 0) {
1404 dev->priv_flags |= IFF_NO_IP_ALIGN;
1405 dev->eth_mangle_rx = ar8216_mangle_rx;
1406 dev->eth_mangle_tx = ar8216_mangle_tx;
1407 }
1408
1409 priv->init = false;
1410
1411 return 0;
1412
1413 err_free_priv:
1414 kfree(priv);
1415 return ret;
1416 }
1417
1418 static int
1419 ar8216_read_status(struct phy_device *phydev)
1420 {
1421 struct ar8216_priv *priv = phydev->priv;
1422 struct switch_port_link link;
1423 int ret;
1424
1425 if (phydev->addr != 0)
1426 return genphy_read_status(phydev);
1427
1428 ar8216_read_port_link(priv, phydev->addr, &link);
1429 phydev->link = !!link.link;
1430 if (!phydev->link)
1431 return 0;
1432
1433 switch (link.speed) {
1434 case SWITCH_PORT_SPEED_10:
1435 phydev->speed = SPEED_10;
1436 break;
1437 case SWITCH_PORT_SPEED_100:
1438 phydev->speed = SPEED_100;
1439 break;
1440 case SWITCH_PORT_SPEED_1000:
1441 phydev->speed = SPEED_1000;
1442 break;
1443 default:
1444 phydev->speed = 0;
1445 }
1446 phydev->duplex = link.duplex ? DUPLEX_FULL : DUPLEX_HALF;
1447
1448 /* flush the address translation unit */
1449 mutex_lock(&priv->reg_mutex);
1450 ret = priv->chip->atu_flush(priv);
1451 mutex_unlock(&priv->reg_mutex);
1452
1453 phydev->state = PHY_RUNNING;
1454 netif_carrier_on(phydev->attached_dev);
1455 phydev->adjust_link(phydev->attached_dev);
1456
1457 return ret;
1458 }
1459
1460 static int
1461 ar8216_config_aneg(struct phy_device *phydev)
1462 {
1463 if (phydev->addr == 0)
1464 return 0;
1465
1466 return genphy_config_aneg(phydev);
1467 }
1468
1469 static int
1470 ar8216_probe(struct phy_device *pdev)
1471 {
1472 struct ar8216_priv priv;
1473
1474 priv.phy = pdev;
1475 return ar8216_id_chip(&priv);
1476 }
1477
1478 static void
1479 ar8216_remove(struct phy_device *pdev)
1480 {
1481 struct ar8216_priv *priv = pdev->priv;
1482 struct net_device *dev = pdev->attached_dev;
1483
1484 if (!priv)
1485 return;
1486
1487 dev->priv_flags &= ~IFF_NO_IP_ALIGN;
1488 dev->eth_mangle_rx = NULL;
1489 dev->eth_mangle_tx = NULL;
1490
1491 if (pdev->addr == 0)
1492 unregister_switch(&priv->dev);
1493 kfree(priv);
1494 }
1495
1496 static struct phy_driver ar8216_driver = {
1497 .phy_id = 0x004d0000,
1498 .name = "Atheros AR8216/AR8236/AR8316",
1499 .phy_id_mask = 0xffff0000,
1500 .features = PHY_BASIC_FEATURES,
1501 .probe = ar8216_probe,
1502 .remove = ar8216_remove,
1503 .config_init = &ar8216_config_init,
1504 .config_aneg = &ar8216_config_aneg,
1505 .read_status = &ar8216_read_status,
1506 .driver = { .owner = THIS_MODULE },
1507 };
1508
1509 int __init
1510 ar8216_init(void)
1511 {
1512 return phy_driver_register(&ar8216_driver);
1513 }
1514
1515 void __exit
1516 ar8216_exit(void)
1517 {
1518 phy_driver_unregister(&ar8216_driver);
1519 }
1520
1521 module_init(ar8216_init);
1522 module_exit(ar8216_exit);
1523 MODULE_LICENSE("GPL");
1524