netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [for-next V2 00/17][PULL request] Mellanox mlx5 core driver updates 2016-08-20
@ 2016-08-22 16:50 Saeed Mahameed
  2016-08-22 16:50 ` [PATCH for-next V2 01/17] net/mlx5: Init/Teardown hca commands via mlx5 ifc Saeed Mahameed
                   ` (11 more replies)
  0 siblings, 12 replies; 21+ messages in thread
From: Saeed Mahameed @ 2016-08-22 16:50 UTC (permalink / raw)
  To: David S. Miller, Doug Ledford
  Cc: netdev-u79uwXL29TY76Z2rM5mHXA, linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	Leon Romanovsky, Tal Alon, Matan Barak, Saeed Mahameed

Hi Dave and Doug,

This series contains several low level and API updates for mlx5 core
commands interface and mlx5_ifc.h to be shared as base code for net-next and
rdma mlx5 4.9 submissions.

>From Saeed, ten patches that refactors old layouts of firmware commands which 
were manually generated before we introduced the mlx5_ifc, now all of the firmware
commands inbox/outbox layouts moved to use mlx5_ifc and we remove the old
manually generated structures.  Plus to those ten patches, we add two patches
that unifies mlx5 commands execution interface and improve the driver log messages
in that area.

>From Hadar and Ilya, added the needed hardware bits and infrastructure for
minimum inline headers setting and encap/decap commands and capabilities,
needed for E-Switch offloads.

>From Alex and Artemy, Update mlx5_ifc for modify RQ and XRC bits.

This series applies on top latest net-next and rdma/master, and smoothly merges with
the latest "Mellanox 100G mlx5 fixes 2016-08-16" series already applied into net branch.

The following changes since commit 29b4817d4018df78086157ea3a55c1d9424a7cfc:
    Linux 4.8-rc1

are available in the git repository at:
    git://git.kernel.org/pub/scm/linux/kernel/git/leon/linux-rdma.git tags/shared-for-4.9-1

for you to fetch changes up to 2e353b3468ecb1d12a44aaf35888f7de47d5c047:
    net/mlx5: Update struct mlx5_ifc_xrqc_bits

Changes since V1:
    - Reduce the number of patches and changed the cover letter respectively.

Thanks,
Saeed & Leon.

Alex Vesker (1):
  net/mlx5: Modify RQ bitmask from mlx5 ifc

Artemy Kovalyov (1):
  net/mlx5: Update struct mlx5_ifc_xrqc_bits

Hadar Hen Zion (2):
  net/mlx5: Enable setting minimum inline header mode for VFs
  net/mlx5: Update mlx5_ifc.h for vxlan encap/decap

Ilya Lesokhin (1):
  net/mlx5: Introduce alloc_encap and dealloc_encap commands

Saeed Mahameed (12):
  net/mlx5: Init/Teardown hca commands via mlx5 ifc
  net/mlx5: Access register and MAD IFC commands via mlx5 ifc
  net/mlx5: PD and UAR commands via mlx5 ifc
  net/mlx5: MCG commands via mlx5 ifc
  net/mlx5: Pages management commands via mlx5 ifc
  net/mlx5: EQ commands via mlx5 ifc
  {net,IB}/mlx5: CQ commands via mlx5 ifc
  {net,IB}/mlx5: MKey/PSV commands via mlx5 ifc
  {net,IB}/mlx5: QP/XRCD commands via mlx5 ifc
  {net,IB}/mlx5: Modify QP commands via mlx5 ifc
  net/mlx5: Unify and improve command interface
  net/mlx5: Improve driver log messages

 drivers/infiniband/hw/mlx5/cq.c                    | 110 +++---
 drivers/infiniband/hw/mlx5/main.c                  |  10 +-
 drivers/infiniband/hw/mlx5/mlx5_ib.h               |   2 +-
 drivers/infiniband/hw/mlx5/mr.c                    | 184 +++++----
 drivers/infiniband/hw/mlx5/qp.c                    | 189 ++++-----
 drivers/net/ethernet/mellanox/mlx5/core/cmd.c      | 261 +++++++------
 drivers/net/ethernet/mellanox/mlx5/core/cq.c       | 109 ++----
 drivers/net/ethernet/mellanox/mlx5/core/debugfs.c  |  50 +--
 .../net/ethernet/mellanox/mlx5/core/en_common.c    |  23 +-
 .../net/ethernet/mellanox/mlx5/core/en_ethtool.c   |   3 +-
 drivers/net/ethernet/mellanox/mlx5/core/en_main.c  |  50 ++-
 drivers/net/ethernet/mellanox/mlx5/core/en_rep.c   |   4 +-
 drivers/net/ethernet/mellanox/mlx5/core/eq.c       |  80 ++--
 drivers/net/ethernet/mellanox/mlx5/core/eswitch.c  |  98 ++---
 drivers/net/ethernet/mellanox/mlx5/core/fs_cmd.c   | 178 ++++-----
 drivers/net/ethernet/mellanox/mlx5/core/fs_cmd.h   |   7 +
 drivers/net/ethernet/mellanox/mlx5/core/fs_core.c  |  18 +-
 drivers/net/ethernet/mellanox/mlx5/core/fw.c       |  43 +--
 drivers/net/ethernet/mellanox/mlx5/core/mad.c      |  41 +-
 drivers/net/ethernet/mellanox/mlx5/core/main.c     |  91 ++---
 drivers/net/ethernet/mellanox/mlx5/core/mcg.c      |  72 +---
 .../net/ethernet/mellanox/mlx5/core/mlx5_core.h    |  17 +-
 drivers/net/ethernet/mellanox/mlx5/core/mr.c       | 189 ++++-----
 .../net/ethernet/mellanox/mlx5/core/pagealloc.c    | 156 +++-----
 drivers/net/ethernet/mellanox/mlx5/core/pd.c       |  61 +--
 drivers/net/ethernet/mellanox/mlx5/core/port.c     | 149 +++----
 drivers/net/ethernet/mellanox/mlx5/core/qp.c       | 299 ++++++++------
 drivers/net/ethernet/mellanox/mlx5/core/rl.c       |  11 +-
 drivers/net/ethernet/mellanox/mlx5/core/sriov.c    |   7 +-
 drivers/net/ethernet/mellanox/mlx5/core/srq.c      |  49 +--
 drivers/net/ethernet/mellanox/mlx5/core/transobj.c | 183 +++------
 drivers/net/ethernet/mellanox/mlx5/core/uar.c      |  67 +---
 drivers/net/ethernet/mellanox/mlx5/core/vport.c    |  94 ++---
 drivers/net/ethernet/mellanox/mlx5/core/vxlan.c    |  29 +-
 include/linux/mlx5/cq.h                            |   6 +-
 include/linux/mlx5/device.h                        | 429 +--------------------
 include/linux/mlx5/driver.h                        |  24 +-
 include/linux/mlx5/mlx5_ifc.h                      | 127 +++++-
 include/linux/mlx5/qp.h                            | 128 +-----
 include/linux/mlx5/vport.h                         |   2 +
 40 files changed, 1401 insertions(+), 2249 deletions(-)

-- 
2.7.4

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2016-08-22 18:49 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-22 16:50 [for-next V2 00/17][PULL request] Mellanox mlx5 core driver updates 2016-08-20 Saeed Mahameed
2016-08-22 16:50 ` [PATCH for-next V2 01/17] net/mlx5: Init/Teardown hca commands via mlx5 ifc Saeed Mahameed
2016-08-22 16:50 ` [PATCH for-next V2 02/17] net/mlx5: Access register and MAD IFC " Saeed Mahameed
     [not found] ` <1471884674-22709-1-git-send-email-saeedm-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
2016-08-22 16:51   ` [PATCH for-next V2 03/17] net/mlx5: PD and UAR " Saeed Mahameed
2016-08-22 16:51   ` [PATCH for-next V2 04/17] net/mlx5: MCG " Saeed Mahameed
2016-08-22 16:51   ` [PATCH for-next V2 05/17] net/mlx5: Pages management " Saeed Mahameed
2016-08-22 16:51   ` [PATCH for-next V2 06/17] net/mlx5: EQ " Saeed Mahameed
2016-08-22 16:51   ` [PATCH for-next V2 09/17] {net,IB}/mlx5: QP/XRCD " Saeed Mahameed
2016-08-22 16:51   ` [PATCH for-next V2 11/17] net/mlx5: Unify and improve command interface Saeed Mahameed
2016-08-22 16:51   ` [PATCH for-next V2 15/17] net/mlx5: Introduce alloc_encap and dealloc_encap commands Saeed Mahameed
2016-08-22 16:51 ` [PATCH for-next V2 07/17] {net,IB}/mlx5: CQ commands via mlx5 ifc Saeed Mahameed
2016-08-22 16:51 ` [PATCH for-next V2 08/17] {net,IB}/mlx5: MKey/PSV " Saeed Mahameed
2016-08-22 16:51 ` [PATCH for-next V2 10/17] {net,IB}/mlx5: Modify QP " Saeed Mahameed
2016-08-22 16:51 ` [PATCH for-next V2 12/17] net/mlx5: Improve driver log messages Saeed Mahameed
2016-08-22 16:51 ` [PATCH for-next V2 13/17] net/mlx5: Enable setting minimum inline header mode for VFs Saeed Mahameed
2016-08-22 16:51 ` [PATCH for-next V2 14/17] net/mlx5: Update mlx5_ifc.h for vxlan encap/decap Saeed Mahameed
2016-08-22 16:51 ` [PATCH for-next V2 16/17] net/mlx5: Modify RQ bitmask from mlx5 ifc Saeed Mahameed
2016-08-22 16:51 ` [PATCH for-next V2 17/17] net/mlx5: Update struct mlx5_ifc_xrqc_bits Saeed Mahameed
2016-08-22 17:11 ` [for-next V2 00/17][PULL request] Mellanox mlx5 core driver updates 2016-08-20 David Miller
2016-08-22 17:56   ` Saeed Mahameed
2016-08-22 18:49     ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).