2f68a0a1cef0a95261d67fc1b0f3a506784fba9d
[openwrt/staging/jow.git] / target / linux / realtek / files-5.15 / drivers / net / dsa / rtl83xx / common.c
1 // SPDX-License-Identifier: GPL-2.0-only
2
3 #include <linux/of_mdio.h>
4 #include <linux/of_platform.h>
5 #include <net/arp.h>
6 #include <net/nexthop.h>
7 #include <net/neighbour.h>
8 #include <net/netevent.h>
9 #include <linux/inetdevice.h>
10 #include <linux/rhashtable.h>
11 #include <linux/of_net.h>
12 #include <asm/mach-rtl838x/mach-rtl83xx.h>
13
14 #include "rtl83xx.h"
15
16 extern struct rtl83xx_soc_info soc_info;
17
18 extern const struct rtl838x_reg rtl838x_reg;
19 extern const struct rtl838x_reg rtl839x_reg;
20 extern const struct rtl838x_reg rtl930x_reg;
21 extern const struct rtl838x_reg rtl931x_reg;
22
23 extern const struct dsa_switch_ops rtl83xx_switch_ops;
24 extern const struct dsa_switch_ops rtl930x_switch_ops;
25
26 DEFINE_MUTEX(smi_lock);
27
28 int rtl83xx_port_get_stp_state(struct rtl838x_switch_priv *priv, int port)
29 {
30 u32 msti = 0;
31 u32 port_state[4];
32 int index, bit;
33 int pos = port;
34 int n = priv->port_width << 1;
35
36 /* Ports above or equal CPU port can never be configured */
37 if (port >= priv->cpu_port)
38 return -1;
39
40 mutex_lock(&priv->reg_mutex);
41
42 /* For the RTL839x and following, the bits are left-aligned in the 64/128 bit field */
43 if (priv->family_id == RTL8390_FAMILY_ID)
44 pos += 12;
45 if (priv->family_id == RTL9300_FAMILY_ID)
46 pos += 3;
47 if (priv->family_id == RTL9310_FAMILY_ID)
48 pos += 8;
49
50 index = n - (pos >> 4) - 1;
51 bit = (pos << 1) % 32;
52
53 priv->r->stp_get(priv, msti, port_state);
54
55 mutex_unlock(&priv->reg_mutex);
56
57 return (port_state[index] >> bit) & 3;
58 }
59
60 static struct table_reg rtl838x_tbl_regs[] = {
61 TBL_DESC(0x6900, 0x6908, 3, 15, 13, 1), /* RTL8380_TBL_L2 */
62 TBL_DESC(0x6914, 0x6918, 18, 14, 12, 1), /* RTL8380_TBL_0 */
63 TBL_DESC(0xA4C8, 0xA4CC, 6, 14, 12, 1), /* RTL8380_TBL_1 */
64
65 TBL_DESC(0x1180, 0x1184, 3, 16, 14, 0), /* RTL8390_TBL_L2 */
66 TBL_DESC(0x1190, 0x1194, 17, 15, 12, 0), /* RTL8390_TBL_0 */
67 TBL_DESC(0x6B80, 0x6B84, 4, 14, 12, 0), /* RTL8390_TBL_1 */
68 TBL_DESC(0x611C, 0x6120, 9, 8, 6, 0), /* RTL8390_TBL_2 */
69
70 TBL_DESC(0xB320, 0xB334, 3, 18, 16, 0), /* RTL9300_TBL_L2 */
71 TBL_DESC(0xB340, 0xB344, 19, 16, 12, 0), /* RTL9300_TBL_0 */
72 TBL_DESC(0xB3A0, 0xB3A4, 20, 16, 13, 0), /* RTL9300_TBL_1 */
73 TBL_DESC(0xCE04, 0xCE08, 6, 14, 12, 0), /* RTL9300_TBL_2 */
74 TBL_DESC(0xD600, 0xD604, 30, 7, 6, 0), /* RTL9300_TBL_HSB */
75 TBL_DESC(0x7880, 0x7884, 22, 9, 8, 0), /* RTL9300_TBL_HSA */
76
77 TBL_DESC(0x8500, 0x8508, 8, 19, 15, 0), /* RTL9310_TBL_0 */
78 TBL_DESC(0x40C0, 0x40C4, 22, 16, 14, 0), /* RTL9310_TBL_1 */
79 TBL_DESC(0x8528, 0x852C, 6, 18, 14, 0), /* RTL9310_TBL_2 */
80 TBL_DESC(0x0200, 0x0204, 9, 15, 12, 0), /* RTL9310_TBL_3 */
81 TBL_DESC(0x20dc, 0x20e0, 29, 7, 6, 0), /* RTL9310_TBL_4 */
82 TBL_DESC(0x7e1c, 0x7e20, 53, 8, 6, 0), /* RTL9310_TBL_5 */
83 };
84
85 void rtl_table_init(void)
86 {
87 int i;
88
89 for (i = 0; i < RTL_TBL_END; i++)
90 mutex_init(&rtl838x_tbl_regs[i].lock);
91 }
92
93 /* Request access to table t in table access register r
94 * Returns a handle to a lock for that table
95 */
96 struct table_reg *rtl_table_get(rtl838x_tbl_reg_t r, int t)
97 {
98 if (r >= RTL_TBL_END)
99 return NULL;
100
101 if (t >= BIT(rtl838x_tbl_regs[r].c_bit-rtl838x_tbl_regs[r].t_bit))
102 return NULL;
103
104 mutex_lock(&rtl838x_tbl_regs[r].lock);
105 rtl838x_tbl_regs[r].tbl = t;
106
107 return &rtl838x_tbl_regs[r];
108 }
109
110 /* Release a table r, unlock the corresponding lock */
111 void rtl_table_release(struct table_reg *r)
112 {
113 if (!r)
114 return;
115
116 /* pr_info("Unlocking %08x\n", (u32)r); */
117 mutex_unlock(&r->lock);
118 /* pr_info("Unlock done\n"); */
119 }
120
121 static int rtl_table_exec(struct table_reg *r, bool is_write, int idx)
122 {
123 int ret = 0;
124 u32 cmd, val;
125
126 /* Read/write bit has inverted meaning on RTL838x */
127 if (r->rmode)
128 cmd = is_write ? 0 : BIT(r->c_bit);
129 else
130 cmd = is_write ? BIT(r->c_bit) : 0;
131
132 cmd |= BIT(r->c_bit + 1); /* Execute bit */
133 cmd |= r->tbl << r->t_bit; /* Table type */
134 cmd |= idx & (BIT(r->t_bit) - 1); /* Index */
135
136 sw_w32(cmd, r->addr);
137
138 ret = readx_poll_timeout(sw_r32, r->addr, val,
139 !(val & BIT(r->c_bit + 1)), 20, 10000);
140 if (ret)
141 pr_err("%s: timeout\n", __func__);
142
143 return ret;
144 }
145
146 /* Reads table index idx into the data registers of the table */
147 int rtl_table_read(struct table_reg *r, int idx)
148 {
149 return rtl_table_exec(r, false, idx);
150 }
151
152 /* Writes the content of the table data registers into the table at index idx */
153 int rtl_table_write(struct table_reg *r, int idx)
154 {
155 return rtl_table_exec(r, true, idx);
156 }
157
158 /* Returns the address of the ith data register of table register r
159 * the address is relative to the beginning of the Switch-IO block at 0xbb000000
160 */
161 inline u16 rtl_table_data(struct table_reg *r, int i)
162 {
163 if (i >= r->max_data)
164 i = r->max_data - 1;
165 return r->data + i * 4;
166 }
167
168 inline u32 rtl_table_data_r(struct table_reg *r, int i)
169 {
170 return sw_r32(rtl_table_data(r, i));
171 }
172
173 inline void rtl_table_data_w(struct table_reg *r, u32 v, int i)
174 {
175 sw_w32(v, rtl_table_data(r, i));
176 }
177
178 /* Port register accessor functions for the RTL838x and RTL930X SoCs */
179 void rtl838x_mask_port_reg(u64 clear, u64 set, int reg)
180 {
181 sw_w32_mask((u32)clear, (u32)set, reg);
182 }
183
184 void rtl838x_set_port_reg(u64 set, int reg)
185 {
186 sw_w32((u32)set, reg);
187 }
188
189 u64 rtl838x_get_port_reg(int reg)
190 {
191 return ((u64)sw_r32(reg));
192 }
193
194 /* Port register accessor functions for the RTL839x and RTL931X SoCs */
195 void rtl839x_mask_port_reg_be(u64 clear, u64 set, int reg)
196 {
197 sw_w32_mask((u32)(clear >> 32), (u32)(set >> 32), reg);
198 sw_w32_mask((u32)(clear & 0xffffffff), (u32)(set & 0xffffffff), reg + 4);
199 }
200
201 u64 rtl839x_get_port_reg_be(int reg)
202 {
203 u64 v = sw_r32(reg);
204
205 v <<= 32;
206 v |= sw_r32(reg + 4);
207
208 return v;
209 }
210
211 void rtl839x_set_port_reg_be(u64 set, int reg)
212 {
213 sw_w32(set >> 32, reg);
214 sw_w32(set & 0xffffffff, reg + 4);
215 }
216
217 void rtl839x_mask_port_reg_le(u64 clear, u64 set, int reg)
218 {
219 sw_w32_mask((u32)clear, (u32)set, reg);
220 sw_w32_mask((u32)(clear >> 32), (u32)(set >> 32), reg + 4);
221 }
222
223 void rtl839x_set_port_reg_le(u64 set, int reg)
224 {
225 sw_w32(set, reg);
226 sw_w32(set >> 32, reg + 4);
227 }
228
229 u64 rtl839x_get_port_reg_le(int reg)
230 {
231 u64 v = sw_r32(reg + 4);
232
233 v <<= 32;
234 v |= sw_r32(reg);
235
236 return v;
237 }
238
239 int read_phy(u32 port, u32 page, u32 reg, u32 *val)
240 {
241 switch (soc_info.family) {
242 case RTL8380_FAMILY_ID:
243 return rtl838x_read_phy(port, page, reg, val);
244 case RTL8390_FAMILY_ID:
245 return rtl839x_read_phy(port, page, reg, val);
246 case RTL9300_FAMILY_ID:
247 return rtl930x_read_phy(port, page, reg, val);
248 case RTL9310_FAMILY_ID:
249 return rtl931x_read_phy(port, page, reg, val);
250 }
251
252 return -1;
253 }
254
255 int write_phy(u32 port, u32 page, u32 reg, u32 val)
256 {
257 switch (soc_info.family) {
258 case RTL8380_FAMILY_ID:
259 return rtl838x_write_phy(port, page, reg, val);
260 case RTL8390_FAMILY_ID:
261 return rtl839x_write_phy(port, page, reg, val);
262 case RTL9300_FAMILY_ID:
263 return rtl930x_write_phy(port, page, reg, val);
264 case RTL9310_FAMILY_ID:
265 return rtl931x_write_phy(port, page, reg, val);
266 }
267
268 return -1;
269 }
270
271 static int __init rtl83xx_mdio_probe(struct rtl838x_switch_priv *priv)
272 {
273 struct device *dev = priv->dev;
274 struct device_node *dn, *phy_node, *mii_np = dev->of_node;
275 struct mii_bus *bus;
276 int ret;
277 u32 pn;
278
279 pr_debug("In %s\n", __func__);
280 mii_np = of_find_compatible_node(NULL, NULL, "realtek,rtl838x-mdio");
281 if (mii_np) {
282 pr_debug("Found compatible MDIO node!\n");
283 } else {
284 dev_err(priv->dev, "no %s child node found", "mdio-bus");
285 return -ENODEV;
286 }
287
288 priv->mii_bus = of_mdio_find_bus(mii_np);
289 if (!priv->mii_bus) {
290 pr_debug("Deferring probe of mdio bus\n");
291 return -EPROBE_DEFER;
292 }
293 if (!of_device_is_available(mii_np))
294 ret = -ENODEV;
295
296 bus = devm_mdiobus_alloc(priv->ds->dev);
297 if (!bus)
298 return -ENOMEM;
299
300 bus->name = "rtl838x slave mii";
301
302 /* Since the NIC driver is loaded first, we can use the mdio rw functions
303 * assigned there.
304 */
305 bus->read = priv->mii_bus->read;
306 bus->write = priv->mii_bus->write;
307 bus->read_paged = priv->mii_bus->read_paged;
308 bus->write_paged = priv->mii_bus->write_paged;
309 snprintf(bus->id, MII_BUS_ID_SIZE, "%s-%d", bus->name, dev->id);
310
311 bus->parent = dev;
312 priv->ds->slave_mii_bus = bus;
313 priv->ds->slave_mii_bus->priv = priv->mii_bus->priv;
314 priv->ds->slave_mii_bus->access_capabilities = priv->mii_bus->access_capabilities;
315
316 ret = mdiobus_register(priv->ds->slave_mii_bus);
317 if (ret && mii_np) {
318 of_node_put(dn);
319 return ret;
320 }
321
322 dn = of_find_compatible_node(NULL, NULL, "realtek,rtl83xx-switch");
323 if (!dn) {
324 dev_err(priv->dev, "No RTL switch node in DTS\n");
325 return -ENODEV;
326 }
327
328 for_each_node_by_name(dn, "port") {
329 phy_interface_t interface;
330 u32 led_set;
331
332 if (!of_device_is_available(dn))
333 continue;
334
335 if (of_property_read_u32(dn, "reg", &pn))
336 continue;
337
338 phy_node = of_parse_phandle(dn, "phy-handle", 0);
339 if (!phy_node) {
340 if (pn != priv->cpu_port)
341 dev_err(priv->dev, "Port node %d misses phy-handle\n", pn);
342 continue;
343 }
344
345 if (of_property_read_u32(phy_node, "sds", &priv->ports[pn].sds_num))
346 priv->ports[pn].sds_num = -1;
347 pr_debug("%s port %d has SDS %d\n", __func__, pn, priv->ports[pn].sds_num);
348
349 if (of_get_phy_mode(dn, &interface))
350 interface = PHY_INTERFACE_MODE_NA;
351 if (interface == PHY_INTERFACE_MODE_HSGMII)
352 priv->ports[pn].is2G5 = true;
353 if (interface == PHY_INTERFACE_MODE_USXGMII)
354 priv->ports[pn].is2G5 = priv->ports[pn].is10G = true;
355 if (interface == PHY_INTERFACE_MODE_10GBASER)
356 priv->ports[pn].is10G = true;
357
358 if (of_property_read_u32(dn, "led-set", &led_set))
359 led_set = 0;
360 priv->ports[pn].led_set = led_set;
361
362 /* Check for the integrated SerDes of the RTL8380M first */
363 if (of_property_read_bool(phy_node, "phy-is-integrated")
364 && priv->id == 0x8380 && pn >= 24) {
365 pr_debug("----> FÓUND A SERDES\n");
366 priv->ports[pn].phy = PHY_RTL838X_SDS;
367 continue;
368 }
369
370 if (priv->id >= 0x9300) {
371 priv->ports[pn].phy_is_integrated = false;
372 if (of_property_read_bool(phy_node, "phy-is-integrated")) {
373 priv->ports[pn].phy_is_integrated = true;
374 priv->ports[pn].phy = PHY_RTL930X_SDS;
375 }
376 } else {
377 if (of_property_read_bool(phy_node, "phy-is-integrated") &&
378 !of_property_read_bool(phy_node, "sfp")) {
379 priv->ports[pn].phy = PHY_RTL8218B_INT;
380 continue;
381 }
382 }
383
384 if (!of_property_read_bool(phy_node, "phy-is-integrated") &&
385 of_property_read_bool(phy_node, "sfp")) {
386 priv->ports[pn].phy = PHY_RTL8214FC;
387 continue;
388 }
389
390 if (!of_property_read_bool(phy_node, "phy-is-integrated") &&
391 !of_property_read_bool(phy_node, "sfp")) {
392 priv->ports[pn].phy = PHY_RTL8218B_EXT;
393 continue;
394 }
395 }
396
397 /* Disable MAC polling the PHY so that we can start configuration */
398 priv->r->set_port_reg_le(0ULL, priv->r->smi_poll_ctrl);
399
400 /* Enable PHY control via SoC */
401 if (priv->family_id == RTL8380_FAMILY_ID) {
402 /* Enable SerDes NWAY and PHY control via SoC */
403 sw_w32_mask(BIT(7), BIT(15), RTL838X_SMI_GLB_CTRL);
404 } else if (priv->family_id == RTL8390_FAMILY_ID) {
405 /* Disable PHY polling via SoC */
406 sw_w32_mask(BIT(7), 0, RTL839X_SMI_GLB_CTRL);
407 }
408
409 /* Power on fibre ports and reset them if necessary */
410 if (priv->ports[24].phy == PHY_RTL838X_SDS) {
411 pr_debug("Powering on fibre ports & reset\n");
412 rtl8380_sds_power(24, 1);
413 rtl8380_sds_power(26, 1);
414 }
415
416 pr_debug("%s done\n", __func__);
417
418 return 0;
419 }
420
421 static int __init rtl83xx_get_l2aging(struct rtl838x_switch_priv *priv)
422 {
423 int t = sw_r32(priv->r->l2_ctrl_1);
424
425 t &= priv->family_id == RTL8380_FAMILY_ID ? 0x7fffff : 0x1FFFFF;
426
427 if (priv->family_id == RTL8380_FAMILY_ID)
428 t = t * 128 / 625; /* Aging time in seconds. 0: L2 aging disabled */
429 else
430 t = (t * 3) / 5;
431
432 pr_debug("L2 AGING time: %d sec\n", t);
433 pr_debug("Dynamic aging for ports: %x\n", sw_r32(priv->r->l2_port_aging_out));
434
435 return t;
436 }
437
438 /* Caller must hold priv->reg_mutex */
439 int rtl83xx_lag_add(struct dsa_switch *ds, int group, int port, struct netdev_lag_upper_info *info)
440 {
441 struct rtl838x_switch_priv *priv = ds->priv;
442 int i;
443 u32 algomsk = 0;
444 u32 algoidx = 0;
445
446 if (info->tx_type != NETDEV_LAG_TX_TYPE_HASH) {
447 pr_err("%s: Only mode LACP 802.3ad (4) allowed.\n", __func__);
448 return -EINVAL;
449 }
450
451 if (group >= priv->n_lags) {
452 pr_err("%s: LAG %d invalid.\n", __func__, group);
453 return -EINVAL;
454 }
455
456 if (port >= priv->cpu_port) {
457 pr_err("%s: Port %d invalid.\n", __func__, port);
458 return -EINVAL;
459 }
460
461 for (i = 0; i < priv->n_lags; i++) {
462 if (priv->lags_port_members[i] & BIT_ULL(port))
463 break;
464 }
465 if (i != priv->n_lags) {
466 pr_err("%s: Port %d already member of LAG %d.\n", __func__, port, i);
467 return -ENOSPC;
468 }
469
470 switch(info->hash_type) {
471 case NETDEV_LAG_HASH_L2:
472 algomsk |= TRUNK_DISTRIBUTION_ALGO_DMAC_BIT;
473 algomsk |= TRUNK_DISTRIBUTION_ALGO_SMAC_BIT;
474 break;
475 case NETDEV_LAG_HASH_L23:
476 algomsk |= TRUNK_DISTRIBUTION_ALGO_DMAC_BIT;
477 algomsk |= TRUNK_DISTRIBUTION_ALGO_SMAC_BIT;
478 algomsk |= TRUNK_DISTRIBUTION_ALGO_SIP_BIT; /* source ip */
479 algomsk |= TRUNK_DISTRIBUTION_ALGO_DIP_BIT; /* dest ip */
480 algoidx = 1;
481 break;
482 case NETDEV_LAG_HASH_L34:
483 algomsk |= TRUNK_DISTRIBUTION_ALGO_SRC_L4PORT_BIT; /* sport */
484 algomsk |= TRUNK_DISTRIBUTION_ALGO_DST_L4PORT_BIT; /* dport */
485 algomsk |= TRUNK_DISTRIBUTION_ALGO_SIP_BIT; /* source ip */
486 algomsk |= TRUNK_DISTRIBUTION_ALGO_DIP_BIT; /* dest ip */
487 algoidx = 2;
488 break;
489 default:
490 algomsk |= 0x7f;
491 }
492 priv->r->set_distribution_algorithm(group, algoidx, algomsk);
493 priv->r->mask_port_reg_be(0, BIT_ULL(port), priv->r->trk_mbr_ctr(group));
494 priv->lags_port_members[group] |= BIT_ULL(port);
495
496 pr_info("%s: Added port %d to LAG %d. Members now %016llx.\n",
497 __func__, port, group, priv->lags_port_members[group]);
498
499 return 0;
500 }
501
502 /* Caller must hold priv->reg_mutex */
503 int rtl83xx_lag_del(struct dsa_switch *ds, int group, int port)
504 {
505 struct rtl838x_switch_priv *priv = ds->priv;
506
507 if (group >= priv->n_lags) {
508 pr_err("%s: LAG %d invalid.\n", __func__, group);
509 return -EINVAL;
510 }
511
512 if (port >= priv->cpu_port) {
513 pr_err("%s: Port %d invalid.\n", __func__, port);
514 return -EINVAL;
515 }
516
517 if (!(priv->lags_port_members[group] & BIT_ULL(port))) {
518 pr_err("%s: Port %d not member of LAG %d.\n", __func__, port, group);
519 return -ENOSPC;
520 }
521
522 /* 0x7f algo mask all */
523 priv->r->mask_port_reg_be(BIT_ULL(port), 0, priv->r->trk_mbr_ctr(group));
524 priv->lags_port_members[group] &= ~BIT_ULL(port);
525
526 pr_info("%s: Removed port %d from LAG %d. Members now %016llx.\n",
527 __func__, port, group, priv->lags_port_members[group]);
528
529 return 0;
530 }
531
532 /* Allocate a 64 bit octet counter located in the LOG HW table */
533 static int rtl83xx_octet_cntr_alloc(struct rtl838x_switch_priv *priv)
534 {
535 int idx;
536
537 mutex_lock(&priv->reg_mutex);
538
539 idx = find_first_zero_bit(priv->octet_cntr_use_bm, MAX_COUNTERS);
540 if (idx >= priv->n_counters) {
541 mutex_unlock(&priv->reg_mutex);
542 return -1;
543 }
544
545 set_bit(idx, priv->octet_cntr_use_bm);
546 mutex_unlock(&priv->reg_mutex);
547
548 return idx;
549 }
550
551 /* Allocate a 32-bit packet counter
552 * 2 32-bit packet counters share the location of a 64-bit octet counter
553 * Initially there are no free packet counters and 2 new ones need to be freed
554 * by allocating the corresponding octet counter
555 */
556 int rtl83xx_packet_cntr_alloc(struct rtl838x_switch_priv *priv)
557 {
558 int idx, j;
559
560 mutex_lock(&priv->reg_mutex);
561
562 /* Because initially no packet counters are free, the logic is reversed:
563 * a 0-bit means the counter is already allocated (for octets)
564 */
565 idx = find_first_bit(priv->packet_cntr_use_bm, MAX_COUNTERS * 2);
566 if (idx >= priv->n_counters * 2) {
567 j = find_first_zero_bit(priv->octet_cntr_use_bm, MAX_COUNTERS);
568 if (j >= priv->n_counters) {
569 mutex_unlock(&priv->reg_mutex);
570 return -1;
571 }
572 set_bit(j, priv->octet_cntr_use_bm);
573 idx = j * 2;
574 set_bit(j * 2 + 1, priv->packet_cntr_use_bm);
575
576 } else {
577 clear_bit(idx, priv->packet_cntr_use_bm);
578 }
579
580 mutex_unlock(&priv->reg_mutex);
581
582 return idx;
583 }
584
585 /* Add an L2 nexthop entry for the L3 routing system / PIE forwarding in the SoC
586 * Use VID and MAC in rtl838x_l2_entry to identify either a free slot in the L2 hash table
587 * or mark an existing entry as a nexthop by setting it's nexthop bit
588 * Called from the L3 layer
589 * The index in the L2 hash table is filled into nh->l2_id;
590 */
591 int rtl83xx_l2_nexthop_add(struct rtl838x_switch_priv *priv, struct rtl83xx_nexthop *nh)
592 {
593 struct rtl838x_l2_entry e;
594 u64 seed = priv->r->l2_hash_seed(nh->mac, nh->rvid);
595 u32 key = priv->r->l2_hash_key(priv, seed);
596 int i, idx = -1;
597 u64 entry;
598
599 pr_debug("%s searching for %08llx vid %d with key %d, seed: %016llx\n",
600 __func__, nh->mac, nh->rvid, key, seed);
601
602 e.type = L2_UNICAST;
603 u64_to_ether_addr(nh->mac, &e.mac[0]);
604 e.port = nh->port;
605
606 /* Loop over all entries in the hash-bucket and over the second block on 93xx SoCs */
607 for (i = 0; i < priv->l2_bucket_size; i++) {
608 entry = priv->r->read_l2_entry_using_hash(key, i, &e);
609
610 if (!e.valid || ((entry & 0x0fffffffffffffffULL) == seed)) {
611 idx = i > 3 ? ((key >> 14) & 0xffff) | i >> 1
612 : ((key << 2) | i) & 0xffff;
613 break;
614 }
615 }
616
617 if (idx < 0) {
618 pr_err("%s: No more L2 forwarding entries available\n", __func__);
619 return -1;
620 }
621
622 /* Found an existing (e->valid is true) or empty entry, make it a nexthop entry */
623 nh->l2_id = idx;
624 if (e.valid) {
625 nh->port = e.port;
626 nh->vid = e.vid; /* Save VID */
627 nh->rvid = e.rvid;
628 nh->dev_id = e.stack_dev;
629 /* If the entry is already a valid next hop entry, don't change it */
630 if (e.next_hop)
631 return 0;
632 } else {
633 e.valid = true;
634 e.is_static = true;
635 e.rvid = nh->rvid;
636 e.is_ip_mc = false;
637 e.is_ipv6_mc = false;
638 e.block_da = false;
639 e.block_sa = false;
640 e.suspended = false;
641 e.age = 0; /* With port-ignore */
642 e.port = priv->port_ignore;
643 u64_to_ether_addr(nh->mac, &e.mac[0]);
644 }
645 e.next_hop = true;
646 e.nh_route_id = nh->id; /* NH route ID takes place of VID */
647 e.nh_vlan_target = false;
648
649 priv->r->write_l2_entry_using_hash(idx >> 2, idx & 0x3, &e);
650
651 return 0;
652 }
653
654 /* Removes a Layer 2 next hop entry in the forwarding database
655 * If it was static, the entire entry is removed, otherwise the nexthop bit is cleared
656 * and we wait until the entry ages out
657 */
658 int rtl83xx_l2_nexthop_rm(struct rtl838x_switch_priv *priv, struct rtl83xx_nexthop *nh)
659 {
660 struct rtl838x_l2_entry e;
661 u32 key = nh->l2_id >> 2;
662 int i = nh->l2_id & 0x3;
663 u64 entry = entry = priv->r->read_l2_entry_using_hash(key, i, &e);
664
665 pr_debug("%s: id %d, key %d, index %d\n", __func__, nh->l2_id, key, i);
666 if (!e.valid) {
667 dev_err(priv->dev, "unknown nexthop, id %x\n", nh->l2_id);
668 return -1;
669 }
670
671 if (e.is_static)
672 e.valid = false;
673 e.next_hop = false;
674 e.vid = nh->vid; /* Restore VID */
675 e.rvid = nh->rvid;
676
677 priv->r->write_l2_entry_using_hash(key, i, &e);
678
679 return 0;
680 }
681
682 static int rtl83xx_handle_changeupper(struct rtl838x_switch_priv *priv,
683 struct net_device *ndev,
684 struct netdev_notifier_changeupper_info *info)
685 {
686 struct net_device *upper = info->upper_dev;
687 struct netdev_lag_upper_info *lag_upper_info = NULL;
688 int i, j, err;
689
690 if (!netif_is_lag_master(upper))
691 return 0;
692
693 mutex_lock(&priv->reg_mutex);
694
695 for (i = 0; i < priv->n_lags; i++) {
696 if ((!priv->lag_devs[i]) || (priv->lag_devs[i] == upper))
697 break;
698 }
699 for (j = 0; j < priv->cpu_port; j++) {
700 if (priv->ports[j].dp->slave == ndev)
701 break;
702 }
703 if (j >= priv->cpu_port) {
704 err = -EINVAL;
705 goto out;
706 }
707
708 if (info->linking) {
709 lag_upper_info = info->upper_info;
710 if (!priv->lag_devs[i])
711 priv->lag_devs[i] = upper;
712 err = rtl83xx_lag_add(priv->ds, i, priv->ports[j].dp->index, lag_upper_info);
713 if (err) {
714 err = -EINVAL;
715 goto out;
716 }
717 } else {
718 if (!priv->lag_devs[i])
719 err = -EINVAL;
720 err = rtl83xx_lag_del(priv->ds, i, priv->ports[j].dp->index);
721 if (err) {
722 err = -EINVAL;
723 goto out;
724 }
725 if (!priv->lags_port_members[i])
726 priv->lag_devs[i] = NULL;
727 }
728
729 out:
730 mutex_unlock(&priv->reg_mutex);
731
732 return 0;
733 }
734
735 /* Is the lower network device a DSA slave network device of our RTL930X-switch?
736 * Unfortunately we cannot just follow dev->dsa_prt as this is only set for the
737 * DSA master device.
738 */
739 int rtl83xx_port_is_under(const struct net_device * dev, struct rtl838x_switch_priv *priv)
740 {
741 int i;
742
743 /* TODO: On 5.12:
744 * if(!dsa_slave_dev_check(dev)) {
745 * netdev_info(dev, "%s: not a DSA device.\n", __func__);
746 * return -EINVAL;
747 * }
748 */
749
750 for (i = 0; i < priv->cpu_port; i++) {
751 if (!priv->ports[i].dp)
752 continue;
753 if (priv->ports[i].dp->slave == dev)
754 return i;
755 }
756
757 return -EINVAL;
758 }
759
760 static int rtl83xx_netdevice_event(struct notifier_block *this,
761 unsigned long event, void *ptr)
762 {
763 struct net_device *ndev = netdev_notifier_info_to_dev(ptr);
764 struct rtl838x_switch_priv *priv;
765 int err;
766
767 pr_debug("In: %s, event: %lu\n", __func__, event);
768
769 if ((event != NETDEV_CHANGEUPPER) && (event != NETDEV_CHANGELOWERSTATE))
770 return NOTIFY_DONE;
771
772 priv = container_of(this, struct rtl838x_switch_priv, nb);
773 switch (event) {
774 case NETDEV_CHANGEUPPER:
775 err = rtl83xx_handle_changeupper(priv, ndev, ptr);
776 break;
777 }
778
779 if (err)
780 return err;
781
782 return NOTIFY_DONE;
783 }
784
785 const static struct rhashtable_params route_ht_params = {
786 .key_len = sizeof(u32),
787 .key_offset = offsetof(struct rtl83xx_route, gw_ip),
788 .head_offset = offsetof(struct rtl83xx_route, linkage),
789 };
790
791 /* Updates an L3 next hop entry in the ROUTING table */
792 static int rtl83xx_l3_nexthop_update(struct rtl838x_switch_priv *priv, __be32 ip_addr, u64 mac)
793 {
794 struct rtl83xx_route *r;
795 struct rhlist_head *tmp, *list;
796
797 rcu_read_lock();
798 list = rhltable_lookup(&priv->routes, &ip_addr, route_ht_params);
799 if (!list) {
800 rcu_read_unlock();
801 return -ENOENT;
802 }
803
804 rhl_for_each_entry_rcu(r, tmp, list, linkage) {
805 pr_info("%s: Setting up fwding: ip %pI4, GW mac %016llx\n",
806 __func__, &ip_addr, mac);
807
808 /* Reads the ROUTING table entry associated with the route */
809 priv->r->route_read(r->id, r);
810 pr_info("Route with id %d to %pI4 / %d\n", r->id, &r->dst_ip, r->prefix_len);
811
812 r->nh.mac = r->nh.gw = mac;
813 r->nh.port = priv->port_ignore;
814 r->nh.id = r->id;
815
816 /* Do we need to explicitly add a DMAC entry with the route's nh index? */
817 if (priv->r->set_l3_egress_mac)
818 priv->r->set_l3_egress_mac(r->id, mac);
819
820 /* Update ROUTING table: map gateway-mac and switch-mac id to route id */
821 rtl83xx_l2_nexthop_add(priv, &r->nh);
822
823 r->attr.valid = true;
824 r->attr.action = ROUTE_ACT_FORWARD;
825 r->attr.type = 0;
826 r->attr.hit = false; /* Reset route-used indicator */
827
828 /* Add PIE entry with dst_ip and prefix_len */
829 r->pr.dip = r->dst_ip;
830 r->pr.dip_m = inet_make_mask(r->prefix_len);
831
832 if (r->is_host_route) {
833 int slot = priv->r->find_l3_slot(r, false);
834
835 pr_info("%s: Got slot for route: %d\n", __func__, slot);
836 priv->r->host_route_write(slot, r);
837 } else {
838 priv->r->route_write(r->id, r);
839 r->pr.fwd_sel = true;
840 r->pr.fwd_data = r->nh.l2_id;
841 r->pr.fwd_act = PIE_ACT_ROUTE_UC;
842 }
843
844 if (priv->r->set_l3_nexthop)
845 priv->r->set_l3_nexthop(r->nh.id, r->nh.l2_id, r->nh.if_id);
846
847 if (r->pr.id < 0) {
848 r->pr.packet_cntr = rtl83xx_packet_cntr_alloc(priv);
849 if (r->pr.packet_cntr >= 0) {
850 pr_info("Using packet counter %d\n", r->pr.packet_cntr);
851 r->pr.log_sel = true;
852 r->pr.log_data = r->pr.packet_cntr;
853 }
854 priv->r->pie_rule_add(priv, &r->pr);
855 } else {
856 int pkts = priv->r->packet_cntr_read(r->pr.packet_cntr);
857 pr_info("%s: total packets: %d\n", __func__, pkts);
858
859 priv->r->pie_rule_write(priv, r->pr.id, &r->pr);
860 }
861 }
862 rcu_read_unlock();
863
864 return 0;
865 }
866
867 static int rtl83xx_port_ipv4_resolve(struct rtl838x_switch_priv *priv,
868 struct net_device *dev, __be32 ip_addr)
869 {
870 struct neighbour *n = neigh_lookup(&arp_tbl, &ip_addr, dev);
871 int err = 0;
872 u64 mac;
873
874 if (!n) {
875 n = neigh_create(&arp_tbl, &ip_addr, dev);
876 if (IS_ERR(n))
877 return PTR_ERR(n);
878 }
879
880 /* If the neigh is already resolved, then go ahead and
881 * install the entry, otherwise start the ARP process to
882 * resolve the neigh.
883 */
884 if (n->nud_state & NUD_VALID) {
885 mac = ether_addr_to_u64(n->ha);
886 pr_info("%s: resolved mac: %016llx\n", __func__, mac);
887 rtl83xx_l3_nexthop_update(priv, ip_addr, mac);
888 } else {
889 pr_info("%s: need to wait\n", __func__);
890 neigh_event_send(n, NULL);
891 }
892
893 neigh_release(n);
894
895 return err;
896 }
897
898 struct rtl83xx_walk_data {
899 struct rtl838x_switch_priv *priv;
900 int port;
901 };
902
903 static int rtl83xx_port_lower_walk(struct net_device *lower, struct netdev_nested_priv *_priv)
904 {
905 struct rtl83xx_walk_data *data = (struct rtl83xx_walk_data *)_priv->data;
906 struct rtl838x_switch_priv *priv = data->priv;
907 int ret = 0;
908 int index;
909
910 index = rtl83xx_port_is_under(lower, priv);
911 data->port = index;
912 if (index >= 0) {
913 pr_debug("Found DSA-port, index %d\n", index);
914 ret = 1;
915 }
916
917 return ret;
918 }
919
920 int rtl83xx_port_dev_lower_find(struct net_device *dev, struct rtl838x_switch_priv *priv)
921 {
922 struct rtl83xx_walk_data data;
923 struct netdev_nested_priv _priv;
924
925 data.priv = priv;
926 data.port = 0;
927 _priv.data = (void *)&data;
928
929 netdev_walk_all_lower_dev(dev, rtl83xx_port_lower_walk, &_priv);
930
931 return data.port;
932 }
933
934 static struct rtl83xx_route *rtl83xx_route_alloc(struct rtl838x_switch_priv *priv, u32 ip)
935 {
936 struct rtl83xx_route *r;
937 int idx = 0, err;
938
939 mutex_lock(&priv->reg_mutex);
940
941 idx = find_first_zero_bit(priv->route_use_bm, MAX_ROUTES);
942 pr_debug("%s id: %d, ip %pI4\n", __func__, idx, &ip);
943
944 r = kzalloc(sizeof(*r), GFP_KERNEL);
945 if (!r) {
946 mutex_unlock(&priv->reg_mutex);
947 return r;
948 }
949
950 r->id = idx;
951 r->gw_ip = ip;
952 r->pr.id = -1; /* We still need to allocate a rule in HW */
953 r->is_host_route = false;
954
955 err = rhltable_insert(&priv->routes, &r->linkage, route_ht_params);
956 if (err) {
957 pr_err("Could not insert new rule\n");
958 mutex_unlock(&priv->reg_mutex);
959 goto out_free;
960 }
961
962 set_bit(idx, priv->route_use_bm);
963
964 mutex_unlock(&priv->reg_mutex);
965
966 return r;
967
968 out_free:
969 kfree(r);
970
971 return NULL;
972 }
973
974
975 static struct rtl83xx_route *rtl83xx_host_route_alloc(struct rtl838x_switch_priv *priv, u32 ip)
976 {
977 struct rtl83xx_route *r;
978 int idx = 0, err;
979
980 mutex_lock(&priv->reg_mutex);
981
982 idx = find_first_zero_bit(priv->host_route_use_bm, MAX_HOST_ROUTES);
983 pr_debug("%s id: %d, ip %pI4\n", __func__, idx, &ip);
984
985 r = kzalloc(sizeof(*r), GFP_KERNEL);
986 if (!r) {
987 mutex_unlock(&priv->reg_mutex);
988 return r;
989 }
990
991 /* We require a unique route ID irrespective of whether it is a prefix or host
992 * route (on RTL93xx) as we use this ID to associate a DMAC and next-hop entry
993 */
994 r->id = idx + MAX_ROUTES;
995
996 r->gw_ip = ip;
997 r->pr.id = -1; /* We still need to allocate a rule in HW */
998 r->is_host_route = true;
999
1000 err = rhltable_insert(&priv->routes, &r->linkage, route_ht_params);
1001 if (err) {
1002 pr_err("Could not insert new rule\n");
1003 mutex_unlock(&priv->reg_mutex);
1004 goto out_free;
1005 }
1006
1007 set_bit(idx, priv->host_route_use_bm);
1008
1009 mutex_unlock(&priv->reg_mutex);
1010
1011 return r;
1012
1013 out_free:
1014 kfree(r);
1015
1016 return NULL;
1017 }
1018
1019
1020
1021 static void rtl83xx_route_rm(struct rtl838x_switch_priv *priv, struct rtl83xx_route *r)
1022 {
1023 int id;
1024
1025 if (rhltable_remove(&priv->routes, &r->linkage, route_ht_params))
1026 dev_warn(priv->dev, "Could not remove route\n");
1027
1028 if (r->is_host_route) {
1029 id = priv->r->find_l3_slot(r, false);
1030 pr_debug("%s: Got id for host route: %d\n", __func__, id);
1031 r->attr.valid = false;
1032 priv->r->host_route_write(id, r);
1033 clear_bit(r->id - MAX_ROUTES, priv->host_route_use_bm);
1034 } else {
1035 /* If there is a HW representation of the route, delete it */
1036 if (priv->r->route_lookup_hw) {
1037 id = priv->r->route_lookup_hw(r);
1038 pr_info("%s: Got id for prefix route: %d\n", __func__, id);
1039 r->attr.valid = false;
1040 priv->r->route_write(id, r);
1041 }
1042 clear_bit(r->id, priv->route_use_bm);
1043 }
1044
1045 kfree(r);
1046 }
1047
1048 static int rtl83xx_fib4_del(struct rtl838x_switch_priv *priv,
1049 struct fib_entry_notifier_info *info)
1050 {
1051 struct fib_nh *nh = fib_info_nh(info->fi, 0);
1052 struct rtl83xx_route *r;
1053 struct rhlist_head *tmp, *list;
1054
1055 pr_debug("In %s, ip %pI4, len %d\n", __func__, &info->dst, info->dst_len);
1056 rcu_read_lock();
1057 list = rhltable_lookup(&priv->routes, &nh->fib_nh_gw4, route_ht_params);
1058 if (!list) {
1059 rcu_read_unlock();
1060 pr_err("%s: no such gateway: %pI4\n", __func__, &nh->fib_nh_gw4);
1061 return -ENOENT;
1062 }
1063 rhl_for_each_entry_rcu(r, tmp, list, linkage) {
1064 if (r->dst_ip == info->dst && r->prefix_len == info->dst_len) {
1065 pr_info("%s: found a route with id %d, nh-id %d\n",
1066 __func__, r->id, r->nh.id);
1067 break;
1068 }
1069 }
1070 rcu_read_unlock();
1071
1072 rtl83xx_l2_nexthop_rm(priv, &r->nh);
1073
1074 pr_debug("%s: Releasing packet counter %d\n", __func__, r->pr.packet_cntr);
1075 set_bit(r->pr.packet_cntr, priv->packet_cntr_use_bm);
1076 priv->r->pie_rule_rm(priv, &r->pr);
1077
1078 rtl83xx_route_rm(priv, r);
1079
1080 nh->fib_nh_flags &= ~RTNH_F_OFFLOAD;
1081
1082 return 0;
1083 }
1084
1085 /* On the RTL93xx, an L3 termination endpoint MAC address on which the router waits
1086 * for packets to be routed needs to be allocated.
1087 */
1088 static int rtl83xx_alloc_router_mac(struct rtl838x_switch_priv *priv, u64 mac)
1089 {
1090 int i, free_mac = -1;
1091 struct rtl93xx_rt_mac m;
1092
1093 mutex_lock(&priv->reg_mutex);
1094 for (i = 0; i < MAX_ROUTER_MACS; i++) {
1095 priv->r->get_l3_router_mac(i, &m);
1096 if (free_mac < 0 && !m.valid) {
1097 free_mac = i;
1098 continue;
1099 }
1100 if (m.valid && m.mac == mac) {
1101 free_mac = i;
1102 break;
1103 }
1104 }
1105
1106 if (free_mac < 0) {
1107 pr_err("No free router MACs, cannot offload\n");
1108 mutex_unlock(&priv->reg_mutex);
1109 return -1;
1110 }
1111
1112 m.valid = true;
1113 m.mac = mac;
1114 m.p_type = 0; /* An individual port, not a trunk port */
1115 m.p_id = 0x3f; /* Listen on any port */
1116 m.p_id_mask = 0;
1117 m.vid = 0; /* Listen on any VLAN... */
1118 m.vid_mask = 0; /* ... so mask needs to be 0 */
1119 m.mac_mask = 0xffffffffffffULL; /* We want an exact match of the interface MAC */
1120 m.action = L3_FORWARD; /* Route the packet */
1121 priv->r->set_l3_router_mac(free_mac, &m);
1122
1123 mutex_unlock(&priv->reg_mutex);
1124
1125 return 0;
1126 }
1127
1128 static int rtl83xx_alloc_egress_intf(struct rtl838x_switch_priv *priv, u64 mac, int vlan)
1129 {
1130 int i, free_mac = -1;
1131 struct rtl838x_l3_intf intf;
1132 u64 m;
1133
1134 mutex_lock(&priv->reg_mutex);
1135 for (i = 0; i < MAX_SMACS; i++) {
1136 m = priv->r->get_l3_egress_mac(L3_EGRESS_DMACS + i);
1137 if (free_mac < 0 && !m) {
1138 free_mac = i;
1139 continue;
1140 }
1141 if (m == mac) {
1142 mutex_unlock(&priv->reg_mutex);
1143 return i;
1144 }
1145 }
1146
1147 if (free_mac < 0) {
1148 pr_err("No free egress interface, cannot offload\n");
1149 return -1;
1150 }
1151
1152 /* Set up default egress interface 1 */
1153 intf.vid = vlan;
1154 intf.smac_idx = free_mac;
1155 intf.ip4_mtu_id = 1;
1156 intf.ip6_mtu_id = 1;
1157 intf.ttl_scope = 1; /* TTL */
1158 intf.hl_scope = 1; /* Hop Limit */
1159 intf.ip4_icmp_redirect = intf.ip6_icmp_redirect = 2; /* FORWARD */
1160 intf.ip4_pbr_icmp_redirect = intf.ip6_pbr_icmp_redirect = 2; /* FORWARD; */
1161 priv->r->set_l3_egress_intf(free_mac, &intf);
1162
1163 priv->r->set_l3_egress_mac(L3_EGRESS_DMACS + free_mac, mac);
1164
1165 mutex_unlock(&priv->reg_mutex);
1166
1167 return free_mac;
1168 }
1169
1170 static int rtl83xx_fib4_add(struct rtl838x_switch_priv *priv,
1171 struct fib_entry_notifier_info *info)
1172 {
1173 struct fib_nh *nh = fib_info_nh(info->fi, 0);
1174 struct net_device *dev = fib_info_nh(info->fi, 0)->fib_nh_dev;
1175 int port;
1176 struct rtl83xx_route *r;
1177 bool to_localhost;
1178 int vlan = is_vlan_dev(dev) ? vlan_dev_vlan_id(dev) : 0;
1179
1180 pr_debug("In %s, ip %pI4, len %d\n", __func__, &info->dst, info->dst_len);
1181 if (!info->dst) {
1182 pr_info("Not offloading default route for now\n");
1183 return 0;
1184 }
1185
1186 pr_debug("GW: %pI4, interface name %s, mac %016llx, vlan %d\n", &nh->fib_nh_gw4, dev->name,
1187 ether_addr_to_u64(dev->dev_addr), vlan
1188 );
1189
1190 port = rtl83xx_port_dev_lower_find(dev, priv);
1191 if (port < 0)
1192 return -1;
1193
1194 /* For now we only work with routes that have a gateway and are not ourself */
1195 /* if ((!nh->fib_nh_gw4) && (info->dst_len != 32)) */
1196 /* return 0; */
1197
1198 if ((info->dst & 0xff) == 0xff)
1199 return 0;
1200
1201 /* Do not offload routes to 192.168.100.x */
1202 if ((info->dst & 0xffffff00) == 0xc0a86400)
1203 return 0;
1204
1205 /* Do not offload routes to 127.x.x.x */
1206 if ((info->dst & 0xff000000) == 0x7f000000)
1207 return 0;
1208
1209 /* Allocate route or host-route (entry if hardware supports this) */
1210 if (info->dst_len == 32 && priv->r->host_route_write)
1211 r = rtl83xx_host_route_alloc(priv, nh->fib_nh_gw4);
1212 else
1213 r = rtl83xx_route_alloc(priv, nh->fib_nh_gw4);
1214
1215 if (!r) {
1216 pr_err("%s: No more free route entries\n", __func__);
1217 return -1;
1218 }
1219
1220 r->dst_ip = info->dst;
1221 r->prefix_len = info->dst_len;
1222 r->nh.rvid = vlan;
1223 to_localhost = !nh->fib_nh_gw4;
1224
1225 if (priv->r->set_l3_router_mac) {
1226 u64 mac = ether_addr_to_u64(dev->dev_addr);
1227
1228 pr_debug("Local route and router mac %016llx\n", mac);
1229
1230 if (rtl83xx_alloc_router_mac(priv, mac))
1231 goto out_free_rt;
1232
1233 /* vid = 0: Do not care about VID */
1234 r->nh.if_id = rtl83xx_alloc_egress_intf(priv, mac, vlan);
1235 if (r->nh.if_id < 0)
1236 goto out_free_rmac;
1237
1238 if (to_localhost) {
1239 int slot;
1240
1241 r->nh.mac = mac;
1242 r->nh.port = priv->port_ignore;
1243 r->attr.valid = true;
1244 r->attr.action = ROUTE_ACT_TRAP2CPU;
1245 r->attr.type = 0;
1246
1247 slot = priv->r->find_l3_slot(r, false);
1248 pr_debug("%s: Got slot for route: %d\n", __func__, slot);
1249 priv->r->host_route_write(slot, r);
1250 }
1251 }
1252
1253 /* We need to resolve the mac address of the GW */
1254 if (!to_localhost)
1255 rtl83xx_port_ipv4_resolve(priv, dev, nh->fib_nh_gw4);
1256
1257 nh->fib_nh_flags |= RTNH_F_OFFLOAD;
1258
1259 return 0;
1260
1261 out_free_rmac:
1262 out_free_rt:
1263 return 0;
1264 }
1265
1266 static int rtl83xx_fib6_add(struct rtl838x_switch_priv *priv,
1267 struct fib6_entry_notifier_info *info)
1268 {
1269 pr_debug("In %s\n", __func__);
1270 /* nh->fib_nh_flags |= RTNH_F_OFFLOAD; */
1271
1272 return 0;
1273 }
1274
1275 struct net_event_work {
1276 struct work_struct work;
1277 struct rtl838x_switch_priv *priv;
1278 u64 mac;
1279 u32 gw_addr;
1280 };
1281
1282 static void rtl83xx_net_event_work_do(struct work_struct *work)
1283 {
1284 struct net_event_work *net_work =
1285 container_of(work, struct net_event_work, work);
1286 struct rtl838x_switch_priv *priv = net_work->priv;
1287
1288 rtl83xx_l3_nexthop_update(priv, net_work->gw_addr, net_work->mac);
1289 }
1290
1291 static int rtl83xx_netevent_event(struct notifier_block *this,
1292 unsigned long event, void *ptr)
1293 {
1294 struct rtl838x_switch_priv *priv;
1295 struct net_device *dev;
1296 struct neighbour *n = ptr;
1297 int err, port;
1298 struct net_event_work *net_work;
1299
1300 priv = container_of(this, struct rtl838x_switch_priv, ne_nb);
1301
1302 net_work = kzalloc(sizeof(*net_work), GFP_ATOMIC);
1303 if (!net_work)
1304 return NOTIFY_BAD;
1305
1306 INIT_WORK(&net_work->work, rtl83xx_net_event_work_do);
1307 net_work->priv = priv;
1308
1309 switch (event) {
1310 case NETEVENT_NEIGH_UPDATE:
1311 if (n->tbl != &arp_tbl)
1312 return NOTIFY_DONE;
1313 dev = n->dev;
1314 port = rtl83xx_port_dev_lower_find(dev, priv);
1315 if (port < 0 || !(n->nud_state & NUD_VALID)) {
1316 pr_debug("%s: Neigbour invalid, not updating\n", __func__);
1317 kfree(net_work);
1318 return NOTIFY_DONE;
1319 }
1320
1321 net_work->mac = ether_addr_to_u64(n->ha);
1322 net_work->gw_addr = *(__be32 *) n->primary_key;
1323
1324 pr_debug("%s: updating neighbour on port %d, mac %016llx\n",
1325 __func__, port, net_work->mac);
1326 schedule_work(&net_work->work);
1327 if (err)
1328 netdev_warn(dev, "failed to handle neigh update (err %d)\n", err);
1329 break;
1330 }
1331
1332 return NOTIFY_DONE;
1333 }
1334
1335 struct rtl83xx_fib_event_work {
1336 struct work_struct work;
1337 union {
1338 struct fib_entry_notifier_info fen_info;
1339 struct fib6_entry_notifier_info fen6_info;
1340 struct fib_rule_notifier_info fr_info;
1341 };
1342 struct rtl838x_switch_priv *priv;
1343 bool is_fib6;
1344 unsigned long event;
1345 };
1346
1347 static void rtl83xx_fib_event_work_do(struct work_struct *work)
1348 {
1349 struct rtl83xx_fib_event_work *fib_work =
1350 container_of(work, struct rtl83xx_fib_event_work, work);
1351 struct rtl838x_switch_priv *priv = fib_work->priv;
1352 struct fib_rule *rule;
1353 int err;
1354
1355 /* Protect internal structures from changes */
1356 rtnl_lock();
1357 pr_debug("%s: doing work, event %ld\n", __func__, fib_work->event);
1358 switch (fib_work->event) {
1359 case FIB_EVENT_ENTRY_ADD:
1360 case FIB_EVENT_ENTRY_REPLACE:
1361 case FIB_EVENT_ENTRY_APPEND:
1362 if (fib_work->is_fib6) {
1363 err = rtl83xx_fib6_add(priv, &fib_work->fen6_info);
1364 } else {
1365 err = rtl83xx_fib4_add(priv, &fib_work->fen_info);
1366 fib_info_put(fib_work->fen_info.fi);
1367 }
1368 if (err)
1369 pr_err("%s: FIB4 failed\n", __func__);
1370 break;
1371 case FIB_EVENT_ENTRY_DEL:
1372 rtl83xx_fib4_del(priv, &fib_work->fen_info);
1373 fib_info_put(fib_work->fen_info.fi);
1374 break;
1375 case FIB_EVENT_RULE_ADD:
1376 case FIB_EVENT_RULE_DEL:
1377 rule = fib_work->fr_info.rule;
1378 if (!fib4_rule_default(rule))
1379 pr_err("%s: FIB4 default rule failed\n", __func__);
1380 fib_rule_put(rule);
1381 break;
1382 }
1383 rtnl_unlock();
1384 kfree(fib_work);
1385 }
1386
1387 /* Called with rcu_read_lock() */
1388 static int rtl83xx_fib_event(struct notifier_block *this, unsigned long event, void *ptr)
1389 {
1390 struct fib_notifier_info *info = ptr;
1391 struct rtl838x_switch_priv *priv;
1392 struct rtl83xx_fib_event_work *fib_work;
1393
1394 if ((info->family != AF_INET && info->family != AF_INET6 &&
1395 info->family != RTNL_FAMILY_IPMR &&
1396 info->family != RTNL_FAMILY_IP6MR))
1397 return NOTIFY_DONE;
1398
1399 priv = container_of(this, struct rtl838x_switch_priv, fib_nb);
1400
1401 fib_work = kzalloc(sizeof(*fib_work), GFP_ATOMIC);
1402 if (!fib_work)
1403 return NOTIFY_BAD;
1404
1405 INIT_WORK(&fib_work->work, rtl83xx_fib_event_work_do);
1406 fib_work->priv = priv;
1407 fib_work->event = event;
1408 fib_work->is_fib6 = false;
1409
1410 switch (event) {
1411 case FIB_EVENT_ENTRY_ADD:
1412 case FIB_EVENT_ENTRY_REPLACE:
1413 case FIB_EVENT_ENTRY_APPEND:
1414 case FIB_EVENT_ENTRY_DEL:
1415 pr_debug("%s: FIB_ENTRY ADD/DEL, event %ld\n", __func__, event);
1416 if (info->family == AF_INET) {
1417 struct fib_entry_notifier_info *fen_info = ptr;
1418
1419 if (fen_info->fi->fib_nh_is_v6) {
1420 NL_SET_ERR_MSG_MOD(info->extack,
1421 "IPv6 gateway with IPv4 route is not supported");
1422 kfree(fib_work);
1423 return notifier_from_errno(-EINVAL);
1424 }
1425
1426 memcpy(&fib_work->fen_info, ptr, sizeof(fib_work->fen_info));
1427 /* Take referece on fib_info to prevent it from being
1428 * freed while work is queued. Release it afterwards.
1429 */
1430 fib_info_hold(fib_work->fen_info.fi);
1431
1432 } else if (info->family == AF_INET6) {
1433 struct fib6_entry_notifier_info *fen6_info = ptr;
1434 pr_warn("%s: FIB_RULE ADD/DEL for IPv6 not supported\n", __func__);
1435 kfree(fib_work);
1436 return NOTIFY_DONE;
1437 }
1438 break;
1439
1440 case FIB_EVENT_RULE_ADD:
1441 case FIB_EVENT_RULE_DEL:
1442 pr_debug("%s: FIB_RULE ADD/DEL, event: %ld\n", __func__, event);
1443 memcpy(&fib_work->fr_info, ptr, sizeof(fib_work->fr_info));
1444 fib_rule_get(fib_work->fr_info.rule);
1445 break;
1446 }
1447
1448 schedule_work(&fib_work->work);
1449
1450 return NOTIFY_DONE;
1451 }
1452
1453 static int __init rtl83xx_sw_probe(struct platform_device *pdev)
1454 {
1455 int err = 0, i;
1456 struct rtl838x_switch_priv *priv;
1457 struct device *dev = &pdev->dev;
1458 u64 bpdu_mask;
1459
1460 pr_debug("Probing RTL838X switch device\n");
1461 if (!pdev->dev.of_node) {
1462 dev_err(dev, "No DT found\n");
1463 return -EINVAL;
1464 }
1465
1466 /* Initialize access to RTL switch tables */
1467 rtl_table_init();
1468
1469 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
1470 if (!priv)
1471 return -ENOMEM;
1472
1473 priv->ds = devm_kzalloc(dev, sizeof(*priv->ds), GFP_KERNEL);
1474
1475 if (!priv->ds)
1476 return -ENOMEM;
1477 priv->ds->dev = dev;
1478 priv->ds->priv = priv;
1479 priv->ds->ops = &rtl83xx_switch_ops;
1480 priv->ds->needs_standalone_vlan_filtering = true;
1481 priv->dev = dev;
1482
1483 mutex_init(&priv->reg_mutex);
1484
1485 priv->family_id = soc_info.family;
1486 priv->id = soc_info.id;
1487 switch(soc_info.family) {
1488 case RTL8380_FAMILY_ID:
1489 priv->ds->ops = &rtl83xx_switch_ops;
1490 priv->cpu_port = RTL838X_CPU_PORT;
1491 priv->port_mask = 0x1f;
1492 priv->port_width = 1;
1493 priv->irq_mask = 0x0FFFFFFF;
1494 priv->r = &rtl838x_reg;
1495 priv->ds->num_ports = 29;
1496 priv->fib_entries = 8192;
1497 rtl8380_get_version(priv);
1498 priv->n_lags = 8;
1499 priv->l2_bucket_size = 4;
1500 priv->n_pie_blocks = 12;
1501 priv->port_ignore = 0x1f;
1502 priv->n_counters = 128;
1503 break;
1504 case RTL8390_FAMILY_ID:
1505 priv->ds->ops = &rtl83xx_switch_ops;
1506 priv->cpu_port = RTL839X_CPU_PORT;
1507 priv->port_mask = 0x3f;
1508 priv->port_width = 2;
1509 priv->irq_mask = 0xFFFFFFFFFFFFFULL;
1510 priv->r = &rtl839x_reg;
1511 priv->ds->num_ports = 53;
1512 priv->fib_entries = 16384;
1513 rtl8390_get_version(priv);
1514 priv->n_lags = 16;
1515 priv->l2_bucket_size = 4;
1516 priv->n_pie_blocks = 18;
1517 priv->port_ignore = 0x3f;
1518 priv->n_counters = 1024;
1519 break;
1520 case RTL9300_FAMILY_ID:
1521 priv->ds->ops = &rtl930x_switch_ops;
1522 priv->cpu_port = RTL930X_CPU_PORT;
1523 priv->port_mask = 0x1f;
1524 priv->port_width = 1;
1525 priv->irq_mask = 0x0FFFFFFF;
1526 priv->r = &rtl930x_reg;
1527 priv->ds->num_ports = 29;
1528 priv->fib_entries = 16384;
1529 priv->version = RTL8390_VERSION_A;
1530 priv->n_lags = 16;
1531 sw_w32(1, RTL930X_ST_CTRL);
1532 priv->l2_bucket_size = 8;
1533 priv->n_pie_blocks = 16;
1534 priv->port_ignore = 0x3f;
1535 priv->n_counters = 2048;
1536 break;
1537 case RTL9310_FAMILY_ID:
1538 priv->ds->ops = &rtl930x_switch_ops;
1539 priv->cpu_port = RTL931X_CPU_PORT;
1540 priv->port_mask = 0x3f;
1541 priv->port_width = 2;
1542 priv->irq_mask = 0xFFFFFFFFFFFFFULL;
1543 priv->r = &rtl931x_reg;
1544 priv->ds->num_ports = 57;
1545 priv->fib_entries = 16384;
1546 priv->version = RTL8390_VERSION_A;
1547 priv->n_lags = 16;
1548 priv->l2_bucket_size = 8;
1549 break;
1550 }
1551 pr_debug("Chip version %c\n", priv->version);
1552
1553 err = rtl83xx_mdio_probe(priv);
1554 if (err) {
1555 /* Probing fails the 1st time because of missing ethernet driver
1556 * initialization. Use this to disable traffic in case the bootloader left if on
1557 */
1558 return err;
1559 }
1560
1561 err = dsa_register_switch(priv->ds);
1562 if (err) {
1563 dev_err(dev, "Error registering switch: %d\n", err);
1564 return err;
1565 }
1566
1567 /* dsa_to_port returns dsa_port from the port list in
1568 * dsa_switch_tree, the tree is built when the switch
1569 * is registered by dsa_register_switch
1570 */
1571 for (i = 0; i <= priv->cpu_port; i++)
1572 priv->ports[i].dp = dsa_to_port(priv->ds, i);
1573
1574 /* Enable link and media change interrupts. Are the SERDES masks needed? */
1575 sw_w32_mask(0, 3, priv->r->isr_glb_src);
1576
1577 priv->r->set_port_reg_le(priv->irq_mask, priv->r->isr_port_link_sts_chg);
1578 priv->r->set_port_reg_le(priv->irq_mask, priv->r->imr_port_link_sts_chg);
1579
1580 priv->link_state_irq = platform_get_irq(pdev, 0);
1581 pr_info("LINK state irq: %d\n", priv->link_state_irq);
1582 switch (priv->family_id) {
1583 case RTL8380_FAMILY_ID:
1584 err = request_irq(priv->link_state_irq, rtl838x_switch_irq,
1585 IRQF_SHARED, "rtl838x-link-state", priv->ds);
1586 break;
1587 case RTL8390_FAMILY_ID:
1588 err = request_irq(priv->link_state_irq, rtl839x_switch_irq,
1589 IRQF_SHARED, "rtl839x-link-state", priv->ds);
1590 break;
1591 case RTL9300_FAMILY_ID:
1592 err = request_irq(priv->link_state_irq, rtl930x_switch_irq,
1593 IRQF_SHARED, "rtl930x-link-state", priv->ds);
1594 break;
1595 case RTL9310_FAMILY_ID:
1596 err = request_irq(priv->link_state_irq, rtl931x_switch_irq,
1597 IRQF_SHARED, "rtl931x-link-state", priv->ds);
1598 break;
1599 }
1600 if (err) {
1601 dev_err(dev, "Error setting up switch interrupt.\n");
1602 /* Need to free allocated switch here */
1603 }
1604
1605 /* Enable interrupts for switch, on RTL931x, the IRQ is always on globally */
1606 if (soc_info.family != RTL9310_FAMILY_ID)
1607 sw_w32(0x1, priv->r->imr_glb);
1608
1609 rtl83xx_get_l2aging(priv);
1610
1611 rtl83xx_setup_qos(priv);
1612
1613 priv->r->l3_setup(priv);
1614
1615 /* Clear all destination ports for mirror groups */
1616 for (i = 0; i < 4; i++)
1617 priv->mirror_group_ports[i] = -1;
1618
1619 /* Register netdevice event callback to catch changes in link aggregation groups */
1620 priv->nb.notifier_call = rtl83xx_netdevice_event;
1621 if (register_netdevice_notifier(&priv->nb)) {
1622 priv->nb.notifier_call = NULL;
1623 dev_err(dev, "Failed to register LAG netdev notifier\n");
1624 goto err_register_nb;
1625 }
1626
1627 /* Initialize hash table for L3 routing */
1628 rhltable_init(&priv->routes, &route_ht_params);
1629
1630 /* Register netevent notifier callback to catch notifications about neighboring
1631 * changes to update nexthop entries for L3 routing.
1632 */
1633 priv->ne_nb.notifier_call = rtl83xx_netevent_event;
1634 if (register_netevent_notifier(&priv->ne_nb)) {
1635 priv->ne_nb.notifier_call = NULL;
1636 dev_err(dev, "Failed to register netevent notifier\n");
1637 goto err_register_ne_nb;
1638 }
1639
1640 priv->fib_nb.notifier_call = rtl83xx_fib_event;
1641
1642 /* Register Forwarding Information Base notifier to offload routes where
1643 * where possible
1644 * Only FIBs pointing to our own netdevs are programmed into
1645 * the device, so no need to pass a callback.
1646 */
1647 err = register_fib_notifier(&init_net, &priv->fib_nb, NULL, NULL);
1648 if (err)
1649 goto err_register_fib_nb;
1650
1651 /* TODO: put this into l2_setup() */
1652 /* Flood BPDUs to all ports including cpu-port */
1653 if (soc_info.family != RTL9300_FAMILY_ID) {
1654 bpdu_mask = soc_info.family == RTL8380_FAMILY_ID ? 0x1FFFFFFF : 0x1FFFFFFFFFFFFF;
1655 priv->r->set_port_reg_be(bpdu_mask, priv->r->rma_bpdu_fld_pmask);
1656
1657 /* TRAP 802.1X frames (EAPOL) to the CPU-Port, bypass STP and VLANs */
1658 sw_w32(7, priv->r->spcl_trap_eapol_ctrl);
1659
1660 rtl838x_dbgfs_init(priv);
1661 } else {
1662 rtl930x_dbgfs_init(priv);
1663 }
1664
1665 return 0;
1666
1667 err_register_fib_nb:
1668 unregister_netevent_notifier(&priv->ne_nb);
1669 err_register_ne_nb:
1670 unregister_netdevice_notifier(&priv->nb);
1671 err_register_nb:
1672 return err;
1673 }
1674
1675 static int rtl83xx_sw_remove(struct platform_device *pdev)
1676 {
1677 /* TODO: */
1678 pr_debug("Removing platform driver for rtl83xx-sw\n");
1679
1680 return 0;
1681 }
1682
1683 static const struct of_device_id rtl83xx_switch_of_ids[] = {
1684 { .compatible = "realtek,rtl83xx-switch"},
1685 { /* sentinel */ }
1686 };
1687
1688
1689 MODULE_DEVICE_TABLE(of, rtl83xx_switch_of_ids);
1690
1691 static struct platform_driver rtl83xx_switch_driver = {
1692 .probe = rtl83xx_sw_probe,
1693 .remove = rtl83xx_sw_remove,
1694 .driver = {
1695 .name = "rtl83xx-switch",
1696 .pm = NULL,
1697 .of_match_table = rtl83xx_switch_of_ids,
1698 },
1699 };
1700
1701 module_platform_driver(rtl83xx_switch_driver);
1702
1703 MODULE_AUTHOR("B. Koblitz");
1704 MODULE_DESCRIPTION("RTL83XX SoC Switch Driver");
1705 MODULE_LICENSE("GPL");