mlxsw: spectrum_span: Add per-ASIC SPAN agent operations
authorIdo Schimmel <idosch@mellanox.com>
Tue, 14 Jul 2020 14:20:56 +0000 (17:20 +0300)
committerDavid S. Miller <davem@davemloft.net>
Tue, 14 Jul 2020 21:50:49 +0000 (14:50 -0700)
The various SPAN agent types differ in their mirror targets (i.e.,
physical port netdev vs. VLAN netdev) and the encapsulation headers that
they need to encapsulate the mirrored packets with.

The Spectrum-2 and Spectrum-3 ASICs support a SPAN agent type that is
able to mirror towards the CPU, whereas the Spectrum-1 ASIC does not.

Prepare for the addition of this new SPAN agent type by splitting the
SPAN agent operations to be per-ASIC.

Reviewed-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: Petr Machata <petrm@mellanox.com>
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlxsw/spectrum_span.c

index 6374765..6a257eb 100644 (file)
@@ -22,6 +22,8 @@ struct mlxsw_sp_span {
        struct work_struct work;
        struct mlxsw_sp *mlxsw_sp;
        const struct mlxsw_sp_span_trigger_ops **span_trigger_ops_arr;
+       const struct mlxsw_sp_span_entry_ops **span_entry_ops_arr;
+       size_t span_entry_ops_arr_size;
        struct list_head analyzed_ports_list;
        struct mutex analyzed_ports_lock; /* Protects analyzed_ports_list */
        struct list_head trigger_entries_list;
@@ -626,7 +628,19 @@ struct mlxsw_sp_span_entry_ops mlxsw_sp_span_entry_ops_vlan = {
 };
 
 static const
-struct mlxsw_sp_span_entry_ops *const mlxsw_sp_span_entry_types[] = {
+struct mlxsw_sp_span_entry_ops *mlxsw_sp1_span_entry_ops_arr[] = {
+       &mlxsw_sp_span_entry_ops_phys,
+#if IS_ENABLED(CONFIG_NET_IPGRE)
+       &mlxsw_sp_span_entry_ops_gretap4,
+#endif
+#if IS_ENABLED(CONFIG_IPV6_GRE)
+       &mlxsw_sp_span_entry_ops_gretap6,
+#endif
+       &mlxsw_sp_span_entry_ops_vlan,
+};
+
+static const
+struct mlxsw_sp_span_entry_ops *mlxsw_sp2_span_entry_ops_arr[] = {
        &mlxsw_sp_span_entry_ops_phys,
 #if IS_ENABLED(CONFIG_NET_IPGRE)
        &mlxsw_sp_span_entry_ops_gretap4,
@@ -894,11 +908,12 @@ static const struct mlxsw_sp_span_entry_ops *
 mlxsw_sp_span_entry_ops(struct mlxsw_sp *mlxsw_sp,
                        const struct net_device *to_dev)
 {
+       struct mlxsw_sp_span *span = mlxsw_sp->span;
        size_t i;
 
-       for (i = 0; i < ARRAY_SIZE(mlxsw_sp_span_entry_types); ++i)
-               if (mlxsw_sp_span_entry_types[i]->can_handle(to_dev))
-                       return mlxsw_sp_span_entry_types[i];
+       for (i = 0; i < span->span_entry_ops_arr_size; ++i)
+               if (span->span_entry_ops_arr[i]->can_handle(to_dev))
+                       return span->span_entry_ops_arr[i];
 
        return NULL;
 }
@@ -1519,7 +1534,11 @@ void mlxsw_sp_span_trigger_disable(struct mlxsw_sp_port *mlxsw_sp_port,
 
 static int mlxsw_sp1_span_init(struct mlxsw_sp *mlxsw_sp)
 {
+       size_t arr_size = ARRAY_SIZE(mlxsw_sp1_span_entry_ops_arr);
+
        mlxsw_sp->span->span_trigger_ops_arr = mlxsw_sp1_span_trigger_ops_arr;
+       mlxsw_sp->span->span_entry_ops_arr = mlxsw_sp1_span_entry_ops_arr;
+       mlxsw_sp->span->span_entry_ops_arr_size = arr_size;
 
        return 0;
 }
@@ -1536,7 +1555,11 @@ const struct mlxsw_sp_span_ops mlxsw_sp1_span_ops = {
 
 static int mlxsw_sp2_span_init(struct mlxsw_sp *mlxsw_sp)
 {
+       size_t arr_size = ARRAY_SIZE(mlxsw_sp2_span_entry_ops_arr);
+
        mlxsw_sp->span->span_trigger_ops_arr = mlxsw_sp2_span_trigger_ops_arr;
+       mlxsw_sp->span->span_entry_ops_arr = mlxsw_sp2_span_entry_ops_arr;
+       mlxsw_sp->span->span_entry_ops_arr_size = arr_size;
 
        return 0;
 }