Skip to content
  1. Jun 11, 2021
    • Peng Li's avatar
      net: ixp4xx_hss: fix the code style issue about "foo* bar" · 6487fab0
      Peng Li authored
      
      
      Fix the checkpatch error as "foo* bar" and should be "foo *bar",
      and "(foo*)" should be "(foo *)".
      
      Signed-off-by: default avatarPeng Li <lipeng321@huawei.com>
      Signed-off-by: default avatarGuangbin Huang <huangguangbin2@huawei.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      6487fab0
    • Peng Li's avatar
      net: ixp4xx_hss: add blank line after declarations · 6f2016ed
      Peng Li authored
      
      
      This patch fixes the checkpatch error about missing a blank line
      after declarations.
      
      Signed-off-by: default avatarPeng Li <lipeng321@huawei.com>
      Signed-off-by: default avatarGuangbin Huang <huangguangbin2@huawei.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      6f2016ed
    • Peng Li's avatar
      net: ixp4xx_hss: remove redundant blank lines · 5c32fdbb
      Peng Li authored
      
      
      This patch removes some redundant blank lines.
      
      Signed-off-by: default avatarPeng Li <lipeng321@huawei.com>
      Signed-off-by: default avatarGuangbin Huang <huangguangbin2@huawei.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      5c32fdbb
    • gushengxian's avatar
      tipc:subscr.c: fix a spelling mistake · f1dcdc07
      gushengxian authored
      
      
      Fix a spelling mistake.
      
      Signed-off-by: default avatargushengxian <gushengxian@yulong.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      f1dcdc07
    • gushengxian's avatar
      tipc: socket.c: fix the use of copular verb · 326af505
      gushengxian authored
      
      
      Fix the use of copular verb.
      
      Signed-off-by: default avatargushengxian <gushengxian@yulong.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      326af505
    • gushengxian's avatar
      node.c: fix the use of indefinite article · 15139bcb
      gushengxian authored
      
      
      Fix the use of indefinite article.
      
      Signed-off-by: default avatargushengxian <gushengxian@yulong.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      15139bcb
    • gushengxian's avatar
      af_unix: remove the repeated word "and" · 4e03d073
      gushengxian authored
      
      
      Remove the repeated word "and".
      
      Signed-off-by: default avatargushengxian <gushengxian@yulong.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      4e03d073
    • gushengxian's avatar
      vsock/vmci: remove the repeated word "be" · 26855150
      gushengxian authored
      
      
      Remove the repeated word "be".
      
      Signed-off-by: default avatargushengxian <gushengxian@yulong.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      26855150
    • David S. Miller's avatar
      Merge tag 'mlx5-updates-2021-06-09' of git://git.kernel.org/pub/scm/linux/kernel/git/saeed/linux · 2027e13f
      David S. Miller authored
      
      
      Saeed Mahameed says:
      
      ====================
      mlx5-updates-2021-06-09
      
      Introduce steering header insert/remove and switchdev bridge offloads
      
      1) From Yevgeny, Steering header insert/remove support
      
      ConnectX supports offloading of various encapsulations and decapsulations
      (e.g. VXLAN), which are performed by 'Packet Reformat' action.
      Starting with ConnectX-6 DX, a new reformat type is supported - INSERT_HEADER.
      This reformat allows inserting an arbitrary size buffer at a selected location
      in the packet on RX flows.
      
      The insert/remove header support are needed as a prerequisite for the
      bridge offloads vlan pop/push supprt, see below.
      
      2) From Vlad, Support for bridge offloads for switchdev mode
      
      This change implements bridge offloads with VLAN-support that works on top
      of mlx5 representors in switchdev mode.
      
      HIGH-LEVEL OVERVIEW
      
      Hardware supported by mlx5 driver doesn't provide dynamic learning or aging
      functionality and requires the driver to emulate all switch-like behavior
      in software. As such, all packets by default go through miss path, appear
      on representor and get to software bridge, if it is the upper device of the
      representor. This causes bridge to process packet in software, learn the
      MAC address to FDB and send SWITCHDEV_FDB_ADD_TO_DEVICE event to all
      subscribers. Upon reception of SWITCHDEV_FDB_ADD_TO_DEVICE notification
      mlx5 bridge offloads the FDB to hardware and sends back
      SWITCHDEV_FDB_ADD_TO_BRIDGE notification to prevent such entries from being
      aged out by kernel bridge. Leaving aging to kernel bridge would result
      deletion of offloaded dynamic FDB entries every aging_time period due to
      packets being processed by hardware and, consecutively, 'used' timestamp
      for FDB entry not being updated. Hardware aging is emulated in driver by
      running periodic workqueue task that manually updates the rules according
      to their hardware counter:
      
      - If hardware counter has changed since last update, the handler updates
      'used' timestamp in kernel bridge dynamic entry by sending
      SWITCHDEV_FDB_ADD_TO_BRIDGE notification for the entry.
      
      - If FDB entry wasn't updated for user-controllable aging_time period,
      then the FDB entry is unoffloaded from hardware and corresponding
      SWITCHDEV_FDB_DEL_TO_BRIDGE notification is sent to kernel bridge.
      
      The mlx5 bridge offload implementation fully supports port VLAN objects,
      including PVID (vlan push) and "Egress Untagged" (vlan pop).
      
      SOFTWARE ARCHITECTURE
      
      Mlx5_eswitch is extended with pointer to new mlx5_esw_bridge_offloads
      structure which has a linked list of mlx5_esw_bridge objects. Struct
      mlx5_esw_bridge is the main switch object in mlx5 that holds all data for
      offloaded FDB entries and metadata for bridge ports and their vlans. The
      mlx5_esw_bridge object is created when first representor of eswitch vport
      is added to bridge and deleted when the last representor is detached from
      it. Bridge FDB entries are saved in linked list (to iterate over all FDB
      entries in aging workqueue task) and also in hashtable for quick lookup by
      MAC+VLAN tuple. Bridge FDB entries are saved in linked list (to iterate
      over all FDB entries in aging workqueue task) and in hashtable for quick
      lookup by MAC+VLAN tuple. Port metadata is stored in struct
      mlx5_esw_bridge_port that is saved in xarray to allow quick lookup by vport
      number. Part of the port metadata is the set of port vlans that are
      represented by mlx5_esw_bridge_vlan structure. The vlan structure points to
      all FDBs on vlan/port via fdb_list linked list.
      
      Simplified diagram of mlx5 bridge objects:
      
                            +------------------+
                            |  mxl5_eswitch    |
                            |                  |
                            |  br_offloads     |
                            +--------+---------+
                                     |
                            +--------v-------------------+
                            |  mlx5_esw_bridge_offloads  |
                            |                            |
                         +-->  bridges                   |
                         |  +-------+--------------------+
                         |          |
                         |          |
                         |      +---v---------------+
                         |      | mlx5_esw_bridge   |
                         |      |                   |
                         |      | vports            |
                         |      |                   |
                         |      | fdb_ht            |
                         |      +---+---------------+
                         |          |
                         |      +---v---------------+
                         +------+ mlx5_esw_bridge   |
                                |                   |
      +-------------------------+ vports            |
      |                         |                   |
      |                         | fdb_ht            +------------------------------------------+
      |                         +-------------------+                                          |
      |                                                                                        |
      |                                                                                        |
      | +----------------------+                                 +---------------------------+ |
      +-> mlx5_esw_bridge_port |                              +--> mlx5_esw_bridge_fdb_entry <-+
      | |                      |    +----------------------+  |  +--+------------------------+ |
      | | vlans                +--+-> mlx5_esw_bridge_vlan |  |     |                          |
      | |                      |  | |                      |  |  +--v------------------------+ |
      | +----------------------+  | | fdb_list             +--+  | mlx5_esw_bridge_fdb_entry <-+
      |                           | +-------^--------------+     +--+------------------------+ |
      | +----------------------+  |         |                       |                          |
      +-> mlx5_esw_bridge_port |  |         +-----------------------+                          |
        |                      |  |                                                            |
        | vlans                |  | -----------------------+                                   |
        |                      |  +-> mlx5_esw_bridge_vlan |                                   |
        +----------------------+    |                      |     +---------------------------+ |
                                    | fdb_list             +-----> mlx5_esw_bridge_fdb_entry <-+
                                    +-------^--------------+     +--+------------------------+
                                            |                       |
                                            +-----------------------+
      
      HARDWARE REPRESENTATION
      
      In order to adhere to kernel software datapath model bridge offloads must
      come after TC and NF FDBs. However, since netfilter offload in mlx5 is
      implemented with unmanaged tables, its miss path is not automatically
      connected to next priority and requires the code to manually connect with
      slow table. To keep bridge offloads encapsulated and not mix it with
      eswitch offloads new FDB_TC_MISS priority is created between FDB_FT_OFFLOAD
      and FDB_SLOW_PATH which allows bridge offloads to be created without
      exposing its internal tables to any other modules since miss path of
      managed TC-miss table is automatically wired to next priority.
      
      The bridge tables are created with new priority FDB_BR_OFFLOAD in FDB
      namespace. The new priority is between tc-miss and slow path priorities.
      Priority consist of two levels: the ingress table that is global per
      eswitch and matches incoming packets by src_mac/vid and redirects them to
      next level (egress table) that is chosen according to ingress port bridge
      membership and matches on dst_mac/vid in order to redirect packet to vport
      according to the following diagram:
      
                      +
                      |
            +---------v----------+
            |                    |
            |   FDB_TC_OFFLOAD   |
            |                    |
            +---------+----------+
                      |
                      |
            +---------v----------+
            |                    |
            |   FDB_FT_OFFLOAD   |
            |                    |
            +---------+----------+
                      |
                      |
            +---------v----------+
            |                    |
            |    FDB_TC_MISS     |
            |                    |
            +---------+----------+
                      |
      +--------------------------------------+
      |               |                      |
      |        +------+                      |
      |        |                             |
      | +------v--------+   FDB_BR_OFFLOAD   |
      | | INGRESS_TABLE |                    |
      | +------+---+----+                    |
      |        |   |      match              |
      |        |   +---------+               |
      |        |             |               |    +-------+
      |        |     +-------v-------+ match |    |       |
      |        |     | EGRESS_TABLE  +------------> vport |
      |        |     +-------+-------+       |    |       |
      |        |             |               |    +-------+
      |        |    miss     |               |
      |        +------+------+               |
      |               |                      |
      +--------------------------------------+
                      |
                      |
            +---------v----------+
            |                    |
            |   FDB_SLOW_PATH    |
            |                    |
            +---------+----------+
                      |
                      v
      
      PATCHES OVERVIEW
      
      1-3 - Miscellaneous refactorings and infrastructure changes.
      
      4 - Mlx5 bridge offload infrastructure and dedicated fs_core
      namespace/tables implementation.
      
      5 - FDB entry offload.
      
      6 - Dynamic FDB entry aging.
      
      7-10 - VLAN filtering offload.
      
      11 - Tracepoints for main mlx5 bridge offload events (FDB entry
      offload/unoffload, VLAN add/delete, etc.)
      ====================
      
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      
      --
      2027e13f
    • Yang Yingliang's avatar
      net: davinci_emac: Use devm_platform_get_and_ioremap_resource() · 06990739
      Yang Yingliang authored
      
      
      Use devm_platform_get_and_ioremap_resource() to simplify
      code and avoid a null-ptr-deref by checking 'res' in it.
      
      Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      06990739
    • Yang Yingliang's avatar
      net: ethernet: ti: cpsw: Use devm_platform_get_and_ioremap_resource() · aced6d37
      Yang Yingliang authored
      
      
      Use devm_platform_get_and_ioremap_resource() to simplify
      code.
      
      Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
      Reviewed-by: default avatarGrygorii Strashko <grygorii.strashko@ti.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      aced6d37
    • Wong Vee Khee's avatar
      net: phy: probe for C45 PHYs that return PHY ID of zero in C22 space · b040aab7
      Wong Vee Khee authored
      
      
      PHY devices such as the Marvell Alaska 88E2110 does not return a valid
      PHY ID when probed using Clause-22. The current implementation treats
      PHY ID of zero as a non-error and valid PHY ID, and causing the PHY
      device failed to bind to the Marvell driver.
      
      For such devices, we do an additional probe in the Clause-45 space,
      if a valid PHY ID is returned, we then proceed to attach the PHY
      device to the matching PHY ID driver.
      
      Signed-off-by: default avatarWong Vee Khee <vee.khee.wong@linux.intel.com>
      Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      b040aab7
    • Chen Li's avatar
      netlink: simplify NLMSG_DATA with NLMSG_HDRLEN · d409989b
      Chen Li authored
      
      
      The NLMSG_LENGTH(0) may confuse the API users,
      NLMSG_HDRLEN is much more clear.
      
      Besides, some code style problems are also fixed.
      Signed-off-by: default avatarChen Li <chenli@uniontech.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      d409989b
  2. Jun 10, 2021
    • Vlad Buslov's avatar
      net/mlx5: Bridge, add tracepoints · 9724fd5d
      Vlad Buslov authored
      
      
      Move private bridge structures to dedicated headers that is accessible to
      bridge tracepoint header. Implemented following tracepoints:
      
      - Initialize FDB entry.
      - Refresh FDB entry.
      - Cleanup FDB entry.
      - Create VLAN.
      - Cleanup VLAN.
      - Attach port to bridge.
      - Detach port from bridge.
      
      Usage example:
      
      ># cd /sys/kernel/debug/tracing
      ># echo mlx5:mlx5_esw_bridge_fdb_entry_init >> set_event
      ># cat trace
      ...
         kworker/u20:1-96      [001] ....   231.892503: mlx5_esw_bridge_fdb_entry_init: net_device=enp8s0f0_0 addr=e4:fd:05:08:00:02 vid=3 flags=0 lastuse=4294895695
      
      Signed-off-by: default avatarVlad Buslov <vladbu@nvidia.com>
      Reviewed-by: default avatarJianbo Liu <jianbol@nvidia.com>
      Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
      9724fd5d
    • Vlad Buslov's avatar
      net/mlx5: Bridge, filter tagged packets that didn't match tagged fg · cc2987c4
      Vlad Buslov authored
      
      
      With support for pvid vlans in mlx5 bridge it is possible to have rules in
      untagged flow group when vlan filtering is enabled. However, such rules can
      also match tagged packets that didn't match anything in tagged flow group.
      Filter such packets by introducing additional flow group between tagged and
      untagged groups. When filtering is enabled on the bridge create additional
      flow in vlan filtering flow group and matches tagged packets with specified
      source MAC address and redirects them to new "skip" table. The skip table
      is new lowest-level empty table that is used to skip all further processing
      on packet in bridge priority.
      
      Signed-off-by: default avatarVlad Buslov <vladbu@nvidia.com>
      Reviewed-by: default avatarJianbo Liu <jianbol@nvidia.com>
      Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
      cc2987c4
    • Vlad Buslov's avatar
      net/mlx5: Bridge, support pvid and untagged vlan configurations · 36e55079
      Vlad Buslov authored
      
      
      Implement support for pushing vlan header into untagged packet on ingress
      of port that has pvid configured and support for popping vlan on egress of
      port that has the matching vlan configured as untagged. To support such
      configurations packet reformat contexts of {INSERT|REMOVE}_HEADER types are
      created per such vlan and saved to struct mlx5_esw_bridge_vlan which allows
      all FDB entries on particular vlan to share single packet reformat
      instance. When initializing FDB entries with pvid or untagged vlan type set
      its mlx5_flow_act->pkt_reformat action accordingly.
      
      Flush all flows when removing vlan from port. This is necessary because
      even though software bridge removes all FDB entries before removing their
      vlan, mlx5 bridge implementation deletes their corresponding flow entries
      from hardware in asynchronous workqueue task, which will cause firmware
      error if vlan packet reformat context is deleted before all flows that
      point to it.
      
      Signed-off-by: default avatarVlad Buslov <vladbu@nvidia.com>
      Reviewed-by: default avatarJianbo Liu <jianbol@nvidia.com>
      Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
      36e55079
    • Vlad Buslov's avatar
      net/mlx5: Bridge, match FDB entry vlan tag · ffc89ee5
      Vlad Buslov authored
      
      
      Add support for FDB vlan-tagged entries. Extend ingress and egress flow
      tables with flow groups to match packet vlan tag. Modify the flow creation
      code to include vlan tag, if vlan is configured on port and vlan
      configuration is supported for offload.
      
      Signed-off-by: default avatarVlad Buslov <vladbu@nvidia.com>
      Reviewed-by: default avatarJianbo Liu <jianbol@nvidia.com>
      Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
      ffc89ee5
    • Vlad Buslov's avatar
      net/mlx5: Bridge, implement infrastructure for vlans · d75b9e80
      Vlad Buslov authored
      
      
      Establish all the necessary infrastructure for implementing vlan matching
      and vlan push/pop in following patches:
      
      - Add new per-vport struct mlx5_esw_bridge_port that is used to store
      metadata for all port vlans. Initialize and cleanup the instance of the
      structure when port representor is linked/unliked to bridge. Use xarray to
      allow quick vport metadata lookup by vport number.
      
      - Add new per-port-vlan struct mlx5_esw_bridge_vlan that is used to store
      vlan-specific data (vid, flags). Handle SWITCHDEV_PORT_OBJ_{ADD|DEL}
      switchdev blocking event for SWITCHDEV_OBJ_ID_PORT_VLAN object by
      creating/deleting the vlan structure and saving it in per-vport xarray for
      quick lookup.
      
      - Implement support for SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING object
      attribute that is used to toggle vlan filtering. Remove all FDB entries
      from hardware when vlan filtering state is changed.
      
      Signed-off-by: default avatarVlad Buslov <vladbu@nvidia.com>
      Reviewed-by: default avatarJianbo Liu <jianbol@nvidia.com>
      Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
      d75b9e80
    • Vlad Buslov's avatar
      net/mlx5: Bridge, dynamic entry ageing · c636a0f0
      Vlad Buslov authored
      
      
      Dynamic FDB entries require capability to age out unused entries. Such
      entries are either aged out by kernel software bridge implementation or by
      hardware switch that offloaded them (and notified the kernel to mark them
      as SWITCHDEV_FDB_ADD_TO_BRIDGE). Leaving ageing to kernel bridge would
      result it deleting offloaded dynamic FDB entries every ageing_time period
      due to packets being processed by hardware and, consecutively, 'used'
      timestamp for FDB entry not being updated. However, since hardware doesn't
      support ageing, software solution inside the driver is required.
      
      In order to emulate hardware ageing in driver, extend bridge FDB ingress
      flows with counter and create delayed br_offloads->update_work task on
      bridge offloads workqueue. Run the task every second, update 'used'
      timestamp in software bridge dynamic entry by sending
      SWITCHDEV_FDB_ADD_TO_BRIDGE for the entry, if it flow hardware counter
      lastuse field was changed since last update. If lastuse wasn't changed for
      ageing_time period, then delete the FDB entry and notify kernel bridge by
      sending SWITCHDEV_FDB_DEL_TO_BRIDGE notification.
      
      Register blocking switchdev notifier callback and handle attribute set
      SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME event to allow user to dynamically
      configure bridge FDB entry ageing timeout. Save the value per-bridge in
      struct mlx5_esw_bridge. Silently ignore
      SWITCHDEV_ATTR_ID_PORT_{PRE_}BRIDGE_FLAGS switchdev event since mlx5 bridge
      implementation relies on software bridge for implementing necessary
      behavior for all of these flags.
      
      Signed-off-by: default avatarVlad Buslov <vladbu@nvidia.com>
      Reviewed-by: default avatarJianbo Liu <jianbol@nvidia.com>
      Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
      c636a0f0
    • Vlad Buslov's avatar
      net/mlx5: Bridge, handle FDB events · 7cd6a54a
      Vlad Buslov authored
      
      
      Hardware supported by mlx5 driver doesn't provide learning and requires the
      driver to emulate all switch-like behavior in software. As such, all
      packets by default go through miss path, appear on representor and get to
      software bridge, if it is the upper device of the representor. This causes
      bridge to process packet in software, learn the MAC address to FDB and send
      SWITCHDEV_FDB_ADD_TO_DEVICE event to all subscribers.
      
      In order to offload FDB entries in mlx5, register switchdev notifier
      callback and implement support for both 'added_by_user' and dynamic FDB
      entry SWITCHDEV_FDB_ADD_TO_DEVICE events asynchronously using new
      mlx5_esw_bridge_offloads->wq ordered workqueue. In workqueue callback
      offload the ingress rule (matching FDB entry MAC as packet source MAC) and
      egress table rule (matching FDB entry MAC as destination MAC). For ingress
      table rule also match source vport to ensure that only traffic coming from
      expected bridge port is matched by offloaded rule. Save all the relevant
      FDB entry data in struct mlx5_esw_bridge_fdb_entry instance and insert the
      instance in new mlx5_esw_bridge->fdb_list list (for traversing all entries
      by software ageing implementation in following patch) and in new
      mlx5_esw_bridge->fdb_ht hash table for fast retrieval. Notify the bridge
      that FDB entry has been offloaded by sending SWITCHDEV_FDB_OFFLOADED
      notification.
      
      Delete FDB entry on reception of SWITCHDEV_FDB_DEL_TO_DEVICE event.
      
      Signed-off-by: default avatarVlad Buslov <vladbu@nvidia.com>
      Reviewed-by: default avatarJianbo Liu <jianbol@nvidia.com>
      Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
      7cd6a54a
    • Vlad Buslov's avatar
      net/mlx5: Bridge, add offload infrastructure · 19e9bfa0
      Vlad Buslov authored
      
      
      Create new files bridge.{c|h} in en/rep directory that implement bridge
      interaction with representor netdevices and handle required
      events/notifications, bridge.{c|h} in esw directory that implement all
      necessary eswitch offloading infrastructure and works on vport/eswitch
      level. Provide new kconfig MLX5_BRIDGE which is automatically selected when
      both kernel bridge and mlx5 eswitch configs are enabled.
      
      Provide basic infrastructure for bridge offloads:
      
      - struct mlx5_esw_bridge_offloads - per-eswitch bridge offload structure
      that encapsulates generic bridge-offloads data (notifier blocks, ingress
      flow table/group, etc.) that is created/deleted on enable/disable eswitch
      offloads.
      
      - struct mlx5_esw_bridge - per-bridge structure that encapsulates
      per-bridge data (reference counter, FDB, egress flow table/group, etc.)
      that is created when first eswitch represetor is attached to new bridge and
      deleted when last representor is removed from the bridge as a result of
      NETDEV_CHANGEUPPER event.
      
      The bridge tables are created with new priority FDB_BR_OFFLOAD in FDB
      namespace. The new priority is between tc-miss and slow path priorities.
      Priority consist of two levels: the ingress table that is global per
      eswitch and matches incoming packets by src_mac/vid and redirects them to
      next level (egress table) that is chosen according to ingress port bridge
      membership and matches on dst_mac/vid in order to redirect packet to vport
      according to the following diagram:
      
                      +
                      |
            +---------v----------+
            |                    |
            |   FDB_TC_OFFLOAD   |
            |                    |
            +---------+----------+
                      |
                      |
            +---------v----------+
            |                    |
            |   FDB_FT_OFFLOAD   |
            |                    |
            +---------+----------+
                      |
                      |
            +---------v----------+
            |                    |
            |    FDB_TC_MISS     |
            |                    |
            +---------+----------+
                      |
      +--------------------------------------+
      |               |                      |
      |        +------+                      |
      |        |                             |
      | +------v--------+   FDB_BR_OFFLOAD   |
      | | INGRESS_TABLE |                    |
      | +------+---+----+                    |
      |        |   |      match              |
      |        |   +---------+               |
      |        |             |               |    +-------+
      |        |     +-------v-------+ match |    |       |
      |        |     | EGRESS_TABLE  +------------> vport |
      |        |     +-------+-------+       |    |       |
      |        |             |               |    +-------+
      |        |    miss     |               |
      |        +------+------+               |
      |               |                      |
      +--------------------------------------+
                      |
                      |
            +---------v----------+
            |                    |
            |   FDB_SLOW_PATH    |
            |                    |
            +---------+----------+
                      |
                      v
      
      Signed-off-by: default avatarVlad Buslov <vladbu@nvidia.com>
      Reviewed-by: default avatarJianbo Liu <jianbol@nvidia.com>
      Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
      19e9bfa0
    • Vlad Buslov's avatar
      net/mlx5e: Refactor mlx5e_eswitch_{*}rep() helpers · 07810152
      Vlad Buslov authored
      
      
      Change the helper to functions to accept constant pointer to struct
      net_device. This is necessary for following patches in series that pass
      mlx5e_eswitch_rep() as a callback to kernel bridge infrastructure code.
      
      Signed-off-by: default avatarVlad Buslov <vladbu@nvidia.com>
      Reviewed-by: default avatarJianbo Liu <jianbol@nvidia.com>
      Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
      07810152
    • Vlad Buslov's avatar
      net/mlx5: Create TC-miss priority and table · ec3be887
      Vlad Buslov authored
      
      
      In order to adhere to kernel software datapath model bridge offloads must
      come after TC and NF FDBs. Following patches in this series add new FDB
      priority for bridge after FDB_FT_OFFLOAD. However, since netfilter offload
      is implemented with unmanaged tables, its miss path is not automatically
      connected to next priority and requires the code to manually connect with
      slow table. To keep bridge offloads encapsulated and not mix it with
      eswitch offloads, create a new FDB_TC_MISS priority between FDB_FT_OFFLOAD
      and FDB_SLOW_PATH:
      
                +
                |
      +---------v----------+
      |                    |
      |   FDB_TC_OFFLOAD   |
      |                    |
      +---------+----------+
                |
                |
                |
      +---------v----------+
      |                    |
      |   FDB_FT_OFFLOAD   |
      |                    |
      +---------+----------+
                |
                |
                |
      +---------v----------+
      |                    |
      |    FDB_TC_MISS     |
      |                    |
      +---------+----------+
                |
                |
                |
      +---------v----------+
      |                    |
      |   FDB_SLOW_PATH    |
      |                    |
      +---------+----------+
                |
                v
      
      Initialize the new priority with single default empty managed table and use
      the table as TC/NF miss patch instead of slow table. This approach allows
      bridge offloads to be created as new FDB namespace priority between
      FDB_TC_MISS and FDB_SLOW_PATH without exposing its internal tables to any
      other modules since miss path of managed TC-miss table is automatically
      wired to next priority.
      
      Signed-off-by: default avatarVlad Buslov <vladbu@nvidia.com>
      Reviewed-by: default avatarJianbo Liu <jianbol@nvidia.com>
      Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
      ec3be887
    • Yevgeny Kliteynik's avatar
      net/mlx5: DR, Support EMD tag in modify header for STEv1 · ded6a877
      Yevgeny Kliteynik authored
      
      
      Add support for EMD tag in modify header set/copy actions
      on device that supports STEv1.
      
      Signed-off-by: default avatarYevgeny Kliteynik <kliteyn@nvidia.com>
      Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
      ded6a877
    • Yevgeny Kliteynik's avatar
      net/mlx5: DR, Added support for INSERT_HEADER reformat type · 7ea9b398
      Yevgeny Kliteynik authored
      
      
      Add support for INSERT_HEADER packet reformat context type
      
      Signed-off-by: default avatarYevgeny Kliteynik <kliteyn@nvidia.com>
      Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
      7ea9b398
    • Yevgeny Kliteynik's avatar
      net/mlx5: Added new parameters to reformat context · 3f3f05ab
      Yevgeny Kliteynik authored
      
      
      Adding new reformat context type (INSERT_HEADER) requires adding two new
      parameters to reformat context - reformat_param_0 and reformat_param_1.
      As defined by HW spec, these parameters have different meaning for
      different reformat context type.
      
      The first parameter (reformat_param_0) is not new to HW spec, but it
      wasn't used by any of the supported reformats. The second parameter
      (reformat_param_1) is new to the HW spec - it was added to allow
      supporting INSERT_HEADER.
      
      For NSERT_HEADER, reformat_param_0 indicates the header used to
      reference the location of the inserted header, and reformat_param_1
      indicates the offset of the inserted header from the reference point
      defined by reformat_param_0.
      
      Signed-off-by: default avatarYevgeny Kliteynik <kliteyn@nvidia.com>
      Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
      3f3f05ab
    • Yevgeny Kliteynik's avatar
      net/mlx5: DR, Allow encap action for RX for supporting devices · d7418b4e
      Yevgeny Kliteynik authored
      
      
      Encap actions on RX flow were not supported on older devices.
      However, this is no longer the case in devices that support STEv1.
      This patch adds support for encap l3/l2 on RX flow for supported
      devices: update actions state machine by adding the newely supported
      transitions and add the required support in STEv0/1 files.
      The new transitions that are supported are:
       - from decap/modify-header/pop-vlan to encap
       - from encap to termination table
      
      Signed-off-by: default avatarErez Shitrit <erezsh@nvidia.com>
      Signed-off-by: default avatarYevgeny Kliteynik <kliteyn@nvidia.com>
      Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
      d7418b4e
    • Yevgeny Kliteynik's avatar
      net/mlx5: DR, Split reformat state to Encap and Decap · 28de41a4
      Yevgeny Kliteynik authored
      
      
      Split single reformat state into two separate states for encap and decap.
      This will allow adding actions to the specific domain, such as encap on RX.
      
      Signed-off-by: default avatarErez Shitrit <erezsh@nvidia.com>
      Signed-off-by: default avatarYevgeny Kliteynik <kliteyn@nvidia.com>
      Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
      28de41a4
    • Yevgeny Kliteynik's avatar
      net/mlx5: mlx5_ifc support for header insert/remove · 67133eaa
      Yevgeny Kliteynik authored
      
      
      Add support for HCA caps 2 that contains capabilities for the new
      insert/remove header actions.
      
      Added the required definitions for supporting the new reformat type:
      added packet reformat parameters, reformat anchors and definitions
      to allow copy/set into the inserted EMD (Embedded MetaData) tag.
      
      Signed-off-by: default avatarYevgeny Kliteynik <kliteyn@nvidia.com>
      Signed-off-by: default avatarVlad Buslov <vladbu@nvidia.com>
      Reviewed-by: default avatarJianbo Liu <jianbol@nvidia.com>
      Signed-off-by: default avatarSaeed Mahameed <saeedm@nvidia.com>
      67133eaa
    • David S. Miller's avatar
      Merge branch 'ipa-mem-1' · 0d155170
      David S. Miller authored
      
      
      Alex Elder says:
      
      ====================
      net: ipa: memory region rework, part 1
      
      This is the first portion of a very long series of patches that has
      been split in two.  Once these patches are accepted, I'll post the
      remaining patches.
      
      The combined series reworks the way memory regions are defined in
      the configuration data, and in the process solidifies code that
      ensures configurations are valid.
      
      In this portion (part 1), most of the focus is on improving
      validation of code.  This validation is now done unconditionally
      (something I promised Leon Romanovsky I would work on).  Validation
      will occur earlier than before, catching configuration problems as
      early as possible and permitting the rest of the driver to avoid
      needing to do some error checking.  There will now be checks to
      ensure all defined regions are supported by the hardware, that
      required regions are all defined, and that there are no duplicate
      regions.
      
      The second portion (part 2) is mainly a set of small but pervasive
      changes whose result is to have the memory region array not be
      indexed by region ID.  I'll provide further explanation when I post
      that series.
      ====================
      
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      0d155170
    • Alex Elder's avatar
      net: ipa: use bitmap to check for missing regions · 6857b023
      Alex Elder authored
      
      
      In ipa_mem_valid(), wait until regions have been marked in the memory
      region bitmap, and check all that are not found there to ensure they
      are not required.
      
      Signed-off-by: default avatarAlex Elder <elder@linaro.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      6857b023
    • Alex Elder's avatar
      net: ipa: flag duplicate memory regions · eadf7f93
      Alex Elder authored
      
      
      Add a test in ipa_mem_valid() to ensure no memory region is defined
      more than once, using a bitmap to record each defined memory region.
      Skip over undefined regions when checking (we can have any number of
      those).
      
      Signed-off-by: default avatarAlex Elder <elder@linaro.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      eadf7f93
    • Alex Elder's avatar
      net: ipa: validate memory regions based on version · 75bcfde6
      Alex Elder authored
      
      
      Introduce ipa_mem_id_valid(), and use it to check defined memory
      regions to ensure they are valid for a given version of IPA.
      
      Signed-off-by: default avatarAlex Elder <elder@linaro.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      75bcfde6
    • Alex Elder's avatar
      net: ipa: introduce ipa_mem_id_optional() · d39ffb97
      Alex Elder authored
      
      
      Introduce a new function that indicates whether a given memory
      region is required for a given version of IPA hardware.  Use it to
      verify that all required regions are present during initialization.
      
      Reorder the definitions of the memory region IDs to be based on
      the version in which they're first defined.  Use "+" rather than
      "and above" where defining the IPA versions in which memory IDs are
      used, and indicate which regions are optional (many are not).
      
      Signed-off-by: default avatarAlex Elder <elder@linaro.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      d39ffb97
    • Alex Elder's avatar
      net: ipa: pass memory configuration data to ipa_mem_valid() · 1eec7677
      Alex Elder authored
      
      
      Pass the memory configuration data array to ipa_mem_valid() for
      validation, and use that rather than assuming it's already been
      recorded in the IPA structure.  Move the memory data array size
      check into ipa_mem_valid().
      
      Call ipa_mem_valid() early in ipa_mem_init(), and only proceed with
      assigning the memory array pointer and size if it is found to be
      valid.
      
      Signed-off-by: default avatarAlex Elder <elder@linaro.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      1eec7677
    • Alex Elder's avatar
      net: ipa: validate memory regions at init time · 2f9be1e9
      Alex Elder authored
      
      
      Move the memory region validation check so it happens earlier when
      initializing the driver, at init time rather than config time (i.e.,
      before access to hardware is required).
      
      Signed-off-by: default avatarAlex Elder <elder@linaro.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      2f9be1e9
    • Alex Elder's avatar
      net: ipa: separate region range check from other validation · 5e57c6c5
      Alex Elder authored
      
      
      The only thing done by ipa_mem_valid_one() that requires hardware
      access is the check for whether all regions fit within the size of
      IPA local memory specified by an IPA register.
      
      Introduce ipa_mem_size_valid() to implement this verification and
      stop doing so in ipa_mem_valid_one().  Call the new function from
      ipa_mem_config() (which is also the caller of ipa_mem_valid()).
      
      Signed-off-by: default avatarAlex Elder <elder@linaro.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      5e57c6c5
    • Alex Elder's avatar
      net: ipa: separate memory validation from initialization · 98334d2a
      Alex Elder authored
      
      
      Currently, memory regions are validated in the loop that initializes
      them.  Instead, validate them separately.
      
      Rename ipa_mem_valid() to be ipa_mem_valid_one().  Define a *new*
      function named ipa_mem_valid() that performs validation of the array
      of memory regions provided.  This function calls ipa_mem_valid_one()
      for each region in turn.
      
      Skip validation for any "empty" region descriptors, which have zero
      size and are not preceded by any canary values.  Issue a warning for
      such descriptors if the offset is non-zero.
      
      Signed-off-by: default avatarAlex Elder <elder@linaro.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      98334d2a
    • Alex Elder's avatar
      net: ipa: validate memory regions unconditionally · 0300df2d
      Alex Elder authored
      
      
      Do memory region descriptor validation unconditionally, rather than
      having it depend on IPA_VALIDATION being defined.
      
      Pass the address of a memory region descriptor rather than a memory
      ID to ipa_mem_valid().
      
      Signed-off-by: default avatarAlex Elder <elder@linaro.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      0300df2d
    • Alex Elder's avatar
      net: ipa: store memory region id in descriptor · 14ab6a20
      Alex Elder authored
      
      
      Store the memory region ID in the memory descriptor structure.  This
      is a move toward *not* indexing the array by the ID, but for now we
      must still specify those index values.  Define an explicitly
      undefined region ID, value 0, so uninitialized entries in the array
      won't use an otherwise valid ID.
      
      Signed-off-by: default avatarAlex Elder <elder@linaro.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      14ab6a20