treewide: fix replace nbd@openwrt.org with nbd@nbd.name
[openwrt.git] / target / linux / generic / files / drivers / net / phy / rtl8306.c
1 /*
2  * rtl8306.c: RTL8306S switch driver
3  *
4  * Copyright (C) 2009 Felix Fietkau <nbd@nbd.name>
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * version 2 as published by the Free Software Foundation.
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/if.h>
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/list.h>
20 #include <linux/if_ether.h>
21 #include <linux/skbuff.h>
22 #include <linux/netdevice.h>
23 #include <linux/netlink.h>
24 #include <net/genetlink.h>
25 #include <linux/switch.h>
26 #include <linux/delay.h>
27 #include <linux/phy.h>
28
29 //#define DEBUG 1
30
31 /* Global (PHY0) */
32 #define RTL8306_REG_PAGE                16
33 #define RTL8306_REG_PAGE_LO             (1 << 15)
34 #define RTL8306_REG_PAGE_HI             (1 << 1) /* inverted */
35
36 #define RTL8306_NUM_VLANS               16
37 #define RTL8306_NUM_PORTS               6
38 #define RTL8306_PORT_CPU                5
39 #define RTL8306_NUM_PAGES               4
40 #define RTL8306_NUM_REGS                32
41
42 #define RTL_NAME_S          "RTL8306S"
43 #define RTL_NAME_SD         "RTL8306SD"
44 #define RTL_NAME_SDM        "RTL8306SDM"
45 #define RTL_NAME_UNKNOWN    "RTL8306(unknown)"
46
47 #define RTL8306_MAGIC   0x8306
48
49 static LIST_HEAD(phydevs);
50
51 struct rtl_priv {
52         struct list_head list;
53         struct switch_dev dev;
54         int page;
55         int type;
56         int do_cpu;
57         struct mii_bus *bus;
58         char hwname[sizeof(RTL_NAME_UNKNOWN)];
59         bool fixup;
60 };
61
62 struct rtl_phyregs {
63         int nway;
64         int speed;
65         int duplex;
66 };
67
68 #define to_rtl(_dev) container_of(_dev, struct rtl_priv, dev)
69
70 enum {
71         RTL_TYPE_S,
72         RTL_TYPE_SD,
73         RTL_TYPE_SDM,
74 };
75
76 struct rtl_reg {
77         int page;
78         int phy;
79         int reg;
80         int bits;
81         int shift;
82         int inverted;
83 };
84
85 #define RTL_VLAN_REGOFS(name) \
86         (RTL_REG_VLAN1_##name - RTL_REG_VLAN0_##name)
87
88 #define RTL_PORT_REGOFS(name) \
89         (RTL_REG_PORT1_##name - RTL_REG_PORT0_##name)
90
91 #define RTL_PORT_REG(id, reg) \
92         (RTL_REG_PORT0_##reg + (id * RTL_PORT_REGOFS(reg)))
93
94 #define RTL_VLAN_REG(id, reg) \
95         (RTL_REG_VLAN0_##reg + (id * RTL_VLAN_REGOFS(reg)))
96
97 #define RTL_GLOBAL_REGATTR(reg) \
98         .id = RTL_REG_##reg, \
99         .type = SWITCH_TYPE_INT, \
100         .ofs = 0, \
101         .set = rtl_attr_set_int, \
102         .get = rtl_attr_get_int
103
104 #define RTL_PORT_REGATTR(reg) \
105         .id = RTL_REG_PORT0_##reg, \
106         .type = SWITCH_TYPE_INT, \
107         .ofs = RTL_PORT_REGOFS(reg), \
108         .set = rtl_attr_set_port_int, \
109         .get = rtl_attr_get_port_int
110
111 #define RTL_VLAN_REGATTR(reg) \
112         .id = RTL_REG_VLAN0_##reg, \
113         .type = SWITCH_TYPE_INT, \
114         .ofs = RTL_VLAN_REGOFS(reg), \
115         .set = rtl_attr_set_vlan_int, \
116         .get = rtl_attr_get_vlan_int
117
118 enum rtl_regidx {
119         RTL_REG_CHIPID,
120         RTL_REG_CHIPVER,
121         RTL_REG_CHIPTYPE,
122         RTL_REG_CPUPORT,
123
124         RTL_REG_EN_CPUPORT,
125         RTL_REG_EN_TAG_OUT,
126         RTL_REG_EN_TAG_CLR,
127         RTL_REG_EN_TAG_IN,
128         RTL_REG_TRAP_CPU,
129         RTL_REG_CPU_LINKUP,
130         RTL_REG_TRUNK_PORTSEL,
131         RTL_REG_EN_TRUNK,
132         RTL_REG_RESET,
133
134         RTL_REG_VLAN_ENABLE,
135         RTL_REG_VLAN_FILTER,
136         RTL_REG_VLAN_TAG_ONLY,
137         RTL_REG_VLAN_TAG_AWARE,
138 #define RTL_VLAN_ENUM(id) \
139         RTL_REG_VLAN##id##_VID, \
140         RTL_REG_VLAN##id##_PORTMASK
141         RTL_VLAN_ENUM(0),
142         RTL_VLAN_ENUM(1),
143         RTL_VLAN_ENUM(2),
144         RTL_VLAN_ENUM(3),
145         RTL_VLAN_ENUM(4),
146         RTL_VLAN_ENUM(5),
147         RTL_VLAN_ENUM(6),
148         RTL_VLAN_ENUM(7),
149         RTL_VLAN_ENUM(8),
150         RTL_VLAN_ENUM(9),
151         RTL_VLAN_ENUM(10),
152         RTL_VLAN_ENUM(11),
153         RTL_VLAN_ENUM(12),
154         RTL_VLAN_ENUM(13),
155         RTL_VLAN_ENUM(14),
156         RTL_VLAN_ENUM(15),
157 #define RTL_PORT_ENUM(id) \
158         RTL_REG_PORT##id##_PVID, \
159         RTL_REG_PORT##id##_NULL_VID_REPLACE, \
160         RTL_REG_PORT##id##_NON_PVID_DISCARD, \
161         RTL_REG_PORT##id##_VID_INSERT, \
162         RTL_REG_PORT##id##_TAG_INSERT, \
163         RTL_REG_PORT##id##_LINK, \
164         RTL_REG_PORT##id##_SPEED, \
165         RTL_REG_PORT##id##_NWAY, \
166         RTL_REG_PORT##id##_NRESTART, \
167         RTL_REG_PORT##id##_DUPLEX, \
168         RTL_REG_PORT##id##_RXEN, \
169         RTL_REG_PORT##id##_TXEN
170         RTL_PORT_ENUM(0),
171         RTL_PORT_ENUM(1),
172         RTL_PORT_ENUM(2),
173         RTL_PORT_ENUM(3),
174         RTL_PORT_ENUM(4),
175         RTL_PORT_ENUM(5),
176 };
177
178 static const struct rtl_reg rtl_regs[] = {
179         [RTL_REG_CHIPID]         = { 0, 4, 30, 16,  0, 0 },
180         [RTL_REG_CHIPVER]        = { 0, 4, 31,  8,  0, 0 },
181         [RTL_REG_CHIPTYPE]       = { 0, 4, 31,  2,  8, 0 },
182
183         /* CPU port number */
184         [RTL_REG_CPUPORT]        = { 2, 4, 21,  3,  0, 0 },
185         /* Enable CPU port function */
186         [RTL_REG_EN_CPUPORT]     = { 3, 2, 21,  1, 15, 1 },
187         /* Enable CPU port tag insertion */
188         [RTL_REG_EN_TAG_OUT]     = { 3, 2, 21,  1, 12, 0 },
189         /* Enable CPU port tag removal */
190         [RTL_REG_EN_TAG_CLR]     = { 3, 2, 21,  1, 11, 0 },
191         /* Enable CPU port tag checking */
192         [RTL_REG_EN_TAG_IN]      = { 0, 4, 21,  1,  7, 0 },
193         [RTL_REG_EN_TRUNK]       = { 0, 0, 19,  1, 11, 1 },
194         [RTL_REG_TRUNK_PORTSEL]  = { 0, 0, 16,  1,  6, 1 },
195         [RTL_REG_RESET]          = { 0, 0, 16,  1, 12, 0 },
196
197         [RTL_REG_TRAP_CPU]       = { 3, 2, 22,  1,  6, 0 },
198         [RTL_REG_CPU_LINKUP]     = { 0, 6, 22,  1, 15, 0 },
199
200         [RTL_REG_VLAN_TAG_ONLY]  = { 0, 0, 16,  1,  8, 1 },
201         [RTL_REG_VLAN_FILTER]    = { 0, 0, 16,  1,  9, 1 },
202         [RTL_REG_VLAN_TAG_AWARE] = { 0, 0, 16,  1, 10, 1 },
203         [RTL_REG_VLAN_ENABLE]    = { 0, 0, 18,  1,  8, 1 },
204
205 #define RTL_VLAN_REGS(id, phy, page, regofs) \
206         [RTL_REG_VLAN##id##_VID] = { page, phy, 25 + regofs, 12, 0, 0 }, \
207         [RTL_REG_VLAN##id##_PORTMASK] = { page, phy, 24 + regofs, 6, 0, 0 }
208         RTL_VLAN_REGS( 0, 0, 0, 0),
209         RTL_VLAN_REGS( 1, 1, 0, 0),
210         RTL_VLAN_REGS( 2, 2, 0, 0),
211         RTL_VLAN_REGS( 3, 3, 0, 0),
212         RTL_VLAN_REGS( 4, 4, 0, 0),
213         RTL_VLAN_REGS( 5, 0, 1, 2),
214         RTL_VLAN_REGS( 6, 1, 1, 2),
215         RTL_VLAN_REGS( 7, 2, 1, 2),
216         RTL_VLAN_REGS( 8, 3, 1, 2),
217         RTL_VLAN_REGS( 9, 4, 1, 2),
218         RTL_VLAN_REGS(10, 0, 1, 4),
219         RTL_VLAN_REGS(11, 1, 1, 4),
220         RTL_VLAN_REGS(12, 2, 1, 4),
221         RTL_VLAN_REGS(13, 3, 1, 4),
222         RTL_VLAN_REGS(14, 4, 1, 4),
223         RTL_VLAN_REGS(15, 0, 1, 6),
224
225 #define REG_PORT_SETTING(port, phy) \
226         [RTL_REG_PORT##port##_SPEED] = { 0, phy, 0, 1, 13, 0 }, \
227         [RTL_REG_PORT##port##_NWAY] = { 0, phy, 0, 1, 12, 0 }, \
228         [RTL_REG_PORT##port##_NRESTART] = { 0, phy, 0, 1, 9, 0 }, \
229         [RTL_REG_PORT##port##_DUPLEX] = { 0, phy, 0, 1, 8, 0 }, \
230         [RTL_REG_PORT##port##_TXEN] = { 0, phy, 24, 1, 11, 0 }, \
231         [RTL_REG_PORT##port##_RXEN] = { 0, phy, 24, 1, 10, 0 }, \
232         [RTL_REG_PORT##port##_LINK] = { 0, phy, 1, 1, 2, 0 }, \
233         [RTL_REG_PORT##port##_NULL_VID_REPLACE] = { 0, phy, 22, 1, 12, 0 }, \
234         [RTL_REG_PORT##port##_NON_PVID_DISCARD] = { 0, phy, 22, 1, 11, 0 }, \
235         [RTL_REG_PORT##port##_VID_INSERT] = { 0, phy, 22, 2, 9, 0 }, \
236         [RTL_REG_PORT##port##_TAG_INSERT] = { 0, phy, 22, 2, 0, 0 }
237
238         REG_PORT_SETTING(0, 0),
239         REG_PORT_SETTING(1, 1),
240         REG_PORT_SETTING(2, 2),
241         REG_PORT_SETTING(3, 3),
242         REG_PORT_SETTING(4, 4),
243         REG_PORT_SETTING(5, 6),
244
245 #define REG_PORT_PVID(phy, page, regofs) \
246         { page, phy, 24 + regofs, 4, 12, 0 }
247         [RTL_REG_PORT0_PVID] = REG_PORT_PVID(0, 0, 0),
248         [RTL_REG_PORT1_PVID] = REG_PORT_PVID(1, 0, 0),
249         [RTL_REG_PORT2_PVID] = REG_PORT_PVID(2, 0, 0),
250         [RTL_REG_PORT3_PVID] = REG_PORT_PVID(3, 0, 0),
251         [RTL_REG_PORT4_PVID] = REG_PORT_PVID(4, 0, 0),
252         [RTL_REG_PORT5_PVID] = REG_PORT_PVID(0, 1, 2),
253 };
254
255
256 static inline void
257 rtl_set_page(struct rtl_priv *priv, unsigned int page)
258 {
259         struct mii_bus *bus = priv->bus;
260         u16 pgsel;
261
262         if (priv->fixup)
263                 return;
264
265         if (priv->page == page)
266                 return;
267
268         BUG_ON(page > RTL8306_NUM_PAGES);
269         pgsel = bus->read(bus, 0, RTL8306_REG_PAGE);
270         pgsel &= ~(RTL8306_REG_PAGE_LO | RTL8306_REG_PAGE_HI);
271         if (page & (1 << 0))
272                 pgsel |= RTL8306_REG_PAGE_LO;
273         if (!(page & (1 << 1))) /* bit is inverted */
274                 pgsel |= RTL8306_REG_PAGE_HI;
275         bus->write(bus, 0, RTL8306_REG_PAGE, pgsel);
276 }
277
278 static inline int
279 rtl_w16(struct switch_dev *dev, unsigned int page, unsigned int phy, unsigned int reg, u16 val)
280 {
281         struct rtl_priv *priv = to_rtl(dev);
282         struct mii_bus *bus = priv->bus;
283
284         rtl_set_page(priv, page);
285         bus->write(bus, phy, reg, val);
286         bus->read(bus, phy, reg); /* flush */
287         return 0;
288 }
289
290 static inline int
291 rtl_r16(struct switch_dev *dev, unsigned int page, unsigned int phy, unsigned int reg)
292 {
293         struct rtl_priv *priv = to_rtl(dev);
294         struct mii_bus *bus = priv->bus;
295
296         rtl_set_page(priv, page);
297         return bus->read(bus, phy, reg);
298 }
299
300 static inline u16
301 rtl_rmw(struct switch_dev *dev, unsigned int page, unsigned int phy, unsigned int reg, u16 mask, u16 val)
302 {
303         struct rtl_priv *priv = to_rtl(dev);
304         struct mii_bus *bus = priv->bus;
305         u16 r;
306
307         rtl_set_page(priv, page);
308         r = bus->read(bus, phy, reg);
309         r &= ~mask;
310         r |= val;
311         bus->write(bus, phy, reg, r);
312         return bus->read(bus, phy, reg); /* flush */
313 }
314
315
316 static inline int
317 rtl_get(struct switch_dev *dev, enum rtl_regidx s)
318 {
319         const struct rtl_reg *r = &rtl_regs[s];
320         u16 val;
321
322         BUG_ON(s >= ARRAY_SIZE(rtl_regs));
323         if (r->bits == 0) /* unimplemented */
324                 return 0;
325
326         val = rtl_r16(dev, r->page, r->phy, r->reg);
327
328         if (r->shift > 0)
329                 val >>= r->shift;
330
331         if (r->inverted)
332                 val = ~val;
333
334         val &= (1 << r->bits) - 1;
335
336         return val;
337 }
338
339 static int
340 rtl_set(struct switch_dev *dev, enum rtl_regidx s, unsigned int val)
341 {
342         const struct rtl_reg *r = &rtl_regs[s];
343         u16 mask = 0xffff;
344
345         BUG_ON(s >= ARRAY_SIZE(rtl_regs));
346
347         if (r->bits == 0) /* unimplemented */
348                 return 0;
349
350         if (r->shift > 0)
351                 val <<= r->shift;
352
353         if (r->inverted)
354                 val = ~val;
355
356         if (r->bits != 16) {
357                 mask = (1 << r->bits) - 1;
358                 mask <<= r->shift;
359         }
360         val &= mask;
361         return rtl_rmw(dev, r->page, r->phy, r->reg, mask, val);
362 }
363
364 static void
365 rtl_phy_save(struct switch_dev *dev, int port, struct rtl_phyregs *regs)
366 {
367         regs->nway = rtl_get(dev, RTL_PORT_REG(port, NWAY));
368         regs->speed = rtl_get(dev, RTL_PORT_REG(port, SPEED));
369         regs->duplex = rtl_get(dev, RTL_PORT_REG(port, DUPLEX));
370 }
371
372 static void
373 rtl_phy_restore(struct switch_dev *dev, int port, struct rtl_phyregs *regs)
374 {
375         rtl_set(dev, RTL_PORT_REG(port, NWAY), regs->nway);
376         rtl_set(dev, RTL_PORT_REG(port, SPEED), regs->speed);
377         rtl_set(dev, RTL_PORT_REG(port, DUPLEX), regs->duplex);
378 }
379
380 static void
381 rtl_port_set_enable(struct switch_dev *dev, int port, int enabled)
382 {
383         rtl_set(dev, RTL_PORT_REG(port, RXEN), enabled);
384         rtl_set(dev, RTL_PORT_REG(port, TXEN), enabled);
385
386         if ((port >= 5) || !enabled)
387                 return;
388
389         /* restart autonegotiation if enabled */
390         rtl_set(dev, RTL_PORT_REG(port, NRESTART), 1);
391 }
392
393 static int
394 rtl_hw_apply(struct switch_dev *dev)
395 {
396         int i;
397         int trunk_en, trunk_psel;
398         struct rtl_phyregs port5;
399
400         rtl_phy_save(dev, 5, &port5);
401
402         /* disable rx/tx from PHYs */
403         for (i = 0; i < RTL8306_NUM_PORTS - 1; i++) {
404                 rtl_port_set_enable(dev, i, 0);
405         }
406
407         /* save trunking status */
408         trunk_en = rtl_get(dev, RTL_REG_EN_TRUNK);
409         trunk_psel = rtl_get(dev, RTL_REG_TRUNK_PORTSEL);
410
411         /* trunk port 3 and 4
412          * XXX: Big WTF, but RealTek seems to do it */
413         rtl_set(dev, RTL_REG_EN_TRUNK, 1);
414         rtl_set(dev, RTL_REG_TRUNK_PORTSEL, 1);
415
416         /* execute the software reset */
417         rtl_set(dev, RTL_REG_RESET, 1);
418
419         /* wait for the reset to complete,
420          * but don't wait for too long */
421         for (i = 0; i < 10; i++) {
422                 if (rtl_get(dev, RTL_REG_RESET) == 0)
423                         break;
424
425                 msleep(1);
426         }
427
428         /* enable rx/tx from PHYs */
429         for (i = 0; i < RTL8306_NUM_PORTS - 1; i++) {
430                 rtl_port_set_enable(dev, i, 1);
431         }
432
433         /* restore trunking settings */
434         rtl_set(dev, RTL_REG_EN_TRUNK, trunk_en);
435         rtl_set(dev, RTL_REG_TRUNK_PORTSEL, trunk_psel);
436         rtl_phy_restore(dev, 5, &port5);
437
438         rtl_set(dev, RTL_REG_CPU_LINKUP, 1);
439
440         return 0;
441 }
442
443 static void
444 rtl_hw_init(struct switch_dev *dev)
445 {
446         struct rtl_priv *priv = to_rtl(dev);
447         int cpu_mask = 1 << dev->cpu_port;
448         int i;
449
450         rtl_set(dev, RTL_REG_VLAN_ENABLE, 0);
451         rtl_set(dev, RTL_REG_VLAN_FILTER, 0);
452         rtl_set(dev, RTL_REG_EN_TRUNK, 0);
453         rtl_set(dev, RTL_REG_TRUNK_PORTSEL, 0);
454
455         /* initialize cpu port settings */
456         if (priv->do_cpu) {
457                 rtl_set(dev, RTL_REG_CPUPORT, dev->cpu_port);
458                 rtl_set(dev, RTL_REG_EN_CPUPORT, 1);
459         } else {
460                 rtl_set(dev, RTL_REG_CPUPORT, 7);
461                 rtl_set(dev, RTL_REG_EN_CPUPORT, 0);
462         }
463         rtl_set(dev, RTL_REG_EN_TAG_OUT, 0);
464         rtl_set(dev, RTL_REG_EN_TAG_IN, 0);
465         rtl_set(dev, RTL_REG_EN_TAG_CLR, 0);
466
467         /* reset all vlans */
468         for (i = 0; i < RTL8306_NUM_VLANS; i++) {
469                 rtl_set(dev, RTL_VLAN_REG(i, VID), i);
470                 rtl_set(dev, RTL_VLAN_REG(i, PORTMASK), 0);
471         }
472
473         /* default to port isolation */
474         for (i = 0; i < RTL8306_NUM_PORTS; i++) {
475                 unsigned long mask;
476
477                 if ((1 << i) == cpu_mask)
478                         mask = ((1 << RTL8306_NUM_PORTS) - 1) & ~cpu_mask; /* all bits set */
479                 else
480                         mask = cpu_mask | (1 << i);
481
482                 rtl_set(dev, RTL_VLAN_REG(i, PORTMASK), mask);
483                 rtl_set(dev, RTL_PORT_REG(i, PVID), i);
484                 rtl_set(dev, RTL_PORT_REG(i, NULL_VID_REPLACE), 1);
485                 rtl_set(dev, RTL_PORT_REG(i, VID_INSERT), 1);
486                 rtl_set(dev, RTL_PORT_REG(i, TAG_INSERT), 3);
487         }
488         rtl_hw_apply(dev);
489 }
490
491 #ifdef DEBUG
492 static int
493 rtl_set_use_cpuport(struct switch_dev *dev, const struct switch_attr *attr, struct switch_val *val)
494 {
495         struct rtl_priv *priv = to_rtl(dev);
496         priv->do_cpu = val->value.i;
497         rtl_hw_init(dev);
498         return 0;
499 }
500
501 static int
502 rtl_get_use_cpuport(struct switch_dev *dev, const struct switch_attr *attr, struct switch_val *val)
503 {
504         struct rtl_priv *priv = to_rtl(dev);
505         val->value.i = priv->do_cpu;
506         return 0;
507 }
508
509 static int
510 rtl_set_cpuport(struct switch_dev *dev, const struct switch_attr *attr, struct switch_val *val)
511 {
512         dev->cpu_port = val->value.i;
513         rtl_hw_init(dev);
514         return 0;
515 }
516
517 static int
518 rtl_get_cpuport(struct switch_dev *dev, const struct switch_attr *attr, struct switch_val *val)
519 {
520         val->value.i = dev->cpu_port;
521         return 0;
522 }
523 #endif
524
525 static int
526 rtl_reset(struct switch_dev *dev)
527 {
528         rtl_hw_init(dev);
529         return 0;
530 }
531
532 static int
533 rtl_attr_set_int(struct switch_dev *dev, const struct switch_attr *attr, struct switch_val *val)
534 {
535         int idx = attr->id + (val->port_vlan * attr->ofs);
536         struct rtl_phyregs port;
537
538         if (attr->id >= ARRAY_SIZE(rtl_regs))
539                 return -EINVAL;
540
541         if ((attr->max > 0) && (val->value.i > attr->max))
542                 return -EINVAL;
543
544         /* access to phy register 22 on port 4/5
545          * needs phy status save/restore */
546         if ((val->port_vlan > 3) &&
547                 (rtl_regs[idx].reg == 22) &&
548                 (rtl_regs[idx].page == 0)) {
549
550                 rtl_phy_save(dev, val->port_vlan, &port);
551                 rtl_set(dev, idx, val->value.i);
552                 rtl_phy_restore(dev, val->port_vlan, &port);
553         } else {
554                 rtl_set(dev, idx, val->value.i);
555         }
556
557         return 0;
558 }
559
560 static int
561 rtl_attr_get_int(struct switch_dev *dev, const struct switch_attr *attr, struct switch_val *val)
562 {
563         int idx = attr->id + (val->port_vlan * attr->ofs);
564
565         if (idx >= ARRAY_SIZE(rtl_regs))
566                 return -EINVAL;
567
568         val->value.i = rtl_get(dev, idx);
569         return 0;
570 }
571
572 static int
573 rtl_attr_set_port_int(struct switch_dev *dev, const struct switch_attr *attr, struct switch_val *val)
574 {
575         if (val->port_vlan >= RTL8306_NUM_PORTS)
576                 return -EINVAL;
577
578         return rtl_attr_set_int(dev, attr, val);
579 }
580
581 static int
582 rtl_attr_get_port_int(struct switch_dev *dev, const struct switch_attr *attr, struct switch_val *val)
583 {
584         if (val->port_vlan >= RTL8306_NUM_PORTS)
585                 return -EINVAL;
586         return rtl_attr_get_int(dev, attr, val);
587 }
588
589 static int 
590 rtl_get_port_link(struct switch_dev *dev, int port, struct switch_port_link *link)
591 {
592         if (port >= RTL8306_NUM_PORTS)
593                 return -EINVAL;
594
595         link->link = rtl_get(dev, RTL_PORT_REG(port, LINK));
596         if (!link->link)
597                 return 0;
598
599         link->duplex = rtl_get(dev, RTL_PORT_REG(port, DUPLEX));
600         link->aneg = rtl_get(dev, RTL_PORT_REG(port, NWAY));
601
602         if (rtl_get(dev, RTL_PORT_REG(port, SPEED)))
603                 link->speed = SWITCH_PORT_SPEED_100;
604         else
605                 link->speed = SWITCH_PORT_SPEED_10;
606
607         return 0;
608 }
609
610 static int
611 rtl_attr_set_vlan_int(struct switch_dev *dev, const struct switch_attr *attr, struct switch_val *val)
612 {
613         if (val->port_vlan >= dev->vlans)
614                 return -EINVAL;
615
616         return rtl_attr_set_int(dev, attr, val);
617 }
618
619 static int
620 rtl_attr_get_vlan_int(struct switch_dev *dev, const struct switch_attr *attr, struct switch_val *val)
621 {
622         if (val->port_vlan >= dev->vlans)
623                 return -EINVAL;
624
625         return rtl_attr_get_int(dev, attr, val);
626 }
627
628 static int
629 rtl_get_ports(struct switch_dev *dev, struct switch_val *val)
630 {
631         unsigned int i, mask;
632
633         mask = rtl_get(dev, RTL_VLAN_REG(val->port_vlan, PORTMASK));
634         for (i = 0; i < RTL8306_NUM_PORTS; i++) {
635                 struct switch_port *port;
636
637                 if (!(mask & (1 << i)))
638                         continue;
639
640                 port = &val->value.ports[val->len];
641                 port->id = i;
642                 if (rtl_get(dev, RTL_PORT_REG(i, TAG_INSERT)) == 2 || i == dev->cpu_port)
643                         port->flags = (1 << SWITCH_PORT_FLAG_TAGGED);
644                 val->len++;
645         }
646
647         return 0;
648 }
649
650 static int
651 rtl_set_vlan(struct switch_dev *dev, const struct switch_attr *attr, struct switch_val *val)
652 {
653         struct rtl_priv *priv = to_rtl(dev);
654         struct rtl_phyregs port;
655         int en = val->value.i;
656         int i;
657
658         rtl_set(dev, RTL_REG_EN_TAG_OUT, en && priv->do_cpu);
659         rtl_set(dev, RTL_REG_EN_TAG_IN, en && priv->do_cpu);
660         rtl_set(dev, RTL_REG_EN_TAG_CLR, en && priv->do_cpu);
661         rtl_set(dev, RTL_REG_VLAN_TAG_AWARE, en);
662         if (en)
663                 rtl_set(dev, RTL_REG_VLAN_FILTER, en);
664
665         for (i = 0; i < RTL8306_NUM_PORTS; i++) {
666                 if (i > 3)
667                         rtl_phy_save(dev, val->port_vlan, &port);
668                 rtl_set(dev, RTL_PORT_REG(i, NULL_VID_REPLACE), 1);
669                 rtl_set(dev, RTL_PORT_REG(i, VID_INSERT), (en ? (i == dev->cpu_port ? 0 : 1) : 1));
670                 rtl_set(dev, RTL_PORT_REG(i, TAG_INSERT), (en ? (i == dev->cpu_port ? 2 : 1) : 3));
671                 if (i > 3)
672                         rtl_phy_restore(dev, val->port_vlan, &port);
673         }
674         rtl_set(dev, RTL_REG_VLAN_ENABLE, en);
675
676         return 0;
677 }
678
679 static int
680 rtl_get_vlan(struct switch_dev *dev, const struct switch_attr *attr, struct switch_val *val)
681 {
682         val->value.i = rtl_get(dev, RTL_REG_VLAN_ENABLE);
683         return 0;
684 }
685
686 static int
687 rtl_set_ports(struct switch_dev *dev, struct switch_val *val)
688 {
689         unsigned int mask = 0;
690         unsigned int oldmask;
691         int i;
692
693         for(i = 0; i < val->len; i++)
694         {
695                 struct switch_port *port = &val->value.ports[i];
696                 bool tagged = false;
697
698                 mask |= (1 << port->id);
699
700                 if (port->id == dev->cpu_port)
701                         continue;
702
703                 if ((i == dev->cpu_port) ||
704                         (port->flags & (1 << SWITCH_PORT_FLAG_TAGGED)))
705                         tagged = true;
706
707                 /* fix up PVIDs for added ports */
708                 if (!tagged)
709                         rtl_set(dev, RTL_PORT_REG(port->id, PVID), val->port_vlan);
710
711                 rtl_set(dev, RTL_PORT_REG(port->id, NON_PVID_DISCARD), (tagged ? 0 : 1));
712                 rtl_set(dev, RTL_PORT_REG(port->id, VID_INSERT), (tagged ? 0 : 1));
713                 rtl_set(dev, RTL_PORT_REG(port->id, TAG_INSERT), (tagged ? 2 : 1));
714         }
715
716         oldmask = rtl_get(dev, RTL_VLAN_REG(val->port_vlan, PORTMASK));
717         rtl_set(dev, RTL_VLAN_REG(val->port_vlan, PORTMASK), mask);
718
719         /* fix up PVIDs for removed ports, default to last vlan */
720         oldmask &= ~mask;
721         for (i = 0; i < RTL8306_NUM_PORTS; i++) {
722                 if (!(oldmask & (1 << i)))
723                         continue;
724
725                 if (i == dev->cpu_port)
726                         continue;
727
728                 if (rtl_get(dev, RTL_PORT_REG(i, PVID)) == val->port_vlan)
729                         rtl_set(dev, RTL_PORT_REG(i, PVID), dev->vlans - 1);
730         }
731
732         return 0;
733 }
734
735 static struct switch_attr rtl_globals[] = {
736         {
737                 .type = SWITCH_TYPE_INT,
738                 .name = "enable_vlan",
739                 .description = "Enable VLAN mode",
740                 .max = 1,
741                 .set = rtl_set_vlan,
742                 .get = rtl_get_vlan,
743         },
744         {
745                 RTL_GLOBAL_REGATTR(EN_TRUNK),
746                 .name = "trunk",
747                 .description = "Enable port trunking",
748                 .max = 1,
749         },
750         {
751                 RTL_GLOBAL_REGATTR(TRUNK_PORTSEL),
752                 .name = "trunk_sel",
753                 .description = "Select ports for trunking (0: 0,1 - 1: 3,4)",
754                 .max = 1,
755         },
756 #ifdef DEBUG
757         {
758                 RTL_GLOBAL_REGATTR(VLAN_FILTER),
759                 .name = "vlan_filter",
760                 .description = "Filter incoming packets for allowed VLANS",
761                 .max = 1,
762         },
763         {
764                 .type = SWITCH_TYPE_INT,
765                 .name = "cpuport",
766                 .description = "CPU Port",
767                 .set = rtl_set_cpuport,
768                 .get = rtl_get_cpuport,
769                 .max = RTL8306_NUM_PORTS,
770         },
771         {
772                 .type = SWITCH_TYPE_INT,
773                 .name = "use_cpuport",
774                 .description = "CPU Port handling flag",
775                 .set = rtl_set_use_cpuport,
776                 .get = rtl_get_use_cpuport,
777                 .max = RTL8306_NUM_PORTS,
778         },
779         {
780                 RTL_GLOBAL_REGATTR(TRAP_CPU),
781                 .name = "trap_cpu",
782                 .description = "VLAN trap to CPU",
783                 .max = 1,
784         },
785         {
786                 RTL_GLOBAL_REGATTR(VLAN_TAG_AWARE),
787                 .name = "vlan_tag_aware",
788                 .description = "Enable VLAN tag awareness",
789                 .max = 1,
790         },
791         {
792                 RTL_GLOBAL_REGATTR(VLAN_TAG_ONLY),
793                 .name = "tag_only",
794                 .description = "Only accept tagged packets",
795                 .max = 1,
796         },
797 #endif
798 };
799 static struct switch_attr rtl_port[] = {
800         {
801                 RTL_PORT_REGATTR(PVID),
802                 .name = "pvid",
803                 .description = "Port VLAN ID",
804                 .max = RTL8306_NUM_VLANS - 1,
805         },
806 #ifdef DEBUG
807         {
808                 RTL_PORT_REGATTR(NULL_VID_REPLACE),
809                 .name = "null_vid",
810                 .description = "NULL VID gets replaced by port default vid",
811                 .max = 1,
812         },
813         {
814                 RTL_PORT_REGATTR(NON_PVID_DISCARD),
815                 .name = "non_pvid_discard",
816                 .description = "discard packets with VID != PVID",
817                 .max = 1,
818         },
819         {
820                 RTL_PORT_REGATTR(VID_INSERT),
821                 .name = "vid_insert_remove",
822                 .description = "how should the switch insert and remove vids ?",
823                 .max = 3,
824         },
825         {
826                 RTL_PORT_REGATTR(TAG_INSERT),
827                 .name = "tag_insert",
828                 .description = "tag insertion handling",
829                 .max = 3,
830         },
831 #endif
832 };
833
834 static struct switch_attr rtl_vlan[] = {
835         {
836                 RTL_VLAN_REGATTR(VID),
837                 .name = "vid",
838                 .description = "VLAN ID (1-4095)",
839                 .max = 4095,
840         },
841 };
842
843 static const struct switch_dev_ops rtl8306_ops = {
844         .attr_global = {
845                 .attr = rtl_globals,
846                 .n_attr = ARRAY_SIZE(rtl_globals),
847         },
848         .attr_port = {
849                 .attr = rtl_port,
850                 .n_attr = ARRAY_SIZE(rtl_port),
851         },
852         .attr_vlan = {
853                 .attr = rtl_vlan,
854                 .n_attr = ARRAY_SIZE(rtl_vlan),
855         },
856
857         .get_vlan_ports = rtl_get_ports,
858         .set_vlan_ports = rtl_set_ports,
859         .apply_config = rtl_hw_apply,
860         .reset_switch = rtl_reset,
861         .get_port_link = rtl_get_port_link,
862 };
863
864 static int
865 rtl8306_config_init(struct phy_device *pdev)
866 {
867         struct net_device *netdev = pdev->attached_dev;
868         struct rtl_priv *priv = pdev->priv;
869         struct switch_dev *dev = &priv->dev;
870         struct switch_val val;
871         unsigned int chipid, chipver, chiptype;
872         int err;
873
874         /* Only init the switch for the primary PHY */
875         if (pdev->addr != 0)
876                 return 0;
877
878         val.value.i = 1;
879         priv->dev.cpu_port = RTL8306_PORT_CPU;
880         priv->dev.ports = RTL8306_NUM_PORTS;
881         priv->dev.vlans = RTL8306_NUM_VLANS;
882         priv->dev.ops = &rtl8306_ops;
883         priv->do_cpu = 0;
884         priv->page = -1;
885         priv->bus = pdev->bus;
886
887         chipid = rtl_get(dev, RTL_REG_CHIPID);
888         chipver = rtl_get(dev, RTL_REG_CHIPVER);
889         chiptype = rtl_get(dev, RTL_REG_CHIPTYPE);
890         switch(chiptype) {
891         case 0:
892         case 2:
893                 strncpy(priv->hwname, RTL_NAME_S, sizeof(priv->hwname));
894                 priv->type = RTL_TYPE_S;
895                 break;
896         case 1:
897                 strncpy(priv->hwname, RTL_NAME_SD, sizeof(priv->hwname));
898                 priv->type = RTL_TYPE_SD;
899                 break;
900         case 3:
901                 strncpy(priv->hwname, RTL_NAME_SDM, sizeof(priv->hwname));
902                 priv->type = RTL_TYPE_SDM;
903                 break;
904         default:
905                 strncpy(priv->hwname, RTL_NAME_UNKNOWN, sizeof(priv->hwname));
906                 break;
907         }
908
909         dev->name = priv->hwname;
910         rtl_hw_init(dev);
911
912         printk(KERN_INFO "Registering %s switch with Chip ID: 0x%04x, version: 0x%04x\n", priv->hwname, chipid, chipver);
913
914         err = register_switch(dev, netdev);
915         if (err < 0) {
916                 kfree(priv);
917                 return err;
918         }
919
920         return 0;
921 }
922
923
924 static int
925 rtl8306_fixup(struct phy_device *pdev)
926 {
927         struct rtl_priv priv;
928         u16 chipid;
929
930         /* Attach to primary LAN port and WAN port */
931         if (pdev->addr != 0 && pdev->addr != 4)
932                 return 0;
933
934         memset(&priv, 0, sizeof(priv));
935         priv.fixup = true;
936         priv.page = -1;
937         priv.bus = pdev->bus;
938         chipid = rtl_get(&priv.dev, RTL_REG_CHIPID);
939         if (chipid == 0x5988)
940                 pdev->phy_id = RTL8306_MAGIC;
941
942         return 0;
943 }
944
945 static int
946 rtl8306_probe(struct phy_device *pdev)
947 {
948         struct rtl_priv *priv;
949
950         list_for_each_entry(priv, &phydevs, list) {
951                 /*
952                  * share one rtl_priv instance between virtual phy
953                  * devices on the same bus
954                  */
955                 if (priv->bus == pdev->bus)
956                         goto found;
957         }
958         priv = kzalloc(sizeof(struct rtl_priv), GFP_KERNEL);
959         if (!priv)
960                 return -ENOMEM;
961
962         priv->bus = pdev->bus;
963
964 found:
965         pdev->priv = priv;
966         return 0;
967 }
968
969 static void
970 rtl8306_remove(struct phy_device *pdev)
971 {
972         struct rtl_priv *priv = pdev->priv;
973         unregister_switch(&priv->dev);
974         kfree(priv);
975 }
976
977 static int
978 rtl8306_config_aneg(struct phy_device *pdev)
979 {
980         struct rtl_priv *priv = pdev->priv;
981
982         /* Only for WAN */
983         if (pdev->addr == 0)
984                 return 0;
985
986         /* Restart autonegotiation */
987         rtl_set(&priv->dev, RTL_PORT_REG(4, NWAY), 1);
988         rtl_set(&priv->dev, RTL_PORT_REG(4, NRESTART), 1);
989
990         return 0;
991 }
992
993 static int
994 rtl8306_read_status(struct phy_device *pdev)
995 {
996         struct rtl_priv *priv = pdev->priv;
997         struct switch_dev *dev = &priv->dev;
998
999         if (pdev->addr == 4) {
1000                 /* WAN */
1001                 pdev->speed = rtl_get(dev, RTL_PORT_REG(4, SPEED)) ? SPEED_100 : SPEED_10;
1002                 pdev->duplex = rtl_get(dev, RTL_PORT_REG(4, DUPLEX)) ? DUPLEX_FULL : DUPLEX_HALF;
1003                 pdev->link = !!rtl_get(dev, RTL_PORT_REG(4, LINK));
1004         } else {
1005                 /* LAN */
1006                 pdev->speed = SPEED_100;
1007                 pdev->duplex = DUPLEX_FULL;
1008                 pdev->link = 1;
1009         }
1010
1011         /*
1012          * Bypass generic PHY status read,
1013          * it doesn't work with this switch
1014          */
1015         if (pdev->link) {
1016                 pdev->state = PHY_RUNNING;
1017                 netif_carrier_on(pdev->attached_dev);
1018                 pdev->adjust_link(pdev->attached_dev);
1019         } else {
1020                 pdev->state = PHY_NOLINK;
1021                 netif_carrier_off(pdev->attached_dev);
1022                 pdev->adjust_link(pdev->attached_dev);
1023         }
1024
1025         return 0;
1026 }
1027
1028
1029 static struct phy_driver rtl8306_driver = {
1030         .name           = "Realtek RTL8306S",
1031         .flags          = PHY_HAS_MAGICANEG,
1032         .phy_id         = RTL8306_MAGIC,
1033         .phy_id_mask    = 0xffffffff,
1034         .features       = PHY_BASIC_FEATURES,
1035         .probe          = &rtl8306_probe,
1036         .remove         = &rtl8306_remove,
1037         .config_init    = &rtl8306_config_init,
1038         .config_aneg    = &rtl8306_config_aneg,
1039         .read_status    = &rtl8306_read_status,
1040         .driver         = { .owner = THIS_MODULE,},
1041 };
1042
1043
1044 static int __init
1045 rtl_init(void)
1046 {
1047         phy_register_fixup_for_id(PHY_ANY_ID, rtl8306_fixup);
1048         return phy_driver_register(&rtl8306_driver);
1049 }
1050
1051 static void __exit
1052 rtl_exit(void)
1053 {
1054         phy_driver_unregister(&rtl8306_driver);
1055 }
1056
1057 module_init(rtl_init);
1058 module_exit(rtl_exit);
1059 MODULE_LICENSE("GPL");
1060