1
2
3
4
5
6
7#include <linux/dsa/ocelot.h>
8#include <linux/if_bridge.h>
9#include <linux/ptp_classify.h>
10#include <soc/mscc/ocelot_vcap.h>
11#include "ocelot.h"
12#include "ocelot_vcap.h"
13
14#define TABLE_UPDATE_SLEEP_US 10
15#define TABLE_UPDATE_TIMEOUT_US 100000
16
17struct ocelot_mact_entry {
18 u8 mac[ETH_ALEN];
19 u16 vid;
20 enum macaccess_entry_type type;
21};
22
23
24static inline u32 ocelot_mact_read_macaccess(struct ocelot *ocelot)
25{
26 return ocelot_read(ocelot, ANA_TABLES_MACACCESS);
27}
28
29
30static inline int ocelot_mact_wait_for_completion(struct ocelot *ocelot)
31{
32 u32 val;
33
34 return readx_poll_timeout(ocelot_mact_read_macaccess,
35 ocelot, val,
36 (val & ANA_TABLES_MACACCESS_MAC_TABLE_CMD_M) ==
37 MACACCESS_CMD_IDLE,
38 TABLE_UPDATE_SLEEP_US, TABLE_UPDATE_TIMEOUT_US);
39}
40
41
42static void ocelot_mact_select(struct ocelot *ocelot,
43 const unsigned char mac[ETH_ALEN],
44 unsigned int vid)
45{
46 u32 macl = 0, mach = 0;
47
48
49
50
51 mach |= vid << 16;
52 mach |= mac[0] << 8;
53 mach |= mac[1] << 0;
54 macl |= mac[2] << 24;
55 macl |= mac[3] << 16;
56 macl |= mac[4] << 8;
57 macl |= mac[5] << 0;
58
59 ocelot_write(ocelot, macl, ANA_TABLES_MACLDATA);
60 ocelot_write(ocelot, mach, ANA_TABLES_MACHDATA);
61
62}
63
64static int __ocelot_mact_learn(struct ocelot *ocelot, int port,
65 const unsigned char mac[ETH_ALEN],
66 unsigned int vid, enum macaccess_entry_type type)
67{
68 u32 cmd = ANA_TABLES_MACACCESS_VALID |
69 ANA_TABLES_MACACCESS_DEST_IDX(port) |
70 ANA_TABLES_MACACCESS_ENTRYTYPE(type) |
71 ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_LEARN);
72 unsigned int mc_ports;
73 int err;
74
75
76 if (type == ENTRYTYPE_MACv4)
77 mc_ports = (mac[1] << 8) | mac[2];
78 else if (type == ENTRYTYPE_MACv6)
79 mc_ports = (mac[0] << 8) | mac[1];
80 else
81 mc_ports = 0;
82
83 if (mc_ports & BIT(ocelot->num_phys_ports))
84 cmd |= ANA_TABLES_MACACCESS_MAC_CPU_COPY;
85
86 ocelot_mact_select(ocelot, mac, vid);
87
88
89 ocelot_write(ocelot, cmd, ANA_TABLES_MACACCESS);
90
91 err = ocelot_mact_wait_for_completion(ocelot);
92
93 return err;
94}
95
96int ocelot_mact_learn(struct ocelot *ocelot, int port,
97 const unsigned char mac[ETH_ALEN],
98 unsigned int vid, enum macaccess_entry_type type)
99{
100 int ret;
101
102 mutex_lock(&ocelot->mact_lock);
103 ret = __ocelot_mact_learn(ocelot, port, mac, vid, type);
104 mutex_unlock(&ocelot->mact_lock);
105
106 return ret;
107}
108EXPORT_SYMBOL(ocelot_mact_learn);
109
110int ocelot_mact_forget(struct ocelot *ocelot,
111 const unsigned char mac[ETH_ALEN], unsigned int vid)
112{
113 int err;
114
115 mutex_lock(&ocelot->mact_lock);
116
117 ocelot_mact_select(ocelot, mac, vid);
118
119
120 ocelot_write(ocelot,
121 ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_FORGET),
122 ANA_TABLES_MACACCESS);
123
124 err = ocelot_mact_wait_for_completion(ocelot);
125
126 mutex_unlock(&ocelot->mact_lock);
127
128 return err;
129}
130EXPORT_SYMBOL(ocelot_mact_forget);
131
132int ocelot_mact_lookup(struct ocelot *ocelot, int *dst_idx,
133 const unsigned char mac[ETH_ALEN],
134 unsigned int vid, enum macaccess_entry_type *type)
135{
136 int val;
137
138 mutex_lock(&ocelot->mact_lock);
139
140 ocelot_mact_select(ocelot, mac, vid);
141
142
143 ocelot_write(ocelot, ANA_TABLES_MACACCESS_VALID |
144 ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_READ),
145 ANA_TABLES_MACACCESS);
146
147 if (ocelot_mact_wait_for_completion(ocelot)) {
148 mutex_unlock(&ocelot->mact_lock);
149 return -ETIMEDOUT;
150 }
151
152
153 val = ocelot_read(ocelot, ANA_TABLES_MACACCESS);
154
155 mutex_unlock(&ocelot->mact_lock);
156
157 if (!(val & ANA_TABLES_MACACCESS_VALID))
158 return -ENOENT;
159
160 *dst_idx = ANA_TABLES_MACACCESS_DEST_IDX_X(val);
161 *type = ANA_TABLES_MACACCESS_ENTRYTYPE_X(val);
162
163 return 0;
164}
165EXPORT_SYMBOL(ocelot_mact_lookup);
166
167int ocelot_mact_learn_streamdata(struct ocelot *ocelot, int dst_idx,
168 const unsigned char mac[ETH_ALEN],
169 unsigned int vid,
170 enum macaccess_entry_type type,
171 int sfid, int ssid)
172{
173 int ret;
174
175 mutex_lock(&ocelot->mact_lock);
176
177 ocelot_write(ocelot,
178 (sfid < 0 ? 0 : ANA_TABLES_STREAMDATA_SFID_VALID) |
179 ANA_TABLES_STREAMDATA_SFID(sfid) |
180 (ssid < 0 ? 0 : ANA_TABLES_STREAMDATA_SSID_VALID) |
181 ANA_TABLES_STREAMDATA_SSID(ssid),
182 ANA_TABLES_STREAMDATA);
183
184 ret = __ocelot_mact_learn(ocelot, dst_idx, mac, vid, type);
185
186 mutex_unlock(&ocelot->mact_lock);
187
188 return ret;
189}
190EXPORT_SYMBOL(ocelot_mact_learn_streamdata);
191
192static void ocelot_mact_init(struct ocelot *ocelot)
193{
194
195
196
197
198 ocelot_rmw(ocelot, 0,
199 ANA_AGENCTRL_LEARN_CPU_COPY | ANA_AGENCTRL_IGNORE_DMAC_FLAGS
200 | ANA_AGENCTRL_LEARN_FWD_KILL
201 | ANA_AGENCTRL_LEARN_IGNORE_VLAN,
202 ANA_AGENCTRL);
203
204
205
206
207 ocelot_write(ocelot, MACACCESS_CMD_INIT, ANA_TABLES_MACACCESS);
208}
209
210static void ocelot_vcap_enable(struct ocelot *ocelot, int port)
211{
212 ocelot_write_gix(ocelot, ANA_PORT_VCAP_S2_CFG_S2_ENA |
213 ANA_PORT_VCAP_S2_CFG_S2_IP6_CFG(0xa),
214 ANA_PORT_VCAP_S2_CFG, port);
215
216 ocelot_write_gix(ocelot, ANA_PORT_VCAP_CFG_S1_ENA,
217 ANA_PORT_VCAP_CFG, port);
218
219 ocelot_rmw_gix(ocelot, REW_PORT_CFG_ES0_EN,
220 REW_PORT_CFG_ES0_EN,
221 REW_PORT_CFG, port);
222}
223
224static inline u32 ocelot_vlant_read_vlanaccess(struct ocelot *ocelot)
225{
226 return ocelot_read(ocelot, ANA_TABLES_VLANACCESS);
227}
228
229static inline int ocelot_vlant_wait_for_completion(struct ocelot *ocelot)
230{
231 u32 val;
232
233 return readx_poll_timeout(ocelot_vlant_read_vlanaccess,
234 ocelot,
235 val,
236 (val & ANA_TABLES_VLANACCESS_VLAN_TBL_CMD_M) ==
237 ANA_TABLES_VLANACCESS_CMD_IDLE,
238 TABLE_UPDATE_SLEEP_US, TABLE_UPDATE_TIMEOUT_US);
239}
240
241static int ocelot_vlant_set_mask(struct ocelot *ocelot, u16 vid, u32 mask)
242{
243
244 ocelot_write(ocelot, ANA_TABLES_VLANTIDX_V_INDEX(vid),
245 ANA_TABLES_VLANTIDX);
246
247 ocelot_write(ocelot, ANA_TABLES_VLANACCESS_VLAN_PORT_MASK(mask) |
248 ANA_TABLES_VLANACCESS_CMD_WRITE,
249 ANA_TABLES_VLANACCESS);
250
251 return ocelot_vlant_wait_for_completion(ocelot);
252}
253
254static int ocelot_port_num_untagged_vlans(struct ocelot *ocelot, int port)
255{
256 struct ocelot_bridge_vlan *vlan;
257 int num_untagged = 0;
258
259 list_for_each_entry(vlan, &ocelot->vlans, list) {
260 if (!(vlan->portmask & BIT(port)))
261 continue;
262
263 if (vlan->untagged & BIT(port))
264 num_untagged++;
265 }
266
267 return num_untagged;
268}
269
270static int ocelot_port_num_tagged_vlans(struct ocelot *ocelot, int port)
271{
272 struct ocelot_bridge_vlan *vlan;
273 int num_tagged = 0;
274
275 list_for_each_entry(vlan, &ocelot->vlans, list) {
276 if (!(vlan->portmask & BIT(port)))
277 continue;
278
279 if (!(vlan->untagged & BIT(port)))
280 num_tagged++;
281 }
282
283 return num_tagged;
284}
285
286
287
288
289static bool ocelot_port_uses_native_vlan(struct ocelot *ocelot, int port)
290{
291 return ocelot_port_num_tagged_vlans(ocelot, port) &&
292 ocelot_port_num_untagged_vlans(ocelot, port) == 1;
293}
294
295static struct ocelot_bridge_vlan *
296ocelot_port_find_native_vlan(struct ocelot *ocelot, int port)
297{
298 struct ocelot_bridge_vlan *vlan;
299
300 list_for_each_entry(vlan, &ocelot->vlans, list)
301 if (vlan->portmask & BIT(port) && vlan->untagged & BIT(port))
302 return vlan;
303
304 return NULL;
305}
306
307
308
309
310
311static void ocelot_port_manage_port_tag(struct ocelot *ocelot, int port)
312{
313 struct ocelot_port *ocelot_port = ocelot->ports[port];
314 enum ocelot_port_tag_config tag_cfg;
315 bool uses_native_vlan = false;
316
317 if (ocelot_port->vlan_aware) {
318 uses_native_vlan = ocelot_port_uses_native_vlan(ocelot, port);
319
320 if (uses_native_vlan)
321 tag_cfg = OCELOT_PORT_TAG_NATIVE;
322 else if (ocelot_port_num_untagged_vlans(ocelot, port))
323 tag_cfg = OCELOT_PORT_TAG_DISABLED;
324 else
325 tag_cfg = OCELOT_PORT_TAG_TRUNK;
326 } else {
327 tag_cfg = OCELOT_PORT_TAG_DISABLED;
328 }
329
330 ocelot_rmw_gix(ocelot, REW_TAG_CFG_TAG_CFG(tag_cfg),
331 REW_TAG_CFG_TAG_CFG_M,
332 REW_TAG_CFG, port);
333
334 if (uses_native_vlan) {
335 struct ocelot_bridge_vlan *native_vlan;
336
337
338
339
340
341 native_vlan = ocelot_port_find_native_vlan(ocelot, port);
342
343 ocelot_rmw_gix(ocelot,
344 REW_PORT_VLAN_CFG_PORT_VID(native_vlan->vid),
345 REW_PORT_VLAN_CFG_PORT_VID_M,
346 REW_PORT_VLAN_CFG, port);
347 }
348}
349
350
351static void ocelot_port_set_pvid(struct ocelot *ocelot, int port,
352 const struct ocelot_bridge_vlan *pvid_vlan)
353{
354 struct ocelot_port *ocelot_port = ocelot->ports[port];
355 u16 pvid = OCELOT_VLAN_UNAWARE_PVID;
356 u32 val = 0;
357
358 ocelot_port->pvid_vlan = pvid_vlan;
359
360 if (ocelot_port->vlan_aware && pvid_vlan)
361 pvid = pvid_vlan->vid;
362
363 ocelot_rmw_gix(ocelot,
364 ANA_PORT_VLAN_CFG_VLAN_VID(pvid),
365 ANA_PORT_VLAN_CFG_VLAN_VID_M,
366 ANA_PORT_VLAN_CFG, port);
367
368
369
370
371
372
373 if (!pvid_vlan && ocelot_port->vlan_aware)
374 val = ANA_PORT_DROP_CFG_DROP_PRIO_S_TAGGED_ENA |
375 ANA_PORT_DROP_CFG_DROP_PRIO_C_TAGGED_ENA;
376
377 ocelot_rmw_gix(ocelot, val,
378 ANA_PORT_DROP_CFG_DROP_PRIO_S_TAGGED_ENA |
379 ANA_PORT_DROP_CFG_DROP_PRIO_C_TAGGED_ENA,
380 ANA_PORT_DROP_CFG, port);
381}
382
383static struct ocelot_bridge_vlan *ocelot_bridge_vlan_find(struct ocelot *ocelot,
384 u16 vid)
385{
386 struct ocelot_bridge_vlan *vlan;
387
388 list_for_each_entry(vlan, &ocelot->vlans, list)
389 if (vlan->vid == vid)
390 return vlan;
391
392 return NULL;
393}
394
395static int ocelot_vlan_member_add(struct ocelot *ocelot, int port, u16 vid,
396 bool untagged)
397{
398 struct ocelot_bridge_vlan *vlan = ocelot_bridge_vlan_find(ocelot, vid);
399 unsigned long portmask;
400 int err;
401
402 if (vlan) {
403 portmask = vlan->portmask | BIT(port);
404
405 err = ocelot_vlant_set_mask(ocelot, vid, portmask);
406 if (err)
407 return err;
408
409 vlan->portmask = portmask;
410
411
412
413
414 if (untagged)
415 vlan->untagged |= BIT(port);
416 else
417 vlan->untagged &= ~BIT(port);
418
419 return 0;
420 }
421
422 vlan = kzalloc(sizeof(*vlan), GFP_KERNEL);
423 if (!vlan)
424 return -ENOMEM;
425
426 portmask = BIT(port);
427
428 err = ocelot_vlant_set_mask(ocelot, vid, portmask);
429 if (err) {
430 kfree(vlan);
431 return err;
432 }
433
434 vlan->vid = vid;
435 vlan->portmask = portmask;
436 if (untagged)
437 vlan->untagged = BIT(port);
438 INIT_LIST_HEAD(&vlan->list);
439 list_add_tail(&vlan->list, &ocelot->vlans);
440
441 return 0;
442}
443
444static int ocelot_vlan_member_del(struct ocelot *ocelot, int port, u16 vid)
445{
446 struct ocelot_bridge_vlan *vlan = ocelot_bridge_vlan_find(ocelot, vid);
447 unsigned long portmask;
448 int err;
449
450 if (!vlan)
451 return 0;
452
453 portmask = vlan->portmask & ~BIT(port);
454
455 err = ocelot_vlant_set_mask(ocelot, vid, portmask);
456 if (err)
457 return err;
458
459 vlan->portmask = portmask;
460 if (vlan->portmask)
461 return 0;
462
463 list_del(&vlan->list);
464 kfree(vlan);
465
466 return 0;
467}
468
469int ocelot_port_vlan_filtering(struct ocelot *ocelot, int port,
470 bool vlan_aware, struct netlink_ext_ack *extack)
471{
472 struct ocelot_vcap_block *block = &ocelot->block[VCAP_IS1];
473 struct ocelot_port *ocelot_port = ocelot->ports[port];
474 struct ocelot_vcap_filter *filter;
475 u32 val;
476
477 list_for_each_entry(filter, &block->rules, list) {
478 if (filter->ingress_port_mask & BIT(port) &&
479 filter->action.vid_replace_ena) {
480 NL_SET_ERR_MSG_MOD(extack,
481 "Cannot change VLAN state with vlan modify rules active");
482 return -EBUSY;
483 }
484 }
485
486 ocelot_port->vlan_aware = vlan_aware;
487
488 if (vlan_aware)
489 val = ANA_PORT_VLAN_CFG_VLAN_AWARE_ENA |
490 ANA_PORT_VLAN_CFG_VLAN_POP_CNT(1);
491 else
492 val = 0;
493 ocelot_rmw_gix(ocelot, val,
494 ANA_PORT_VLAN_CFG_VLAN_AWARE_ENA |
495 ANA_PORT_VLAN_CFG_VLAN_POP_CNT_M,
496 ANA_PORT_VLAN_CFG, port);
497
498 ocelot_port_set_pvid(ocelot, port, ocelot_port->pvid_vlan);
499 ocelot_port_manage_port_tag(ocelot, port);
500
501 return 0;
502}
503EXPORT_SYMBOL(ocelot_port_vlan_filtering);
504
505int ocelot_vlan_prepare(struct ocelot *ocelot, int port, u16 vid, bool pvid,
506 bool untagged, struct netlink_ext_ack *extack)
507{
508 if (untagged) {
509
510 if (ocelot_port_uses_native_vlan(ocelot, port)) {
511 NL_SET_ERR_MSG_MOD(extack,
512 "Port with egress-tagged VLANs cannot have more than one egress-untagged (native) VLAN");
513 return -EBUSY;
514 }
515 } else {
516
517 if (ocelot_port_num_untagged_vlans(ocelot, port) > 1) {
518 NL_SET_ERR_MSG_MOD(extack,
519 "Port with more than one egress-untagged VLAN cannot have egress-tagged VLANs");
520 return -EBUSY;
521 }
522 }
523
524 return 0;
525}
526EXPORT_SYMBOL(ocelot_vlan_prepare);
527
528int ocelot_vlan_add(struct ocelot *ocelot, int port, u16 vid, bool pvid,
529 bool untagged)
530{
531 int err;
532
533 err = ocelot_vlan_member_add(ocelot, port, vid, untagged);
534 if (err)
535 return err;
536
537
538 if (pvid)
539 ocelot_port_set_pvid(ocelot, port,
540 ocelot_bridge_vlan_find(ocelot, vid));
541
542
543 ocelot_port_manage_port_tag(ocelot, port);
544
545 return 0;
546}
547EXPORT_SYMBOL(ocelot_vlan_add);
548
549int ocelot_vlan_del(struct ocelot *ocelot, int port, u16 vid)
550{
551 struct ocelot_port *ocelot_port = ocelot->ports[port];
552 bool del_pvid = false;
553 int err;
554
555 if (ocelot_port->pvid_vlan && ocelot_port->pvid_vlan->vid == vid)
556 del_pvid = true;
557
558 err = ocelot_vlan_member_del(ocelot, port, vid);
559 if (err)
560 return err;
561
562
563 if (del_pvid)
564 ocelot_port_set_pvid(ocelot, port, NULL);
565
566
567 ocelot_port_manage_port_tag(ocelot, port);
568
569 return 0;
570}
571EXPORT_SYMBOL(ocelot_vlan_del);
572
573static void ocelot_vlan_init(struct ocelot *ocelot)
574{
575 unsigned long all_ports = GENMASK(ocelot->num_phys_ports - 1, 0);
576 u16 port, vid;
577
578
579 ocelot_write(ocelot, ANA_TABLES_VLANACCESS_CMD_INIT,
580 ANA_TABLES_VLANACCESS);
581 ocelot_vlant_wait_for_completion(ocelot);
582
583
584 for (vid = 1; vid < VLAN_N_VID; vid++)
585 ocelot_vlant_set_mask(ocelot, vid, 0);
586
587
588
589
590
591 ocelot_vlant_set_mask(ocelot, OCELOT_VLAN_UNAWARE_PVID, all_ports);
592
593
594
595
596 ocelot_write(ocelot, all_ports, ANA_VLANMASK);
597
598 for (port = 0; port < ocelot->num_phys_ports; port++) {
599 ocelot_write_gix(ocelot, 0, REW_PORT_VLAN_CFG, port);
600 ocelot_write_gix(ocelot, 0, REW_TAG_CFG, port);
601 }
602}
603
604static u32 ocelot_read_eq_avail(struct ocelot *ocelot, int port)
605{
606 return ocelot_read_rix(ocelot, QSYS_SW_STATUS, port);
607}
608
609static int ocelot_port_flush(struct ocelot *ocelot, int port)
610{
611 unsigned int pause_ena;
612 int err, val;
613
614
615 ocelot_rmw_rix(ocelot, QSYS_PORT_MODE_DEQUEUE_DIS,
616 QSYS_PORT_MODE_DEQUEUE_DIS,
617 QSYS_PORT_MODE, port);
618
619
620 ocelot_fields_read(ocelot, port, SYS_PAUSE_CFG_PAUSE_ENA, &pause_ena);
621 ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_ENA, 0);
622
623
624 ocelot_fields_write(ocelot, port,
625 QSYS_SWITCH_PORT_MODE_TX_PFC_ENA, 0);
626
627
628
629
630
631
632
633
634
635 usleep_range(8000, 10000);
636
637
638 ocelot_rmw_rix(ocelot, 0, SYS_FRONT_PORT_MODE_HDX_MODE,
639 SYS_FRONT_PORT_MODE, port);
640
641
642 ocelot_rmw_gix(ocelot, REW_PORT_CFG_FLUSH_ENA, REW_PORT_CFG_FLUSH_ENA,
643 REW_PORT_CFG, port);
644
645
646 ocelot_rmw_rix(ocelot, 0, QSYS_PORT_MODE_DEQUEUE_DIS, QSYS_PORT_MODE,
647 port);
648
649
650 err = read_poll_timeout(ocelot_read_eq_avail, val, !val,
651 100, 2000000, false, ocelot, port);
652
653
654 ocelot_rmw_gix(ocelot, 0, REW_PORT_CFG_FLUSH_ENA, REW_PORT_CFG, port);
655
656
657 ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_ENA, pause_ena);
658
659 return err;
660}
661
662void ocelot_phylink_mac_link_down(struct ocelot *ocelot, int port,
663 unsigned int link_an_mode,
664 phy_interface_t interface,
665 unsigned long quirks)
666{
667 struct ocelot_port *ocelot_port = ocelot->ports[port];
668 int err;
669
670 ocelot_port->speed = SPEED_UNKNOWN;
671
672 ocelot_port_rmwl(ocelot_port, 0, DEV_MAC_ENA_CFG_RX_ENA,
673 DEV_MAC_ENA_CFG);
674
675 if (ocelot->ops->cut_through_fwd) {
676 mutex_lock(&ocelot->fwd_domain_lock);
677 ocelot->ops->cut_through_fwd(ocelot);
678 mutex_unlock(&ocelot->fwd_domain_lock);
679 }
680
681 ocelot_fields_write(ocelot, port, QSYS_SWITCH_PORT_MODE_PORT_ENA, 0);
682
683 err = ocelot_port_flush(ocelot, port);
684 if (err)
685 dev_err(ocelot->dev, "failed to flush port %d: %d\n",
686 port, err);
687
688
689 if (interface != PHY_INTERFACE_MODE_QSGMII ||
690 !(quirks & OCELOT_QUIRK_QSGMII_PORTS_MUST_BE_UP))
691 ocelot_port_rmwl(ocelot_port,
692 DEV_CLOCK_CFG_MAC_TX_RST |
693 DEV_CLOCK_CFG_MAC_RX_RST,
694 DEV_CLOCK_CFG_MAC_TX_RST |
695 DEV_CLOCK_CFG_MAC_RX_RST,
696 DEV_CLOCK_CFG);
697}
698EXPORT_SYMBOL_GPL(ocelot_phylink_mac_link_down);
699
700void ocelot_phylink_mac_link_up(struct ocelot *ocelot, int port,
701 struct phy_device *phydev,
702 unsigned int link_an_mode,
703 phy_interface_t interface,
704 int speed, int duplex,
705 bool tx_pause, bool rx_pause,
706 unsigned long quirks)
707{
708 struct ocelot_port *ocelot_port = ocelot->ports[port];
709 int mac_speed, mode = 0;
710 u32 mac_fc_cfg;
711
712 ocelot_port->speed = speed;
713
714
715
716
717
718
719 if ((quirks & OCELOT_QUIRK_PCS_PERFORMS_RATE_ADAPTATION) ||
720 speed == SPEED_1000) {
721 mac_speed = OCELOT_SPEED_1000;
722 mode = DEV_MAC_MODE_CFG_GIGA_MODE_ENA;
723 } else if (speed == SPEED_2500) {
724 mac_speed = OCELOT_SPEED_2500;
725 mode = DEV_MAC_MODE_CFG_GIGA_MODE_ENA;
726 } else if (speed == SPEED_100) {
727 mac_speed = OCELOT_SPEED_100;
728 } else {
729 mac_speed = OCELOT_SPEED_10;
730 }
731
732 if (duplex == DUPLEX_FULL)
733 mode |= DEV_MAC_MODE_CFG_FDX_ENA;
734
735 ocelot_port_writel(ocelot_port, mode, DEV_MAC_MODE_CFG);
736
737
738
739
740 ocelot_port_writel(ocelot_port, DEV_CLOCK_CFG_LINK_SPEED(mac_speed),
741 DEV_CLOCK_CFG);
742
743 switch (speed) {
744 case SPEED_10:
745 mac_fc_cfg = SYS_MAC_FC_CFG_FC_LINK_SPEED(OCELOT_SPEED_10);
746 break;
747 case SPEED_100:
748 mac_fc_cfg = SYS_MAC_FC_CFG_FC_LINK_SPEED(OCELOT_SPEED_100);
749 break;
750 case SPEED_1000:
751 case SPEED_2500:
752 mac_fc_cfg = SYS_MAC_FC_CFG_FC_LINK_SPEED(OCELOT_SPEED_1000);
753 break;
754 default:
755 dev_err(ocelot->dev, "Unsupported speed on port %d: %d\n",
756 port, speed);
757 return;
758 }
759
760
761
762
763 mac_fc_cfg |= SYS_MAC_FC_CFG_RX_FC_ENA;
764
765 if (tx_pause)
766 mac_fc_cfg |= SYS_MAC_FC_CFG_TX_FC_ENA |
767 SYS_MAC_FC_CFG_PAUSE_VAL_CFG(0xffff) |
768 SYS_MAC_FC_CFG_FC_LATENCY_CFG(0x7) |
769 SYS_MAC_FC_CFG_ZERO_PAUSE_ENA;
770
771
772
773
774 ocelot_write_rix(ocelot, mac_fc_cfg, SYS_MAC_FC_CFG, port);
775
776 ocelot_write_rix(ocelot, 0, ANA_POL_FLOWC, port);
777
778
779 if (port != ocelot->npi)
780 ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_ENA,
781 tx_pause);
782
783
784
785
786 ocelot_port_writel(ocelot_port, DEV_MAC_ENA_CFG_RX_ENA |
787 DEV_MAC_ENA_CFG_TX_ENA, DEV_MAC_ENA_CFG);
788
789
790
791
792 if (ocelot->ops->cut_through_fwd) {
793 mutex_lock(&ocelot->fwd_domain_lock);
794 ocelot->ops->cut_through_fwd(ocelot);
795 mutex_unlock(&ocelot->fwd_domain_lock);
796 }
797
798
799 ocelot_fields_write(ocelot, port,
800 QSYS_SWITCH_PORT_MODE_PORT_ENA, 1);
801}
802EXPORT_SYMBOL_GPL(ocelot_phylink_mac_link_up);
803
804static int ocelot_port_add_txtstamp_skb(struct ocelot *ocelot, int port,
805 struct sk_buff *clone)
806{
807 struct ocelot_port *ocelot_port = ocelot->ports[port];
808 unsigned long flags;
809
810 spin_lock_irqsave(&ocelot->ts_id_lock, flags);
811
812 if (ocelot_port->ptp_skbs_in_flight == OCELOT_MAX_PTP_ID ||
813 ocelot->ptp_skbs_in_flight == OCELOT_PTP_FIFO_SIZE) {
814 spin_unlock_irqrestore(&ocelot->ts_id_lock, flags);
815 return -EBUSY;
816 }
817
818 skb_shinfo(clone)->tx_flags |= SKBTX_IN_PROGRESS;
819
820 OCELOT_SKB_CB(clone)->ts_id = ocelot_port->ts_id;
821
822 ocelot_port->ts_id++;
823 if (ocelot_port->ts_id == OCELOT_MAX_PTP_ID)
824 ocelot_port->ts_id = 0;
825
826 ocelot_port->ptp_skbs_in_flight++;
827 ocelot->ptp_skbs_in_flight++;
828
829 skb_queue_tail(&ocelot_port->tx_skbs, clone);
830
831 spin_unlock_irqrestore(&ocelot->ts_id_lock, flags);
832
833 return 0;
834}
835
836static bool ocelot_ptp_is_onestep_sync(struct sk_buff *skb,
837 unsigned int ptp_class)
838{
839 struct ptp_header *hdr;
840 u8 msgtype, twostep;
841
842 hdr = ptp_parse_header(skb, ptp_class);
843 if (!hdr)
844 return false;
845
846 msgtype = ptp_get_msgtype(hdr, ptp_class);
847 twostep = hdr->flag_field[0] & 0x2;
848
849 if (msgtype == PTP_MSGTYPE_SYNC && twostep == 0)
850 return true;
851
852 return false;
853}
854
855int ocelot_port_txtstamp_request(struct ocelot *ocelot, int port,
856 struct sk_buff *skb,
857 struct sk_buff **clone)
858{
859 struct ocelot_port *ocelot_port = ocelot->ports[port];
860 u8 ptp_cmd = ocelot_port->ptp_cmd;
861 unsigned int ptp_class;
862 int err;
863
864
865 if (!ptp_cmd)
866 return 0;
867
868 ptp_class = ptp_classify_raw(skb);
869 if (ptp_class == PTP_CLASS_NONE)
870 return -EINVAL;
871
872
873 if (ptp_cmd == IFH_REW_OP_ORIGIN_PTP) {
874 if (ocelot_ptp_is_onestep_sync(skb, ptp_class)) {
875 OCELOT_SKB_CB(skb)->ptp_cmd = ptp_cmd;
876 return 0;
877 }
878
879
880 ptp_cmd = IFH_REW_OP_TWO_STEP_PTP;
881 }
882
883 if (ptp_cmd == IFH_REW_OP_TWO_STEP_PTP) {
884 *clone = skb_clone_sk(skb);
885 if (!(*clone))
886 return -ENOMEM;
887
888 err = ocelot_port_add_txtstamp_skb(ocelot, port, *clone);
889 if (err)
890 return err;
891
892 OCELOT_SKB_CB(skb)->ptp_cmd = ptp_cmd;
893 OCELOT_SKB_CB(*clone)->ptp_class = ptp_class;
894 }
895
896 return 0;
897}
898EXPORT_SYMBOL(ocelot_port_txtstamp_request);
899
900static void ocelot_get_hwtimestamp(struct ocelot *ocelot,
901 struct timespec64 *ts)
902{
903 unsigned long flags;
904 u32 val;
905
906 spin_lock_irqsave(&ocelot->ptp_clock_lock, flags);
907
908
909 val = ocelot_read_rix(ocelot, PTP_PIN_CFG, TOD_ACC_PIN);
910
911 val &= ~(PTP_PIN_CFG_SYNC | PTP_PIN_CFG_ACTION_MASK | PTP_PIN_CFG_DOM);
912 val |= PTP_PIN_CFG_ACTION(PTP_PIN_ACTION_SAVE);
913 ocelot_write_rix(ocelot, val, PTP_PIN_CFG, TOD_ACC_PIN);
914 ts->tv_sec = ocelot_read_rix(ocelot, PTP_PIN_TOD_SEC_LSB, TOD_ACC_PIN);
915
916
917 val = ocelot_read(ocelot, SYS_PTP_TXSTAMP);
918 ts->tv_nsec = SYS_PTP_TXSTAMP_PTP_TXSTAMP(val);
919
920
921 if ((ts->tv_sec & 0x1) != !!(val & SYS_PTP_TXSTAMP_PTP_TXSTAMP_SEC))
922 ts->tv_sec--;
923
924 spin_unlock_irqrestore(&ocelot->ptp_clock_lock, flags);
925}
926
927static bool ocelot_validate_ptp_skb(struct sk_buff *clone, u16 seqid)
928{
929 struct ptp_header *hdr;
930
931 hdr = ptp_parse_header(clone, OCELOT_SKB_CB(clone)->ptp_class);
932 if (WARN_ON(!hdr))
933 return false;
934
935 return seqid == ntohs(hdr->sequence_id);
936}
937
938void ocelot_get_txtstamp(struct ocelot *ocelot)
939{
940 int budget = OCELOT_PTP_QUEUE_SZ;
941
942 while (budget--) {
943 struct sk_buff *skb, *skb_tmp, *skb_match = NULL;
944 struct skb_shared_hwtstamps shhwtstamps;
945 u32 val, id, seqid, txport;
946 struct ocelot_port *port;
947 struct timespec64 ts;
948 unsigned long flags;
949
950 val = ocelot_read(ocelot, SYS_PTP_STATUS);
951
952
953 if (!(val & SYS_PTP_STATUS_PTP_MESS_VLD))
954 break;
955
956 WARN_ON(val & SYS_PTP_STATUS_PTP_OVFL);
957
958
959 id = SYS_PTP_STATUS_PTP_MESS_ID_X(val);
960 txport = SYS_PTP_STATUS_PTP_MESS_TXPORT_X(val);
961 seqid = SYS_PTP_STATUS_PTP_MESS_SEQ_ID(val);
962
963 port = ocelot->ports[txport];
964
965 spin_lock(&ocelot->ts_id_lock);
966 port->ptp_skbs_in_flight--;
967 ocelot->ptp_skbs_in_flight--;
968 spin_unlock(&ocelot->ts_id_lock);
969
970
971try_again:
972 spin_lock_irqsave(&port->tx_skbs.lock, flags);
973
974 skb_queue_walk_safe(&port->tx_skbs, skb, skb_tmp) {
975 if (OCELOT_SKB_CB(skb)->ts_id != id)
976 continue;
977 __skb_unlink(skb, &port->tx_skbs);
978 skb_match = skb;
979 break;
980 }
981
982 spin_unlock_irqrestore(&port->tx_skbs.lock, flags);
983
984 if (WARN_ON(!skb_match))
985 continue;
986
987 if (!ocelot_validate_ptp_skb(skb_match, seqid)) {
988 dev_err_ratelimited(ocelot->dev,
989 "port %d received stale TX timestamp for seqid %d, discarding\n",
990 txport, seqid);
991 dev_kfree_skb_any(skb);
992 goto try_again;
993 }
994
995
996 ocelot_get_hwtimestamp(ocelot, &ts);
997
998
999 memset(&shhwtstamps, 0, sizeof(shhwtstamps));
1000 shhwtstamps.hwtstamp = ktime_set(ts.tv_sec, ts.tv_nsec);
1001 skb_complete_tx_timestamp(skb_match, &shhwtstamps);
1002
1003
1004 ocelot_write(ocelot, SYS_PTP_NXT_PTP_NXT, SYS_PTP_NXT);
1005 }
1006}
1007EXPORT_SYMBOL(ocelot_get_txtstamp);
1008
1009static int ocelot_rx_frame_word(struct ocelot *ocelot, u8 grp, bool ifh,
1010 u32 *rval)
1011{
1012 u32 bytes_valid, val;
1013
1014 val = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
1015 if (val == XTR_NOT_READY) {
1016 if (ifh)
1017 return -EIO;
1018
1019 do {
1020 val = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
1021 } while (val == XTR_NOT_READY);
1022 }
1023
1024 switch (val) {
1025 case XTR_ABORT:
1026 return -EIO;
1027 case XTR_EOF_0:
1028 case XTR_EOF_1:
1029 case XTR_EOF_2:
1030 case XTR_EOF_3:
1031 case XTR_PRUNED:
1032 bytes_valid = XTR_VALID_BYTES(val);
1033 val = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
1034 if (val == XTR_ESCAPE)
1035 *rval = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
1036 else
1037 *rval = val;
1038
1039 return bytes_valid;
1040 case XTR_ESCAPE:
1041 *rval = ocelot_read_rix(ocelot, QS_XTR_RD, grp);
1042
1043 return 4;
1044 default:
1045 *rval = val;
1046
1047 return 4;
1048 }
1049}
1050
1051static int ocelot_xtr_poll_xfh(struct ocelot *ocelot, int grp, u32 *xfh)
1052{
1053 int i, err = 0;
1054
1055 for (i = 0; i < OCELOT_TAG_LEN / 4; i++) {
1056 err = ocelot_rx_frame_word(ocelot, grp, true, &xfh[i]);
1057 if (err != 4)
1058 return (err < 0) ? err : -EIO;
1059 }
1060
1061 return 0;
1062}
1063
1064void ocelot_ptp_rx_timestamp(struct ocelot *ocelot, struct sk_buff *skb,
1065 u64 timestamp)
1066{
1067 struct skb_shared_hwtstamps *shhwtstamps;
1068 u64 tod_in_ns, full_ts_in_ns;
1069 struct timespec64 ts;
1070
1071 ocelot_ptp_gettime64(&ocelot->ptp_info, &ts);
1072
1073 tod_in_ns = ktime_set(ts.tv_sec, ts.tv_nsec);
1074 if ((tod_in_ns & 0xffffffff) < timestamp)
1075 full_ts_in_ns = (((tod_in_ns >> 32) - 1) << 32) |
1076 timestamp;
1077 else
1078 full_ts_in_ns = (tod_in_ns & GENMASK_ULL(63, 32)) |
1079 timestamp;
1080
1081 shhwtstamps = skb_hwtstamps(skb);
1082 memset(shhwtstamps, 0, sizeof(struct skb_shared_hwtstamps));
1083 shhwtstamps->hwtstamp = full_ts_in_ns;
1084}
1085EXPORT_SYMBOL(ocelot_ptp_rx_timestamp);
1086
1087int ocelot_xtr_poll_frame(struct ocelot *ocelot, int grp, struct sk_buff **nskb)
1088{
1089 u64 timestamp, src_port, len;
1090 u32 xfh[OCELOT_TAG_LEN / 4];
1091 struct net_device *dev;
1092 struct sk_buff *skb;
1093 int sz, buf_len;
1094 u32 val, *buf;
1095 int err;
1096
1097 err = ocelot_xtr_poll_xfh(ocelot, grp, xfh);
1098 if (err)
1099 return err;
1100
1101 ocelot_xfh_get_src_port(xfh, &src_port);
1102 ocelot_xfh_get_len(xfh, &len);
1103 ocelot_xfh_get_rew_val(xfh, ×tamp);
1104
1105 if (WARN_ON(src_port >= ocelot->num_phys_ports))
1106 return -EINVAL;
1107
1108 dev = ocelot->ops->port_to_netdev(ocelot, src_port);
1109 if (!dev)
1110 return -EINVAL;
1111
1112 skb = netdev_alloc_skb(dev, len);
1113 if (unlikely(!skb)) {
1114 netdev_err(dev, "Unable to allocate sk_buff\n");
1115 return -ENOMEM;
1116 }
1117
1118 buf_len = len - ETH_FCS_LEN;
1119 buf = (u32 *)skb_put(skb, buf_len);
1120
1121 len = 0;
1122 do {
1123 sz = ocelot_rx_frame_word(ocelot, grp, false, &val);
1124 if (sz < 0) {
1125 err = sz;
1126 goto out_free_skb;
1127 }
1128 *buf++ = val;
1129 len += sz;
1130 } while (len < buf_len);
1131
1132
1133 sz = ocelot_rx_frame_word(ocelot, grp, false, &val);
1134 if (sz < 0) {
1135 err = sz;
1136 goto out_free_skb;
1137 }
1138
1139
1140 len -= ETH_FCS_LEN - sz;
1141
1142 if (unlikely(dev->features & NETIF_F_RXFCS)) {
1143 buf = (u32 *)skb_put(skb, ETH_FCS_LEN);
1144 *buf = val;
1145 }
1146
1147 if (ocelot->ptp)
1148 ocelot_ptp_rx_timestamp(ocelot, skb, timestamp);
1149
1150
1151
1152
1153 if (ocelot->ports[src_port]->bridge)
1154 skb->offload_fwd_mark = 1;
1155
1156 skb->protocol = eth_type_trans(skb, dev);
1157
1158 *nskb = skb;
1159
1160 return 0;
1161
1162out_free_skb:
1163 kfree_skb(skb);
1164 return err;
1165}
1166EXPORT_SYMBOL(ocelot_xtr_poll_frame);
1167
1168bool ocelot_can_inject(struct ocelot *ocelot, int grp)
1169{
1170 u32 val = ocelot_read(ocelot, QS_INJ_STATUS);
1171
1172 if (!(val & QS_INJ_STATUS_FIFO_RDY(BIT(grp))))
1173 return false;
1174 if (val & QS_INJ_STATUS_WMARK_REACHED(BIT(grp)))
1175 return false;
1176
1177 return true;
1178}
1179EXPORT_SYMBOL(ocelot_can_inject);
1180
1181void ocelot_ifh_port_set(void *ifh, int port, u32 rew_op, u32 vlan_tag)
1182{
1183 ocelot_ifh_set_bypass(ifh, 1);
1184 ocelot_ifh_set_dest(ifh, BIT_ULL(port));
1185 ocelot_ifh_set_tag_type(ifh, IFH_TAG_TYPE_C);
1186 if (vlan_tag)
1187 ocelot_ifh_set_vlan_tci(ifh, vlan_tag);
1188 if (rew_op)
1189 ocelot_ifh_set_rew_op(ifh, rew_op);
1190}
1191EXPORT_SYMBOL(ocelot_ifh_port_set);
1192
1193void ocelot_port_inject_frame(struct ocelot *ocelot, int port, int grp,
1194 u32 rew_op, struct sk_buff *skb)
1195{
1196 u32 ifh[OCELOT_TAG_LEN / 4] = {0};
1197 unsigned int i, count, last;
1198
1199 ocelot_write_rix(ocelot, QS_INJ_CTRL_GAP_SIZE(1) |
1200 QS_INJ_CTRL_SOF, QS_INJ_CTRL, grp);
1201
1202 ocelot_ifh_port_set(ifh, port, rew_op, skb_vlan_tag_get(skb));
1203
1204 for (i = 0; i < OCELOT_TAG_LEN / 4; i++)
1205 ocelot_write_rix(ocelot, ifh[i], QS_INJ_WR, grp);
1206
1207 count = DIV_ROUND_UP(skb->len, 4);
1208 last = skb->len % 4;
1209 for (i = 0; i < count; i++)
1210 ocelot_write_rix(ocelot, ((u32 *)skb->data)[i], QS_INJ_WR, grp);
1211
1212
1213 while (i < (OCELOT_BUFFER_CELL_SZ / 4)) {
1214 ocelot_write_rix(ocelot, 0, QS_INJ_WR, grp);
1215 i++;
1216 }
1217
1218
1219 ocelot_write_rix(ocelot, QS_INJ_CTRL_GAP_SIZE(1) |
1220 QS_INJ_CTRL_VLD_BYTES(skb->len < OCELOT_BUFFER_CELL_SZ ? 0 : last) |
1221 QS_INJ_CTRL_EOF,
1222 QS_INJ_CTRL, grp);
1223
1224
1225 ocelot_write_rix(ocelot, 0, QS_INJ_WR, grp);
1226 skb_tx_timestamp(skb);
1227
1228 skb->dev->stats.tx_packets++;
1229 skb->dev->stats.tx_bytes += skb->len;
1230}
1231EXPORT_SYMBOL(ocelot_port_inject_frame);
1232
1233void ocelot_drain_cpu_queue(struct ocelot *ocelot, int grp)
1234{
1235 while (ocelot_read(ocelot, QS_XTR_DATA_PRESENT) & BIT(grp))
1236 ocelot_read_rix(ocelot, QS_XTR_RD, grp);
1237}
1238EXPORT_SYMBOL(ocelot_drain_cpu_queue);
1239
1240int ocelot_fdb_add(struct ocelot *ocelot, int port,
1241 const unsigned char *addr, u16 vid)
1242{
1243 int pgid = port;
1244
1245 if (port == ocelot->npi)
1246 pgid = PGID_CPU;
1247
1248 return ocelot_mact_learn(ocelot, pgid, addr, vid, ENTRYTYPE_LOCKED);
1249}
1250EXPORT_SYMBOL(ocelot_fdb_add);
1251
1252int ocelot_fdb_del(struct ocelot *ocelot, int port,
1253 const unsigned char *addr, u16 vid)
1254{
1255 return ocelot_mact_forget(ocelot, addr, vid);
1256}
1257EXPORT_SYMBOL(ocelot_fdb_del);
1258
1259int ocelot_port_fdb_do_dump(const unsigned char *addr, u16 vid,
1260 bool is_static, void *data)
1261{
1262 struct ocelot_dump_ctx *dump = data;
1263 u32 portid = NETLINK_CB(dump->cb->skb).portid;
1264 u32 seq = dump->cb->nlh->nlmsg_seq;
1265 struct nlmsghdr *nlh;
1266 struct ndmsg *ndm;
1267
1268 if (dump->idx < dump->cb->args[2])
1269 goto skip;
1270
1271 nlh = nlmsg_put(dump->skb, portid, seq, RTM_NEWNEIGH,
1272 sizeof(*ndm), NLM_F_MULTI);
1273 if (!nlh)
1274 return -EMSGSIZE;
1275
1276 ndm = nlmsg_data(nlh);
1277 ndm->ndm_family = AF_BRIDGE;
1278 ndm->ndm_pad1 = 0;
1279 ndm->ndm_pad2 = 0;
1280 ndm->ndm_flags = NTF_SELF;
1281 ndm->ndm_type = 0;
1282 ndm->ndm_ifindex = dump->dev->ifindex;
1283 ndm->ndm_state = is_static ? NUD_NOARP : NUD_REACHABLE;
1284
1285 if (nla_put(dump->skb, NDA_LLADDR, ETH_ALEN, addr))
1286 goto nla_put_failure;
1287
1288 if (vid && nla_put_u16(dump->skb, NDA_VLAN, vid))
1289 goto nla_put_failure;
1290
1291 nlmsg_end(dump->skb, nlh);
1292
1293skip:
1294 dump->idx++;
1295 return 0;
1296
1297nla_put_failure:
1298 nlmsg_cancel(dump->skb, nlh);
1299 return -EMSGSIZE;
1300}
1301EXPORT_SYMBOL(ocelot_port_fdb_do_dump);
1302
1303
1304static int ocelot_mact_read(struct ocelot *ocelot, int port, int row, int col,
1305 struct ocelot_mact_entry *entry)
1306{
1307 u32 val, dst, macl, mach;
1308 char mac[ETH_ALEN];
1309
1310
1311 ocelot_field_write(ocelot, ANA_TABLES_MACTINDX_M_INDEX, row);
1312 ocelot_field_write(ocelot, ANA_TABLES_MACTINDX_BUCKET, col);
1313
1314
1315 ocelot_write(ocelot,
1316 ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_READ),
1317 ANA_TABLES_MACACCESS);
1318
1319 if (ocelot_mact_wait_for_completion(ocelot))
1320 return -ETIMEDOUT;
1321
1322
1323 val = ocelot_read(ocelot, ANA_TABLES_MACACCESS);
1324 if (!(val & ANA_TABLES_MACACCESS_VALID))
1325 return -EINVAL;
1326
1327
1328
1329
1330 dst = (val & ANA_TABLES_MACACCESS_DEST_IDX_M) >> 3;
1331 if (dst != port)
1332 return -EINVAL;
1333
1334
1335 macl = ocelot_read(ocelot, ANA_TABLES_MACLDATA);
1336 mach = ocelot_read(ocelot, ANA_TABLES_MACHDATA);
1337
1338 mac[0] = (mach >> 8) & 0xff;
1339 mac[1] = (mach >> 0) & 0xff;
1340 mac[2] = (macl >> 24) & 0xff;
1341 mac[3] = (macl >> 16) & 0xff;
1342 mac[4] = (macl >> 8) & 0xff;
1343 mac[5] = (macl >> 0) & 0xff;
1344
1345 entry->vid = (mach >> 16) & 0xfff;
1346 ether_addr_copy(entry->mac, mac);
1347
1348 return 0;
1349}
1350
1351int ocelot_mact_flush(struct ocelot *ocelot, int port)
1352{
1353 int err;
1354
1355 mutex_lock(&ocelot->mact_lock);
1356
1357
1358 ocelot_write(ocelot, ANA_ANAGEFIL_PID_EN | ANA_ANAGEFIL_PID_VAL(port),
1359 ANA_ANAGEFIL);
1360
1361
1362 ocelot_write(ocelot,
1363 ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_AGE),
1364 ANA_TABLES_MACACCESS);
1365
1366 err = ocelot_mact_wait_for_completion(ocelot);
1367 if (err) {
1368 mutex_unlock(&ocelot->mact_lock);
1369 return err;
1370 }
1371
1372
1373 ocelot_write(ocelot,
1374 ANA_TABLES_MACACCESS_MAC_TABLE_CMD(MACACCESS_CMD_AGE),
1375 ANA_TABLES_MACACCESS);
1376
1377 err = ocelot_mact_wait_for_completion(ocelot);
1378
1379
1380 ocelot_write(ocelot, 0, ANA_ANAGEFIL);
1381
1382 mutex_unlock(&ocelot->mact_lock);
1383
1384 return err;
1385}
1386EXPORT_SYMBOL_GPL(ocelot_mact_flush);
1387
1388int ocelot_fdb_dump(struct ocelot *ocelot, int port,
1389 dsa_fdb_dump_cb_t *cb, void *data)
1390{
1391 int err = 0;
1392 int i, j;
1393
1394
1395
1396
1397 mutex_lock(&ocelot->mact_lock);
1398
1399
1400 for (i = 0; i < ocelot->num_mact_rows; i++) {
1401 for (j = 0; j < 4; j++) {
1402 struct ocelot_mact_entry entry;
1403 bool is_static;
1404
1405 err = ocelot_mact_read(ocelot, port, i, j, &entry);
1406
1407
1408
1409 if (err == -EINVAL)
1410 continue;
1411 else if (err)
1412 break;
1413
1414 is_static = (entry.type == ENTRYTYPE_LOCKED);
1415
1416 err = cb(entry.mac, entry.vid, is_static, data);
1417 if (err)
1418 break;
1419 }
1420 }
1421
1422 mutex_unlock(&ocelot->mact_lock);
1423
1424 return err;
1425}
1426EXPORT_SYMBOL(ocelot_fdb_dump);
1427
1428static void ocelot_populate_l2_ptp_trap_key(struct ocelot_vcap_filter *trap)
1429{
1430 trap->key_type = OCELOT_VCAP_KEY_ETYPE;
1431 *(__be16 *)trap->key.etype.etype.value = htons(ETH_P_1588);
1432 *(__be16 *)trap->key.etype.etype.mask = htons(0xffff);
1433}
1434
1435static void
1436ocelot_populate_ipv4_ptp_event_trap_key(struct ocelot_vcap_filter *trap)
1437{
1438 trap->key_type = OCELOT_VCAP_KEY_IPV4;
1439 trap->key.ipv4.proto.value[0] = IPPROTO_UDP;
1440 trap->key.ipv4.proto.mask[0] = 0xff;
1441 trap->key.ipv4.dport.value = PTP_EV_PORT;
1442 trap->key.ipv4.dport.mask = 0xffff;
1443}
1444
1445static void
1446ocelot_populate_ipv6_ptp_event_trap_key(struct ocelot_vcap_filter *trap)
1447{
1448 trap->key_type = OCELOT_VCAP_KEY_IPV6;
1449 trap->key.ipv4.proto.value[0] = IPPROTO_UDP;
1450 trap->key.ipv4.proto.mask[0] = 0xff;
1451 trap->key.ipv6.dport.value = PTP_EV_PORT;
1452 trap->key.ipv6.dport.mask = 0xffff;
1453}
1454
1455static void
1456ocelot_populate_ipv4_ptp_general_trap_key(struct ocelot_vcap_filter *trap)
1457{
1458 trap->key_type = OCELOT_VCAP_KEY_IPV4;
1459 trap->key.ipv4.proto.value[0] = IPPROTO_UDP;
1460 trap->key.ipv4.proto.mask[0] = 0xff;
1461 trap->key.ipv4.dport.value = PTP_GEN_PORT;
1462 trap->key.ipv4.dport.mask = 0xffff;
1463}
1464
1465static void
1466ocelot_populate_ipv6_ptp_general_trap_key(struct ocelot_vcap_filter *trap)
1467{
1468 trap->key_type = OCELOT_VCAP_KEY_IPV6;
1469 trap->key.ipv4.proto.value[0] = IPPROTO_UDP;
1470 trap->key.ipv4.proto.mask[0] = 0xff;
1471 trap->key.ipv6.dport.value = PTP_GEN_PORT;
1472 trap->key.ipv6.dport.mask = 0xffff;
1473}
1474
1475static int ocelot_trap_add(struct ocelot *ocelot, int port,
1476 unsigned long cookie,
1477 void (*populate)(struct ocelot_vcap_filter *f))
1478{
1479 struct ocelot_vcap_block *block_vcap_is2;
1480 struct ocelot_vcap_filter *trap;
1481 bool new = false;
1482 int err;
1483
1484 block_vcap_is2 = &ocelot->block[VCAP_IS2];
1485
1486 trap = ocelot_vcap_block_find_filter_by_id(block_vcap_is2, cookie,
1487 false);
1488 if (!trap) {
1489 trap = kzalloc(sizeof(*trap), GFP_KERNEL);
1490 if (!trap)
1491 return -ENOMEM;
1492
1493 populate(trap);
1494 trap->prio = 1;
1495 trap->id.cookie = cookie;
1496 trap->id.tc_offload = false;
1497 trap->block_id = VCAP_IS2;
1498 trap->type = OCELOT_VCAP_FILTER_OFFLOAD;
1499 trap->lookup = 0;
1500 trap->action.cpu_copy_ena = true;
1501 trap->action.mask_mode = OCELOT_MASK_MODE_PERMIT_DENY;
1502 trap->action.port_mask = 0;
1503 new = true;
1504 }
1505
1506 trap->ingress_port_mask |= BIT(port);
1507
1508 if (new)
1509 err = ocelot_vcap_filter_add(ocelot, trap, NULL);
1510 else
1511 err = ocelot_vcap_filter_replace(ocelot, trap);
1512 if (err) {
1513 trap->ingress_port_mask &= ~BIT(port);
1514 if (!trap->ingress_port_mask)
1515 kfree(trap);
1516 return err;
1517 }
1518
1519 return 0;
1520}
1521
1522static int ocelot_trap_del(struct ocelot *ocelot, int port,
1523 unsigned long cookie)
1524{
1525 struct ocelot_vcap_block *block_vcap_is2;
1526 struct ocelot_vcap_filter *trap;
1527
1528 block_vcap_is2 = &ocelot->block[VCAP_IS2];
1529
1530 trap = ocelot_vcap_block_find_filter_by_id(block_vcap_is2, cookie,
1531 false);
1532 if (!trap)
1533 return 0;
1534
1535 trap->ingress_port_mask &= ~BIT(port);
1536 if (!trap->ingress_port_mask)
1537 return ocelot_vcap_filter_del(ocelot, trap);
1538
1539 return ocelot_vcap_filter_replace(ocelot, trap);
1540}
1541
1542static int ocelot_l2_ptp_trap_add(struct ocelot *ocelot, int port)
1543{
1544 unsigned long l2_cookie = ocelot->num_phys_ports + 1;
1545
1546 return ocelot_trap_add(ocelot, port, l2_cookie,
1547 ocelot_populate_l2_ptp_trap_key);
1548}
1549
1550static int ocelot_l2_ptp_trap_del(struct ocelot *ocelot, int port)
1551{
1552 unsigned long l2_cookie = ocelot->num_phys_ports + 1;
1553
1554 return ocelot_trap_del(ocelot, port, l2_cookie);
1555}
1556
1557static int ocelot_ipv4_ptp_trap_add(struct ocelot *ocelot, int port)
1558{
1559 unsigned long ipv4_gen_cookie = ocelot->num_phys_ports + 2;
1560 unsigned long ipv4_ev_cookie = ocelot->num_phys_ports + 3;
1561 int err;
1562
1563 err = ocelot_trap_add(ocelot, port, ipv4_ev_cookie,
1564 ocelot_populate_ipv4_ptp_event_trap_key);
1565 if (err)
1566 return err;
1567
1568 err = ocelot_trap_add(ocelot, port, ipv4_gen_cookie,
1569 ocelot_populate_ipv4_ptp_general_trap_key);
1570 if (err)
1571 ocelot_trap_del(ocelot, port, ipv4_ev_cookie);
1572
1573 return err;
1574}
1575
1576static int ocelot_ipv4_ptp_trap_del(struct ocelot *ocelot, int port)
1577{
1578 unsigned long ipv4_gen_cookie = ocelot->num_phys_ports + 2;
1579 unsigned long ipv4_ev_cookie = ocelot->num_phys_ports + 3;
1580 int err;
1581
1582 err = ocelot_trap_del(ocelot, port, ipv4_ev_cookie);
1583 err |= ocelot_trap_del(ocelot, port, ipv4_gen_cookie);
1584 return err;
1585}
1586
1587static int ocelot_ipv6_ptp_trap_add(struct ocelot *ocelot, int port)
1588{
1589 unsigned long ipv6_gen_cookie = ocelot->num_phys_ports + 4;
1590 unsigned long ipv6_ev_cookie = ocelot->num_phys_ports + 5;
1591 int err;
1592
1593 err = ocelot_trap_add(ocelot, port, ipv6_ev_cookie,
1594 ocelot_populate_ipv6_ptp_event_trap_key);
1595 if (err)
1596 return err;
1597
1598 err = ocelot_trap_add(ocelot, port, ipv6_gen_cookie,
1599 ocelot_populate_ipv6_ptp_general_trap_key);
1600 if (err)
1601 ocelot_trap_del(ocelot, port, ipv6_ev_cookie);
1602
1603 return err;
1604}
1605
1606static int ocelot_ipv6_ptp_trap_del(struct ocelot *ocelot, int port)
1607{
1608 unsigned long ipv6_gen_cookie = ocelot->num_phys_ports + 4;
1609 unsigned long ipv6_ev_cookie = ocelot->num_phys_ports + 5;
1610 int err;
1611
1612 err = ocelot_trap_del(ocelot, port, ipv6_ev_cookie);
1613 err |= ocelot_trap_del(ocelot, port, ipv6_gen_cookie);
1614 return err;
1615}
1616
1617static int ocelot_setup_ptp_traps(struct ocelot *ocelot, int port,
1618 bool l2, bool l4)
1619{
1620 int err;
1621
1622 if (l2)
1623 err = ocelot_l2_ptp_trap_add(ocelot, port);
1624 else
1625 err = ocelot_l2_ptp_trap_del(ocelot, port);
1626 if (err)
1627 return err;
1628
1629 if (l4) {
1630 err = ocelot_ipv4_ptp_trap_add(ocelot, port);
1631 if (err)
1632 goto err_ipv4;
1633
1634 err = ocelot_ipv6_ptp_trap_add(ocelot, port);
1635 if (err)
1636 goto err_ipv6;
1637 } else {
1638 err = ocelot_ipv4_ptp_trap_del(ocelot, port);
1639
1640 err |= ocelot_ipv6_ptp_trap_del(ocelot, port);
1641 }
1642 if (err)
1643 return err;
1644
1645 return 0;
1646
1647err_ipv6:
1648 ocelot_ipv4_ptp_trap_del(ocelot, port);
1649err_ipv4:
1650 if (l2)
1651 ocelot_l2_ptp_trap_del(ocelot, port);
1652 return err;
1653}
1654
1655int ocelot_hwstamp_get(struct ocelot *ocelot, int port, struct ifreq *ifr)
1656{
1657 return copy_to_user(ifr->ifr_data, &ocelot->hwtstamp_config,
1658 sizeof(ocelot->hwtstamp_config)) ? -EFAULT : 0;
1659}
1660EXPORT_SYMBOL(ocelot_hwstamp_get);
1661
1662int ocelot_hwstamp_set(struct ocelot *ocelot, int port, struct ifreq *ifr)
1663{
1664 struct ocelot_port *ocelot_port = ocelot->ports[port];
1665 bool l2 = false, l4 = false;
1666 struct hwtstamp_config cfg;
1667 int err;
1668
1669 if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
1670 return -EFAULT;
1671
1672
1673 switch (cfg.tx_type) {
1674 case HWTSTAMP_TX_ON:
1675 ocelot_port->ptp_cmd = IFH_REW_OP_TWO_STEP_PTP;
1676 break;
1677 case HWTSTAMP_TX_ONESTEP_SYNC:
1678
1679
1680
1681 ocelot_port->ptp_cmd = IFH_REW_OP_ORIGIN_PTP;
1682 break;
1683 case HWTSTAMP_TX_OFF:
1684 ocelot_port->ptp_cmd = 0;
1685 break;
1686 default:
1687 return -ERANGE;
1688 }
1689
1690 mutex_lock(&ocelot->ptp_lock);
1691
1692 switch (cfg.rx_filter) {
1693 case HWTSTAMP_FILTER_NONE:
1694 break;
1695 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
1696 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
1697 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
1698 l4 = true;
1699 break;
1700 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
1701 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
1702 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
1703 l2 = true;
1704 break;
1705 case HWTSTAMP_FILTER_PTP_V2_EVENT:
1706 case HWTSTAMP_FILTER_PTP_V2_SYNC:
1707 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
1708 l2 = true;
1709 l4 = true;
1710 break;
1711 default:
1712 mutex_unlock(&ocelot->ptp_lock);
1713 return -ERANGE;
1714 }
1715
1716 err = ocelot_setup_ptp_traps(ocelot, port, l2, l4);
1717 if (err) {
1718 mutex_unlock(&ocelot->ptp_lock);
1719 return err;
1720 }
1721
1722 if (l2 && l4)
1723 cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
1724 else if (l2)
1725 cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_L2_EVENT;
1726 else if (l4)
1727 cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_L4_EVENT;
1728 else
1729 cfg.rx_filter = HWTSTAMP_FILTER_NONE;
1730
1731
1732 memcpy(&ocelot->hwtstamp_config, &cfg, sizeof(cfg));
1733 mutex_unlock(&ocelot->ptp_lock);
1734
1735 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1736}
1737EXPORT_SYMBOL(ocelot_hwstamp_set);
1738
1739void ocelot_get_strings(struct ocelot *ocelot, int port, u32 sset, u8 *data)
1740{
1741 int i;
1742
1743 if (sset != ETH_SS_STATS)
1744 return;
1745
1746 for (i = 0; i < ocelot->num_stats; i++)
1747 memcpy(data + i * ETH_GSTRING_LEN, ocelot->stats_layout[i].name,
1748 ETH_GSTRING_LEN);
1749}
1750EXPORT_SYMBOL(ocelot_get_strings);
1751
1752
1753static void ocelot_update_stats(struct ocelot *ocelot)
1754{
1755 int i, j;
1756
1757 for (i = 0; i < ocelot->num_phys_ports; i++) {
1758
1759 ocelot_write(ocelot, SYS_STAT_CFG_STAT_VIEW(i), SYS_STAT_CFG);
1760
1761 for (j = 0; j < ocelot->num_stats; j++) {
1762 u32 val;
1763 unsigned int idx = i * ocelot->num_stats + j;
1764
1765 val = ocelot_read_rix(ocelot, SYS_COUNT_RX_OCTETS,
1766 ocelot->stats_layout[j].offset);
1767
1768 if (val < (ocelot->stats[idx] & U32_MAX))
1769 ocelot->stats[idx] += (u64)1 << 32;
1770
1771 ocelot->stats[idx] = (ocelot->stats[idx] &
1772 ~(u64)U32_MAX) + val;
1773 }
1774 }
1775}
1776
1777static void ocelot_check_stats_work(struct work_struct *work)
1778{
1779 struct delayed_work *del_work = to_delayed_work(work);
1780 struct ocelot *ocelot = container_of(del_work, struct ocelot,
1781 stats_work);
1782
1783 mutex_lock(&ocelot->stats_lock);
1784 ocelot_update_stats(ocelot);
1785 mutex_unlock(&ocelot->stats_lock);
1786
1787 queue_delayed_work(ocelot->stats_queue, &ocelot->stats_work,
1788 OCELOT_STATS_CHECK_DELAY);
1789}
1790
1791void ocelot_get_ethtool_stats(struct ocelot *ocelot, int port, u64 *data)
1792{
1793 int i;
1794
1795 mutex_lock(&ocelot->stats_lock);
1796
1797
1798 ocelot_update_stats(ocelot);
1799
1800
1801 for (i = 0; i < ocelot->num_stats; i++)
1802 *data++ = ocelot->stats[port * ocelot->num_stats + i];
1803
1804 mutex_unlock(&ocelot->stats_lock);
1805}
1806EXPORT_SYMBOL(ocelot_get_ethtool_stats);
1807
1808int ocelot_get_sset_count(struct ocelot *ocelot, int port, int sset)
1809{
1810 if (sset != ETH_SS_STATS)
1811 return -EOPNOTSUPP;
1812
1813 return ocelot->num_stats;
1814}
1815EXPORT_SYMBOL(ocelot_get_sset_count);
1816
1817int ocelot_get_ts_info(struct ocelot *ocelot, int port,
1818 struct ethtool_ts_info *info)
1819{
1820 info->phc_index = ocelot->ptp_clock ?
1821 ptp_clock_index(ocelot->ptp_clock) : -1;
1822 if (info->phc_index == -1) {
1823 info->so_timestamping |= SOF_TIMESTAMPING_TX_SOFTWARE |
1824 SOF_TIMESTAMPING_RX_SOFTWARE |
1825 SOF_TIMESTAMPING_SOFTWARE;
1826 return 0;
1827 }
1828 info->so_timestamping |= SOF_TIMESTAMPING_TX_SOFTWARE |
1829 SOF_TIMESTAMPING_RX_SOFTWARE |
1830 SOF_TIMESTAMPING_SOFTWARE |
1831 SOF_TIMESTAMPING_TX_HARDWARE |
1832 SOF_TIMESTAMPING_RX_HARDWARE |
1833 SOF_TIMESTAMPING_RAW_HARDWARE;
1834 info->tx_types = BIT(HWTSTAMP_TX_OFF) | BIT(HWTSTAMP_TX_ON) |
1835 BIT(HWTSTAMP_TX_ONESTEP_SYNC);
1836 info->rx_filters = BIT(HWTSTAMP_FILTER_NONE) |
1837 BIT(HWTSTAMP_FILTER_PTP_V2_EVENT) |
1838 BIT(HWTSTAMP_FILTER_PTP_V2_L2_EVENT) |
1839 BIT(HWTSTAMP_FILTER_PTP_V2_L4_EVENT);
1840
1841 return 0;
1842}
1843EXPORT_SYMBOL(ocelot_get_ts_info);
1844
1845static u32 ocelot_get_bond_mask(struct ocelot *ocelot, struct net_device *bond)
1846{
1847 u32 mask = 0;
1848 int port;
1849
1850 for (port = 0; port < ocelot->num_phys_ports; port++) {
1851 struct ocelot_port *ocelot_port = ocelot->ports[port];
1852
1853 if (!ocelot_port)
1854 continue;
1855
1856 if (ocelot_port->bond == bond)
1857 mask |= BIT(port);
1858 }
1859
1860 return mask;
1861}
1862
1863u32 ocelot_get_bridge_fwd_mask(struct ocelot *ocelot, int src_port)
1864{
1865 struct ocelot_port *ocelot_port = ocelot->ports[src_port];
1866 const struct net_device *bridge;
1867 u32 mask = 0;
1868 int port;
1869
1870 if (!ocelot_port || ocelot_port->stp_state != BR_STATE_FORWARDING)
1871 return 0;
1872
1873 bridge = ocelot_port->bridge;
1874 if (!bridge)
1875 return 0;
1876
1877 for (port = 0; port < ocelot->num_phys_ports; port++) {
1878 ocelot_port = ocelot->ports[port];
1879
1880 if (!ocelot_port)
1881 continue;
1882
1883 if (ocelot_port->stp_state == BR_STATE_FORWARDING &&
1884 ocelot_port->bridge == bridge)
1885 mask |= BIT(port);
1886 }
1887
1888 return mask;
1889}
1890EXPORT_SYMBOL_GPL(ocelot_get_bridge_fwd_mask);
1891
1892u32 ocelot_get_dsa_8021q_cpu_mask(struct ocelot *ocelot)
1893{
1894 u32 mask = 0;
1895 int port;
1896
1897 for (port = 0; port < ocelot->num_phys_ports; port++) {
1898 struct ocelot_port *ocelot_port = ocelot->ports[port];
1899
1900 if (!ocelot_port)
1901 continue;
1902
1903 if (ocelot_port->is_dsa_8021q_cpu)
1904 mask |= BIT(port);
1905 }
1906
1907 return mask;
1908}
1909EXPORT_SYMBOL_GPL(ocelot_get_dsa_8021q_cpu_mask);
1910
1911void ocelot_apply_bridge_fwd_mask(struct ocelot *ocelot, bool joining)
1912{
1913 unsigned long cpu_fwd_mask;
1914 int port;
1915
1916 lockdep_assert_held(&ocelot->fwd_domain_lock);
1917
1918
1919
1920
1921
1922 if (joining && ocelot->ops->cut_through_fwd)
1923 ocelot->ops->cut_through_fwd(ocelot);
1924
1925
1926
1927
1928
1929
1930
1931
1932 cpu_fwd_mask = ocelot_get_dsa_8021q_cpu_mask(ocelot);
1933
1934
1935
1936
1937 for (port = 0; port < ocelot->num_phys_ports; port++) {
1938 struct ocelot_port *ocelot_port = ocelot->ports[port];
1939 unsigned long mask;
1940
1941 if (!ocelot_port) {
1942
1943 mask = 0;
1944 } else if (ocelot_port->is_dsa_8021q_cpu) {
1945
1946
1947
1948
1949 mask = GENMASK(ocelot->num_phys_ports - 1, 0);
1950 mask &= ~cpu_fwd_mask;
1951 } else if (ocelot_port->bridge) {
1952 struct net_device *bond = ocelot_port->bond;
1953
1954 mask = ocelot_get_bridge_fwd_mask(ocelot, port);
1955 mask |= cpu_fwd_mask;
1956 mask &= ~BIT(port);
1957 if (bond)
1958 mask &= ~ocelot_get_bond_mask(ocelot, bond);
1959 } else {
1960
1961
1962
1963
1964 mask = cpu_fwd_mask;
1965 }
1966
1967 ocelot_write_rix(ocelot, mask, ANA_PGID_PGID, PGID_SRC + port);
1968 }
1969
1970
1971
1972
1973
1974
1975
1976
1977 if (!joining && ocelot->ops->cut_through_fwd)
1978 ocelot->ops->cut_through_fwd(ocelot);
1979}
1980EXPORT_SYMBOL(ocelot_apply_bridge_fwd_mask);
1981
1982void ocelot_bridge_stp_state_set(struct ocelot *ocelot, int port, u8 state)
1983{
1984 struct ocelot_port *ocelot_port = ocelot->ports[port];
1985 u32 learn_ena = 0;
1986
1987 mutex_lock(&ocelot->fwd_domain_lock);
1988
1989 ocelot_port->stp_state = state;
1990
1991 if ((state == BR_STATE_LEARNING || state == BR_STATE_FORWARDING) &&
1992 ocelot_port->learn_ena)
1993 learn_ena = ANA_PORT_PORT_CFG_LEARN_ENA;
1994
1995 ocelot_rmw_gix(ocelot, learn_ena, ANA_PORT_PORT_CFG_LEARN_ENA,
1996 ANA_PORT_PORT_CFG, port);
1997
1998 ocelot_apply_bridge_fwd_mask(ocelot, state == BR_STATE_FORWARDING);
1999
2000 mutex_unlock(&ocelot->fwd_domain_lock);
2001}
2002EXPORT_SYMBOL(ocelot_bridge_stp_state_set);
2003
2004void ocelot_set_ageing_time(struct ocelot *ocelot, unsigned int msecs)
2005{
2006 unsigned int age_period = ANA_AUTOAGE_AGE_PERIOD(msecs / 2000);
2007
2008
2009
2010
2011 if (!age_period)
2012 age_period = 1;
2013
2014 ocelot_rmw(ocelot, age_period, ANA_AUTOAGE_AGE_PERIOD_M, ANA_AUTOAGE);
2015}
2016EXPORT_SYMBOL(ocelot_set_ageing_time);
2017
2018static struct ocelot_multicast *ocelot_multicast_get(struct ocelot *ocelot,
2019 const unsigned char *addr,
2020 u16 vid)
2021{
2022 struct ocelot_multicast *mc;
2023
2024 list_for_each_entry(mc, &ocelot->multicast, list) {
2025 if (ether_addr_equal(mc->addr, addr) && mc->vid == vid)
2026 return mc;
2027 }
2028
2029 return NULL;
2030}
2031
2032static enum macaccess_entry_type ocelot_classify_mdb(const unsigned char *addr)
2033{
2034 if (addr[0] == 0x01 && addr[1] == 0x00 && addr[2] == 0x5e)
2035 return ENTRYTYPE_MACv4;
2036 if (addr[0] == 0x33 && addr[1] == 0x33)
2037 return ENTRYTYPE_MACv6;
2038 return ENTRYTYPE_LOCKED;
2039}
2040
2041static struct ocelot_pgid *ocelot_pgid_alloc(struct ocelot *ocelot, int index,
2042 unsigned long ports)
2043{
2044 struct ocelot_pgid *pgid;
2045
2046 pgid = kzalloc(sizeof(*pgid), GFP_KERNEL);
2047 if (!pgid)
2048 return ERR_PTR(-ENOMEM);
2049
2050 pgid->ports = ports;
2051 pgid->index = index;
2052 refcount_set(&pgid->refcount, 1);
2053 list_add_tail(&pgid->list, &ocelot->pgids);
2054
2055 return pgid;
2056}
2057
2058static void ocelot_pgid_free(struct ocelot *ocelot, struct ocelot_pgid *pgid)
2059{
2060 if (!refcount_dec_and_test(&pgid->refcount))
2061 return;
2062
2063 list_del(&pgid->list);
2064 kfree(pgid);
2065}
2066
2067static struct ocelot_pgid *ocelot_mdb_get_pgid(struct ocelot *ocelot,
2068 const struct ocelot_multicast *mc)
2069{
2070 struct ocelot_pgid *pgid;
2071 int index;
2072
2073
2074
2075
2076
2077
2078 if (mc->entry_type == ENTRYTYPE_MACv4 ||
2079 mc->entry_type == ENTRYTYPE_MACv6)
2080 return ocelot_pgid_alloc(ocelot, 0, mc->ports);
2081
2082 list_for_each_entry(pgid, &ocelot->pgids, list) {
2083
2084
2085
2086 if (pgid->index && pgid->ports == mc->ports) {
2087 refcount_inc(&pgid->refcount);
2088 return pgid;
2089 }
2090 }
2091
2092
2093 for_each_nonreserved_multicast_dest_pgid(ocelot, index) {
2094 bool used = false;
2095
2096 list_for_each_entry(pgid, &ocelot->pgids, list) {
2097 if (pgid->index == index) {
2098 used = true;
2099 break;
2100 }
2101 }
2102
2103 if (!used)
2104 return ocelot_pgid_alloc(ocelot, index, mc->ports);
2105 }
2106
2107 return ERR_PTR(-ENOSPC);
2108}
2109
2110static void ocelot_encode_ports_to_mdb(unsigned char *addr,
2111 struct ocelot_multicast *mc)
2112{
2113 ether_addr_copy(addr, mc->addr);
2114
2115 if (mc->entry_type == ENTRYTYPE_MACv4) {
2116 addr[0] = 0;
2117 addr[1] = mc->ports >> 8;
2118 addr[2] = mc->ports & 0xff;
2119 } else if (mc->entry_type == ENTRYTYPE_MACv6) {
2120 addr[0] = mc->ports >> 8;
2121 addr[1] = mc->ports & 0xff;
2122 }
2123}
2124
2125int ocelot_port_mdb_add(struct ocelot *ocelot, int port,
2126 const struct switchdev_obj_port_mdb *mdb)
2127{
2128 unsigned char addr[ETH_ALEN];
2129 struct ocelot_multicast *mc;
2130 struct ocelot_pgid *pgid;
2131 u16 vid = mdb->vid;
2132
2133 if (port == ocelot->npi)
2134 port = ocelot->num_phys_ports;
2135
2136 mc = ocelot_multicast_get(ocelot, mdb->addr, vid);
2137 if (!mc) {
2138
2139 mc = devm_kzalloc(ocelot->dev, sizeof(*mc), GFP_KERNEL);
2140 if (!mc)
2141 return -ENOMEM;
2142
2143 mc->entry_type = ocelot_classify_mdb(mdb->addr);
2144 ether_addr_copy(mc->addr, mdb->addr);
2145 mc->vid = vid;
2146
2147 list_add_tail(&mc->list, &ocelot->multicast);
2148 } else {
2149
2150
2151
2152 ocelot_pgid_free(ocelot, mc->pgid);
2153 ocelot_encode_ports_to_mdb(addr, mc);
2154 ocelot_mact_forget(ocelot, addr, vid);
2155 }
2156
2157 mc->ports |= BIT(port);
2158
2159 pgid = ocelot_mdb_get_pgid(ocelot, mc);
2160 if (IS_ERR(pgid)) {
2161 dev_err(ocelot->dev,
2162 "Cannot allocate PGID for mdb %pM vid %d\n",
2163 mc->addr, mc->vid);
2164 devm_kfree(ocelot->dev, mc);
2165 return PTR_ERR(pgid);
2166 }
2167 mc->pgid = pgid;
2168
2169 ocelot_encode_ports_to_mdb(addr, mc);
2170
2171 if (mc->entry_type != ENTRYTYPE_MACv4 &&
2172 mc->entry_type != ENTRYTYPE_MACv6)
2173 ocelot_write_rix(ocelot, pgid->ports, ANA_PGID_PGID,
2174 pgid->index);
2175
2176 return ocelot_mact_learn(ocelot, pgid->index, addr, vid,
2177 mc->entry_type);
2178}
2179EXPORT_SYMBOL(ocelot_port_mdb_add);
2180
2181int ocelot_port_mdb_del(struct ocelot *ocelot, int port,
2182 const struct switchdev_obj_port_mdb *mdb)
2183{
2184 unsigned char addr[ETH_ALEN];
2185 struct ocelot_multicast *mc;
2186 struct ocelot_pgid *pgid;
2187 u16 vid = mdb->vid;
2188
2189 if (port == ocelot->npi)
2190 port = ocelot->num_phys_ports;
2191
2192 mc = ocelot_multicast_get(ocelot, mdb->addr, vid);
2193 if (!mc)
2194 return -ENOENT;
2195
2196 ocelot_encode_ports_to_mdb(addr, mc);
2197 ocelot_mact_forget(ocelot, addr, vid);
2198
2199 ocelot_pgid_free(ocelot, mc->pgid);
2200 mc->ports &= ~BIT(port);
2201 if (!mc->ports) {
2202 list_del(&mc->list);
2203 devm_kfree(ocelot->dev, mc);
2204 return 0;
2205 }
2206
2207
2208 pgid = ocelot_mdb_get_pgid(ocelot, mc);
2209 if (IS_ERR(pgid))
2210 return PTR_ERR(pgid);
2211 mc->pgid = pgid;
2212
2213 ocelot_encode_ports_to_mdb(addr, mc);
2214
2215 if (mc->entry_type != ENTRYTYPE_MACv4 &&
2216 mc->entry_type != ENTRYTYPE_MACv6)
2217 ocelot_write_rix(ocelot, pgid->ports, ANA_PGID_PGID,
2218 pgid->index);
2219
2220 return ocelot_mact_learn(ocelot, pgid->index, addr, vid,
2221 mc->entry_type);
2222}
2223EXPORT_SYMBOL(ocelot_port_mdb_del);
2224
2225void ocelot_port_bridge_join(struct ocelot *ocelot, int port,
2226 struct net_device *bridge)
2227{
2228 struct ocelot_port *ocelot_port = ocelot->ports[port];
2229
2230 mutex_lock(&ocelot->fwd_domain_lock);
2231
2232 ocelot_port->bridge = bridge;
2233
2234 ocelot_apply_bridge_fwd_mask(ocelot, true);
2235
2236 mutex_unlock(&ocelot->fwd_domain_lock);
2237}
2238EXPORT_SYMBOL(ocelot_port_bridge_join);
2239
2240void ocelot_port_bridge_leave(struct ocelot *ocelot, int port,
2241 struct net_device *bridge)
2242{
2243 struct ocelot_port *ocelot_port = ocelot->ports[port];
2244
2245 mutex_lock(&ocelot->fwd_domain_lock);
2246
2247 ocelot_port->bridge = NULL;
2248
2249 ocelot_port_set_pvid(ocelot, port, NULL);
2250 ocelot_port_manage_port_tag(ocelot, port);
2251 ocelot_apply_bridge_fwd_mask(ocelot, false);
2252
2253 mutex_unlock(&ocelot->fwd_domain_lock);
2254}
2255EXPORT_SYMBOL(ocelot_port_bridge_leave);
2256
2257static void ocelot_set_aggr_pgids(struct ocelot *ocelot)
2258{
2259 unsigned long visited = GENMASK(ocelot->num_phys_ports - 1, 0);
2260 int i, port, lag;
2261
2262
2263 for_each_unicast_dest_pgid(ocelot, port)
2264 ocelot_write_rix(ocelot, BIT(port), ANA_PGID_PGID, port);
2265
2266 for_each_aggr_pgid(ocelot, i)
2267 ocelot_write_rix(ocelot, GENMASK(ocelot->num_phys_ports - 1, 0),
2268 ANA_PGID_PGID, i);
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278 for (port = 0; port < ocelot->num_phys_ports; port++) {
2279 struct ocelot_port *ocelot_port = ocelot->ports[port];
2280
2281 if (!ocelot_port || !ocelot_port->bond)
2282 continue;
2283
2284 visited &= ~BIT(port);
2285 }
2286
2287
2288 for (lag = 0; lag < ocelot->num_phys_ports; lag++) {
2289 struct net_device *bond = ocelot->ports[lag]->bond;
2290 int num_active_ports = 0;
2291 unsigned long bond_mask;
2292 u8 aggr_idx[16];
2293
2294 if (!bond || (visited & BIT(lag)))
2295 continue;
2296
2297 bond_mask = ocelot_get_bond_mask(ocelot, bond);
2298
2299 for_each_set_bit(port, &bond_mask, ocelot->num_phys_ports) {
2300 struct ocelot_port *ocelot_port = ocelot->ports[port];
2301
2302
2303 ocelot_write_rix(ocelot, bond_mask,
2304 ANA_PGID_PGID, port);
2305
2306 if (ocelot_port->lag_tx_active)
2307 aggr_idx[num_active_ports++] = port;
2308 }
2309
2310 for_each_aggr_pgid(ocelot, i) {
2311 u32 ac;
2312
2313 ac = ocelot_read_rix(ocelot, ANA_PGID_PGID, i);
2314 ac &= ~bond_mask;
2315
2316
2317
2318 if (num_active_ports)
2319 ac |= BIT(aggr_idx[i % num_active_ports]);
2320 ocelot_write_rix(ocelot, ac, ANA_PGID_PGID, i);
2321 }
2322
2323
2324
2325
2326 for (port = lag; port < ocelot->num_phys_ports; port++) {
2327 struct ocelot_port *ocelot_port = ocelot->ports[port];
2328
2329 if (!ocelot_port)
2330 continue;
2331
2332 if (ocelot_port->bond == bond)
2333 visited |= BIT(port);
2334 }
2335 }
2336}
2337
2338
2339
2340
2341
2342
2343static void ocelot_setup_logical_port_ids(struct ocelot *ocelot)
2344{
2345 int port;
2346
2347 for (port = 0; port < ocelot->num_phys_ports; port++) {
2348 struct ocelot_port *ocelot_port = ocelot->ports[port];
2349 struct net_device *bond;
2350
2351 if (!ocelot_port)
2352 continue;
2353
2354 bond = ocelot_port->bond;
2355 if (bond) {
2356 int lag = __ffs(ocelot_get_bond_mask(ocelot, bond));
2357
2358 ocelot_rmw_gix(ocelot,
2359 ANA_PORT_PORT_CFG_PORTID_VAL(lag),
2360 ANA_PORT_PORT_CFG_PORTID_VAL_M,
2361 ANA_PORT_PORT_CFG, port);
2362 } else {
2363 ocelot_rmw_gix(ocelot,
2364 ANA_PORT_PORT_CFG_PORTID_VAL(port),
2365 ANA_PORT_PORT_CFG_PORTID_VAL_M,
2366 ANA_PORT_PORT_CFG, port);
2367 }
2368 }
2369}
2370
2371int ocelot_port_lag_join(struct ocelot *ocelot, int port,
2372 struct net_device *bond,
2373 struct netdev_lag_upper_info *info)
2374{
2375 if (info->tx_type != NETDEV_LAG_TX_TYPE_HASH)
2376 return -EOPNOTSUPP;
2377
2378 mutex_lock(&ocelot->fwd_domain_lock);
2379
2380 ocelot->ports[port]->bond = bond;
2381
2382 ocelot_setup_logical_port_ids(ocelot);
2383 ocelot_apply_bridge_fwd_mask(ocelot, true);
2384 ocelot_set_aggr_pgids(ocelot);
2385
2386 mutex_unlock(&ocelot->fwd_domain_lock);
2387
2388 return 0;
2389}
2390EXPORT_SYMBOL(ocelot_port_lag_join);
2391
2392void ocelot_port_lag_leave(struct ocelot *ocelot, int port,
2393 struct net_device *bond)
2394{
2395 mutex_lock(&ocelot->fwd_domain_lock);
2396
2397 ocelot->ports[port]->bond = NULL;
2398
2399 ocelot_setup_logical_port_ids(ocelot);
2400 ocelot_apply_bridge_fwd_mask(ocelot, false);
2401 ocelot_set_aggr_pgids(ocelot);
2402
2403 mutex_unlock(&ocelot->fwd_domain_lock);
2404}
2405EXPORT_SYMBOL(ocelot_port_lag_leave);
2406
2407void ocelot_port_lag_change(struct ocelot *ocelot, int port, bool lag_tx_active)
2408{
2409 struct ocelot_port *ocelot_port = ocelot->ports[port];
2410
2411 ocelot_port->lag_tx_active = lag_tx_active;
2412
2413
2414 ocelot_set_aggr_pgids(ocelot);
2415}
2416EXPORT_SYMBOL(ocelot_port_lag_change);
2417
2418
2419
2420
2421
2422
2423
2424void ocelot_port_set_maxlen(struct ocelot *ocelot, int port, size_t sdu)
2425{
2426 struct ocelot_port *ocelot_port = ocelot->ports[port];
2427 int maxlen = sdu + ETH_HLEN + ETH_FCS_LEN;
2428 int pause_start, pause_stop;
2429 int atop, atop_tot;
2430
2431 if (port == ocelot->npi) {
2432 maxlen += OCELOT_TAG_LEN;
2433
2434 if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_SHORT)
2435 maxlen += OCELOT_SHORT_PREFIX_LEN;
2436 else if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_LONG)
2437 maxlen += OCELOT_LONG_PREFIX_LEN;
2438 }
2439
2440 ocelot_port_writel(ocelot_port, maxlen, DEV_MAC_MAXLEN_CFG);
2441
2442
2443 pause_start = 6 * maxlen / OCELOT_BUFFER_CELL_SZ;
2444 pause_stop = 4 * maxlen / OCELOT_BUFFER_CELL_SZ;
2445 ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_START,
2446 pause_start);
2447 ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_STOP,
2448 pause_stop);
2449
2450
2451 atop_tot = (ocelot->packet_buffer_size - 9 * maxlen) /
2452 OCELOT_BUFFER_CELL_SZ;
2453 atop = (9 * maxlen) / OCELOT_BUFFER_CELL_SZ;
2454 ocelot_write_rix(ocelot, ocelot->ops->wm_enc(atop), SYS_ATOP, port);
2455 ocelot_write(ocelot, ocelot->ops->wm_enc(atop_tot), SYS_ATOP_TOT_CFG);
2456}
2457EXPORT_SYMBOL(ocelot_port_set_maxlen);
2458
2459int ocelot_get_max_mtu(struct ocelot *ocelot, int port)
2460{
2461 int max_mtu = 65535 - ETH_HLEN - ETH_FCS_LEN;
2462
2463 if (port == ocelot->npi) {
2464 max_mtu -= OCELOT_TAG_LEN;
2465
2466 if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_SHORT)
2467 max_mtu -= OCELOT_SHORT_PREFIX_LEN;
2468 else if (ocelot->npi_inj_prefix == OCELOT_TAG_PREFIX_LONG)
2469 max_mtu -= OCELOT_LONG_PREFIX_LEN;
2470 }
2471
2472 return max_mtu;
2473}
2474EXPORT_SYMBOL(ocelot_get_max_mtu);
2475
2476static void ocelot_port_set_learning(struct ocelot *ocelot, int port,
2477 bool enabled)
2478{
2479 struct ocelot_port *ocelot_port = ocelot->ports[port];
2480 u32 val = 0;
2481
2482 if (enabled)
2483 val = ANA_PORT_PORT_CFG_LEARN_ENA;
2484
2485 ocelot_rmw_gix(ocelot, val, ANA_PORT_PORT_CFG_LEARN_ENA,
2486 ANA_PORT_PORT_CFG, port);
2487
2488 ocelot_port->learn_ena = enabled;
2489}
2490
2491static void ocelot_port_set_ucast_flood(struct ocelot *ocelot, int port,
2492 bool enabled)
2493{
2494 u32 val = 0;
2495
2496 if (enabled)
2497 val = BIT(port);
2498
2499 ocelot_rmw_rix(ocelot, val, BIT(port), ANA_PGID_PGID, PGID_UC);
2500}
2501
2502static void ocelot_port_set_mcast_flood(struct ocelot *ocelot, int port,
2503 bool enabled)
2504{
2505 u32 val = 0;
2506
2507 if (enabled)
2508 val = BIT(port);
2509
2510 ocelot_rmw_rix(ocelot, val, BIT(port), ANA_PGID_PGID, PGID_MC);
2511}
2512
2513static void ocelot_port_set_bcast_flood(struct ocelot *ocelot, int port,
2514 bool enabled)
2515{
2516 u32 val = 0;
2517
2518 if (enabled)
2519 val = BIT(port);
2520
2521 ocelot_rmw_rix(ocelot, val, BIT(port), ANA_PGID_PGID, PGID_BC);
2522}
2523
2524int ocelot_port_pre_bridge_flags(struct ocelot *ocelot, int port,
2525 struct switchdev_brport_flags flags)
2526{
2527 if (flags.mask & ~(BR_LEARNING | BR_FLOOD | BR_MCAST_FLOOD |
2528 BR_BCAST_FLOOD))
2529 return -EINVAL;
2530
2531 return 0;
2532}
2533EXPORT_SYMBOL(ocelot_port_pre_bridge_flags);
2534
2535void ocelot_port_bridge_flags(struct ocelot *ocelot, int port,
2536 struct switchdev_brport_flags flags)
2537{
2538 if (flags.mask & BR_LEARNING)
2539 ocelot_port_set_learning(ocelot, port,
2540 !!(flags.val & BR_LEARNING));
2541
2542 if (flags.mask & BR_FLOOD)
2543 ocelot_port_set_ucast_flood(ocelot, port,
2544 !!(flags.val & BR_FLOOD));
2545
2546 if (flags.mask & BR_MCAST_FLOOD)
2547 ocelot_port_set_mcast_flood(ocelot, port,
2548 !!(flags.val & BR_MCAST_FLOOD));
2549
2550 if (flags.mask & BR_BCAST_FLOOD)
2551 ocelot_port_set_bcast_flood(ocelot, port,
2552 !!(flags.val & BR_BCAST_FLOOD));
2553}
2554EXPORT_SYMBOL(ocelot_port_bridge_flags);
2555
2556void ocelot_init_port(struct ocelot *ocelot, int port)
2557{
2558 struct ocelot_port *ocelot_port = ocelot->ports[port];
2559
2560 skb_queue_head_init(&ocelot_port->tx_skbs);
2561
2562
2563
2564
2565
2566
2567
2568 ocelot_port_writel(ocelot_port, DEV_MAC_IFG_CFG_TX_IFG(5),
2569 DEV_MAC_IFG_CFG);
2570
2571
2572 ocelot_port_writel(ocelot_port, DEV_MAC_HDX_CFG_LATE_COL_POS(67) |
2573 DEV_MAC_HDX_CFG_SEED_LOAD,
2574 DEV_MAC_HDX_CFG);
2575 mdelay(1);
2576 ocelot_port_writel(ocelot_port, DEV_MAC_HDX_CFG_LATE_COL_POS(67),
2577 DEV_MAC_HDX_CFG);
2578
2579
2580 ocelot_port_set_maxlen(ocelot, port, ETH_DATA_LEN);
2581 ocelot_port_writel(ocelot_port, DEV_MAC_TAGS_CFG_TAG_ID(ETH_P_8021AD) |
2582 DEV_MAC_TAGS_CFG_VLAN_AWR_ENA |
2583 DEV_MAC_TAGS_CFG_VLAN_DBL_AWR_ENA |
2584 DEV_MAC_TAGS_CFG_VLAN_LEN_AWR_ENA,
2585 DEV_MAC_TAGS_CFG);
2586
2587
2588 ocelot_port_writel(ocelot_port, 0, DEV_MAC_FC_MAC_HIGH_CFG);
2589 ocelot_port_writel(ocelot_port, 0, DEV_MAC_FC_MAC_LOW_CFG);
2590
2591
2592 ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_ENA, 1);
2593
2594
2595 ocelot_rmw_gix(ocelot, ANA_PORT_DROP_CFG_DROP_MC_SMAC_ENA,
2596 ANA_PORT_DROP_CFG_DROP_MC_SMAC_ENA,
2597 ANA_PORT_DROP_CFG, port);
2598
2599
2600 ocelot_rmw_gix(ocelot, REW_PORT_VLAN_CFG_PORT_TPID(ETH_P_8021Q),
2601 REW_PORT_VLAN_CFG_PORT_TPID_M,
2602 REW_PORT_VLAN_CFG, port);
2603
2604
2605 ocelot_port_set_learning(ocelot, port, false);
2606
2607
2608
2609
2610
2611 ocelot_write_gix(ocelot, ANA_PORT_PORT_CFG_LEARNAUTO |
2612 ANA_PORT_PORT_CFG_RECV_ENA |
2613 ANA_PORT_PORT_CFG_PORTID_VAL(port),
2614 ANA_PORT_PORT_CFG, port);
2615
2616
2617 ocelot_vcap_enable(ocelot, port);
2618}
2619EXPORT_SYMBOL(ocelot_init_port);
2620
2621
2622
2623
2624
2625static void ocelot_cpu_port_init(struct ocelot *ocelot)
2626{
2627 int cpu = ocelot->num_phys_ports;
2628
2629
2630 ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, cpu);
2631
2632
2633
2634
2635 ocelot_write_rix(ocelot, BIT(cpu), ANA_PGID_PGID, PGID_CPU);
2636 ocelot_write_gix(ocelot, ANA_PORT_PORT_CFG_RECV_ENA |
2637 ANA_PORT_PORT_CFG_PORTID_VAL(cpu),
2638 ANA_PORT_PORT_CFG, cpu);
2639
2640
2641 ocelot_fields_write(ocelot, cpu, QSYS_SWITCH_PORT_MODE_PORT_ENA, 1);
2642
2643 ocelot_fields_write(ocelot, cpu, SYS_PORT_MODE_INCL_XTR_HDR,
2644 OCELOT_TAG_PREFIX_NONE);
2645 ocelot_fields_write(ocelot, cpu, SYS_PORT_MODE_INCL_INJ_HDR,
2646 OCELOT_TAG_PREFIX_NONE);
2647
2648
2649 ocelot_write_gix(ocelot,
2650 ANA_PORT_VLAN_CFG_VLAN_VID(OCELOT_VLAN_UNAWARE_PVID) |
2651 ANA_PORT_VLAN_CFG_VLAN_AWARE_ENA |
2652 ANA_PORT_VLAN_CFG_VLAN_POP_CNT(1),
2653 ANA_PORT_VLAN_CFG, cpu);
2654}
2655
2656static void ocelot_detect_features(struct ocelot *ocelot)
2657{
2658 int mmgt, eq_ctrl;
2659
2660
2661
2662
2663
2664 mmgt = ocelot_read(ocelot, SYS_MMGT);
2665 ocelot->packet_buffer_size = 240 * SYS_MMGT_FREECNT(mmgt);
2666
2667 eq_ctrl = ocelot_read(ocelot, QSYS_EQ_CTRL);
2668 ocelot->num_frame_refs = QSYS_MMGT_EQ_CTRL_FP_FREE_CNT(eq_ctrl);
2669}
2670
2671int ocelot_init(struct ocelot *ocelot)
2672{
2673 char queue_name[32];
2674 int i, ret;
2675 u32 port;
2676
2677 if (ocelot->ops->reset) {
2678 ret = ocelot->ops->reset(ocelot);
2679 if (ret) {
2680 dev_err(ocelot->dev, "Switch reset failed\n");
2681 return ret;
2682 }
2683 }
2684
2685 ocelot->stats = devm_kcalloc(ocelot->dev,
2686 ocelot->num_phys_ports * ocelot->num_stats,
2687 sizeof(u64), GFP_KERNEL);
2688 if (!ocelot->stats)
2689 return -ENOMEM;
2690
2691 mutex_init(&ocelot->stats_lock);
2692 mutex_init(&ocelot->ptp_lock);
2693 mutex_init(&ocelot->mact_lock);
2694 mutex_init(&ocelot->fwd_domain_lock);
2695 spin_lock_init(&ocelot->ptp_clock_lock);
2696 spin_lock_init(&ocelot->ts_id_lock);
2697 snprintf(queue_name, sizeof(queue_name), "%s-stats",
2698 dev_name(ocelot->dev));
2699 ocelot->stats_queue = create_singlethread_workqueue(queue_name);
2700 if (!ocelot->stats_queue)
2701 return -ENOMEM;
2702
2703 ocelot->owq = alloc_ordered_workqueue("ocelot-owq", 0);
2704 if (!ocelot->owq) {
2705 destroy_workqueue(ocelot->stats_queue);
2706 return -ENOMEM;
2707 }
2708
2709 INIT_LIST_HEAD(&ocelot->multicast);
2710 INIT_LIST_HEAD(&ocelot->pgids);
2711 INIT_LIST_HEAD(&ocelot->vlans);
2712 ocelot_detect_features(ocelot);
2713 ocelot_mact_init(ocelot);
2714 ocelot_vlan_init(ocelot);
2715 ocelot_vcap_init(ocelot);
2716 ocelot_cpu_port_init(ocelot);
2717
2718 if (ocelot->ops->psfp_init)
2719 ocelot->ops->psfp_init(ocelot);
2720
2721 for (port = 0; port < ocelot->num_phys_ports; port++) {
2722
2723 ocelot_write(ocelot, SYS_STAT_CFG_STAT_VIEW(port) |
2724 SYS_STAT_CFG_STAT_CLEAR_SHOT(0x7f),
2725 SYS_STAT_CFG);
2726 }
2727
2728
2729 ocelot_write(ocelot, ETH_P_8021AD, SYS_VLAN_ETYPE_CFG);
2730
2731
2732 ocelot_write(ocelot, ANA_AGGR_CFG_AC_SMAC_ENA |
2733 ANA_AGGR_CFG_AC_DMAC_ENA |
2734 ANA_AGGR_CFG_AC_IP4_SIPDIP_ENA |
2735 ANA_AGGR_CFG_AC_IP4_TCPUDP_ENA |
2736 ANA_AGGR_CFG_AC_IP6_FLOW_LBL_ENA |
2737 ANA_AGGR_CFG_AC_IP6_TCPUDP_ENA,
2738 ANA_AGGR_CFG);
2739
2740
2741
2742
2743 ocelot_write(ocelot,
2744 ANA_AUTOAGE_AGE_PERIOD(BR_DEFAULT_AGEING_TIME / 2 / HZ),
2745 ANA_AUTOAGE);
2746
2747
2748 regmap_field_write(ocelot->regfields[ANA_ADVLEARN_VLAN_CHK], 1);
2749
2750
2751 ocelot_write(ocelot, SYS_FRM_AGING_AGE_TX_ENA |
2752 SYS_FRM_AGING_MAX_AGE(307692), SYS_FRM_AGING);
2753
2754
2755 for (i = 0; i < ocelot->num_flooding_pgids; i++)
2756 ocelot_write_rix(ocelot, ANA_FLOODING_FLD_MULTICAST(PGID_MC) |
2757 ANA_FLOODING_FLD_BROADCAST(PGID_BC) |
2758 ANA_FLOODING_FLD_UNICAST(PGID_UC),
2759 ANA_FLOODING, i);
2760 ocelot_write(ocelot, ANA_FLOODING_IPMC_FLD_MC6_DATA(PGID_MCIPV6) |
2761 ANA_FLOODING_IPMC_FLD_MC6_CTRL(PGID_MC) |
2762 ANA_FLOODING_IPMC_FLD_MC4_DATA(PGID_MCIPV4) |
2763 ANA_FLOODING_IPMC_FLD_MC4_CTRL(PGID_MC),
2764 ANA_FLOODING_IPMC);
2765
2766 for (port = 0; port < ocelot->num_phys_ports; port++) {
2767
2768 ocelot_write_rix(ocelot, BIT(port), ANA_PGID_PGID, port);
2769
2770 ocelot_write_gix(ocelot,
2771 ANA_PORT_CPU_FWD_BPDU_CFG_BPDU_REDIR_ENA(0xffff),
2772 ANA_PORT_CPU_FWD_BPDU_CFG,
2773 port);
2774
2775 ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_SRC + port);
2776 }
2777
2778 for_each_nonreserved_multicast_dest_pgid(ocelot, i) {
2779 u32 val = ANA_PGID_PGID_PGID(GENMASK(ocelot->num_phys_ports - 1, 0));
2780
2781 ocelot_write_rix(ocelot, val, ANA_PGID_PGID, i);
2782 }
2783
2784 ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_BLACKHOLE);
2785
2786
2787 ocelot_rmw_rix(ocelot, ANA_PGID_PGID_PGID(BIT(ocelot->num_phys_ports)),
2788 ANA_PGID_PGID_PGID(BIT(ocelot->num_phys_ports)),
2789 ANA_PGID_PGID, PGID_MC);
2790 ocelot_rmw_rix(ocelot, ANA_PGID_PGID_PGID(BIT(ocelot->num_phys_ports)),
2791 ANA_PGID_PGID_PGID(BIT(ocelot->num_phys_ports)),
2792 ANA_PGID_PGID, PGID_BC);
2793 ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_MCIPV4);
2794 ocelot_write_rix(ocelot, 0, ANA_PGID_PGID, PGID_MCIPV6);
2795
2796
2797
2798
2799 ocelot_write_rix(ocelot, QS_INJ_GRP_CFG_BYTE_SWAP |
2800 QS_INJ_GRP_CFG_MODE(1), QS_INJ_GRP_CFG, 0);
2801 ocelot_write_rix(ocelot, QS_XTR_GRP_CFG_BYTE_SWAP |
2802 QS_XTR_GRP_CFG_MODE(1), QS_XTR_GRP_CFG, 0);
2803 ocelot_write(ocelot, ANA_CPUQ_CFG_CPUQ_MIRROR(2) |
2804 ANA_CPUQ_CFG_CPUQ_LRN(2) |
2805 ANA_CPUQ_CFG_CPUQ_MAC_COPY(2) |
2806 ANA_CPUQ_CFG_CPUQ_SRC_COPY(2) |
2807 ANA_CPUQ_CFG_CPUQ_LOCKED_PORTMOVE(2) |
2808 ANA_CPUQ_CFG_CPUQ_ALLBRIDGE(6) |
2809 ANA_CPUQ_CFG_CPUQ_IPMC_CTRL(6) |
2810 ANA_CPUQ_CFG_CPUQ_IGMP(6) |
2811 ANA_CPUQ_CFG_CPUQ_MLD(6), ANA_CPUQ_CFG);
2812 for (i = 0; i < 16; i++)
2813 ocelot_write_rix(ocelot, ANA_CPUQ_8021_CFG_CPUQ_GARP_VAL(6) |
2814 ANA_CPUQ_8021_CFG_CPUQ_BPDU_VAL(6),
2815 ANA_CPUQ_8021_CFG, i);
2816
2817 INIT_DELAYED_WORK(&ocelot->stats_work, ocelot_check_stats_work);
2818 queue_delayed_work(ocelot->stats_queue, &ocelot->stats_work,
2819 OCELOT_STATS_CHECK_DELAY);
2820
2821 return 0;
2822}
2823EXPORT_SYMBOL(ocelot_init);
2824
2825void ocelot_deinit(struct ocelot *ocelot)
2826{
2827 cancel_delayed_work(&ocelot->stats_work);
2828 destroy_workqueue(ocelot->stats_queue);
2829 destroy_workqueue(ocelot->owq);
2830 mutex_destroy(&ocelot->stats_lock);
2831}
2832EXPORT_SYMBOL(ocelot_deinit);
2833
2834void ocelot_deinit_port(struct ocelot *ocelot, int port)
2835{
2836 struct ocelot_port *ocelot_port = ocelot->ports[port];
2837
2838 skb_queue_purge(&ocelot_port->tx_skbs);
2839}
2840EXPORT_SYMBOL(ocelot_deinit_port);
2841
2842MODULE_LICENSE("Dual MIT/GPL");
2843