Skip to content

Commit 38b5bee

Browse files
vladimirolteandavem330
authored andcommitted
net: dsa: sja1105: prepare tagger for handling DSA tags and VLAN simultaneously
In VLAN-unaware mode, sja1105 uses VLAN tags with a custom TPID of 0xdadb. While in the yet-to-be introduced best_effort_vlan_filtering mode, it needs to work with normal VLAN TPID values. A complication arises when we must transmit a VLAN-tagged packet to the switch when it's in VLAN-aware mode. We need to construct a packet with 2 VLAN tags, and the switch will use the outer header for routing and pop it on egress. But sadly, here the 2 hardware generations don't behave the same: - E/T switches won't pop an ETH_P_8021AD tag on egress, it seems (packets will remain double-tagged). - P/Q/R/S switches will drop a packet with 2 ETH_P_8021Q tags (it looks like it tries to prevent VLAN hopping). But looks like the reverse is also true: - E/T switches have no problem popping the outer tag from packets with 2 ETH_P_8021Q tags. - P/Q/R/S will have no problem popping a single tag even if that is ETH_P_8021AD. So it is clear that if we want the hardware to work with dsa_8021q tagging in VLAN-aware mode, we need to send different TPIDs depending on revision. Keep that information in priv->info->qinq_tpid. The per-port tagger structure will hold an xmit_tpid value that depends not only upon the qinq_tpid, but also upon the VLAN awareness state itself (in case we must transmit using 0xdadb). Signed-off-by: Vladimir Oltean <[email protected]> Reviewed-by: Florian Fainelli <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent cfa36b1 commit 38b5bee

File tree

5 files changed

+44
-11
lines changed

5 files changed

+44
-11
lines changed

drivers/net/dsa/sja1105/sja1105.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,12 @@ struct sja1105_info {
8787
const struct sja1105_dynamic_table_ops *dyn_ops;
8888
const struct sja1105_table_ops *static_ops;
8989
const struct sja1105_regs *regs;
90+
/* Both E/T and P/Q/R/S have quirks when it comes to popping the S-Tag
91+
* from double-tagged frames. E/T will pop it only when it's equal to
92+
* TPID from the General Parameters Table, while P/Q/R/S will only
93+
* pop it when it's equal to TPID2.
94+
*/
95+
u16 qinq_tpid;
9096
int (*reset_cmd)(struct dsa_switch *ds);
9197
int (*setup_rgmii_delay)(const void *ctx, int port);
9298
/* Prototypes from include/net/dsa.h */

drivers/net/dsa/sja1105/sja1105_main.c

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2153,6 +2153,15 @@ static int sja1105_vlan_filtering(struct dsa_switch *ds, int port, bool enabled)
21532153
tpid2 = ETH_P_SJA1105;
21542154
}
21552155

2156+
for (port = 0; port < ds->num_ports; port++) {
2157+
struct sja1105_port *sp = &priv->ports[port];
2158+
2159+
if (enabled)
2160+
sp->xmit_tpid = priv->info->qinq_tpid;
2161+
else
2162+
sp->xmit_tpid = ETH_P_SJA1105;
2163+
}
2164+
21562165
if (!enabled)
21572166
state = SJA1105_VLAN_UNAWARE;
21582167
else
@@ -2866,6 +2875,7 @@ static int sja1105_probe(struct spi_device *spi)
28662875
goto out;
28672876
}
28682877
skb_queue_head_init(&sp->xmit_queue);
2878+
sp->xmit_tpid = ETH_P_SJA1105;
28692879
}
28702880

28712881
return 0;

drivers/net/dsa/sja1105/sja1105_spi.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -512,6 +512,7 @@ struct sja1105_info sja1105e_info = {
512512
.part_no = SJA1105ET_PART_NO,
513513
.static_ops = sja1105e_table_ops,
514514
.dyn_ops = sja1105et_dyn_ops,
515+
.qinq_tpid = ETH_P_8021Q,
515516
.ptp_ts_bits = 24,
516517
.ptpegr_ts_bytes = 4,
517518
.reset_cmd = sja1105et_reset_cmd,
@@ -526,6 +527,7 @@ struct sja1105_info sja1105t_info = {
526527
.part_no = SJA1105ET_PART_NO,
527528
.static_ops = sja1105t_table_ops,
528529
.dyn_ops = sja1105et_dyn_ops,
530+
.qinq_tpid = ETH_P_8021Q,
529531
.ptp_ts_bits = 24,
530532
.ptpegr_ts_bytes = 4,
531533
.reset_cmd = sja1105et_reset_cmd,
@@ -540,6 +542,7 @@ struct sja1105_info sja1105p_info = {
540542
.part_no = SJA1105P_PART_NO,
541543
.static_ops = sja1105p_table_ops,
542544
.dyn_ops = sja1105pqrs_dyn_ops,
545+
.qinq_tpid = ETH_P_8021AD,
543546
.ptp_ts_bits = 32,
544547
.ptpegr_ts_bytes = 8,
545548
.setup_rgmii_delay = sja1105pqrs_setup_rgmii_delay,
@@ -555,6 +558,7 @@ struct sja1105_info sja1105q_info = {
555558
.part_no = SJA1105Q_PART_NO,
556559
.static_ops = sja1105q_table_ops,
557560
.dyn_ops = sja1105pqrs_dyn_ops,
561+
.qinq_tpid = ETH_P_8021AD,
558562
.ptp_ts_bits = 32,
559563
.ptpegr_ts_bytes = 8,
560564
.setup_rgmii_delay = sja1105pqrs_setup_rgmii_delay,
@@ -570,6 +574,7 @@ struct sja1105_info sja1105r_info = {
570574
.part_no = SJA1105R_PART_NO,
571575
.static_ops = sja1105r_table_ops,
572576
.dyn_ops = sja1105pqrs_dyn_ops,
577+
.qinq_tpid = ETH_P_8021AD,
573578
.ptp_ts_bits = 32,
574579
.ptpegr_ts_bytes = 8,
575580
.setup_rgmii_delay = sja1105pqrs_setup_rgmii_delay,
@@ -586,6 +591,7 @@ struct sja1105_info sja1105s_info = {
586591
.static_ops = sja1105s_table_ops,
587592
.dyn_ops = sja1105pqrs_dyn_ops,
588593
.regs = &sja1105pqrs_regs,
594+
.qinq_tpid = ETH_P_8021AD,
589595
.ptp_ts_bits = 32,
590596
.ptpegr_ts_bytes = 8,
591597
.setup_rgmii_delay = sja1105pqrs_setup_rgmii_delay,

include/linux/dsa/sja1105.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ struct sja1105_port {
5959
struct sja1105_tagger_data *data;
6060
struct dsa_port *dp;
6161
bool hwts_tx_en;
62+
u16 xmit_tpid;
6263
};
6364

6465
#endif /* _NET_DSA_SJA1105_H */

net/dsa/tag_sja1105.c

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,25 @@ static inline bool sja1105_is_meta_frame(const struct sk_buff *skb)
6969
return true;
7070
}
7171

72+
static bool sja1105_can_use_vlan_as_tags(const struct sk_buff *skb)
73+
{
74+
struct vlan_ethhdr *hdr = vlan_eth_hdr(skb);
75+
76+
if (hdr->h_vlan_proto == ntohs(ETH_P_SJA1105))
77+
return true;
78+
79+
if (hdr->h_vlan_proto != ntohs(ETH_P_8021Q))
80+
return false;
81+
82+
return vid_is_dsa_8021q(ntohs(hdr->h_vlan_TCI) & VLAN_VID_MASK);
83+
}
84+
7285
/* This is the first time the tagger sees the frame on RX.
7386
* Figure out if we can decode it.
7487
*/
7588
static bool sja1105_filter(const struct sk_buff *skb, struct net_device *dev)
7689
{
77-
if (!dsa_port_is_vlan_filtering(dev->dsa_ptr))
90+
if (sja1105_can_use_vlan_as_tags(skb))
7891
return true;
7992
if (sja1105_is_link_local(skb))
8093
return true;
@@ -96,6 +109,11 @@ static struct sk_buff *sja1105_defer_xmit(struct sja1105_port *sp,
96109
return NULL;
97110
}
98111

112+
static u16 sja1105_xmit_tpid(struct sja1105_port *sp)
113+
{
114+
return sp->xmit_tpid;
115+
}
116+
99117
static struct sk_buff *sja1105_xmit(struct sk_buff *skb,
100118
struct net_device *netdev)
101119
{
@@ -111,15 +129,7 @@ static struct sk_buff *sja1105_xmit(struct sk_buff *skb,
111129
if (unlikely(sja1105_is_link_local(skb)))
112130
return sja1105_defer_xmit(dp->priv, skb);
113131

114-
/* If we are under a vlan_filtering bridge, IP termination on
115-
* switch ports based on 802.1Q tags is simply too brittle to
116-
* be passable. So just defer to the dsa_slave_notag_xmit
117-
* implementation.
118-
*/
119-
if (dsa_port_is_vlan_filtering(dp))
120-
return skb;
121-
122-
return dsa_8021q_xmit(skb, netdev, ETH_P_SJA1105,
132+
return dsa_8021q_xmit(skb, netdev, sja1105_xmit_tpid(dp->priv),
123133
((pcp << VLAN_PRIO_SHIFT) | tx_vid));
124134
}
125135

@@ -258,7 +268,7 @@ static struct sk_buff *sja1105_rcv(struct sk_buff *skb,
258268

259269
hdr = eth_hdr(skb);
260270
tpid = ntohs(hdr->h_proto);
261-
is_tagged = (tpid == ETH_P_SJA1105);
271+
is_tagged = (tpid == ETH_P_SJA1105 || tpid == ETH_P_8021Q);
262272
is_link_local = sja1105_is_link_local(skb);
263273
is_meta = sja1105_is_meta_frame(skb);
264274

0 commit comments

Comments
 (0)