backfire: generic: rtl8366: fix register offset and size of MIB counters (backport...
[10.03/openwrt.git] / target / linux / generic-2.6 / files / drivers / net / phy / rtl8366s.c
1 /*
2  * Platform driver for the Realtek RTL8366S ethernet switch
3  *
4  * Copyright (C) 2009-2010 Gabor Juhos <juhosg@openwrt.org>
5  * Copyright (C) 2010 Antti Seppälä <a.seppala@gmail.com>
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License version 2 as published
9  * by the Free Software Foundation.
10  */
11
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include <linux/platform_device.h>
16 #include <linux/delay.h>
17 #include <linux/skbuff.h>
18 #include <linux/switch.h>
19 #include <linux/phy.h>
20 #include <linux/rtl8366s.h>
21
22 #include "rtl8366_smi.h"
23
24 #ifdef CONFIG_RTL8366S_PHY_DEBUG_FS
25 #include <linux/debugfs.h>
26 #endif
27
28 #define RTL8366S_DRIVER_DESC    "Realtek RTL8366S ethernet switch driver"
29 #define RTL8366S_DRIVER_VER     "0.2.1"
30
31 #define RTL8366S_PHY_NO_MAX                 4
32 #define RTL8366S_PHY_PAGE_MAX               7
33 #define RTL8366S_PHY_ADDR_MAX               31
34
35 #define RTL8366_CHIP_GLOBAL_CTRL_REG        0x0000
36 #define RTL8366_CHIP_CTRL_VLAN              (1 << 13)
37
38 #define RTL8366_RESET_CTRL_REG              0x0100
39 #define RTL8366_CHIP_CTRL_RESET_HW          1
40 #define RTL8366_CHIP_CTRL_RESET_SW          (1 << 1)
41
42 #define RTL8366S_CHIP_VERSION_CTRL_REG      0x0104
43 #define RTL8366S_CHIP_VERSION_MASK          0xf
44 #define RTL8366S_CHIP_ID_REG                0x0105
45 #define RTL8366S_CHIP_ID_8366               0x8366
46
47 /* PHY registers control */
48 #define RTL8366S_PHY_ACCESS_CTRL_REG        0x8028
49 #define RTL8366S_PHY_ACCESS_DATA_REG        0x8029
50
51 #define RTL8366S_PHY_CTRL_READ              1
52 #define RTL8366S_PHY_CTRL_WRITE             0
53
54 #define RTL8366S_PHY_REG_MASK               0x1f
55 #define RTL8366S_PHY_PAGE_OFFSET            5
56 #define RTL8366S_PHY_PAGE_MASK              (0x7 << 5)
57 #define RTL8366S_PHY_NO_OFFSET              9
58 #define RTL8366S_PHY_NO_MASK                (0x1f << 9)
59
60 /* LED control registers */
61 #define RTL8366_LED_BLINKRATE_REG           0x0420
62 #define RTL8366_LED_BLINKRATE_BIT           0
63 #define RTL8366_LED_BLINKRATE_MASK          0x0007
64
65 #define RTL8366_LED_CTRL_REG                0x0421
66 #define RTL8366_LED_0_1_CTRL_REG            0x0422
67 #define RTL8366_LED_2_3_CTRL_REG            0x0423
68
69 #define RTL8366S_MIB_COUNT                  33
70 #define RTL8366S_GLOBAL_MIB_COUNT           1
71 #define RTL8366S_MIB_COUNTER_PORT_OFFSET    0x0040
72 #define RTL8366S_MIB_COUNTER_BASE           0x1000
73 #define RTL8366S_MIB_CTRL_REG               0x11F0
74 #define RTL8366S_MIB_CTRL_USER_MASK         0x01FF
75 #define RTL8366S_MIB_CTRL_BUSY_MASK         0x0001
76 #define RTL8366S_MIB_CTRL_RESET_MASK        0x0002
77
78 #define RTL8366S_MIB_CTRL_GLOBAL_RESET_MASK 0x0004
79 #define RTL8366S_MIB_CTRL_PORT_RESET_BIT    0x0003
80 #define RTL8366S_MIB_CTRL_PORT_RESET_MASK   0x01FC
81
82
83 #define RTL8366S_PORT_VLAN_CTRL_BASE        0x0058
84 #define RTL8366S_PORT_VLAN_CTRL_REG(_p)  \
85                 (RTL8366S_PORT_VLAN_CTRL_BASE + (_p) / 4)
86 #define RTL8366S_PORT_VLAN_CTRL_MASK        0xf
87 #define RTL8366S_PORT_VLAN_CTRL_SHIFT(_p)   (4 * ((_p) % 4))
88
89
90 #define RTL8366S_VLAN_TABLE_READ_BASE       0x018B
91 #define RTL8366S_VLAN_TABLE_WRITE_BASE      0x0185
92
93 #define RTL8366S_VLAN_TB_CTRL_REG           0x010F
94
95 #define RTL8366S_TABLE_ACCESS_CTRL_REG      0x0180
96 #define RTL8366S_TABLE_VLAN_READ_CTRL       0x0E01
97 #define RTL8366S_TABLE_VLAN_WRITE_CTRL      0x0F01
98
99 #define RTL8366S_VLAN_MEMCONF_BASE          0x0016
100
101
102 #define RTL8366S_PORT_LINK_STATUS_BASE      0x0060
103 #define RTL8366S_PORT_STATUS_SPEED_MASK     0x0003
104 #define RTL8366S_PORT_STATUS_DUPLEX_MASK    0x0004
105 #define RTL8366S_PORT_STATUS_LINK_MASK      0x0010
106 #define RTL8366S_PORT_STATUS_TXPAUSE_MASK   0x0020
107 #define RTL8366S_PORT_STATUS_RXPAUSE_MASK   0x0040
108 #define RTL8366S_PORT_STATUS_AN_MASK        0x0080
109
110
111 #define RTL8366_PORT_NUM_CPU                5
112 #define RTL8366_NUM_PORTS                   6
113 #define RTL8366_NUM_VLANS                   16
114 #define RTL8366_NUM_LEDGROUPS               4
115 #define RTL8366_NUM_VIDS                    4096
116 #define RTL8366S_PRIORITYMAX                7
117 #define RTL8366S_FIDMAX                     7
118
119
120 #define RTL8366_PORT_1                      (1 << 0) /* In userspace port 0 */
121 #define RTL8366_PORT_2                      (1 << 1) /* In userspace port 1 */
122 #define RTL8366_PORT_3                      (1 << 2) /* In userspace port 2 */
123 #define RTL8366_PORT_4                      (1 << 3) /* In userspace port 3 */
124
125 #define RTL8366_PORT_UNKNOWN                (1 << 4) /* No known connection */
126 #define RTL8366_PORT_CPU                    (1 << 5) /* CPU port */
127
128 #define RTL8366_PORT_ALL                    (RTL8366_PORT_1 |       \
129                                              RTL8366_PORT_2 |       \
130                                              RTL8366_PORT_3 |       \
131                                              RTL8366_PORT_4 |       \
132                                              RTL8366_PORT_UNKNOWN | \
133                                              RTL8366_PORT_CPU)
134
135 #define RTL8366_PORT_ALL_BUT_CPU            (RTL8366_PORT_1 |       \
136                                              RTL8366_PORT_2 |       \
137                                              RTL8366_PORT_3 |       \
138                                              RTL8366_PORT_4 |       \
139                                              RTL8366_PORT_UNKNOWN)
140
141 #define RTL8366_PORT_ALL_EXTERNAL           (RTL8366_PORT_1 |       \
142                                              RTL8366_PORT_2 |       \
143                                              RTL8366_PORT_3 |       \
144                                              RTL8366_PORT_4)
145
146 #define RTL8366_PORT_ALL_INTERNAL           (RTL8366_PORT_UNKNOWN | \
147                                              RTL8366_PORT_CPU)
148
149 struct rtl8366s {
150         struct device           *parent;
151         struct rtl8366_smi      smi;
152         struct mii_bus          *mii_bus;
153         int                     mii_irq[PHY_MAX_ADDR];
154         struct switch_dev       dev;
155         char                    buf[4096];
156 #ifdef CONFIG_RTL8366S_PHY_DEBUG_FS
157         struct dentry           *debugfs_root;
158 #endif
159 };
160
161 struct rtl8366s_vlanconfig {
162         u16     reserved2:1;
163         u16     priority:3;
164         u16     vid:12;
165
166         u16     reserved1:1;
167         u16     fid:3;
168         u16     untag:6;
169         u16     member:6;
170 };
171
172 struct rtl8366s_vlan4kentry {
173         u16     reserved1:4;
174         u16     vid:12;
175
176         u16     reserved2:1;
177         u16     fid:3;
178         u16     untag:6;
179         u16     member:6;
180 };
181
182 #ifdef CONFIG_RTL8366S_PHY_DEBUG_FS
183 u16 g_dbg_reg;
184 #endif
185
186 struct mib_counter {
187         unsigned        offset;
188         unsigned        length;
189         const char      *name;
190 };
191
192 static struct mib_counter rtl8366s_mib_counters[RTL8366S_MIB_COUNT] = {
193         {  0, 4, "IfInOctets                        " },
194         {  4, 4, "EtherStatsOctets                  " },
195         {  8, 2, "EtherStatsUnderSizePkts           " },
196         { 10, 2, "EtherFregament                    " },
197         { 12, 2, "EtherStatsPkts64Octets            " },
198         { 14, 2, "EtherStatsPkts65to127Octets       " },
199         { 16, 2, "EtherStatsPkts128to255Octets      " },
200         { 18, 2, "EtherStatsPkts256to511Octets      " },
201         { 20, 2, "EtherStatsPkts512to1023Octets     " },
202         { 22, 2, "EtherStatsPkts1024to1518Octets    " },
203         { 24, 2, "EtherOversizeStats                " },
204         { 26, 2, "EtherStatsJabbers                 " },
205         { 28, 2, "IfInUcastPkts                     " },
206         { 30, 2, "EtherStatsMulticastPkts           " },
207         { 32, 2, "EtherStatsBroadcastPkts           " },
208         { 34, 2, "EtherStatsDropEvents              " },
209         { 36, 2, "Dot3StatsFCSErrors                " },
210         { 38, 2, "Dot3StatsSymbolErrors             " },
211         { 40, 2, "Dot3InPauseFrames                 " },
212         { 42, 2, "Dot3ControlInUnknownOpcodes       " },
213         { 44, 4, "IfOutOctets                       " },
214         { 48, 2, "Dot3StatsSingleCollisionFrames    " },
215         { 50, 2, "Dot3StatMultipleCollisionFrames   " },
216         { 52, 2, "Dot3sDeferredTransmissions        " },
217         { 54, 2, "Dot3StatsLateCollisions           " },
218         { 56, 2, "EtherStatsCollisions              " },
219         { 58, 2, "Dot3StatsExcessiveCollisions      " },
220         { 60, 2, "Dot3OutPauseFrames                " },
221         { 62, 2, "Dot1dBasePortDelayExceededDiscards" },
222         { 64, 2, "Dot1dTpPortInDiscards             " },
223         { 66, 2, "IfOutUcastPkts                    " },
224         { 68, 2, "IfOutMulticastPkts                " },
225         { 70, 2, "IfOutBroadcastPkts                " },
226 };
227
228 static inline struct rtl8366s *sw_to_rtl8366s(struct switch_dev *sw)
229 {
230         return container_of(sw, struct rtl8366s, dev);
231 }
232
233 static int rtl8366s_reset_chip(struct rtl8366s *rtl)
234 {
235         struct rtl8366_smi *smi = &rtl->smi;
236         int timeout = 10;
237         u32 data;
238
239         rtl8366_smi_write_reg(smi, RTL8366_RESET_CTRL_REG,
240                               RTL8366_CHIP_CTRL_RESET_HW);
241         do {
242                 msleep(1);
243                 if (rtl8366_smi_read_reg(smi, RTL8366_RESET_CTRL_REG, &data))
244                         return -EIO;
245
246                 if (!(data & RTL8366_CHIP_CTRL_RESET_HW))
247                         break;
248         } while (--timeout);
249
250         if (!timeout) {
251                 printk("Timeout waiting for the switch to reset\n");
252                 return -EIO;
253         }
254
255         return 0;
256 }
257
258 static int rtl8366s_read_phy_reg(struct rtl8366s *rtl,
259                                  u32 phy_no, u32 page, u32 addr, u32 *data)
260 {
261         struct rtl8366_smi *smi = &rtl->smi;
262         u32 reg;
263         int ret;
264
265         if (phy_no > RTL8366S_PHY_NO_MAX)
266                 return -EINVAL;
267
268         if (page > RTL8366S_PHY_PAGE_MAX)
269                 return -EINVAL;
270
271         if (addr > RTL8366S_PHY_ADDR_MAX)
272                 return -EINVAL;
273
274         ret = rtl8366_smi_write_reg(smi, RTL8366S_PHY_ACCESS_CTRL_REG,
275                                     RTL8366S_PHY_CTRL_READ);
276         if (ret)
277                 return ret;
278
279         reg = 0x8000 | (1 << (phy_no + RTL8366S_PHY_NO_OFFSET)) |
280               ((page << RTL8366S_PHY_PAGE_OFFSET) & RTL8366S_PHY_PAGE_MASK) |
281               (addr & RTL8366S_PHY_REG_MASK);
282
283         ret = rtl8366_smi_write_reg(smi, reg, 0);
284         if (ret)
285                 return ret;
286
287         ret = rtl8366_smi_read_reg(smi, RTL8366S_PHY_ACCESS_DATA_REG, data);
288         if (ret)
289                 return ret;
290
291         return 0;
292 }
293
294 static int rtl8366s_write_phy_reg(struct rtl8366s *rtl,
295                                   u32 phy_no, u32 page, u32 addr, u32 data)
296 {
297         struct rtl8366_smi *smi = &rtl->smi;
298         u32 reg;
299         int ret;
300
301         if (phy_no > RTL8366S_PHY_NO_MAX)
302                 return -EINVAL;
303
304         if (page > RTL8366S_PHY_PAGE_MAX)
305                 return -EINVAL;
306
307         if (addr > RTL8366S_PHY_ADDR_MAX)
308                 return -EINVAL;
309
310         ret = rtl8366_smi_write_reg(smi, RTL8366S_PHY_ACCESS_CTRL_REG,
311                                     RTL8366S_PHY_CTRL_WRITE);
312         if (ret)
313                 return ret;
314
315         reg = 0x8000 | (1 << (phy_no + RTL8366S_PHY_NO_OFFSET)) |
316               ((page << RTL8366S_PHY_PAGE_OFFSET) & RTL8366S_PHY_PAGE_MASK) |
317               (addr & RTL8366S_PHY_REG_MASK);
318
319         ret = rtl8366_smi_write_reg(smi, reg, data);
320         if (ret)
321                 return ret;
322
323         return 0;
324 }
325
326 static int rtl8366_get_mib_counter(struct rtl8366s *rtl, int counter,
327                                    int port, unsigned long long *val)
328 {
329         struct rtl8366_smi *smi = &rtl->smi;
330         int i;
331         int err;
332         u32 addr, data;
333         u64 mibvalue;
334
335         if (port > RTL8366_NUM_PORTS || counter >= RTL8366S_MIB_COUNT)
336                 return -EINVAL;
337
338         addr = RTL8366S_MIB_COUNTER_BASE +
339                RTL8366S_MIB_COUNTER_PORT_OFFSET * (port) +
340                rtl8366s_mib_counters[counter].offset;
341
342         /*
343          * Writing access counter address first
344          * then ASIC will prepare 64bits counter wait for being retrived
345          */
346         data = 0; /* writing data will be discard by ASIC */
347         err = rtl8366_smi_write_reg(smi, addr, data);
348         if (err)
349                 return err;
350
351         /* read MIB control register */
352         err =  rtl8366_smi_read_reg(smi, RTL8366S_MIB_CTRL_REG, &data);
353         if (err)
354                 return err;
355
356         if (data & RTL8366S_MIB_CTRL_BUSY_MASK)
357                 return -EBUSY;
358
359         if (data & RTL8366S_MIB_CTRL_RESET_MASK)
360                 return -EIO;
361
362         mibvalue = 0;
363         for (i = rtl8366s_mib_counters[counter].length; i > 0; i--) {
364                 err = rtl8366_smi_read_reg(smi, addr + (i - 1), &data);
365                 if (err)
366                         return err;
367
368                 mibvalue = (mibvalue << 16) | (data & 0xFFFF);
369         }
370
371         *val = mibvalue;
372         return 0;
373 }
374
375 static int rtl8366s_get_vlan_4k_entry(struct rtl8366s *rtl, u32 vid,
376                                       struct rtl8366s_vlan4kentry *vlan4k)
377 {
378         struct rtl8366_smi *smi = &rtl->smi;
379         int err;
380         u32 data;
381         u16 *tableaddr;
382
383         memset(vlan4k, '\0', sizeof(struct rtl8366s_vlan4kentry));
384         vlan4k->vid = vid;
385
386         if (vid >= RTL8366_NUM_VIDS)
387                 return -EINVAL;
388
389         tableaddr = (u16 *)vlan4k;
390
391         /* write VID */
392         data = *tableaddr;
393         err = rtl8366_smi_write_reg(smi, RTL8366S_VLAN_TABLE_WRITE_BASE, data);
394         if (err)
395                 return err;
396
397         /* write table access control word */
398         err = rtl8366_smi_write_reg(smi, RTL8366S_TABLE_ACCESS_CTRL_REG,
399                                     RTL8366S_TABLE_VLAN_READ_CTRL);
400         if (err)
401                 return err;
402
403         err = rtl8366_smi_read_reg(smi, RTL8366S_VLAN_TABLE_READ_BASE, &data);
404         if (err)
405                 return err;
406
407         *tableaddr = data;
408         tableaddr++;
409
410         err = rtl8366_smi_read_reg(smi, RTL8366S_VLAN_TABLE_READ_BASE + 1,
411                                    &data);
412         if (err)
413                 return err;
414
415         *tableaddr = data;
416         vlan4k->vid = vid;
417
418         return 0;
419 }
420
421 static int rtl8366s_set_vlan_4k_entry(struct rtl8366s *rtl,
422                                       const struct rtl8366s_vlan4kentry *vlan4k)
423 {
424         struct rtl8366_smi *smi = &rtl->smi;
425         int err;
426         u32 data;
427         u16 *tableaddr;
428
429         if (vlan4k->vid >= RTL8366_NUM_VIDS ||
430             vlan4k->member > RTL8366_PORT_ALL ||
431             vlan4k->untag > RTL8366_PORT_ALL ||
432             vlan4k->fid > RTL8366S_FIDMAX)
433                 return -EINVAL;
434
435         tableaddr = (u16 *)vlan4k;
436
437         data = *tableaddr;
438
439         err = rtl8366_smi_write_reg(smi, RTL8366S_VLAN_TABLE_WRITE_BASE, data);
440         if (err)
441                 return err;
442
443         tableaddr++;
444
445         data = *tableaddr;
446
447         err = rtl8366_smi_write_reg(smi, RTL8366S_VLAN_TABLE_WRITE_BASE + 1,
448                                     data);
449         if (err)
450                 return err;
451
452         /* write table access control word */
453         err = rtl8366_smi_write_reg(smi, RTL8366S_TABLE_ACCESS_CTRL_REG,
454                                     RTL8366S_TABLE_VLAN_WRITE_CTRL);
455
456         return err;
457 }
458
459 static int rtl8366s_get_vlan_member_config(struct rtl8366s *rtl, u32 index,
460                                            struct rtl8366s_vlanconfig *vlanmc)
461 {
462         struct rtl8366_smi *smi = &rtl->smi;
463         int err;
464         u32 addr;
465         u32 data;
466         u16 *tableaddr;
467
468         memset(vlanmc, '\0', sizeof(struct rtl8366s_vlanconfig));
469
470         if (index >= RTL8366_NUM_VLANS)
471                 return -EINVAL;
472
473         tableaddr = (u16 *)vlanmc;
474
475         addr = RTL8366S_VLAN_MEMCONF_BASE + (index << 1);
476         err = rtl8366_smi_read_reg(smi, addr, &data);
477         if (err)
478                 return err;
479
480         *tableaddr = data;
481         tableaddr++;
482
483         addr = RTL8366S_VLAN_MEMCONF_BASE + 1 + (index << 1);
484         err = rtl8366_smi_read_reg(smi, addr, &data);
485         if (err)
486                 return err;
487
488         *tableaddr = data;
489
490         return 0;
491 }
492
493 static int rtl8366s_set_vlan_member_config(struct rtl8366s *rtl, u32 index,
494                                            const struct rtl8366s_vlanconfig
495                                            *vlanmc)
496 {
497         struct rtl8366_smi *smi = &rtl->smi;
498         int err;
499         u32 addr;
500         u32 data;
501         u16 *tableaddr;
502
503         if (index >= RTL8366_NUM_VLANS ||
504             vlanmc->vid >= RTL8366_NUM_VIDS ||
505             vlanmc->priority > RTL8366S_PRIORITYMAX ||
506             vlanmc->member > RTL8366_PORT_ALL ||
507             vlanmc->untag > RTL8366_PORT_ALL ||
508             vlanmc->fid > RTL8366S_FIDMAX)
509                 return -EINVAL;
510
511         addr = RTL8366S_VLAN_MEMCONF_BASE + (index << 1);
512
513         tableaddr = (u16 *)vlanmc;
514         data = *tableaddr;
515
516         err = rtl8366_smi_write_reg(smi, addr, data);
517         if (err)
518                 return err;
519
520         addr = RTL8366S_VLAN_MEMCONF_BASE + 1 + (index << 1);
521
522         tableaddr++;
523         data = *tableaddr;
524
525         err = rtl8366_smi_write_reg(smi, addr, data);
526         if (err)
527                 return err;
528
529         return 0;
530 }
531
532 static int rtl8366s_get_port_vlan_index(struct rtl8366s *rtl, int port,
533                                        int *val)
534 {
535         struct rtl8366_smi *smi = &rtl->smi;
536         u32 data;
537         int err;
538
539         if (port >= RTL8366_NUM_PORTS)
540                 return -EINVAL;
541
542         err = rtl8366_smi_read_reg(smi, RTL8366S_PORT_VLAN_CTRL_REG(port),
543                                    &data);
544         if (err)
545                 return err;
546
547         *val = (data >> RTL8366S_PORT_VLAN_CTRL_SHIFT(port)) &
548                RTL8366S_PORT_VLAN_CTRL_MASK;
549
550         return 0;
551
552 }
553
554 static int rtl8366s_get_vlan_port_pvid(struct rtl8366s *rtl, int port,
555                                        int *val)
556 {
557         struct rtl8366s_vlanconfig vlanmc;
558         int err;
559         int index;
560
561         err = rtl8366s_get_port_vlan_index(rtl, port, &index);
562         if (err)
563                 return err;
564
565         err = rtl8366s_get_vlan_member_config(rtl, index, &vlanmc);
566         if (err)
567                 return err;
568
569         *val = vlanmc.vid;
570         return 0;
571 }
572
573 static int rtl8366s_set_port_vlan_index(struct rtl8366s *rtl, int port,
574                                         int index)
575 {
576         struct rtl8366_smi *smi = &rtl->smi;
577         u32 data;
578         int err;
579
580         if (port >= RTL8366_NUM_PORTS || index >= RTL8366_NUM_VLANS)
581                 return -EINVAL;
582
583         err = rtl8366_smi_read_reg(smi, RTL8366S_PORT_VLAN_CTRL_REG(port),
584                                    &data);
585         if (err)
586                 return err;
587
588         data &= ~(RTL8366S_PORT_VLAN_CTRL_MASK <<
589                   RTL8366S_PORT_VLAN_CTRL_SHIFT(port));
590         data |= (index & RTL8366S_PORT_VLAN_CTRL_MASK) <<
591                  RTL8366S_PORT_VLAN_CTRL_SHIFT(port);
592
593         err = rtl8366_smi_write_reg(smi, RTL8366S_PORT_VLAN_CTRL_REG(port),
594                                     data);
595         return err;
596 }
597
598 static int rtl8366s_set_vlan_port_pvid(struct rtl8366s *rtl, int port, int val)
599 {
600         int i;
601         struct rtl8366s_vlanconfig vlanmc;
602         struct rtl8366s_vlan4kentry vlan4k;
603
604         if (port >= RTL8366_NUM_PORTS || val >= RTL8366_NUM_VIDS)
605                 return -EINVAL;
606
607         /* Updating the 4K entry; lookup it and change the port member set */
608         rtl8366s_get_vlan_4k_entry(rtl, val, &vlan4k);
609         vlan4k.member |= ((1 << port) | RTL8366_PORT_CPU);
610         vlan4k.untag = RTL8366_PORT_ALL_BUT_CPU;
611         rtl8366s_set_vlan_4k_entry(rtl, &vlan4k);
612
613         /*
614          * For the 16 entries more work needs to be done. First see if such
615          * VID is already there and change it
616          */
617         for (i = 0; i < RTL8366_NUM_VLANS; ++i) {
618                 rtl8366s_get_vlan_member_config(rtl, i, &vlanmc);
619
620                 /* Try to find an existing vid and update port member set */
621                 if (val == vlanmc.vid) {
622                         vlanmc.member |= ((1 << port) | RTL8366_PORT_CPU);
623                         rtl8366s_set_vlan_member_config(rtl, i, &vlanmc);
624
625                         /* Now update PVID register settings */
626                         rtl8366s_set_port_vlan_index(rtl, port, i);
627
628                         return 0;
629                 }
630         }
631
632         /*
633          * PVID could not be found from vlan table. Replace unused (one that
634          * has no member ports) with new one
635          */
636         for (i = 0; i < RTL8366_NUM_VLANS; ++i) {
637                 rtl8366s_get_vlan_member_config(rtl, i, &vlanmc);
638
639                 /*
640                  * See if this vlan member configuration is unused. It is
641                  * unused if member set contains no ports or CPU port only
642                  */
643                 if (!vlanmc.member || vlanmc.member == RTL8366_PORT_CPU) {
644                         vlanmc.vid = val;
645                         vlanmc.priority = 0;
646                         vlanmc.untag = RTL8366_PORT_ALL_BUT_CPU;
647                         vlanmc.member = ((1 << port) | RTL8366_PORT_CPU);
648                         vlanmc.fid = 0;
649
650                         rtl8366s_set_vlan_member_config(rtl, i, &vlanmc);
651
652                         /* Now update PVID register settings */
653                         rtl8366s_set_port_vlan_index(rtl, port, i);
654
655                         return 0;
656                 }
657         }
658
659         dev_err(rtl->parent,
660                 "All 16 vlan member configurations are in use\n");
661
662         return -EINVAL;
663 }
664
665
666 static int rtl8366s_vlan_set_vlan(struct rtl8366s *rtl, int enable)
667 {
668         struct rtl8366_smi *smi = &rtl->smi;
669         u32 data = 0;
670
671         rtl8366_smi_read_reg(smi, RTL8366_CHIP_GLOBAL_CTRL_REG, &data);
672
673         if (enable)
674                 data |= RTL8366_CHIP_CTRL_VLAN;
675         else
676                 data &= ~RTL8366_CHIP_CTRL_VLAN;
677
678         return rtl8366_smi_write_reg(smi, RTL8366_CHIP_GLOBAL_CTRL_REG, data);
679 }
680
681 static int rtl8366s_vlan_set_4ktable(struct rtl8366s *rtl, int enable)
682 {
683         struct rtl8366_smi *smi = &rtl->smi;
684         u32 data = 0;
685
686         rtl8366_smi_read_reg(smi, RTL8366S_VLAN_TB_CTRL_REG, &data);
687
688         if (enable)
689                 data |= 1;
690         else
691                 data &= ~1;
692
693         return rtl8366_smi_write_reg(smi, RTL8366S_VLAN_TB_CTRL_REG, data);
694 }
695
696 static int rtl8366s_reset_vlan(struct rtl8366s *rtl)
697 {
698         struct rtl8366s_vlan4kentry vlan4k;
699         struct rtl8366s_vlanconfig vlanmc;
700         int err;
701         int i;
702
703         /* clear 16 VLAN member configuration */
704         vlanmc.vid = 0;
705         vlanmc.priority = 0;
706         vlanmc.member = 0;
707         vlanmc.untag = 0;
708         vlanmc.fid = 0;
709         for (i = 0; i < RTL8366_NUM_VLANS; i++) {
710                 err = rtl8366s_set_vlan_member_config(rtl, i, &vlanmc);
711                 if (err)
712                         return err;
713         }
714
715         /* Set a default VLAN with vid 1 to 4K table for all ports */
716         vlan4k.vid = 1;
717         vlan4k.member = RTL8366_PORT_ALL;
718         vlan4k.untag = RTL8366_PORT_ALL;
719         vlan4k.fid = 0;
720         err = rtl8366s_set_vlan_4k_entry(rtl, &vlan4k);
721         if (err)
722                 return err;
723
724         /* Set all ports PVID to default VLAN */
725         for (i = 0; i < RTL8366_NUM_PORTS; i++) {
726                 err = rtl8366s_set_vlan_port_pvid(rtl, i, 0);
727                 if (err)
728                         return err;
729         }
730
731         return 0;
732 }
733
734 #ifdef CONFIG_RTL8366S_PHY_DEBUG_FS
735 static int rtl8366s_debugfs_open(struct inode *inode, struct file *file)
736 {
737         file->private_data = inode->i_private;
738         return 0;
739 }
740
741 static ssize_t rtl8366s_read_debugfs_mibs(struct file *file,
742                                           char __user *user_buf,
743                                           size_t count, loff_t *ppos)
744 {
745         struct rtl8366s *rtl = (struct rtl8366s *)file->private_data;
746         int i, j, len = 0;
747         char *buf = rtl->buf;
748
749         len += snprintf(buf + len, sizeof(rtl->buf) - len, "MIB Counters:\n");
750         len += snprintf(buf + len, sizeof(rtl->buf) - len, "Counter"
751                         "                            "
752                         "Port 0 \t\t Port 1 \t\t Port 2 \t\t Port 3 \t\t "
753                         "Port 4\n");
754
755         for (i = 0; i < 33; ++i) {
756                 len += snprintf(buf + len, sizeof(rtl->buf) - len, "%d:%s ",
757                                 i, rtl8366s_mib_counters[i].name);
758                 for (j = 0; j < RTL8366_NUM_PORTS; ++j) {
759                         unsigned long long counter = 0;
760
761                         if (!rtl8366_get_mib_counter(rtl, i, j, &counter))
762                                 len += snprintf(buf + len,
763                                                 sizeof(rtl->buf) - len,
764                                                 "[%llu]", counter);
765                         else
766                                 len += snprintf(buf + len,
767                                                 sizeof(rtl->buf) - len,
768                                                 "[error]");
769
770                         if (j != RTL8366_NUM_PORTS - 1) {
771                                 if (counter < 100000)
772                                         len += snprintf(buf + len,
773                                                         sizeof(rtl->buf) - len,
774                                                         "\t");
775
776                                 len += snprintf(buf + len,
777                                                 sizeof(rtl->buf) - len,
778                                                 "\t");
779                         }
780                 }
781                 len += snprintf(buf + len, sizeof(rtl->buf) - len, "\n");
782         }
783
784         len += snprintf(buf + len, sizeof(rtl->buf) - len, "\n");
785
786         return simple_read_from_buffer(user_buf, count, ppos, buf, len);
787 }
788
789 static ssize_t rtl8366s_read_debugfs_vlan(struct file *file,
790                                           char __user *user_buf,
791                                           size_t count, loff_t *ppos)
792 {
793         struct rtl8366s *rtl = (struct rtl8366s *)file->private_data;
794         int i, j, len = 0;
795         char *buf = rtl->buf;
796
797         len += snprintf(buf + len, sizeof(rtl->buf) - len,
798                         "VLAN Member Config:\n");
799         len += snprintf(buf + len, sizeof(rtl->buf) - len,
800                         "\t id \t vid \t prio \t member \t untag  \t fid "
801                         "\tports\n");
802
803         for (i = 0; i < RTL8366_NUM_VLANS; ++i) {
804                 struct rtl8366s_vlanconfig vlanmc;
805
806                 rtl8366s_get_vlan_member_config(rtl, i, &vlanmc);
807
808                 len += snprintf(buf + len, sizeof(rtl->buf) - len,
809                                 "\t[%d] \t %d \t %d \t 0x%04x \t 0x%04x \t %d "
810                                 "\t", i, vlanmc.vid, vlanmc.priority,
811                                 vlanmc.member, vlanmc.untag, vlanmc.fid);
812
813                 for (j = 0; j < RTL8366_NUM_PORTS; ++j) {
814                         int index = 0;
815                         if (!rtl8366s_get_port_vlan_index(rtl, j, &index)) {
816                                 if (index == i)
817                                         len += snprintf(buf + len,
818                                                         sizeof(rtl->buf) - len,
819                                                         "%d", j);
820                         }
821                 }
822                 len += snprintf(buf + len, sizeof(rtl->buf) - len, "\n");
823         }
824
825         return simple_read_from_buffer(user_buf, count, ppos, buf, len);
826 }
827
828 static ssize_t rtl8366s_read_debugfs_reg(struct file *file,
829                                          char __user *user_buf,
830                                          size_t count, loff_t *ppos)
831 {
832         struct rtl8366s *rtl = (struct rtl8366s *)file->private_data;
833         struct rtl8366_smi *smi = &rtl->smi;
834         u32 t, reg = g_dbg_reg;
835         int err, len = 0;
836         char *buf = rtl->buf;
837
838         memset(buf, '\0', sizeof(rtl->buf));
839
840         err = rtl8366_smi_read_reg(smi, reg, &t);
841         if (err) {
842                 len += snprintf(buf, sizeof(rtl->buf),
843                                 "Read failed (reg: 0x%04x)\n", reg);
844                 return simple_read_from_buffer(user_buf, count, ppos, buf, len);
845         }
846
847         len += snprintf(buf, sizeof(rtl->buf), "reg = 0x%04x, val = 0x%04x\n",
848                         reg, t);
849
850         return simple_read_from_buffer(user_buf, count, ppos, buf, len);
851 }
852
853 static ssize_t rtl8366s_write_debugfs_reg(struct file *file,
854                                           const char __user *user_buf,
855                                           size_t count, loff_t *ppos)
856 {
857         struct rtl8366s *rtl = (struct rtl8366s *)file->private_data;
858         struct rtl8366_smi *smi = &rtl->smi;
859         unsigned long data;
860         u32 reg = g_dbg_reg;
861         int err;
862         size_t len;
863         char *buf = rtl->buf;
864
865         len = min(count, sizeof(rtl->buf) - 1);
866         if (copy_from_user(buf, user_buf, len)) {
867                 dev_err(rtl->parent, "copy from user failed\n");
868                 return -EFAULT;
869         }
870
871         buf[len] = '\0';
872         if (len > 0 && buf[len - 1] == '\n')
873                 buf[len - 1] = '\0';
874
875
876         if (strict_strtoul(buf, 16, &data)) {
877                 dev_err(rtl->parent, "Invalid reg value %s\n", buf);
878         } else {
879                 err = rtl8366_smi_write_reg(smi, reg, data);
880                 if (err) {
881                         dev_err(rtl->parent,
882                                 "writing reg 0x%04x val 0x%04lx failed\n",
883                                 reg, data);
884                 }
885         }
886
887         return count;
888 }
889
890 static const struct file_operations fops_rtl8366s_regs = {
891         .read = rtl8366s_read_debugfs_reg,
892         .write = rtl8366s_write_debugfs_reg,
893         .open = rtl8366s_debugfs_open,
894         .owner = THIS_MODULE
895 };
896
897 static const struct file_operations fops_rtl8366s_vlan = {
898         .read = rtl8366s_read_debugfs_vlan,
899         .open = rtl8366s_debugfs_open,
900         .owner = THIS_MODULE
901 };
902
903 static const struct file_operations fops_rtl8366s_mibs = {
904         .read = rtl8366s_read_debugfs_mibs,
905         .open = rtl8366s_debugfs_open,
906         .owner = THIS_MODULE
907 };
908
909 static void rtl8366s_debugfs_init(struct rtl8366s *rtl)
910 {
911         struct dentry *node;
912         struct dentry *root;
913
914         if (!rtl->debugfs_root)
915                 rtl->debugfs_root = debugfs_create_dir("rtl8366s", NULL);
916
917         if (!rtl->debugfs_root) {
918                 dev_err(rtl->parent, "Unable to create debugfs dir\n");
919                 return;
920         }
921         root = rtl->debugfs_root;
922
923         node = debugfs_create_x16("reg", S_IRUGO | S_IWUSR, root, &g_dbg_reg);
924         if (!node) {
925                 dev_err(rtl->parent, "Creating debugfs file reg failed\n");
926                 return;
927         }
928
929         node = debugfs_create_file("val", S_IRUGO | S_IWUSR, root, rtl,
930                                    &fops_rtl8366s_regs);
931         if (!node) {
932                 dev_err(rtl->parent, "Creating debugfs file val failed\n");
933                 return;
934         }
935
936         node = debugfs_create_file("vlan", S_IRUSR, root, rtl,
937                                    &fops_rtl8366s_vlan);
938         if (!node) {
939                 dev_err(rtl->parent,
940                         "Creating debugfs file vlan failed\n");
941                 return;
942         }
943
944         node = debugfs_create_file("mibs", S_IRUSR, root, rtl,
945                                    &fops_rtl8366s_mibs);
946         if (!node) {
947                 dev_err(rtl->parent,
948                         "Creating debugfs file mibs failed\n");
949                 return;
950         }
951 }
952
953 static void rtl8366s_debugfs_remove(struct rtl8366s *rtl)
954 {
955         if (rtl->debugfs_root) {
956                 debugfs_remove_recursive(rtl->debugfs_root);
957                 rtl->debugfs_root = NULL;
958         }
959 }
960
961 #else
962 static inline void rtl8366s_debugfs_init(struct rtl8366s *rtl) {}
963 static inline void rtl8366s_debugfs_remove(struct rtl8366s *rtl) {}
964 #endif /* CONFIG_RTL8366S_PHY_DEBUG_FS */
965
966 static int rtl8366s_sw_reset_mibs(struct switch_dev *dev,
967                                   const struct switch_attr *attr,
968                                   struct switch_val *val)
969 {
970         struct rtl8366s *rtl = sw_to_rtl8366s(dev);
971         struct rtl8366_smi *smi = &rtl->smi;
972         u32 data = 0;
973
974         if (val->value.i == 1) {
975                 rtl8366_smi_read_reg(smi, RTL8366S_MIB_CTRL_REG, &data);
976                 data |= (1 << 2);
977                 rtl8366_smi_write_reg(smi, RTL8366S_MIB_CTRL_REG, data);
978         }
979
980         return 0;
981 }
982
983 static int rtl8366s_sw_get_vlan_enable(struct switch_dev *dev,
984                                        const struct switch_attr *attr,
985                                        struct switch_val *val)
986 {
987         struct rtl8366s *rtl = sw_to_rtl8366s(dev);
988         struct rtl8366_smi *smi = &rtl->smi;
989         u32 data;
990
991         if (attr->ofs == 1) {
992                 rtl8366_smi_read_reg(smi, RTL8366_CHIP_GLOBAL_CTRL_REG, &data);
993
994                 if (data & RTL8366_CHIP_CTRL_VLAN)
995                         val->value.i = 1;
996                 else
997                         val->value.i = 0;
998         } else if (attr->ofs == 2) {
999                 rtl8366_smi_read_reg(smi, RTL8366S_VLAN_TB_CTRL_REG, &data);
1000
1001                 if (data & 0x0001)
1002                         val->value.i = 1;
1003                 else
1004                         val->value.i = 0;
1005         }
1006
1007         return 0;
1008 }
1009
1010 static int rtl8366s_sw_get_blinkrate(struct switch_dev *dev,
1011                                      const struct switch_attr *attr,
1012                                      struct switch_val *val)
1013 {
1014         struct rtl8366s *rtl = sw_to_rtl8366s(dev);
1015         struct rtl8366_smi *smi = &rtl->smi;
1016         u32 data;
1017
1018         rtl8366_smi_read_reg(smi, RTL8366_LED_BLINKRATE_REG, &data);
1019
1020         val->value.i = (data & (RTL8366_LED_BLINKRATE_MASK));
1021
1022         return 0;
1023 }
1024
1025 static int rtl8366s_sw_set_blinkrate(struct switch_dev *dev,
1026                                     const struct switch_attr *attr,
1027                                     struct switch_val *val)
1028 {
1029         struct rtl8366s *rtl = sw_to_rtl8366s(dev);
1030         struct rtl8366_smi *smi = &rtl->smi;
1031         u32 data;
1032
1033         if (val->value.i >= 6)
1034                 return -EINVAL;
1035
1036         rtl8366_smi_read_reg(smi, RTL8366_LED_BLINKRATE_REG, &data);
1037
1038         data &= ~RTL8366_LED_BLINKRATE_MASK;
1039         data |= val->value.i;
1040
1041         rtl8366_smi_write_reg(smi, RTL8366_LED_BLINKRATE_REG, data);
1042
1043         return 0;
1044 }
1045
1046 static int rtl8366s_sw_set_vlan_enable(struct switch_dev *dev,
1047                                        const struct switch_attr *attr,
1048                                        struct switch_val *val)
1049 {
1050         struct rtl8366s *rtl = sw_to_rtl8366s(dev);
1051
1052         if (attr->ofs == 1)
1053                 return rtl8366s_vlan_set_vlan(rtl, val->value.i);
1054         else
1055                 return rtl8366s_vlan_set_4ktable(rtl, val->value.i);
1056 }
1057
1058 static const char *rtl8366s_speed_str(unsigned speed)
1059 {
1060         switch (speed) {
1061         case 0:
1062                 return "10baseT";
1063         case 1:
1064                 return "100baseT";
1065         case 2:
1066                 return "1000baseT";
1067         }
1068
1069         return "unknown";
1070 }
1071
1072 static int rtl8366s_sw_get_port_link(struct switch_dev *dev,
1073                                      const struct switch_attr *attr,
1074                                      struct switch_val *val)
1075 {
1076         struct rtl8366s *rtl = sw_to_rtl8366s(dev);
1077         struct rtl8366_smi *smi = &rtl->smi;
1078         u32 len = 0, data = 0;
1079
1080         if (val->port_vlan >= RTL8366_NUM_PORTS)
1081                 return -EINVAL;
1082
1083         memset(rtl->buf, '\0', sizeof(rtl->buf));
1084         rtl8366_smi_read_reg(smi, RTL8366S_PORT_LINK_STATUS_BASE +
1085                              (val->port_vlan / 2), &data);
1086
1087         if (val->port_vlan % 2)
1088                 data = data >> 8;
1089
1090         len = snprintf(rtl->buf, sizeof(rtl->buf),
1091                         "port:%d link:%s speed:%s %s-duplex %s%s%s",
1092                         val->port_vlan,
1093                         (data & RTL8366S_PORT_STATUS_LINK_MASK) ? "up" : "down",
1094                         rtl8366s_speed_str(data &
1095                                           RTL8366S_PORT_STATUS_SPEED_MASK),
1096                         (data & RTL8366S_PORT_STATUS_DUPLEX_MASK) ?
1097                                 "full" : "half",
1098                         (data & RTL8366S_PORT_STATUS_TXPAUSE_MASK) ?
1099                                 "tx-pause ": "",
1100                         (data & RTL8366S_PORT_STATUS_RXPAUSE_MASK) ?
1101                                 "rx-pause " : "",
1102                         (data & RTL8366S_PORT_STATUS_AN_MASK) ? "nway ": "");
1103
1104         val->value.s = rtl->buf;
1105         val->len = len;
1106
1107         return 0;
1108 }
1109
1110 static int rtl8366s_sw_get_vlan_info(struct switch_dev *dev,
1111                                      const struct switch_attr *attr,
1112                                      struct switch_val *val)
1113 {
1114         int i;
1115         u32 len = 0;
1116         struct rtl8366s_vlanconfig vlanmc;
1117         struct rtl8366s_vlan4kentry vlan4k;
1118         struct rtl8366s *rtl = sw_to_rtl8366s(dev);
1119         char *buf = rtl->buf;
1120
1121         if (val->port_vlan == 0 || val->port_vlan >= RTL8366_NUM_VLANS)
1122                 return -EINVAL;
1123
1124         memset(buf, '\0', sizeof(rtl->buf));
1125
1126         rtl8366s_get_vlan_member_config(rtl, val->port_vlan, &vlanmc);
1127         rtl8366s_get_vlan_4k_entry(rtl, vlanmc.vid, &vlan4k);
1128
1129         len += snprintf(buf + len, sizeof(rtl->buf) - len, "VLAN %d: Ports: ",
1130                         val->port_vlan);
1131
1132         for (i = 0; i < RTL8366_NUM_PORTS; ++i) {
1133                 int index = 0;
1134                 if (!rtl8366s_get_port_vlan_index(rtl, i, &index) &&
1135                     index == val->port_vlan)
1136                         len += snprintf(buf + len, sizeof(rtl->buf) - len,
1137                                         "%d", i);
1138         }
1139         len += snprintf(buf + len, sizeof(rtl->buf) - len, "\n");
1140
1141         len += snprintf(buf + len, sizeof(rtl->buf) - len,
1142                         "\t\t vid \t prio \t member \t untag \t fid\n");
1143         len += snprintf(buf + len, sizeof(rtl->buf) - len, "\tMC:\t");
1144         len += snprintf(buf + len, sizeof(rtl->buf) - len,
1145                         "%d \t %d \t 0x%04x \t 0x%04x \t %d\n",
1146                         vlanmc.vid, vlanmc.priority, vlanmc.member,
1147                         vlanmc.untag, vlanmc.fid);
1148         len += snprintf(buf + len, sizeof(rtl->buf) - len, "\t4K:\t");
1149         len += snprintf(buf + len, sizeof(rtl->buf) - len,
1150                         "%d \t  \t 0x%04x \t 0x%04x \t %d",
1151                         vlan4k.vid, vlan4k.member, vlan4k.untag, vlan4k.fid);
1152
1153         val->value.s = buf;
1154         val->len = len;
1155
1156         return 0;
1157 }
1158
1159 static int rtl8366s_sw_set_port_led(struct switch_dev *dev,
1160                                     const struct switch_attr *attr,
1161                                     struct switch_val *val)
1162 {
1163         struct rtl8366s *rtl = sw_to_rtl8366s(dev);
1164         struct rtl8366_smi *smi = &rtl->smi;
1165         u32 data = 0;
1166
1167         if (val->port_vlan >= RTL8366_NUM_PORTS ||
1168             (1 << val->port_vlan) == RTL8366_PORT_UNKNOWN)
1169                 return -EINVAL;
1170
1171         if (val->port_vlan == RTL8366_PORT_NUM_CPU) {
1172                 rtl8366_smi_read_reg(smi, RTL8366_LED_BLINKRATE_REG, &data);
1173                 data = (data & (~(0xF << 4))) | (val->value.i << 4);
1174                 rtl8366_smi_write_reg(smi, RTL8366_LED_BLINKRATE_REG, data);
1175         } else {
1176                 rtl8366_smi_read_reg(smi, RTL8366_LED_CTRL_REG, &data);
1177                 data = (data & (~(0xF << (val->port_vlan * 4)))) |
1178                         (val->value.i << (val->port_vlan * 4));
1179                 rtl8366_smi_write_reg(smi, RTL8366_LED_CTRL_REG, data);
1180         }
1181
1182         return 0;
1183 }
1184
1185 static int rtl8366s_sw_get_port_led(struct switch_dev *dev,
1186                                     const struct switch_attr *attr,
1187                                     struct switch_val *val)
1188 {
1189         struct rtl8366s *rtl = sw_to_rtl8366s(dev);
1190         struct rtl8366_smi *smi = &rtl->smi;
1191         u32 data = 0;
1192
1193         if (val->port_vlan >= RTL8366_NUM_LEDGROUPS)
1194                 return -EINVAL;
1195
1196         rtl8366_smi_read_reg(smi, RTL8366_LED_CTRL_REG, &data);
1197         val->value.i = (data >> (val->port_vlan * 4)) & 0x000F;
1198
1199         return 0;
1200 }
1201
1202 static int rtl8366s_sw_reset_port_mibs(struct switch_dev *dev,
1203                                        const struct switch_attr *attr,
1204                                        struct switch_val *val)
1205 {
1206         struct rtl8366s *rtl = sw_to_rtl8366s(dev);
1207         struct rtl8366_smi *smi = &rtl->smi;
1208         u32 data = 0;
1209
1210         if (val->port_vlan >= RTL8366_NUM_PORTS)
1211                 return -EINVAL;
1212
1213         rtl8366_smi_read_reg(smi, RTL8366S_MIB_CTRL_REG, &data);
1214         data |= (1 << (val->port_vlan + 3));
1215         rtl8366_smi_write_reg(smi, RTL8366S_MIB_CTRL_REG, data);
1216
1217         return 0;
1218 }
1219
1220 static int rtl8366s_sw_get_port_mib(struct switch_dev *dev,
1221                                     const struct switch_attr *attr,
1222                                     struct switch_val *val)
1223 {
1224         struct rtl8366s *rtl = sw_to_rtl8366s(dev);
1225         int i, len = 0;
1226         unsigned long long counter = 0;
1227         char *buf = rtl->buf;
1228
1229         if (val->port_vlan >= RTL8366_NUM_PORTS)
1230                 return -EINVAL;
1231
1232         len += snprintf(buf + len, sizeof(rtl->buf) - len,
1233                         "Port %d MIB counters\n",
1234                         val->port_vlan);
1235
1236         for (i = 0; i < RTL8366S_MIB_COUNT; ++i) {
1237                 len += snprintf(buf + len, sizeof(rtl->buf) - len,
1238                                 "%d:%s\t", i, rtl8366s_mib_counters[i].name);
1239                 if (!rtl8366_get_mib_counter(rtl, i, val->port_vlan, &counter))
1240                         len += snprintf(buf + len, sizeof(rtl->buf) - len,
1241                                         "[%llu]\n", counter);
1242                 else
1243                         len += snprintf(buf + len, sizeof(rtl->buf) - len,
1244                                         "[error]\n");
1245         }
1246
1247         val->value.s = buf;
1248         val->len = len;
1249         return 0;
1250 }
1251
1252 static int rtl8366s_sw_get_vlan_ports(struct switch_dev *dev,
1253                                       struct switch_val *val)
1254 {
1255         struct rtl8366s_vlanconfig vlanmc;
1256         struct rtl8366s *rtl = sw_to_rtl8366s(dev);
1257         struct switch_port *port;
1258         int i;
1259
1260         if (val->port_vlan == 0 || val->port_vlan >= RTL8366_NUM_VLANS)
1261                 return -EINVAL;
1262
1263         rtl8366s_get_vlan_member_config(rtl, val->port_vlan, &vlanmc);
1264
1265         port = &val->value.ports[0];
1266         val->len = 0;
1267         for (i = 0; i < RTL8366_NUM_PORTS; i++) {
1268                 if (!(vlanmc.member & BIT(i)))
1269                         continue;
1270
1271                 port->id = i;
1272                 port->flags = (vlanmc.untag & BIT(i)) ?
1273                                         0 : BIT(SWITCH_PORT_FLAG_TAGGED);
1274                 val->len++;
1275                 port++;
1276         }
1277         return 0;
1278 }
1279
1280 static int rtl8366s_sw_set_vlan_ports(struct switch_dev *dev,
1281                                       struct switch_val *val)
1282 {
1283         struct rtl8366s_vlanconfig vlanmc;
1284         struct rtl8366s_vlan4kentry vlan4k;
1285         struct rtl8366s *rtl = sw_to_rtl8366s(dev);
1286         struct switch_port *port;
1287         int i;
1288
1289         if (val->port_vlan == 0 || val->port_vlan >= RTL8366_NUM_VLANS)
1290                 return -EINVAL;
1291
1292         rtl8366s_get_vlan_member_config(rtl, val->port_vlan, &vlanmc);
1293         rtl8366s_get_vlan_4k_entry(rtl, vlanmc.vid, &vlan4k);
1294
1295         vlanmc.untag = 0;
1296         vlanmc.member = 0;
1297
1298         port = &val->value.ports[0];
1299         for (i = 0; i < val->len; i++, port++) {
1300                 vlanmc.member |= BIT(port->id);
1301
1302                 if (!(port->flags & BIT(SWITCH_PORT_FLAG_TAGGED)))
1303                         vlanmc.untag |= BIT(port->id);
1304         }
1305
1306         vlan4k.member = vlanmc.member;
1307         vlan4k.untag = vlanmc.untag;
1308
1309         rtl8366s_set_vlan_member_config(rtl, val->port_vlan, &vlanmc);
1310         rtl8366s_set_vlan_4k_entry(rtl, &vlan4k);
1311         return 0;
1312 }
1313
1314 static int rtl8366s_sw_get_port_pvid(struct switch_dev *dev, int port, int *val)
1315 {
1316         struct rtl8366s *rtl = sw_to_rtl8366s(dev);
1317         return rtl8366s_get_vlan_port_pvid(rtl, port, val);
1318 }
1319
1320 static int rtl8366s_sw_set_port_pvid(struct switch_dev *dev, int port, int val)
1321 {
1322         struct rtl8366s *rtl = sw_to_rtl8366s(dev);
1323         return rtl8366s_set_vlan_port_pvid(rtl, port, val);
1324 }
1325
1326 static int rtl8366s_sw_reset_switch(struct switch_dev *dev)
1327 {
1328         struct rtl8366s *rtl = sw_to_rtl8366s(dev);
1329         int err;
1330
1331         err = rtl8366s_reset_chip(rtl);
1332         if (err)
1333                 return err;
1334
1335         return rtl8366s_reset_vlan(rtl);
1336 }
1337
1338 static struct switch_attr rtl8366s_globals[] = {
1339         {
1340                 .type = SWITCH_TYPE_INT,
1341                 .name = "enable_vlan",
1342                 .description = "Enable VLAN mode",
1343                 .set = rtl8366s_sw_set_vlan_enable,
1344                 .get = rtl8366s_sw_get_vlan_enable,
1345                 .max = 1,
1346                 .ofs = 1
1347         }, {
1348                 .type = SWITCH_TYPE_INT,
1349                 .name = "enable_vlan4k",
1350                 .description = "Enable VLAN 4K mode",
1351                 .set = rtl8366s_sw_set_vlan_enable,
1352                 .get = rtl8366s_sw_get_vlan_enable,
1353                 .max = 1,
1354                 .ofs = 2
1355         }, {
1356                 .type = SWITCH_TYPE_INT,
1357                 .name = "reset_mibs",
1358                 .description = "Reset all MIB counters",
1359                 .set = rtl8366s_sw_reset_mibs,
1360                 .get = NULL,
1361                 .max = 1
1362         }, {
1363                 .type = SWITCH_TYPE_INT,
1364                 .name = "blinkrate",
1365                 .description = "Get/Set LED blinking rate (0 = 43ms, 1 = 84ms,"
1366                 " 2 = 120ms, 3 = 170ms, 4 = 340ms, 5 = 670ms)",
1367                 .set = rtl8366s_sw_set_blinkrate,
1368                 .get = rtl8366s_sw_get_blinkrate,
1369                 .max = 5
1370         },
1371 };
1372
1373 static struct switch_attr rtl8366s_port[] = {
1374         {
1375                 .type = SWITCH_TYPE_STRING,
1376                 .name = "link",
1377                 .description = "Get port link information",
1378                 .max = 1,
1379                 .set = NULL,
1380                 .get = rtl8366s_sw_get_port_link,
1381         }, {
1382                 .type = SWITCH_TYPE_INT,
1383                 .name = "reset_mib",
1384                 .description = "Reset single port MIB counters",
1385                 .max = 1,
1386                 .set = rtl8366s_sw_reset_port_mibs,
1387                 .get = NULL,
1388         }, {
1389                 .type = SWITCH_TYPE_STRING,
1390                 .name = "mib",
1391                 .description = "Get MIB counters for port",
1392                 .max = 33,
1393                 .set = NULL,
1394                 .get = rtl8366s_sw_get_port_mib,
1395         }, {
1396                 .type = SWITCH_TYPE_INT,
1397                 .name = "led",
1398                 .description = "Get/Set port group (0 - 3) led mode (0 - 15)",
1399                 .max = 15,
1400                 .set = rtl8366s_sw_set_port_led,
1401                 .get = rtl8366s_sw_get_port_led,
1402         },
1403 };
1404
1405 static struct switch_attr rtl8366s_vlan[] = {
1406         {
1407                 .type = SWITCH_TYPE_STRING,
1408                 .name = "info",
1409                 .description = "Get vlan information",
1410                 .max = 1,
1411                 .set = NULL,
1412                 .get = rtl8366s_sw_get_vlan_info,
1413         },
1414 };
1415
1416 /* template */
1417 static struct switch_dev rtl8366_switch_dev = {
1418         .name = "RTL8366S",
1419         .cpu_port = RTL8366_PORT_NUM_CPU,
1420         .ports = RTL8366_NUM_PORTS,
1421         .vlans = RTL8366_NUM_VLANS,
1422         .attr_global = {
1423                 .attr = rtl8366s_globals,
1424                 .n_attr = ARRAY_SIZE(rtl8366s_globals),
1425         },
1426         .attr_port = {
1427                 .attr = rtl8366s_port,
1428                 .n_attr = ARRAY_SIZE(rtl8366s_port),
1429         },
1430         .attr_vlan = {
1431                 .attr = rtl8366s_vlan,
1432                 .n_attr = ARRAY_SIZE(rtl8366s_vlan),
1433         },
1434
1435         .get_vlan_ports = rtl8366s_sw_get_vlan_ports,
1436         .set_vlan_ports = rtl8366s_sw_set_vlan_ports,
1437         .get_port_pvid = rtl8366s_sw_get_port_pvid,
1438         .set_port_pvid = rtl8366s_sw_set_port_pvid,
1439         .reset_switch = rtl8366s_sw_reset_switch,
1440 };
1441
1442 static int rtl8366s_switch_init(struct rtl8366s *rtl)
1443 {
1444         struct switch_dev *dev = &rtl->dev;
1445         int err;
1446
1447         memcpy(dev, &rtl8366_switch_dev, sizeof(struct switch_dev));
1448         dev->priv = rtl;
1449         dev->devname = dev_name(rtl->parent);
1450
1451         err = register_switch(dev, NULL);
1452         if (err)
1453                 dev_err(rtl->parent, "switch registration failed\n");
1454
1455         return err;
1456 }
1457
1458 static void rtl8366s_switch_cleanup(struct rtl8366s *rtl)
1459 {
1460         unregister_switch(&rtl->dev);
1461 }
1462
1463 static int rtl8366s_mii_read(struct mii_bus *bus, int addr, int reg)
1464 {
1465         struct rtl8366s *rtl = bus->priv;
1466         u32 val = 0;
1467         int err;
1468
1469         err = rtl8366s_read_phy_reg(rtl, addr, 0, reg, &val);
1470         if (err)
1471                 return 0xffff;
1472
1473         return val;
1474 }
1475
1476 static int rtl8366s_mii_write(struct mii_bus *bus, int addr, int reg, u16 val)
1477 {
1478         struct rtl8366s *rtl = bus->priv;
1479         u32 t;
1480         int err;
1481
1482         err = rtl8366s_write_phy_reg(rtl, addr, 0, reg, val);
1483         /* flush write */
1484         (void) rtl8366s_read_phy_reg(rtl, addr, 0, reg, &t);
1485
1486         return err;
1487 }
1488
1489 static int rtl8366s_mii_init(struct rtl8366s *rtl)
1490 {
1491         int ret;
1492         int i;
1493
1494         rtl->mii_bus = mdiobus_alloc();
1495         if (rtl->mii_bus == NULL) {
1496                 ret = -ENOMEM;
1497                 goto err;
1498         }
1499
1500         rtl->mii_bus->priv = (void *) rtl;
1501         rtl->mii_bus->name = "rtl8366-rtl";
1502         rtl->mii_bus->read = rtl8366s_mii_read;
1503         rtl->mii_bus->write = rtl8366s_mii_write;
1504         snprintf(rtl->mii_bus->id, MII_BUS_ID_SIZE, "%s",
1505                  dev_name(rtl->parent));
1506         rtl->mii_bus->parent = rtl->parent;
1507         rtl->mii_bus->phy_mask = ~(0x1f);
1508         rtl->mii_bus->irq = rtl->mii_irq;
1509         for (i = 0; i < PHY_MAX_ADDR; i++)
1510                 rtl->mii_irq[i] = PHY_POLL;
1511
1512         ret = mdiobus_register(rtl->mii_bus);
1513         if (ret)
1514                 goto err_free;
1515
1516         return 0;
1517
1518  err_free:
1519         mdiobus_free(rtl->mii_bus);
1520  err:
1521         return ret;
1522 }
1523
1524 static void rtl8366s_mii_cleanup(struct rtl8366s *rtl)
1525 {
1526         mdiobus_unregister(rtl->mii_bus);
1527         mdiobus_free(rtl->mii_bus);
1528 }
1529
1530 static int rtl8366s_mii_bus_match(struct mii_bus *bus)
1531 {
1532         return (bus->read == rtl8366s_mii_read &&
1533                 bus->write == rtl8366s_mii_write);
1534 }
1535
1536 static int rtl8366s_setup(struct rtl8366s *rtl)
1537 {
1538         struct rtl8366_smi *smi = &rtl->smi;
1539         u32 chip_id = 0;
1540         u32 chip_ver = 0;
1541         int ret;
1542
1543         ret = rtl8366_smi_read_reg(smi, RTL8366S_CHIP_ID_REG, &chip_id);
1544         if (ret) {
1545                 dev_err(rtl->parent, "unable to read chip id\n");
1546                 return ret;
1547         }
1548
1549         switch (chip_id) {
1550         case RTL8366S_CHIP_ID_8366:
1551                 break;
1552         default:
1553                 dev_err(rtl->parent, "unknown chip id (%04x)\n", chip_id);
1554                 return -ENODEV;
1555         }
1556
1557         ret = rtl8366_smi_read_reg(smi, RTL8366S_CHIP_VERSION_CTRL_REG,
1558                                    &chip_ver);
1559         if (ret) {
1560                 dev_err(rtl->parent, "unable to read chip version\n");
1561                 return ret;
1562         }
1563
1564         dev_info(rtl->parent, "RTL%04x ver. %u chip found\n",
1565                  chip_id, chip_ver & RTL8366S_CHIP_VERSION_MASK);
1566
1567         ret = rtl8366s_reset_chip(rtl);
1568         if (ret)
1569                 return ret;
1570
1571         rtl8366s_debugfs_init(rtl);
1572         return 0;
1573 }
1574
1575 static int __init rtl8366s_probe(struct platform_device *pdev)
1576 {
1577         static int rtl8366_smi_version_printed;
1578         struct rtl8366s_platform_data *pdata;
1579         struct rtl8366s *rtl;
1580         struct rtl8366_smi *smi;
1581         int err;
1582
1583         if (!rtl8366_smi_version_printed++)
1584                 printk(KERN_NOTICE RTL8366S_DRIVER_DESC
1585                        " version " RTL8366S_DRIVER_VER"\n");
1586
1587         pdata = pdev->dev.platform_data;
1588         if (!pdata) {
1589                 dev_err(&pdev->dev, "no platform data specified\n");
1590                 err = -EINVAL;
1591                 goto err_out;
1592         }
1593
1594         rtl = kzalloc(sizeof(*rtl), GFP_KERNEL);
1595         if (!rtl) {
1596                 dev_err(&pdev->dev, "no memory for private data\n");
1597                 err = -ENOMEM;
1598                 goto err_out;
1599         }
1600
1601         rtl->parent = &pdev->dev;
1602
1603         smi = &rtl->smi;
1604         smi->parent = &pdev->dev;
1605         smi->gpio_sda = pdata->gpio_sda;
1606         smi->gpio_sck = pdata->gpio_sck;
1607
1608         err = rtl8366_smi_init(smi);
1609         if (err)
1610                 goto err_free_rtl;
1611
1612         platform_set_drvdata(pdev, rtl);
1613
1614         err = rtl8366s_setup(rtl);
1615         if (err)
1616                 goto err_clear_drvdata;
1617
1618         err = rtl8366s_mii_init(rtl);
1619         if (err)
1620                 goto err_clear_drvdata;
1621
1622         err = rtl8366s_switch_init(rtl);
1623         if (err)
1624                 goto err_mii_cleanup;
1625
1626         return 0;
1627
1628  err_mii_cleanup:
1629         rtl8366s_mii_cleanup(rtl);
1630  err_clear_drvdata:
1631         platform_set_drvdata(pdev, NULL);
1632         rtl8366_smi_cleanup(smi);
1633  err_free_rtl:
1634         kfree(rtl);
1635  err_out:
1636         return err;
1637 }
1638
1639 static int rtl8366s_phy_config_init(struct phy_device *phydev)
1640 {
1641         if (!rtl8366s_mii_bus_match(phydev->bus))
1642                 return -EINVAL;
1643
1644         return 0;
1645 }
1646
1647 static int rtl8366s_phy_config_aneg(struct phy_device *phydev)
1648 {
1649         return 0;
1650 }
1651
1652 static struct phy_driver rtl8366s_phy_driver = {
1653         .phy_id         = 0x001cc960,
1654         .name           = "Realtek RTL8366S",
1655         .phy_id_mask    = 0x1ffffff0,
1656         .features       = PHY_GBIT_FEATURES,
1657         .config_aneg    = rtl8366s_phy_config_aneg,
1658         .config_init    = rtl8366s_phy_config_init,
1659         .read_status    = genphy_read_status,
1660         .driver         = {
1661                 .owner = THIS_MODULE,
1662         },
1663 };
1664
1665 static int __devexit rtl8366s_remove(struct platform_device *pdev)
1666 {
1667         struct rtl8366s *rtl = platform_get_drvdata(pdev);
1668
1669         if (rtl) {
1670                 rtl8366s_switch_cleanup(rtl);
1671                 rtl8366s_debugfs_remove(rtl);
1672                 rtl8366s_mii_cleanup(rtl);
1673                 platform_set_drvdata(pdev, NULL);
1674                 rtl8366_smi_cleanup(&rtl->smi);
1675                 kfree(rtl);
1676         }
1677
1678         return 0;
1679 }
1680
1681 static struct platform_driver rtl8366s_driver = {
1682         .driver = {
1683                 .name           = RTL8366S_DRIVER_NAME,
1684                 .owner          = THIS_MODULE,
1685         },
1686         .probe          = rtl8366s_probe,
1687         .remove         = __devexit_p(rtl8366s_remove),
1688 };
1689
1690 static int __init rtl8366s_module_init(void)
1691 {
1692         int ret;
1693         ret = platform_driver_register(&rtl8366s_driver);
1694         if (ret)
1695                 return ret;
1696
1697         ret = phy_driver_register(&rtl8366s_phy_driver);
1698         if (ret)
1699                 goto err_platform_unregister;
1700
1701         return 0;
1702
1703  err_platform_unregister:
1704         platform_driver_unregister(&rtl8366s_driver);
1705         return ret;
1706 }
1707 module_init(rtl8366s_module_init);
1708
1709 static void __exit rtl8366s_module_exit(void)
1710 {
1711         phy_driver_unregister(&rtl8366s_phy_driver);
1712         platform_driver_unregister(&rtl8366s_driver);
1713 }
1714 module_exit(rtl8366s_module_exit);
1715
1716 MODULE_DESCRIPTION(RTL8366S_DRIVER_DESC);
1717 MODULE_VERSION(RTL8366S_DRIVER_VER);
1718 MODULE_AUTHOR("Gabor Juhos <juhosg@openwrt.org>");
1719 MODULE_AUTHOR("Antti Seppälä <a.seppala@gmail.com>");
1720 MODULE_LICENSE("GPL v2");
1721 MODULE_ALIAS("platform:" RTL8366S_DRIVER_NAME);