Commit 8b0d3ea5 authored by Vivien Didelot's avatar Vivien Didelot Committed by David S. Miller

net: dsa: store CPU port pointer in the tree

A dsa_switch_tree instance holds a dsa_switch pointer and a port index
to identify the switch port to which the CPU is attached.

Now that the DSA layer has a dsa_port structure to hold this data, use
it to point the switch CPU port.

This patch simply substitutes s/dst->cpu_switch/dst->cpu_dp->ds/ and
s/dst->cpu_port/dst->cpu_dp->index/.
Signed-off-by: default avatarVivien Didelot <vivien.didelot@savoirfairelinux.com>
Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Reviewed-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 631581bf
...@@ -1344,7 +1344,7 @@ EXPORT_SYMBOL(b53_fdb_dump); ...@@ -1344,7 +1344,7 @@ EXPORT_SYMBOL(b53_fdb_dump);
int b53_br_join(struct dsa_switch *ds, int port, struct net_device *br) int b53_br_join(struct dsa_switch *ds, int port, struct net_device *br)
{ {
struct b53_device *dev = ds->priv; struct b53_device *dev = ds->priv;
s8 cpu_port = ds->dst->cpu_port; s8 cpu_port = ds->dst->cpu_dp->index;
u16 pvlan, reg; u16 pvlan, reg;
unsigned int i; unsigned int i;
...@@ -1390,7 +1390,7 @@ void b53_br_leave(struct dsa_switch *ds, int port, struct net_device *br) ...@@ -1390,7 +1390,7 @@ void b53_br_leave(struct dsa_switch *ds, int port, struct net_device *br)
{ {
struct b53_device *dev = ds->priv; struct b53_device *dev = ds->priv;
struct b53_vlan *vl = &dev->vlans[0]; struct b53_vlan *vl = &dev->vlans[0];
s8 cpu_port = ds->dst->cpu_port; s8 cpu_port = ds->dst->cpu_dp->index;
unsigned int i; unsigned int i;
u16 pvlan, reg, pvid; u16 pvlan, reg, pvid;
......
...@@ -228,7 +228,7 @@ static int bcm_sf2_port_setup(struct dsa_switch *ds, int port, ...@@ -228,7 +228,7 @@ static int bcm_sf2_port_setup(struct dsa_switch *ds, int port,
struct phy_device *phy) struct phy_device *phy)
{ {
struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds); struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
s8 cpu_port = ds->dst[ds->index].cpu_port; s8 cpu_port = ds->dst->cpu_dp->index;
unsigned int i; unsigned int i;
u32 reg; u32 reg;
...@@ -832,7 +832,7 @@ static int bcm_sf2_sw_set_wol(struct dsa_switch *ds, int port, ...@@ -832,7 +832,7 @@ static int bcm_sf2_sw_set_wol(struct dsa_switch *ds, int port,
{ {
struct net_device *p = ds->dst[ds->index].master_netdev; struct net_device *p = ds->dst[ds->index].master_netdev;
struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds); struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
s8 cpu_port = ds->dst[ds->index].cpu_port; s8 cpu_port = ds->dst->cpu_dp->index;
struct ethtool_wolinfo pwol; struct ethtool_wolinfo pwol;
p->ethtool_ops->get_wol(p, &pwol); p->ethtool_ops->get_wol(p, &pwol);
......
...@@ -176,7 +176,7 @@ static int mv88e6060_setup_port(struct dsa_switch *ds, int p) ...@@ -176,7 +176,7 @@ static int mv88e6060_setup_port(struct dsa_switch *ds, int p)
((p & 0xf) << PORT_VLAN_MAP_DBNUM_SHIFT) | ((p & 0xf) << PORT_VLAN_MAP_DBNUM_SHIFT) |
(dsa_is_cpu_port(ds, p) ? (dsa_is_cpu_port(ds, p) ?
ds->enabled_port_mask : ds->enabled_port_mask :
BIT(ds->dst->cpu_port))); BIT(ds->dst->cpu_dp->index)));
/* Port Association Vector: when learning source addresses /* Port Association Vector: when learning source addresses
* of packets, add the address to the address database using * of packets, add the address to the address database using
......
...@@ -507,7 +507,7 @@ qca8k_setup(struct dsa_switch *ds) ...@@ -507,7 +507,7 @@ qca8k_setup(struct dsa_switch *ds)
pr_warn("regmap initialization failed"); pr_warn("regmap initialization failed");
/* Initialize CPU port pad mode (xMII type, delays...) */ /* Initialize CPU port pad mode (xMII type, delays...) */
phy_mode = of_get_phy_mode(ds->ports[ds->dst->cpu_port].dn); phy_mode = of_get_phy_mode(ds->dst->cpu_dp->dn);
if (phy_mode < 0) { if (phy_mode < 0) {
pr_err("Can't find phy-mode for master device\n"); pr_err("Can't find phy-mode for master device\n");
return phy_mode; return phy_mode;
......
...@@ -137,10 +137,9 @@ struct dsa_switch_tree { ...@@ -137,10 +137,9 @@ struct dsa_switch_tree {
const struct ethtool_ops *master_orig_ethtool_ops; const struct ethtool_ops *master_orig_ethtool_ops;
/* /*
* The switch and port to which the CPU is attached. * The switch port to which the CPU is attached.
*/ */
struct dsa_switch *cpu_switch; struct dsa_port *cpu_dp;
s8 cpu_port;
/* /*
* Data for the individual switch chips. * Data for the individual switch chips.
...@@ -251,7 +250,7 @@ struct dsa_switch { ...@@ -251,7 +250,7 @@ struct dsa_switch {
static inline bool dsa_is_cpu_port(struct dsa_switch *ds, int p) static inline bool dsa_is_cpu_port(struct dsa_switch *ds, int p)
{ {
return !!(ds == ds->dst->cpu_switch && p == ds->dst->cpu_port); return ds->dst->cpu_dp == &ds->ports[p];
} }
static inline bool dsa_is_dsa_port(struct dsa_switch *ds, int p) static inline bool dsa_is_dsa_port(struct dsa_switch *ds, int p)
...@@ -279,10 +278,10 @@ static inline u8 dsa_upstream_port(struct dsa_switch *ds) ...@@ -279,10 +278,10 @@ static inline u8 dsa_upstream_port(struct dsa_switch *ds)
* Else return the (DSA) port number that connects to the * Else return the (DSA) port number that connects to the
* switch that is one hop closer to the cpu. * switch that is one hop closer to the cpu.
*/ */
if (dst->cpu_switch == ds) if (dst->cpu_dp->ds == ds)
return dst->cpu_port; return dst->cpu_dp->index;
else else
return ds->rtable[dst->cpu_switch->index]; return ds->rtable[dst->cpu_dp->ds->index];
} }
struct switchdev_trans; struct switchdev_trans;
......
...@@ -443,8 +443,8 @@ static int dsa_dst_apply(struct dsa_switch_tree *dst) ...@@ -443,8 +443,8 @@ static int dsa_dst_apply(struct dsa_switch_tree *dst)
return err; return err;
} }
if (dst->cpu_switch) { if (dst->cpu_dp) {
err = dsa_cpu_port_ethtool_setup(dst->cpu_switch); err = dsa_cpu_port_ethtool_setup(dst->cpu_dp->ds);
if (err) if (err)
return err; return err;
} }
...@@ -484,8 +484,8 @@ static void dsa_dst_unapply(struct dsa_switch_tree *dst) ...@@ -484,8 +484,8 @@ static void dsa_dst_unapply(struct dsa_switch_tree *dst)
dsa_ds_unapply(dst, ds); dsa_ds_unapply(dst, ds);
} }
if (dst->cpu_switch) if (dst->cpu_dp)
dsa_cpu_port_ethtool_restore(dst->cpu_switch); dsa_cpu_port_ethtool_restore(dst->cpu_dp->ds);
pr_info("DSA: tree %d unapplied\n", dst->tree); pr_info("DSA: tree %d unapplied\n", dst->tree);
dst->applied = false; dst->applied = false;
...@@ -518,10 +518,8 @@ static int dsa_cpu_parse(struct dsa_port *port, u32 index, ...@@ -518,10 +518,8 @@ static int dsa_cpu_parse(struct dsa_port *port, u32 index,
if (!dst->master_netdev) if (!dst->master_netdev)
dst->master_netdev = ethernet_dev; dst->master_netdev = ethernet_dev;
if (!dst->cpu_switch) { if (!dst->cpu_dp)
dst->cpu_switch = ds; dst->cpu_dp = port;
dst->cpu_port = index;
}
tag_protocol = ds->ops->get_tag_protocol(ds); tag_protocol = ds->ops->get_tag_protocol(ds);
dst->tag_ops = dsa_resolve_tag_protocol(tag_protocol); dst->tag_ops = dsa_resolve_tag_protocol(tag_protocol);
......
...@@ -115,13 +115,12 @@ static int dsa_switch_setup_one(struct dsa_switch *ds, struct device *parent) ...@@ -115,13 +115,12 @@ static int dsa_switch_setup_one(struct dsa_switch *ds, struct device *parent)
continue; continue;
if (!strcmp(name, "cpu")) { if (!strcmp(name, "cpu")) {
if (dst->cpu_switch) { if (dst->cpu_dp) {
netdev_err(dst->master_netdev, netdev_err(dst->master_netdev,
"multiple cpu ports?!\n"); "multiple cpu ports?!\n");
return -EINVAL; return -EINVAL;
} }
dst->cpu_switch = ds; dst->cpu_dp = &ds->ports[i];
dst->cpu_port = i;
ds->cpu_port_mask |= 1 << i; ds->cpu_port_mask |= 1 << i;
} else if (!strcmp(name, "dsa")) { } else if (!strcmp(name, "dsa")) {
ds->dsa_port_mask |= 1 << i; ds->dsa_port_mask |= 1 << i;
...@@ -144,7 +143,7 @@ static int dsa_switch_setup_one(struct dsa_switch *ds, struct device *parent) ...@@ -144,7 +143,7 @@ static int dsa_switch_setup_one(struct dsa_switch *ds, struct device *parent)
* tagging protocol to the preferred tagging format of this * tagging protocol to the preferred tagging format of this
* switch. * switch.
*/ */
if (dst->cpu_switch == ds) { if (dst->cpu_dp->ds == ds) {
enum dsa_tag_protocol tag_protocol; enum dsa_tag_protocol tag_protocol;
tag_protocol = ops->get_tag_protocol(ds); tag_protocol = ops->get_tag_protocol(ds);
...@@ -624,7 +623,6 @@ static int dsa_setup_dst(struct dsa_switch_tree *dst, struct net_device *dev, ...@@ -624,7 +623,6 @@ static int dsa_setup_dst(struct dsa_switch_tree *dst, struct net_device *dev,
dst->pd = pd; dst->pd = pd;
dst->master_netdev = dev; dst->master_netdev = dev;
dst->cpu_port = -1;
for (i = 0; i < pd->nr_chips; i++) { for (i = 0; i < pd->nr_chips; i++) {
struct dsa_switch *ds; struct dsa_switch *ds;
...@@ -735,7 +733,7 @@ static void dsa_remove_dst(struct dsa_switch_tree *dst) ...@@ -735,7 +733,7 @@ static void dsa_remove_dst(struct dsa_switch_tree *dst)
dsa_switch_destroy(ds); dsa_switch_destroy(ds);
} }
dsa_cpu_port_ethtool_restore(dst->cpu_switch); dsa_cpu_port_ethtool_restore(dst->cpu_dp->ds);
dev_put(dst->master_netdev); dev_put(dst->master_netdev);
} }
......
...@@ -821,8 +821,8 @@ static void dsa_cpu_port_get_ethtool_stats(struct net_device *dev, ...@@ -821,8 +821,8 @@ static void dsa_cpu_port_get_ethtool_stats(struct net_device *dev,
uint64_t *data) uint64_t *data)
{ {
struct dsa_switch_tree *dst = dev->dsa_ptr; struct dsa_switch_tree *dst = dev->dsa_ptr;
struct dsa_switch *ds = dst->cpu_switch; struct dsa_switch *ds = dst->cpu_dp->ds;
s8 cpu_port = dst->cpu_port; s8 cpu_port = dst->cpu_dp->index;
int count = 0; int count = 0;
if (dst->master_ethtool_ops.get_sset_count) { if (dst->master_ethtool_ops.get_sset_count) {
...@@ -838,7 +838,7 @@ static void dsa_cpu_port_get_ethtool_stats(struct net_device *dev, ...@@ -838,7 +838,7 @@ static void dsa_cpu_port_get_ethtool_stats(struct net_device *dev,
static int dsa_cpu_port_get_sset_count(struct net_device *dev, int sset) static int dsa_cpu_port_get_sset_count(struct net_device *dev, int sset)
{ {
struct dsa_switch_tree *dst = dev->dsa_ptr; struct dsa_switch_tree *dst = dev->dsa_ptr;
struct dsa_switch *ds = dst->cpu_switch; struct dsa_switch *ds = dst->cpu_dp->ds;
int count = 0; int count = 0;
if (dst->master_ethtool_ops.get_sset_count) if (dst->master_ethtool_ops.get_sset_count)
...@@ -854,8 +854,8 @@ static void dsa_cpu_port_get_strings(struct net_device *dev, ...@@ -854,8 +854,8 @@ static void dsa_cpu_port_get_strings(struct net_device *dev,
uint32_t stringset, uint8_t *data) uint32_t stringset, uint8_t *data)
{ {
struct dsa_switch_tree *dst = dev->dsa_ptr; struct dsa_switch_tree *dst = dev->dsa_ptr;
struct dsa_switch *ds = dst->cpu_switch; struct dsa_switch *ds = dst->cpu_dp->ds;
s8 cpu_port = dst->cpu_port; s8 cpu_port = dst->cpu_dp->index;
int len = ETH_GSTRING_LEN; int len = ETH_GSTRING_LEN;
int mcount = 0, count; int mcount = 0, count;
unsigned int i; unsigned int i;
......
...@@ -101,7 +101,7 @@ static struct sk_buff *brcm_tag_rcv(struct sk_buff *skb, struct net_device *dev, ...@@ -101,7 +101,7 @@ static struct sk_buff *brcm_tag_rcv(struct sk_buff *skb, struct net_device *dev,
int source_port; int source_port;
u8 *brcm_tag; u8 *brcm_tag;
ds = dst->cpu_switch; ds = dst->cpu_dp->ds;
if (unlikely(!pskb_may_pull(skb, BRCM_TAG_LEN))) if (unlikely(!pskb_may_pull(skb, BRCM_TAG_LEN)))
goto out_drop; goto out_drop;
......
...@@ -99,7 +99,7 @@ static struct sk_buff *qca_tag_rcv(struct sk_buff *skb, struct net_device *dev, ...@@ -99,7 +99,7 @@ static struct sk_buff *qca_tag_rcv(struct sk_buff *skb, struct net_device *dev,
/* This protocol doesn't support cascading multiple switches so it's /* This protocol doesn't support cascading multiple switches so it's
* safe to assume the switch is first in the tree * safe to assume the switch is first in the tree
*/ */
ds = dst->cpu_switch; ds = dst->cpu_dp->ds;
if (!ds) if (!ds)
goto out_drop; goto out_drop;
......
...@@ -67,7 +67,7 @@ static struct sk_buff *trailer_rcv(struct sk_buff *skb, struct net_device *dev, ...@@ -67,7 +67,7 @@ static struct sk_buff *trailer_rcv(struct sk_buff *skb, struct net_device *dev,
u8 *trailer; u8 *trailer;
int source_port; int source_port;
ds = dst->cpu_switch; ds = dst->cpu_dp->ds;
if (skb_linearize(skb)) if (skb_linearize(skb))
goto out_drop; goto out_drop;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment