2 * Platform driver for the Realtek RTL8366S ethernet switch
4 * Copyright (C) 2009-2010 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2010 Antti Seppälä <a.seppala@gmail.com>
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.
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/rtl8366rb.h>
20 #include "rtl8366_smi.h"
22 #define RTL8366RB_DRIVER_DESC "Realtek RTL8366RB ethernet switch driver"
23 #define RTL8366RB_DRIVER_VER "0.2.2"
25 #define RTL8366RB_PHY_NO_MAX 4
26 #define RTL8366RB_PHY_PAGE_MAX 7
27 #define RTL8366RB_PHY_ADDR_MAX 31
29 /* Switch Global Configuration register */
30 #define RTL8366RB_SGCR 0x0000
31 #define RTL8366RB_SGCR_EN_BC_STORM_CTRL BIT(0)
32 #define RTL8366RB_SGCR_MAX_LENGTH(_x) (_x << 4)
33 #define RTL8366RB_SGCR_MAX_LENGTH_MASK RTL8366RB_SGCR_MAX_LENGTH(0x3)
34 #define RTL8366RB_SGCR_MAX_LENGTH_1522 RTL8366RB_SGCR_MAX_LENGTH(0x0)
35 #define RTL8366RB_SGCR_MAX_LENGTH_1536 RTL8366RB_SGCR_MAX_LENGTH(0x1)
36 #define RTL8366RB_SGCR_MAX_LENGTH_1552 RTL8366RB_SGCR_MAX_LENGTH(0x2)
37 #define RTL8366RB_SGCR_MAX_LENGTH_9216 RTL8366RB_SGCR_MAX_LENGTH(0x3)
38 #define RTL8366RB_SGCR_EN_VLAN BIT(13)
39 #define RTL8366RB_SGCR_EN_VLAN_4KTB BIT(14)
41 /* Port Enable Control register */
42 #define RTL8366RB_PECR 0x0001
44 /* Switch Security Control registers */
45 #define RTL8366RB_SSCR0 0x0002
46 #define RTL8366RB_SSCR1 0x0003
47 #define RTL8366RB_SSCR2 0x0004
48 #define RTL8366RB_SSCR2_DROP_UNKNOWN_DA BIT(0)
50 #define RTL8366RB_RESET_CTRL_REG 0x0100
51 #define RTL8366RB_CHIP_CTRL_RESET_HW 1
52 #define RTL8366RB_CHIP_CTRL_RESET_SW (1 << 1)
54 #define RTL8366RB_CHIP_VERSION_CTRL_REG 0x050A
55 #define RTL8366RB_CHIP_VERSION_MASK 0xf
56 #define RTL8366RB_CHIP_ID_REG 0x0509
57 #define RTL8366RB_CHIP_ID_8366 0x5937
59 /* PHY registers control */
60 #define RTL8366RB_PHY_ACCESS_CTRL_REG 0x8000
61 #define RTL8366RB_PHY_ACCESS_DATA_REG 0x8002
63 #define RTL8366RB_PHY_CTRL_READ 1
64 #define RTL8366RB_PHY_CTRL_WRITE 0
66 #define RTL8366RB_PHY_REG_MASK 0x1f
67 #define RTL8366RB_PHY_PAGE_OFFSET 5
68 #define RTL8366RB_PHY_PAGE_MASK (0xf << 5)
69 #define RTL8366RB_PHY_NO_OFFSET 9
70 #define RTL8366RB_PHY_NO_MASK (0x1f << 9)
72 #define RTL8366RB_VLAN_INGRESS_CTRL2_REG 0x037f
74 /* LED control registers */
75 #define RTL8366RB_LED_BLINKRATE_REG 0x0430
76 #define RTL8366RB_LED_BLINKRATE_BIT 0
77 #define RTL8366RB_LED_BLINKRATE_MASK 0x0007
79 #define RTL8366RB_LED_CTRL_REG 0x0431
80 #define RTL8366RB_LED_0_1_CTRL_REG 0x0432
81 #define RTL8366RB_LED_2_3_CTRL_REG 0x0433
83 #define RTL8366RB_MIB_COUNT 33
84 #define RTL8366RB_GLOBAL_MIB_COUNT 1
85 #define RTL8366RB_MIB_COUNTER_PORT_OFFSET 0x0050
86 #define RTL8366RB_MIB_COUNTER_BASE 0x1000
87 #define RTL8366RB_MIB_CTRL_REG 0x13F0
88 #define RTL8366RB_MIB_CTRL_USER_MASK 0x0FFC
89 #define RTL8366RB_MIB_CTRL_BUSY_MASK BIT(0)
90 #define RTL8366RB_MIB_CTRL_RESET_MASK BIT(1)
91 #define RTL8366RB_MIB_CTRL_PORT_RESET(_p) BIT(2 + (_p))
92 #define RTL8366RB_MIB_CTRL_GLOBAL_RESET BIT(11)
94 #define RTL8366RB_PORT_VLAN_CTRL_BASE 0x0063
95 #define RTL8366RB_PORT_VLAN_CTRL_REG(_p) \
96 (RTL8366RB_PORT_VLAN_CTRL_BASE + (_p) / 4)
97 #define RTL8366RB_PORT_VLAN_CTRL_MASK 0xf
98 #define RTL8366RB_PORT_VLAN_CTRL_SHIFT(_p) (4 * ((_p) % 4))
101 #define RTL8366RB_VLAN_TABLE_READ_BASE 0x018C
102 #define RTL8366RB_VLAN_TABLE_WRITE_BASE 0x0185
105 #define RTL8366RB_TABLE_ACCESS_CTRL_REG 0x0180
106 #define RTL8366RB_TABLE_VLAN_READ_CTRL 0x0E01
107 #define RTL8366RB_TABLE_VLAN_WRITE_CTRL 0x0F01
109 #define RTL8366RB_VLAN_MC_BASE(_x) (0x0020 + (_x) * 3)
112 #define RTL8366RB_PORT_LINK_STATUS_BASE 0x0014
113 #define RTL8366RB_PORT_STATUS_SPEED_MASK 0x0003
114 #define RTL8366RB_PORT_STATUS_DUPLEX_MASK 0x0004
115 #define RTL8366RB_PORT_STATUS_LINK_MASK 0x0010
116 #define RTL8366RB_PORT_STATUS_TXPAUSE_MASK 0x0020
117 #define RTL8366RB_PORT_STATUS_RXPAUSE_MASK 0x0040
118 #define RTL8366RB_PORT_STATUS_AN_MASK 0x0080
121 #define RTL8366RB_PORT_NUM_CPU 5
122 #define RTL8366RB_NUM_PORTS 6
123 #define RTL8366RB_NUM_VLANS 16
124 #define RTL8366RB_NUM_LEDGROUPS 4
125 #define RTL8366RB_NUM_VIDS 4096
126 #define RTL8366RB_PRIORITYMAX 7
127 #define RTL8366RB_FIDMAX 7
130 #define RTL8366RB_PORT_1 (1 << 0) /* In userspace port 0 */
131 #define RTL8366RB_PORT_2 (1 << 1) /* In userspace port 1 */
132 #define RTL8366RB_PORT_3 (1 << 2) /* In userspace port 2 */
133 #define RTL8366RB_PORT_4 (1 << 3) /* In userspace port 3 */
134 #define RTL8366RB_PORT_5 (1 << 4) /* In userspace port 4 */
136 #define RTL8366RB_PORT_CPU (1 << 5) /* CPU port */
138 #define RTL8366RB_PORT_ALL (RTL8366RB_PORT_1 | \
145 #define RTL8366RB_PORT_ALL_BUT_CPU (RTL8366RB_PORT_1 | \
151 #define RTL8366RB_PORT_ALL_EXTERNAL (RTL8366RB_PORT_1 | \
156 #define RTL8366RB_PORT_ALL_INTERNAL RTL8366RB_PORT_CPU
158 #define RTL8366RB_VLAN_VID_MASK 0xfff
159 #define RTL8366RB_VLAN_PRIORITY_SHIFT 12
160 #define RTL8366RB_VLAN_PRIORITY_MASK 0x7
161 #define RTL8366RB_VLAN_UNTAG_SHIFT 8
162 #define RTL8366RB_VLAN_UNTAG_MASK 0xff
163 #define RTL8366RB_VLAN_MEMBER_MASK 0xff
164 #define RTL8366RB_VLAN_FID_MASK 0x7
166 static struct rtl8366_mib_counter rtl8366rb_mib_counters
[] = {
167 { 0, 0, 4, "IfInOctets" },
168 { 0, 4, 4, "EtherStatsOctets" },
169 { 0, 8, 2, "EtherStatsUnderSizePkts" },
170 { 0, 10, 2, "EtherFragments" },
171 { 0, 12, 2, "EtherStatsPkts64Octets" },
172 { 0, 14, 2, "EtherStatsPkts65to127Octets" },
173 { 0, 16, 2, "EtherStatsPkts128to255Octets" },
174 { 0, 18, 2, "EtherStatsPkts256to511Octets" },
175 { 0, 20, 2, "EtherStatsPkts512to1023Octets" },
176 { 0, 22, 2, "EtherStatsPkts1024to1518Octets" },
177 { 0, 24, 2, "EtherOversizeStats" },
178 { 0, 26, 2, "EtherStatsJabbers" },
179 { 0, 28, 2, "IfInUcastPkts" },
180 { 0, 30, 2, "EtherStatsMulticastPkts" },
181 { 0, 32, 2, "EtherStatsBroadcastPkts" },
182 { 0, 34, 2, "EtherStatsDropEvents" },
183 { 0, 36, 2, "Dot3StatsFCSErrors" },
184 { 0, 38, 2, "Dot3StatsSymbolErrors" },
185 { 0, 40, 2, "Dot3InPauseFrames" },
186 { 0, 42, 2, "Dot3ControlInUnknownOpcodes" },
187 { 0, 44, 4, "IfOutOctets" },
188 { 0, 48, 2, "Dot3StatsSingleCollisionFrames" },
189 { 0, 50, 2, "Dot3StatMultipleCollisionFrames" },
190 { 0, 52, 2, "Dot3sDeferredTransmissions" },
191 { 0, 54, 2, "Dot3StatsLateCollisions" },
192 { 0, 56, 2, "EtherStatsCollisions" },
193 { 0, 58, 2, "Dot3StatsExcessiveCollisions" },
194 { 0, 60, 2, "Dot3OutPauseFrames" },
195 { 0, 62, 2, "Dot1dBasePortDelayExceededDiscards" },
196 { 0, 64, 2, "Dot1dTpPortInDiscards" },
197 { 0, 66, 2, "IfOutUcastPkts" },
198 { 0, 68, 2, "IfOutMulticastPkts" },
199 { 0, 70, 2, "IfOutBroadcastPkts" },
202 #define REG_WR(_smi, _reg, _val) \
204 err = rtl8366_smi_write_reg(_smi, _reg, _val); \
209 #define REG_RMW(_smi, _reg, _mask, _val) \
211 err = rtl8366_smi_rmwr(_smi, _reg, _mask, _val); \
216 static int rtl8366rb_reset_chip(struct rtl8366_smi
*smi
)
221 rtl8366_smi_write_reg(smi
, RTL8366RB_RESET_CTRL_REG
,
222 RTL8366RB_CHIP_CTRL_RESET_HW
);
225 if (rtl8366_smi_read_reg(smi
, RTL8366RB_RESET_CTRL_REG
, &data
))
228 if (!(data
& RTL8366RB_CHIP_CTRL_RESET_HW
))
233 printk("Timeout waiting for the switch to reset\n");
240 static int rtl8366rb_hw_init(struct rtl8366_smi
*smi
)
244 /* set maximum packet length to 1536 bytes */
245 REG_RMW(smi
, RTL8366RB_SGCR
, RTL8366RB_SGCR_MAX_LENGTH_MASK
,
246 RTL8366RB_SGCR_MAX_LENGTH_1536
);
248 /* enable all ports */
249 REG_WR(smi
, RTL8366RB_PECR
, 0);
251 /* disable learning for all ports */
252 REG_WR(smi
, RTL8366RB_SSCR0
, RTL8366RB_PORT_ALL
);
254 /* disable auto ageing for all ports */
255 REG_WR(smi
, RTL8366RB_SSCR1
, RTL8366RB_PORT_ALL
);
258 * discard VLAN tagged packets if the port is not a member of
259 * the VLAN with which the packets is associated.
261 REG_WR(smi
, RTL8366RB_VLAN_INGRESS_CTRL2_REG
, RTL8366RB_PORT_ALL
);
263 /* don't drop packets whose DA has not been learned */
264 REG_RMW(smi
, RTL8366RB_SSCR2
, RTL8366RB_SSCR2_DROP_UNKNOWN_DA
, 0);
269 static int rtl8366rb_read_phy_reg(struct rtl8366_smi
*smi
,
270 u32 phy_no
, u32 page
, u32 addr
, u32
*data
)
275 if (phy_no
> RTL8366RB_PHY_NO_MAX
)
278 if (page
> RTL8366RB_PHY_PAGE_MAX
)
281 if (addr
> RTL8366RB_PHY_ADDR_MAX
)
284 ret
= rtl8366_smi_write_reg(smi
, RTL8366RB_PHY_ACCESS_CTRL_REG
,
285 RTL8366RB_PHY_CTRL_READ
);
289 reg
= 0x8000 | (1 << (phy_no
+ RTL8366RB_PHY_NO_OFFSET
)) |
290 ((page
<< RTL8366RB_PHY_PAGE_OFFSET
) & RTL8366RB_PHY_PAGE_MASK
) |
291 (addr
& RTL8366RB_PHY_REG_MASK
);
293 ret
= rtl8366_smi_write_reg(smi
, reg
, 0);
297 ret
= rtl8366_smi_read_reg(smi
, RTL8366RB_PHY_ACCESS_DATA_REG
, data
);
304 static int rtl8366rb_write_phy_reg(struct rtl8366_smi
*smi
,
305 u32 phy_no
, u32 page
, u32 addr
, u32 data
)
310 if (phy_no
> RTL8366RB_PHY_NO_MAX
)
313 if (page
> RTL8366RB_PHY_PAGE_MAX
)
316 if (addr
> RTL8366RB_PHY_ADDR_MAX
)
319 ret
= rtl8366_smi_write_reg(smi
, RTL8366RB_PHY_ACCESS_CTRL_REG
,
320 RTL8366RB_PHY_CTRL_WRITE
);
324 reg
= 0x8000 | (1 << (phy_no
+ RTL8366RB_PHY_NO_OFFSET
)) |
325 ((page
<< RTL8366RB_PHY_PAGE_OFFSET
) & RTL8366RB_PHY_PAGE_MASK
) |
326 (addr
& RTL8366RB_PHY_REG_MASK
);
328 ret
= rtl8366_smi_write_reg(smi
, reg
, data
);
335 static int rtl8366rb_get_mib_counter(struct rtl8366_smi
*smi
, int counter
,
336 int port
, unsigned long long *val
)
343 if (port
> RTL8366RB_NUM_PORTS
|| counter
>= RTL8366RB_MIB_COUNT
)
346 addr
= RTL8366RB_MIB_COUNTER_BASE
+
347 RTL8366RB_MIB_COUNTER_PORT_OFFSET
* (port
) +
348 rtl8366rb_mib_counters
[counter
].offset
;
351 * Writing access counter address first
352 * then ASIC will prepare 64bits counter wait for being retrived
354 data
= 0; /* writing data will be discard by ASIC */
355 err
= rtl8366_smi_write_reg(smi
, addr
, data
);
359 /* read MIB control register */
360 err
= rtl8366_smi_read_reg(smi
, RTL8366RB_MIB_CTRL_REG
, &data
);
364 if (data
& RTL8366RB_MIB_CTRL_BUSY_MASK
)
367 if (data
& RTL8366RB_MIB_CTRL_RESET_MASK
)
371 for (i
= rtl8366rb_mib_counters
[counter
].length
; i
> 0; i
--) {
372 err
= rtl8366_smi_read_reg(smi
, addr
+ (i
- 1), &data
);
376 mibvalue
= (mibvalue
<< 16) | (data
& 0xFFFF);
383 static int rtl8366rb_get_vlan_4k(struct rtl8366_smi
*smi
, u32 vid
,
384 struct rtl8366_vlan_4k
*vlan4k
)
390 memset(vlan4k
, '\0', sizeof(struct rtl8366_vlan_4k
));
392 if (vid
>= RTL8366RB_NUM_VIDS
)
396 err
= rtl8366_smi_write_reg(smi
, RTL8366RB_VLAN_TABLE_WRITE_BASE
,
397 vid
& RTL8366RB_VLAN_VID_MASK
);
401 /* write table access control word */
402 err
= rtl8366_smi_write_reg(smi
, RTL8366RB_TABLE_ACCESS_CTRL_REG
,
403 RTL8366RB_TABLE_VLAN_READ_CTRL
);
407 for (i
= 0; i
< 3; i
++) {
408 err
= rtl8366_smi_read_reg(smi
,
409 RTL8366RB_VLAN_TABLE_READ_BASE
+ i
,
416 vlan4k
->untag
= (data
[1] >> RTL8366RB_VLAN_UNTAG_SHIFT
) &
417 RTL8366RB_VLAN_UNTAG_MASK
;
418 vlan4k
->member
= data
[1] & RTL8366RB_VLAN_MEMBER_MASK
;
419 vlan4k
->fid
= data
[2] & RTL8366RB_VLAN_FID_MASK
;
424 static int rtl8366rb_set_vlan_4k(struct rtl8366_smi
*smi
,
425 const struct rtl8366_vlan_4k
*vlan4k
)
431 if (vlan4k
->vid
>= RTL8366RB_NUM_VIDS
||
432 vlan4k
->member
> RTL8366RB_PORT_ALL
||
433 vlan4k
->untag
> RTL8366RB_PORT_ALL
||
434 vlan4k
->fid
> RTL8366RB_FIDMAX
)
437 data
[0] = vlan4k
->vid
& RTL8366RB_VLAN_VID_MASK
;
438 data
[1] = (vlan4k
->member
& RTL8366RB_VLAN_MEMBER_MASK
) |
439 ((vlan4k
->untag
& RTL8366RB_VLAN_UNTAG_MASK
) <<
440 RTL8366RB_VLAN_UNTAG_SHIFT
);
441 data
[2] = vlan4k
->fid
& RTL8366RB_VLAN_FID_MASK
;
443 for (i
= 0; i
< 3; i
++) {
444 err
= rtl8366_smi_write_reg(smi
,
445 RTL8366RB_VLAN_TABLE_WRITE_BASE
+ i
,
451 /* write table access control word */
452 err
= rtl8366_smi_write_reg(smi
, RTL8366RB_TABLE_ACCESS_CTRL_REG
,
453 RTL8366RB_TABLE_VLAN_WRITE_CTRL
);
458 static int rtl8366rb_get_vlan_mc(struct rtl8366_smi
*smi
, u32 index
,
459 struct rtl8366_vlan_mc
*vlanmc
)
465 memset(vlanmc
, '\0', sizeof(struct rtl8366_vlan_mc
));
467 if (index
>= RTL8366RB_NUM_VLANS
)
470 for (i
= 0; i
< 3; i
++) {
471 err
= rtl8366_smi_read_reg(smi
,
472 RTL8366RB_VLAN_MC_BASE(index
) + i
,
478 vlanmc
->vid
= data
[0] & RTL8366RB_VLAN_VID_MASK
;
479 vlanmc
->priority
= (data
[0] >> RTL8366RB_VLAN_PRIORITY_SHIFT
) &
480 RTL8366RB_VLAN_PRIORITY_MASK
;
481 vlanmc
->untag
= (data
[1] >> RTL8366RB_VLAN_UNTAG_SHIFT
) &
482 RTL8366RB_VLAN_UNTAG_MASK
;
483 vlanmc
->member
= data
[1] & RTL8366RB_VLAN_MEMBER_MASK
;
484 vlanmc
->fid
= data
[2] & RTL8366RB_VLAN_FID_MASK
;
489 static int rtl8366rb_set_vlan_mc(struct rtl8366_smi
*smi
, u32 index
,
490 const struct rtl8366_vlan_mc
*vlanmc
)
496 if (index
>= RTL8366RB_NUM_VLANS
||
497 vlanmc
->vid
>= RTL8366RB_NUM_VIDS
||
498 vlanmc
->priority
> RTL8366RB_PRIORITYMAX
||
499 vlanmc
->member
> RTL8366RB_PORT_ALL
||
500 vlanmc
->untag
> RTL8366RB_PORT_ALL
||
501 vlanmc
->fid
> RTL8366RB_FIDMAX
)
504 data
[0] = (vlanmc
->vid
& RTL8366RB_VLAN_VID_MASK
) |
505 ((vlanmc
->priority
& RTL8366RB_VLAN_PRIORITY_MASK
) <<
506 RTL8366RB_VLAN_PRIORITY_SHIFT
);
507 data
[1] = (vlanmc
->member
& RTL8366RB_VLAN_MEMBER_MASK
) |
508 ((vlanmc
->untag
& RTL8366RB_VLAN_UNTAG_MASK
) <<
509 RTL8366RB_VLAN_UNTAG_SHIFT
);
510 data
[2] = vlanmc
->fid
& RTL8366RB_VLAN_FID_MASK
;
512 for (i
= 0; i
< 3; i
++) {
513 err
= rtl8366_smi_write_reg(smi
,
514 RTL8366RB_VLAN_MC_BASE(index
) + i
,
523 static int rtl8366rb_get_mc_index(struct rtl8366_smi
*smi
, int port
, int *val
)
528 if (port
>= RTL8366RB_NUM_PORTS
)
531 err
= rtl8366_smi_read_reg(smi
, RTL8366RB_PORT_VLAN_CTRL_REG(port
),
536 *val
= (data
>> RTL8366RB_PORT_VLAN_CTRL_SHIFT(port
)) &
537 RTL8366RB_PORT_VLAN_CTRL_MASK
;
543 static int rtl8366rb_set_mc_index(struct rtl8366_smi
*smi
, int port
, int index
)
545 if (port
>= RTL8366RB_NUM_PORTS
|| index
>= RTL8366RB_NUM_VLANS
)
548 return rtl8366_smi_rmwr(smi
, RTL8366RB_PORT_VLAN_CTRL_REG(port
),
549 RTL8366RB_PORT_VLAN_CTRL_MASK
<<
550 RTL8366RB_PORT_VLAN_CTRL_SHIFT(port
),
551 (index
& RTL8366RB_PORT_VLAN_CTRL_MASK
) <<
552 RTL8366RB_PORT_VLAN_CTRL_SHIFT(port
));
555 static int rtl8366rb_vlan_set_vlan(struct rtl8366_smi
*smi
, int enable
)
557 return rtl8366_smi_rmwr(smi
, RTL8366RB_SGCR
, RTL8366RB_SGCR_EN_VLAN
,
558 (enable
) ? RTL8366RB_SGCR_EN_VLAN
: 0);
561 static int rtl8366rb_vlan_set_4ktable(struct rtl8366_smi
*smi
, int enable
)
563 return rtl8366_smi_rmwr(smi
, RTL8366RB_SGCR
,
564 RTL8366RB_SGCR_EN_VLAN_4KTB
,
565 (enable
) ? RTL8366RB_SGCR_EN_VLAN_4KTB
: 0);
568 static int rtl8366rb_sw_reset_mibs(struct switch_dev
*dev
,
569 const struct switch_attr
*attr
,
570 struct switch_val
*val
)
572 struct rtl8366_smi
*smi
= sw_to_rtl8366_smi(dev
);
574 return rtl8366_smi_rmwr(smi
, RTL8366RB_MIB_CTRL_REG
, 0,
575 RTL8366RB_MIB_CTRL_GLOBAL_RESET
);
578 static int rtl8366rb_sw_get_vlan_enable(struct switch_dev
*dev
,
579 const struct switch_attr
*attr
,
580 struct switch_val
*val
)
582 struct rtl8366_smi
*smi
= sw_to_rtl8366_smi(dev
);
585 if (attr
->ofs
== 1) {
586 rtl8366_smi_read_reg(smi
, RTL8366RB_SGCR
, &data
);
588 if (data
& RTL8366RB_SGCR_EN_VLAN
)
592 } else if (attr
->ofs
== 2) {
593 rtl8366_smi_read_reg(smi
, RTL8366RB_SGCR
, &data
);
595 if (data
& RTL8366RB_SGCR_EN_VLAN_4KTB
)
604 static int rtl8366rb_sw_get_blinkrate(struct switch_dev
*dev
,
605 const struct switch_attr
*attr
,
606 struct switch_val
*val
)
608 struct rtl8366_smi
*smi
= sw_to_rtl8366_smi(dev
);
611 rtl8366_smi_read_reg(smi
, RTL8366RB_LED_BLINKRATE_REG
, &data
);
613 val
->value
.i
= (data
& (RTL8366RB_LED_BLINKRATE_MASK
));
618 static int rtl8366rb_sw_set_blinkrate(struct switch_dev
*dev
,
619 const struct switch_attr
*attr
,
620 struct switch_val
*val
)
622 struct rtl8366_smi
*smi
= sw_to_rtl8366_smi(dev
);
624 if (val
->value
.i
>= 6)
627 return rtl8366_smi_rmwr(smi
, RTL8366RB_LED_BLINKRATE_REG
,
628 RTL8366RB_LED_BLINKRATE_MASK
,
632 static int rtl8366rb_sw_set_vlan_enable(struct switch_dev
*dev
,
633 const struct switch_attr
*attr
,
634 struct switch_val
*val
)
636 struct rtl8366_smi
*smi
= sw_to_rtl8366_smi(dev
);
639 return rtl8366rb_vlan_set_vlan(smi
, val
->value
.i
);
641 return rtl8366rb_vlan_set_4ktable(smi
, val
->value
.i
);
644 static const char *rtl8366rb_speed_str(unsigned speed
)
658 static int rtl8366rb_sw_get_port_link(struct switch_dev
*dev
,
659 const struct switch_attr
*attr
,
660 struct switch_val
*val
)
662 struct rtl8366_smi
*smi
= sw_to_rtl8366_smi(dev
);
663 u32 len
= 0, data
= 0;
665 if (val
->port_vlan
>= RTL8366RB_NUM_PORTS
)
668 memset(smi
->buf
, '\0', sizeof(smi
->buf
));
669 rtl8366_smi_read_reg(smi
, RTL8366RB_PORT_LINK_STATUS_BASE
+
670 (val
->port_vlan
/ 2), &data
);
672 if (val
->port_vlan
% 2)
675 if (data
& RTL8366RB_PORT_STATUS_LINK_MASK
) {
676 len
= snprintf(smi
->buf
, sizeof(smi
->buf
),
677 "port:%d link:up speed:%s %s-duplex %s%s%s",
679 rtl8366rb_speed_str(data
&
680 RTL8366RB_PORT_STATUS_SPEED_MASK
),
681 (data
& RTL8366RB_PORT_STATUS_DUPLEX_MASK
) ?
683 (data
& RTL8366RB_PORT_STATUS_TXPAUSE_MASK
) ?
685 (data
& RTL8366RB_PORT_STATUS_RXPAUSE_MASK
) ?
687 (data
& RTL8366RB_PORT_STATUS_AN_MASK
) ?
690 len
= snprintf(smi
->buf
, sizeof(smi
->buf
), "port:%d link: down",
694 val
->value
.s
= smi
->buf
;
700 static int rtl8366rb_sw_get_vlan_info(struct switch_dev
*dev
,
701 const struct switch_attr
*attr
,
702 struct switch_val
*val
)
706 struct rtl8366_vlan_4k vlan4k
;
707 struct rtl8366_smi
*smi
= sw_to_rtl8366_smi(dev
);
708 char *buf
= smi
->buf
;
711 if (val
->port_vlan
== 0 || val
->port_vlan
>= RTL8366RB_NUM_VLANS
)
714 memset(buf
, '\0', sizeof(smi
->buf
));
716 err
= rtl8366rb_get_vlan_4k(smi
, val
->port_vlan
, &vlan4k
);
720 len
+= snprintf(buf
+ len
, sizeof(smi
->buf
) - len
,
721 "VLAN %d: Ports: '", vlan4k
.vid
);
723 for (i
= 0; i
< RTL8366RB_NUM_PORTS
; i
++) {
724 if (!(vlan4k
.member
& (1 << i
)))
727 len
+= snprintf(buf
+ len
, sizeof(smi
->buf
) - len
, "%d%s", i
,
728 (vlan4k
.untag
& (1 << i
)) ? "" : "t");
731 len
+= snprintf(buf
+ len
, sizeof(smi
->buf
) - len
,
732 "', members=%04x, untag=%04x, fid=%u",
733 vlan4k
.member
, vlan4k
.untag
, vlan4k
.fid
);
741 static int rtl8366rb_sw_set_port_led(struct switch_dev
*dev
,
742 const struct switch_attr
*attr
,
743 struct switch_val
*val
)
745 struct rtl8366_smi
*smi
= sw_to_rtl8366_smi(dev
);
750 if (val
->port_vlan
>= RTL8366RB_NUM_PORTS
)
753 if (val
->port_vlan
== RTL8366RB_PORT_NUM_CPU
) {
754 reg
= RTL8366RB_LED_BLINKRATE_REG
;
756 data
= val
->value
.i
<< 4;
758 reg
= RTL8366RB_LED_CTRL_REG
;
759 mask
= 0xF << (val
->port_vlan
* 4),
760 data
= val
->value
.i
<< (val
->port_vlan
* 4);
763 return rtl8366_smi_rmwr(smi
, RTL8366RB_LED_BLINKRATE_REG
, mask
, data
);
766 static int rtl8366rb_sw_get_port_led(struct switch_dev
*dev
,
767 const struct switch_attr
*attr
,
768 struct switch_val
*val
)
770 struct rtl8366_smi
*smi
= sw_to_rtl8366_smi(dev
);
773 if (val
->port_vlan
>= RTL8366RB_NUM_LEDGROUPS
)
776 rtl8366_smi_read_reg(smi
, RTL8366RB_LED_CTRL_REG
, &data
);
777 val
->value
.i
= (data
>> (val
->port_vlan
* 4)) & 0x000F;
782 static int rtl8366rb_sw_reset_port_mibs(struct switch_dev
*dev
,
783 const struct switch_attr
*attr
,
784 struct switch_val
*val
)
786 struct rtl8366_smi
*smi
= sw_to_rtl8366_smi(dev
);
788 if (val
->port_vlan
>= RTL8366RB_NUM_PORTS
)
791 return rtl8366_smi_rmwr(smi
, RTL8366RB_MIB_CTRL_REG
, 0,
792 RTL8366RB_MIB_CTRL_PORT_RESET(val
->port_vlan
));
795 static int rtl8366rb_sw_get_port_mib(struct switch_dev
*dev
,
796 const struct switch_attr
*attr
,
797 struct switch_val
*val
)
799 struct rtl8366_smi
*smi
= sw_to_rtl8366_smi(dev
);
801 unsigned long long counter
= 0;
802 char *buf
= smi
->buf
;
804 if (val
->port_vlan
>= RTL8366RB_NUM_PORTS
)
807 len
+= snprintf(buf
+ len
, sizeof(smi
->buf
) - len
,
808 "Port %d MIB counters\n",
811 for (i
= 0; i
< ARRAY_SIZE(rtl8366rb_mib_counters
); ++i
) {
812 len
+= snprintf(buf
+ len
, sizeof(smi
->buf
) - len
,
813 "%-36s: ", rtl8366rb_mib_counters
[i
].name
);
814 if (!rtl8366rb_get_mib_counter(smi
, i
, val
->port_vlan
, &counter
))
815 len
+= snprintf(buf
+ len
, sizeof(smi
->buf
) - len
,
818 len
+= snprintf(buf
+ len
, sizeof(smi
->buf
) - len
,
827 static int rtl8366rb_sw_get_vlan_ports(struct switch_dev
*dev
,
828 struct switch_val
*val
)
830 struct rtl8366_smi
*smi
= sw_to_rtl8366_smi(dev
);
831 struct switch_port
*port
;
832 struct rtl8366_vlan_4k vlan4k
;
835 if (val
->port_vlan
== 0 || val
->port_vlan
>= RTL8366RB_NUM_VLANS
)
838 rtl8366rb_get_vlan_4k(smi
, val
->port_vlan
, &vlan4k
);
840 port
= &val
->value
.ports
[0];
842 for (i
= 0; i
< RTL8366RB_NUM_PORTS
; i
++) {
843 if (!(vlan4k
.member
& BIT(i
)))
847 port
->flags
= (vlan4k
.untag
& BIT(i
)) ?
848 0 : BIT(SWITCH_PORT_FLAG_TAGGED
);
855 static int rtl8366rb_sw_set_vlan_ports(struct switch_dev
*dev
,
856 struct switch_val
*val
)
858 struct rtl8366_smi
*smi
= sw_to_rtl8366_smi(dev
);
859 struct switch_port
*port
;
864 if (val
->port_vlan
== 0 || val
->port_vlan
>= RTL8366RB_NUM_VLANS
)
867 port
= &val
->value
.ports
[0];
868 for (i
= 0; i
< val
->len
; i
++, port
++) {
869 member
|= BIT(port
->id
);
871 if (!(port
->flags
& BIT(SWITCH_PORT_FLAG_TAGGED
)))
872 untag
|= BIT(port
->id
);
875 return rtl8366_set_vlan(smi
, val
->port_vlan
, member
, untag
, 0);
878 static int rtl8366rb_sw_reset_switch(struct switch_dev
*dev
)
880 struct rtl8366_smi
*smi
= sw_to_rtl8366_smi(dev
);
883 err
= rtl8366rb_reset_chip(smi
);
887 err
= rtl8366rb_hw_init(smi
);
891 return rtl8366_reset_vlan(smi
);
894 static struct switch_attr rtl8366rb_globals
[] = {
896 .type
= SWITCH_TYPE_INT
,
897 .name
= "enable_vlan",
898 .description
= "Enable VLAN mode",
899 .set
= rtl8366rb_sw_set_vlan_enable
,
900 .get
= rtl8366rb_sw_get_vlan_enable
,
904 .type
= SWITCH_TYPE_INT
,
905 .name
= "enable_vlan4k",
906 .description
= "Enable VLAN 4K mode",
907 .set
= rtl8366rb_sw_set_vlan_enable
,
908 .get
= rtl8366rb_sw_get_vlan_enable
,
912 .type
= SWITCH_TYPE_NOVAL
,
913 .name
= "reset_mibs",
914 .description
= "Reset all MIB counters",
915 .set
= rtl8366rb_sw_reset_mibs
,
917 .type
= SWITCH_TYPE_INT
,
919 .description
= "Get/Set LED blinking rate (0 = 43ms, 1 = 84ms,"
920 " 2 = 120ms, 3 = 170ms, 4 = 340ms, 5 = 670ms)",
921 .set
= rtl8366rb_sw_set_blinkrate
,
922 .get
= rtl8366rb_sw_get_blinkrate
,
927 static struct switch_attr rtl8366rb_port
[] = {
929 .type
= SWITCH_TYPE_STRING
,
931 .description
= "Get port link information",
934 .get
= rtl8366rb_sw_get_port_link
,
936 .type
= SWITCH_TYPE_NOVAL
,
938 .description
= "Reset single port MIB counters",
939 .set
= rtl8366rb_sw_reset_port_mibs
,
941 .type
= SWITCH_TYPE_STRING
,
943 .description
= "Get MIB counters for port",
946 .get
= rtl8366rb_sw_get_port_mib
,
948 .type
= SWITCH_TYPE_INT
,
950 .description
= "Get/Set port group (0 - 3) led mode (0 - 15)",
952 .set
= rtl8366rb_sw_set_port_led
,
953 .get
= rtl8366rb_sw_get_port_led
,
957 static struct switch_attr rtl8366rb_vlan
[] = {
959 .type
= SWITCH_TYPE_STRING
,
961 .description
= "Get vlan information",
964 .get
= rtl8366rb_sw_get_vlan_info
,
969 static struct switch_dev rtl8366_switch_dev
= {
971 .cpu_port
= RTL8366RB_PORT_NUM_CPU
,
972 .ports
= RTL8366RB_NUM_PORTS
,
973 .vlans
= RTL8366RB_NUM_VLANS
,
975 .attr
= rtl8366rb_globals
,
976 .n_attr
= ARRAY_SIZE(rtl8366rb_globals
),
979 .attr
= rtl8366rb_port
,
980 .n_attr
= ARRAY_SIZE(rtl8366rb_port
),
983 .attr
= rtl8366rb_vlan
,
984 .n_attr
= ARRAY_SIZE(rtl8366rb_vlan
),
987 .get_vlan_ports
= rtl8366rb_sw_get_vlan_ports
,
988 .set_vlan_ports
= rtl8366rb_sw_set_vlan_ports
,
989 .get_port_pvid
= rtl8366_sw_get_port_pvid
,
990 .set_port_pvid
= rtl8366_sw_set_port_pvid
,
991 .reset_switch
= rtl8366rb_sw_reset_switch
,
994 static int rtl8366rb_switch_init(struct rtl8366_smi
*smi
)
996 struct switch_dev
*dev
= &smi
->sw_dev
;
999 memcpy(dev
, &rtl8366_switch_dev
, sizeof(struct switch_dev
));
1001 dev
->devname
= dev_name(smi
->parent
);
1003 err
= register_switch(dev
, NULL
);
1005 dev_err(smi
->parent
, "switch registration failed\n");
1010 static void rtl8366rb_switch_cleanup(struct rtl8366_smi
*smi
)
1012 unregister_switch(&smi
->sw_dev
);
1015 static int rtl8366rb_mii_read(struct mii_bus
*bus
, int addr
, int reg
)
1017 struct rtl8366_smi
*smi
= bus
->priv
;
1021 err
= rtl8366rb_read_phy_reg(smi
, addr
, 0, reg
, &val
);
1028 static int rtl8366rb_mii_write(struct mii_bus
*bus
, int addr
, int reg
, u16 val
)
1030 struct rtl8366_smi
*smi
= bus
->priv
;
1034 err
= rtl8366rb_write_phy_reg(smi
, addr
, 0, reg
, val
);
1036 (void) rtl8366rb_read_phy_reg(smi
, addr
, 0, reg
, &t
);
1041 static int rtl8366rb_mii_bus_match(struct mii_bus
*bus
)
1043 return (bus
->read
== rtl8366rb_mii_read
&&
1044 bus
->write
== rtl8366rb_mii_write
);
1047 static int rtl8366rb_setup(struct rtl8366_smi
*smi
)
1051 ret
= rtl8366rb_reset_chip(smi
);
1055 ret
= rtl8366rb_hw_init(smi
);
1059 static int rtl8366rb_detect(struct rtl8366_smi
*smi
)
1065 ret
= rtl8366_smi_read_reg(smi
, RTL8366RB_CHIP_ID_REG
, &chip_id
);
1067 dev_err(smi
->parent
, "unable to read chip id\n");
1072 case RTL8366RB_CHIP_ID_8366
:
1075 dev_err(smi
->parent
, "unknown chip id (%04x)\n", chip_id
);
1079 ret
= rtl8366_smi_read_reg(smi
, RTL8366RB_CHIP_VERSION_CTRL_REG
,
1082 dev_err(smi
->parent
, "unable to read chip version\n");
1086 dev_info(smi
->parent
, "RTL%04x ver. %u chip found\n",
1087 chip_id
, chip_ver
& RTL8366RB_CHIP_VERSION_MASK
);
1092 static struct rtl8366_smi_ops rtl8366rb_smi_ops
= {
1093 .detect
= rtl8366rb_detect
,
1094 .setup
= rtl8366rb_setup
,
1096 .mii_read
= rtl8366rb_mii_read
,
1097 .mii_write
= rtl8366rb_mii_write
,
1099 .get_vlan_mc
= rtl8366rb_get_vlan_mc
,
1100 .set_vlan_mc
= rtl8366rb_set_vlan_mc
,
1101 .get_vlan_4k
= rtl8366rb_get_vlan_4k
,
1102 .set_vlan_4k
= rtl8366rb_set_vlan_4k
,
1103 .get_mc_index
= rtl8366rb_get_mc_index
,
1104 .set_mc_index
= rtl8366rb_set_mc_index
,
1105 .get_mib_counter
= rtl8366rb_get_mib_counter
,
1108 static int __init
rtl8366rb_probe(struct platform_device
*pdev
)
1110 static int rtl8366_smi_version_printed
;
1111 struct rtl8366rb_platform_data
*pdata
;
1112 struct rtl8366_smi
*smi
;
1115 if (!rtl8366_smi_version_printed
++)
1116 printk(KERN_NOTICE RTL8366RB_DRIVER_DESC
1117 " version " RTL8366RB_DRIVER_VER
"\n");
1119 pdata
= pdev
->dev
.platform_data
;
1121 dev_err(&pdev
->dev
, "no platform data specified\n");
1126 smi
= rtl8366_smi_alloc(&pdev
->dev
);
1132 smi
->gpio_sda
= pdata
->gpio_sda
;
1133 smi
->gpio_sck
= pdata
->gpio_sck
;
1134 smi
->ops
= &rtl8366rb_smi_ops
;
1135 smi
->cpu_port
= RTL8366RB_PORT_NUM_CPU
;
1136 smi
->num_ports
= RTL8366RB_NUM_PORTS
;
1137 smi
->num_vlan_mc
= RTL8366RB_NUM_VLANS
;
1138 smi
->mib_counters
= rtl8366rb_mib_counters
;
1139 smi
->num_mib_counters
= ARRAY_SIZE(rtl8366rb_mib_counters
);
1141 err
= rtl8366_smi_init(smi
);
1145 platform_set_drvdata(pdev
, smi
);
1147 err
= rtl8366rb_switch_init(smi
);
1149 goto err_clear_drvdata
;
1154 platform_set_drvdata(pdev
, NULL
);
1155 rtl8366_smi_cleanup(smi
);
1162 static int rtl8366rb_phy_config_init(struct phy_device
*phydev
)
1164 if (!rtl8366rb_mii_bus_match(phydev
->bus
))
1170 static int rtl8366rb_phy_config_aneg(struct phy_device
*phydev
)
1175 static struct phy_driver rtl8366rb_phy_driver
= {
1176 .phy_id
= 0x001cc960,
1177 .name
= "Realtek RTL8366RB",
1178 .phy_id_mask
= 0x1ffffff0,
1179 .features
= PHY_GBIT_FEATURES
,
1180 .config_aneg
= rtl8366rb_phy_config_aneg
,
1181 .config_init
= rtl8366rb_phy_config_init
,
1182 .read_status
= genphy_read_status
,
1184 .owner
= THIS_MODULE
,
1188 static int __devexit
rtl8366rb_remove(struct platform_device
*pdev
)
1190 struct rtl8366_smi
*smi
= platform_get_drvdata(pdev
);
1193 rtl8366rb_switch_cleanup(smi
);
1194 platform_set_drvdata(pdev
, NULL
);
1195 rtl8366_smi_cleanup(smi
);
1202 static struct platform_driver rtl8366rb_driver
= {
1204 .name
= RTL8366RB_DRIVER_NAME
,
1205 .owner
= THIS_MODULE
,
1207 .probe
= rtl8366rb_probe
,
1208 .remove
= __devexit_p(rtl8366rb_remove
),
1211 static int __init
rtl8366rb_module_init(void)
1214 ret
= platform_driver_register(&rtl8366rb_driver
);
1218 ret
= phy_driver_register(&rtl8366rb_phy_driver
);
1220 goto err_platform_unregister
;
1224 err_platform_unregister
:
1225 platform_driver_unregister(&rtl8366rb_driver
);
1228 module_init(rtl8366rb_module_init
);
1230 static void __exit
rtl8366rb_module_exit(void)
1232 phy_driver_unregister(&rtl8366rb_phy_driver
);
1233 platform_driver_unregister(&rtl8366rb_driver
);
1235 module_exit(rtl8366rb_module_exit
);
1237 MODULE_DESCRIPTION(RTL8366RB_DRIVER_DESC
);
1238 MODULE_VERSION(RTL8366RB_DRIVER_VER
);
1239 MODULE_AUTHOR("Gabor Juhos <juhosg@openwrt.org>");
1240 MODULE_AUTHOR("Antti Seppälä <a.seppala@gmail.com>");
1241 MODULE_LICENSE("GPL v2");
1242 MODULE_ALIAS("platform:" RTL8366RB_DRIVER_NAME
);