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.
169 lines
6.0 KiB
169 lines
6.0 KiB
From e9a9c073ba5d91c2e0336afdb0edead9c47f30df Mon Sep 17 00:00:00 2001
|
|
From: Alaa Hleihel <ahleihel@redhat.com>
|
|
Date: Tue, 19 May 2020 07:49:00 -0400
|
|
Subject: [PATCH 238/312] [netdrv] net/mlx5: E-Switch, Enable reg c1 loopback
|
|
when possible
|
|
|
|
Message-id: <20200519074934.6303-30-ahleihel@redhat.com>
|
|
Patchwork-id: 310531
|
|
Patchwork-instance: patchwork
|
|
O-Subject: [RHEL8.3 BZ 1663246 29/63] net/mlx5: E-Switch, Enable reg c1 loopback when possible
|
|
Bugzilla: 1790219 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
|
|
Bugzilla: http://bugzilla.redhat.com/1790219
|
|
Upstream: v5.7-rc1
|
|
|
|
commit 5b7cb7451585f83d414512a70b79b2086b8c6ed1
|
|
Author: Paul Blakey <paulb@mellanox.com>
|
|
Date: Thu Mar 12 12:23:03 2020 +0200
|
|
|
|
net/mlx5: E-Switch, Enable reg c1 loopback when possible
|
|
|
|
Enable reg c1 loopback if firmware reports it's supported,
|
|
as this is needed for restoring packet metadata (e.g chain).
|
|
|
|
Also define helper to query if it is enabled.
|
|
|
|
Signed-off-by: Paul Blakey <paulb@mellanox.com>
|
|
Signed-off-by: David S. Miller <davem@davemloft.net>
|
|
|
|
Signed-off-by: Alaa Hleihel <ahleihel@redhat.com>
|
|
Signed-off-by: Frantisek Hrbata <fhrbata@redhat.com>
|
|
---
|
|
drivers/net/ethernet/mellanox/mlx5/core/eswitch.h | 1 +
|
|
.../ethernet/mellanox/mlx5/core/eswitch_offloads.c | 44 ++++++++++++++++------
|
|
include/linux/mlx5/eswitch.h | 7 ++++
|
|
3 files changed, 41 insertions(+), 11 deletions(-)
|
|
|
|
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/eswitch.h b/drivers/net/ethernet/mellanox/mlx5/core/eswitch.h
|
|
index 3240f6de94bd..ccb4f0f566ea 100644
|
|
--- a/drivers/net/ethernet/mellanox/mlx5/core/eswitch.h
|
|
+++ b/drivers/net/ethernet/mellanox/mlx5/core/eswitch.h
|
|
@@ -271,6 +271,7 @@ struct mlx5_esw_functions {
|
|
|
|
enum {
|
|
MLX5_ESWITCH_VPORT_MATCH_METADATA = BIT(0),
|
|
+ MLX5_ESWITCH_REG_C1_LOOPBACK_ENABLED = BIT(1),
|
|
};
|
|
|
|
struct mlx5_eswitch {
|
|
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c b/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c
|
|
index a9b2522b9f03..da5730c8c3fb 100644
|
|
--- a/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c
|
|
+++ b/drivers/net/ethernet/mellanox/mlx5/core/eswitch_offloads.c
|
|
@@ -763,14 +763,21 @@ void mlx5_eswitch_del_send_to_vport_rule(struct mlx5_flow_handle *rule)
|
|
mlx5_del_flow_rules(rule);
|
|
}
|
|
|
|
+static bool mlx5_eswitch_reg_c1_loopback_supported(struct mlx5_eswitch *esw)
|
|
+{
|
|
+ return MLX5_CAP_ESW_FLOWTABLE(esw->dev, fdb_to_vport_reg_c_id) &
|
|
+ MLX5_FDB_TO_VPORT_REG_C_1;
|
|
+}
|
|
+
|
|
static int esw_set_passing_vport_metadata(struct mlx5_eswitch *esw, bool enable)
|
|
{
|
|
u32 out[MLX5_ST_SZ_DW(query_esw_vport_context_out)] = {};
|
|
u32 in[MLX5_ST_SZ_DW(modify_esw_vport_context_in)] = {};
|
|
- u8 fdb_to_vport_reg_c_id;
|
|
+ u8 curr, wanted;
|
|
int err;
|
|
|
|
- if (!mlx5_eswitch_vport_match_metadata_enabled(esw))
|
|
+ if (!mlx5_eswitch_reg_c1_loopback_supported(esw) &&
|
|
+ !mlx5_eswitch_vport_match_metadata_enabled(esw))
|
|
return 0;
|
|
|
|
err = mlx5_eswitch_query_esw_vport_context(esw->dev, 0, false,
|
|
@@ -778,24 +785,33 @@ static int esw_set_passing_vport_metadata(struct mlx5_eswitch *esw, bool enable)
|
|
if (err)
|
|
return err;
|
|
|
|
- fdb_to_vport_reg_c_id = MLX5_GET(query_esw_vport_context_out, out,
|
|
- esw_vport_context.fdb_to_vport_reg_c_id);
|
|
+ curr = MLX5_GET(query_esw_vport_context_out, out,
|
|
+ esw_vport_context.fdb_to_vport_reg_c_id);
|
|
+ wanted = MLX5_FDB_TO_VPORT_REG_C_0;
|
|
+ if (mlx5_eswitch_reg_c1_loopback_supported(esw))
|
|
+ wanted |= MLX5_FDB_TO_VPORT_REG_C_1;
|
|
|
|
if (enable)
|
|
- fdb_to_vport_reg_c_id |= MLX5_FDB_TO_VPORT_REG_C_0 |
|
|
- MLX5_FDB_TO_VPORT_REG_C_1;
|
|
+ curr |= wanted;
|
|
else
|
|
- fdb_to_vport_reg_c_id &= ~(MLX5_FDB_TO_VPORT_REG_C_0 |
|
|
- MLX5_FDB_TO_VPORT_REG_C_1);
|
|
+ curr &= ~wanted;
|
|
|
|
MLX5_SET(modify_esw_vport_context_in, in,
|
|
- esw_vport_context.fdb_to_vport_reg_c_id, fdb_to_vport_reg_c_id);
|
|
+ esw_vport_context.fdb_to_vport_reg_c_id, curr);
|
|
|
|
MLX5_SET(modify_esw_vport_context_in, in,
|
|
field_select.fdb_to_vport_reg_c_id, 1);
|
|
|
|
- return mlx5_eswitch_modify_esw_vport_context(esw->dev, 0, false,
|
|
- in, sizeof(in));
|
|
+ err = mlx5_eswitch_modify_esw_vport_context(esw->dev, 0, false, in,
|
|
+ sizeof(in));
|
|
+ if (!err) {
|
|
+ if (enable && (curr & MLX5_FDB_TO_VPORT_REG_C_1))
|
|
+ esw->flags |= MLX5_ESWITCH_REG_C1_LOOPBACK_ENABLED;
|
|
+ else
|
|
+ esw->flags &= ~MLX5_ESWITCH_REG_C1_LOOPBACK_ENABLED;
|
|
+ }
|
|
+
|
|
+ return err;
|
|
}
|
|
|
|
static void peer_miss_rules_setup(struct mlx5_eswitch *esw,
|
|
@@ -2833,6 +2849,12 @@ bool mlx5_eswitch_is_vf_vport(const struct mlx5_eswitch *esw, u16 vport_num)
|
|
vport_num <= esw->dev->priv.sriov.max_vfs;
|
|
}
|
|
|
|
+bool mlx5_eswitch_reg_c1_loopback_enabled(const struct mlx5_eswitch *esw)
|
|
+{
|
|
+ return !!(esw->flags & MLX5_ESWITCH_REG_C1_LOOPBACK_ENABLED);
|
|
+}
|
|
+EXPORT_SYMBOL(mlx5_eswitch_reg_c1_loopback_enabled);
|
|
+
|
|
bool mlx5_eswitch_vport_match_metadata_enabled(const struct mlx5_eswitch *esw)
|
|
{
|
|
return !!(esw->flags & MLX5_ESWITCH_VPORT_MATCH_METADATA);
|
|
diff --git a/include/linux/mlx5/eswitch.h b/include/linux/mlx5/eswitch.h
|
|
index 92e39e8a30f0..75d846948683 100644
|
|
--- a/include/linux/mlx5/eswitch.h
|
|
+++ b/include/linux/mlx5/eswitch.h
|
|
@@ -70,6 +70,7 @@ u16 mlx5_eswitch_get_total_vports(const struct mlx5_core_dev *dev);
|
|
enum devlink_eswitch_encap_mode
|
|
mlx5_eswitch_get_encap_mode(const struct mlx5_core_dev *dev);
|
|
|
|
+bool mlx5_eswitch_reg_c1_loopback_enabled(const struct mlx5_eswitch *esw);
|
|
bool mlx5_eswitch_vport_match_metadata_enabled(const struct mlx5_eswitch *esw);
|
|
|
|
/* Reg C0 usage:
|
|
@@ -114,6 +115,12 @@ mlx5_eswitch_get_encap_mode(const struct mlx5_core_dev *dev)
|
|
}
|
|
|
|
static inline bool
|
|
+mlx5_eswitch_reg_c1_loopback_enabled(const struct mlx5_eswitch *esw)
|
|
+{
|
|
+ return false;
|
|
+};
|
|
+
|
|
+static inline bool
|
|
mlx5_eswitch_vport_match_metadata_enabled(const struct mlx5_eswitch *esw)
|
|
{
|
|
return false;
|
|
--
|
|
2.13.6
|
|
|