You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1358 lines
41 KiB
1358 lines
41 KiB
From 73d0c14afb1f4a952800aeef0d20a0227dfd3d28 Mon Sep 17 00:00:00 2001
|
|
From: Alaa Hleihel <ahleihel@redhat.com>
|
|
Date: Tue, 19 May 2020 07:48:35 -0400
|
|
Subject: [PATCH 214/312] [netdrv] net/mlx5: E-Switch, Refactor chains and
|
|
priorities
|
|
|
|
Message-id: <20200519074934.6303-5-ahleihel@redhat.com>
|
|
Patchwork-id: 310505
|
|
Patchwork-instance: patchwork
|
|
O-Subject: [RHEL8.3 BZ 1663246 04/63] net/mlx5: E-Switch, Refactor chains and priorities
|
|
Bugzilla: 1663246
|
|
RH-Acked-by: Marcelo Leitner <mleitner@redhat.com>
|
|
RH-Acked-by: Jarod Wilson <jarod@redhat.com>
|
|
RH-Acked-by: John Linville <linville@redhat.com>
|
|
RH-Acked-by: Ivan Vecera <ivecera@redhat.com>
|
|
RH-Acked-by: Tony Camuso <tcamuso@redhat.com>
|
|
RH-Acked-by: Kamal Heib <kheib@redhat.com>
|
|
|
|
Bugzilla: http://bugzilla.redhat.com/1663246
|
|
Upstream: v5.6-rc1
|
|
Conflicts:
|
|
- drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c
|
|
Minor context diff due to code that was previously changed by
|
|
this commit:
|
|
93b8a7ecb728 ("net/mlx5: Fix lowest FDB pool size")
|
|
The same conflict was seen upstream in merge commit:
|
|
4d8773b68e83 ("Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net")
|
|
|
|
- drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads_chains.c
|
|
The previous file had a conflict at the last value in array ESW_POOLS,
|
|
since the whole code moved to this file, make sure we don't lose the
|
|
correct value of that field.
|
|
|
|
commit 39ac237ce00968545e7298faa9e07ecb7e440fb5
|
|
Author: Paul Blakey <paulb@mellanox.com>
|
|
Date: Wed Jan 8 12:11:04 2020 +0200
|
|
|
|
net/mlx5: E-Switch, Refactor chains and priorities
|
|
|
|
To support the entire chain and prio range (32bit + 16bit),
|
|
instead of a using a static array of chains/prios of limited size, create
|
|
them dynamically, and use a rhashtable to search for existing chains/prio
|
|
combinations.
|
|
|
|
This will be used in next patch to actually increase the number using
|
|
unamanged tables support and ignore flow level capability.
|
|
|
|
Signed-off-by: Paul Blakey <paulb@mellanox.com>
|
|
Reviewed-by: Roi Dayan <roid@mellanox.com>
|
|
Reviewed-by: Oz Shlomo <ozsh@mellanox.com>
|
|
Reviewed-by: Mark Bloch <markb@mellanox.com>
|
|
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
|
|
|
|
Signed-off-by: Alaa Hleihel <ahleihel@redhat.com>
|
|
Signed-off-by: Frantisek Hrbata <fhrbata@redhat.com>
|
|
---
|
|
drivers/net/ethernet/mellanox/mlx5/core/Makefile | 2 +-
|
|
drivers/net/ethernet/mellanox/mlx5/core/en_rep.c | 11 +-
|
|
drivers/net/ethernet/mellanox/mlx5/core/en_tc.c | 14 +-
|
|
drivers/net/ethernet/mellanox/mlx5/core/eswitch.h | 33 +-
|
|
.../ethernet/mellanox/mlx5/core/eswitch_offloads.c | 303 ++----------
|
|
.../mellanox/mlx5/core/eswitch_offloads_chains.c | 542 +++++++++++++++++++++
|
|
.../mellanox/mlx5/core/eswitch_offloads_chains.h | 27 +
|
|
7 files changed, 646 insertions(+), 286 deletions(-)
|
|
create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads_chains.c
|
|
create mode 100644 drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads_chains.h
|
|
|
|
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/Makefile b/drivers/net/ethernet/mellanox/mlx5/core/Makefile
|
|
index d14a13557c0c..eb3ce7912730 100644
|
|
--- a/drivers/net/ethernet/mellanox/mlx5/core/Makefile
|
|
+++ b/drivers/net/ethernet/mellanox/mlx5/core/Makefile
|
|
@@ -41,7 +41,7 @@ mlx5_core-$(CONFIG_MLX5_ESWITCH) += en_rep.o en_tc.o en/tc_tun.o lib/port_tu
|
|
# Core extra
|
|
#
|
|
mlx5_core-$(CONFIG_MLX5_ESWITCH) += eswitch.o eswitch_offloads.o eswitch_offloads_termtbl.o \
|
|
- ecpf.o rdma.o
|
|
+ ecpf.o rdma.o eswitch_offloads_chains.o
|
|
mlx5_core-$(CONFIG_MLX5_MPFS) += lib/mpfs.o
|
|
mlx5_core-$(CONFIG_VXLAN) += lib/vxlan.o
|
|
mlx5_core-$(CONFIG_PTP_1588_CLOCK) += lib/clock.o
|
|
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c b/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c
|
|
index bde634ca85d0..dcf97bd4fa49 100644
|
|
--- a/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c
|
|
+++ b/drivers/net/ethernet/mellanox/mlx5/core/en_rep.c
|
|
@@ -41,6 +41,7 @@
|
|
#include <net/ipv6_stubs.h>
|
|
|
|
#include "eswitch.h"
|
|
+#include "eswitch_offloads_chains.h"
|
|
#include "en.h"
|
|
#include "en_rep.h"
|
|
#include "en_tc.h"
|
|
@@ -1238,25 +1239,25 @@ static int mlx5e_rep_setup_ft_cb(enum tc_setup_type type, void *type_data,
|
|
case TC_SETUP_CLSFLOWER:
|
|
memcpy(&tmp, f, sizeof(*f));
|
|
|
|
- if (!mlx5_eswitch_prios_supported(esw) ||
|
|
+ if (!mlx5_esw_chains_prios_supported(esw) ||
|
|
tmp.common.chain_index)
|
|
return -EOPNOTSUPP;
|
|
|
|
/* Re-use tc offload path by moving the ft flow to the
|
|
* reserved ft chain.
|
|
*
|
|
- * FT offload can use prio range [0, INT_MAX], so we
|
|
- * normalize it to range [1, mlx5_eswitch_get_prio_range(esw)]
|
|
+ * FT offload can use prio range [0, INT_MAX], so we normalize
|
|
+ * it to range [1, mlx5_esw_chains_get_prio_range(esw)]
|
|
* as with tc, where prio 0 isn't supported.
|
|
*
|
|
* We only support chain 0 of FT offload.
|
|
*/
|
|
- if (tmp.common.prio >= mlx5_eswitch_get_prio_range(esw))
|
|
+ if (tmp.common.prio >= mlx5_esw_chains_get_prio_range(esw))
|
|
return -EOPNOTSUPP;
|
|
if (tmp.common.chain_index != 0)
|
|
return -EOPNOTSUPP;
|
|
|
|
- tmp.common.chain_index = mlx5_eswitch_get_ft_chain(esw);
|
|
+ tmp.common.chain_index = mlx5_esw_chains_get_ft_chain(esw);
|
|
tmp.common.prio++;
|
|
err = mlx5e_rep_setup_tc_cls_flower(priv, &tmp, flags);
|
|
memcpy(&f->stats, &tmp.stats, sizeof(f->stats));
|
|
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c b/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c
|
|
index 3df69f8ed58a..24f7af806da2 100644
|
|
--- a/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c
|
|
+++ b/drivers/net/ethernet/mellanox/mlx5/core/en_tc.c
|
|
@@ -51,6 +51,7 @@
|
|
#include "en_rep.h"
|
|
#include "en_tc.h"
|
|
#include "eswitch.h"
|
|
+#include "eswitch_offloads_chains.h"
|
|
#include "fs_core.h"
|
|
#include "en/port.h"
|
|
#include "en/tc_tun.h"
|
|
@@ -1083,7 +1084,7 @@ mlx5e_tc_offload_to_slow_path(struct mlx5_eswitch *esw,
|
|
memcpy(slow_attr, flow->esw_attr, sizeof(*slow_attr));
|
|
slow_attr->action = MLX5_FLOW_CONTEXT_ACTION_FWD_DEST;
|
|
slow_attr->split_count = 0;
|
|
- slow_attr->dest_chain = FDB_TC_SLOW_PATH_CHAIN;
|
|
+ slow_attr->flags |= MLX5_ESW_ATTR_FLAG_SLOW_PATH;
|
|
|
|
rule = mlx5e_tc_offload_fdb_rules(esw, flow, spec, slow_attr);
|
|
if (!IS_ERR(rule))
|
|
@@ -1100,7 +1101,7 @@ mlx5e_tc_unoffload_from_slow_path(struct mlx5_eswitch *esw,
|
|
memcpy(slow_attr, flow->esw_attr, sizeof(*slow_attr));
|
|
slow_attr->action = MLX5_FLOW_CONTEXT_ACTION_FWD_DEST;
|
|
slow_attr->split_count = 0;
|
|
- slow_attr->dest_chain = FDB_TC_SLOW_PATH_CHAIN;
|
|
+ slow_attr->flags |= MLX5_ESW_ATTR_FLAG_SLOW_PATH;
|
|
mlx5e_tc_unoffload_fdb_rules(esw, flow, slow_attr);
|
|
flow_flag_clear(flow, SLOW);
|
|
}
|
|
@@ -1160,19 +1161,18 @@ mlx5e_tc_add_fdb_flow(struct mlx5e_priv *priv,
|
|
struct netlink_ext_ack *extack)
|
|
{
|
|
struct mlx5_eswitch *esw = priv->mdev->priv.eswitch;
|
|
- u32 max_chain = mlx5_eswitch_get_chain_range(esw);
|
|
struct mlx5_esw_flow_attr *attr = flow->esw_attr;
|
|
struct mlx5e_tc_flow_parse_attr *parse_attr = attr->parse_attr;
|
|
- u16 max_prio = mlx5_eswitch_get_prio_range(esw);
|
|
struct net_device *out_dev, *encap_dev = NULL;
|
|
struct mlx5_fc *counter = NULL;
|
|
struct mlx5e_rep_priv *rpriv;
|
|
struct mlx5e_priv *out_priv;
|
|
bool encap_valid = true;
|
|
+ u32 max_prio, max_chain;
|
|
int err = 0;
|
|
int out_index;
|
|
|
|
- if (!mlx5_eswitch_prios_supported(esw) && attr->prio != 1) {
|
|
+ if (!mlx5_esw_chains_prios_supported(esw) && attr->prio != 1) {
|
|
NL_SET_ERR_MSG(extack, "E-switch priorities unsupported, upgrade FW");
|
|
return -EOPNOTSUPP;
|
|
}
|
|
@@ -1182,11 +1182,13 @@ mlx5e_tc_add_fdb_flow(struct mlx5e_priv *priv,
|
|
* FDB_FT_CHAIN which is outside tc range.
|
|
* See mlx5e_rep_setup_ft_cb().
|
|
*/
|
|
+ max_chain = mlx5_esw_chains_get_chain_range(esw);
|
|
if (!mlx5e_is_ft_flow(flow) && attr->chain > max_chain) {
|
|
NL_SET_ERR_MSG(extack, "Requested chain is out of supported range");
|
|
return -EOPNOTSUPP;
|
|
}
|
|
|
|
+ max_prio = mlx5_esw_chains_get_prio_range(esw);
|
|
if (attr->prio > max_prio) {
|
|
NL_SET_ERR_MSG(extack, "Requested priority is out of supported range");
|
|
return -EOPNOTSUPP;
|
|
@@ -3536,7 +3538,7 @@ static int parse_tc_fdb_actions(struct mlx5e_priv *priv,
|
|
break;
|
|
case FLOW_ACTION_GOTO: {
|
|
u32 dest_chain = act->chain_index;
|
|
- u32 max_chain = mlx5_eswitch_get_chain_range(esw);
|
|
+ u32 max_chain = mlx5_esw_chains_get_chain_range(esw);
|
|
|
|
if (ft_flow) {
|
|
NL_SET_ERR_MSG_MOD(extack, "Goto action is not supported");
|
|
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/eswitch.h b/drivers/net/ethernet/mellanox/mlx5/core/eswitch.h
|
|
index 90995ab7e1a8..dd7b9a96045c 100644
|
|
--- a/drivers/net/ethernet/mellanox/mlx5/core/eswitch.h
|
|
+++ b/drivers/net/ethernet/mellanox/mlx5/core/eswitch.h
|
|
@@ -176,7 +176,10 @@ enum offloads_fdb_flags {
|
|
ESW_FDB_CHAINS_AND_PRIOS_SUPPORTED = BIT(0),
|
|
};
|
|
|
|
+#ifdef __GENKSYMS__
|
|
extern const unsigned int ESW_POOLS[4];
|
|
+#endif
|
|
+struct mlx5_esw_chains_priv;
|
|
|
|
struct mlx5_eswitch_fdb {
|
|
union {
|
|
@@ -201,18 +204,18 @@ struct mlx5_eswitch_fdb {
|
|
struct mlx5_flow_handle *miss_rule_multi;
|
|
int vlan_push_pop_refcount;
|
|
|
|
+#ifndef __GENKSYMS__
|
|
+ struct mlx5_esw_chains_priv *esw_chains_priv;
|
|
+#else
|
|
struct {
|
|
struct mlx5_flow_table *fdb;
|
|
u32 num_rules;
|
|
-#ifndef __GENKSYMS__
|
|
- } fdb_prio[FDB_NUM_CHAINS][FDB_TC_MAX_PRIO + 1][FDB_TC_LEVELS_PER_PRIO];
|
|
-#else
|
|
} fdb_prio[FDB_TC_MAX_CHAIN + 1][FDB_TC_MAX_PRIO + 1][FDB_TC_LEVELS_PER_PRIO];
|
|
-#endif
|
|
/* Protects fdb_prio table */
|
|
struct mutex fdb_prio_lock;
|
|
|
|
int fdb_left[ARRAY_SIZE(ESW_POOLS)];
|
|
+#endif
|
|
} offloads;
|
|
};
|
|
u32 flags;
|
|
@@ -378,18 +381,6 @@ mlx5_eswitch_del_fwd_rule(struct mlx5_eswitch *esw,
|
|
struct mlx5_flow_handle *rule,
|
|
struct mlx5_esw_flow_attr *attr);
|
|
|
|
-bool
|
|
-mlx5_eswitch_prios_supported(struct mlx5_eswitch *esw);
|
|
-
|
|
-u16
|
|
-mlx5_eswitch_get_prio_range(struct mlx5_eswitch *esw);
|
|
-
|
|
-u32
|
|
-mlx5_eswitch_get_chain_range(struct mlx5_eswitch *esw);
|
|
-
|
|
-unsigned int
|
|
-mlx5_eswitch_get_ft_chain(struct mlx5_eswitch *esw);
|
|
-
|
|
struct mlx5_flow_handle *
|
|
mlx5_eswitch_create_vport_rx_rule(struct mlx5_eswitch *esw, u16 vport,
|
|
struct mlx5_flow_destination *dest);
|
|
@@ -414,6 +405,11 @@ enum {
|
|
MLX5_ESW_DEST_ENCAP_VALID = BIT(1),
|
|
};
|
|
|
|
+enum {
|
|
+ MLX5_ESW_ATTR_FLAG_VLAN_HANDLED = BIT(0),
|
|
+ MLX5_ESW_ATTR_FLAG_SLOW_PATH = BIT(1),
|
|
+};
|
|
+
|
|
struct mlx5_esw_flow_attr {
|
|
struct mlx5_eswitch_rep *in_rep;
|
|
struct mlx5_core_dev *in_mdev;
|
|
@@ -427,7 +423,9 @@ struct mlx5_esw_flow_attr {
|
|
u16 vlan_vid[MLX5_FS_VLAN_DEPTH];
|
|
u8 vlan_prio[MLX5_FS_VLAN_DEPTH];
|
|
u8 total_vlan;
|
|
+#ifdef __GENKSYMS__
|
|
bool vlan_handled;
|
|
+#endif
|
|
struct {
|
|
u32 flags;
|
|
struct mlx5_eswitch_rep *rep;
|
|
@@ -442,6 +440,9 @@ struct mlx5_esw_flow_attr {
|
|
u32 chain;
|
|
u16 prio;
|
|
u32 dest_chain;
|
|
+#ifndef __GENKSYMS__
|
|
+ u32 flags;
|
|
+#endif
|
|
struct mlx5e_tc_flow_parse_attr *parse_attr;
|
|
};
|
|
|
|
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c b/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c
|
|
index bd750f069e6c..b8db12635730 100644
|
|
--- a/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c
|
|
+++ b/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c
|
|
@@ -37,6 +37,7 @@
|
|
#include <linux/mlx5/fs.h>
|
|
#include "mlx5_core.h"
|
|
#include "eswitch.h"
|
|
+#include "eswitch_offloads_chains.h"
|
|
#include "rdma.h"
|
|
#include "en.h"
|
|
#include "fs_core.h"
|
|
@@ -47,10 +48,6 @@
|
|
* one for multicast.
|
|
*/
|
|
#define MLX5_ESW_MISS_FLOWS (2)
|
|
-
|
|
-#define fdb_prio_table(esw, chain, prio, level) \
|
|
- (esw)->fdb_table.offloads.fdb_prio[(chain)][(prio)][(level)]
|
|
-
|
|
#define UPLINK_REP_INDEX 0
|
|
|
|
static struct mlx5_eswitch_rep *mlx5_eswitch_get_rep(struct mlx5_eswitch *esw,
|
|
@@ -62,37 +59,6 @@ static struct mlx5_eswitch_rep *mlx5_eswitch_get_rep(struct mlx5_eswitch *esw,
|
|
return &esw->offloads.vport_reps[idx];
|
|
}
|
|
|
|
-static struct mlx5_flow_table *
|
|
-esw_get_prio_table(struct mlx5_eswitch *esw, u32 chain, u16 prio, int level);
|
|
-static void
|
|
-esw_put_prio_table(struct mlx5_eswitch *esw, u32 chain, u16 prio, int level);
|
|
-
|
|
-bool mlx5_eswitch_prios_supported(struct mlx5_eswitch *esw)
|
|
-{
|
|
- return (!!(esw->fdb_table.flags & ESW_FDB_CHAINS_AND_PRIOS_SUPPORTED));
|
|
-}
|
|
-
|
|
-u32 mlx5_eswitch_get_chain_range(struct mlx5_eswitch *esw)
|
|
-{
|
|
- if (esw->fdb_table.flags & ESW_FDB_CHAINS_AND_PRIOS_SUPPORTED)
|
|
- return FDB_TC_MAX_CHAIN;
|
|
-
|
|
- return 0;
|
|
-}
|
|
-
|
|
-u32 mlx5_eswitch_get_ft_chain(struct mlx5_eswitch *esw)
|
|
-{
|
|
- return mlx5_eswitch_get_chain_range(esw) + 1;
|
|
-}
|
|
-
|
|
-u16 mlx5_eswitch_get_prio_range(struct mlx5_eswitch *esw)
|
|
-{
|
|
- if (esw->fdb_table.flags & ESW_FDB_CHAINS_AND_PRIOS_SUPPORTED)
|
|
- return FDB_TC_MAX_PRIO;
|
|
-
|
|
- return 1;
|
|
-}
|
|
-
|
|
static bool
|
|
esw_check_ingress_prio_tag_enabled(const struct mlx5_eswitch *esw,
|
|
const struct mlx5_vport *vport)
|
|
@@ -180,10 +146,17 @@ mlx5_eswitch_add_offloaded_rule(struct mlx5_eswitch *esw,
|
|
}
|
|
|
|
if (flow_act.action & MLX5_FLOW_CONTEXT_ACTION_FWD_DEST) {
|
|
- if (attr->dest_chain) {
|
|
- struct mlx5_flow_table *ft;
|
|
+ struct mlx5_flow_table *ft;
|
|
|
|
- ft = esw_get_prio_table(esw, attr->dest_chain, 1, 0);
|
|
+ if (attr->flags & MLX5_ESW_ATTR_FLAG_SLOW_PATH) {
|
|
+ flow_act.flags |= FLOW_ACT_IGNORE_FLOW_LEVEL;
|
|
+ dest[i].type = MLX5_FLOW_DESTINATION_TYPE_FLOW_TABLE;
|
|
+ dest[i].ft = esw->fdb_table.offloads.slow_fdb;
|
|
+ i++;
|
|
+ } else if (attr->dest_chain) {
|
|
+ flow_act.flags |= FLOW_ACT_IGNORE_FLOW_LEVEL;
|
|
+ ft = mlx5_esw_chains_get_table(esw, attr->dest_chain,
|
|
+ 1, 0);
|
|
if (IS_ERR(ft)) {
|
|
rule = ERR_CAST(ft);
|
|
goto err_create_goto_table;
|
|
@@ -228,7 +201,8 @@ mlx5_eswitch_add_offloaded_rule(struct mlx5_eswitch *esw,
|
|
if (flow_act.action & MLX5_FLOW_CONTEXT_ACTION_MOD_HDR)
|
|
flow_act.modify_hdr = attr->modify_hdr;
|
|
|
|
- fdb = esw_get_prio_table(esw, attr->chain, attr->prio, !!split);
|
|
+ fdb = mlx5_esw_chains_get_table(esw, attr->chain, attr->prio,
|
|
+ !!split);
|
|
if (IS_ERR(fdb)) {
|
|
rule = ERR_CAST(fdb);
|
|
goto err_esw_get;
|
|
@@ -247,10 +221,10 @@ mlx5_eswitch_add_offloaded_rule(struct mlx5_eswitch *esw,
|
|
return rule;
|
|
|
|
err_add_rule:
|
|
- esw_put_prio_table(esw, attr->chain, attr->prio, !!split);
|
|
+ mlx5_esw_chains_put_table(esw, attr->chain, attr->prio, !!split);
|
|
err_esw_get:
|
|
- if (attr->dest_chain)
|
|
- esw_put_prio_table(esw, attr->dest_chain, 1, 0);
|
|
+ if (!(attr->flags & MLX5_ESW_ATTR_FLAG_SLOW_PATH) && attr->dest_chain)
|
|
+ mlx5_esw_chains_put_table(esw, attr->dest_chain, 1, 0);
|
|
err_create_goto_table:
|
|
return rule;
|
|
}
|
|
@@ -267,13 +241,13 @@ mlx5_eswitch_add_fwd_rule(struct mlx5_eswitch *esw,
|
|
struct mlx5_flow_handle *rule;
|
|
int i;
|
|
|
|
- fast_fdb = esw_get_prio_table(esw, attr->chain, attr->prio, 0);
|
|
+ fast_fdb = mlx5_esw_chains_get_table(esw, attr->chain, attr->prio, 0);
|
|
if (IS_ERR(fast_fdb)) {
|
|
rule = ERR_CAST(fast_fdb);
|
|
goto err_get_fast;
|
|
}
|
|
|
|
- fwd_fdb = esw_get_prio_table(esw, attr->chain, attr->prio, 1);
|
|
+ fwd_fdb = mlx5_esw_chains_get_table(esw, attr->chain, attr->prio, 1);
|
|
if (IS_ERR(fwd_fdb)) {
|
|
rule = ERR_CAST(fwd_fdb);
|
|
goto err_get_fwd;
|
|
@@ -310,9 +284,9 @@ mlx5_eswitch_add_fwd_rule(struct mlx5_eswitch *esw,
|
|
|
|
return rule;
|
|
add_err:
|
|
- esw_put_prio_table(esw, attr->chain, attr->prio, 1);
|
|
+ mlx5_esw_chains_put_table(esw, attr->chain, attr->prio, 1);
|
|
err_get_fwd:
|
|
- esw_put_prio_table(esw, attr->chain, attr->prio, 0);
|
|
+ mlx5_esw_chains_put_table(esw, attr->chain, attr->prio, 0);
|
|
err_get_fast:
|
|
return rule;
|
|
}
|
|
@@ -337,12 +311,13 @@ __mlx5_eswitch_del_rule(struct mlx5_eswitch *esw,
|
|
atomic64_dec(&esw->offloads.num_flows);
|
|
|
|
if (fwd_rule) {
|
|
- esw_put_prio_table(esw, attr->chain, attr->prio, 1);
|
|
- esw_put_prio_table(esw, attr->chain, attr->prio, 0);
|
|
+ mlx5_esw_chains_put_table(esw, attr->chain, attr->prio, 1);
|
|
+ mlx5_esw_chains_put_table(esw, attr->chain, attr->prio, 0);
|
|
} else {
|
|
- esw_put_prio_table(esw, attr->chain, attr->prio, !!split);
|
|
+ mlx5_esw_chains_put_table(esw, attr->chain, attr->prio,
|
|
+ !!split);
|
|
if (attr->dest_chain)
|
|
- esw_put_prio_table(esw, attr->dest_chain, 1, 0);
|
|
+ mlx5_esw_chains_put_table(esw, attr->dest_chain, 1, 0);
|
|
}
|
|
}
|
|
|
|
@@ -456,7 +431,7 @@ int mlx5_eswitch_add_vlan_action(struct mlx5_eswitch *esw,
|
|
if (err)
|
|
goto unlock;
|
|
|
|
- attr->vlan_handled = false;
|
|
+ attr->flags &= ~MLX5_ESW_ATTR_FLAG_VLAN_HANDLED;
|
|
|
|
vport = esw_vlan_action_get_vport(attr, push, pop);
|
|
|
|
@@ -464,7 +439,7 @@ int mlx5_eswitch_add_vlan_action(struct mlx5_eswitch *esw,
|
|
/* tracks VF --> wire rules without vlan push action */
|
|
if (attr->dests[0].rep->vport == MLX5_VPORT_UPLINK) {
|
|
vport->vlan_refcount++;
|
|
- attr->vlan_handled = true;
|
|
+ attr->flags |= MLX5_ESW_ATTR_FLAG_VLAN_HANDLED;
|
|
}
|
|
|
|
goto unlock;
|
|
@@ -495,7 +470,7 @@ int mlx5_eswitch_add_vlan_action(struct mlx5_eswitch *esw,
|
|
}
|
|
out:
|
|
if (!err)
|
|
- attr->vlan_handled = true;
|
|
+ attr->flags |= MLX5_ESW_ATTR_FLAG_VLAN_HANDLED;
|
|
unlock:
|
|
mutex_unlock(&esw->state_lock);
|
|
return err;
|
|
@@ -513,7 +488,7 @@ int mlx5_eswitch_del_vlan_action(struct mlx5_eswitch *esw,
|
|
if (mlx5_eswitch_vlan_actions_supported(esw->dev, 1))
|
|
return 0;
|
|
|
|
- if (!attr->vlan_handled)
|
|
+ if (!(attr->flags & MLX5_ESW_ATTR_FLAG_VLAN_HANDLED))
|
|
return 0;
|
|
|
|
push = !!(attr->action & MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH);
|
|
@@ -587,8 +562,8 @@ mlx5_eswitch_add_send_to_vport_rule(struct mlx5_eswitch *esw, u16 vport,
|
|
dest.vport.num = vport;
|
|
flow_act.action = MLX5_FLOW_CONTEXT_ACTION_FWD_DEST;
|
|
|
|
- flow_rule = mlx5_add_flow_rules(esw->fdb_table.offloads.slow_fdb, spec,
|
|
- &flow_act, &dest, 1);
|
|
+ flow_rule = mlx5_add_flow_rules(esw->fdb_table.offloads.slow_fdb,
|
|
+ spec, &flow_act, &dest, 1);
|
|
if (IS_ERR(flow_rule))
|
|
esw_warn(esw->dev, "FDB: Failed to add send to vport rule err %ld\n", PTR_ERR(flow_rule));
|
|
out:
|
|
@@ -829,8 +804,8 @@ static int esw_add_fdb_miss_rule(struct mlx5_eswitch *esw)
|
|
dest.vport.num = esw->manager_vport;
|
|
flow_act.action = MLX5_FLOW_CONTEXT_ACTION_FWD_DEST;
|
|
|
|
- flow_rule = mlx5_add_flow_rules(esw->fdb_table.offloads.slow_fdb, spec,
|
|
- &flow_act, &dest, 1);
|
|
+ flow_rule = mlx5_add_flow_rules(esw->fdb_table.offloads.slow_fdb,
|
|
+ spec, &flow_act, &dest, 1);
|
|
if (IS_ERR(flow_rule)) {
|
|
err = PTR_ERR(flow_rule);
|
|
esw_warn(esw->dev, "FDB: Failed to add unicast miss flow rule err %d\n", err);
|
|
@@ -844,8 +819,8 @@ static int esw_add_fdb_miss_rule(struct mlx5_eswitch *esw)
|
|
dmac_v = MLX5_ADDR_OF(fte_match_param, headers_v,
|
|
outer_headers.dmac_47_16);
|
|
dmac_v[0] = 0x01;
|
|
- flow_rule = mlx5_add_flow_rules(esw->fdb_table.offloads.slow_fdb, spec,
|
|
- &flow_act, &dest, 1);
|
|
+ flow_rule = mlx5_add_flow_rules(esw->fdb_table.offloads.slow_fdb,
|
|
+ spec, &flow_act, &dest, 1);
|
|
if (IS_ERR(flow_rule)) {
|
|
err = PTR_ERR(flow_rule);
|
|
esw_warn(esw->dev, "FDB: Failed to add multicast miss flow rule err %d\n", err);
|
|
@@ -860,175 +835,6 @@ static int esw_add_fdb_miss_rule(struct mlx5_eswitch *esw)
|
|
return err;
|
|
}
|
|
|
|
-#define ESW_OFFLOADS_NUM_GROUPS 4
|
|
-
|
|
-/* Firmware currently has 4 pool of 4 sizes that it supports (ESW_POOLS),
|
|
- * and a virtual memory region of 16M (ESW_SIZE), this region is duplicated
|
|
- * for each flow table pool. We can allocate up to 16M of each pool,
|
|
- * and we keep track of how much we used via put/get_sz_to_pool.
|
|
- * Firmware doesn't report any of this for now.
|
|
- * ESW_POOL is expected to be sorted from large to small
|
|
- */
|
|
-#define ESW_SIZE (16 * 1024 * 1024)
|
|
-const unsigned int ESW_POOLS[4] = { 4 * 1024 * 1024, 1 * 1024 * 1024,
|
|
- 64 * 1024, 128 };
|
|
-
|
|
-static int
|
|
-get_sz_from_pool(struct mlx5_eswitch *esw)
|
|
-{
|
|
- int sz = 0, i;
|
|
-
|
|
- for (i = 0; i < ARRAY_SIZE(ESW_POOLS); i++) {
|
|
- if (esw->fdb_table.offloads.fdb_left[i]) {
|
|
- --esw->fdb_table.offloads.fdb_left[i];
|
|
- sz = ESW_POOLS[i];
|
|
- break;
|
|
- }
|
|
- }
|
|
-
|
|
- return sz;
|
|
-}
|
|
-
|
|
-static void
|
|
-put_sz_to_pool(struct mlx5_eswitch *esw, int sz)
|
|
-{
|
|
- int i;
|
|
-
|
|
- for (i = 0; i < ARRAY_SIZE(ESW_POOLS); i++) {
|
|
- if (sz >= ESW_POOLS[i]) {
|
|
- ++esw->fdb_table.offloads.fdb_left[i];
|
|
- break;
|
|
- }
|
|
- }
|
|
-}
|
|
-
|
|
-static struct mlx5_flow_table *
|
|
-create_next_size_table(struct mlx5_eswitch *esw,
|
|
- struct mlx5_flow_namespace *ns,
|
|
- u16 table_prio,
|
|
- int level,
|
|
- u32 flags)
|
|
-{
|
|
- struct mlx5_flow_table_attr ft_attr = {};
|
|
- struct mlx5_flow_table *fdb;
|
|
- int sz;
|
|
-
|
|
- sz = get_sz_from_pool(esw);
|
|
- if (!sz)
|
|
- return ERR_PTR(-ENOSPC);
|
|
-
|
|
- ft_attr.max_fte = sz;
|
|
- ft_attr.prio = table_prio;
|
|
- ft_attr.level = level;
|
|
- ft_attr.flags = flags;
|
|
- ft_attr.autogroup.max_num_groups = ESW_OFFLOADS_NUM_GROUPS;
|
|
- fdb = mlx5_create_auto_grouped_flow_table_attr_(ns, &ft_attr);
|
|
- if (IS_ERR(fdb)) {
|
|
- esw_warn(esw->dev, "Failed to create FDB Table err %d (table prio: %d, level: %d, size: %d)\n",
|
|
- (int)PTR_ERR(fdb), table_prio, level, sz);
|
|
- put_sz_to_pool(esw, sz);
|
|
- }
|
|
-
|
|
- return fdb;
|
|
-}
|
|
-
|
|
-static struct mlx5_flow_table *
|
|
-esw_get_prio_table(struct mlx5_eswitch *esw, u32 chain, u16 prio, int level)
|
|
-{
|
|
- struct mlx5_core_dev *dev = esw->dev;
|
|
- struct mlx5_flow_table *fdb = NULL;
|
|
- struct mlx5_flow_namespace *ns;
|
|
- int table_prio, l = 0;
|
|
- u32 flags = 0;
|
|
-
|
|
- if (chain == FDB_TC_SLOW_PATH_CHAIN)
|
|
- return esw->fdb_table.offloads.slow_fdb;
|
|
-
|
|
- mutex_lock(&esw->fdb_table.offloads.fdb_prio_lock);
|
|
-
|
|
- fdb = fdb_prio_table(esw, chain, prio, level).fdb;
|
|
- if (fdb) {
|
|
- /* take ref on earlier levels as well */
|
|
- while (level >= 0)
|
|
- fdb_prio_table(esw, chain, prio, level--).num_rules++;
|
|
- mutex_unlock(&esw->fdb_table.offloads.fdb_prio_lock);
|
|
- return fdb;
|
|
- }
|
|
-
|
|
- ns = mlx5_get_fdb_sub_ns(dev, chain);
|
|
- if (!ns) {
|
|
- esw_warn(dev, "Failed to get FDB sub namespace\n");
|
|
- mutex_unlock(&esw->fdb_table.offloads.fdb_prio_lock);
|
|
- return ERR_PTR(-EOPNOTSUPP);
|
|
- }
|
|
-
|
|
- if (esw->offloads.encap != DEVLINK_ESWITCH_ENCAP_MODE_NONE)
|
|
- flags |= (MLX5_FLOW_TABLE_TUNNEL_EN_REFORMAT |
|
|
- MLX5_FLOW_TABLE_TUNNEL_EN_DECAP);
|
|
-
|
|
- table_prio = prio - 1;
|
|
-
|
|
- /* create earlier levels for correct fs_core lookup when
|
|
- * connecting tables
|
|
- */
|
|
- for (l = 0; l <= level; l++) {
|
|
- if (fdb_prio_table(esw, chain, prio, l).fdb) {
|
|
- fdb_prio_table(esw, chain, prio, l).num_rules++;
|
|
- continue;
|
|
- }
|
|
-
|
|
- fdb = create_next_size_table(esw, ns, table_prio, l, flags);
|
|
- if (IS_ERR(fdb)) {
|
|
- l--;
|
|
- goto err_create_fdb;
|
|
- }
|
|
-
|
|
- fdb_prio_table(esw, chain, prio, l).fdb = fdb;
|
|
- fdb_prio_table(esw, chain, prio, l).num_rules = 1;
|
|
- }
|
|
-
|
|
- mutex_unlock(&esw->fdb_table.offloads.fdb_prio_lock);
|
|
- return fdb;
|
|
-
|
|
-err_create_fdb:
|
|
- mutex_unlock(&esw->fdb_table.offloads.fdb_prio_lock);
|
|
- if (l >= 0)
|
|
- esw_put_prio_table(esw, chain, prio, l);
|
|
-
|
|
- return fdb;
|
|
-}
|
|
-
|
|
-static void
|
|
-esw_put_prio_table(struct mlx5_eswitch *esw, u32 chain, u16 prio, int level)
|
|
-{
|
|
- int l;
|
|
-
|
|
- if (chain == FDB_TC_SLOW_PATH_CHAIN)
|
|
- return;
|
|
-
|
|
- mutex_lock(&esw->fdb_table.offloads.fdb_prio_lock);
|
|
-
|
|
- for (l = level; l >= 0; l--) {
|
|
- if (--(fdb_prio_table(esw, chain, prio, l).num_rules) > 0)
|
|
- continue;
|
|
-
|
|
- put_sz_to_pool(esw, fdb_prio_table(esw, chain, prio, l).fdb->max_fte);
|
|
- mlx5_destroy_flow_table(fdb_prio_table(esw, chain, prio, l).fdb);
|
|
- fdb_prio_table(esw, chain, prio, l).fdb = NULL;
|
|
- }
|
|
-
|
|
- mutex_unlock(&esw->fdb_table.offloads.fdb_prio_lock);
|
|
-}
|
|
-
|
|
-static void esw_destroy_offloads_fast_fdb_tables(struct mlx5_eswitch *esw)
|
|
-{
|
|
- /* If lazy creation isn't supported, deref the fast path tables */
|
|
- if (!(esw->fdb_table.flags & ESW_FDB_CHAINS_AND_PRIOS_SUPPORTED)) {
|
|
- esw_put_prio_table(esw, 0, 1, 1);
|
|
- esw_put_prio_table(esw, 0, 1, 0);
|
|
- }
|
|
-}
|
|
-
|
|
#define MAX_PF_SQ 256
|
|
#define MAX_SQ_NVPORTS 32
|
|
|
|
@@ -1061,16 +867,16 @@ static int esw_create_offloads_fdb_tables(struct mlx5_eswitch *esw, int nvports)
|
|
int inlen = MLX5_ST_SZ_BYTES(create_flow_group_in);
|
|
struct mlx5_flow_table_attr ft_attr = {};
|
|
struct mlx5_core_dev *dev = esw->dev;
|
|
- u32 *flow_group_in, max_flow_counter;
|
|
struct mlx5_flow_namespace *root_ns;
|
|
struct mlx5_flow_table *fdb = NULL;
|
|
- int table_size, ix, err = 0, i;
|
|
+ u32 flags = 0, *flow_group_in;
|
|
+ int table_size, ix, err = 0;
|
|
struct mlx5_flow_group *g;
|
|
- u32 flags = 0, fdb_max;
|
|
void *match_criteria;
|
|
u8 *dmac;
|
|
|
|
esw_debug(esw->dev, "Create offloads FDB Tables\n");
|
|
+
|
|
flow_group_in = kvzalloc(inlen, GFP_KERNEL);
|
|
if (!flow_group_in)
|
|
return -ENOMEM;
|
|
@@ -1089,19 +895,6 @@ static int esw_create_offloads_fdb_tables(struct mlx5_eswitch *esw, int nvports)
|
|
goto ns_err;
|
|
}
|
|
|
|
- max_flow_counter = (MLX5_CAP_GEN(dev, max_flow_counter_31_16) << 16) |
|
|
- MLX5_CAP_GEN(dev, max_flow_counter_15_0);
|
|
- fdb_max = 1 << MLX5_CAP_ESW_FLOWTABLE_FDB(dev, log_max_ft_size);
|
|
-
|
|
- esw_debug(dev, "Create offloads FDB table, min (max esw size(2^%d), max counters(%d), groups(%d), max flow table size(%d))\n",
|
|
- MLX5_CAP_ESW_FLOWTABLE_FDB(dev, log_max_ft_size),
|
|
- max_flow_counter, ESW_OFFLOADS_NUM_GROUPS,
|
|
- fdb_max);
|
|
-
|
|
- for (i = 0; i < ARRAY_SIZE(ESW_POOLS); i++)
|
|
- esw->fdb_table.offloads.fdb_left[i] =
|
|
- ESW_POOLS[i] <= fdb_max ? ESW_SIZE / ESW_POOLS[i] : 0;
|
|
-
|
|
table_size = nvports * MAX_SQ_NVPORTS + MAX_PF_SQ +
|
|
MLX5_ESW_MISS_FLOWS + esw->total_vports;
|
|
|
|
@@ -1124,16 +917,10 @@ static int esw_create_offloads_fdb_tables(struct mlx5_eswitch *esw, int nvports)
|
|
}
|
|
esw->fdb_table.offloads.slow_fdb = fdb;
|
|
|
|
- /* If lazy creation isn't supported, open the fast path tables now */
|
|
- if (!MLX5_CAP_ESW_FLOWTABLE(esw->dev, multi_fdb_encap) &&
|
|
- esw->offloads.encap != DEVLINK_ESWITCH_ENCAP_MODE_NONE) {
|
|
- esw->fdb_table.flags &= ~ESW_FDB_CHAINS_AND_PRIOS_SUPPORTED;
|
|
- esw_warn(dev, "Lazy creation of flow tables isn't supported, ignoring priorities\n");
|
|
- esw_get_prio_table(esw, 0, 1, 0);
|
|
- esw_get_prio_table(esw, 0, 1, 1);
|
|
- } else {
|
|
- esw_debug(dev, "Lazy creation of flow tables supported, deferring table opening\n");
|
|
- esw->fdb_table.flags |= ESW_FDB_CHAINS_AND_PRIOS_SUPPORTED;
|
|
+ err = mlx5_esw_chains_create(esw);
|
|
+ if (err) {
|
|
+ esw_warn(dev, "Failed to create fdb chains err(%d)\n", err);
|
|
+ goto fdb_chains_err;
|
|
}
|
|
|
|
/* create send-to-vport group */
|
|
@@ -1225,7 +1012,8 @@ static int esw_create_offloads_fdb_tables(struct mlx5_eswitch *esw, int nvports)
|
|
peer_miss_err:
|
|
mlx5_destroy_flow_group(esw->fdb_table.offloads.send_to_vport_grp);
|
|
send_vport_err:
|
|
- esw_destroy_offloads_fast_fdb_tables(esw);
|
|
+ mlx5_esw_chains_destroy(esw);
|
|
+fdb_chains_err:
|
|
mlx5_destroy_flow_table(esw->fdb_table.offloads.slow_fdb);
|
|
slow_fdb_err:
|
|
/* Holds true only as long as DMFS is the default */
|
|
@@ -1247,8 +1035,8 @@ static void esw_destroy_offloads_fdb_tables(struct mlx5_eswitch *esw)
|
|
mlx5_destroy_flow_group(esw->fdb_table.offloads.peer_miss_grp);
|
|
mlx5_destroy_flow_group(esw->fdb_table.offloads.miss_grp);
|
|
|
|
+ mlx5_esw_chains_destroy(esw);
|
|
mlx5_destroy_flow_table(esw->fdb_table.offloads.slow_fdb);
|
|
- esw_destroy_offloads_fast_fdb_tables(esw);
|
|
/* Holds true only as long as DMFS is the default */
|
|
mlx5_flow_namespace_set_mode(esw->fdb_table.offloads.ns,
|
|
MLX5_FLOW_STEERING_MODE_DMFS);
|
|
@@ -2132,7 +1920,6 @@ static int esw_offloads_steering_init(struct mlx5_eswitch *esw)
|
|
total_vports = num_vfs + MLX5_SPECIAL_VPORTS(esw->dev);
|
|
|
|
memset(&esw->fdb_table.offloads, 0, sizeof(struct offloads_fdb));
|
|
- mutex_init(&esw->fdb_table.offloads.fdb_prio_lock);
|
|
|
|
err = esw_create_uplink_offloads_acl_tables(esw);
|
|
if (err)
|
|
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads_chains.c b/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads_chains.c
|
|
new file mode 100644
|
|
index 000000000000..589b94df252a
|
|
--- /dev/null
|
|
+++ b/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads_chains.c
|
|
@@ -0,0 +1,542 @@
|
|
+// SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB
|
|
+// Copyright (c) 2020 Mellanox Technologies.
|
|
+
|
|
+#include <linux/mlx5/driver.h>
|
|
+#include <linux/mlx5/mlx5_ifc.h>
|
|
+#include <linux/mlx5/fs.h>
|
|
+
|
|
+#include "eswitch_offloads_chains.h"
|
|
+#include "mlx5_core.h"
|
|
+#include "fs_core.h"
|
|
+#include "eswitch.h"
|
|
+#include "en.h"
|
|
+
|
|
+#define esw_chains_priv(esw) ((esw)->fdb_table.offloads.esw_chains_priv)
|
|
+#define esw_chains_lock(esw) (esw_chains_priv(esw)->lock)
|
|
+#define esw_chains_ht(esw) (esw_chains_priv(esw)->chains_ht)
|
|
+#define esw_prios_ht(esw) (esw_chains_priv(esw)->prios_ht)
|
|
+#define fdb_pool_left(esw) (esw_chains_priv(esw)->fdb_left)
|
|
+
|
|
+#define ESW_OFFLOADS_NUM_GROUPS 4
|
|
+
|
|
+/* Firmware currently has 4 pool of 4 sizes that it supports (ESW_POOLS),
|
|
+ * and a virtual memory region of 16M (ESW_SIZE), this region is duplicated
|
|
+ * for each flow table pool. We can allocate up to 16M of each pool,
|
|
+ * and we keep track of how much we used via get_next_avail_sz_from_pool.
|
|
+ * Firmware doesn't report any of this for now.
|
|
+ * ESW_POOL is expected to be sorted from large to small and match firmware
|
|
+ * pools.
|
|
+ */
|
|
+#define ESW_SIZE (16 * 1024 * 1024)
|
|
+const unsigned int ESW_POOLS[] = { 4 * 1024 * 1024,
|
|
+ 1 * 1024 * 1024,
|
|
+ 64 * 1024,
|
|
+ 128 };
|
|
+
|
|
+struct mlx5_esw_chains_priv {
|
|
+ struct rhashtable chains_ht;
|
|
+ struct rhashtable prios_ht;
|
|
+ /* Protects above chains_ht and prios_ht */
|
|
+ struct mutex lock;
|
|
+
|
|
+ int fdb_left[ARRAY_SIZE(ESW_POOLS)];
|
|
+};
|
|
+
|
|
+struct fdb_chain {
|
|
+ struct rhash_head node;
|
|
+
|
|
+ u32 chain;
|
|
+
|
|
+ int ref;
|
|
+
|
|
+ struct mlx5_eswitch *esw;
|
|
+};
|
|
+
|
|
+struct fdb_prio_key {
|
|
+ u32 chain;
|
|
+ u32 prio;
|
|
+ u32 level;
|
|
+};
|
|
+
|
|
+struct fdb_prio {
|
|
+ struct rhash_head node;
|
|
+
|
|
+ struct fdb_prio_key key;
|
|
+
|
|
+ int ref;
|
|
+
|
|
+ struct fdb_chain *fdb_chain;
|
|
+ struct mlx5_flow_table *fdb;
|
|
+};
|
|
+
|
|
+static const struct rhashtable_params chain_params = {
|
|
+ .head_offset = offsetof(struct fdb_chain, node),
|
|
+ .key_offset = offsetof(struct fdb_chain, chain),
|
|
+ .key_len = sizeof_field(struct fdb_chain, chain),
|
|
+ .automatic_shrinking = true,
|
|
+};
|
|
+
|
|
+static const struct rhashtable_params prio_params = {
|
|
+ .head_offset = offsetof(struct fdb_prio, node),
|
|
+ .key_offset = offsetof(struct fdb_prio, key),
|
|
+ .key_len = sizeof_field(struct fdb_prio, key),
|
|
+ .automatic_shrinking = true,
|
|
+};
|
|
+
|
|
+bool mlx5_esw_chains_prios_supported(struct mlx5_eswitch *esw)
|
|
+{
|
|
+ return esw->fdb_table.flags & ESW_FDB_CHAINS_AND_PRIOS_SUPPORTED;
|
|
+}
|
|
+
|
|
+u32 mlx5_esw_chains_get_chain_range(struct mlx5_eswitch *esw)
|
|
+{
|
|
+ if (!mlx5_esw_chains_prios_supported(esw))
|
|
+ return 1;
|
|
+
|
|
+ return FDB_TC_MAX_CHAIN;
|
|
+}
|
|
+
|
|
+u32 mlx5_esw_chains_get_ft_chain(struct mlx5_eswitch *esw)
|
|
+{
|
|
+ return mlx5_esw_chains_get_chain_range(esw) + 1;
|
|
+}
|
|
+
|
|
+u32 mlx5_esw_chains_get_prio_range(struct mlx5_eswitch *esw)
|
|
+{
|
|
+ if (!mlx5_esw_chains_prios_supported(esw))
|
|
+ return 1;
|
|
+
|
|
+ return FDB_TC_MAX_PRIO;
|
|
+}
|
|
+
|
|
+static unsigned int mlx5_esw_chains_get_level_range(struct mlx5_eswitch *esw)
|
|
+{
|
|
+ return FDB_TC_LEVELS_PER_PRIO;
|
|
+}
|
|
+
|
|
+#define POOL_NEXT_SIZE 0
|
|
+static int
|
|
+mlx5_esw_chains_get_avail_sz_from_pool(struct mlx5_eswitch *esw,
|
|
+ int desired_size)
|
|
+{
|
|
+ int i, found_i = -1;
|
|
+
|
|
+ for (i = ARRAY_SIZE(ESW_POOLS) - 1; i >= 0; i--) {
|
|
+ if (fdb_pool_left(esw)[i] && ESW_POOLS[i] > desired_size) {
|
|
+ found_i = i;
|
|
+ if (desired_size != POOL_NEXT_SIZE)
|
|
+ break;
|
|
+ }
|
|
+ }
|
|
+
|
|
+ if (found_i != -1) {
|
|
+ --fdb_pool_left(esw)[found_i];
|
|
+ return ESW_POOLS[found_i];
|
|
+ }
|
|
+
|
|
+ return 0;
|
|
+}
|
|
+
|
|
+static void
|
|
+mlx5_esw_chains_put_sz_to_pool(struct mlx5_eswitch *esw, int sz)
|
|
+{
|
|
+ int i;
|
|
+
|
|
+ for (i = ARRAY_SIZE(ESW_POOLS) - 1; i >= 0; i--) {
|
|
+ if (sz == ESW_POOLS[i]) {
|
|
+ ++fdb_pool_left(esw)[i];
|
|
+ return;
|
|
+ }
|
|
+ }
|
|
+
|
|
+ WARN_ONCE(1, "Couldn't find size %d in fdb size pool", sz);
|
|
+}
|
|
+
|
|
+static void
|
|
+mlx5_esw_chains_init_sz_pool(struct mlx5_eswitch *esw)
|
|
+{
|
|
+ u32 fdb_max;
|
|
+ int i;
|
|
+
|
|
+ fdb_max = 1 << MLX5_CAP_ESW_FLOWTABLE_FDB(esw->dev, log_max_ft_size);
|
|
+
|
|
+ for (i = ARRAY_SIZE(ESW_POOLS) - 1; i >= 0; i--)
|
|
+ fdb_pool_left(esw)[i] =
|
|
+ ESW_POOLS[i] <= fdb_max ? ESW_SIZE / ESW_POOLS[i] : 0;
|
|
+}
|
|
+
|
|
+static struct mlx5_flow_table *
|
|
+mlx5_esw_chains_create_fdb_table(struct mlx5_eswitch *esw,
|
|
+ u32 chain, u32 prio, u32 level)
|
|
+{
|
|
+ struct mlx5_flow_table_attr ft_attr = {};
|
|
+ struct mlx5_flow_namespace *ns;
|
|
+ struct mlx5_flow_table *fdb;
|
|
+ int sz;
|
|
+
|
|
+ if (esw->offloads.encap != DEVLINK_ESWITCH_ENCAP_MODE_NONE)
|
|
+ ft_attr.flags |= (MLX5_FLOW_TABLE_TUNNEL_EN_REFORMAT |
|
|
+ MLX5_FLOW_TABLE_TUNNEL_EN_DECAP);
|
|
+
|
|
+ sz = mlx5_esw_chains_get_avail_sz_from_pool(esw, POOL_NEXT_SIZE);
|
|
+ if (!sz)
|
|
+ return ERR_PTR(-ENOSPC);
|
|
+
|
|
+ ft_attr.max_fte = sz;
|
|
+ ft_attr.level = level;
|
|
+ ft_attr.prio = prio - 1;
|
|
+ ft_attr.autogroup.max_num_groups = ESW_OFFLOADS_NUM_GROUPS;
|
|
+ ns = mlx5_get_fdb_sub_ns(esw->dev, chain);
|
|
+
|
|
+ fdb = mlx5_create_auto_grouped_flow_table_attr_(ns, &ft_attr);
|
|
+ if (IS_ERR(fdb)) {
|
|
+ esw_warn(esw->dev,
|
|
+ "Failed to create FDB table err %d (chain: %d, prio: %d, level: %d, size: %d)\n",
|
|
+ (int)PTR_ERR(fdb), chain, prio, level, sz);
|
|
+ mlx5_esw_chains_put_sz_to_pool(esw, sz);
|
|
+ return fdb;
|
|
+ }
|
|
+
|
|
+ return fdb;
|
|
+}
|
|
+
|
|
+static void
|
|
+mlx5_esw_chains_destroy_fdb_table(struct mlx5_eswitch *esw,
|
|
+ struct mlx5_flow_table *fdb)
|
|
+{
|
|
+ mlx5_esw_chains_put_sz_to_pool(esw, fdb->max_fte);
|
|
+ mlx5_destroy_flow_table(fdb);
|
|
+}
|
|
+
|
|
+static struct fdb_chain *
|
|
+mlx5_esw_chains_create_fdb_chain(struct mlx5_eswitch *esw, u32 chain)
|
|
+{
|
|
+ struct fdb_chain *fdb_chain = NULL;
|
|
+ int err;
|
|
+
|
|
+ fdb_chain = kvzalloc(sizeof(*fdb_chain), GFP_KERNEL);
|
|
+ if (!fdb_chain)
|
|
+ return ERR_PTR(-ENOMEM);
|
|
+
|
|
+ fdb_chain->esw = esw;
|
|
+ fdb_chain->chain = chain;
|
|
+
|
|
+ err = rhashtable_insert_fast(&esw_chains_ht(esw), &fdb_chain->node,
|
|
+ chain_params);
|
|
+ if (err)
|
|
+ goto err_insert;
|
|
+
|
|
+ return fdb_chain;
|
|
+
|
|
+err_insert:
|
|
+ kvfree(fdb_chain);
|
|
+ return ERR_PTR(err);
|
|
+}
|
|
+
|
|
+static void
|
|
+mlx5_esw_chains_destroy_fdb_chain(struct fdb_chain *fdb_chain)
|
|
+{
|
|
+ struct mlx5_eswitch *esw = fdb_chain->esw;
|
|
+
|
|
+ rhashtable_remove_fast(&esw_chains_ht(esw), &fdb_chain->node,
|
|
+ chain_params);
|
|
+ kvfree(fdb_chain);
|
|
+}
|
|
+
|
|
+static struct fdb_chain *
|
|
+mlx5_esw_chains_get_fdb_chain(struct mlx5_eswitch *esw, u32 chain)
|
|
+{
|
|
+ struct fdb_chain *fdb_chain;
|
|
+
|
|
+ fdb_chain = rhashtable_lookup_fast(&esw_chains_ht(esw), &chain,
|
|
+ chain_params);
|
|
+ if (!fdb_chain) {
|
|
+ fdb_chain = mlx5_esw_chains_create_fdb_chain(esw, chain);
|
|
+ if (IS_ERR(fdb_chain))
|
|
+ return fdb_chain;
|
|
+ }
|
|
+
|
|
+ fdb_chain->ref++;
|
|
+
|
|
+ return fdb_chain;
|
|
+}
|
|
+
|
|
+static void
|
|
+mlx5_esw_chains_put_fdb_chain(struct fdb_chain *fdb_chain)
|
|
+{
|
|
+ if (--fdb_chain->ref == 0)
|
|
+ mlx5_esw_chains_destroy_fdb_chain(fdb_chain);
|
|
+}
|
|
+
|
|
+static struct fdb_prio *
|
|
+mlx5_esw_chains_create_fdb_prio(struct mlx5_eswitch *esw,
|
|
+ u32 chain, u32 prio, u32 level)
|
|
+{
|
|
+ struct fdb_prio *fdb_prio = NULL;
|
|
+ struct fdb_chain *fdb_chain;
|
|
+ struct mlx5_flow_table *fdb;
|
|
+ int err;
|
|
+
|
|
+ fdb_chain = mlx5_esw_chains_get_fdb_chain(esw, chain);
|
|
+ if (IS_ERR(fdb_chain))
|
|
+ return ERR_CAST(fdb_chain);
|
|
+
|
|
+ fdb_prio = kvzalloc(sizeof(*fdb_prio), GFP_KERNEL);
|
|
+ if (!fdb_prio) {
|
|
+ err = -ENOMEM;
|
|
+ goto err_alloc;
|
|
+ }
|
|
+
|
|
+ fdb = mlx5_esw_chains_create_fdb_table(esw, fdb_chain->chain, prio,
|
|
+ level);
|
|
+ if (IS_ERR(fdb)) {
|
|
+ err = PTR_ERR(fdb);
|
|
+ goto err_create;
|
|
+ }
|
|
+
|
|
+ fdb_prio->fdb_chain = fdb_chain;
|
|
+ fdb_prio->key.chain = chain;
|
|
+ fdb_prio->key.prio = prio;
|
|
+ fdb_prio->key.level = level;
|
|
+ fdb_prio->fdb = fdb;
|
|
+
|
|
+ err = rhashtable_insert_fast(&esw_prios_ht(esw), &fdb_prio->node,
|
|
+ prio_params);
|
|
+ if (err)
|
|
+ goto err_insert;
|
|
+
|
|
+ return fdb_prio;
|
|
+
|
|
+err_insert:
|
|
+ mlx5_esw_chains_destroy_fdb_table(esw, fdb);
|
|
+err_create:
|
|
+ kvfree(fdb_prio);
|
|
+err_alloc:
|
|
+ mlx5_esw_chains_put_fdb_chain(fdb_chain);
|
|
+ return ERR_PTR(err);
|
|
+}
|
|
+
|
|
+static void
|
|
+mlx5_esw_chains_destroy_fdb_prio(struct mlx5_eswitch *esw,
|
|
+ struct fdb_prio *fdb_prio)
|
|
+{
|
|
+ struct fdb_chain *fdb_chain = fdb_prio->fdb_chain;
|
|
+
|
|
+ rhashtable_remove_fast(&esw_prios_ht(esw), &fdb_prio->node,
|
|
+ prio_params);
|
|
+ mlx5_esw_chains_destroy_fdb_table(esw, fdb_prio->fdb);
|
|
+ mlx5_esw_chains_put_fdb_chain(fdb_chain);
|
|
+ kvfree(fdb_prio);
|
|
+}
|
|
+
|
|
+struct mlx5_flow_table *
|
|
+mlx5_esw_chains_get_table(struct mlx5_eswitch *esw, u32 chain, u32 prio,
|
|
+ u32 level)
|
|
+{
|
|
+ struct mlx5_flow_table *prev_fts;
|
|
+ struct fdb_prio *fdb_prio;
|
|
+ struct fdb_prio_key key;
|
|
+ int l = 0;
|
|
+
|
|
+ if ((chain > mlx5_esw_chains_get_chain_range(esw) &&
|
|
+ chain != mlx5_esw_chains_get_ft_chain(esw)) ||
|
|
+ prio > mlx5_esw_chains_get_prio_range(esw) ||
|
|
+ level > mlx5_esw_chains_get_level_range(esw))
|
|
+ return ERR_PTR(-EOPNOTSUPP);
|
|
+
|
|
+ /* create earlier levels for correct fs_core lookup when
|
|
+ * connecting tables.
|
|
+ */
|
|
+ for (l = 0; l < level; l++) {
|
|
+ prev_fts = mlx5_esw_chains_get_table(esw, chain, prio, l);
|
|
+ if (IS_ERR(prev_fts)) {
|
|
+ fdb_prio = ERR_CAST(prev_fts);
|
|
+ goto err_get_prevs;
|
|
+ }
|
|
+ }
|
|
+
|
|
+ key.chain = chain;
|
|
+ key.prio = prio;
|
|
+ key.level = level;
|
|
+
|
|
+ mutex_lock(&esw_chains_lock(esw));
|
|
+ fdb_prio = rhashtable_lookup_fast(&esw_prios_ht(esw), &key,
|
|
+ prio_params);
|
|
+ if (!fdb_prio) {
|
|
+ fdb_prio = mlx5_esw_chains_create_fdb_prio(esw, chain,
|
|
+ prio, level);
|
|
+ if (IS_ERR(fdb_prio))
|
|
+ goto err_create_prio;
|
|
+ }
|
|
+
|
|
+ ++fdb_prio->ref;
|
|
+ mutex_unlock(&esw_chains_lock(esw));
|
|
+
|
|
+ return fdb_prio->fdb;
|
|
+
|
|
+err_create_prio:
|
|
+ mutex_unlock(&esw_chains_lock(esw));
|
|
+err_get_prevs:
|
|
+ while (--l >= 0)
|
|
+ mlx5_esw_chains_put_table(esw, chain, prio, l);
|
|
+ return ERR_CAST(fdb_prio);
|
|
+}
|
|
+
|
|
+void
|
|
+mlx5_esw_chains_put_table(struct mlx5_eswitch *esw, u32 chain, u32 prio,
|
|
+ u32 level)
|
|
+{
|
|
+ struct fdb_prio *fdb_prio;
|
|
+ struct fdb_prio_key key;
|
|
+
|
|
+ key.chain = chain;
|
|
+ key.prio = prio;
|
|
+ key.level = level;
|
|
+
|
|
+ mutex_lock(&esw_chains_lock(esw));
|
|
+ fdb_prio = rhashtable_lookup_fast(&esw_prios_ht(esw), &key,
|
|
+ prio_params);
|
|
+ if (!fdb_prio)
|
|
+ goto err_get_prio;
|
|
+
|
|
+ if (--fdb_prio->ref == 0)
|
|
+ mlx5_esw_chains_destroy_fdb_prio(esw, fdb_prio);
|
|
+ mutex_unlock(&esw_chains_lock(esw));
|
|
+
|
|
+ while (level-- > 0)
|
|
+ mlx5_esw_chains_put_table(esw, chain, prio, level);
|
|
+
|
|
+ return;
|
|
+
|
|
+err_get_prio:
|
|
+ mutex_unlock(&esw_chains_lock(esw));
|
|
+ WARN_ONCE(1,
|
|
+ "Couldn't find table: (chain: %d prio: %d level: %d)",
|
|
+ chain, prio, level);
|
|
+}
|
|
+
|
|
+static int
|
|
+mlx5_esw_chains_init(struct mlx5_eswitch *esw)
|
|
+{
|
|
+ struct mlx5_esw_chains_priv *chains_priv;
|
|
+ struct mlx5_core_dev *dev = esw->dev;
|
|
+ u32 max_flow_counter, fdb_max;
|
|
+ int err;
|
|
+
|
|
+ chains_priv = kzalloc(sizeof(*chains_priv), GFP_KERNEL);
|
|
+ if (!chains_priv)
|
|
+ return -ENOMEM;
|
|
+ esw_chains_priv(esw) = chains_priv;
|
|
+
|
|
+ max_flow_counter = (MLX5_CAP_GEN(dev, max_flow_counter_31_16) << 16) |
|
|
+ MLX5_CAP_GEN(dev, max_flow_counter_15_0);
|
|
+ fdb_max = 1 << MLX5_CAP_ESW_FLOWTABLE_FDB(dev, log_max_ft_size);
|
|
+
|
|
+ esw_debug(dev,
|
|
+ "Init esw offloads chains, max counters(%d), groups(%d), max flow table size(%d)\n",
|
|
+ max_flow_counter, ESW_OFFLOADS_NUM_GROUPS, fdb_max);
|
|
+
|
|
+ mlx5_esw_chains_init_sz_pool(esw);
|
|
+
|
|
+ if (!MLX5_CAP_ESW_FLOWTABLE(esw->dev, multi_fdb_encap) &&
|
|
+ esw->offloads.encap != DEVLINK_ESWITCH_ENCAP_MODE_NONE) {
|
|
+ esw->fdb_table.flags &= ~ESW_FDB_CHAINS_AND_PRIOS_SUPPORTED;
|
|
+ esw_warn(dev, "Tc chains and priorities offload aren't supported, update firmware if needed\n");
|
|
+ } else {
|
|
+ esw->fdb_table.flags |= ESW_FDB_CHAINS_AND_PRIOS_SUPPORTED;
|
|
+ esw_info(dev, "Supported tc offload range - chains: %u, prios: %u\n",
|
|
+ mlx5_esw_chains_get_chain_range(esw),
|
|
+ mlx5_esw_chains_get_prio_range(esw));
|
|
+ }
|
|
+
|
|
+ err = rhashtable_init(&esw_chains_ht(esw), &chain_params);
|
|
+ if (err)
|
|
+ goto init_chains_ht_err;
|
|
+
|
|
+ err = rhashtable_init(&esw_prios_ht(esw), &prio_params);
|
|
+ if (err)
|
|
+ goto init_prios_ht_err;
|
|
+
|
|
+ mutex_init(&esw_chains_lock(esw));
|
|
+
|
|
+ return 0;
|
|
+
|
|
+init_prios_ht_err:
|
|
+ rhashtable_destroy(&esw_chains_ht(esw));
|
|
+init_chains_ht_err:
|
|
+ kfree(chains_priv);
|
|
+ return err;
|
|
+}
|
|
+
|
|
+static void
|
|
+mlx5_esw_chains_cleanup(struct mlx5_eswitch *esw)
|
|
+{
|
|
+ mutex_destroy(&esw_chains_lock(esw));
|
|
+ rhashtable_destroy(&esw_prios_ht(esw));
|
|
+ rhashtable_destroy(&esw_chains_ht(esw));
|
|
+
|
|
+ kfree(esw_chains_priv(esw));
|
|
+}
|
|
+
|
|
+static int
|
|
+mlx5_esw_chains_open(struct mlx5_eswitch *esw)
|
|
+{
|
|
+ struct mlx5_flow_table *ft;
|
|
+ int err;
|
|
+
|
|
+ /* Always open the root for fast path */
|
|
+ ft = mlx5_esw_chains_get_table(esw, 0, 1, 0);
|
|
+ if (IS_ERR(ft))
|
|
+ return PTR_ERR(ft);
|
|
+
|
|
+ /* Open level 1 for split rules now if prios isn't supported */
|
|
+ if (!mlx5_esw_chains_prios_supported(esw)) {
|
|
+ ft = mlx5_esw_chains_get_table(esw, 0, 1, 1);
|
|
+
|
|
+ if (IS_ERR(ft)) {
|
|
+ err = PTR_ERR(ft);
|
|
+ goto level_1_err;
|
|
+ }
|
|
+ }
|
|
+
|
|
+ return 0;
|
|
+
|
|
+level_1_err:
|
|
+ mlx5_esw_chains_put_table(esw, 0, 1, 0);
|
|
+ return err;
|
|
+}
|
|
+
|
|
+static void
|
|
+mlx5_esw_chains_close(struct mlx5_eswitch *esw)
|
|
+{
|
|
+ if (!mlx5_esw_chains_prios_supported(esw))
|
|
+ mlx5_esw_chains_put_table(esw, 0, 1, 1);
|
|
+ mlx5_esw_chains_put_table(esw, 0, 1, 0);
|
|
+}
|
|
+
|
|
+int
|
|
+mlx5_esw_chains_create(struct mlx5_eswitch *esw)
|
|
+{
|
|
+ int err;
|
|
+
|
|
+ err = mlx5_esw_chains_init(esw);
|
|
+ if (err)
|
|
+ return err;
|
|
+
|
|
+ err = mlx5_esw_chains_open(esw);
|
|
+ if (err)
|
|
+ goto err_open;
|
|
+
|
|
+ return 0;
|
|
+
|
|
+err_open:
|
|
+ mlx5_esw_chains_cleanup(esw);
|
|
+ return err;
|
|
+}
|
|
+
|
|
+void
|
|
+mlx5_esw_chains_destroy(struct mlx5_eswitch *esw)
|
|
+{
|
|
+ mlx5_esw_chains_close(esw);
|
|
+ mlx5_esw_chains_cleanup(esw);
|
|
+}
|
|
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads_chains.h b/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads_chains.h
|
|
new file mode 100644
|
|
index 000000000000..52fadacab84d
|
|
--- /dev/null
|
|
+++ b/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads_chains.h
|
|
@@ -0,0 +1,27 @@
|
|
+/* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */
|
|
+/* Copyright (c) 2020 Mellanox Technologies. */
|
|
+
|
|
+#ifndef __ML5_ESW_CHAINS_H__
|
|
+#define __ML5_ESW_CHAINS_H__
|
|
+
|
|
+bool
|
|
+mlx5_esw_chains_prios_supported(struct mlx5_eswitch *esw);
|
|
+u32
|
|
+mlx5_esw_chains_get_prio_range(struct mlx5_eswitch *esw);
|
|
+u32
|
|
+mlx5_esw_chains_get_chain_range(struct mlx5_eswitch *esw);
|
|
+u32
|
|
+mlx5_esw_chains_get_ft_chain(struct mlx5_eswitch *esw);
|
|
+
|
|
+struct mlx5_flow_table *
|
|
+mlx5_esw_chains_get_table(struct mlx5_eswitch *esw, u32 chain, u32 prio,
|
|
+ u32 level);
|
|
+void
|
|
+mlx5_esw_chains_put_table(struct mlx5_eswitch *esw, u32 chain, u32 prio,
|
|
+ u32 level);
|
|
+
|
|
+int mlx5_esw_chains_create(struct mlx5_eswitch *esw);
|
|
+void mlx5_esw_chains_destroy(struct mlx5_eswitch *esw);
|
|
+
|
|
+#endif /* __ML5_ESW_CHAINS_H__ */
|
|
+
|
|
--
|
|
2.13.6
|
|
|