1 // SPDX-License-Identifier: (GPL-2.0 or MIT)
4 * Hirschmann Hellcreek TSN switch.
6 * Copyright (C) 2019-2021 Linutronix GmbH
7 * Author Kurt Kanzenbach <kurt@linutronix.de>
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/device.h>
14 #include <linux/of_device.h>
15 #include <linux/of_mdio.h>
16 #include <linux/platform_device.h>
17 #include <linux/bitops.h>
18 #include <linux/if_bridge.h>
19 #include <linux/if_vlan.h>
20 #include <linux/etherdevice.h>
21 #include <linux/random.h>
22 #include <linux/iopoll.h>
23 #include <linux/mutex.h>
24 #include <linux/delay.h>
27 #include "hellcreek.h"
28 #include "hellcreek_ptp.h"
29 #include "hellcreek_hwtstamp.h"
31 static const struct hellcreek_counter hellcreek_counter[] = {
32 { 0x00, "RxFiltered", },
33 { 0x01, "RxOctets1k", },
36 { 0x04, "RxOverloadDrop", },
42 { 0x0a, "RxRS65_127", },
43 { 0x0b, "RxRS128_255", },
44 { 0x0c, "RxRS256_511", },
45 { 0x0d, "RxRS512_1023", },
46 { 0x0e, "RxRS1024_1518", },
47 { 0x0f, "RxRS>1518", },
48 { 0x10, "TxTailDropQueue0", },
49 { 0x11, "TxTailDropQueue1", },
50 { 0x12, "TxTailDropQueue2", },
51 { 0x13, "TxTailDropQueue3", },
52 { 0x14, "TxTailDropQueue4", },
53 { 0x15, "TxTailDropQueue5", },
54 { 0x16, "TxTailDropQueue6", },
55 { 0x17, "TxTailDropQueue7", },
56 { 0x18, "RxTrafficClass0", },
57 { 0x19, "RxTrafficClass1", },
58 { 0x1a, "RxTrafficClass2", },
59 { 0x1b, "RxTrafficClass3", },
60 { 0x1c, "RxTrafficClass4", },
61 { 0x1d, "RxTrafficClass5", },
62 { 0x1e, "RxTrafficClass6", },
63 { 0x1f, "RxTrafficClass7", },
64 { 0x21, "TxOctets1k", },
72 { 0x2a, "TxTS65_127", },
73 { 0x2b, "TxTS128_255", },
74 { 0x2c, "TxTS256_511", },
75 { 0x2d, "TxTS512_1023", },
76 { 0x2e, "TxTS1024_1518", },
77 { 0x2f, "TxTS>1518", },
78 { 0x30, "TxTrafficClassOverrun0", },
79 { 0x31, "TxTrafficClassOverrun1", },
80 { 0x32, "TxTrafficClassOverrun2", },
81 { 0x33, "TxTrafficClassOverrun3", },
82 { 0x34, "TxTrafficClassOverrun4", },
83 { 0x35, "TxTrafficClassOverrun5", },
84 { 0x36, "TxTrafficClassOverrun6", },
85 { 0x37, "TxTrafficClassOverrun7", },
86 { 0x38, "TxTrafficClass0", },
87 { 0x39, "TxTrafficClass1", },
88 { 0x3a, "TxTrafficClass2", },
89 { 0x3b, "TxTrafficClass3", },
90 { 0x3c, "TxTrafficClass4", },
91 { 0x3d, "TxTrafficClass5", },
92 { 0x3e, "TxTrafficClass6", },
93 { 0x3f, "TxTrafficClass7", },
96 static u16 hellcreek_read(struct hellcreek *hellcreek, unsigned int offset)
98 return readw(hellcreek->base + offset);
101 static u16 hellcreek_read_ctrl(struct hellcreek *hellcreek)
103 return readw(hellcreek->base + HR_CTRL_C);
106 static u16 hellcreek_read_stat(struct hellcreek *hellcreek)
108 return readw(hellcreek->base + HR_SWSTAT);
111 static void hellcreek_write(struct hellcreek *hellcreek, u16 data,
114 writew(data, hellcreek->base + offset);
117 static void hellcreek_select_port(struct hellcreek *hellcreek, int port)
119 u16 val = port << HR_PSEL_PTWSEL_SHIFT;
121 hellcreek_write(hellcreek, val, HR_PSEL);
124 static void hellcreek_select_prio(struct hellcreek *hellcreek, int prio)
126 u16 val = prio << HR_PSEL_PRTCWSEL_SHIFT;
128 hellcreek_write(hellcreek, val, HR_PSEL);
131 static void hellcreek_select_counter(struct hellcreek *hellcreek, int counter)
133 u16 val = counter << HR_CSEL_SHIFT;
135 hellcreek_write(hellcreek, val, HR_CSEL);
137 /* Data sheet states to wait at least 20 internal clock cycles */
141 static void hellcreek_select_vlan(struct hellcreek *hellcreek, int vid,
146 /* Set pvid bit first */
148 val |= HR_VIDCFG_PVID;
149 hellcreek_write(hellcreek, val, HR_VIDCFG);
152 val |= vid << HR_VIDCFG_VID_SHIFT;
153 hellcreek_write(hellcreek, val, HR_VIDCFG);
156 static void hellcreek_select_tgd(struct hellcreek *hellcreek, int port)
158 u16 val = port << TR_TGDSEL_TDGSEL_SHIFT;
160 hellcreek_write(hellcreek, val, TR_TGDSEL);
163 static int hellcreek_wait_until_ready(struct hellcreek *hellcreek)
167 /* Wait up to 1ms, although 3 us should be enough */
168 return readx_poll_timeout(hellcreek_read_ctrl, hellcreek,
169 val, val & HR_CTRL_C_READY,
173 static int hellcreek_wait_until_transitioned(struct hellcreek *hellcreek)
177 return readx_poll_timeout_atomic(hellcreek_read_ctrl, hellcreek,
178 val, !(val & HR_CTRL_C_TRANSITION),
182 static int hellcreek_wait_fdb_ready(struct hellcreek *hellcreek)
186 return readx_poll_timeout_atomic(hellcreek_read_stat, hellcreek,
187 val, !(val & HR_SWSTAT_BUSY),
191 static int hellcreek_detect(struct hellcreek *hellcreek)
193 u16 id, rel_low, rel_high, date_low, date_high, tgd_ver;
197 id = hellcreek_read(hellcreek, HR_MODID_C);
198 rel_low = hellcreek_read(hellcreek, HR_REL_L_C);
199 rel_high = hellcreek_read(hellcreek, HR_REL_H_C);
200 date_low = hellcreek_read(hellcreek, HR_BLD_L_C);
201 date_high = hellcreek_read(hellcreek, HR_BLD_H_C);
202 tgd_ver = hellcreek_read(hellcreek, TR_TGDVER);
204 if (id != hellcreek->pdata->module_id)
207 rel = rel_low | (rel_high << 16);
208 date = date_low | (date_high << 16);
209 tgd_maj = (tgd_ver & TR_TGDVER_REV_MAJ_MASK) >> TR_TGDVER_REV_MAJ_SHIFT;
210 tgd_min = (tgd_ver & TR_TGDVER_REV_MIN_MASK) >> TR_TGDVER_REV_MIN_SHIFT;
212 dev_info(hellcreek->dev, "Module ID=%02x Release=%04x Date=%04x TGD Version=%02x.%02x\n",
213 id, rel, date, tgd_maj, tgd_min);
218 static void hellcreek_feature_detect(struct hellcreek *hellcreek)
222 features = hellcreek_read(hellcreek, HR_FEABITS0);
224 /* Only detect the size of the FDB table. The size and current
225 * utilization can be queried via devlink.
227 hellcreek->fdb_entries = ((features & HR_FEABITS0_FDBBINS_MASK) >>
228 HR_FEABITS0_FDBBINS_SHIFT) * 32;
231 static enum dsa_tag_protocol hellcreek_get_tag_protocol(struct dsa_switch *ds,
233 enum dsa_tag_protocol mp)
235 return DSA_TAG_PROTO_HELLCREEK;
238 static int hellcreek_port_enable(struct dsa_switch *ds, int port,
239 struct phy_device *phy)
241 struct hellcreek *hellcreek = ds->priv;
242 struct hellcreek_port *hellcreek_port;
245 hellcreek_port = &hellcreek->ports[port];
247 dev_dbg(hellcreek->dev, "Enable port %d\n", port);
249 mutex_lock(&hellcreek->reg_lock);
251 hellcreek_select_port(hellcreek, port);
252 val = hellcreek_port->ptcfg;
253 val |= HR_PTCFG_ADMIN_EN;
254 hellcreek_write(hellcreek, val, HR_PTCFG);
255 hellcreek_port->ptcfg = val;
257 mutex_unlock(&hellcreek->reg_lock);
262 static void hellcreek_port_disable(struct dsa_switch *ds, int port)
264 struct hellcreek *hellcreek = ds->priv;
265 struct hellcreek_port *hellcreek_port;
268 hellcreek_port = &hellcreek->ports[port];
270 dev_dbg(hellcreek->dev, "Disable port %d\n", port);
272 mutex_lock(&hellcreek->reg_lock);
274 hellcreek_select_port(hellcreek, port);
275 val = hellcreek_port->ptcfg;
276 val &= ~HR_PTCFG_ADMIN_EN;
277 hellcreek_write(hellcreek, val, HR_PTCFG);
278 hellcreek_port->ptcfg = val;
280 mutex_unlock(&hellcreek->reg_lock);
283 static void hellcreek_get_strings(struct dsa_switch *ds, int port,
284 u32 stringset, uint8_t *data)
288 for (i = 0; i < ARRAY_SIZE(hellcreek_counter); ++i) {
289 const struct hellcreek_counter *counter = &hellcreek_counter[i];
291 strlcpy(data + i * ETH_GSTRING_LEN,
292 counter->name, ETH_GSTRING_LEN);
296 static int hellcreek_get_sset_count(struct dsa_switch *ds, int port, int sset)
298 if (sset != ETH_SS_STATS)
301 return ARRAY_SIZE(hellcreek_counter);
304 static void hellcreek_get_ethtool_stats(struct dsa_switch *ds, int port,
307 struct hellcreek *hellcreek = ds->priv;
308 struct hellcreek_port *hellcreek_port;
311 hellcreek_port = &hellcreek->ports[port];
313 for (i = 0; i < ARRAY_SIZE(hellcreek_counter); ++i) {
314 const struct hellcreek_counter *counter = &hellcreek_counter[i];
315 u8 offset = counter->offset + port * 64;
319 mutex_lock(&hellcreek->reg_lock);
321 hellcreek_select_counter(hellcreek, offset);
323 /* The registers are locked internally by selecting the
324 * counter. So low and high can be read without reading high
327 high = hellcreek_read(hellcreek, HR_CRDH);
328 low = hellcreek_read(hellcreek, HR_CRDL);
329 value = ((u64)high << 16) | low;
331 hellcreek_port->counter_values[i] += value;
332 data[i] = hellcreek_port->counter_values[i];
334 mutex_unlock(&hellcreek->reg_lock);
338 static u16 hellcreek_private_vid(int port)
340 return VLAN_N_VID - port + 1;
343 static int hellcreek_vlan_prepare(struct dsa_switch *ds, int port,
344 const struct switchdev_obj_port_vlan *vlan,
345 struct netlink_ext_ack *extack)
347 struct hellcreek *hellcreek = ds->priv;
350 dev_dbg(hellcreek->dev, "VLAN prepare for port %d\n", port);
352 /* Restriction: Make sure that nobody uses the "private" VLANs. These
353 * VLANs are internally used by the driver to ensure port
354 * separation. Thus, they cannot be used by someone else.
356 for (i = 0; i < hellcreek->pdata->num_ports; ++i) {
357 const u16 restricted_vid = hellcreek_private_vid(i);
359 if (!dsa_is_user_port(ds, i))
362 if (vlan->vid == restricted_vid) {
363 NL_SET_ERR_MSG_MOD(extack, "VID restricted by driver");
371 static void hellcreek_select_vlan_params(struct hellcreek *hellcreek, int port,
372 int *shift, int *mask)
376 *shift = HR_VIDMBRCFG_P0MBR_SHIFT;
377 *mask = HR_VIDMBRCFG_P0MBR_MASK;
380 *shift = HR_VIDMBRCFG_P1MBR_SHIFT;
381 *mask = HR_VIDMBRCFG_P1MBR_MASK;
384 *shift = HR_VIDMBRCFG_P2MBR_SHIFT;
385 *mask = HR_VIDMBRCFG_P2MBR_MASK;
388 *shift = HR_VIDMBRCFG_P3MBR_SHIFT;
389 *mask = HR_VIDMBRCFG_P3MBR_MASK;
393 dev_err(hellcreek->dev, "Unknown port %d selected!\n", port);
397 static void hellcreek_apply_vlan(struct hellcreek *hellcreek, int port, u16 vid,
398 bool pvid, bool untagged)
403 dev_dbg(hellcreek->dev, "Apply VLAN: port=%d vid=%u pvid=%d untagged=%d",
404 port, vid, pvid, untagged);
406 mutex_lock(&hellcreek->reg_lock);
408 hellcreek_select_port(hellcreek, port);
409 hellcreek_select_vlan(hellcreek, vid, pvid);
411 /* Setup port vlan membership */
412 hellcreek_select_vlan_params(hellcreek, port, &shift, &mask);
413 val = hellcreek->vidmbrcfg[vid];
416 val |= HELLCREEK_VLAN_UNTAGGED_MEMBER << shift;
418 val |= HELLCREEK_VLAN_TAGGED_MEMBER << shift;
420 hellcreek_write(hellcreek, val, HR_VIDMBRCFG);
421 hellcreek->vidmbrcfg[vid] = val;
423 mutex_unlock(&hellcreek->reg_lock);
426 static void hellcreek_unapply_vlan(struct hellcreek *hellcreek, int port,
432 dev_dbg(hellcreek->dev, "Unapply VLAN: port=%d vid=%u\n", port, vid);
434 mutex_lock(&hellcreek->reg_lock);
436 hellcreek_select_vlan(hellcreek, vid, false);
438 /* Setup port vlan membership */
439 hellcreek_select_vlan_params(hellcreek, port, &shift, &mask);
440 val = hellcreek->vidmbrcfg[vid];
442 val |= HELLCREEK_VLAN_NO_MEMBER << shift;
444 hellcreek_write(hellcreek, val, HR_VIDMBRCFG);
445 hellcreek->vidmbrcfg[vid] = val;
447 mutex_unlock(&hellcreek->reg_lock);
450 static int hellcreek_vlan_add(struct dsa_switch *ds, int port,
451 const struct switchdev_obj_port_vlan *vlan,
452 struct netlink_ext_ack *extack)
454 bool untagged = vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED;
455 bool pvid = vlan->flags & BRIDGE_VLAN_INFO_PVID;
456 struct hellcreek *hellcreek = ds->priv;
459 err = hellcreek_vlan_prepare(ds, port, vlan, extack);
463 dev_dbg(hellcreek->dev, "Add VLAN %d on port %d, %s, %s\n",
464 vlan->vid, port, untagged ? "untagged" : "tagged",
465 pvid ? "PVID" : "no PVID");
467 hellcreek_apply_vlan(hellcreek, port, vlan->vid, pvid, untagged);
472 static int hellcreek_vlan_del(struct dsa_switch *ds, int port,
473 const struct switchdev_obj_port_vlan *vlan)
475 struct hellcreek *hellcreek = ds->priv;
477 dev_dbg(hellcreek->dev, "Remove VLAN %d on port %d\n", vlan->vid, port);
479 hellcreek_unapply_vlan(hellcreek, port, vlan->vid);
484 static void hellcreek_port_stp_state_set(struct dsa_switch *ds, int port,
487 struct hellcreek *hellcreek = ds->priv;
488 struct hellcreek_port *hellcreek_port;
489 const char *new_state;
492 mutex_lock(&hellcreek->reg_lock);
494 hellcreek_port = &hellcreek->ports[port];
495 val = hellcreek_port->ptcfg;
498 case BR_STATE_DISABLED:
499 new_state = "DISABLED";
500 val |= HR_PTCFG_BLOCKED;
501 val &= ~HR_PTCFG_LEARNING_EN;
503 case BR_STATE_BLOCKING:
504 new_state = "BLOCKING";
505 val |= HR_PTCFG_BLOCKED;
506 val &= ~HR_PTCFG_LEARNING_EN;
508 case BR_STATE_LISTENING:
509 new_state = "LISTENING";
510 val |= HR_PTCFG_BLOCKED;
511 val &= ~HR_PTCFG_LEARNING_EN;
513 case BR_STATE_LEARNING:
514 new_state = "LEARNING";
515 val |= HR_PTCFG_BLOCKED;
516 val |= HR_PTCFG_LEARNING_EN;
518 case BR_STATE_FORWARDING:
519 new_state = "FORWARDING";
520 val &= ~HR_PTCFG_BLOCKED;
521 val |= HR_PTCFG_LEARNING_EN;
524 new_state = "UNKNOWN";
527 hellcreek_select_port(hellcreek, port);
528 hellcreek_write(hellcreek, val, HR_PTCFG);
529 hellcreek_port->ptcfg = val;
531 mutex_unlock(&hellcreek->reg_lock);
533 dev_dbg(hellcreek->dev, "Configured STP state for port %d: %s\n",
537 static void hellcreek_setup_ingressflt(struct hellcreek *hellcreek, int port,
540 struct hellcreek_port *hellcreek_port = &hellcreek->ports[port];
543 mutex_lock(&hellcreek->reg_lock);
545 ptcfg = hellcreek_port->ptcfg;
548 ptcfg |= HR_PTCFG_INGRESSFLT;
550 ptcfg &= ~HR_PTCFG_INGRESSFLT;
552 hellcreek_select_port(hellcreek, port);
553 hellcreek_write(hellcreek, ptcfg, HR_PTCFG);
554 hellcreek_port->ptcfg = ptcfg;
556 mutex_unlock(&hellcreek->reg_lock);
559 static void hellcreek_setup_vlan_awareness(struct hellcreek *hellcreek,
564 mutex_lock(&hellcreek->reg_lock);
566 swcfg = hellcreek->swcfg;
569 swcfg |= HR_SWCFG_VLAN_UNAWARE;
571 swcfg &= ~HR_SWCFG_VLAN_UNAWARE;
573 hellcreek_write(hellcreek, swcfg, HR_SWCFG);
575 mutex_unlock(&hellcreek->reg_lock);
578 /* Default setup for DSA: VLAN <X>: CPU and Port <X> egress untagged. */
579 static void hellcreek_setup_vlan_membership(struct dsa_switch *ds, int port,
582 const u16 vid = hellcreek_private_vid(port);
583 int upstream = dsa_upstream_port(ds, port);
584 struct hellcreek *hellcreek = ds->priv;
586 /* Apply vid to port as egress untagged and port vlan id */
588 hellcreek_apply_vlan(hellcreek, port, vid, true, true);
590 hellcreek_unapply_vlan(hellcreek, port, vid);
592 /* Apply vid to cpu port as well */
594 hellcreek_apply_vlan(hellcreek, upstream, vid, false, true);
596 hellcreek_unapply_vlan(hellcreek, upstream, vid);
599 static void hellcreek_port_set_ucast_flood(struct hellcreek *hellcreek,
600 int port, bool enable)
602 struct hellcreek_port *hellcreek_port;
605 hellcreek_port = &hellcreek->ports[port];
607 dev_dbg(hellcreek->dev, "%s unicast flooding on port %d\n",
608 enable ? "Enable" : "Disable", port);
610 mutex_lock(&hellcreek->reg_lock);
612 hellcreek_select_port(hellcreek, port);
613 val = hellcreek_port->ptcfg;
615 val &= ~HR_PTCFG_UUC_FLT;
617 val |= HR_PTCFG_UUC_FLT;
618 hellcreek_write(hellcreek, val, HR_PTCFG);
619 hellcreek_port->ptcfg = val;
621 mutex_unlock(&hellcreek->reg_lock);
624 static void hellcreek_port_set_mcast_flood(struct hellcreek *hellcreek,
625 int port, bool enable)
627 struct hellcreek_port *hellcreek_port;
630 hellcreek_port = &hellcreek->ports[port];
632 dev_dbg(hellcreek->dev, "%s multicast flooding on port %d\n",
633 enable ? "Enable" : "Disable", port);
635 mutex_lock(&hellcreek->reg_lock);
637 hellcreek_select_port(hellcreek, port);
638 val = hellcreek_port->ptcfg;
640 val &= ~HR_PTCFG_UMC_FLT;
642 val |= HR_PTCFG_UMC_FLT;
643 hellcreek_write(hellcreek, val, HR_PTCFG);
644 hellcreek_port->ptcfg = val;
646 mutex_unlock(&hellcreek->reg_lock);
649 static int hellcreek_pre_bridge_flags(struct dsa_switch *ds, int port,
650 struct switchdev_brport_flags flags,
651 struct netlink_ext_ack *extack)
653 if (flags.mask & ~(BR_FLOOD | BR_MCAST_FLOOD))
659 static int hellcreek_bridge_flags(struct dsa_switch *ds, int port,
660 struct switchdev_brport_flags flags,
661 struct netlink_ext_ack *extack)
663 struct hellcreek *hellcreek = ds->priv;
665 if (flags.mask & BR_FLOOD)
666 hellcreek_port_set_ucast_flood(hellcreek, port,
667 !!(flags.val & BR_FLOOD));
669 if (flags.mask & BR_MCAST_FLOOD)
670 hellcreek_port_set_mcast_flood(hellcreek, port,
671 !!(flags.val & BR_MCAST_FLOOD));
676 static int hellcreek_port_bridge_join(struct dsa_switch *ds, int port,
677 struct net_device *br)
679 struct hellcreek *hellcreek = ds->priv;
681 dev_dbg(hellcreek->dev, "Port %d joins a bridge\n", port);
683 /* When joining a vlan_filtering bridge, keep the switch VLAN aware */
684 if (!ds->vlan_filtering)
685 hellcreek_setup_vlan_awareness(hellcreek, false);
687 /* Drop private vlans */
688 hellcreek_setup_vlan_membership(ds, port, false);
693 static void hellcreek_port_bridge_leave(struct dsa_switch *ds, int port,
694 struct net_device *br)
696 struct hellcreek *hellcreek = ds->priv;
698 dev_dbg(hellcreek->dev, "Port %d leaves a bridge\n", port);
700 /* Enable VLAN awareness */
701 hellcreek_setup_vlan_awareness(hellcreek, true);
703 /* Enable private vlans */
704 hellcreek_setup_vlan_membership(ds, port, true);
707 static int __hellcreek_fdb_add(struct hellcreek *hellcreek,
708 const struct hellcreek_fdb_entry *entry)
712 dev_dbg(hellcreek->dev, "Add static FDB entry: MAC=%pM, MASK=0x%02x, "
713 "OBT=%d, REPRIO_EN=%d, PRIO=%d\n", entry->mac, entry->portmask,
714 entry->is_obt, entry->reprio_en, entry->reprio_tc);
716 /* Add mac address */
717 hellcreek_write(hellcreek, entry->mac[1] | (entry->mac[0] << 8), HR_FDBWDH);
718 hellcreek_write(hellcreek, entry->mac[3] | (entry->mac[2] << 8), HR_FDBWDM);
719 hellcreek_write(hellcreek, entry->mac[5] | (entry->mac[4] << 8), HR_FDBWDL);
722 meta |= entry->portmask << HR_FDBWRM0_PORTMASK_SHIFT;
724 meta |= HR_FDBWRM0_OBT;
725 if (entry->reprio_en) {
726 meta |= HR_FDBWRM0_REPRIO_EN;
727 meta |= entry->reprio_tc << HR_FDBWRM0_REPRIO_TC_SHIFT;
729 hellcreek_write(hellcreek, meta, HR_FDBWRM0);
732 hellcreek_write(hellcreek, 0x00, HR_FDBWRCMD);
734 /* Wait until done */
735 return hellcreek_wait_fdb_ready(hellcreek);
738 static int __hellcreek_fdb_del(struct hellcreek *hellcreek,
739 const struct hellcreek_fdb_entry *entry)
741 dev_dbg(hellcreek->dev, "Delete FDB entry: MAC=%pM!\n", entry->mac);
743 /* Delete by matching idx */
744 hellcreek_write(hellcreek, entry->idx | HR_FDBWRCMD_FDBDEL, HR_FDBWRCMD);
746 /* Wait until done */
747 return hellcreek_wait_fdb_ready(hellcreek);
750 static void hellcreek_populate_fdb_entry(struct hellcreek *hellcreek,
751 struct hellcreek_fdb_entry *entry,
754 unsigned char addr[ETH_ALEN];
758 meta = hellcreek_read(hellcreek, HR_FDBMDRD);
759 mac = hellcreek_read(hellcreek, HR_FDBRDL);
760 addr[5] = mac & 0xff;
761 addr[4] = (mac & 0xff00) >> 8;
762 mac = hellcreek_read(hellcreek, HR_FDBRDM);
763 addr[3] = mac & 0xff;
764 addr[2] = (mac & 0xff00) >> 8;
765 mac = hellcreek_read(hellcreek, HR_FDBRDH);
766 addr[1] = mac & 0xff;
767 addr[0] = (mac & 0xff00) >> 8;
769 /* Populate @entry */
770 memcpy(entry->mac, addr, sizeof(addr));
772 entry->portmask = (meta & HR_FDBMDRD_PORTMASK_MASK) >>
773 HR_FDBMDRD_PORTMASK_SHIFT;
774 entry->age = (meta & HR_FDBMDRD_AGE_MASK) >>
775 HR_FDBMDRD_AGE_SHIFT;
776 entry->is_obt = !!(meta & HR_FDBMDRD_OBT);
777 entry->pass_blocked = !!(meta & HR_FDBMDRD_PASS_BLOCKED);
778 entry->is_static = !!(meta & HR_FDBMDRD_STATIC);
779 entry->reprio_tc = (meta & HR_FDBMDRD_REPRIO_TC_MASK) >>
780 HR_FDBMDRD_REPRIO_TC_SHIFT;
781 entry->reprio_en = !!(meta & HR_FDBMDRD_REPRIO_EN);
784 /* Retrieve the index of a FDB entry by mac address. Currently we search through
785 * the complete table in hardware. If that's too slow, we might have to cache
786 * the complete FDB table in software.
788 static int hellcreek_fdb_get(struct hellcreek *hellcreek,
789 const unsigned char *dest,
790 struct hellcreek_fdb_entry *entry)
794 /* Set read pointer to zero: The read of HR_FDBMAX (read-only register)
795 * should reset the internal pointer. But, that doesn't work. The vendor
796 * suggested a subsequent write as workaround. Same for HR_FDBRDH below.
798 hellcreek_read(hellcreek, HR_FDBMAX);
799 hellcreek_write(hellcreek, 0x00, HR_FDBMAX);
801 /* We have to read the complete table, because the switch/driver might
802 * enter new entries anywhere.
804 for (i = 0; i < hellcreek->fdb_entries; ++i) {
805 struct hellcreek_fdb_entry tmp = { 0 };
808 hellcreek_populate_fdb_entry(hellcreek, &tmp, i);
810 /* Force next entry */
811 hellcreek_write(hellcreek, 0x00, HR_FDBRDH);
813 if (memcmp(tmp.mac, dest, ETH_ALEN))
817 memcpy(entry, &tmp, sizeof(*entry));
825 static int hellcreek_fdb_add(struct dsa_switch *ds, int port,
826 const unsigned char *addr, u16 vid)
828 struct hellcreek_fdb_entry entry = { 0 };
829 struct hellcreek *hellcreek = ds->priv;
832 dev_dbg(hellcreek->dev, "Add FDB entry for MAC=%pM\n", addr);
834 mutex_lock(&hellcreek->reg_lock);
836 ret = hellcreek_fdb_get(hellcreek, addr, &entry);
839 memcpy(entry.mac, addr, sizeof(entry.mac));
840 entry.portmask = BIT(port);
842 ret = __hellcreek_fdb_add(hellcreek, &entry);
844 dev_err(hellcreek->dev, "Failed to add FDB entry!\n");
849 ret = __hellcreek_fdb_del(hellcreek, &entry);
851 dev_err(hellcreek->dev, "Failed to delete FDB entry!\n");
855 entry.portmask |= BIT(port);
857 ret = __hellcreek_fdb_add(hellcreek, &entry);
859 dev_err(hellcreek->dev, "Failed to add FDB entry!\n");
865 mutex_unlock(&hellcreek->reg_lock);
870 static int hellcreek_fdb_del(struct dsa_switch *ds, int port,
871 const unsigned char *addr, u16 vid)
873 struct hellcreek_fdb_entry entry = { 0 };
874 struct hellcreek *hellcreek = ds->priv;
877 dev_dbg(hellcreek->dev, "Delete FDB entry for MAC=%pM\n", addr);
879 mutex_lock(&hellcreek->reg_lock);
881 ret = hellcreek_fdb_get(hellcreek, addr, &entry);
884 dev_err(hellcreek->dev, "FDB entry for deletion not found!\n");
887 ret = __hellcreek_fdb_del(hellcreek, &entry);
889 dev_err(hellcreek->dev, "Failed to delete FDB entry!\n");
893 entry.portmask &= ~BIT(port);
895 if (entry.portmask != 0x00) {
896 ret = __hellcreek_fdb_add(hellcreek, &entry);
898 dev_err(hellcreek->dev, "Failed to add FDB entry!\n");
905 mutex_unlock(&hellcreek->reg_lock);
910 static int hellcreek_fdb_dump(struct dsa_switch *ds, int port,
911 dsa_fdb_dump_cb_t *cb, void *data)
913 struct hellcreek *hellcreek = ds->priv;
918 mutex_lock(&hellcreek->reg_lock);
920 /* Set read pointer to zero: The read of HR_FDBMAX (read-only register)
921 * should reset the internal pointer. But, that doesn't work. The vendor
922 * suggested a subsequent write as workaround. Same for HR_FDBRDH below.
924 entries = hellcreek_read(hellcreek, HR_FDBMAX);
925 hellcreek_write(hellcreek, 0x00, HR_FDBMAX);
927 dev_dbg(hellcreek->dev, "FDB dump for port %d, entries=%d!\n", port, entries);
930 for (i = 0; i < hellcreek->fdb_entries; ++i) {
931 struct hellcreek_fdb_entry entry = { 0 };
934 hellcreek_populate_fdb_entry(hellcreek, &entry, i);
936 /* Force next entry */
937 hellcreek_write(hellcreek, 0x00, HR_FDBRDH);
940 if (is_zero_ether_addr(entry.mac))
943 /* Check port mask */
944 if (!(entry.portmask & BIT(port)))
947 ret = cb(entry.mac, 0, entry.is_static, data);
952 mutex_unlock(&hellcreek->reg_lock);
957 static int hellcreek_vlan_filtering(struct dsa_switch *ds, int port,
959 struct netlink_ext_ack *extack)
961 struct hellcreek *hellcreek = ds->priv;
963 dev_dbg(hellcreek->dev, "%s VLAN filtering on port %d\n",
964 vlan_filtering ? "Enable" : "Disable", port);
966 /* Configure port to drop packages with not known vids */
967 hellcreek_setup_ingressflt(hellcreek, port, vlan_filtering);
969 /* Enable VLAN awareness on the switch. This save due to
970 * ds->vlan_filtering_is_global.
972 hellcreek_setup_vlan_awareness(hellcreek, vlan_filtering);
977 static int hellcreek_enable_ip_core(struct hellcreek *hellcreek)
982 mutex_lock(&hellcreek->reg_lock);
984 val = hellcreek_read(hellcreek, HR_CTRL_C);
985 val |= HR_CTRL_C_ENABLE;
986 hellcreek_write(hellcreek, val, HR_CTRL_C);
987 ret = hellcreek_wait_until_transitioned(hellcreek);
989 mutex_unlock(&hellcreek->reg_lock);
994 static void hellcreek_setup_cpu_and_tunnel_port(struct hellcreek *hellcreek)
996 struct hellcreek_port *tunnel_port = &hellcreek->ports[TUNNEL_PORT];
997 struct hellcreek_port *cpu_port = &hellcreek->ports[CPU_PORT];
1000 ptcfg |= HR_PTCFG_LEARNING_EN | HR_PTCFG_ADMIN_EN;
1002 mutex_lock(&hellcreek->reg_lock);
1004 hellcreek_select_port(hellcreek, CPU_PORT);
1005 hellcreek_write(hellcreek, ptcfg, HR_PTCFG);
1007 hellcreek_select_port(hellcreek, TUNNEL_PORT);
1008 hellcreek_write(hellcreek, ptcfg, HR_PTCFG);
1010 cpu_port->ptcfg = ptcfg;
1011 tunnel_port->ptcfg = ptcfg;
1013 mutex_unlock(&hellcreek->reg_lock);
1016 static void hellcreek_setup_tc_identity_mapping(struct hellcreek *hellcreek)
1020 /* The switch has multiple egress queues per port. The queue is selected
1021 * via the PCP field in the VLAN header. The switch internally deals
1022 * with traffic classes instead of PCP values and this mapping is
1025 * The default mapping is (PCP - TC):
1035 * The default should be an identity mapping.
1038 for (i = 0; i < 8; ++i) {
1039 mutex_lock(&hellcreek->reg_lock);
1041 hellcreek_select_prio(hellcreek, i);
1042 hellcreek_write(hellcreek,
1043 i << HR_PRTCCFG_PCP_TC_MAP_SHIFT,
1046 mutex_unlock(&hellcreek->reg_lock);
1050 static int hellcreek_setup_fdb(struct hellcreek *hellcreek)
1052 static struct hellcreek_fdb_entry ptp = {
1053 /* MAC: 01-1B-19-00-00-00 */
1054 .mac = { 0x01, 0x1b, 0x19, 0x00, 0x00, 0x00 },
1055 .portmask = 0x03, /* Management ports */
1060 .reprio_tc = 6, /* TC: 6 as per IEEE 802.1AS */
1063 static struct hellcreek_fdb_entry p2p = {
1064 /* MAC: 01-80-C2-00-00-0E */
1065 .mac = { 0x01, 0x80, 0xc2, 0x00, 0x00, 0x0e },
1066 .portmask = 0x03, /* Management ports */
1071 .reprio_tc = 6, /* TC: 6 as per IEEE 802.1AS */
1076 mutex_lock(&hellcreek->reg_lock);
1077 ret = __hellcreek_fdb_add(hellcreek, &ptp);
1080 ret = __hellcreek_fdb_add(hellcreek, &p2p);
1082 mutex_unlock(&hellcreek->reg_lock);
1087 static int hellcreek_devlink_info_get(struct dsa_switch *ds,
1088 struct devlink_info_req *req,
1089 struct netlink_ext_ack *extack)
1091 struct hellcreek *hellcreek = ds->priv;
1094 ret = devlink_info_driver_name_put(req, "hellcreek");
1098 return devlink_info_version_fixed_put(req,
1099 DEVLINK_INFO_VERSION_GENERIC_ASIC_ID,
1100 hellcreek->pdata->name);
1103 static u64 hellcreek_devlink_vlan_table_get(void *priv)
1105 struct hellcreek *hellcreek = priv;
1109 mutex_lock(&hellcreek->reg_lock);
1110 for (i = 0; i < VLAN_N_VID; ++i)
1111 if (hellcreek->vidmbrcfg[i])
1113 mutex_unlock(&hellcreek->reg_lock);
1118 static u64 hellcreek_devlink_fdb_table_get(void *priv)
1120 struct hellcreek *hellcreek = priv;
1123 /* Reading this register has side effects. Synchronize against the other
1126 mutex_lock(&hellcreek->reg_lock);
1127 count = hellcreek_read(hellcreek, HR_FDBMAX);
1128 mutex_unlock(&hellcreek->reg_lock);
1133 static int hellcreek_setup_devlink_resources(struct dsa_switch *ds)
1135 struct devlink_resource_size_params size_vlan_params;
1136 struct devlink_resource_size_params size_fdb_params;
1137 struct hellcreek *hellcreek = ds->priv;
1140 devlink_resource_size_params_init(&size_vlan_params, VLAN_N_VID,
1142 1, DEVLINK_RESOURCE_UNIT_ENTRY);
1144 devlink_resource_size_params_init(&size_fdb_params,
1145 hellcreek->fdb_entries,
1146 hellcreek->fdb_entries,
1147 1, DEVLINK_RESOURCE_UNIT_ENTRY);
1149 err = dsa_devlink_resource_register(ds, "VLAN", VLAN_N_VID,
1150 HELLCREEK_DEVLINK_PARAM_ID_VLAN_TABLE,
1151 DEVLINK_RESOURCE_ID_PARENT_TOP,
1156 err = dsa_devlink_resource_register(ds, "FDB", hellcreek->fdb_entries,
1157 HELLCREEK_DEVLINK_PARAM_ID_FDB_TABLE,
1158 DEVLINK_RESOURCE_ID_PARENT_TOP,
1163 dsa_devlink_resource_occ_get_register(ds,
1164 HELLCREEK_DEVLINK_PARAM_ID_VLAN_TABLE,
1165 hellcreek_devlink_vlan_table_get,
1168 dsa_devlink_resource_occ_get_register(ds,
1169 HELLCREEK_DEVLINK_PARAM_ID_FDB_TABLE,
1170 hellcreek_devlink_fdb_table_get,
1176 dsa_devlink_resources_unregister(ds);
1181 static int hellcreek_devlink_region_vlan_snapshot(struct devlink *dl,
1182 const struct devlink_region_ops *ops,
1183 struct netlink_ext_ack *extack,
1186 struct hellcreek_devlink_vlan_entry *table, *entry;
1187 struct dsa_switch *ds = dsa_devlink_to_ds(dl);
1188 struct hellcreek *hellcreek = ds->priv;
1191 table = kcalloc(VLAN_N_VID, sizeof(*entry), GFP_KERNEL);
1197 mutex_lock(&hellcreek->reg_lock);
1198 for (i = 0; i < VLAN_N_VID; ++i, ++entry) {
1199 entry->member = hellcreek->vidmbrcfg[i];
1202 mutex_unlock(&hellcreek->reg_lock);
1204 *data = (u8 *)table;
1209 static int hellcreek_devlink_region_fdb_snapshot(struct devlink *dl,
1210 const struct devlink_region_ops *ops,
1211 struct netlink_ext_ack *extack,
1214 struct dsa_switch *ds = dsa_devlink_to_ds(dl);
1215 struct hellcreek_fdb_entry *table, *entry;
1216 struct hellcreek *hellcreek = ds->priv;
1219 table = kcalloc(hellcreek->fdb_entries, sizeof(*entry), GFP_KERNEL);
1225 mutex_lock(&hellcreek->reg_lock);
1227 /* Start table read */
1228 hellcreek_read(hellcreek, HR_FDBMAX);
1229 hellcreek_write(hellcreek, 0x00, HR_FDBMAX);
1231 for (i = 0; i < hellcreek->fdb_entries; ++i, ++entry) {
1232 /* Read current entry */
1233 hellcreek_populate_fdb_entry(hellcreek, entry, i);
1235 /* Advance read pointer */
1236 hellcreek_write(hellcreek, 0x00, HR_FDBRDH);
1239 mutex_unlock(&hellcreek->reg_lock);
1241 *data = (u8 *)table;
1246 static struct devlink_region_ops hellcreek_region_vlan_ops = {
1248 .snapshot = hellcreek_devlink_region_vlan_snapshot,
1249 .destructor = kfree,
1252 static struct devlink_region_ops hellcreek_region_fdb_ops = {
1254 .snapshot = hellcreek_devlink_region_fdb_snapshot,
1255 .destructor = kfree,
1258 static int hellcreek_setup_devlink_regions(struct dsa_switch *ds)
1260 struct hellcreek *hellcreek = ds->priv;
1261 struct devlink_region_ops *ops;
1262 struct devlink_region *region;
1267 size = VLAN_N_VID * sizeof(struct hellcreek_devlink_vlan_entry);
1268 ops = &hellcreek_region_vlan_ops;
1270 region = dsa_devlink_region_create(ds, ops, 1, size);
1272 return PTR_ERR(region);
1274 hellcreek->vlan_region = region;
1277 size = hellcreek->fdb_entries * sizeof(struct hellcreek_fdb_entry);
1278 ops = &hellcreek_region_fdb_ops;
1280 region = dsa_devlink_region_create(ds, ops, 1, size);
1281 if (IS_ERR(region)) {
1282 ret = PTR_ERR(region);
1286 hellcreek->fdb_region = region;
1291 dsa_devlink_region_destroy(hellcreek->vlan_region);
1296 static void hellcreek_teardown_devlink_regions(struct dsa_switch *ds)
1298 struct hellcreek *hellcreek = ds->priv;
1300 dsa_devlink_region_destroy(hellcreek->fdb_region);
1301 dsa_devlink_region_destroy(hellcreek->vlan_region);
1304 static int hellcreek_setup(struct dsa_switch *ds)
1306 struct hellcreek *hellcreek = ds->priv;
1310 dev_dbg(hellcreek->dev, "Set up the switch\n");
1313 ret = hellcreek_enable_ip_core(hellcreek);
1315 dev_err(hellcreek->dev, "Failed to enable IP core!\n");
1319 /* Enable CPU/Tunnel ports */
1320 hellcreek_setup_cpu_and_tunnel_port(hellcreek);
1322 /* Switch config: Keep defaults, enable FDB aging and learning and tag
1323 * each frame from/to cpu port for DSA tagging. Also enable the length
1324 * aware shaping mode. This eliminates the need for Qbv guard bands.
1326 swcfg |= HR_SWCFG_FDBAGE_EN |
1327 HR_SWCFG_FDBLRN_EN |
1328 HR_SWCFG_ALWAYS_OBT |
1329 (HR_SWCFG_LAS_ON << HR_SWCFG_LAS_MODE_SHIFT);
1330 hellcreek->swcfg = swcfg;
1331 hellcreek_write(hellcreek, swcfg, HR_SWCFG);
1333 /* Initial vlan membership to reflect port separation */
1334 for (i = 0; i < ds->num_ports; ++i) {
1335 if (!dsa_is_user_port(ds, i))
1338 hellcreek_setup_vlan_membership(ds, i, true);
1341 /* Configure PCP <-> TC mapping */
1342 hellcreek_setup_tc_identity_mapping(hellcreek);
1344 /* The VLAN awareness is a global switch setting. Therefore, mixed vlan
1345 * filtering setups are not supported.
1347 ds->vlan_filtering_is_global = true;
1348 ds->needs_standalone_vlan_filtering = true;
1350 /* Intercept _all_ PTP multicast traffic */
1351 ret = hellcreek_setup_fdb(hellcreek);
1353 dev_err(hellcreek->dev,
1354 "Failed to insert static PTP FDB entries\n");
1358 /* Register devlink resources with DSA */
1359 ret = hellcreek_setup_devlink_resources(ds);
1361 dev_err(hellcreek->dev,
1362 "Failed to setup devlink resources!\n");
1366 ret = hellcreek_setup_devlink_regions(ds);
1368 dev_err(hellcreek->dev,
1369 "Failed to setup devlink regions!\n");
1376 dsa_devlink_resources_unregister(ds);
1381 static void hellcreek_teardown(struct dsa_switch *ds)
1383 hellcreek_teardown_devlink_regions(ds);
1384 dsa_devlink_resources_unregister(ds);
1387 static void hellcreek_phylink_validate(struct dsa_switch *ds, int port,
1388 unsigned long *supported,
1389 struct phylink_link_state *state)
1391 __ETHTOOL_DECLARE_LINK_MODE_MASK(mask) = { 0, };
1392 struct hellcreek *hellcreek = ds->priv;
1394 dev_dbg(hellcreek->dev, "Phylink validate for port %d\n", port);
1396 /* The MAC settings are a hardware configuration option and cannot be
1397 * changed at run time or by strapping. Therefore the attached PHYs
1398 * should be programmed to only advertise settings which are supported
1401 if (hellcreek->pdata->is_100_mbits)
1402 phylink_set(mask, 100baseT_Full);
1404 phylink_set(mask, 1000baseT_Full);
1406 bitmap_and(supported, supported, mask,
1407 __ETHTOOL_LINK_MODE_MASK_NBITS);
1408 bitmap_and(state->advertising, state->advertising, mask,
1409 __ETHTOOL_LINK_MODE_MASK_NBITS);
1413 hellcreek_port_prechangeupper(struct dsa_switch *ds, int port,
1414 struct netdev_notifier_changeupper_info *info)
1416 struct hellcreek *hellcreek = ds->priv;
1422 dev_dbg(hellcreek->dev, "Pre change upper for port %d\n", port);
1425 * Deny VLAN devices on top of lan ports with the same VLAN ids, because
1426 * it breaks the port separation due to the private VLANs. Example:
1428 * lan0.100 *and* lan1.100 cannot be used in parallel. However, lan0.99
1429 * and lan1.100 works.
1432 if (!is_vlan_dev(info->upper_dev))
1435 vid = vlan_dev_vlan_id(info->upper_dev);
1437 /* For all ports, check bitmaps */
1438 mutex_lock(&hellcreek->vlan_lock);
1439 for (i = 0; i < hellcreek->pdata->num_ports; ++i) {
1440 if (!dsa_is_user_port(ds, i))
1446 used = used && test_bit(vid, hellcreek->ports[i].vlan_dev_bitmap);
1453 set_bit(vid, hellcreek->ports[port].vlan_dev_bitmap);
1458 mutex_unlock(&hellcreek->vlan_lock);
1463 static void hellcreek_setup_gcl(struct hellcreek *hellcreek, int port,
1464 const struct tc_taprio_qopt_offload *schedule)
1466 const struct tc_taprio_sched_entry *cur, *initial, *next;
1469 cur = initial = &schedule->entries[0];
1472 for (i = 1; i <= schedule->num_entries; ++i) {
1476 if (i == schedule->num_entries)
1477 gates = initial->gate_mask ^
1480 gates = next->gate_mask ^
1485 if (i == schedule->num_entries)
1486 data |= TR_GCLDAT_GCLWRLAST;
1489 hellcreek_write(hellcreek, data, TR_GCLDAT);
1492 hellcreek_write(hellcreek,
1493 cur->interval & 0x0000ffff,
1495 hellcreek_write(hellcreek,
1496 (cur->interval & 0xffff0000) >> 16,
1500 data = ((i - 1) << TR_GCLCMD_GCLWRADR_SHIFT) |
1501 (initial->gate_mask <<
1502 TR_GCLCMD_INIT_GATE_STATES_SHIFT);
1503 hellcreek_write(hellcreek, data, TR_GCLCMD);
1510 static void hellcreek_set_cycle_time(struct hellcreek *hellcreek,
1511 const struct tc_taprio_qopt_offload *schedule)
1513 u32 cycle_time = schedule->cycle_time;
1515 hellcreek_write(hellcreek, cycle_time & 0x0000ffff, TR_CTWRL);
1516 hellcreek_write(hellcreek, (cycle_time & 0xffff0000) >> 16, TR_CTWRH);
1519 static void hellcreek_switch_schedule(struct hellcreek *hellcreek,
1522 struct timespec64 ts = ktime_to_timespec64(start_time);
1524 /* Start schedule at this point of time */
1525 hellcreek_write(hellcreek, ts.tv_nsec & 0x0000ffff, TR_ESTWRL);
1526 hellcreek_write(hellcreek, (ts.tv_nsec & 0xffff0000) >> 16, TR_ESTWRH);
1528 /* Arm timer, set seconds and switch schedule */
1529 hellcreek_write(hellcreek, TR_ESTCMD_ESTARM | TR_ESTCMD_ESTSWCFG |
1530 ((ts.tv_sec & TR_ESTCMD_ESTSEC_MASK) <<
1531 TR_ESTCMD_ESTSEC_SHIFT), TR_ESTCMD);
1534 static bool hellcreek_schedule_startable(struct hellcreek *hellcreek, int port)
1536 struct hellcreek_port *hellcreek_port = &hellcreek->ports[port];
1537 s64 base_time_ns, current_ns;
1539 /* The switch allows a schedule to be started only eight seconds within
1540 * the future. Therefore, check the current PTP time if the schedule is
1544 /* Use the "cached" time. That should be alright, as it's updated quite
1545 * frequently in the PTP code.
1547 mutex_lock(&hellcreek->ptp_lock);
1548 current_ns = hellcreek->seconds * NSEC_PER_SEC + hellcreek->last_ts;
1549 mutex_unlock(&hellcreek->ptp_lock);
1551 /* Calculate difference to admin base time */
1552 base_time_ns = ktime_to_ns(hellcreek_port->current_schedule->base_time);
1554 return base_time_ns - current_ns < (s64)4 * NSEC_PER_SEC;
1557 static void hellcreek_start_schedule(struct hellcreek *hellcreek, int port)
1559 struct hellcreek_port *hellcreek_port = &hellcreek->ports[port];
1560 ktime_t base_time, current_time;
1564 /* First select port */
1565 hellcreek_select_tgd(hellcreek, port);
1567 /* Forward base time into the future if needed */
1568 mutex_lock(&hellcreek->ptp_lock);
1569 current_ns = hellcreek->seconds * NSEC_PER_SEC + hellcreek->last_ts;
1570 mutex_unlock(&hellcreek->ptp_lock);
1572 current_time = ns_to_ktime(current_ns);
1573 base_time = hellcreek_port->current_schedule->base_time;
1574 cycle_time = hellcreek_port->current_schedule->cycle_time;
1576 if (ktime_compare(current_time, base_time) > 0) {
1579 n = div64_s64(ktime_sub_ns(current_time, base_time),
1581 base_time = ktime_add_ns(base_time, (n + 1) * cycle_time);
1584 /* Set admin base time and switch schedule */
1585 hellcreek_switch_schedule(hellcreek, base_time);
1587 taprio_offload_free(hellcreek_port->current_schedule);
1588 hellcreek_port->current_schedule = NULL;
1590 dev_dbg(hellcreek->dev, "Armed EST timer for port %d\n",
1591 hellcreek_port->port);
1594 static void hellcreek_check_schedule(struct work_struct *work)
1596 struct delayed_work *dw = to_delayed_work(work);
1597 struct hellcreek_port *hellcreek_port;
1598 struct hellcreek *hellcreek;
1601 hellcreek_port = dw_to_hellcreek_port(dw);
1602 hellcreek = hellcreek_port->hellcreek;
1604 mutex_lock(&hellcreek->reg_lock);
1606 /* Check starting time */
1607 startable = hellcreek_schedule_startable(hellcreek,
1608 hellcreek_port->port);
1610 hellcreek_start_schedule(hellcreek, hellcreek_port->port);
1611 mutex_unlock(&hellcreek->reg_lock);
1615 mutex_unlock(&hellcreek->reg_lock);
1618 schedule_delayed_work(&hellcreek_port->schedule_work,
1619 HELLCREEK_SCHEDULE_PERIOD);
1622 static int hellcreek_port_set_schedule(struct dsa_switch *ds, int port,
1623 struct tc_taprio_qopt_offload *taprio)
1625 struct hellcreek *hellcreek = ds->priv;
1626 struct hellcreek_port *hellcreek_port;
1630 hellcreek_port = &hellcreek->ports[port];
1632 dev_dbg(hellcreek->dev, "Configure traffic schedule on port %d\n",
1635 /* First cancel delayed work */
1636 cancel_delayed_work_sync(&hellcreek_port->schedule_work);
1638 mutex_lock(&hellcreek->reg_lock);
1640 if (hellcreek_port->current_schedule) {
1641 taprio_offload_free(hellcreek_port->current_schedule);
1642 hellcreek_port->current_schedule = NULL;
1644 hellcreek_port->current_schedule = taprio_offload_get(taprio);
1646 /* Then select port */
1647 hellcreek_select_tgd(hellcreek, port);
1649 /* Enable gating and keep defaults */
1650 ctrl = (0xff << TR_TGDCTRL_ADMINGATESTATES_SHIFT) | TR_TGDCTRL_GATE_EN;
1651 hellcreek_write(hellcreek, ctrl, TR_TGDCTRL);
1653 /* Cancel pending schedule */
1654 hellcreek_write(hellcreek, 0x00, TR_ESTCMD);
1656 /* Setup a new schedule */
1657 hellcreek_setup_gcl(hellcreek, port, hellcreek_port->current_schedule);
1659 /* Configure cycle time */
1660 hellcreek_set_cycle_time(hellcreek, hellcreek_port->current_schedule);
1662 /* Check starting time */
1663 startable = hellcreek_schedule_startable(hellcreek, port);
1665 hellcreek_start_schedule(hellcreek, port);
1666 mutex_unlock(&hellcreek->reg_lock);
1670 mutex_unlock(&hellcreek->reg_lock);
1672 /* Schedule periodic schedule check */
1673 schedule_delayed_work(&hellcreek_port->schedule_work,
1674 HELLCREEK_SCHEDULE_PERIOD);
1679 static int hellcreek_port_del_schedule(struct dsa_switch *ds, int port)
1681 struct hellcreek *hellcreek = ds->priv;
1682 struct hellcreek_port *hellcreek_port;
1684 hellcreek_port = &hellcreek->ports[port];
1686 dev_dbg(hellcreek->dev, "Remove traffic schedule on port %d\n", port);
1688 /* First cancel delayed work */
1689 cancel_delayed_work_sync(&hellcreek_port->schedule_work);
1691 mutex_lock(&hellcreek->reg_lock);
1693 if (hellcreek_port->current_schedule) {
1694 taprio_offload_free(hellcreek_port->current_schedule);
1695 hellcreek_port->current_schedule = NULL;
1698 /* Then select port */
1699 hellcreek_select_tgd(hellcreek, port);
1701 /* Disable gating and return to regular switching flow */
1702 hellcreek_write(hellcreek, 0xff << TR_TGDCTRL_ADMINGATESTATES_SHIFT,
1705 mutex_unlock(&hellcreek->reg_lock);
1710 static bool hellcreek_validate_schedule(struct hellcreek *hellcreek,
1711 struct tc_taprio_qopt_offload *schedule)
1715 /* Does this hellcreek version support Qbv in hardware? */
1716 if (!hellcreek->pdata->qbv_support)
1719 /* cycle time can only be 32bit */
1720 if (schedule->cycle_time > (u32)-1)
1723 /* cycle time extension is not supported */
1724 if (schedule->cycle_time_extension)
1727 /* Only set command is supported */
1728 for (i = 0; i < schedule->num_entries; ++i)
1729 if (schedule->entries[i].command != TC_TAPRIO_CMD_SET_GATES)
1735 static int hellcreek_port_setup_tc(struct dsa_switch *ds, int port,
1736 enum tc_setup_type type, void *type_data)
1738 struct tc_taprio_qopt_offload *taprio = type_data;
1739 struct hellcreek *hellcreek = ds->priv;
1741 if (type != TC_SETUP_QDISC_TAPRIO)
1744 if (!hellcreek_validate_schedule(hellcreek, taprio))
1748 return hellcreek_port_set_schedule(ds, port, taprio);
1750 return hellcreek_port_del_schedule(ds, port);
1753 static const struct dsa_switch_ops hellcreek_ds_ops = {
1754 .devlink_info_get = hellcreek_devlink_info_get,
1755 .get_ethtool_stats = hellcreek_get_ethtool_stats,
1756 .get_sset_count = hellcreek_get_sset_count,
1757 .get_strings = hellcreek_get_strings,
1758 .get_tag_protocol = hellcreek_get_tag_protocol,
1759 .get_ts_info = hellcreek_get_ts_info,
1760 .phylink_validate = hellcreek_phylink_validate,
1761 .port_bridge_flags = hellcreek_bridge_flags,
1762 .port_bridge_join = hellcreek_port_bridge_join,
1763 .port_bridge_leave = hellcreek_port_bridge_leave,
1764 .port_disable = hellcreek_port_disable,
1765 .port_enable = hellcreek_port_enable,
1766 .port_fdb_add = hellcreek_fdb_add,
1767 .port_fdb_del = hellcreek_fdb_del,
1768 .port_fdb_dump = hellcreek_fdb_dump,
1769 .port_hwtstamp_set = hellcreek_port_hwtstamp_set,
1770 .port_hwtstamp_get = hellcreek_port_hwtstamp_get,
1771 .port_pre_bridge_flags = hellcreek_pre_bridge_flags,
1772 .port_prechangeupper = hellcreek_port_prechangeupper,
1773 .port_rxtstamp = hellcreek_port_rxtstamp,
1774 .port_setup_tc = hellcreek_port_setup_tc,
1775 .port_stp_state_set = hellcreek_port_stp_state_set,
1776 .port_txtstamp = hellcreek_port_txtstamp,
1777 .port_vlan_add = hellcreek_vlan_add,
1778 .port_vlan_del = hellcreek_vlan_del,
1779 .port_vlan_filtering = hellcreek_vlan_filtering,
1780 .setup = hellcreek_setup,
1781 .teardown = hellcreek_teardown,
1784 static int hellcreek_probe(struct platform_device *pdev)
1786 struct device *dev = &pdev->dev;
1787 struct hellcreek *hellcreek;
1788 struct resource *res;
1791 hellcreek = devm_kzalloc(dev, sizeof(*hellcreek), GFP_KERNEL);
1795 hellcreek->vidmbrcfg = devm_kcalloc(dev, VLAN_N_VID,
1796 sizeof(*hellcreek->vidmbrcfg),
1798 if (!hellcreek->vidmbrcfg)
1801 hellcreek->pdata = of_device_get_match_data(dev);
1803 hellcreek->ports = devm_kcalloc(dev, hellcreek->pdata->num_ports,
1804 sizeof(*hellcreek->ports),
1806 if (!hellcreek->ports)
1809 for (i = 0; i < hellcreek->pdata->num_ports; ++i) {
1810 struct hellcreek_port *port = &hellcreek->ports[i];
1812 port->counter_values =
1814 ARRAY_SIZE(hellcreek_counter),
1815 sizeof(*port->counter_values),
1817 if (!port->counter_values)
1820 port->vlan_dev_bitmap =
1822 BITS_TO_LONGS(VLAN_N_VID),
1823 sizeof(unsigned long),
1825 if (!port->vlan_dev_bitmap)
1828 port->hellcreek = hellcreek;
1831 INIT_DELAYED_WORK(&port->schedule_work,
1832 hellcreek_check_schedule);
1835 mutex_init(&hellcreek->reg_lock);
1836 mutex_init(&hellcreek->vlan_lock);
1837 mutex_init(&hellcreek->ptp_lock);
1839 hellcreek->dev = dev;
1841 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "tsn");
1843 dev_err(dev, "No memory region provided!\n");
1847 hellcreek->base = devm_ioremap_resource(dev, res);
1848 if (IS_ERR(hellcreek->base))
1849 return PTR_ERR(hellcreek->base);
1851 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "ptp");
1853 dev_err(dev, "No PTP memory region provided!\n");
1857 hellcreek->ptp_base = devm_ioremap_resource(dev, res);
1858 if (IS_ERR(hellcreek->ptp_base))
1859 return PTR_ERR(hellcreek->ptp_base);
1861 ret = hellcreek_detect(hellcreek);
1863 dev_err(dev, "No (known) chip found!\n");
1867 ret = hellcreek_wait_until_ready(hellcreek);
1869 dev_err(dev, "Switch didn't become ready!\n");
1873 hellcreek_feature_detect(hellcreek);
1875 hellcreek->ds = devm_kzalloc(dev, sizeof(*hellcreek->ds), GFP_KERNEL);
1879 hellcreek->ds->dev = dev;
1880 hellcreek->ds->priv = hellcreek;
1881 hellcreek->ds->ops = &hellcreek_ds_ops;
1882 hellcreek->ds->num_ports = hellcreek->pdata->num_ports;
1883 hellcreek->ds->num_tx_queues = HELLCREEK_NUM_EGRESS_QUEUES;
1885 ret = dsa_register_switch(hellcreek->ds);
1887 dev_err_probe(dev, ret, "Unable to register switch\n");
1891 ret = hellcreek_ptp_setup(hellcreek);
1893 dev_err(dev, "Failed to setup PTP!\n");
1897 ret = hellcreek_hwtstamp_setup(hellcreek);
1899 dev_err(dev, "Failed to setup hardware timestamping!\n");
1900 goto err_tstamp_setup;
1903 platform_set_drvdata(pdev, hellcreek);
1908 hellcreek_ptp_free(hellcreek);
1910 dsa_unregister_switch(hellcreek->ds);
1915 static int hellcreek_remove(struct platform_device *pdev)
1917 struct hellcreek *hellcreek = platform_get_drvdata(pdev);
1919 hellcreek_hwtstamp_free(hellcreek);
1920 hellcreek_ptp_free(hellcreek);
1921 dsa_unregister_switch(hellcreek->ds);
1922 platform_set_drvdata(pdev, NULL);
1927 static const struct hellcreek_platform_data de1soc_r1_pdata = {
1932 .qbv_on_cpu_port = 1,
1934 .module_id = 0x4c30,
1937 static const struct of_device_id hellcreek_of_match[] = {
1939 .compatible = "hirschmann,hellcreek-de1soc-r1",
1940 .data = &de1soc_r1_pdata,
1944 MODULE_DEVICE_TABLE(of, hellcreek_of_match);
1946 static struct platform_driver hellcreek_driver = {
1947 .probe = hellcreek_probe,
1948 .remove = hellcreek_remove,
1950 .name = "hellcreek",
1951 .of_match_table = hellcreek_of_match,
1954 module_platform_driver(hellcreek_driver);
1956 MODULE_AUTHOR("Kurt Kanzenbach <kurt@linutronix.de>");
1957 MODULE_DESCRIPTION("Hirschmann Hellcreek driver");
1958 MODULE_LICENSE("Dual MIT/GPL");