common/sfc_efx/base: support unprivileged MAE clients
authorViacheslav Galaktionov <viacheslav.galaktionov@oktetlabs.ru>
Fri, 15 Oct 2021 06:49:01 +0000 (09:49 +0300)
committerFerruh Yigit <ferruh.yigit@intel.com>
Mon, 18 Oct 2021 18:56:02 +0000 (20:56 +0200)
In order to differentiate between privileged and unprivileged MAE clients,
add a separate boolean flag to represent a NIC's MAE privilege level.

Allow initializing unprivileged MAE clients by avoiding calls to functions
that can only be called by the admin NIC.

Signed-off-by: Viacheslav Galaktionov <viacheslav.galaktionov@oktetlabs.ru>
Signed-off-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
Reviewed-by: Andy Moreton <amoreton@xilinx.com>
drivers/common/sfc_efx/base/ef10_nic.c
drivers/common/sfc_efx/base/efx.h
drivers/common/sfc_efx/base/siena_nic.c

index 3cd9ff8..bbc5981 100644 (file)
@@ -1442,13 +1442,19 @@ ef10_get_datapath_caps(
         * MAE support requires the privilege is granted initially,
         * and ignore later dynamic changes.
         */
-       if (CAP_FLAGS3(req, MAE_SUPPORTED) &&
-           EFX_MCDI_HAVE_PRIVILEGE(encp->enc_privilege_mask, MAE))
+       if (CAP_FLAGS3(req, MAE_SUPPORTED)) {
                encp->enc_mae_supported = B_TRUE;
-       else
+               if (EFX_MCDI_HAVE_PRIVILEGE(encp->enc_privilege_mask, MAE))
+                       encp->enc_mae_admin = B_TRUE;
+               else
+                       encp->enc_mae_admin = B_FALSE;
+       } else {
                encp->enc_mae_supported = B_FALSE;
+               encp->enc_mae_admin = B_FALSE;
+       }
 #else
        encp->enc_mae_supported = B_FALSE;
+       encp->enc_mae_admin = B_FALSE;
 #endif /* EFSYS_OPT_MAE */
 
 #undef CAP_FLAGS1
index 8975c6e..6053388 100644 (file)
@@ -1618,6 +1618,13 @@ typedef struct efx_nic_cfg_s {
        boolean_t               enc_hlb_counters;
        /* NIC support for Match-Action Engine (MAE). */
        boolean_t               enc_mae_supported;
+       /*
+        * NIC is privileged, i.e. it is the MAE admin.
+        * Only privileged MAE clients can manage MAE flow rules,
+        * for example, modify, count and route traffic to selected
+        * destination (a MAE client or network port).
+        */
+       boolean_t               enc_mae_admin;
        /* Firmware support for "FLAG" and "MARK" filter actions */
        boolean_t               enc_filter_action_flag_supported;
        boolean_t               enc_filter_action_mark_supported;
index 29283ea..8b810d3 100644 (file)
@@ -197,6 +197,7 @@ siena_board_cfg(
        encp->enc_filter_action_mark_max = 0;
 
        encp->enc_mae_supported = B_FALSE;
+       encp->enc_mae_admin = B_FALSE;
 
        return (0);