Loading...
1// SPDX-License-Identifier: GPL-2.0
2/* Realtek SMI subdriver for the Realtek RTL8365MB-VC ethernet switch.
3 *
4 * Copyright (C) 2021 Alvin Šipraga <alsi@bang-olufsen.dk>
5 * Copyright (C) 2021 Michael Rasmussen <mir@bang-olufsen.dk>
6 *
7 * The RTL8365MB-VC is a 4+1 port 10/100/1000M switch controller. It includes 4
8 * integrated PHYs for the user facing ports, and an extension interface which
9 * can be connected to the CPU - or another PHY - via either MII, RMII, or
10 * RGMII. The switch is configured via the Realtek Simple Management Interface
11 * (SMI), which uses the MDIO/MDC lines.
12 *
13 * Below is a simplified block diagram of the chip and its relevant interfaces.
14 *
15 * .-----------------------------------.
16 * | |
17 * UTP <---------------> Giga PHY <-> PCS <-> P0 GMAC |
18 * UTP <---------------> Giga PHY <-> PCS <-> P1 GMAC |
19 * UTP <---------------> Giga PHY <-> PCS <-> P2 GMAC |
20 * UTP <---------------> Giga PHY <-> PCS <-> P3 GMAC |
21 * | |
22 * CPU/PHY <-MII/RMII/RGMII---> Extension <---> Extension |
23 * | interface 1 GMAC 1 |
24 * | |
25 * SMI driver/ <-MDC/SCL---> Management ~~~~~~~~~~~~~~ |
26 * EEPROM <-MDIO/SDA--> interface ~REALTEK ~~~~~ |
27 * | ~RTL8365MB ~~~ |
28 * | ~GXXXC TAIWAN~ |
29 * GPIO <--------------> Reset ~~~~~~~~~~~~~~ |
30 * | |
31 * Interrupt <----------> Link UP/DOWN events |
32 * controller | |
33 * '-----------------------------------'
34 *
35 * The driver uses DSA to integrate the 4 user and 1 extension ports into the
36 * kernel. Netdevices are created for the user ports, as are PHY devices for
37 * their integrated PHYs. The device tree firmware should also specify the link
38 * partner of the extension port - either via a fixed-link or other phy-handle.
39 * See the device tree bindings for more detailed information. Note that the
40 * driver has only been tested with a fixed-link, but in principle it should not
41 * matter.
42 *
43 * NOTE: Currently, only the RGMII interface is implemented in this driver.
44 *
45 * The interrupt line is asserted on link UP/DOWN events. The driver creates a
46 * custom irqchip to handle this interrupt and demultiplex the events by reading
47 * the status registers via SMI. Interrupts are then propagated to the relevant
48 * PHY device.
49 *
50 * The EEPROM contains initial register values which the chip will read over I2C
51 * upon hardware reset. It is also possible to omit the EEPROM. In both cases,
52 * the driver will manually reprogram some registers using jam tables to reach
53 * an initial state defined by the vendor driver.
54 *
55 * This Linux driver is written based on an OS-agnostic vendor driver from
56 * Realtek. The reference GPL-licensed sources can be found in the OpenWrt
57 * source tree under the name rtl8367c. The vendor driver claims to support a
58 * number of similar switch controllers from Realtek, but the only hardware we
59 * have is the RTL8365MB-VC. Moreover, there does not seem to be any chip under
60 * the name RTL8367C. Although one wishes that the 'C' stood for some kind of
61 * common hardware revision, there exist examples of chips with the suffix -VC
62 * which are explicitly not supported by the rtl8367c driver and which instead
63 * require the rtl8367d vendor driver. With all this uncertainty, the driver has
64 * been modestly named rtl8365mb. Future implementors may wish to rename things
65 * accordingly.
66 *
67 * In the same family of chips, some carry up to 8 user ports and up to 2
68 * extension ports. Where possible this driver tries to make things generic, but
69 * more work must be done to support these configurations. According to
70 * documentation from Realtek, the family should include the following chips:
71 *
72 * - RTL8363NB
73 * - RTL8363NB-VB
74 * - RTL8363SC
75 * - RTL8363SC-VB
76 * - RTL8364NB
77 * - RTL8364NB-VB
78 * - RTL8365MB-VC
79 * - RTL8366SC
80 * - RTL8367RB-VB
81 * - RTL8367SB
82 * - RTL8367S
83 * - RTL8370MB
84 * - RTL8310SR
85 *
86 * Some of the register logic for these additional chips has been skipped over
87 * while implementing this driver. It is therefore not possible to assume that
88 * things will work out-of-the-box for other chips, and a careful review of the
89 * vendor driver may be needed to expand support. The RTL8365MB-VC seems to be
90 * one of the simpler chips.
91 */
92
93#include <linux/bitfield.h>
94#include <linux/bitops.h>
95#include <linux/interrupt.h>
96#include <linux/irqdomain.h>
97#include <linux/mutex.h>
98#include <linux/of_irq.h>
99#include <linux/regmap.h>
100#include <linux/if_bridge.h>
101#include <linux/if_vlan.h>
102
103#include "realtek.h"
104
105/* Family-specific data and limits */
106#define RTL8365MB_PHYADDRMAX 7
107#define RTL8365MB_NUM_PHYREGS 32
108#define RTL8365MB_PHYREGMAX (RTL8365MB_NUM_PHYREGS - 1)
109#define RTL8365MB_MAX_NUM_PORTS 11
110#define RTL8365MB_MAX_NUM_EXTINTS 3
111#define RTL8365MB_LEARN_LIMIT_MAX 2112
112
113/* Chip identification registers */
114#define RTL8365MB_CHIP_ID_REG 0x1300
115
116#define RTL8365MB_CHIP_VER_REG 0x1301
117
118#define RTL8365MB_MAGIC_REG 0x13C2
119#define RTL8365MB_MAGIC_VALUE 0x0249
120
121/* Chip reset register */
122#define RTL8365MB_CHIP_RESET_REG 0x1322
123#define RTL8365MB_CHIP_RESET_SW_MASK 0x0002
124#define RTL8365MB_CHIP_RESET_HW_MASK 0x0001
125
126/* Interrupt polarity register */
127#define RTL8365MB_INTR_POLARITY_REG 0x1100
128#define RTL8365MB_INTR_POLARITY_MASK 0x0001
129#define RTL8365MB_INTR_POLARITY_HIGH 0
130#define RTL8365MB_INTR_POLARITY_LOW 1
131
132/* Interrupt control/status register - enable/check specific interrupt types */
133#define RTL8365MB_INTR_CTRL_REG 0x1101
134#define RTL8365MB_INTR_STATUS_REG 0x1102
135#define RTL8365MB_INTR_SLIENT_START_2_MASK 0x1000
136#define RTL8365MB_INTR_SLIENT_START_MASK 0x0800
137#define RTL8365MB_INTR_ACL_ACTION_MASK 0x0200
138#define RTL8365MB_INTR_CABLE_DIAG_FIN_MASK 0x0100
139#define RTL8365MB_INTR_INTERRUPT_8051_MASK 0x0080
140#define RTL8365MB_INTR_LOOP_DETECTION_MASK 0x0040
141#define RTL8365MB_INTR_GREEN_TIMER_MASK 0x0020
142#define RTL8365MB_INTR_SPECIAL_CONGEST_MASK 0x0010
143#define RTL8365MB_INTR_SPEED_CHANGE_MASK 0x0008
144#define RTL8365MB_INTR_LEARN_OVER_MASK 0x0004
145#define RTL8365MB_INTR_METER_EXCEEDED_MASK 0x0002
146#define RTL8365MB_INTR_LINK_CHANGE_MASK 0x0001
147#define RTL8365MB_INTR_ALL_MASK \
148 (RTL8365MB_INTR_SLIENT_START_2_MASK | \
149 RTL8365MB_INTR_SLIENT_START_MASK | \
150 RTL8365MB_INTR_ACL_ACTION_MASK | \
151 RTL8365MB_INTR_CABLE_DIAG_FIN_MASK | \
152 RTL8365MB_INTR_INTERRUPT_8051_MASK | \
153 RTL8365MB_INTR_LOOP_DETECTION_MASK | \
154 RTL8365MB_INTR_GREEN_TIMER_MASK | \
155 RTL8365MB_INTR_SPECIAL_CONGEST_MASK | \
156 RTL8365MB_INTR_SPEED_CHANGE_MASK | \
157 RTL8365MB_INTR_LEARN_OVER_MASK | \
158 RTL8365MB_INTR_METER_EXCEEDED_MASK | \
159 RTL8365MB_INTR_LINK_CHANGE_MASK)
160
161/* Per-port interrupt type status registers */
162#define RTL8365MB_PORT_LINKDOWN_IND_REG 0x1106
163#define RTL8365MB_PORT_LINKDOWN_IND_MASK 0x07FF
164
165#define RTL8365MB_PORT_LINKUP_IND_REG 0x1107
166#define RTL8365MB_PORT_LINKUP_IND_MASK 0x07FF
167
168/* PHY indirect access registers */
169#define RTL8365MB_INDIRECT_ACCESS_CTRL_REG 0x1F00
170#define RTL8365MB_INDIRECT_ACCESS_CTRL_RW_MASK 0x0002
171#define RTL8365MB_INDIRECT_ACCESS_CTRL_RW_READ 0
172#define RTL8365MB_INDIRECT_ACCESS_CTRL_RW_WRITE 1
173#define RTL8365MB_INDIRECT_ACCESS_CTRL_CMD_MASK 0x0001
174#define RTL8365MB_INDIRECT_ACCESS_CTRL_CMD_VALUE 1
175#define RTL8365MB_INDIRECT_ACCESS_STATUS_REG 0x1F01
176#define RTL8365MB_INDIRECT_ACCESS_ADDRESS_REG 0x1F02
177#define RTL8365MB_INDIRECT_ACCESS_ADDRESS_OCPADR_5_1_MASK GENMASK(4, 0)
178#define RTL8365MB_INDIRECT_ACCESS_ADDRESS_PHYNUM_MASK GENMASK(7, 5)
179#define RTL8365MB_INDIRECT_ACCESS_ADDRESS_OCPADR_9_6_MASK GENMASK(11, 8)
180#define RTL8365MB_PHY_BASE 0x2000
181#define RTL8365MB_INDIRECT_ACCESS_WRITE_DATA_REG 0x1F03
182#define RTL8365MB_INDIRECT_ACCESS_READ_DATA_REG 0x1F04
183
184/* PHY OCP address prefix register */
185#define RTL8365MB_GPHY_OCP_MSB_0_REG 0x1D15
186#define RTL8365MB_GPHY_OCP_MSB_0_CFG_CPU_OCPADR_MASK 0x0FC0
187#define RTL8365MB_PHY_OCP_ADDR_PREFIX_MASK 0xFC00
188
189/* The PHY OCP addresses of PHY registers 0~31 start here */
190#define RTL8365MB_PHY_OCP_ADDR_PHYREG_BASE 0xA400
191
192/* External interface port mode values - used in DIGITAL_INTERFACE_SELECT */
193#define RTL8365MB_EXT_PORT_MODE_DISABLE 0
194#define RTL8365MB_EXT_PORT_MODE_RGMII 1
195#define RTL8365MB_EXT_PORT_MODE_MII_MAC 2
196#define RTL8365MB_EXT_PORT_MODE_MII_PHY 3
197#define RTL8365MB_EXT_PORT_MODE_TMII_MAC 4
198#define RTL8365MB_EXT_PORT_MODE_TMII_PHY 5
199#define RTL8365MB_EXT_PORT_MODE_GMII 6
200#define RTL8365MB_EXT_PORT_MODE_RMII_MAC 7
201#define RTL8365MB_EXT_PORT_MODE_RMII_PHY 8
202#define RTL8365MB_EXT_PORT_MODE_SGMII 9
203#define RTL8365MB_EXT_PORT_MODE_HSGMII 10
204#define RTL8365MB_EXT_PORT_MODE_1000X_100FX 11
205#define RTL8365MB_EXT_PORT_MODE_1000X 12
206#define RTL8365MB_EXT_PORT_MODE_100FX 13
207
208/* External interface mode configuration registers 0~1 */
209#define RTL8365MB_DIGITAL_INTERFACE_SELECT_REG0 0x1305 /* EXT1 */
210#define RTL8365MB_DIGITAL_INTERFACE_SELECT_REG1 0x13C3 /* EXT2 */
211#define RTL8365MB_DIGITAL_INTERFACE_SELECT_REG(_extint) \
212 ((_extint) == 1 ? RTL8365MB_DIGITAL_INTERFACE_SELECT_REG0 : \
213 (_extint) == 2 ? RTL8365MB_DIGITAL_INTERFACE_SELECT_REG1 : \
214 0x0)
215#define RTL8365MB_DIGITAL_INTERFACE_SELECT_MODE_MASK(_extint) \
216 (0xF << (((_extint) % 2)))
217#define RTL8365MB_DIGITAL_INTERFACE_SELECT_MODE_OFFSET(_extint) \
218 (((_extint) % 2) * 4)
219
220/* External interface RGMII TX/RX delay configuration registers 0~2 */
221#define RTL8365MB_EXT_RGMXF_REG0 0x1306 /* EXT0 */
222#define RTL8365MB_EXT_RGMXF_REG1 0x1307 /* EXT1 */
223#define RTL8365MB_EXT_RGMXF_REG2 0x13C5 /* EXT2 */
224#define RTL8365MB_EXT_RGMXF_REG(_extint) \
225 ((_extint) == 0 ? RTL8365MB_EXT_RGMXF_REG0 : \
226 (_extint) == 1 ? RTL8365MB_EXT_RGMXF_REG1 : \
227 (_extint) == 2 ? RTL8365MB_EXT_RGMXF_REG2 : \
228 0x0)
229#define RTL8365MB_EXT_RGMXF_RXDELAY_MASK 0x0007
230#define RTL8365MB_EXT_RGMXF_TXDELAY_MASK 0x0008
231
232/* External interface port speed values - used in DIGITAL_INTERFACE_FORCE */
233#define RTL8365MB_PORT_SPEED_10M 0
234#define RTL8365MB_PORT_SPEED_100M 1
235#define RTL8365MB_PORT_SPEED_1000M 2
236
237/* External interface force configuration registers 0~2 */
238#define RTL8365MB_DIGITAL_INTERFACE_FORCE_REG0 0x1310 /* EXT0 */
239#define RTL8365MB_DIGITAL_INTERFACE_FORCE_REG1 0x1311 /* EXT1 */
240#define RTL8365MB_DIGITAL_INTERFACE_FORCE_REG2 0x13C4 /* EXT2 */
241#define RTL8365MB_DIGITAL_INTERFACE_FORCE_REG(_extint) \
242 ((_extint) == 0 ? RTL8365MB_DIGITAL_INTERFACE_FORCE_REG0 : \
243 (_extint) == 1 ? RTL8365MB_DIGITAL_INTERFACE_FORCE_REG1 : \
244 (_extint) == 2 ? RTL8365MB_DIGITAL_INTERFACE_FORCE_REG2 : \
245 0x0)
246#define RTL8365MB_DIGITAL_INTERFACE_FORCE_EN_MASK 0x1000
247#define RTL8365MB_DIGITAL_INTERFACE_FORCE_NWAY_MASK 0x0080
248#define RTL8365MB_DIGITAL_INTERFACE_FORCE_TXPAUSE_MASK 0x0040
249#define RTL8365MB_DIGITAL_INTERFACE_FORCE_RXPAUSE_MASK 0x0020
250#define RTL8365MB_DIGITAL_INTERFACE_FORCE_LINK_MASK 0x0010
251#define RTL8365MB_DIGITAL_INTERFACE_FORCE_DUPLEX_MASK 0x0004
252#define RTL8365MB_DIGITAL_INTERFACE_FORCE_SPEED_MASK 0x0003
253
254/* CPU port mask register - controls which ports are treated as CPU ports */
255#define RTL8365MB_CPU_PORT_MASK_REG 0x1219
256#define RTL8365MB_CPU_PORT_MASK_MASK 0x07FF
257
258/* CPU control register */
259#define RTL8365MB_CPU_CTRL_REG 0x121A
260#define RTL8365MB_CPU_CTRL_TRAP_PORT_EXT_MASK 0x0400
261#define RTL8365MB_CPU_CTRL_TAG_FORMAT_MASK 0x0200
262#define RTL8365MB_CPU_CTRL_RXBYTECOUNT_MASK 0x0080
263#define RTL8365MB_CPU_CTRL_TAG_POSITION_MASK 0x0040
264#define RTL8365MB_CPU_CTRL_TRAP_PORT_MASK 0x0038
265#define RTL8365MB_CPU_CTRL_INSERTMODE_MASK 0x0006
266#define RTL8365MB_CPU_CTRL_EN_MASK 0x0001
267
268/* Maximum packet length register */
269#define RTL8365MB_CFG0_MAX_LEN_REG 0x088C
270#define RTL8365MB_CFG0_MAX_LEN_MASK 0x3FFF
271#define RTL8365MB_CFG0_MAX_LEN_MAX 0x3FFF
272
273/* Port learning limit registers */
274#define RTL8365MB_LUT_PORT_LEARN_LIMIT_BASE 0x0A20
275#define RTL8365MB_LUT_PORT_LEARN_LIMIT_REG(_physport) \
276 (RTL8365MB_LUT_PORT_LEARN_LIMIT_BASE + (_physport))
277
278/* Port isolation (forwarding mask) registers */
279#define RTL8365MB_PORT_ISOLATION_REG_BASE 0x08A2
280#define RTL8365MB_PORT_ISOLATION_REG(_physport) \
281 (RTL8365MB_PORT_ISOLATION_REG_BASE + (_physport))
282#define RTL8365MB_PORT_ISOLATION_MASK 0x07FF
283
284/* MSTP port state registers - indexed by tree instance */
285#define RTL8365MB_MSTI_CTRL_BASE 0x0A00
286#define RTL8365MB_MSTI_CTRL_REG(_msti, _physport) \
287 (RTL8365MB_MSTI_CTRL_BASE + ((_msti) << 1) + ((_physport) >> 3))
288#define RTL8365MB_MSTI_CTRL_PORT_STATE_OFFSET(_physport) ((_physport) << 1)
289#define RTL8365MB_MSTI_CTRL_PORT_STATE_MASK(_physport) \
290 (0x3 << RTL8365MB_MSTI_CTRL_PORT_STATE_OFFSET((_physport)))
291
292/* MIB counter value registers */
293#define RTL8365MB_MIB_COUNTER_BASE 0x1000
294#define RTL8365MB_MIB_COUNTER_REG(_x) (RTL8365MB_MIB_COUNTER_BASE + (_x))
295
296/* MIB counter address register */
297#define RTL8365MB_MIB_ADDRESS_REG 0x1004
298#define RTL8365MB_MIB_ADDRESS_PORT_OFFSET 0x007C
299#define RTL8365MB_MIB_ADDRESS(_p, _x) \
300 (((RTL8365MB_MIB_ADDRESS_PORT_OFFSET) * (_p) + (_x)) >> 2)
301
302#define RTL8365MB_MIB_CTRL0_REG 0x1005
303#define RTL8365MB_MIB_CTRL0_RESET_MASK 0x0002
304#define RTL8365MB_MIB_CTRL0_BUSY_MASK 0x0001
305
306/* The DSA callback .get_stats64 runs in atomic context, so we are not allowed
307 * to block. On the other hand, accessing MIB counters absolutely requires us to
308 * block. The solution is thus to schedule work which polls the MIB counters
309 * asynchronously and updates some private data, which the callback can then
310 * fetch atomically. Three seconds should be a good enough polling interval.
311 */
312#define RTL8365MB_STATS_INTERVAL_JIFFIES (3 * HZ)
313
314enum rtl8365mb_mib_counter_index {
315 RTL8365MB_MIB_ifInOctets,
316 RTL8365MB_MIB_dot3StatsFCSErrors,
317 RTL8365MB_MIB_dot3StatsSymbolErrors,
318 RTL8365MB_MIB_dot3InPauseFrames,
319 RTL8365MB_MIB_dot3ControlInUnknownOpcodes,
320 RTL8365MB_MIB_etherStatsFragments,
321 RTL8365MB_MIB_etherStatsJabbers,
322 RTL8365MB_MIB_ifInUcastPkts,
323 RTL8365MB_MIB_etherStatsDropEvents,
324 RTL8365MB_MIB_ifInMulticastPkts,
325 RTL8365MB_MIB_ifInBroadcastPkts,
326 RTL8365MB_MIB_inMldChecksumError,
327 RTL8365MB_MIB_inIgmpChecksumError,
328 RTL8365MB_MIB_inMldSpecificQuery,
329 RTL8365MB_MIB_inMldGeneralQuery,
330 RTL8365MB_MIB_inIgmpSpecificQuery,
331 RTL8365MB_MIB_inIgmpGeneralQuery,
332 RTL8365MB_MIB_inMldLeaves,
333 RTL8365MB_MIB_inIgmpLeaves,
334 RTL8365MB_MIB_etherStatsOctets,
335 RTL8365MB_MIB_etherStatsUnderSizePkts,
336 RTL8365MB_MIB_etherOversizeStats,
337 RTL8365MB_MIB_etherStatsPkts64Octets,
338 RTL8365MB_MIB_etherStatsPkts65to127Octets,
339 RTL8365MB_MIB_etherStatsPkts128to255Octets,
340 RTL8365MB_MIB_etherStatsPkts256to511Octets,
341 RTL8365MB_MIB_etherStatsPkts512to1023Octets,
342 RTL8365MB_MIB_etherStatsPkts1024to1518Octets,
343 RTL8365MB_MIB_ifOutOctets,
344 RTL8365MB_MIB_dot3StatsSingleCollisionFrames,
345 RTL8365MB_MIB_dot3StatsMultipleCollisionFrames,
346 RTL8365MB_MIB_dot3StatsDeferredTransmissions,
347 RTL8365MB_MIB_dot3StatsLateCollisions,
348 RTL8365MB_MIB_etherStatsCollisions,
349 RTL8365MB_MIB_dot3StatsExcessiveCollisions,
350 RTL8365MB_MIB_dot3OutPauseFrames,
351 RTL8365MB_MIB_ifOutDiscards,
352 RTL8365MB_MIB_dot1dTpPortInDiscards,
353 RTL8365MB_MIB_ifOutUcastPkts,
354 RTL8365MB_MIB_ifOutMulticastPkts,
355 RTL8365MB_MIB_ifOutBroadcastPkts,
356 RTL8365MB_MIB_outOampduPkts,
357 RTL8365MB_MIB_inOampduPkts,
358 RTL8365MB_MIB_inIgmpJoinsSuccess,
359 RTL8365MB_MIB_inIgmpJoinsFail,
360 RTL8365MB_MIB_inMldJoinsSuccess,
361 RTL8365MB_MIB_inMldJoinsFail,
362 RTL8365MB_MIB_inReportSuppressionDrop,
363 RTL8365MB_MIB_inLeaveSuppressionDrop,
364 RTL8365MB_MIB_outIgmpReports,
365 RTL8365MB_MIB_outIgmpLeaves,
366 RTL8365MB_MIB_outIgmpGeneralQuery,
367 RTL8365MB_MIB_outIgmpSpecificQuery,
368 RTL8365MB_MIB_outMldReports,
369 RTL8365MB_MIB_outMldLeaves,
370 RTL8365MB_MIB_outMldGeneralQuery,
371 RTL8365MB_MIB_outMldSpecificQuery,
372 RTL8365MB_MIB_inKnownMulticastPkts,
373 RTL8365MB_MIB_END,
374};
375
376struct rtl8365mb_mib_counter {
377 u32 offset;
378 u32 length;
379 const char *name;
380};
381
382#define RTL8365MB_MAKE_MIB_COUNTER(_offset, _length, _name) \
383 [RTL8365MB_MIB_ ## _name] = { _offset, _length, #_name }
384
385static struct rtl8365mb_mib_counter rtl8365mb_mib_counters[] = {
386 RTL8365MB_MAKE_MIB_COUNTER(0, 4, ifInOctets),
387 RTL8365MB_MAKE_MIB_COUNTER(4, 2, dot3StatsFCSErrors),
388 RTL8365MB_MAKE_MIB_COUNTER(6, 2, dot3StatsSymbolErrors),
389 RTL8365MB_MAKE_MIB_COUNTER(8, 2, dot3InPauseFrames),
390 RTL8365MB_MAKE_MIB_COUNTER(10, 2, dot3ControlInUnknownOpcodes),
391 RTL8365MB_MAKE_MIB_COUNTER(12, 2, etherStatsFragments),
392 RTL8365MB_MAKE_MIB_COUNTER(14, 2, etherStatsJabbers),
393 RTL8365MB_MAKE_MIB_COUNTER(16, 2, ifInUcastPkts),
394 RTL8365MB_MAKE_MIB_COUNTER(18, 2, etherStatsDropEvents),
395 RTL8365MB_MAKE_MIB_COUNTER(20, 2, ifInMulticastPkts),
396 RTL8365MB_MAKE_MIB_COUNTER(22, 2, ifInBroadcastPkts),
397 RTL8365MB_MAKE_MIB_COUNTER(24, 2, inMldChecksumError),
398 RTL8365MB_MAKE_MIB_COUNTER(26, 2, inIgmpChecksumError),
399 RTL8365MB_MAKE_MIB_COUNTER(28, 2, inMldSpecificQuery),
400 RTL8365MB_MAKE_MIB_COUNTER(30, 2, inMldGeneralQuery),
401 RTL8365MB_MAKE_MIB_COUNTER(32, 2, inIgmpSpecificQuery),
402 RTL8365MB_MAKE_MIB_COUNTER(34, 2, inIgmpGeneralQuery),
403 RTL8365MB_MAKE_MIB_COUNTER(36, 2, inMldLeaves),
404 RTL8365MB_MAKE_MIB_COUNTER(38, 2, inIgmpLeaves),
405 RTL8365MB_MAKE_MIB_COUNTER(40, 4, etherStatsOctets),
406 RTL8365MB_MAKE_MIB_COUNTER(44, 2, etherStatsUnderSizePkts),
407 RTL8365MB_MAKE_MIB_COUNTER(46, 2, etherOversizeStats),
408 RTL8365MB_MAKE_MIB_COUNTER(48, 2, etherStatsPkts64Octets),
409 RTL8365MB_MAKE_MIB_COUNTER(50, 2, etherStatsPkts65to127Octets),
410 RTL8365MB_MAKE_MIB_COUNTER(52, 2, etherStatsPkts128to255Octets),
411 RTL8365MB_MAKE_MIB_COUNTER(54, 2, etherStatsPkts256to511Octets),
412 RTL8365MB_MAKE_MIB_COUNTER(56, 2, etherStatsPkts512to1023Octets),
413 RTL8365MB_MAKE_MIB_COUNTER(58, 2, etherStatsPkts1024to1518Octets),
414 RTL8365MB_MAKE_MIB_COUNTER(60, 4, ifOutOctets),
415 RTL8365MB_MAKE_MIB_COUNTER(64, 2, dot3StatsSingleCollisionFrames),
416 RTL8365MB_MAKE_MIB_COUNTER(66, 2, dot3StatsMultipleCollisionFrames),
417 RTL8365MB_MAKE_MIB_COUNTER(68, 2, dot3StatsDeferredTransmissions),
418 RTL8365MB_MAKE_MIB_COUNTER(70, 2, dot3StatsLateCollisions),
419 RTL8365MB_MAKE_MIB_COUNTER(72, 2, etherStatsCollisions),
420 RTL8365MB_MAKE_MIB_COUNTER(74, 2, dot3StatsExcessiveCollisions),
421 RTL8365MB_MAKE_MIB_COUNTER(76, 2, dot3OutPauseFrames),
422 RTL8365MB_MAKE_MIB_COUNTER(78, 2, ifOutDiscards),
423 RTL8365MB_MAKE_MIB_COUNTER(80, 2, dot1dTpPortInDiscards),
424 RTL8365MB_MAKE_MIB_COUNTER(82, 2, ifOutUcastPkts),
425 RTL8365MB_MAKE_MIB_COUNTER(84, 2, ifOutMulticastPkts),
426 RTL8365MB_MAKE_MIB_COUNTER(86, 2, ifOutBroadcastPkts),
427 RTL8365MB_MAKE_MIB_COUNTER(88, 2, outOampduPkts),
428 RTL8365MB_MAKE_MIB_COUNTER(90, 2, inOampduPkts),
429 RTL8365MB_MAKE_MIB_COUNTER(92, 4, inIgmpJoinsSuccess),
430 RTL8365MB_MAKE_MIB_COUNTER(96, 2, inIgmpJoinsFail),
431 RTL8365MB_MAKE_MIB_COUNTER(98, 2, inMldJoinsSuccess),
432 RTL8365MB_MAKE_MIB_COUNTER(100, 2, inMldJoinsFail),
433 RTL8365MB_MAKE_MIB_COUNTER(102, 2, inReportSuppressionDrop),
434 RTL8365MB_MAKE_MIB_COUNTER(104, 2, inLeaveSuppressionDrop),
435 RTL8365MB_MAKE_MIB_COUNTER(106, 2, outIgmpReports),
436 RTL8365MB_MAKE_MIB_COUNTER(108, 2, outIgmpLeaves),
437 RTL8365MB_MAKE_MIB_COUNTER(110, 2, outIgmpGeneralQuery),
438 RTL8365MB_MAKE_MIB_COUNTER(112, 2, outIgmpSpecificQuery),
439 RTL8365MB_MAKE_MIB_COUNTER(114, 2, outMldReports),
440 RTL8365MB_MAKE_MIB_COUNTER(116, 2, outMldLeaves),
441 RTL8365MB_MAKE_MIB_COUNTER(118, 2, outMldGeneralQuery),
442 RTL8365MB_MAKE_MIB_COUNTER(120, 2, outMldSpecificQuery),
443 RTL8365MB_MAKE_MIB_COUNTER(122, 2, inKnownMulticastPkts),
444};
445
446static_assert(ARRAY_SIZE(rtl8365mb_mib_counters) == RTL8365MB_MIB_END);
447
448struct rtl8365mb_jam_tbl_entry {
449 u16 reg;
450 u16 val;
451};
452
453/* Lifted from the vendor driver sources */
454static const struct rtl8365mb_jam_tbl_entry rtl8365mb_init_jam_8365mb_vc[] = {
455 { 0x13EB, 0x15BB }, { 0x1303, 0x06D6 }, { 0x1304, 0x0700 },
456 { 0x13E2, 0x003F }, { 0x13F9, 0x0090 }, { 0x121E, 0x03CA },
457 { 0x1233, 0x0352 }, { 0x1237, 0x00A0 }, { 0x123A, 0x0030 },
458 { 0x1239, 0x0084 }, { 0x0301, 0x1000 }, { 0x1349, 0x001F },
459 { 0x18E0, 0x4004 }, { 0x122B, 0x241C }, { 0x1305, 0xC000 },
460 { 0x13F0, 0x0000 },
461};
462
463static const struct rtl8365mb_jam_tbl_entry rtl8365mb_init_jam_common[] = {
464 { 0x1200, 0x7FCB }, { 0x0884, 0x0003 }, { 0x06EB, 0x0001 },
465 { 0x03Fa, 0x0007 }, { 0x08C8, 0x00C0 }, { 0x0A30, 0x020E },
466 { 0x0800, 0x0000 }, { 0x0802, 0x0000 }, { 0x09DA, 0x0013 },
467 { 0x1D32, 0x0002 },
468};
469
470enum rtl8365mb_phy_interface_mode {
471 RTL8365MB_PHY_INTERFACE_MODE_INVAL = 0,
472 RTL8365MB_PHY_INTERFACE_MODE_INTERNAL = BIT(0),
473 RTL8365MB_PHY_INTERFACE_MODE_MII = BIT(1),
474 RTL8365MB_PHY_INTERFACE_MODE_TMII = BIT(2),
475 RTL8365MB_PHY_INTERFACE_MODE_RMII = BIT(3),
476 RTL8365MB_PHY_INTERFACE_MODE_RGMII = BIT(4),
477 RTL8365MB_PHY_INTERFACE_MODE_SGMII = BIT(5),
478 RTL8365MB_PHY_INTERFACE_MODE_HSGMII = BIT(6),
479};
480
481/**
482 * struct rtl8365mb_extint - external interface info
483 * @port: the port with an external interface
484 * @id: the external interface ID, which is either 0, 1, or 2
485 * @supported_interfaces: a bitmask of supported PHY interface modes
486 *
487 * Represents a mapping: port -> { id, supported_interfaces }. To be embedded
488 * in &struct rtl8365mb_chip_info for every port with an external interface.
489 */
490struct rtl8365mb_extint {
491 int port;
492 int id;
493 unsigned int supported_interfaces;
494};
495
496/**
497 * struct rtl8365mb_chip_info - static chip-specific info
498 * @name: human-readable chip name
499 * @chip_id: chip identifier
500 * @chip_ver: chip silicon revision
501 * @extints: available external interfaces
502 * @jam_table: chip-specific initialization jam table
503 * @jam_size: size of the chip's jam table
504 *
505 * These data are specific to a given chip in the family of switches supported
506 * by this driver. When adding support for another chip in the family, a new
507 * chip info should be added to the rtl8365mb_chip_infos array.
508 */
509struct rtl8365mb_chip_info {
510 const char *name;
511 u32 chip_id;
512 u32 chip_ver;
513 const struct rtl8365mb_extint extints[RTL8365MB_MAX_NUM_EXTINTS];
514 const struct rtl8365mb_jam_tbl_entry *jam_table;
515 size_t jam_size;
516};
517
518/* Chip info for each supported switch in the family */
519#define PHY_INTF(_mode) (RTL8365MB_PHY_INTERFACE_MODE_ ## _mode)
520static const struct rtl8365mb_chip_info rtl8365mb_chip_infos[] = {
521 {
522 .name = "RTL8365MB-VC",
523 .chip_id = 0x6367,
524 .chip_ver = 0x0040,
525 .extints = {
526 { 6, 1, PHY_INTF(MII) | PHY_INTF(TMII) |
527 PHY_INTF(RMII) | PHY_INTF(RGMII) },
528 },
529 .jam_table = rtl8365mb_init_jam_8365mb_vc,
530 .jam_size = ARRAY_SIZE(rtl8365mb_init_jam_8365mb_vc),
531 },
532 {
533 .name = "RTL8367S",
534 .chip_id = 0x6367,
535 .chip_ver = 0x00A0,
536 .extints = {
537 { 6, 1, PHY_INTF(SGMII) | PHY_INTF(HSGMII) },
538 { 7, 2, PHY_INTF(MII) | PHY_INTF(TMII) |
539 PHY_INTF(RMII) | PHY_INTF(RGMII) },
540 },
541 .jam_table = rtl8365mb_init_jam_8365mb_vc,
542 .jam_size = ARRAY_SIZE(rtl8365mb_init_jam_8365mb_vc),
543 },
544 {
545 .name = "RTL8367RB-VB",
546 .chip_id = 0x6367,
547 .chip_ver = 0x0020,
548 .extints = {
549 { 6, 1, PHY_INTF(MII) | PHY_INTF(TMII) |
550 PHY_INTF(RMII) | PHY_INTF(RGMII) },
551 { 7, 2, PHY_INTF(MII) | PHY_INTF(TMII) |
552 PHY_INTF(RMII) | PHY_INTF(RGMII) },
553 },
554 .jam_table = rtl8365mb_init_jam_8365mb_vc,
555 .jam_size = ARRAY_SIZE(rtl8365mb_init_jam_8365mb_vc),
556 },
557};
558
559enum rtl8365mb_stp_state {
560 RTL8365MB_STP_STATE_DISABLED = 0,
561 RTL8365MB_STP_STATE_BLOCKING = 1,
562 RTL8365MB_STP_STATE_LEARNING = 2,
563 RTL8365MB_STP_STATE_FORWARDING = 3,
564};
565
566enum rtl8365mb_cpu_insert {
567 RTL8365MB_CPU_INSERT_TO_ALL = 0,
568 RTL8365MB_CPU_INSERT_TO_TRAPPING = 1,
569 RTL8365MB_CPU_INSERT_TO_NONE = 2,
570};
571
572enum rtl8365mb_cpu_position {
573 RTL8365MB_CPU_POS_AFTER_SA = 0,
574 RTL8365MB_CPU_POS_BEFORE_CRC = 1,
575};
576
577enum rtl8365mb_cpu_format {
578 RTL8365MB_CPU_FORMAT_8BYTES = 0,
579 RTL8365MB_CPU_FORMAT_4BYTES = 1,
580};
581
582enum rtl8365mb_cpu_rxlen {
583 RTL8365MB_CPU_RXLEN_72BYTES = 0,
584 RTL8365MB_CPU_RXLEN_64BYTES = 1,
585};
586
587/**
588 * struct rtl8365mb_cpu - CPU port configuration
589 * @enable: enable/disable hardware insertion of CPU tag in switch->CPU frames
590 * @mask: port mask of ports that parse should parse CPU tags
591 * @trap_port: forward trapped frames to this port
592 * @insert: CPU tag insertion mode in switch->CPU frames
593 * @position: position of CPU tag in frame
594 * @rx_length: minimum CPU RX length
595 * @format: CPU tag format
596 *
597 * Represents the CPU tagging and CPU port configuration of the switch. These
598 * settings are configurable at runtime.
599 */
600struct rtl8365mb_cpu {
601 bool enable;
602 u32 mask;
603 u32 trap_port;
604 enum rtl8365mb_cpu_insert insert;
605 enum rtl8365mb_cpu_position position;
606 enum rtl8365mb_cpu_rxlen rx_length;
607 enum rtl8365mb_cpu_format format;
608};
609
610/**
611 * struct rtl8365mb_port - private per-port data
612 * @priv: pointer to parent realtek_priv data
613 * @index: DSA port index, same as dsa_port::index
614 * @stats: link statistics populated by rtl8365mb_stats_poll, ready for atomic
615 * access via rtl8365mb_get_stats64
616 * @stats_lock: protect the stats structure during read/update
617 * @mib_work: delayed work for polling MIB counters
618 */
619struct rtl8365mb_port {
620 struct realtek_priv *priv;
621 unsigned int index;
622 struct rtnl_link_stats64 stats;
623 spinlock_t stats_lock;
624 struct delayed_work mib_work;
625};
626
627/**
628 * struct rtl8365mb - driver private data
629 * @priv: pointer to parent realtek_priv data
630 * @irq: registered IRQ or zero
631 * @chip_info: chip-specific info about the attached switch
632 * @cpu: CPU tagging and CPU port configuration for this chip
633 * @mib_lock: prevent concurrent reads of MIB counters
634 * @ports: per-port data
635 *
636 * Private data for this driver.
637 */
638struct rtl8365mb {
639 struct realtek_priv *priv;
640 int irq;
641 const struct rtl8365mb_chip_info *chip_info;
642 struct rtl8365mb_cpu cpu;
643 struct mutex mib_lock;
644 struct rtl8365mb_port ports[RTL8365MB_MAX_NUM_PORTS];
645};
646
647static int rtl8365mb_phy_poll_busy(struct realtek_priv *priv)
648{
649 u32 val;
650
651 return regmap_read_poll_timeout(priv->map_nolock,
652 RTL8365MB_INDIRECT_ACCESS_STATUS_REG,
653 val, !val, 10, 100);
654}
655
656static int rtl8365mb_phy_ocp_prepare(struct realtek_priv *priv, int phy,
657 u32 ocp_addr)
658{
659 u32 val;
660 int ret;
661
662 /* Set OCP prefix */
663 val = FIELD_GET(RTL8365MB_PHY_OCP_ADDR_PREFIX_MASK, ocp_addr);
664 ret = regmap_update_bits(
665 priv->map_nolock, RTL8365MB_GPHY_OCP_MSB_0_REG,
666 RTL8365MB_GPHY_OCP_MSB_0_CFG_CPU_OCPADR_MASK,
667 FIELD_PREP(RTL8365MB_GPHY_OCP_MSB_0_CFG_CPU_OCPADR_MASK, val));
668 if (ret)
669 return ret;
670
671 /* Set PHY register address */
672 val = RTL8365MB_PHY_BASE;
673 val |= FIELD_PREP(RTL8365MB_INDIRECT_ACCESS_ADDRESS_PHYNUM_MASK, phy);
674 val |= FIELD_PREP(RTL8365MB_INDIRECT_ACCESS_ADDRESS_OCPADR_5_1_MASK,
675 ocp_addr >> 1);
676 val |= FIELD_PREP(RTL8365MB_INDIRECT_ACCESS_ADDRESS_OCPADR_9_6_MASK,
677 ocp_addr >> 6);
678 ret = regmap_write(priv->map_nolock,
679 RTL8365MB_INDIRECT_ACCESS_ADDRESS_REG, val);
680 if (ret)
681 return ret;
682
683 return 0;
684}
685
686static int rtl8365mb_phy_ocp_read(struct realtek_priv *priv, int phy,
687 u32 ocp_addr, u16 *data)
688{
689 u32 val;
690 int ret;
691
692 mutex_lock(&priv->map_lock);
693
694 ret = rtl8365mb_phy_poll_busy(priv);
695 if (ret)
696 goto out;
697
698 ret = rtl8365mb_phy_ocp_prepare(priv, phy, ocp_addr);
699 if (ret)
700 goto out;
701
702 /* Execute read operation */
703 val = FIELD_PREP(RTL8365MB_INDIRECT_ACCESS_CTRL_CMD_MASK,
704 RTL8365MB_INDIRECT_ACCESS_CTRL_CMD_VALUE) |
705 FIELD_PREP(RTL8365MB_INDIRECT_ACCESS_CTRL_RW_MASK,
706 RTL8365MB_INDIRECT_ACCESS_CTRL_RW_READ);
707 ret = regmap_write(priv->map_nolock, RTL8365MB_INDIRECT_ACCESS_CTRL_REG,
708 val);
709 if (ret)
710 goto out;
711
712 ret = rtl8365mb_phy_poll_busy(priv);
713 if (ret)
714 goto out;
715
716 /* Get PHY register data */
717 ret = regmap_read(priv->map_nolock,
718 RTL8365MB_INDIRECT_ACCESS_READ_DATA_REG, &val);
719 if (ret)
720 goto out;
721
722 *data = val & 0xFFFF;
723
724out:
725 mutex_unlock(&priv->map_lock);
726
727 return ret;
728}
729
730static int rtl8365mb_phy_ocp_write(struct realtek_priv *priv, int phy,
731 u32 ocp_addr, u16 data)
732{
733 u32 val;
734 int ret;
735
736 mutex_lock(&priv->map_lock);
737
738 ret = rtl8365mb_phy_poll_busy(priv);
739 if (ret)
740 goto out;
741
742 ret = rtl8365mb_phy_ocp_prepare(priv, phy, ocp_addr);
743 if (ret)
744 goto out;
745
746 /* Set PHY register data */
747 ret = regmap_write(priv->map_nolock,
748 RTL8365MB_INDIRECT_ACCESS_WRITE_DATA_REG, data);
749 if (ret)
750 goto out;
751
752 /* Execute write operation */
753 val = FIELD_PREP(RTL8365MB_INDIRECT_ACCESS_CTRL_CMD_MASK,
754 RTL8365MB_INDIRECT_ACCESS_CTRL_CMD_VALUE) |
755 FIELD_PREP(RTL8365MB_INDIRECT_ACCESS_CTRL_RW_MASK,
756 RTL8365MB_INDIRECT_ACCESS_CTRL_RW_WRITE);
757 ret = regmap_write(priv->map_nolock, RTL8365MB_INDIRECT_ACCESS_CTRL_REG,
758 val);
759 if (ret)
760 goto out;
761
762 ret = rtl8365mb_phy_poll_busy(priv);
763 if (ret)
764 goto out;
765
766out:
767 mutex_unlock(&priv->map_lock);
768
769 return 0;
770}
771
772static int rtl8365mb_phy_read(struct realtek_priv *priv, int phy, int regnum)
773{
774 u32 ocp_addr;
775 u16 val;
776 int ret;
777
778 if (phy > RTL8365MB_PHYADDRMAX)
779 return -EINVAL;
780
781 if (regnum > RTL8365MB_PHYREGMAX)
782 return -EINVAL;
783
784 ocp_addr = RTL8365MB_PHY_OCP_ADDR_PHYREG_BASE + regnum * 2;
785
786 ret = rtl8365mb_phy_ocp_read(priv, phy, ocp_addr, &val);
787 if (ret) {
788 dev_err(priv->dev,
789 "failed to read PHY%d reg %02x @ %04x, ret %d\n", phy,
790 regnum, ocp_addr, ret);
791 return ret;
792 }
793
794 dev_dbg(priv->dev, "read PHY%d register 0x%02x @ %04x, val <- %04x\n",
795 phy, regnum, ocp_addr, val);
796
797 return val;
798}
799
800static int rtl8365mb_phy_write(struct realtek_priv *priv, int phy, int regnum,
801 u16 val)
802{
803 u32 ocp_addr;
804 int ret;
805
806 if (phy > RTL8365MB_PHYADDRMAX)
807 return -EINVAL;
808
809 if (regnum > RTL8365MB_PHYREGMAX)
810 return -EINVAL;
811
812 ocp_addr = RTL8365MB_PHY_OCP_ADDR_PHYREG_BASE + regnum * 2;
813
814 ret = rtl8365mb_phy_ocp_write(priv, phy, ocp_addr, val);
815 if (ret) {
816 dev_err(priv->dev,
817 "failed to write PHY%d reg %02x @ %04x, ret %d\n", phy,
818 regnum, ocp_addr, ret);
819 return ret;
820 }
821
822 dev_dbg(priv->dev, "write PHY%d register 0x%02x @ %04x, val -> %04x\n",
823 phy, regnum, ocp_addr, val);
824
825 return 0;
826}
827
828static int rtl8365mb_dsa_phy_read(struct dsa_switch *ds, int phy, int regnum)
829{
830 return rtl8365mb_phy_read(ds->priv, phy, regnum);
831}
832
833static int rtl8365mb_dsa_phy_write(struct dsa_switch *ds, int phy, int regnum,
834 u16 val)
835{
836 return rtl8365mb_phy_write(ds->priv, phy, regnum, val);
837}
838
839static const struct rtl8365mb_extint *
840rtl8365mb_get_port_extint(struct realtek_priv *priv, int port)
841{
842 struct rtl8365mb *mb = priv->chip_data;
843 int i;
844
845 for (i = 0; i < RTL8365MB_MAX_NUM_EXTINTS; i++) {
846 const struct rtl8365mb_extint *extint =
847 &mb->chip_info->extints[i];
848
849 if (!extint->supported_interfaces)
850 continue;
851
852 if (extint->port == port)
853 return extint;
854 }
855
856 return NULL;
857}
858
859static enum dsa_tag_protocol
860rtl8365mb_get_tag_protocol(struct dsa_switch *ds, int port,
861 enum dsa_tag_protocol mp)
862{
863 struct realtek_priv *priv = ds->priv;
864 struct rtl8365mb_cpu *cpu;
865 struct rtl8365mb *mb;
866
867 mb = priv->chip_data;
868 cpu = &mb->cpu;
869
870 if (cpu->position == RTL8365MB_CPU_POS_BEFORE_CRC)
871 return DSA_TAG_PROTO_RTL8_4T;
872
873 return DSA_TAG_PROTO_RTL8_4;
874}
875
876static int rtl8365mb_ext_config_rgmii(struct realtek_priv *priv, int port,
877 phy_interface_t interface)
878{
879 const struct rtl8365mb_extint *extint =
880 rtl8365mb_get_port_extint(priv, port);
881 struct device_node *dn;
882 struct dsa_port *dp;
883 int tx_delay = 0;
884 int rx_delay = 0;
885 u32 val;
886 int ret;
887
888 if (!extint)
889 return -ENODEV;
890
891 dp = dsa_to_port(priv->ds, port);
892 dn = dp->dn;
893
894 /* Set the RGMII TX/RX delay
895 *
896 * The Realtek vendor driver indicates the following possible
897 * configuration settings:
898 *
899 * TX delay:
900 * 0 = no delay, 1 = 2 ns delay
901 * RX delay:
902 * 0 = no delay, 7 = maximum delay
903 * Each step is approximately 0.3 ns, so the maximum delay is about
904 * 2.1 ns.
905 *
906 * The vendor driver also states that this must be configured *before*
907 * forcing the external interface into a particular mode, which is done
908 * in the rtl8365mb_phylink_mac_link_{up,down} functions.
909 *
910 * Only configure an RGMII TX (resp. RX) delay if the
911 * tx-internal-delay-ps (resp. rx-internal-delay-ps) OF property is
912 * specified. We ignore the detail of the RGMII interface mode
913 * (RGMII_{RXID, TXID, etc.}), as this is considered to be a PHY-only
914 * property.
915 */
916 if (!of_property_read_u32(dn, "tx-internal-delay-ps", &val)) {
917 val = val / 1000; /* convert to ns */
918
919 if (val == 0 || val == 2)
920 tx_delay = val / 2;
921 else
922 dev_warn(priv->dev,
923 "RGMII TX delay must be 0 or 2 ns\n");
924 }
925
926 if (!of_property_read_u32(dn, "rx-internal-delay-ps", &val)) {
927 val = DIV_ROUND_CLOSEST(val, 300); /* convert to 0.3 ns step */
928
929 if (val <= 7)
930 rx_delay = val;
931 else
932 dev_warn(priv->dev,
933 "RGMII RX delay must be 0 to 2.1 ns\n");
934 }
935
936 ret = regmap_update_bits(
937 priv->map, RTL8365MB_EXT_RGMXF_REG(extint->id),
938 RTL8365MB_EXT_RGMXF_TXDELAY_MASK |
939 RTL8365MB_EXT_RGMXF_RXDELAY_MASK,
940 FIELD_PREP(RTL8365MB_EXT_RGMXF_TXDELAY_MASK, tx_delay) |
941 FIELD_PREP(RTL8365MB_EXT_RGMXF_RXDELAY_MASK, rx_delay));
942 if (ret)
943 return ret;
944
945 ret = regmap_update_bits(
946 priv->map, RTL8365MB_DIGITAL_INTERFACE_SELECT_REG(extint->id),
947 RTL8365MB_DIGITAL_INTERFACE_SELECT_MODE_MASK(extint->id),
948 RTL8365MB_EXT_PORT_MODE_RGMII
949 << RTL8365MB_DIGITAL_INTERFACE_SELECT_MODE_OFFSET(
950 extint->id));
951 if (ret)
952 return ret;
953
954 return 0;
955}
956
957static int rtl8365mb_ext_config_forcemode(struct realtek_priv *priv, int port,
958 bool link, int speed, int duplex,
959 bool tx_pause, bool rx_pause)
960{
961 const struct rtl8365mb_extint *extint =
962 rtl8365mb_get_port_extint(priv, port);
963 u32 r_tx_pause;
964 u32 r_rx_pause;
965 u32 r_duplex;
966 u32 r_speed;
967 u32 r_link;
968 int val;
969 int ret;
970
971 if (!extint)
972 return -ENODEV;
973
974 if (link) {
975 /* Force the link up with the desired configuration */
976 r_link = 1;
977 r_rx_pause = rx_pause ? 1 : 0;
978 r_tx_pause = tx_pause ? 1 : 0;
979
980 if (speed == SPEED_1000) {
981 r_speed = RTL8365MB_PORT_SPEED_1000M;
982 } else if (speed == SPEED_100) {
983 r_speed = RTL8365MB_PORT_SPEED_100M;
984 } else if (speed == SPEED_10) {
985 r_speed = RTL8365MB_PORT_SPEED_10M;
986 } else {
987 dev_err(priv->dev, "unsupported port speed %s\n",
988 phy_speed_to_str(speed));
989 return -EINVAL;
990 }
991
992 if (duplex == DUPLEX_FULL) {
993 r_duplex = 1;
994 } else if (duplex == DUPLEX_HALF) {
995 r_duplex = 0;
996 } else {
997 dev_err(priv->dev, "unsupported duplex %s\n",
998 phy_duplex_to_str(duplex));
999 return -EINVAL;
1000 }
1001 } else {
1002 /* Force the link down and reset any programmed configuration */
1003 r_link = 0;
1004 r_tx_pause = 0;
1005 r_rx_pause = 0;
1006 r_speed = 0;
1007 r_duplex = 0;
1008 }
1009
1010 val = FIELD_PREP(RTL8365MB_DIGITAL_INTERFACE_FORCE_EN_MASK, 1) |
1011 FIELD_PREP(RTL8365MB_DIGITAL_INTERFACE_FORCE_TXPAUSE_MASK,
1012 r_tx_pause) |
1013 FIELD_PREP(RTL8365MB_DIGITAL_INTERFACE_FORCE_RXPAUSE_MASK,
1014 r_rx_pause) |
1015 FIELD_PREP(RTL8365MB_DIGITAL_INTERFACE_FORCE_LINK_MASK, r_link) |
1016 FIELD_PREP(RTL8365MB_DIGITAL_INTERFACE_FORCE_DUPLEX_MASK,
1017 r_duplex) |
1018 FIELD_PREP(RTL8365MB_DIGITAL_INTERFACE_FORCE_SPEED_MASK, r_speed);
1019 ret = regmap_write(priv->map,
1020 RTL8365MB_DIGITAL_INTERFACE_FORCE_REG(extint->id),
1021 val);
1022 if (ret)
1023 return ret;
1024
1025 return 0;
1026}
1027
1028static void rtl8365mb_phylink_get_caps(struct dsa_switch *ds, int port,
1029 struct phylink_config *config)
1030{
1031 const struct rtl8365mb_extint *extint =
1032 rtl8365mb_get_port_extint(ds->priv, port);
1033
1034 config->mac_capabilities = MAC_SYM_PAUSE | MAC_ASYM_PAUSE |
1035 MAC_10 | MAC_100 | MAC_1000FD;
1036
1037 if (!extint) {
1038 __set_bit(PHY_INTERFACE_MODE_INTERNAL,
1039 config->supported_interfaces);
1040
1041 /* GMII is the default interface mode for phylib, so
1042 * we have to support it for ports with integrated PHY.
1043 */
1044 __set_bit(PHY_INTERFACE_MODE_GMII,
1045 config->supported_interfaces);
1046 return;
1047 }
1048
1049 /* Populate according to the modes supported by _this driver_,
1050 * not necessarily the modes supported by the hardware, some of
1051 * which remain unimplemented.
1052 */
1053
1054 if (extint->supported_interfaces & RTL8365MB_PHY_INTERFACE_MODE_RGMII)
1055 phy_interface_set_rgmii(config->supported_interfaces);
1056}
1057
1058static void rtl8365mb_phylink_mac_config(struct dsa_switch *ds, int port,
1059 unsigned int mode,
1060 const struct phylink_link_state *state)
1061{
1062 struct realtek_priv *priv = ds->priv;
1063 int ret;
1064
1065 if (mode != MLO_AN_PHY && mode != MLO_AN_FIXED) {
1066 dev_err(priv->dev,
1067 "port %d supports only conventional PHY or fixed-link\n",
1068 port);
1069 return;
1070 }
1071
1072 if (phy_interface_mode_is_rgmii(state->interface)) {
1073 ret = rtl8365mb_ext_config_rgmii(priv, port, state->interface);
1074 if (ret)
1075 dev_err(priv->dev,
1076 "failed to configure RGMII mode on port %d: %d\n",
1077 port, ret);
1078 return;
1079 }
1080
1081 /* TODO: Implement MII and RMII modes, which the RTL8365MB-VC also
1082 * supports
1083 */
1084}
1085
1086static void rtl8365mb_phylink_mac_link_down(struct dsa_switch *ds, int port,
1087 unsigned int mode,
1088 phy_interface_t interface)
1089{
1090 struct realtek_priv *priv = ds->priv;
1091 struct rtl8365mb_port *p;
1092 struct rtl8365mb *mb;
1093 int ret;
1094
1095 mb = priv->chip_data;
1096 p = &mb->ports[port];
1097 cancel_delayed_work_sync(&p->mib_work);
1098
1099 if (phy_interface_mode_is_rgmii(interface)) {
1100 ret = rtl8365mb_ext_config_forcemode(priv, port, false, 0, 0,
1101 false, false);
1102 if (ret)
1103 dev_err(priv->dev,
1104 "failed to reset forced mode on port %d: %d\n",
1105 port, ret);
1106
1107 return;
1108 }
1109}
1110
1111static void rtl8365mb_phylink_mac_link_up(struct dsa_switch *ds, int port,
1112 unsigned int mode,
1113 phy_interface_t interface,
1114 struct phy_device *phydev, int speed,
1115 int duplex, bool tx_pause,
1116 bool rx_pause)
1117{
1118 struct realtek_priv *priv = ds->priv;
1119 struct rtl8365mb_port *p;
1120 struct rtl8365mb *mb;
1121 int ret;
1122
1123 mb = priv->chip_data;
1124 p = &mb->ports[port];
1125 schedule_delayed_work(&p->mib_work, 0);
1126
1127 if (phy_interface_mode_is_rgmii(interface)) {
1128 ret = rtl8365mb_ext_config_forcemode(priv, port, true, speed,
1129 duplex, tx_pause,
1130 rx_pause);
1131 if (ret)
1132 dev_err(priv->dev,
1133 "failed to force mode on port %d: %d\n", port,
1134 ret);
1135
1136 return;
1137 }
1138}
1139
1140static int rtl8365mb_port_change_mtu(struct dsa_switch *ds, int port,
1141 int new_mtu)
1142{
1143 struct realtek_priv *priv = ds->priv;
1144 int frame_size;
1145
1146 /* When a new MTU is set, DSA always sets the CPU port's MTU to the
1147 * largest MTU of the user ports. Because the switch only has a global
1148 * RX length register, only allowing CPU port here is enough.
1149 */
1150 if (!dsa_is_cpu_port(ds, port))
1151 return 0;
1152
1153 frame_size = new_mtu + VLAN_ETH_HLEN + ETH_FCS_LEN;
1154
1155 dev_dbg(priv->dev, "changing mtu to %d (frame size: %d)\n",
1156 new_mtu, frame_size);
1157
1158 return regmap_update_bits(priv->map, RTL8365MB_CFG0_MAX_LEN_REG,
1159 RTL8365MB_CFG0_MAX_LEN_MASK,
1160 FIELD_PREP(RTL8365MB_CFG0_MAX_LEN_MASK,
1161 frame_size));
1162}
1163
1164static int rtl8365mb_port_max_mtu(struct dsa_switch *ds, int port)
1165{
1166 return RTL8365MB_CFG0_MAX_LEN_MAX - VLAN_ETH_HLEN - ETH_FCS_LEN;
1167}
1168
1169static void rtl8365mb_port_stp_state_set(struct dsa_switch *ds, int port,
1170 u8 state)
1171{
1172 struct realtek_priv *priv = ds->priv;
1173 enum rtl8365mb_stp_state val;
1174 int msti = 0;
1175
1176 switch (state) {
1177 case BR_STATE_DISABLED:
1178 val = RTL8365MB_STP_STATE_DISABLED;
1179 break;
1180 case BR_STATE_BLOCKING:
1181 case BR_STATE_LISTENING:
1182 val = RTL8365MB_STP_STATE_BLOCKING;
1183 break;
1184 case BR_STATE_LEARNING:
1185 val = RTL8365MB_STP_STATE_LEARNING;
1186 break;
1187 case BR_STATE_FORWARDING:
1188 val = RTL8365MB_STP_STATE_FORWARDING;
1189 break;
1190 default:
1191 dev_err(priv->dev, "invalid STP state: %u\n", state);
1192 return;
1193 }
1194
1195 regmap_update_bits(priv->map, RTL8365MB_MSTI_CTRL_REG(msti, port),
1196 RTL8365MB_MSTI_CTRL_PORT_STATE_MASK(port),
1197 val << RTL8365MB_MSTI_CTRL_PORT_STATE_OFFSET(port));
1198}
1199
1200static int rtl8365mb_port_set_learning(struct realtek_priv *priv, int port,
1201 bool enable)
1202{
1203 /* Enable/disable learning by limiting the number of L2 addresses the
1204 * port can learn. Realtek documentation states that a limit of zero
1205 * disables learning. When enabling learning, set it to the chip's
1206 * maximum.
1207 */
1208 return regmap_write(priv->map, RTL8365MB_LUT_PORT_LEARN_LIMIT_REG(port),
1209 enable ? RTL8365MB_LEARN_LIMIT_MAX : 0);
1210}
1211
1212static int rtl8365mb_port_set_isolation(struct realtek_priv *priv, int port,
1213 u32 mask)
1214{
1215 return regmap_write(priv->map, RTL8365MB_PORT_ISOLATION_REG(port), mask);
1216}
1217
1218static int rtl8365mb_mib_counter_read(struct realtek_priv *priv, int port,
1219 u32 offset, u32 length, u64 *mibvalue)
1220{
1221 u64 tmpvalue = 0;
1222 u32 val;
1223 int ret;
1224 int i;
1225
1226 /* The MIB address is an SRAM address. We request a particular address
1227 * and then poll the control register before reading the value from some
1228 * counter registers.
1229 */
1230 ret = regmap_write(priv->map, RTL8365MB_MIB_ADDRESS_REG,
1231 RTL8365MB_MIB_ADDRESS(port, offset));
1232 if (ret)
1233 return ret;
1234
1235 /* Poll for completion */
1236 ret = regmap_read_poll_timeout(priv->map, RTL8365MB_MIB_CTRL0_REG, val,
1237 !(val & RTL8365MB_MIB_CTRL0_BUSY_MASK),
1238 10, 100);
1239 if (ret)
1240 return ret;
1241
1242 /* Presumably this indicates a MIB counter read failure */
1243 if (val & RTL8365MB_MIB_CTRL0_RESET_MASK)
1244 return -EIO;
1245
1246 /* There are four MIB counter registers each holding a 16 bit word of a
1247 * MIB counter. Depending on the offset, we should read from the upper
1248 * two or lower two registers. In case the MIB counter is 4 words, we
1249 * read from all four registers.
1250 */
1251 if (length == 4)
1252 offset = 3;
1253 else
1254 offset = (offset + 1) % 4;
1255
1256 /* Read the MIB counter 16 bits at a time */
1257 for (i = 0; i < length; i++) {
1258 ret = regmap_read(priv->map,
1259 RTL8365MB_MIB_COUNTER_REG(offset - i), &val);
1260 if (ret)
1261 return ret;
1262
1263 tmpvalue = ((tmpvalue) << 16) | (val & 0xFFFF);
1264 }
1265
1266 /* Only commit the result if no error occurred */
1267 *mibvalue = tmpvalue;
1268
1269 return 0;
1270}
1271
1272static void rtl8365mb_get_ethtool_stats(struct dsa_switch *ds, int port, u64 *data)
1273{
1274 struct realtek_priv *priv = ds->priv;
1275 struct rtl8365mb *mb;
1276 int ret;
1277 int i;
1278
1279 mb = priv->chip_data;
1280
1281 mutex_lock(&mb->mib_lock);
1282 for (i = 0; i < RTL8365MB_MIB_END; i++) {
1283 struct rtl8365mb_mib_counter *mib = &rtl8365mb_mib_counters[i];
1284
1285 ret = rtl8365mb_mib_counter_read(priv, port, mib->offset,
1286 mib->length, &data[i]);
1287 if (ret) {
1288 dev_err(priv->dev,
1289 "failed to read port %d counters: %d\n", port,
1290 ret);
1291 break;
1292 }
1293 }
1294 mutex_unlock(&mb->mib_lock);
1295}
1296
1297static void rtl8365mb_get_strings(struct dsa_switch *ds, int port, u32 stringset, u8 *data)
1298{
1299 int i;
1300
1301 if (stringset != ETH_SS_STATS)
1302 return;
1303
1304 for (i = 0; i < RTL8365MB_MIB_END; i++) {
1305 struct rtl8365mb_mib_counter *mib = &rtl8365mb_mib_counters[i];
1306 ethtool_puts(&data, mib->name);
1307 }
1308}
1309
1310static int rtl8365mb_get_sset_count(struct dsa_switch *ds, int port, int sset)
1311{
1312 if (sset != ETH_SS_STATS)
1313 return -EOPNOTSUPP;
1314
1315 return RTL8365MB_MIB_END;
1316}
1317
1318static void rtl8365mb_get_phy_stats(struct dsa_switch *ds, int port,
1319 struct ethtool_eth_phy_stats *phy_stats)
1320{
1321 struct realtek_priv *priv = ds->priv;
1322 struct rtl8365mb_mib_counter *mib;
1323 struct rtl8365mb *mb;
1324
1325 mb = priv->chip_data;
1326 mib = &rtl8365mb_mib_counters[RTL8365MB_MIB_dot3StatsSymbolErrors];
1327
1328 mutex_lock(&mb->mib_lock);
1329 rtl8365mb_mib_counter_read(priv, port, mib->offset, mib->length,
1330 &phy_stats->SymbolErrorDuringCarrier);
1331 mutex_unlock(&mb->mib_lock);
1332}
1333
1334static void rtl8365mb_get_mac_stats(struct dsa_switch *ds, int port,
1335 struct ethtool_eth_mac_stats *mac_stats)
1336{
1337 u64 cnt[RTL8365MB_MIB_END] = {
1338 [RTL8365MB_MIB_ifOutOctets] = 1,
1339 [RTL8365MB_MIB_ifOutUcastPkts] = 1,
1340 [RTL8365MB_MIB_ifOutMulticastPkts] = 1,
1341 [RTL8365MB_MIB_ifOutBroadcastPkts] = 1,
1342 [RTL8365MB_MIB_dot3OutPauseFrames] = 1,
1343 [RTL8365MB_MIB_ifOutDiscards] = 1,
1344 [RTL8365MB_MIB_ifInOctets] = 1,
1345 [RTL8365MB_MIB_ifInUcastPkts] = 1,
1346 [RTL8365MB_MIB_ifInMulticastPkts] = 1,
1347 [RTL8365MB_MIB_ifInBroadcastPkts] = 1,
1348 [RTL8365MB_MIB_dot3InPauseFrames] = 1,
1349 [RTL8365MB_MIB_dot3StatsSingleCollisionFrames] = 1,
1350 [RTL8365MB_MIB_dot3StatsMultipleCollisionFrames] = 1,
1351 [RTL8365MB_MIB_dot3StatsFCSErrors] = 1,
1352 [RTL8365MB_MIB_dot3StatsDeferredTransmissions] = 1,
1353 [RTL8365MB_MIB_dot3StatsLateCollisions] = 1,
1354 [RTL8365MB_MIB_dot3StatsExcessiveCollisions] = 1,
1355
1356 };
1357 struct realtek_priv *priv = ds->priv;
1358 struct rtl8365mb *mb;
1359 int ret;
1360 int i;
1361
1362 mb = priv->chip_data;
1363
1364 mutex_lock(&mb->mib_lock);
1365 for (i = 0; i < RTL8365MB_MIB_END; i++) {
1366 struct rtl8365mb_mib_counter *mib = &rtl8365mb_mib_counters[i];
1367
1368 /* Only fetch required MIB counters (marked = 1 above) */
1369 if (!cnt[i])
1370 continue;
1371
1372 ret = rtl8365mb_mib_counter_read(priv, port, mib->offset,
1373 mib->length, &cnt[i]);
1374 if (ret)
1375 break;
1376 }
1377 mutex_unlock(&mb->mib_lock);
1378
1379 /* The RTL8365MB-VC exposes MIB objects, which we have to translate into
1380 * IEEE 802.3 Managed Objects. This is not always completely faithful,
1381 * but we try out best. See RFC 3635 for a detailed treatment of the
1382 * subject.
1383 */
1384
1385 mac_stats->FramesTransmittedOK = cnt[RTL8365MB_MIB_ifOutUcastPkts] +
1386 cnt[RTL8365MB_MIB_ifOutMulticastPkts] +
1387 cnt[RTL8365MB_MIB_ifOutBroadcastPkts] +
1388 cnt[RTL8365MB_MIB_dot3OutPauseFrames] -
1389 cnt[RTL8365MB_MIB_ifOutDiscards];
1390 mac_stats->SingleCollisionFrames =
1391 cnt[RTL8365MB_MIB_dot3StatsSingleCollisionFrames];
1392 mac_stats->MultipleCollisionFrames =
1393 cnt[RTL8365MB_MIB_dot3StatsMultipleCollisionFrames];
1394 mac_stats->FramesReceivedOK = cnt[RTL8365MB_MIB_ifInUcastPkts] +
1395 cnt[RTL8365MB_MIB_ifInMulticastPkts] +
1396 cnt[RTL8365MB_MIB_ifInBroadcastPkts] +
1397 cnt[RTL8365MB_MIB_dot3InPauseFrames];
1398 mac_stats->FrameCheckSequenceErrors =
1399 cnt[RTL8365MB_MIB_dot3StatsFCSErrors];
1400 mac_stats->OctetsTransmittedOK = cnt[RTL8365MB_MIB_ifOutOctets] -
1401 18 * mac_stats->FramesTransmittedOK;
1402 mac_stats->FramesWithDeferredXmissions =
1403 cnt[RTL8365MB_MIB_dot3StatsDeferredTransmissions];
1404 mac_stats->LateCollisions = cnt[RTL8365MB_MIB_dot3StatsLateCollisions];
1405 mac_stats->FramesAbortedDueToXSColls =
1406 cnt[RTL8365MB_MIB_dot3StatsExcessiveCollisions];
1407 mac_stats->OctetsReceivedOK = cnt[RTL8365MB_MIB_ifInOctets] -
1408 18 * mac_stats->FramesReceivedOK;
1409 mac_stats->MulticastFramesXmittedOK =
1410 cnt[RTL8365MB_MIB_ifOutMulticastPkts];
1411 mac_stats->BroadcastFramesXmittedOK =
1412 cnt[RTL8365MB_MIB_ifOutBroadcastPkts];
1413 mac_stats->MulticastFramesReceivedOK =
1414 cnt[RTL8365MB_MIB_ifInMulticastPkts];
1415 mac_stats->BroadcastFramesReceivedOK =
1416 cnt[RTL8365MB_MIB_ifInBroadcastPkts];
1417}
1418
1419static void rtl8365mb_get_ctrl_stats(struct dsa_switch *ds, int port,
1420 struct ethtool_eth_ctrl_stats *ctrl_stats)
1421{
1422 struct realtek_priv *priv = ds->priv;
1423 struct rtl8365mb_mib_counter *mib;
1424 struct rtl8365mb *mb;
1425
1426 mb = priv->chip_data;
1427 mib = &rtl8365mb_mib_counters[RTL8365MB_MIB_dot3ControlInUnknownOpcodes];
1428
1429 mutex_lock(&mb->mib_lock);
1430 rtl8365mb_mib_counter_read(priv, port, mib->offset, mib->length,
1431 &ctrl_stats->UnsupportedOpcodesReceived);
1432 mutex_unlock(&mb->mib_lock);
1433}
1434
1435static void rtl8365mb_stats_update(struct realtek_priv *priv, int port)
1436{
1437 u64 cnt[RTL8365MB_MIB_END] = {
1438 [RTL8365MB_MIB_ifOutOctets] = 1,
1439 [RTL8365MB_MIB_ifOutUcastPkts] = 1,
1440 [RTL8365MB_MIB_ifOutMulticastPkts] = 1,
1441 [RTL8365MB_MIB_ifOutBroadcastPkts] = 1,
1442 [RTL8365MB_MIB_ifOutDiscards] = 1,
1443 [RTL8365MB_MIB_ifInOctets] = 1,
1444 [RTL8365MB_MIB_ifInUcastPkts] = 1,
1445 [RTL8365MB_MIB_ifInMulticastPkts] = 1,
1446 [RTL8365MB_MIB_ifInBroadcastPkts] = 1,
1447 [RTL8365MB_MIB_etherStatsDropEvents] = 1,
1448 [RTL8365MB_MIB_etherStatsCollisions] = 1,
1449 [RTL8365MB_MIB_etherStatsFragments] = 1,
1450 [RTL8365MB_MIB_etherStatsJabbers] = 1,
1451 [RTL8365MB_MIB_dot3StatsFCSErrors] = 1,
1452 [RTL8365MB_MIB_dot3StatsLateCollisions] = 1,
1453 };
1454 struct rtl8365mb *mb = priv->chip_data;
1455 struct rtnl_link_stats64 *stats;
1456 int ret;
1457 int i;
1458
1459 stats = &mb->ports[port].stats;
1460
1461 mutex_lock(&mb->mib_lock);
1462 for (i = 0; i < RTL8365MB_MIB_END; i++) {
1463 struct rtl8365mb_mib_counter *c = &rtl8365mb_mib_counters[i];
1464
1465 /* Only fetch required MIB counters (marked = 1 above) */
1466 if (!cnt[i])
1467 continue;
1468
1469 ret = rtl8365mb_mib_counter_read(priv, port, c->offset,
1470 c->length, &cnt[i]);
1471 if (ret)
1472 break;
1473 }
1474 mutex_unlock(&mb->mib_lock);
1475
1476 /* Don't update statistics if there was an error reading the counters */
1477 if (ret)
1478 return;
1479
1480 spin_lock(&mb->ports[port].stats_lock);
1481
1482 stats->rx_packets = cnt[RTL8365MB_MIB_ifInUcastPkts] +
1483 cnt[RTL8365MB_MIB_ifInMulticastPkts] +
1484 cnt[RTL8365MB_MIB_ifInBroadcastPkts] -
1485 cnt[RTL8365MB_MIB_ifOutDiscards];
1486
1487 stats->tx_packets = cnt[RTL8365MB_MIB_ifOutUcastPkts] +
1488 cnt[RTL8365MB_MIB_ifOutMulticastPkts] +
1489 cnt[RTL8365MB_MIB_ifOutBroadcastPkts];
1490
1491 /* if{In,Out}Octets includes FCS - remove it */
1492 stats->rx_bytes = cnt[RTL8365MB_MIB_ifInOctets] - 4 * stats->rx_packets;
1493 stats->tx_bytes =
1494 cnt[RTL8365MB_MIB_ifOutOctets] - 4 * stats->tx_packets;
1495
1496 stats->rx_dropped = cnt[RTL8365MB_MIB_etherStatsDropEvents];
1497 stats->tx_dropped = cnt[RTL8365MB_MIB_ifOutDiscards];
1498
1499 stats->multicast = cnt[RTL8365MB_MIB_ifInMulticastPkts];
1500 stats->collisions = cnt[RTL8365MB_MIB_etherStatsCollisions];
1501
1502 stats->rx_length_errors = cnt[RTL8365MB_MIB_etherStatsFragments] +
1503 cnt[RTL8365MB_MIB_etherStatsJabbers];
1504 stats->rx_crc_errors = cnt[RTL8365MB_MIB_dot3StatsFCSErrors];
1505 stats->rx_errors = stats->rx_length_errors + stats->rx_crc_errors;
1506
1507 stats->tx_aborted_errors = cnt[RTL8365MB_MIB_ifOutDiscards];
1508 stats->tx_window_errors = cnt[RTL8365MB_MIB_dot3StatsLateCollisions];
1509 stats->tx_errors = stats->tx_aborted_errors + stats->tx_window_errors;
1510
1511 spin_unlock(&mb->ports[port].stats_lock);
1512}
1513
1514static void rtl8365mb_stats_poll(struct work_struct *work)
1515{
1516 struct rtl8365mb_port *p = container_of(to_delayed_work(work),
1517 struct rtl8365mb_port,
1518 mib_work);
1519 struct realtek_priv *priv = p->priv;
1520
1521 rtl8365mb_stats_update(priv, p->index);
1522
1523 schedule_delayed_work(&p->mib_work, RTL8365MB_STATS_INTERVAL_JIFFIES);
1524}
1525
1526static void rtl8365mb_get_stats64(struct dsa_switch *ds, int port,
1527 struct rtnl_link_stats64 *s)
1528{
1529 struct realtek_priv *priv = ds->priv;
1530 struct rtl8365mb_port *p;
1531 struct rtl8365mb *mb;
1532
1533 mb = priv->chip_data;
1534 p = &mb->ports[port];
1535
1536 spin_lock(&p->stats_lock);
1537 memcpy(s, &p->stats, sizeof(*s));
1538 spin_unlock(&p->stats_lock);
1539}
1540
1541static void rtl8365mb_stats_setup(struct realtek_priv *priv)
1542{
1543 struct rtl8365mb *mb = priv->chip_data;
1544 int i;
1545
1546 /* Per-chip global mutex to protect MIB counter access, since doing
1547 * so requires accessing a series of registers in a particular order.
1548 */
1549 mutex_init(&mb->mib_lock);
1550
1551 for (i = 0; i < priv->num_ports; i++) {
1552 struct rtl8365mb_port *p = &mb->ports[i];
1553
1554 if (dsa_is_unused_port(priv->ds, i))
1555 continue;
1556
1557 /* Per-port spinlock to protect the stats64 data */
1558 spin_lock_init(&p->stats_lock);
1559
1560 /* This work polls the MIB counters and keeps the stats64 data
1561 * up-to-date.
1562 */
1563 INIT_DELAYED_WORK(&p->mib_work, rtl8365mb_stats_poll);
1564 }
1565}
1566
1567static void rtl8365mb_stats_teardown(struct realtek_priv *priv)
1568{
1569 struct rtl8365mb *mb = priv->chip_data;
1570 int i;
1571
1572 for (i = 0; i < priv->num_ports; i++) {
1573 struct rtl8365mb_port *p = &mb->ports[i];
1574
1575 if (dsa_is_unused_port(priv->ds, i))
1576 continue;
1577
1578 cancel_delayed_work_sync(&p->mib_work);
1579 }
1580}
1581
1582static int rtl8365mb_get_and_clear_status_reg(struct realtek_priv *priv, u32 reg,
1583 u32 *val)
1584{
1585 int ret;
1586
1587 ret = regmap_read(priv->map, reg, val);
1588 if (ret)
1589 return ret;
1590
1591 return regmap_write(priv->map, reg, *val);
1592}
1593
1594static irqreturn_t rtl8365mb_irq(int irq, void *data)
1595{
1596 struct realtek_priv *priv = data;
1597 unsigned long line_changes = 0;
1598 u32 stat;
1599 int line;
1600 int ret;
1601
1602 ret = rtl8365mb_get_and_clear_status_reg(priv, RTL8365MB_INTR_STATUS_REG,
1603 &stat);
1604 if (ret)
1605 goto out_error;
1606
1607 if (stat & RTL8365MB_INTR_LINK_CHANGE_MASK) {
1608 u32 linkdown_ind;
1609 u32 linkup_ind;
1610 u32 val;
1611
1612 ret = rtl8365mb_get_and_clear_status_reg(
1613 priv, RTL8365MB_PORT_LINKUP_IND_REG, &val);
1614 if (ret)
1615 goto out_error;
1616
1617 linkup_ind = FIELD_GET(RTL8365MB_PORT_LINKUP_IND_MASK, val);
1618
1619 ret = rtl8365mb_get_and_clear_status_reg(
1620 priv, RTL8365MB_PORT_LINKDOWN_IND_REG, &val);
1621 if (ret)
1622 goto out_error;
1623
1624 linkdown_ind = FIELD_GET(RTL8365MB_PORT_LINKDOWN_IND_MASK, val);
1625
1626 line_changes = linkup_ind | linkdown_ind;
1627 }
1628
1629 if (!line_changes)
1630 goto out_none;
1631
1632 for_each_set_bit(line, &line_changes, priv->num_ports) {
1633 int child_irq = irq_find_mapping(priv->irqdomain, line);
1634
1635 handle_nested_irq(child_irq);
1636 }
1637
1638 return IRQ_HANDLED;
1639
1640out_error:
1641 dev_err(priv->dev, "failed to read interrupt status: %d\n", ret);
1642
1643out_none:
1644 return IRQ_NONE;
1645}
1646
1647static struct irq_chip rtl8365mb_irq_chip = {
1648 .name = "rtl8365mb",
1649 /* The hardware doesn't support masking IRQs on a per-port basis */
1650};
1651
1652static int rtl8365mb_irq_map(struct irq_domain *domain, unsigned int irq,
1653 irq_hw_number_t hwirq)
1654{
1655 irq_set_chip_data(irq, domain->host_data);
1656 irq_set_chip_and_handler(irq, &rtl8365mb_irq_chip, handle_simple_irq);
1657 irq_set_nested_thread(irq, 1);
1658 irq_set_noprobe(irq);
1659
1660 return 0;
1661}
1662
1663static void rtl8365mb_irq_unmap(struct irq_domain *d, unsigned int irq)
1664{
1665 irq_set_nested_thread(irq, 0);
1666 irq_set_chip_and_handler(irq, NULL, NULL);
1667 irq_set_chip_data(irq, NULL);
1668}
1669
1670static const struct irq_domain_ops rtl8365mb_irqdomain_ops = {
1671 .map = rtl8365mb_irq_map,
1672 .unmap = rtl8365mb_irq_unmap,
1673 .xlate = irq_domain_xlate_onecell,
1674};
1675
1676static int rtl8365mb_set_irq_enable(struct realtek_priv *priv, bool enable)
1677{
1678 return regmap_update_bits(priv->map, RTL8365MB_INTR_CTRL_REG,
1679 RTL8365MB_INTR_LINK_CHANGE_MASK,
1680 FIELD_PREP(RTL8365MB_INTR_LINK_CHANGE_MASK,
1681 enable ? 1 : 0));
1682}
1683
1684static int rtl8365mb_irq_enable(struct realtek_priv *priv)
1685{
1686 return rtl8365mb_set_irq_enable(priv, true);
1687}
1688
1689static int rtl8365mb_irq_disable(struct realtek_priv *priv)
1690{
1691 return rtl8365mb_set_irq_enable(priv, false);
1692}
1693
1694static int rtl8365mb_irq_setup(struct realtek_priv *priv)
1695{
1696 struct rtl8365mb *mb = priv->chip_data;
1697 struct device_node *intc;
1698 u32 irq_trig;
1699 int virq;
1700 int irq;
1701 u32 val;
1702 int ret;
1703 int i;
1704
1705 intc = of_get_child_by_name(priv->dev->of_node, "interrupt-controller");
1706 if (!intc) {
1707 dev_err(priv->dev, "missing child interrupt-controller node\n");
1708 return -EINVAL;
1709 }
1710
1711 /* rtl8365mb IRQs cascade off this one */
1712 irq = of_irq_get(intc, 0);
1713 if (irq <= 0) {
1714 if (irq != -EPROBE_DEFER)
1715 dev_err(priv->dev, "failed to get parent irq: %d\n",
1716 irq);
1717 ret = irq ? irq : -EINVAL;
1718 goto out_put_node;
1719 }
1720
1721 priv->irqdomain = irq_domain_add_linear(intc, priv->num_ports,
1722 &rtl8365mb_irqdomain_ops, priv);
1723 if (!priv->irqdomain) {
1724 dev_err(priv->dev, "failed to add irq domain\n");
1725 ret = -ENOMEM;
1726 goto out_put_node;
1727 }
1728
1729 for (i = 0; i < priv->num_ports; i++) {
1730 virq = irq_create_mapping(priv->irqdomain, i);
1731 if (!virq) {
1732 dev_err(priv->dev,
1733 "failed to create irq domain mapping\n");
1734 ret = -EINVAL;
1735 goto out_remove_irqdomain;
1736 }
1737
1738 irq_set_parent(virq, irq);
1739 }
1740
1741 /* Configure chip interrupt signal polarity */
1742 irq_trig = irqd_get_trigger_type(irq_get_irq_data(irq));
1743 switch (irq_trig) {
1744 case IRQF_TRIGGER_RISING:
1745 case IRQF_TRIGGER_HIGH:
1746 val = RTL8365MB_INTR_POLARITY_HIGH;
1747 break;
1748 case IRQF_TRIGGER_FALLING:
1749 case IRQF_TRIGGER_LOW:
1750 val = RTL8365MB_INTR_POLARITY_LOW;
1751 break;
1752 default:
1753 dev_err(priv->dev, "unsupported irq trigger type %u\n",
1754 irq_trig);
1755 ret = -EINVAL;
1756 goto out_remove_irqdomain;
1757 }
1758
1759 ret = regmap_update_bits(priv->map, RTL8365MB_INTR_POLARITY_REG,
1760 RTL8365MB_INTR_POLARITY_MASK,
1761 FIELD_PREP(RTL8365MB_INTR_POLARITY_MASK, val));
1762 if (ret)
1763 goto out_remove_irqdomain;
1764
1765 /* Disable the interrupt in case the chip has it enabled on reset */
1766 ret = rtl8365mb_irq_disable(priv);
1767 if (ret)
1768 goto out_remove_irqdomain;
1769
1770 /* Clear the interrupt status register */
1771 ret = regmap_write(priv->map, RTL8365MB_INTR_STATUS_REG,
1772 RTL8365MB_INTR_ALL_MASK);
1773 if (ret)
1774 goto out_remove_irqdomain;
1775
1776 ret = request_threaded_irq(irq, NULL, rtl8365mb_irq, IRQF_ONESHOT,
1777 "rtl8365mb", priv);
1778 if (ret) {
1779 dev_err(priv->dev, "failed to request irq: %d\n", ret);
1780 goto out_remove_irqdomain;
1781 }
1782
1783 /* Store the irq so that we know to free it during teardown */
1784 mb->irq = irq;
1785
1786 ret = rtl8365mb_irq_enable(priv);
1787 if (ret)
1788 goto out_free_irq;
1789
1790 of_node_put(intc);
1791
1792 return 0;
1793
1794out_free_irq:
1795 free_irq(mb->irq, priv);
1796 mb->irq = 0;
1797
1798out_remove_irqdomain:
1799 for (i = 0; i < priv->num_ports; i++) {
1800 virq = irq_find_mapping(priv->irqdomain, i);
1801 irq_dispose_mapping(virq);
1802 }
1803
1804 irq_domain_remove(priv->irqdomain);
1805 priv->irqdomain = NULL;
1806
1807out_put_node:
1808 of_node_put(intc);
1809
1810 return ret;
1811}
1812
1813static void rtl8365mb_irq_teardown(struct realtek_priv *priv)
1814{
1815 struct rtl8365mb *mb = priv->chip_data;
1816 int virq;
1817 int i;
1818
1819 if (mb->irq) {
1820 free_irq(mb->irq, priv);
1821 mb->irq = 0;
1822 }
1823
1824 if (priv->irqdomain) {
1825 for (i = 0; i < priv->num_ports; i++) {
1826 virq = irq_find_mapping(priv->irqdomain, i);
1827 irq_dispose_mapping(virq);
1828 }
1829
1830 irq_domain_remove(priv->irqdomain);
1831 priv->irqdomain = NULL;
1832 }
1833}
1834
1835static int rtl8365mb_cpu_config(struct realtek_priv *priv)
1836{
1837 struct rtl8365mb *mb = priv->chip_data;
1838 struct rtl8365mb_cpu *cpu = &mb->cpu;
1839 u32 val;
1840 int ret;
1841
1842 ret = regmap_update_bits(priv->map, RTL8365MB_CPU_PORT_MASK_REG,
1843 RTL8365MB_CPU_PORT_MASK_MASK,
1844 FIELD_PREP(RTL8365MB_CPU_PORT_MASK_MASK,
1845 cpu->mask));
1846 if (ret)
1847 return ret;
1848
1849 val = FIELD_PREP(RTL8365MB_CPU_CTRL_EN_MASK, cpu->enable ? 1 : 0) |
1850 FIELD_PREP(RTL8365MB_CPU_CTRL_INSERTMODE_MASK, cpu->insert) |
1851 FIELD_PREP(RTL8365MB_CPU_CTRL_TAG_POSITION_MASK, cpu->position) |
1852 FIELD_PREP(RTL8365MB_CPU_CTRL_RXBYTECOUNT_MASK, cpu->rx_length) |
1853 FIELD_PREP(RTL8365MB_CPU_CTRL_TAG_FORMAT_MASK, cpu->format) |
1854 FIELD_PREP(RTL8365MB_CPU_CTRL_TRAP_PORT_MASK, cpu->trap_port & 0x7) |
1855 FIELD_PREP(RTL8365MB_CPU_CTRL_TRAP_PORT_EXT_MASK,
1856 cpu->trap_port >> 3 & 0x1);
1857 ret = regmap_write(priv->map, RTL8365MB_CPU_CTRL_REG, val);
1858 if (ret)
1859 return ret;
1860
1861 return 0;
1862}
1863
1864static int rtl8365mb_change_tag_protocol(struct dsa_switch *ds,
1865 enum dsa_tag_protocol proto)
1866{
1867 struct realtek_priv *priv = ds->priv;
1868 struct rtl8365mb_cpu *cpu;
1869 struct rtl8365mb *mb;
1870
1871 mb = priv->chip_data;
1872 cpu = &mb->cpu;
1873
1874 switch (proto) {
1875 case DSA_TAG_PROTO_RTL8_4:
1876 cpu->format = RTL8365MB_CPU_FORMAT_8BYTES;
1877 cpu->position = RTL8365MB_CPU_POS_AFTER_SA;
1878 break;
1879 case DSA_TAG_PROTO_RTL8_4T:
1880 cpu->format = RTL8365MB_CPU_FORMAT_8BYTES;
1881 cpu->position = RTL8365MB_CPU_POS_BEFORE_CRC;
1882 break;
1883 /* The switch also supports a 4-byte format, similar to rtl4a but with
1884 * the same 0x04 8-bit version and probably 8-bit port source/dest.
1885 * There is no public doc about it. Not supported yet and it will probably
1886 * never be.
1887 */
1888 default:
1889 return -EPROTONOSUPPORT;
1890 }
1891
1892 return rtl8365mb_cpu_config(priv);
1893}
1894
1895static int rtl8365mb_switch_init(struct realtek_priv *priv)
1896{
1897 struct rtl8365mb *mb = priv->chip_data;
1898 const struct rtl8365mb_chip_info *ci;
1899 int ret;
1900 int i;
1901
1902 ci = mb->chip_info;
1903
1904 /* Do any chip-specific init jam before getting to the common stuff */
1905 if (ci->jam_table) {
1906 for (i = 0; i < ci->jam_size; i++) {
1907 ret = regmap_write(priv->map, ci->jam_table[i].reg,
1908 ci->jam_table[i].val);
1909 if (ret)
1910 return ret;
1911 }
1912 }
1913
1914 /* Common init jam */
1915 for (i = 0; i < ARRAY_SIZE(rtl8365mb_init_jam_common); i++) {
1916 ret = regmap_write(priv->map, rtl8365mb_init_jam_common[i].reg,
1917 rtl8365mb_init_jam_common[i].val);
1918 if (ret)
1919 return ret;
1920 }
1921
1922 return 0;
1923}
1924
1925static int rtl8365mb_reset_chip(struct realtek_priv *priv)
1926{
1927 u32 val;
1928
1929 priv->write_reg_noack(priv, RTL8365MB_CHIP_RESET_REG,
1930 FIELD_PREP(RTL8365MB_CHIP_RESET_HW_MASK, 1));
1931
1932 /* Realtek documentation says the chip needs 1 second to reset. Sleep
1933 * for 100 ms before accessing any registers to prevent ACK timeouts.
1934 */
1935 msleep(100);
1936 return regmap_read_poll_timeout(priv->map, RTL8365MB_CHIP_RESET_REG, val,
1937 !(val & RTL8365MB_CHIP_RESET_HW_MASK),
1938 20000, 1e6);
1939}
1940
1941static int rtl8365mb_setup(struct dsa_switch *ds)
1942{
1943 struct realtek_priv *priv = ds->priv;
1944 struct rtl8365mb_cpu *cpu;
1945 struct dsa_port *cpu_dp;
1946 struct rtl8365mb *mb;
1947 int ret;
1948 int i;
1949
1950 mb = priv->chip_data;
1951 cpu = &mb->cpu;
1952
1953 ret = rtl8365mb_reset_chip(priv);
1954 if (ret) {
1955 dev_err(priv->dev, "failed to reset chip: %d\n", ret);
1956 goto out_error;
1957 }
1958
1959 /* Configure switch to vendor-defined initial state */
1960 ret = rtl8365mb_switch_init(priv);
1961 if (ret) {
1962 dev_err(priv->dev, "failed to initialize switch: %d\n", ret);
1963 goto out_error;
1964 }
1965
1966 /* Set up cascading IRQs */
1967 ret = rtl8365mb_irq_setup(priv);
1968 if (ret == -EPROBE_DEFER)
1969 return ret;
1970 else if (ret)
1971 dev_info(priv->dev, "no interrupt support\n");
1972
1973 /* Configure CPU tagging */
1974 dsa_switch_for_each_cpu_port(cpu_dp, priv->ds) {
1975 cpu->mask |= BIT(cpu_dp->index);
1976
1977 if (cpu->trap_port == RTL8365MB_MAX_NUM_PORTS)
1978 cpu->trap_port = cpu_dp->index;
1979 }
1980 cpu->enable = cpu->mask > 0;
1981 ret = rtl8365mb_cpu_config(priv);
1982 if (ret)
1983 goto out_teardown_irq;
1984
1985 /* Configure ports */
1986 for (i = 0; i < priv->num_ports; i++) {
1987 struct rtl8365mb_port *p = &mb->ports[i];
1988
1989 if (dsa_is_unused_port(priv->ds, i))
1990 continue;
1991
1992 /* Forward only to the CPU */
1993 ret = rtl8365mb_port_set_isolation(priv, i, cpu->mask);
1994 if (ret)
1995 goto out_teardown_irq;
1996
1997 /* Disable learning */
1998 ret = rtl8365mb_port_set_learning(priv, i, false);
1999 if (ret)
2000 goto out_teardown_irq;
2001
2002 /* Set the initial STP state of all ports to DISABLED, otherwise
2003 * ports will still forward frames to the CPU despite being
2004 * administratively down by default.
2005 */
2006 rtl8365mb_port_stp_state_set(priv->ds, i, BR_STATE_DISABLED);
2007
2008 /* Set up per-port private data */
2009 p->priv = priv;
2010 p->index = i;
2011 }
2012
2013 ret = rtl8365mb_port_change_mtu(ds, cpu->trap_port, ETH_DATA_LEN);
2014 if (ret)
2015 goto out_teardown_irq;
2016
2017 if (priv->setup_interface) {
2018 ret = priv->setup_interface(ds);
2019 if (ret) {
2020 dev_err(priv->dev, "could not set up MDIO bus\n");
2021 goto out_teardown_irq;
2022 }
2023 }
2024
2025 /* Start statistics counter polling */
2026 rtl8365mb_stats_setup(priv);
2027
2028 return 0;
2029
2030out_teardown_irq:
2031 rtl8365mb_irq_teardown(priv);
2032
2033out_error:
2034 return ret;
2035}
2036
2037static void rtl8365mb_teardown(struct dsa_switch *ds)
2038{
2039 struct realtek_priv *priv = ds->priv;
2040
2041 rtl8365mb_stats_teardown(priv);
2042 rtl8365mb_irq_teardown(priv);
2043}
2044
2045static int rtl8365mb_get_chip_id_and_ver(struct regmap *map, u32 *id, u32 *ver)
2046{
2047 int ret;
2048
2049 /* For some reason we have to write a magic value to an arbitrary
2050 * register whenever accessing the chip ID/version registers.
2051 */
2052 ret = regmap_write(map, RTL8365MB_MAGIC_REG, RTL8365MB_MAGIC_VALUE);
2053 if (ret)
2054 return ret;
2055
2056 ret = regmap_read(map, RTL8365MB_CHIP_ID_REG, id);
2057 if (ret)
2058 return ret;
2059
2060 ret = regmap_read(map, RTL8365MB_CHIP_VER_REG, ver);
2061 if (ret)
2062 return ret;
2063
2064 /* Reset magic register */
2065 ret = regmap_write(map, RTL8365MB_MAGIC_REG, 0);
2066 if (ret)
2067 return ret;
2068
2069 return 0;
2070}
2071
2072static int rtl8365mb_detect(struct realtek_priv *priv)
2073{
2074 struct rtl8365mb *mb = priv->chip_data;
2075 u32 chip_id;
2076 u32 chip_ver;
2077 int ret;
2078 int i;
2079
2080 ret = rtl8365mb_get_chip_id_and_ver(priv->map, &chip_id, &chip_ver);
2081 if (ret) {
2082 dev_err(priv->dev, "failed to read chip id and version: %d\n",
2083 ret);
2084 return ret;
2085 }
2086
2087 for (i = 0; i < ARRAY_SIZE(rtl8365mb_chip_infos); i++) {
2088 const struct rtl8365mb_chip_info *ci = &rtl8365mb_chip_infos[i];
2089
2090 if (ci->chip_id == chip_id && ci->chip_ver == chip_ver) {
2091 mb->chip_info = ci;
2092 break;
2093 }
2094 }
2095
2096 if (!mb->chip_info) {
2097 dev_err(priv->dev,
2098 "unrecognized switch (id=0x%04x, ver=0x%04x)", chip_id,
2099 chip_ver);
2100 return -ENODEV;
2101 }
2102
2103 dev_info(priv->dev, "found an %s switch\n", mb->chip_info->name);
2104
2105 priv->num_ports = RTL8365MB_MAX_NUM_PORTS;
2106 mb->priv = priv;
2107 mb->cpu.trap_port = RTL8365MB_MAX_NUM_PORTS;
2108 mb->cpu.insert = RTL8365MB_CPU_INSERT_TO_ALL;
2109 mb->cpu.position = RTL8365MB_CPU_POS_AFTER_SA;
2110 mb->cpu.rx_length = RTL8365MB_CPU_RXLEN_64BYTES;
2111 mb->cpu.format = RTL8365MB_CPU_FORMAT_8BYTES;
2112
2113 return 0;
2114}
2115
2116static const struct dsa_switch_ops rtl8365mb_switch_ops_smi = {
2117 .get_tag_protocol = rtl8365mb_get_tag_protocol,
2118 .change_tag_protocol = rtl8365mb_change_tag_protocol,
2119 .setup = rtl8365mb_setup,
2120 .teardown = rtl8365mb_teardown,
2121 .phylink_get_caps = rtl8365mb_phylink_get_caps,
2122 .phylink_mac_config = rtl8365mb_phylink_mac_config,
2123 .phylink_mac_link_down = rtl8365mb_phylink_mac_link_down,
2124 .phylink_mac_link_up = rtl8365mb_phylink_mac_link_up,
2125 .port_stp_state_set = rtl8365mb_port_stp_state_set,
2126 .get_strings = rtl8365mb_get_strings,
2127 .get_ethtool_stats = rtl8365mb_get_ethtool_stats,
2128 .get_sset_count = rtl8365mb_get_sset_count,
2129 .get_eth_phy_stats = rtl8365mb_get_phy_stats,
2130 .get_eth_mac_stats = rtl8365mb_get_mac_stats,
2131 .get_eth_ctrl_stats = rtl8365mb_get_ctrl_stats,
2132 .get_stats64 = rtl8365mb_get_stats64,
2133 .port_change_mtu = rtl8365mb_port_change_mtu,
2134 .port_max_mtu = rtl8365mb_port_max_mtu,
2135};
2136
2137static const struct dsa_switch_ops rtl8365mb_switch_ops_mdio = {
2138 .get_tag_protocol = rtl8365mb_get_tag_protocol,
2139 .change_tag_protocol = rtl8365mb_change_tag_protocol,
2140 .setup = rtl8365mb_setup,
2141 .teardown = rtl8365mb_teardown,
2142 .phylink_get_caps = rtl8365mb_phylink_get_caps,
2143 .phylink_mac_config = rtl8365mb_phylink_mac_config,
2144 .phylink_mac_link_down = rtl8365mb_phylink_mac_link_down,
2145 .phylink_mac_link_up = rtl8365mb_phylink_mac_link_up,
2146 .phy_read = rtl8365mb_dsa_phy_read,
2147 .phy_write = rtl8365mb_dsa_phy_write,
2148 .port_stp_state_set = rtl8365mb_port_stp_state_set,
2149 .get_strings = rtl8365mb_get_strings,
2150 .get_ethtool_stats = rtl8365mb_get_ethtool_stats,
2151 .get_sset_count = rtl8365mb_get_sset_count,
2152 .get_eth_phy_stats = rtl8365mb_get_phy_stats,
2153 .get_eth_mac_stats = rtl8365mb_get_mac_stats,
2154 .get_eth_ctrl_stats = rtl8365mb_get_ctrl_stats,
2155 .get_stats64 = rtl8365mb_get_stats64,
2156 .port_change_mtu = rtl8365mb_port_change_mtu,
2157 .port_max_mtu = rtl8365mb_port_max_mtu,
2158};
2159
2160static const struct realtek_ops rtl8365mb_ops = {
2161 .detect = rtl8365mb_detect,
2162 .phy_read = rtl8365mb_phy_read,
2163 .phy_write = rtl8365mb_phy_write,
2164};
2165
2166const struct realtek_variant rtl8365mb_variant = {
2167 .ds_ops_smi = &rtl8365mb_switch_ops_smi,
2168 .ds_ops_mdio = &rtl8365mb_switch_ops_mdio,
2169 .ops = &rtl8365mb_ops,
2170 .clk_delay = 10,
2171 .cmd_read = 0xb9,
2172 .cmd_write = 0xb8,
2173 .chip_data_sz = sizeof(struct rtl8365mb),
2174};
2175EXPORT_SYMBOL_GPL(rtl8365mb_variant);
2176
2177MODULE_AUTHOR("Alvin Šipraga <alsi@bang-olufsen.dk>");
2178MODULE_DESCRIPTION("Driver for RTL8365MB-VC ethernet switch");
2179MODULE_LICENSE("GPL");
1// SPDX-License-Identifier: GPL-2.0
2/* Realtek SMI subdriver for the Realtek RTL8365MB-VC ethernet switch.
3 *
4 * Copyright (C) 2021 Alvin Šipraga <alsi@bang-olufsen.dk>
5 * Copyright (C) 2021 Michael Rasmussen <mir@bang-olufsen.dk>
6 *
7 * The RTL8365MB-VC is a 4+1 port 10/100/1000M switch controller. It includes 4
8 * integrated PHYs for the user facing ports, and an extension interface which
9 * can be connected to the CPU - or another PHY - via either MII, RMII, or
10 * RGMII. The switch is configured via the Realtek Simple Management Interface
11 * (SMI), which uses the MDIO/MDC lines.
12 *
13 * Below is a simplified block diagram of the chip and its relevant interfaces.
14 *
15 * .-----------------------------------.
16 * | |
17 * UTP <---------------> Giga PHY <-> PCS <-> P0 GMAC |
18 * UTP <---------------> Giga PHY <-> PCS <-> P1 GMAC |
19 * UTP <---------------> Giga PHY <-> PCS <-> P2 GMAC |
20 * UTP <---------------> Giga PHY <-> PCS <-> P3 GMAC |
21 * | |
22 * CPU/PHY <-MII/RMII/RGMII---> Extension <---> Extension |
23 * | interface 1 GMAC 1 |
24 * | |
25 * SMI driver/ <-MDC/SCL---> Management ~~~~~~~~~~~~~~ |
26 * EEPROM <-MDIO/SDA--> interface ~REALTEK ~~~~~ |
27 * | ~RTL8365MB ~~~ |
28 * | ~GXXXC TAIWAN~ |
29 * GPIO <--------------> Reset ~~~~~~~~~~~~~~ |
30 * | |
31 * Interrupt <----------> Link UP/DOWN events |
32 * controller | |
33 * '-----------------------------------'
34 *
35 * The driver uses DSA to integrate the 4 user and 1 extension ports into the
36 * kernel. Netdevices are created for the user ports, as are PHY devices for
37 * their integrated PHYs. The device tree firmware should also specify the link
38 * partner of the extension port - either via a fixed-link or other phy-handle.
39 * See the device tree bindings for more detailed information. Note that the
40 * driver has only been tested with a fixed-link, but in principle it should not
41 * matter.
42 *
43 * NOTE: Currently, only the RGMII interface is implemented in this driver.
44 *
45 * The interrupt line is asserted on link UP/DOWN events. The driver creates a
46 * custom irqchip to handle this interrupt and demultiplex the events by reading
47 * the status registers via SMI. Interrupts are then propagated to the relevant
48 * PHY device.
49 *
50 * The EEPROM contains initial register values which the chip will read over I2C
51 * upon hardware reset. It is also possible to omit the EEPROM. In both cases,
52 * the driver will manually reprogram some registers using jam tables to reach
53 * an initial state defined by the vendor driver.
54 *
55 * This Linux driver is written based on an OS-agnostic vendor driver from
56 * Realtek. The reference GPL-licensed sources can be found in the OpenWrt
57 * source tree under the name rtl8367c. The vendor driver claims to support a
58 * number of similar switch controllers from Realtek, but the only hardware we
59 * have is the RTL8365MB-VC. Moreover, there does not seem to be any chip under
60 * the name RTL8367C. Although one wishes that the 'C' stood for some kind of
61 * common hardware revision, there exist examples of chips with the suffix -VC
62 * which are explicitly not supported by the rtl8367c driver and which instead
63 * require the rtl8367d vendor driver. With all this uncertainty, the driver has
64 * been modestly named rtl8365mb. Future implementors may wish to rename things
65 * accordingly.
66 *
67 * In the same family of chips, some carry up to 8 user ports and up to 2
68 * extension ports. Where possible this driver tries to make things generic, but
69 * more work must be done to support these configurations. According to
70 * documentation from Realtek, the family should include the following chips:
71 *
72 * - RTL8363NB
73 * - RTL8363NB-VB
74 * - RTL8363SC
75 * - RTL8363SC-VB
76 * - RTL8364NB
77 * - RTL8364NB-VB
78 * - RTL8365MB-VC
79 * - RTL8366SC
80 * - RTL8367RB-VB
81 * - RTL8367SB
82 * - RTL8367S
83 * - RTL8370MB
84 * - RTL8310SR
85 *
86 * Some of the register logic for these additional chips has been skipped over
87 * while implementing this driver. It is therefore not possible to assume that
88 * things will work out-of-the-box for other chips, and a careful review of the
89 * vendor driver may be needed to expand support. The RTL8365MB-VC seems to be
90 * one of the simpler chips.
91 */
92
93#include <linux/bitfield.h>
94#include <linux/bitops.h>
95#include <linux/interrupt.h>
96#include <linux/irqdomain.h>
97#include <linux/mutex.h>
98#include <linux/of_irq.h>
99#include <linux/regmap.h>
100#include <linux/if_bridge.h>
101
102#include "realtek.h"
103
104/* Family-specific data and limits */
105#define RTL8365MB_PHYADDRMAX 7
106#define RTL8365MB_NUM_PHYREGS 32
107#define RTL8365MB_PHYREGMAX (RTL8365MB_NUM_PHYREGS - 1)
108#define RTL8365MB_MAX_NUM_PORTS 11
109#define RTL8365MB_MAX_NUM_EXTINTS 3
110#define RTL8365MB_LEARN_LIMIT_MAX 2112
111
112/* Chip identification registers */
113#define RTL8365MB_CHIP_ID_REG 0x1300
114
115#define RTL8365MB_CHIP_VER_REG 0x1301
116
117#define RTL8365MB_MAGIC_REG 0x13C2
118#define RTL8365MB_MAGIC_VALUE 0x0249
119
120/* Chip reset register */
121#define RTL8365MB_CHIP_RESET_REG 0x1322
122#define RTL8365MB_CHIP_RESET_SW_MASK 0x0002
123#define RTL8365MB_CHIP_RESET_HW_MASK 0x0001
124
125/* Interrupt polarity register */
126#define RTL8365MB_INTR_POLARITY_REG 0x1100
127#define RTL8365MB_INTR_POLARITY_MASK 0x0001
128#define RTL8365MB_INTR_POLARITY_HIGH 0
129#define RTL8365MB_INTR_POLARITY_LOW 1
130
131/* Interrupt control/status register - enable/check specific interrupt types */
132#define RTL8365MB_INTR_CTRL_REG 0x1101
133#define RTL8365MB_INTR_STATUS_REG 0x1102
134#define RTL8365MB_INTR_SLIENT_START_2_MASK 0x1000
135#define RTL8365MB_INTR_SLIENT_START_MASK 0x0800
136#define RTL8365MB_INTR_ACL_ACTION_MASK 0x0200
137#define RTL8365MB_INTR_CABLE_DIAG_FIN_MASK 0x0100
138#define RTL8365MB_INTR_INTERRUPT_8051_MASK 0x0080
139#define RTL8365MB_INTR_LOOP_DETECTION_MASK 0x0040
140#define RTL8365MB_INTR_GREEN_TIMER_MASK 0x0020
141#define RTL8365MB_INTR_SPECIAL_CONGEST_MASK 0x0010
142#define RTL8365MB_INTR_SPEED_CHANGE_MASK 0x0008
143#define RTL8365MB_INTR_LEARN_OVER_MASK 0x0004
144#define RTL8365MB_INTR_METER_EXCEEDED_MASK 0x0002
145#define RTL8365MB_INTR_LINK_CHANGE_MASK 0x0001
146#define RTL8365MB_INTR_ALL_MASK \
147 (RTL8365MB_INTR_SLIENT_START_2_MASK | \
148 RTL8365MB_INTR_SLIENT_START_MASK | \
149 RTL8365MB_INTR_ACL_ACTION_MASK | \
150 RTL8365MB_INTR_CABLE_DIAG_FIN_MASK | \
151 RTL8365MB_INTR_INTERRUPT_8051_MASK | \
152 RTL8365MB_INTR_LOOP_DETECTION_MASK | \
153 RTL8365MB_INTR_GREEN_TIMER_MASK | \
154 RTL8365MB_INTR_SPECIAL_CONGEST_MASK | \
155 RTL8365MB_INTR_SPEED_CHANGE_MASK | \
156 RTL8365MB_INTR_LEARN_OVER_MASK | \
157 RTL8365MB_INTR_METER_EXCEEDED_MASK | \
158 RTL8365MB_INTR_LINK_CHANGE_MASK)
159
160/* Per-port interrupt type status registers */
161#define RTL8365MB_PORT_LINKDOWN_IND_REG 0x1106
162#define RTL8365MB_PORT_LINKDOWN_IND_MASK 0x07FF
163
164#define RTL8365MB_PORT_LINKUP_IND_REG 0x1107
165#define RTL8365MB_PORT_LINKUP_IND_MASK 0x07FF
166
167/* PHY indirect access registers */
168#define RTL8365MB_INDIRECT_ACCESS_CTRL_REG 0x1F00
169#define RTL8365MB_INDIRECT_ACCESS_CTRL_RW_MASK 0x0002
170#define RTL8365MB_INDIRECT_ACCESS_CTRL_RW_READ 0
171#define RTL8365MB_INDIRECT_ACCESS_CTRL_RW_WRITE 1
172#define RTL8365MB_INDIRECT_ACCESS_CTRL_CMD_MASK 0x0001
173#define RTL8365MB_INDIRECT_ACCESS_CTRL_CMD_VALUE 1
174#define RTL8365MB_INDIRECT_ACCESS_STATUS_REG 0x1F01
175#define RTL8365MB_INDIRECT_ACCESS_ADDRESS_REG 0x1F02
176#define RTL8365MB_INDIRECT_ACCESS_ADDRESS_OCPADR_5_1_MASK GENMASK(4, 0)
177#define RTL8365MB_INDIRECT_ACCESS_ADDRESS_PHYNUM_MASK GENMASK(7, 5)
178#define RTL8365MB_INDIRECT_ACCESS_ADDRESS_OCPADR_9_6_MASK GENMASK(11, 8)
179#define RTL8365MB_PHY_BASE 0x2000
180#define RTL8365MB_INDIRECT_ACCESS_WRITE_DATA_REG 0x1F03
181#define RTL8365MB_INDIRECT_ACCESS_READ_DATA_REG 0x1F04
182
183/* PHY OCP address prefix register */
184#define RTL8365MB_GPHY_OCP_MSB_0_REG 0x1D15
185#define RTL8365MB_GPHY_OCP_MSB_0_CFG_CPU_OCPADR_MASK 0x0FC0
186#define RTL8365MB_PHY_OCP_ADDR_PREFIX_MASK 0xFC00
187
188/* The PHY OCP addresses of PHY registers 0~31 start here */
189#define RTL8365MB_PHY_OCP_ADDR_PHYREG_BASE 0xA400
190
191/* External interface port mode values - used in DIGITAL_INTERFACE_SELECT */
192#define RTL8365MB_EXT_PORT_MODE_DISABLE 0
193#define RTL8365MB_EXT_PORT_MODE_RGMII 1
194#define RTL8365MB_EXT_PORT_MODE_MII_MAC 2
195#define RTL8365MB_EXT_PORT_MODE_MII_PHY 3
196#define RTL8365MB_EXT_PORT_MODE_TMII_MAC 4
197#define RTL8365MB_EXT_PORT_MODE_TMII_PHY 5
198#define RTL8365MB_EXT_PORT_MODE_GMII 6
199#define RTL8365MB_EXT_PORT_MODE_RMII_MAC 7
200#define RTL8365MB_EXT_PORT_MODE_RMII_PHY 8
201#define RTL8365MB_EXT_PORT_MODE_SGMII 9
202#define RTL8365MB_EXT_PORT_MODE_HSGMII 10
203#define RTL8365MB_EXT_PORT_MODE_1000X_100FX 11
204#define RTL8365MB_EXT_PORT_MODE_1000X 12
205#define RTL8365MB_EXT_PORT_MODE_100FX 13
206
207/* External interface mode configuration registers 0~1 */
208#define RTL8365MB_DIGITAL_INTERFACE_SELECT_REG0 0x1305 /* EXT1 */
209#define RTL8365MB_DIGITAL_INTERFACE_SELECT_REG1 0x13C3 /* EXT2 */
210#define RTL8365MB_DIGITAL_INTERFACE_SELECT_REG(_extint) \
211 ((_extint) == 1 ? RTL8365MB_DIGITAL_INTERFACE_SELECT_REG0 : \
212 (_extint) == 2 ? RTL8365MB_DIGITAL_INTERFACE_SELECT_REG1 : \
213 0x0)
214#define RTL8365MB_DIGITAL_INTERFACE_SELECT_MODE_MASK(_extint) \
215 (0xF << (((_extint) % 2)))
216#define RTL8365MB_DIGITAL_INTERFACE_SELECT_MODE_OFFSET(_extint) \
217 (((_extint) % 2) * 4)
218
219/* External interface RGMII TX/RX delay configuration registers 0~2 */
220#define RTL8365MB_EXT_RGMXF_REG0 0x1306 /* EXT0 */
221#define RTL8365MB_EXT_RGMXF_REG1 0x1307 /* EXT1 */
222#define RTL8365MB_EXT_RGMXF_REG2 0x13C5 /* EXT2 */
223#define RTL8365MB_EXT_RGMXF_REG(_extint) \
224 ((_extint) == 0 ? RTL8365MB_EXT_RGMXF_REG0 : \
225 (_extint) == 1 ? RTL8365MB_EXT_RGMXF_REG1 : \
226 (_extint) == 2 ? RTL8365MB_EXT_RGMXF_REG2 : \
227 0x0)
228#define RTL8365MB_EXT_RGMXF_RXDELAY_MASK 0x0007
229#define RTL8365MB_EXT_RGMXF_TXDELAY_MASK 0x0008
230
231/* External interface port speed values - used in DIGITAL_INTERFACE_FORCE */
232#define RTL8365MB_PORT_SPEED_10M 0
233#define RTL8365MB_PORT_SPEED_100M 1
234#define RTL8365MB_PORT_SPEED_1000M 2
235
236/* External interface force configuration registers 0~2 */
237#define RTL8365MB_DIGITAL_INTERFACE_FORCE_REG0 0x1310 /* EXT0 */
238#define RTL8365MB_DIGITAL_INTERFACE_FORCE_REG1 0x1311 /* EXT1 */
239#define RTL8365MB_DIGITAL_INTERFACE_FORCE_REG2 0x13C4 /* EXT2 */
240#define RTL8365MB_DIGITAL_INTERFACE_FORCE_REG(_extint) \
241 ((_extint) == 0 ? RTL8365MB_DIGITAL_INTERFACE_FORCE_REG0 : \
242 (_extint) == 1 ? RTL8365MB_DIGITAL_INTERFACE_FORCE_REG1 : \
243 (_extint) == 2 ? RTL8365MB_DIGITAL_INTERFACE_FORCE_REG2 : \
244 0x0)
245#define RTL8365MB_DIGITAL_INTERFACE_FORCE_EN_MASK 0x1000
246#define RTL8365MB_DIGITAL_INTERFACE_FORCE_NWAY_MASK 0x0080
247#define RTL8365MB_DIGITAL_INTERFACE_FORCE_TXPAUSE_MASK 0x0040
248#define RTL8365MB_DIGITAL_INTERFACE_FORCE_RXPAUSE_MASK 0x0020
249#define RTL8365MB_DIGITAL_INTERFACE_FORCE_LINK_MASK 0x0010
250#define RTL8365MB_DIGITAL_INTERFACE_FORCE_DUPLEX_MASK 0x0004
251#define RTL8365MB_DIGITAL_INTERFACE_FORCE_SPEED_MASK 0x0003
252
253/* CPU port mask register - controls which ports are treated as CPU ports */
254#define RTL8365MB_CPU_PORT_MASK_REG 0x1219
255#define RTL8365MB_CPU_PORT_MASK_MASK 0x07FF
256
257/* CPU control register */
258#define RTL8365MB_CPU_CTRL_REG 0x121A
259#define RTL8365MB_CPU_CTRL_TRAP_PORT_EXT_MASK 0x0400
260#define RTL8365MB_CPU_CTRL_TAG_FORMAT_MASK 0x0200
261#define RTL8365MB_CPU_CTRL_RXBYTECOUNT_MASK 0x0080
262#define RTL8365MB_CPU_CTRL_TAG_POSITION_MASK 0x0040
263#define RTL8365MB_CPU_CTRL_TRAP_PORT_MASK 0x0038
264#define RTL8365MB_CPU_CTRL_INSERTMODE_MASK 0x0006
265#define RTL8365MB_CPU_CTRL_EN_MASK 0x0001
266
267/* Maximum packet length register */
268#define RTL8365MB_CFG0_MAX_LEN_REG 0x088C
269#define RTL8365MB_CFG0_MAX_LEN_MASK 0x3FFF
270
271/* Port learning limit registers */
272#define RTL8365MB_LUT_PORT_LEARN_LIMIT_BASE 0x0A20
273#define RTL8365MB_LUT_PORT_LEARN_LIMIT_REG(_physport) \
274 (RTL8365MB_LUT_PORT_LEARN_LIMIT_BASE + (_physport))
275
276/* Port isolation (forwarding mask) registers */
277#define RTL8365MB_PORT_ISOLATION_REG_BASE 0x08A2
278#define RTL8365MB_PORT_ISOLATION_REG(_physport) \
279 (RTL8365MB_PORT_ISOLATION_REG_BASE + (_physport))
280#define RTL8365MB_PORT_ISOLATION_MASK 0x07FF
281
282/* MSTP port state registers - indexed by tree instance */
283#define RTL8365MB_MSTI_CTRL_BASE 0x0A00
284#define RTL8365MB_MSTI_CTRL_REG(_msti, _physport) \
285 (RTL8365MB_MSTI_CTRL_BASE + ((_msti) << 1) + ((_physport) >> 3))
286#define RTL8365MB_MSTI_CTRL_PORT_STATE_OFFSET(_physport) ((_physport) << 1)
287#define RTL8365MB_MSTI_CTRL_PORT_STATE_MASK(_physport) \
288 (0x3 << RTL8365MB_MSTI_CTRL_PORT_STATE_OFFSET((_physport)))
289
290/* MIB counter value registers */
291#define RTL8365MB_MIB_COUNTER_BASE 0x1000
292#define RTL8365MB_MIB_COUNTER_REG(_x) (RTL8365MB_MIB_COUNTER_BASE + (_x))
293
294/* MIB counter address register */
295#define RTL8365MB_MIB_ADDRESS_REG 0x1004
296#define RTL8365MB_MIB_ADDRESS_PORT_OFFSET 0x007C
297#define RTL8365MB_MIB_ADDRESS(_p, _x) \
298 (((RTL8365MB_MIB_ADDRESS_PORT_OFFSET) * (_p) + (_x)) >> 2)
299
300#define RTL8365MB_MIB_CTRL0_REG 0x1005
301#define RTL8365MB_MIB_CTRL0_RESET_MASK 0x0002
302#define RTL8365MB_MIB_CTRL0_BUSY_MASK 0x0001
303
304/* The DSA callback .get_stats64 runs in atomic context, so we are not allowed
305 * to block. On the other hand, accessing MIB counters absolutely requires us to
306 * block. The solution is thus to schedule work which polls the MIB counters
307 * asynchronously and updates some private data, which the callback can then
308 * fetch atomically. Three seconds should be a good enough polling interval.
309 */
310#define RTL8365MB_STATS_INTERVAL_JIFFIES (3 * HZ)
311
312enum rtl8365mb_mib_counter_index {
313 RTL8365MB_MIB_ifInOctets,
314 RTL8365MB_MIB_dot3StatsFCSErrors,
315 RTL8365MB_MIB_dot3StatsSymbolErrors,
316 RTL8365MB_MIB_dot3InPauseFrames,
317 RTL8365MB_MIB_dot3ControlInUnknownOpcodes,
318 RTL8365MB_MIB_etherStatsFragments,
319 RTL8365MB_MIB_etherStatsJabbers,
320 RTL8365MB_MIB_ifInUcastPkts,
321 RTL8365MB_MIB_etherStatsDropEvents,
322 RTL8365MB_MIB_ifInMulticastPkts,
323 RTL8365MB_MIB_ifInBroadcastPkts,
324 RTL8365MB_MIB_inMldChecksumError,
325 RTL8365MB_MIB_inIgmpChecksumError,
326 RTL8365MB_MIB_inMldSpecificQuery,
327 RTL8365MB_MIB_inMldGeneralQuery,
328 RTL8365MB_MIB_inIgmpSpecificQuery,
329 RTL8365MB_MIB_inIgmpGeneralQuery,
330 RTL8365MB_MIB_inMldLeaves,
331 RTL8365MB_MIB_inIgmpLeaves,
332 RTL8365MB_MIB_etherStatsOctets,
333 RTL8365MB_MIB_etherStatsUnderSizePkts,
334 RTL8365MB_MIB_etherOversizeStats,
335 RTL8365MB_MIB_etherStatsPkts64Octets,
336 RTL8365MB_MIB_etherStatsPkts65to127Octets,
337 RTL8365MB_MIB_etherStatsPkts128to255Octets,
338 RTL8365MB_MIB_etherStatsPkts256to511Octets,
339 RTL8365MB_MIB_etherStatsPkts512to1023Octets,
340 RTL8365MB_MIB_etherStatsPkts1024to1518Octets,
341 RTL8365MB_MIB_ifOutOctets,
342 RTL8365MB_MIB_dot3StatsSingleCollisionFrames,
343 RTL8365MB_MIB_dot3StatsMultipleCollisionFrames,
344 RTL8365MB_MIB_dot3StatsDeferredTransmissions,
345 RTL8365MB_MIB_dot3StatsLateCollisions,
346 RTL8365MB_MIB_etherStatsCollisions,
347 RTL8365MB_MIB_dot3StatsExcessiveCollisions,
348 RTL8365MB_MIB_dot3OutPauseFrames,
349 RTL8365MB_MIB_ifOutDiscards,
350 RTL8365MB_MIB_dot1dTpPortInDiscards,
351 RTL8365MB_MIB_ifOutUcastPkts,
352 RTL8365MB_MIB_ifOutMulticastPkts,
353 RTL8365MB_MIB_ifOutBroadcastPkts,
354 RTL8365MB_MIB_outOampduPkts,
355 RTL8365MB_MIB_inOampduPkts,
356 RTL8365MB_MIB_inIgmpJoinsSuccess,
357 RTL8365MB_MIB_inIgmpJoinsFail,
358 RTL8365MB_MIB_inMldJoinsSuccess,
359 RTL8365MB_MIB_inMldJoinsFail,
360 RTL8365MB_MIB_inReportSuppressionDrop,
361 RTL8365MB_MIB_inLeaveSuppressionDrop,
362 RTL8365MB_MIB_outIgmpReports,
363 RTL8365MB_MIB_outIgmpLeaves,
364 RTL8365MB_MIB_outIgmpGeneralQuery,
365 RTL8365MB_MIB_outIgmpSpecificQuery,
366 RTL8365MB_MIB_outMldReports,
367 RTL8365MB_MIB_outMldLeaves,
368 RTL8365MB_MIB_outMldGeneralQuery,
369 RTL8365MB_MIB_outMldSpecificQuery,
370 RTL8365MB_MIB_inKnownMulticastPkts,
371 RTL8365MB_MIB_END,
372};
373
374struct rtl8365mb_mib_counter {
375 u32 offset;
376 u32 length;
377 const char *name;
378};
379
380#define RTL8365MB_MAKE_MIB_COUNTER(_offset, _length, _name) \
381 [RTL8365MB_MIB_ ## _name] = { _offset, _length, #_name }
382
383static struct rtl8365mb_mib_counter rtl8365mb_mib_counters[] = {
384 RTL8365MB_MAKE_MIB_COUNTER(0, 4, ifInOctets),
385 RTL8365MB_MAKE_MIB_COUNTER(4, 2, dot3StatsFCSErrors),
386 RTL8365MB_MAKE_MIB_COUNTER(6, 2, dot3StatsSymbolErrors),
387 RTL8365MB_MAKE_MIB_COUNTER(8, 2, dot3InPauseFrames),
388 RTL8365MB_MAKE_MIB_COUNTER(10, 2, dot3ControlInUnknownOpcodes),
389 RTL8365MB_MAKE_MIB_COUNTER(12, 2, etherStatsFragments),
390 RTL8365MB_MAKE_MIB_COUNTER(14, 2, etherStatsJabbers),
391 RTL8365MB_MAKE_MIB_COUNTER(16, 2, ifInUcastPkts),
392 RTL8365MB_MAKE_MIB_COUNTER(18, 2, etherStatsDropEvents),
393 RTL8365MB_MAKE_MIB_COUNTER(20, 2, ifInMulticastPkts),
394 RTL8365MB_MAKE_MIB_COUNTER(22, 2, ifInBroadcastPkts),
395 RTL8365MB_MAKE_MIB_COUNTER(24, 2, inMldChecksumError),
396 RTL8365MB_MAKE_MIB_COUNTER(26, 2, inIgmpChecksumError),
397 RTL8365MB_MAKE_MIB_COUNTER(28, 2, inMldSpecificQuery),
398 RTL8365MB_MAKE_MIB_COUNTER(30, 2, inMldGeneralQuery),
399 RTL8365MB_MAKE_MIB_COUNTER(32, 2, inIgmpSpecificQuery),
400 RTL8365MB_MAKE_MIB_COUNTER(34, 2, inIgmpGeneralQuery),
401 RTL8365MB_MAKE_MIB_COUNTER(36, 2, inMldLeaves),
402 RTL8365MB_MAKE_MIB_COUNTER(38, 2, inIgmpLeaves),
403 RTL8365MB_MAKE_MIB_COUNTER(40, 4, etherStatsOctets),
404 RTL8365MB_MAKE_MIB_COUNTER(44, 2, etherStatsUnderSizePkts),
405 RTL8365MB_MAKE_MIB_COUNTER(46, 2, etherOversizeStats),
406 RTL8365MB_MAKE_MIB_COUNTER(48, 2, etherStatsPkts64Octets),
407 RTL8365MB_MAKE_MIB_COUNTER(50, 2, etherStatsPkts65to127Octets),
408 RTL8365MB_MAKE_MIB_COUNTER(52, 2, etherStatsPkts128to255Octets),
409 RTL8365MB_MAKE_MIB_COUNTER(54, 2, etherStatsPkts256to511Octets),
410 RTL8365MB_MAKE_MIB_COUNTER(56, 2, etherStatsPkts512to1023Octets),
411 RTL8365MB_MAKE_MIB_COUNTER(58, 2, etherStatsPkts1024to1518Octets),
412 RTL8365MB_MAKE_MIB_COUNTER(60, 4, ifOutOctets),
413 RTL8365MB_MAKE_MIB_COUNTER(64, 2, dot3StatsSingleCollisionFrames),
414 RTL8365MB_MAKE_MIB_COUNTER(66, 2, dot3StatsMultipleCollisionFrames),
415 RTL8365MB_MAKE_MIB_COUNTER(68, 2, dot3StatsDeferredTransmissions),
416 RTL8365MB_MAKE_MIB_COUNTER(70, 2, dot3StatsLateCollisions),
417 RTL8365MB_MAKE_MIB_COUNTER(72, 2, etherStatsCollisions),
418 RTL8365MB_MAKE_MIB_COUNTER(74, 2, dot3StatsExcessiveCollisions),
419 RTL8365MB_MAKE_MIB_COUNTER(76, 2, dot3OutPauseFrames),
420 RTL8365MB_MAKE_MIB_COUNTER(78, 2, ifOutDiscards),
421 RTL8365MB_MAKE_MIB_COUNTER(80, 2, dot1dTpPortInDiscards),
422 RTL8365MB_MAKE_MIB_COUNTER(82, 2, ifOutUcastPkts),
423 RTL8365MB_MAKE_MIB_COUNTER(84, 2, ifOutMulticastPkts),
424 RTL8365MB_MAKE_MIB_COUNTER(86, 2, ifOutBroadcastPkts),
425 RTL8365MB_MAKE_MIB_COUNTER(88, 2, outOampduPkts),
426 RTL8365MB_MAKE_MIB_COUNTER(90, 2, inOampduPkts),
427 RTL8365MB_MAKE_MIB_COUNTER(92, 4, inIgmpJoinsSuccess),
428 RTL8365MB_MAKE_MIB_COUNTER(96, 2, inIgmpJoinsFail),
429 RTL8365MB_MAKE_MIB_COUNTER(98, 2, inMldJoinsSuccess),
430 RTL8365MB_MAKE_MIB_COUNTER(100, 2, inMldJoinsFail),
431 RTL8365MB_MAKE_MIB_COUNTER(102, 2, inReportSuppressionDrop),
432 RTL8365MB_MAKE_MIB_COUNTER(104, 2, inLeaveSuppressionDrop),
433 RTL8365MB_MAKE_MIB_COUNTER(106, 2, outIgmpReports),
434 RTL8365MB_MAKE_MIB_COUNTER(108, 2, outIgmpLeaves),
435 RTL8365MB_MAKE_MIB_COUNTER(110, 2, outIgmpGeneralQuery),
436 RTL8365MB_MAKE_MIB_COUNTER(112, 2, outIgmpSpecificQuery),
437 RTL8365MB_MAKE_MIB_COUNTER(114, 2, outMldReports),
438 RTL8365MB_MAKE_MIB_COUNTER(116, 2, outMldLeaves),
439 RTL8365MB_MAKE_MIB_COUNTER(118, 2, outMldGeneralQuery),
440 RTL8365MB_MAKE_MIB_COUNTER(120, 2, outMldSpecificQuery),
441 RTL8365MB_MAKE_MIB_COUNTER(122, 2, inKnownMulticastPkts),
442};
443
444static_assert(ARRAY_SIZE(rtl8365mb_mib_counters) == RTL8365MB_MIB_END);
445
446struct rtl8365mb_jam_tbl_entry {
447 u16 reg;
448 u16 val;
449};
450
451/* Lifted from the vendor driver sources */
452static const struct rtl8365mb_jam_tbl_entry rtl8365mb_init_jam_8365mb_vc[] = {
453 { 0x13EB, 0x15BB }, { 0x1303, 0x06D6 }, { 0x1304, 0x0700 },
454 { 0x13E2, 0x003F }, { 0x13F9, 0x0090 }, { 0x121E, 0x03CA },
455 { 0x1233, 0x0352 }, { 0x1237, 0x00A0 }, { 0x123A, 0x0030 },
456 { 0x1239, 0x0084 }, { 0x0301, 0x1000 }, { 0x1349, 0x001F },
457 { 0x18E0, 0x4004 }, { 0x122B, 0x241C }, { 0x1305, 0xC000 },
458 { 0x13F0, 0x0000 },
459};
460
461static const struct rtl8365mb_jam_tbl_entry rtl8365mb_init_jam_common[] = {
462 { 0x1200, 0x7FCB }, { 0x0884, 0x0003 }, { 0x06EB, 0x0001 },
463 { 0x03Fa, 0x0007 }, { 0x08C8, 0x00C0 }, { 0x0A30, 0x020E },
464 { 0x0800, 0x0000 }, { 0x0802, 0x0000 }, { 0x09DA, 0x0013 },
465 { 0x1D32, 0x0002 },
466};
467
468enum rtl8365mb_phy_interface_mode {
469 RTL8365MB_PHY_INTERFACE_MODE_INVAL = 0,
470 RTL8365MB_PHY_INTERFACE_MODE_INTERNAL = BIT(0),
471 RTL8365MB_PHY_INTERFACE_MODE_MII = BIT(1),
472 RTL8365MB_PHY_INTERFACE_MODE_TMII = BIT(2),
473 RTL8365MB_PHY_INTERFACE_MODE_RMII = BIT(3),
474 RTL8365MB_PHY_INTERFACE_MODE_RGMII = BIT(4),
475 RTL8365MB_PHY_INTERFACE_MODE_SGMII = BIT(5),
476 RTL8365MB_PHY_INTERFACE_MODE_HSGMII = BIT(6),
477};
478
479/**
480 * struct rtl8365mb_extint - external interface info
481 * @port: the port with an external interface
482 * @id: the external interface ID, which is either 0, 1, or 2
483 * @supported_interfaces: a bitmask of supported PHY interface modes
484 *
485 * Represents a mapping: port -> { id, supported_interfaces }. To be embedded
486 * in &struct rtl8365mb_chip_info for every port with an external interface.
487 */
488struct rtl8365mb_extint {
489 int port;
490 int id;
491 unsigned int supported_interfaces;
492};
493
494/**
495 * struct rtl8365mb_chip_info - static chip-specific info
496 * @name: human-readable chip name
497 * @chip_id: chip identifier
498 * @chip_ver: chip silicon revision
499 * @extints: available external interfaces
500 * @jam_table: chip-specific initialization jam table
501 * @jam_size: size of the chip's jam table
502 *
503 * These data are specific to a given chip in the family of switches supported
504 * by this driver. When adding support for another chip in the family, a new
505 * chip info should be added to the rtl8365mb_chip_infos array.
506 */
507struct rtl8365mb_chip_info {
508 const char *name;
509 u32 chip_id;
510 u32 chip_ver;
511 const struct rtl8365mb_extint extints[RTL8365MB_MAX_NUM_EXTINTS];
512 const struct rtl8365mb_jam_tbl_entry *jam_table;
513 size_t jam_size;
514};
515
516/* Chip info for each supported switch in the family */
517#define PHY_INTF(_mode) (RTL8365MB_PHY_INTERFACE_MODE_ ## _mode)
518static const struct rtl8365mb_chip_info rtl8365mb_chip_infos[] = {
519 {
520 .name = "RTL8365MB-VC",
521 .chip_id = 0x6367,
522 .chip_ver = 0x0040,
523 .extints = {
524 { 6, 1, PHY_INTF(MII) | PHY_INTF(TMII) |
525 PHY_INTF(RMII) | PHY_INTF(RGMII) },
526 },
527 .jam_table = rtl8365mb_init_jam_8365mb_vc,
528 .jam_size = ARRAY_SIZE(rtl8365mb_init_jam_8365mb_vc),
529 },
530 {
531 .name = "RTL8367S",
532 .chip_id = 0x6367,
533 .chip_ver = 0x00A0,
534 .extints = {
535 { 6, 1, PHY_INTF(SGMII) | PHY_INTF(HSGMII) },
536 { 7, 2, PHY_INTF(MII) | PHY_INTF(TMII) |
537 PHY_INTF(RMII) | PHY_INTF(RGMII) },
538 },
539 .jam_table = rtl8365mb_init_jam_8365mb_vc,
540 .jam_size = ARRAY_SIZE(rtl8365mb_init_jam_8365mb_vc),
541 },
542 {
543 .name = "RTL8367RB-VB",
544 .chip_id = 0x6367,
545 .chip_ver = 0x0020,
546 .extints = {
547 { 6, 1, PHY_INTF(MII) | PHY_INTF(TMII) |
548 PHY_INTF(RMII) | PHY_INTF(RGMII) },
549 { 7, 2, PHY_INTF(MII) | PHY_INTF(TMII) |
550 PHY_INTF(RMII) | PHY_INTF(RGMII) },
551 },
552 .jam_table = rtl8365mb_init_jam_8365mb_vc,
553 .jam_size = ARRAY_SIZE(rtl8365mb_init_jam_8365mb_vc),
554 },
555};
556
557enum rtl8365mb_stp_state {
558 RTL8365MB_STP_STATE_DISABLED = 0,
559 RTL8365MB_STP_STATE_BLOCKING = 1,
560 RTL8365MB_STP_STATE_LEARNING = 2,
561 RTL8365MB_STP_STATE_FORWARDING = 3,
562};
563
564enum rtl8365mb_cpu_insert {
565 RTL8365MB_CPU_INSERT_TO_ALL = 0,
566 RTL8365MB_CPU_INSERT_TO_TRAPPING = 1,
567 RTL8365MB_CPU_INSERT_TO_NONE = 2,
568};
569
570enum rtl8365mb_cpu_position {
571 RTL8365MB_CPU_POS_AFTER_SA = 0,
572 RTL8365MB_CPU_POS_BEFORE_CRC = 1,
573};
574
575enum rtl8365mb_cpu_format {
576 RTL8365MB_CPU_FORMAT_8BYTES = 0,
577 RTL8365MB_CPU_FORMAT_4BYTES = 1,
578};
579
580enum rtl8365mb_cpu_rxlen {
581 RTL8365MB_CPU_RXLEN_72BYTES = 0,
582 RTL8365MB_CPU_RXLEN_64BYTES = 1,
583};
584
585/**
586 * struct rtl8365mb_cpu - CPU port configuration
587 * @enable: enable/disable hardware insertion of CPU tag in switch->CPU frames
588 * @mask: port mask of ports that parse should parse CPU tags
589 * @trap_port: forward trapped frames to this port
590 * @insert: CPU tag insertion mode in switch->CPU frames
591 * @position: position of CPU tag in frame
592 * @rx_length: minimum CPU RX length
593 * @format: CPU tag format
594 *
595 * Represents the CPU tagging and CPU port configuration of the switch. These
596 * settings are configurable at runtime.
597 */
598struct rtl8365mb_cpu {
599 bool enable;
600 u32 mask;
601 u32 trap_port;
602 enum rtl8365mb_cpu_insert insert;
603 enum rtl8365mb_cpu_position position;
604 enum rtl8365mb_cpu_rxlen rx_length;
605 enum rtl8365mb_cpu_format format;
606};
607
608/**
609 * struct rtl8365mb_port - private per-port data
610 * @priv: pointer to parent realtek_priv data
611 * @index: DSA port index, same as dsa_port::index
612 * @stats: link statistics populated by rtl8365mb_stats_poll, ready for atomic
613 * access via rtl8365mb_get_stats64
614 * @stats_lock: protect the stats structure during read/update
615 * @mib_work: delayed work for polling MIB counters
616 */
617struct rtl8365mb_port {
618 struct realtek_priv *priv;
619 unsigned int index;
620 struct rtnl_link_stats64 stats;
621 spinlock_t stats_lock;
622 struct delayed_work mib_work;
623};
624
625/**
626 * struct rtl8365mb - driver private data
627 * @priv: pointer to parent realtek_priv data
628 * @irq: registered IRQ or zero
629 * @chip_info: chip-specific info about the attached switch
630 * @cpu: CPU tagging and CPU port configuration for this chip
631 * @mib_lock: prevent concurrent reads of MIB counters
632 * @ports: per-port data
633 *
634 * Private data for this driver.
635 */
636struct rtl8365mb {
637 struct realtek_priv *priv;
638 int irq;
639 const struct rtl8365mb_chip_info *chip_info;
640 struct rtl8365mb_cpu cpu;
641 struct mutex mib_lock;
642 struct rtl8365mb_port ports[RTL8365MB_MAX_NUM_PORTS];
643};
644
645static int rtl8365mb_phy_poll_busy(struct realtek_priv *priv)
646{
647 u32 val;
648
649 return regmap_read_poll_timeout(priv->map_nolock,
650 RTL8365MB_INDIRECT_ACCESS_STATUS_REG,
651 val, !val, 10, 100);
652}
653
654static int rtl8365mb_phy_ocp_prepare(struct realtek_priv *priv, int phy,
655 u32 ocp_addr)
656{
657 u32 val;
658 int ret;
659
660 /* Set OCP prefix */
661 val = FIELD_GET(RTL8365MB_PHY_OCP_ADDR_PREFIX_MASK, ocp_addr);
662 ret = regmap_update_bits(
663 priv->map_nolock, RTL8365MB_GPHY_OCP_MSB_0_REG,
664 RTL8365MB_GPHY_OCP_MSB_0_CFG_CPU_OCPADR_MASK,
665 FIELD_PREP(RTL8365MB_GPHY_OCP_MSB_0_CFG_CPU_OCPADR_MASK, val));
666 if (ret)
667 return ret;
668
669 /* Set PHY register address */
670 val = RTL8365MB_PHY_BASE;
671 val |= FIELD_PREP(RTL8365MB_INDIRECT_ACCESS_ADDRESS_PHYNUM_MASK, phy);
672 val |= FIELD_PREP(RTL8365MB_INDIRECT_ACCESS_ADDRESS_OCPADR_5_1_MASK,
673 ocp_addr >> 1);
674 val |= FIELD_PREP(RTL8365MB_INDIRECT_ACCESS_ADDRESS_OCPADR_9_6_MASK,
675 ocp_addr >> 6);
676 ret = regmap_write(priv->map_nolock,
677 RTL8365MB_INDIRECT_ACCESS_ADDRESS_REG, val);
678 if (ret)
679 return ret;
680
681 return 0;
682}
683
684static int rtl8365mb_phy_ocp_read(struct realtek_priv *priv, int phy,
685 u32 ocp_addr, u16 *data)
686{
687 u32 val;
688 int ret;
689
690 mutex_lock(&priv->map_lock);
691
692 ret = rtl8365mb_phy_poll_busy(priv);
693 if (ret)
694 goto out;
695
696 ret = rtl8365mb_phy_ocp_prepare(priv, phy, ocp_addr);
697 if (ret)
698 goto out;
699
700 /* Execute read operation */
701 val = FIELD_PREP(RTL8365MB_INDIRECT_ACCESS_CTRL_CMD_MASK,
702 RTL8365MB_INDIRECT_ACCESS_CTRL_CMD_VALUE) |
703 FIELD_PREP(RTL8365MB_INDIRECT_ACCESS_CTRL_RW_MASK,
704 RTL8365MB_INDIRECT_ACCESS_CTRL_RW_READ);
705 ret = regmap_write(priv->map_nolock, RTL8365MB_INDIRECT_ACCESS_CTRL_REG,
706 val);
707 if (ret)
708 goto out;
709
710 ret = rtl8365mb_phy_poll_busy(priv);
711 if (ret)
712 goto out;
713
714 /* Get PHY register data */
715 ret = regmap_read(priv->map_nolock,
716 RTL8365MB_INDIRECT_ACCESS_READ_DATA_REG, &val);
717 if (ret)
718 goto out;
719
720 *data = val & 0xFFFF;
721
722out:
723 mutex_unlock(&priv->map_lock);
724
725 return ret;
726}
727
728static int rtl8365mb_phy_ocp_write(struct realtek_priv *priv, int phy,
729 u32 ocp_addr, u16 data)
730{
731 u32 val;
732 int ret;
733
734 mutex_lock(&priv->map_lock);
735
736 ret = rtl8365mb_phy_poll_busy(priv);
737 if (ret)
738 goto out;
739
740 ret = rtl8365mb_phy_ocp_prepare(priv, phy, ocp_addr);
741 if (ret)
742 goto out;
743
744 /* Set PHY register data */
745 ret = regmap_write(priv->map_nolock,
746 RTL8365MB_INDIRECT_ACCESS_WRITE_DATA_REG, data);
747 if (ret)
748 goto out;
749
750 /* Execute write operation */
751 val = FIELD_PREP(RTL8365MB_INDIRECT_ACCESS_CTRL_CMD_MASK,
752 RTL8365MB_INDIRECT_ACCESS_CTRL_CMD_VALUE) |
753 FIELD_PREP(RTL8365MB_INDIRECT_ACCESS_CTRL_RW_MASK,
754 RTL8365MB_INDIRECT_ACCESS_CTRL_RW_WRITE);
755 ret = regmap_write(priv->map_nolock, RTL8365MB_INDIRECT_ACCESS_CTRL_REG,
756 val);
757 if (ret)
758 goto out;
759
760 ret = rtl8365mb_phy_poll_busy(priv);
761 if (ret)
762 goto out;
763
764out:
765 mutex_unlock(&priv->map_lock);
766
767 return 0;
768}
769
770static int rtl8365mb_phy_read(struct realtek_priv *priv, int phy, int regnum)
771{
772 u32 ocp_addr;
773 u16 val;
774 int ret;
775
776 if (phy > RTL8365MB_PHYADDRMAX)
777 return -EINVAL;
778
779 if (regnum > RTL8365MB_PHYREGMAX)
780 return -EINVAL;
781
782 ocp_addr = RTL8365MB_PHY_OCP_ADDR_PHYREG_BASE + regnum * 2;
783
784 ret = rtl8365mb_phy_ocp_read(priv, phy, ocp_addr, &val);
785 if (ret) {
786 dev_err(priv->dev,
787 "failed to read PHY%d reg %02x @ %04x, ret %d\n", phy,
788 regnum, ocp_addr, ret);
789 return ret;
790 }
791
792 dev_dbg(priv->dev, "read PHY%d register 0x%02x @ %04x, val <- %04x\n",
793 phy, regnum, ocp_addr, val);
794
795 return val;
796}
797
798static int rtl8365mb_phy_write(struct realtek_priv *priv, int phy, int regnum,
799 u16 val)
800{
801 u32 ocp_addr;
802 int ret;
803
804 if (phy > RTL8365MB_PHYADDRMAX)
805 return -EINVAL;
806
807 if (regnum > RTL8365MB_PHYREGMAX)
808 return -EINVAL;
809
810 ocp_addr = RTL8365MB_PHY_OCP_ADDR_PHYREG_BASE + regnum * 2;
811
812 ret = rtl8365mb_phy_ocp_write(priv, phy, ocp_addr, val);
813 if (ret) {
814 dev_err(priv->dev,
815 "failed to write PHY%d reg %02x @ %04x, ret %d\n", phy,
816 regnum, ocp_addr, ret);
817 return ret;
818 }
819
820 dev_dbg(priv->dev, "write PHY%d register 0x%02x @ %04x, val -> %04x\n",
821 phy, regnum, ocp_addr, val);
822
823 return 0;
824}
825
826static int rtl8365mb_dsa_phy_read(struct dsa_switch *ds, int phy, int regnum)
827{
828 return rtl8365mb_phy_read(ds->priv, phy, regnum);
829}
830
831static int rtl8365mb_dsa_phy_write(struct dsa_switch *ds, int phy, int regnum,
832 u16 val)
833{
834 return rtl8365mb_phy_write(ds->priv, phy, regnum, val);
835}
836
837static const struct rtl8365mb_extint *
838rtl8365mb_get_port_extint(struct realtek_priv *priv, int port)
839{
840 struct rtl8365mb *mb = priv->chip_data;
841 int i;
842
843 for (i = 0; i < RTL8365MB_MAX_NUM_EXTINTS; i++) {
844 const struct rtl8365mb_extint *extint =
845 &mb->chip_info->extints[i];
846
847 if (!extint->supported_interfaces)
848 continue;
849
850 if (extint->port == port)
851 return extint;
852 }
853
854 return NULL;
855}
856
857static enum dsa_tag_protocol
858rtl8365mb_get_tag_protocol(struct dsa_switch *ds, int port,
859 enum dsa_tag_protocol mp)
860{
861 struct realtek_priv *priv = ds->priv;
862 struct rtl8365mb_cpu *cpu;
863 struct rtl8365mb *mb;
864
865 mb = priv->chip_data;
866 cpu = &mb->cpu;
867
868 if (cpu->position == RTL8365MB_CPU_POS_BEFORE_CRC)
869 return DSA_TAG_PROTO_RTL8_4T;
870
871 return DSA_TAG_PROTO_RTL8_4;
872}
873
874static int rtl8365mb_ext_config_rgmii(struct realtek_priv *priv, int port,
875 phy_interface_t interface)
876{
877 const struct rtl8365mb_extint *extint =
878 rtl8365mb_get_port_extint(priv, port);
879 struct device_node *dn;
880 struct dsa_port *dp;
881 int tx_delay = 0;
882 int rx_delay = 0;
883 u32 val;
884 int ret;
885
886 if (!extint)
887 return -ENODEV;
888
889 dp = dsa_to_port(priv->ds, port);
890 dn = dp->dn;
891
892 /* Set the RGMII TX/RX delay
893 *
894 * The Realtek vendor driver indicates the following possible
895 * configuration settings:
896 *
897 * TX delay:
898 * 0 = no delay, 1 = 2 ns delay
899 * RX delay:
900 * 0 = no delay, 7 = maximum delay
901 * Each step is approximately 0.3 ns, so the maximum delay is about
902 * 2.1 ns.
903 *
904 * The vendor driver also states that this must be configured *before*
905 * forcing the external interface into a particular mode, which is done
906 * in the rtl8365mb_phylink_mac_link_{up,down} functions.
907 *
908 * Only configure an RGMII TX (resp. RX) delay if the
909 * tx-internal-delay-ps (resp. rx-internal-delay-ps) OF property is
910 * specified. We ignore the detail of the RGMII interface mode
911 * (RGMII_{RXID, TXID, etc.}), as this is considered to be a PHY-only
912 * property.
913 */
914 if (!of_property_read_u32(dn, "tx-internal-delay-ps", &val)) {
915 val = val / 1000; /* convert to ns */
916
917 if (val == 0 || val == 2)
918 tx_delay = val / 2;
919 else
920 dev_warn(priv->dev,
921 "RGMII TX delay must be 0 or 2 ns\n");
922 }
923
924 if (!of_property_read_u32(dn, "rx-internal-delay-ps", &val)) {
925 val = DIV_ROUND_CLOSEST(val, 300); /* convert to 0.3 ns step */
926
927 if (val <= 7)
928 rx_delay = val;
929 else
930 dev_warn(priv->dev,
931 "RGMII RX delay must be 0 to 2.1 ns\n");
932 }
933
934 ret = regmap_update_bits(
935 priv->map, RTL8365MB_EXT_RGMXF_REG(extint->id),
936 RTL8365MB_EXT_RGMXF_TXDELAY_MASK |
937 RTL8365MB_EXT_RGMXF_RXDELAY_MASK,
938 FIELD_PREP(RTL8365MB_EXT_RGMXF_TXDELAY_MASK, tx_delay) |
939 FIELD_PREP(RTL8365MB_EXT_RGMXF_RXDELAY_MASK, rx_delay));
940 if (ret)
941 return ret;
942
943 ret = regmap_update_bits(
944 priv->map, RTL8365MB_DIGITAL_INTERFACE_SELECT_REG(extint->id),
945 RTL8365MB_DIGITAL_INTERFACE_SELECT_MODE_MASK(extint->id),
946 RTL8365MB_EXT_PORT_MODE_RGMII
947 << RTL8365MB_DIGITAL_INTERFACE_SELECT_MODE_OFFSET(
948 extint->id));
949 if (ret)
950 return ret;
951
952 return 0;
953}
954
955static int rtl8365mb_ext_config_forcemode(struct realtek_priv *priv, int port,
956 bool link, int speed, int duplex,
957 bool tx_pause, bool rx_pause)
958{
959 const struct rtl8365mb_extint *extint =
960 rtl8365mb_get_port_extint(priv, port);
961 u32 r_tx_pause;
962 u32 r_rx_pause;
963 u32 r_duplex;
964 u32 r_speed;
965 u32 r_link;
966 int val;
967 int ret;
968
969 if (!extint)
970 return -ENODEV;
971
972 if (link) {
973 /* Force the link up with the desired configuration */
974 r_link = 1;
975 r_rx_pause = rx_pause ? 1 : 0;
976 r_tx_pause = tx_pause ? 1 : 0;
977
978 if (speed == SPEED_1000) {
979 r_speed = RTL8365MB_PORT_SPEED_1000M;
980 } else if (speed == SPEED_100) {
981 r_speed = RTL8365MB_PORT_SPEED_100M;
982 } else if (speed == SPEED_10) {
983 r_speed = RTL8365MB_PORT_SPEED_10M;
984 } else {
985 dev_err(priv->dev, "unsupported port speed %s\n",
986 phy_speed_to_str(speed));
987 return -EINVAL;
988 }
989
990 if (duplex == DUPLEX_FULL) {
991 r_duplex = 1;
992 } else if (duplex == DUPLEX_HALF) {
993 r_duplex = 0;
994 } else {
995 dev_err(priv->dev, "unsupported duplex %s\n",
996 phy_duplex_to_str(duplex));
997 return -EINVAL;
998 }
999 } else {
1000 /* Force the link down and reset any programmed configuration */
1001 r_link = 0;
1002 r_tx_pause = 0;
1003 r_rx_pause = 0;
1004 r_speed = 0;
1005 r_duplex = 0;
1006 }
1007
1008 val = FIELD_PREP(RTL8365MB_DIGITAL_INTERFACE_FORCE_EN_MASK, 1) |
1009 FIELD_PREP(RTL8365MB_DIGITAL_INTERFACE_FORCE_TXPAUSE_MASK,
1010 r_tx_pause) |
1011 FIELD_PREP(RTL8365MB_DIGITAL_INTERFACE_FORCE_RXPAUSE_MASK,
1012 r_rx_pause) |
1013 FIELD_PREP(RTL8365MB_DIGITAL_INTERFACE_FORCE_LINK_MASK, r_link) |
1014 FIELD_PREP(RTL8365MB_DIGITAL_INTERFACE_FORCE_DUPLEX_MASK,
1015 r_duplex) |
1016 FIELD_PREP(RTL8365MB_DIGITAL_INTERFACE_FORCE_SPEED_MASK, r_speed);
1017 ret = regmap_write(priv->map,
1018 RTL8365MB_DIGITAL_INTERFACE_FORCE_REG(extint->id),
1019 val);
1020 if (ret)
1021 return ret;
1022
1023 return 0;
1024}
1025
1026static void rtl8365mb_phylink_get_caps(struct dsa_switch *ds, int port,
1027 struct phylink_config *config)
1028{
1029 const struct rtl8365mb_extint *extint =
1030 rtl8365mb_get_port_extint(ds->priv, port);
1031
1032 config->mac_capabilities = MAC_SYM_PAUSE | MAC_ASYM_PAUSE |
1033 MAC_10 | MAC_100 | MAC_1000FD;
1034
1035 if (!extint) {
1036 __set_bit(PHY_INTERFACE_MODE_INTERNAL,
1037 config->supported_interfaces);
1038
1039 /* GMII is the default interface mode for phylib, so
1040 * we have to support it for ports with integrated PHY.
1041 */
1042 __set_bit(PHY_INTERFACE_MODE_GMII,
1043 config->supported_interfaces);
1044 return;
1045 }
1046
1047 /* Populate according to the modes supported by _this driver_,
1048 * not necessarily the modes supported by the hardware, some of
1049 * which remain unimplemented.
1050 */
1051
1052 if (extint->supported_interfaces & RTL8365MB_PHY_INTERFACE_MODE_RGMII)
1053 phy_interface_set_rgmii(config->supported_interfaces);
1054}
1055
1056static void rtl8365mb_phylink_mac_config(struct dsa_switch *ds, int port,
1057 unsigned int mode,
1058 const struct phylink_link_state *state)
1059{
1060 struct realtek_priv *priv = ds->priv;
1061 int ret;
1062
1063 if (mode != MLO_AN_PHY && mode != MLO_AN_FIXED) {
1064 dev_err(priv->dev,
1065 "port %d supports only conventional PHY or fixed-link\n",
1066 port);
1067 return;
1068 }
1069
1070 if (phy_interface_mode_is_rgmii(state->interface)) {
1071 ret = rtl8365mb_ext_config_rgmii(priv, port, state->interface);
1072 if (ret)
1073 dev_err(priv->dev,
1074 "failed to configure RGMII mode on port %d: %d\n",
1075 port, ret);
1076 return;
1077 }
1078
1079 /* TODO: Implement MII and RMII modes, which the RTL8365MB-VC also
1080 * supports
1081 */
1082}
1083
1084static void rtl8365mb_phylink_mac_link_down(struct dsa_switch *ds, int port,
1085 unsigned int mode,
1086 phy_interface_t interface)
1087{
1088 struct realtek_priv *priv = ds->priv;
1089 struct rtl8365mb_port *p;
1090 struct rtl8365mb *mb;
1091 int ret;
1092
1093 mb = priv->chip_data;
1094 p = &mb->ports[port];
1095 cancel_delayed_work_sync(&p->mib_work);
1096
1097 if (phy_interface_mode_is_rgmii(interface)) {
1098 ret = rtl8365mb_ext_config_forcemode(priv, port, false, 0, 0,
1099 false, false);
1100 if (ret)
1101 dev_err(priv->dev,
1102 "failed to reset forced mode on port %d: %d\n",
1103 port, ret);
1104
1105 return;
1106 }
1107}
1108
1109static void rtl8365mb_phylink_mac_link_up(struct dsa_switch *ds, int port,
1110 unsigned int mode,
1111 phy_interface_t interface,
1112 struct phy_device *phydev, int speed,
1113 int duplex, bool tx_pause,
1114 bool rx_pause)
1115{
1116 struct realtek_priv *priv = ds->priv;
1117 struct rtl8365mb_port *p;
1118 struct rtl8365mb *mb;
1119 int ret;
1120
1121 mb = priv->chip_data;
1122 p = &mb->ports[port];
1123 schedule_delayed_work(&p->mib_work, 0);
1124
1125 if (phy_interface_mode_is_rgmii(interface)) {
1126 ret = rtl8365mb_ext_config_forcemode(priv, port, true, speed,
1127 duplex, tx_pause,
1128 rx_pause);
1129 if (ret)
1130 dev_err(priv->dev,
1131 "failed to force mode on port %d: %d\n", port,
1132 ret);
1133
1134 return;
1135 }
1136}
1137
1138static void rtl8365mb_port_stp_state_set(struct dsa_switch *ds, int port,
1139 u8 state)
1140{
1141 struct realtek_priv *priv = ds->priv;
1142 enum rtl8365mb_stp_state val;
1143 int msti = 0;
1144
1145 switch (state) {
1146 case BR_STATE_DISABLED:
1147 val = RTL8365MB_STP_STATE_DISABLED;
1148 break;
1149 case BR_STATE_BLOCKING:
1150 case BR_STATE_LISTENING:
1151 val = RTL8365MB_STP_STATE_BLOCKING;
1152 break;
1153 case BR_STATE_LEARNING:
1154 val = RTL8365MB_STP_STATE_LEARNING;
1155 break;
1156 case BR_STATE_FORWARDING:
1157 val = RTL8365MB_STP_STATE_FORWARDING;
1158 break;
1159 default:
1160 dev_err(priv->dev, "invalid STP state: %u\n", state);
1161 return;
1162 }
1163
1164 regmap_update_bits(priv->map, RTL8365MB_MSTI_CTRL_REG(msti, port),
1165 RTL8365MB_MSTI_CTRL_PORT_STATE_MASK(port),
1166 val << RTL8365MB_MSTI_CTRL_PORT_STATE_OFFSET(port));
1167}
1168
1169static int rtl8365mb_port_set_learning(struct realtek_priv *priv, int port,
1170 bool enable)
1171{
1172 /* Enable/disable learning by limiting the number of L2 addresses the
1173 * port can learn. Realtek documentation states that a limit of zero
1174 * disables learning. When enabling learning, set it to the chip's
1175 * maximum.
1176 */
1177 return regmap_write(priv->map, RTL8365MB_LUT_PORT_LEARN_LIMIT_REG(port),
1178 enable ? RTL8365MB_LEARN_LIMIT_MAX : 0);
1179}
1180
1181static int rtl8365mb_port_set_isolation(struct realtek_priv *priv, int port,
1182 u32 mask)
1183{
1184 return regmap_write(priv->map, RTL8365MB_PORT_ISOLATION_REG(port), mask);
1185}
1186
1187static int rtl8365mb_mib_counter_read(struct realtek_priv *priv, int port,
1188 u32 offset, u32 length, u64 *mibvalue)
1189{
1190 u64 tmpvalue = 0;
1191 u32 val;
1192 int ret;
1193 int i;
1194
1195 /* The MIB address is an SRAM address. We request a particular address
1196 * and then poll the control register before reading the value from some
1197 * counter registers.
1198 */
1199 ret = regmap_write(priv->map, RTL8365MB_MIB_ADDRESS_REG,
1200 RTL8365MB_MIB_ADDRESS(port, offset));
1201 if (ret)
1202 return ret;
1203
1204 /* Poll for completion */
1205 ret = regmap_read_poll_timeout(priv->map, RTL8365MB_MIB_CTRL0_REG, val,
1206 !(val & RTL8365MB_MIB_CTRL0_BUSY_MASK),
1207 10, 100);
1208 if (ret)
1209 return ret;
1210
1211 /* Presumably this indicates a MIB counter read failure */
1212 if (val & RTL8365MB_MIB_CTRL0_RESET_MASK)
1213 return -EIO;
1214
1215 /* There are four MIB counter registers each holding a 16 bit word of a
1216 * MIB counter. Depending on the offset, we should read from the upper
1217 * two or lower two registers. In case the MIB counter is 4 words, we
1218 * read from all four registers.
1219 */
1220 if (length == 4)
1221 offset = 3;
1222 else
1223 offset = (offset + 1) % 4;
1224
1225 /* Read the MIB counter 16 bits at a time */
1226 for (i = 0; i < length; i++) {
1227 ret = regmap_read(priv->map,
1228 RTL8365MB_MIB_COUNTER_REG(offset - i), &val);
1229 if (ret)
1230 return ret;
1231
1232 tmpvalue = ((tmpvalue) << 16) | (val & 0xFFFF);
1233 }
1234
1235 /* Only commit the result if no error occurred */
1236 *mibvalue = tmpvalue;
1237
1238 return 0;
1239}
1240
1241static void rtl8365mb_get_ethtool_stats(struct dsa_switch *ds, int port, u64 *data)
1242{
1243 struct realtek_priv *priv = ds->priv;
1244 struct rtl8365mb *mb;
1245 int ret;
1246 int i;
1247
1248 mb = priv->chip_data;
1249
1250 mutex_lock(&mb->mib_lock);
1251 for (i = 0; i < RTL8365MB_MIB_END; i++) {
1252 struct rtl8365mb_mib_counter *mib = &rtl8365mb_mib_counters[i];
1253
1254 ret = rtl8365mb_mib_counter_read(priv, port, mib->offset,
1255 mib->length, &data[i]);
1256 if (ret) {
1257 dev_err(priv->dev,
1258 "failed to read port %d counters: %d\n", port,
1259 ret);
1260 break;
1261 }
1262 }
1263 mutex_unlock(&mb->mib_lock);
1264}
1265
1266static void rtl8365mb_get_strings(struct dsa_switch *ds, int port, u32 stringset, u8 *data)
1267{
1268 int i;
1269
1270 if (stringset != ETH_SS_STATS)
1271 return;
1272
1273 for (i = 0; i < RTL8365MB_MIB_END; i++) {
1274 struct rtl8365mb_mib_counter *mib = &rtl8365mb_mib_counters[i];
1275
1276 strncpy(data + i * ETH_GSTRING_LEN, mib->name, ETH_GSTRING_LEN);
1277 }
1278}
1279
1280static int rtl8365mb_get_sset_count(struct dsa_switch *ds, int port, int sset)
1281{
1282 if (sset != ETH_SS_STATS)
1283 return -EOPNOTSUPP;
1284
1285 return RTL8365MB_MIB_END;
1286}
1287
1288static void rtl8365mb_get_phy_stats(struct dsa_switch *ds, int port,
1289 struct ethtool_eth_phy_stats *phy_stats)
1290{
1291 struct realtek_priv *priv = ds->priv;
1292 struct rtl8365mb_mib_counter *mib;
1293 struct rtl8365mb *mb;
1294
1295 mb = priv->chip_data;
1296 mib = &rtl8365mb_mib_counters[RTL8365MB_MIB_dot3StatsSymbolErrors];
1297
1298 mutex_lock(&mb->mib_lock);
1299 rtl8365mb_mib_counter_read(priv, port, mib->offset, mib->length,
1300 &phy_stats->SymbolErrorDuringCarrier);
1301 mutex_unlock(&mb->mib_lock);
1302}
1303
1304static void rtl8365mb_get_mac_stats(struct dsa_switch *ds, int port,
1305 struct ethtool_eth_mac_stats *mac_stats)
1306{
1307 u64 cnt[RTL8365MB_MIB_END] = {
1308 [RTL8365MB_MIB_ifOutOctets] = 1,
1309 [RTL8365MB_MIB_ifOutUcastPkts] = 1,
1310 [RTL8365MB_MIB_ifOutMulticastPkts] = 1,
1311 [RTL8365MB_MIB_ifOutBroadcastPkts] = 1,
1312 [RTL8365MB_MIB_dot3OutPauseFrames] = 1,
1313 [RTL8365MB_MIB_ifOutDiscards] = 1,
1314 [RTL8365MB_MIB_ifInOctets] = 1,
1315 [RTL8365MB_MIB_ifInUcastPkts] = 1,
1316 [RTL8365MB_MIB_ifInMulticastPkts] = 1,
1317 [RTL8365MB_MIB_ifInBroadcastPkts] = 1,
1318 [RTL8365MB_MIB_dot3InPauseFrames] = 1,
1319 [RTL8365MB_MIB_dot3StatsSingleCollisionFrames] = 1,
1320 [RTL8365MB_MIB_dot3StatsMultipleCollisionFrames] = 1,
1321 [RTL8365MB_MIB_dot3StatsFCSErrors] = 1,
1322 [RTL8365MB_MIB_dot3StatsDeferredTransmissions] = 1,
1323 [RTL8365MB_MIB_dot3StatsLateCollisions] = 1,
1324 [RTL8365MB_MIB_dot3StatsExcessiveCollisions] = 1,
1325
1326 };
1327 struct realtek_priv *priv = ds->priv;
1328 struct rtl8365mb *mb;
1329 int ret;
1330 int i;
1331
1332 mb = priv->chip_data;
1333
1334 mutex_lock(&mb->mib_lock);
1335 for (i = 0; i < RTL8365MB_MIB_END; i++) {
1336 struct rtl8365mb_mib_counter *mib = &rtl8365mb_mib_counters[i];
1337
1338 /* Only fetch required MIB counters (marked = 1 above) */
1339 if (!cnt[i])
1340 continue;
1341
1342 ret = rtl8365mb_mib_counter_read(priv, port, mib->offset,
1343 mib->length, &cnt[i]);
1344 if (ret)
1345 break;
1346 }
1347 mutex_unlock(&mb->mib_lock);
1348
1349 /* The RTL8365MB-VC exposes MIB objects, which we have to translate into
1350 * IEEE 802.3 Managed Objects. This is not always completely faithful,
1351 * but we try out best. See RFC 3635 for a detailed treatment of the
1352 * subject.
1353 */
1354
1355 mac_stats->FramesTransmittedOK = cnt[RTL8365MB_MIB_ifOutUcastPkts] +
1356 cnt[RTL8365MB_MIB_ifOutMulticastPkts] +
1357 cnt[RTL8365MB_MIB_ifOutBroadcastPkts] +
1358 cnt[RTL8365MB_MIB_dot3OutPauseFrames] -
1359 cnt[RTL8365MB_MIB_ifOutDiscards];
1360 mac_stats->SingleCollisionFrames =
1361 cnt[RTL8365MB_MIB_dot3StatsSingleCollisionFrames];
1362 mac_stats->MultipleCollisionFrames =
1363 cnt[RTL8365MB_MIB_dot3StatsMultipleCollisionFrames];
1364 mac_stats->FramesReceivedOK = cnt[RTL8365MB_MIB_ifInUcastPkts] +
1365 cnt[RTL8365MB_MIB_ifInMulticastPkts] +
1366 cnt[RTL8365MB_MIB_ifInBroadcastPkts] +
1367 cnt[RTL8365MB_MIB_dot3InPauseFrames];
1368 mac_stats->FrameCheckSequenceErrors =
1369 cnt[RTL8365MB_MIB_dot3StatsFCSErrors];
1370 mac_stats->OctetsTransmittedOK = cnt[RTL8365MB_MIB_ifOutOctets] -
1371 18 * mac_stats->FramesTransmittedOK;
1372 mac_stats->FramesWithDeferredXmissions =
1373 cnt[RTL8365MB_MIB_dot3StatsDeferredTransmissions];
1374 mac_stats->LateCollisions = cnt[RTL8365MB_MIB_dot3StatsLateCollisions];
1375 mac_stats->FramesAbortedDueToXSColls =
1376 cnt[RTL8365MB_MIB_dot3StatsExcessiveCollisions];
1377 mac_stats->OctetsReceivedOK = cnt[RTL8365MB_MIB_ifInOctets] -
1378 18 * mac_stats->FramesReceivedOK;
1379 mac_stats->MulticastFramesXmittedOK =
1380 cnt[RTL8365MB_MIB_ifOutMulticastPkts];
1381 mac_stats->BroadcastFramesXmittedOK =
1382 cnt[RTL8365MB_MIB_ifOutBroadcastPkts];
1383 mac_stats->MulticastFramesReceivedOK =
1384 cnt[RTL8365MB_MIB_ifInMulticastPkts];
1385 mac_stats->BroadcastFramesReceivedOK =
1386 cnt[RTL8365MB_MIB_ifInBroadcastPkts];
1387}
1388
1389static void rtl8365mb_get_ctrl_stats(struct dsa_switch *ds, int port,
1390 struct ethtool_eth_ctrl_stats *ctrl_stats)
1391{
1392 struct realtek_priv *priv = ds->priv;
1393 struct rtl8365mb_mib_counter *mib;
1394 struct rtl8365mb *mb;
1395
1396 mb = priv->chip_data;
1397 mib = &rtl8365mb_mib_counters[RTL8365MB_MIB_dot3ControlInUnknownOpcodes];
1398
1399 mutex_lock(&mb->mib_lock);
1400 rtl8365mb_mib_counter_read(priv, port, mib->offset, mib->length,
1401 &ctrl_stats->UnsupportedOpcodesReceived);
1402 mutex_unlock(&mb->mib_lock);
1403}
1404
1405static void rtl8365mb_stats_update(struct realtek_priv *priv, int port)
1406{
1407 u64 cnt[RTL8365MB_MIB_END] = {
1408 [RTL8365MB_MIB_ifOutOctets] = 1,
1409 [RTL8365MB_MIB_ifOutUcastPkts] = 1,
1410 [RTL8365MB_MIB_ifOutMulticastPkts] = 1,
1411 [RTL8365MB_MIB_ifOutBroadcastPkts] = 1,
1412 [RTL8365MB_MIB_ifOutDiscards] = 1,
1413 [RTL8365MB_MIB_ifInOctets] = 1,
1414 [RTL8365MB_MIB_ifInUcastPkts] = 1,
1415 [RTL8365MB_MIB_ifInMulticastPkts] = 1,
1416 [RTL8365MB_MIB_ifInBroadcastPkts] = 1,
1417 [RTL8365MB_MIB_etherStatsDropEvents] = 1,
1418 [RTL8365MB_MIB_etherStatsCollisions] = 1,
1419 [RTL8365MB_MIB_etherStatsFragments] = 1,
1420 [RTL8365MB_MIB_etherStatsJabbers] = 1,
1421 [RTL8365MB_MIB_dot3StatsFCSErrors] = 1,
1422 [RTL8365MB_MIB_dot3StatsLateCollisions] = 1,
1423 };
1424 struct rtl8365mb *mb = priv->chip_data;
1425 struct rtnl_link_stats64 *stats;
1426 int ret;
1427 int i;
1428
1429 stats = &mb->ports[port].stats;
1430
1431 mutex_lock(&mb->mib_lock);
1432 for (i = 0; i < RTL8365MB_MIB_END; i++) {
1433 struct rtl8365mb_mib_counter *c = &rtl8365mb_mib_counters[i];
1434
1435 /* Only fetch required MIB counters (marked = 1 above) */
1436 if (!cnt[i])
1437 continue;
1438
1439 ret = rtl8365mb_mib_counter_read(priv, port, c->offset,
1440 c->length, &cnt[i]);
1441 if (ret)
1442 break;
1443 }
1444 mutex_unlock(&mb->mib_lock);
1445
1446 /* Don't update statistics if there was an error reading the counters */
1447 if (ret)
1448 return;
1449
1450 spin_lock(&mb->ports[port].stats_lock);
1451
1452 stats->rx_packets = cnt[RTL8365MB_MIB_ifInUcastPkts] +
1453 cnt[RTL8365MB_MIB_ifInMulticastPkts] +
1454 cnt[RTL8365MB_MIB_ifInBroadcastPkts] -
1455 cnt[RTL8365MB_MIB_ifOutDiscards];
1456
1457 stats->tx_packets = cnt[RTL8365MB_MIB_ifOutUcastPkts] +
1458 cnt[RTL8365MB_MIB_ifOutMulticastPkts] +
1459 cnt[RTL8365MB_MIB_ifOutBroadcastPkts];
1460
1461 /* if{In,Out}Octets includes FCS - remove it */
1462 stats->rx_bytes = cnt[RTL8365MB_MIB_ifInOctets] - 4 * stats->rx_packets;
1463 stats->tx_bytes =
1464 cnt[RTL8365MB_MIB_ifOutOctets] - 4 * stats->tx_packets;
1465
1466 stats->rx_dropped = cnt[RTL8365MB_MIB_etherStatsDropEvents];
1467 stats->tx_dropped = cnt[RTL8365MB_MIB_ifOutDiscards];
1468
1469 stats->multicast = cnt[RTL8365MB_MIB_ifInMulticastPkts];
1470 stats->collisions = cnt[RTL8365MB_MIB_etherStatsCollisions];
1471
1472 stats->rx_length_errors = cnt[RTL8365MB_MIB_etherStatsFragments] +
1473 cnt[RTL8365MB_MIB_etherStatsJabbers];
1474 stats->rx_crc_errors = cnt[RTL8365MB_MIB_dot3StatsFCSErrors];
1475 stats->rx_errors = stats->rx_length_errors + stats->rx_crc_errors;
1476
1477 stats->tx_aborted_errors = cnt[RTL8365MB_MIB_ifOutDiscards];
1478 stats->tx_window_errors = cnt[RTL8365MB_MIB_dot3StatsLateCollisions];
1479 stats->tx_errors = stats->tx_aborted_errors + stats->tx_window_errors;
1480
1481 spin_unlock(&mb->ports[port].stats_lock);
1482}
1483
1484static void rtl8365mb_stats_poll(struct work_struct *work)
1485{
1486 struct rtl8365mb_port *p = container_of(to_delayed_work(work),
1487 struct rtl8365mb_port,
1488 mib_work);
1489 struct realtek_priv *priv = p->priv;
1490
1491 rtl8365mb_stats_update(priv, p->index);
1492
1493 schedule_delayed_work(&p->mib_work, RTL8365MB_STATS_INTERVAL_JIFFIES);
1494}
1495
1496static void rtl8365mb_get_stats64(struct dsa_switch *ds, int port,
1497 struct rtnl_link_stats64 *s)
1498{
1499 struct realtek_priv *priv = ds->priv;
1500 struct rtl8365mb_port *p;
1501 struct rtl8365mb *mb;
1502
1503 mb = priv->chip_data;
1504 p = &mb->ports[port];
1505
1506 spin_lock(&p->stats_lock);
1507 memcpy(s, &p->stats, sizeof(*s));
1508 spin_unlock(&p->stats_lock);
1509}
1510
1511static void rtl8365mb_stats_setup(struct realtek_priv *priv)
1512{
1513 struct rtl8365mb *mb = priv->chip_data;
1514 int i;
1515
1516 /* Per-chip global mutex to protect MIB counter access, since doing
1517 * so requires accessing a series of registers in a particular order.
1518 */
1519 mutex_init(&mb->mib_lock);
1520
1521 for (i = 0; i < priv->num_ports; i++) {
1522 struct rtl8365mb_port *p = &mb->ports[i];
1523
1524 if (dsa_is_unused_port(priv->ds, i))
1525 continue;
1526
1527 /* Per-port spinlock to protect the stats64 data */
1528 spin_lock_init(&p->stats_lock);
1529
1530 /* This work polls the MIB counters and keeps the stats64 data
1531 * up-to-date.
1532 */
1533 INIT_DELAYED_WORK(&p->mib_work, rtl8365mb_stats_poll);
1534 }
1535}
1536
1537static void rtl8365mb_stats_teardown(struct realtek_priv *priv)
1538{
1539 struct rtl8365mb *mb = priv->chip_data;
1540 int i;
1541
1542 for (i = 0; i < priv->num_ports; i++) {
1543 struct rtl8365mb_port *p = &mb->ports[i];
1544
1545 if (dsa_is_unused_port(priv->ds, i))
1546 continue;
1547
1548 cancel_delayed_work_sync(&p->mib_work);
1549 }
1550}
1551
1552static int rtl8365mb_get_and_clear_status_reg(struct realtek_priv *priv, u32 reg,
1553 u32 *val)
1554{
1555 int ret;
1556
1557 ret = regmap_read(priv->map, reg, val);
1558 if (ret)
1559 return ret;
1560
1561 return regmap_write(priv->map, reg, *val);
1562}
1563
1564static irqreturn_t rtl8365mb_irq(int irq, void *data)
1565{
1566 struct realtek_priv *priv = data;
1567 unsigned long line_changes = 0;
1568 u32 stat;
1569 int line;
1570 int ret;
1571
1572 ret = rtl8365mb_get_and_clear_status_reg(priv, RTL8365MB_INTR_STATUS_REG,
1573 &stat);
1574 if (ret)
1575 goto out_error;
1576
1577 if (stat & RTL8365MB_INTR_LINK_CHANGE_MASK) {
1578 u32 linkdown_ind;
1579 u32 linkup_ind;
1580 u32 val;
1581
1582 ret = rtl8365mb_get_and_clear_status_reg(
1583 priv, RTL8365MB_PORT_LINKUP_IND_REG, &val);
1584 if (ret)
1585 goto out_error;
1586
1587 linkup_ind = FIELD_GET(RTL8365MB_PORT_LINKUP_IND_MASK, val);
1588
1589 ret = rtl8365mb_get_and_clear_status_reg(
1590 priv, RTL8365MB_PORT_LINKDOWN_IND_REG, &val);
1591 if (ret)
1592 goto out_error;
1593
1594 linkdown_ind = FIELD_GET(RTL8365MB_PORT_LINKDOWN_IND_MASK, val);
1595
1596 line_changes = linkup_ind | linkdown_ind;
1597 }
1598
1599 if (!line_changes)
1600 goto out_none;
1601
1602 for_each_set_bit(line, &line_changes, priv->num_ports) {
1603 int child_irq = irq_find_mapping(priv->irqdomain, line);
1604
1605 handle_nested_irq(child_irq);
1606 }
1607
1608 return IRQ_HANDLED;
1609
1610out_error:
1611 dev_err(priv->dev, "failed to read interrupt status: %d\n", ret);
1612
1613out_none:
1614 return IRQ_NONE;
1615}
1616
1617static struct irq_chip rtl8365mb_irq_chip = {
1618 .name = "rtl8365mb",
1619 /* The hardware doesn't support masking IRQs on a per-port basis */
1620};
1621
1622static int rtl8365mb_irq_map(struct irq_domain *domain, unsigned int irq,
1623 irq_hw_number_t hwirq)
1624{
1625 irq_set_chip_data(irq, domain->host_data);
1626 irq_set_chip_and_handler(irq, &rtl8365mb_irq_chip, handle_simple_irq);
1627 irq_set_nested_thread(irq, 1);
1628 irq_set_noprobe(irq);
1629
1630 return 0;
1631}
1632
1633static void rtl8365mb_irq_unmap(struct irq_domain *d, unsigned int irq)
1634{
1635 irq_set_nested_thread(irq, 0);
1636 irq_set_chip_and_handler(irq, NULL, NULL);
1637 irq_set_chip_data(irq, NULL);
1638}
1639
1640static const struct irq_domain_ops rtl8365mb_irqdomain_ops = {
1641 .map = rtl8365mb_irq_map,
1642 .unmap = rtl8365mb_irq_unmap,
1643 .xlate = irq_domain_xlate_onecell,
1644};
1645
1646static int rtl8365mb_set_irq_enable(struct realtek_priv *priv, bool enable)
1647{
1648 return regmap_update_bits(priv->map, RTL8365MB_INTR_CTRL_REG,
1649 RTL8365MB_INTR_LINK_CHANGE_MASK,
1650 FIELD_PREP(RTL8365MB_INTR_LINK_CHANGE_MASK,
1651 enable ? 1 : 0));
1652}
1653
1654static int rtl8365mb_irq_enable(struct realtek_priv *priv)
1655{
1656 return rtl8365mb_set_irq_enable(priv, true);
1657}
1658
1659static int rtl8365mb_irq_disable(struct realtek_priv *priv)
1660{
1661 return rtl8365mb_set_irq_enable(priv, false);
1662}
1663
1664static int rtl8365mb_irq_setup(struct realtek_priv *priv)
1665{
1666 struct rtl8365mb *mb = priv->chip_data;
1667 struct device_node *intc;
1668 u32 irq_trig;
1669 int virq;
1670 int irq;
1671 u32 val;
1672 int ret;
1673 int i;
1674
1675 intc = of_get_child_by_name(priv->dev->of_node, "interrupt-controller");
1676 if (!intc) {
1677 dev_err(priv->dev, "missing child interrupt-controller node\n");
1678 return -EINVAL;
1679 }
1680
1681 /* rtl8365mb IRQs cascade off this one */
1682 irq = of_irq_get(intc, 0);
1683 if (irq <= 0) {
1684 if (irq != -EPROBE_DEFER)
1685 dev_err(priv->dev, "failed to get parent irq: %d\n",
1686 irq);
1687 ret = irq ? irq : -EINVAL;
1688 goto out_put_node;
1689 }
1690
1691 priv->irqdomain = irq_domain_add_linear(intc, priv->num_ports,
1692 &rtl8365mb_irqdomain_ops, priv);
1693 if (!priv->irqdomain) {
1694 dev_err(priv->dev, "failed to add irq domain\n");
1695 ret = -ENOMEM;
1696 goto out_put_node;
1697 }
1698
1699 for (i = 0; i < priv->num_ports; i++) {
1700 virq = irq_create_mapping(priv->irqdomain, i);
1701 if (!virq) {
1702 dev_err(priv->dev,
1703 "failed to create irq domain mapping\n");
1704 ret = -EINVAL;
1705 goto out_remove_irqdomain;
1706 }
1707
1708 irq_set_parent(virq, irq);
1709 }
1710
1711 /* Configure chip interrupt signal polarity */
1712 irq_trig = irqd_get_trigger_type(irq_get_irq_data(irq));
1713 switch (irq_trig) {
1714 case IRQF_TRIGGER_RISING:
1715 case IRQF_TRIGGER_HIGH:
1716 val = RTL8365MB_INTR_POLARITY_HIGH;
1717 break;
1718 case IRQF_TRIGGER_FALLING:
1719 case IRQF_TRIGGER_LOW:
1720 val = RTL8365MB_INTR_POLARITY_LOW;
1721 break;
1722 default:
1723 dev_err(priv->dev, "unsupported irq trigger type %u\n",
1724 irq_trig);
1725 ret = -EINVAL;
1726 goto out_remove_irqdomain;
1727 }
1728
1729 ret = regmap_update_bits(priv->map, RTL8365MB_INTR_POLARITY_REG,
1730 RTL8365MB_INTR_POLARITY_MASK,
1731 FIELD_PREP(RTL8365MB_INTR_POLARITY_MASK, val));
1732 if (ret)
1733 goto out_remove_irqdomain;
1734
1735 /* Disable the interrupt in case the chip has it enabled on reset */
1736 ret = rtl8365mb_irq_disable(priv);
1737 if (ret)
1738 goto out_remove_irqdomain;
1739
1740 /* Clear the interrupt status register */
1741 ret = regmap_write(priv->map, RTL8365MB_INTR_STATUS_REG,
1742 RTL8365MB_INTR_ALL_MASK);
1743 if (ret)
1744 goto out_remove_irqdomain;
1745
1746 ret = request_threaded_irq(irq, NULL, rtl8365mb_irq, IRQF_ONESHOT,
1747 "rtl8365mb", priv);
1748 if (ret) {
1749 dev_err(priv->dev, "failed to request irq: %d\n", ret);
1750 goto out_remove_irqdomain;
1751 }
1752
1753 /* Store the irq so that we know to free it during teardown */
1754 mb->irq = irq;
1755
1756 ret = rtl8365mb_irq_enable(priv);
1757 if (ret)
1758 goto out_free_irq;
1759
1760 of_node_put(intc);
1761
1762 return 0;
1763
1764out_free_irq:
1765 free_irq(mb->irq, priv);
1766 mb->irq = 0;
1767
1768out_remove_irqdomain:
1769 for (i = 0; i < priv->num_ports; i++) {
1770 virq = irq_find_mapping(priv->irqdomain, i);
1771 irq_dispose_mapping(virq);
1772 }
1773
1774 irq_domain_remove(priv->irqdomain);
1775 priv->irqdomain = NULL;
1776
1777out_put_node:
1778 of_node_put(intc);
1779
1780 return ret;
1781}
1782
1783static void rtl8365mb_irq_teardown(struct realtek_priv *priv)
1784{
1785 struct rtl8365mb *mb = priv->chip_data;
1786 int virq;
1787 int i;
1788
1789 if (mb->irq) {
1790 free_irq(mb->irq, priv);
1791 mb->irq = 0;
1792 }
1793
1794 if (priv->irqdomain) {
1795 for (i = 0; i < priv->num_ports; i++) {
1796 virq = irq_find_mapping(priv->irqdomain, i);
1797 irq_dispose_mapping(virq);
1798 }
1799
1800 irq_domain_remove(priv->irqdomain);
1801 priv->irqdomain = NULL;
1802 }
1803}
1804
1805static int rtl8365mb_cpu_config(struct realtek_priv *priv)
1806{
1807 struct rtl8365mb *mb = priv->chip_data;
1808 struct rtl8365mb_cpu *cpu = &mb->cpu;
1809 u32 val;
1810 int ret;
1811
1812 ret = regmap_update_bits(priv->map, RTL8365MB_CPU_PORT_MASK_REG,
1813 RTL8365MB_CPU_PORT_MASK_MASK,
1814 FIELD_PREP(RTL8365MB_CPU_PORT_MASK_MASK,
1815 cpu->mask));
1816 if (ret)
1817 return ret;
1818
1819 val = FIELD_PREP(RTL8365MB_CPU_CTRL_EN_MASK, cpu->enable ? 1 : 0) |
1820 FIELD_PREP(RTL8365MB_CPU_CTRL_INSERTMODE_MASK, cpu->insert) |
1821 FIELD_PREP(RTL8365MB_CPU_CTRL_TAG_POSITION_MASK, cpu->position) |
1822 FIELD_PREP(RTL8365MB_CPU_CTRL_RXBYTECOUNT_MASK, cpu->rx_length) |
1823 FIELD_PREP(RTL8365MB_CPU_CTRL_TAG_FORMAT_MASK, cpu->format) |
1824 FIELD_PREP(RTL8365MB_CPU_CTRL_TRAP_PORT_MASK, cpu->trap_port & 0x7) |
1825 FIELD_PREP(RTL8365MB_CPU_CTRL_TRAP_PORT_EXT_MASK,
1826 cpu->trap_port >> 3 & 0x1);
1827 ret = regmap_write(priv->map, RTL8365MB_CPU_CTRL_REG, val);
1828 if (ret)
1829 return ret;
1830
1831 return 0;
1832}
1833
1834static int rtl8365mb_change_tag_protocol(struct dsa_switch *ds,
1835 enum dsa_tag_protocol proto)
1836{
1837 struct realtek_priv *priv = ds->priv;
1838 struct rtl8365mb_cpu *cpu;
1839 struct rtl8365mb *mb;
1840
1841 mb = priv->chip_data;
1842 cpu = &mb->cpu;
1843
1844 switch (proto) {
1845 case DSA_TAG_PROTO_RTL8_4:
1846 cpu->format = RTL8365MB_CPU_FORMAT_8BYTES;
1847 cpu->position = RTL8365MB_CPU_POS_AFTER_SA;
1848 break;
1849 case DSA_TAG_PROTO_RTL8_4T:
1850 cpu->format = RTL8365MB_CPU_FORMAT_8BYTES;
1851 cpu->position = RTL8365MB_CPU_POS_BEFORE_CRC;
1852 break;
1853 /* The switch also supports a 4-byte format, similar to rtl4a but with
1854 * the same 0x04 8-bit version and probably 8-bit port source/dest.
1855 * There is no public doc about it. Not supported yet and it will probably
1856 * never be.
1857 */
1858 default:
1859 return -EPROTONOSUPPORT;
1860 }
1861
1862 return rtl8365mb_cpu_config(priv);
1863}
1864
1865static int rtl8365mb_switch_init(struct realtek_priv *priv)
1866{
1867 struct rtl8365mb *mb = priv->chip_data;
1868 const struct rtl8365mb_chip_info *ci;
1869 int ret;
1870 int i;
1871
1872 ci = mb->chip_info;
1873
1874 /* Do any chip-specific init jam before getting to the common stuff */
1875 if (ci->jam_table) {
1876 for (i = 0; i < ci->jam_size; i++) {
1877 ret = regmap_write(priv->map, ci->jam_table[i].reg,
1878 ci->jam_table[i].val);
1879 if (ret)
1880 return ret;
1881 }
1882 }
1883
1884 /* Common init jam */
1885 for (i = 0; i < ARRAY_SIZE(rtl8365mb_init_jam_common); i++) {
1886 ret = regmap_write(priv->map, rtl8365mb_init_jam_common[i].reg,
1887 rtl8365mb_init_jam_common[i].val);
1888 if (ret)
1889 return ret;
1890 }
1891
1892 return 0;
1893}
1894
1895static int rtl8365mb_reset_chip(struct realtek_priv *priv)
1896{
1897 u32 val;
1898
1899 priv->write_reg_noack(priv, RTL8365MB_CHIP_RESET_REG,
1900 FIELD_PREP(RTL8365MB_CHIP_RESET_HW_MASK, 1));
1901
1902 /* Realtek documentation says the chip needs 1 second to reset. Sleep
1903 * for 100 ms before accessing any registers to prevent ACK timeouts.
1904 */
1905 msleep(100);
1906 return regmap_read_poll_timeout(priv->map, RTL8365MB_CHIP_RESET_REG, val,
1907 !(val & RTL8365MB_CHIP_RESET_HW_MASK),
1908 20000, 1e6);
1909}
1910
1911static int rtl8365mb_setup(struct dsa_switch *ds)
1912{
1913 struct realtek_priv *priv = ds->priv;
1914 struct rtl8365mb_cpu *cpu;
1915 struct dsa_port *cpu_dp;
1916 struct rtl8365mb *mb;
1917 int ret;
1918 int i;
1919
1920 mb = priv->chip_data;
1921 cpu = &mb->cpu;
1922
1923 ret = rtl8365mb_reset_chip(priv);
1924 if (ret) {
1925 dev_err(priv->dev, "failed to reset chip: %d\n", ret);
1926 goto out_error;
1927 }
1928
1929 /* Configure switch to vendor-defined initial state */
1930 ret = rtl8365mb_switch_init(priv);
1931 if (ret) {
1932 dev_err(priv->dev, "failed to initialize switch: %d\n", ret);
1933 goto out_error;
1934 }
1935
1936 /* Set up cascading IRQs */
1937 ret = rtl8365mb_irq_setup(priv);
1938 if (ret == -EPROBE_DEFER)
1939 return ret;
1940 else if (ret)
1941 dev_info(priv->dev, "no interrupt support\n");
1942
1943 /* Configure CPU tagging */
1944 dsa_switch_for_each_cpu_port(cpu_dp, priv->ds) {
1945 cpu->mask |= BIT(cpu_dp->index);
1946
1947 if (cpu->trap_port == RTL8365MB_MAX_NUM_PORTS)
1948 cpu->trap_port = cpu_dp->index;
1949 }
1950 cpu->enable = cpu->mask > 0;
1951 ret = rtl8365mb_cpu_config(priv);
1952 if (ret)
1953 goto out_teardown_irq;
1954
1955 /* Configure ports */
1956 for (i = 0; i < priv->num_ports; i++) {
1957 struct rtl8365mb_port *p = &mb->ports[i];
1958
1959 if (dsa_is_unused_port(priv->ds, i))
1960 continue;
1961
1962 /* Forward only to the CPU */
1963 ret = rtl8365mb_port_set_isolation(priv, i, cpu->mask);
1964 if (ret)
1965 goto out_teardown_irq;
1966
1967 /* Disable learning */
1968 ret = rtl8365mb_port_set_learning(priv, i, false);
1969 if (ret)
1970 goto out_teardown_irq;
1971
1972 /* Set the initial STP state of all ports to DISABLED, otherwise
1973 * ports will still forward frames to the CPU despite being
1974 * administratively down by default.
1975 */
1976 rtl8365mb_port_stp_state_set(priv->ds, i, BR_STATE_DISABLED);
1977
1978 /* Set up per-port private data */
1979 p->priv = priv;
1980 p->index = i;
1981 }
1982
1983 /* Set maximum packet length to 1536 bytes */
1984 ret = regmap_update_bits(priv->map, RTL8365MB_CFG0_MAX_LEN_REG,
1985 RTL8365MB_CFG0_MAX_LEN_MASK,
1986 FIELD_PREP(RTL8365MB_CFG0_MAX_LEN_MASK, 1536));
1987 if (ret)
1988 goto out_teardown_irq;
1989
1990 if (priv->setup_interface) {
1991 ret = priv->setup_interface(ds);
1992 if (ret) {
1993 dev_err(priv->dev, "could not set up MDIO bus\n");
1994 goto out_teardown_irq;
1995 }
1996 }
1997
1998 /* Start statistics counter polling */
1999 rtl8365mb_stats_setup(priv);
2000
2001 return 0;
2002
2003out_teardown_irq:
2004 rtl8365mb_irq_teardown(priv);
2005
2006out_error:
2007 return ret;
2008}
2009
2010static void rtl8365mb_teardown(struct dsa_switch *ds)
2011{
2012 struct realtek_priv *priv = ds->priv;
2013
2014 rtl8365mb_stats_teardown(priv);
2015 rtl8365mb_irq_teardown(priv);
2016}
2017
2018static int rtl8365mb_get_chip_id_and_ver(struct regmap *map, u32 *id, u32 *ver)
2019{
2020 int ret;
2021
2022 /* For some reason we have to write a magic value to an arbitrary
2023 * register whenever accessing the chip ID/version registers.
2024 */
2025 ret = regmap_write(map, RTL8365MB_MAGIC_REG, RTL8365MB_MAGIC_VALUE);
2026 if (ret)
2027 return ret;
2028
2029 ret = regmap_read(map, RTL8365MB_CHIP_ID_REG, id);
2030 if (ret)
2031 return ret;
2032
2033 ret = regmap_read(map, RTL8365MB_CHIP_VER_REG, ver);
2034 if (ret)
2035 return ret;
2036
2037 /* Reset magic register */
2038 ret = regmap_write(map, RTL8365MB_MAGIC_REG, 0);
2039 if (ret)
2040 return ret;
2041
2042 return 0;
2043}
2044
2045static int rtl8365mb_detect(struct realtek_priv *priv)
2046{
2047 struct rtl8365mb *mb = priv->chip_data;
2048 u32 chip_id;
2049 u32 chip_ver;
2050 int ret;
2051 int i;
2052
2053 ret = rtl8365mb_get_chip_id_and_ver(priv->map, &chip_id, &chip_ver);
2054 if (ret) {
2055 dev_err(priv->dev, "failed to read chip id and version: %d\n",
2056 ret);
2057 return ret;
2058 }
2059
2060 for (i = 0; i < ARRAY_SIZE(rtl8365mb_chip_infos); i++) {
2061 const struct rtl8365mb_chip_info *ci = &rtl8365mb_chip_infos[i];
2062
2063 if (ci->chip_id == chip_id && ci->chip_ver == chip_ver) {
2064 mb->chip_info = ci;
2065 break;
2066 }
2067 }
2068
2069 if (!mb->chip_info) {
2070 dev_err(priv->dev,
2071 "unrecognized switch (id=0x%04x, ver=0x%04x)", chip_id,
2072 chip_ver);
2073 return -ENODEV;
2074 }
2075
2076 dev_info(priv->dev, "found an %s switch\n", mb->chip_info->name);
2077
2078 priv->num_ports = RTL8365MB_MAX_NUM_PORTS;
2079 mb->priv = priv;
2080 mb->cpu.trap_port = RTL8365MB_MAX_NUM_PORTS;
2081 mb->cpu.insert = RTL8365MB_CPU_INSERT_TO_ALL;
2082 mb->cpu.position = RTL8365MB_CPU_POS_AFTER_SA;
2083 mb->cpu.rx_length = RTL8365MB_CPU_RXLEN_64BYTES;
2084 mb->cpu.format = RTL8365MB_CPU_FORMAT_8BYTES;
2085
2086 return 0;
2087}
2088
2089static const struct dsa_switch_ops rtl8365mb_switch_ops_smi = {
2090 .get_tag_protocol = rtl8365mb_get_tag_protocol,
2091 .change_tag_protocol = rtl8365mb_change_tag_protocol,
2092 .setup = rtl8365mb_setup,
2093 .teardown = rtl8365mb_teardown,
2094 .phylink_get_caps = rtl8365mb_phylink_get_caps,
2095 .phylink_mac_config = rtl8365mb_phylink_mac_config,
2096 .phylink_mac_link_down = rtl8365mb_phylink_mac_link_down,
2097 .phylink_mac_link_up = rtl8365mb_phylink_mac_link_up,
2098 .port_stp_state_set = rtl8365mb_port_stp_state_set,
2099 .get_strings = rtl8365mb_get_strings,
2100 .get_ethtool_stats = rtl8365mb_get_ethtool_stats,
2101 .get_sset_count = rtl8365mb_get_sset_count,
2102 .get_eth_phy_stats = rtl8365mb_get_phy_stats,
2103 .get_eth_mac_stats = rtl8365mb_get_mac_stats,
2104 .get_eth_ctrl_stats = rtl8365mb_get_ctrl_stats,
2105 .get_stats64 = rtl8365mb_get_stats64,
2106};
2107
2108static const struct dsa_switch_ops rtl8365mb_switch_ops_mdio = {
2109 .get_tag_protocol = rtl8365mb_get_tag_protocol,
2110 .change_tag_protocol = rtl8365mb_change_tag_protocol,
2111 .setup = rtl8365mb_setup,
2112 .teardown = rtl8365mb_teardown,
2113 .phylink_get_caps = rtl8365mb_phylink_get_caps,
2114 .phylink_mac_config = rtl8365mb_phylink_mac_config,
2115 .phylink_mac_link_down = rtl8365mb_phylink_mac_link_down,
2116 .phylink_mac_link_up = rtl8365mb_phylink_mac_link_up,
2117 .phy_read = rtl8365mb_dsa_phy_read,
2118 .phy_write = rtl8365mb_dsa_phy_write,
2119 .port_stp_state_set = rtl8365mb_port_stp_state_set,
2120 .get_strings = rtl8365mb_get_strings,
2121 .get_ethtool_stats = rtl8365mb_get_ethtool_stats,
2122 .get_sset_count = rtl8365mb_get_sset_count,
2123 .get_eth_phy_stats = rtl8365mb_get_phy_stats,
2124 .get_eth_mac_stats = rtl8365mb_get_mac_stats,
2125 .get_eth_ctrl_stats = rtl8365mb_get_ctrl_stats,
2126 .get_stats64 = rtl8365mb_get_stats64,
2127};
2128
2129static const struct realtek_ops rtl8365mb_ops = {
2130 .detect = rtl8365mb_detect,
2131 .phy_read = rtl8365mb_phy_read,
2132 .phy_write = rtl8365mb_phy_write,
2133};
2134
2135const struct realtek_variant rtl8365mb_variant = {
2136 .ds_ops_smi = &rtl8365mb_switch_ops_smi,
2137 .ds_ops_mdio = &rtl8365mb_switch_ops_mdio,
2138 .ops = &rtl8365mb_ops,
2139 .clk_delay = 10,
2140 .cmd_read = 0xb9,
2141 .cmd_write = 0xb8,
2142 .chip_data_sz = sizeof(struct rtl8365mb),
2143};
2144EXPORT_SYMBOL_GPL(rtl8365mb_variant);
2145
2146MODULE_AUTHOR("Alvin Šipraga <alsi@bang-olufsen.dk>");
2147MODULE_DESCRIPTION("Driver for RTL8365MB-VC ethernet switch");
2148MODULE_LICENSE("GPL");