All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] update ixgbe base code
@ 2018-09-10 16:37 Xiaoyun Li
  2018-09-10 16:37 ` [PATCH 1/8] net/ixgbe/base: update the license Xiaoyun Li
                   ` (9 more replies)
  0 siblings, 10 replies; 22+ messages in thread
From: Xiaoyun Li @ 2018-09-10 16:37 UTC (permalink / raw)
  To: wenzhuo.lu, dev; +Cc: Xiaoyun Li

Update the ixgbe base code to version cid-ixgbe.2018.08.28.tar.gz.

Xiaoyun Li (8):
  net/ixgbe/base: update the license
  net/ixgbe/base: cleanup codes
  net/ixgbe/base: add FW recovery mode check
  net/ixgbe/base: relpace an operation in X550 setup
  net/ixgbe/base: update X550 SFP identification
  net/ixgbe/base: add support for DCB registers dump
  net/ixgbe: remove Light Spring code
  net/ixgbe/base: update README file

 drivers/net/ixgbe/base/README            |  4 +-
 drivers/net/ixgbe/base/ixgbe_82598.c     | 35 ++------------
 drivers/net/ixgbe/base/ixgbe_82598.h     | 35 ++------------
 drivers/net/ixgbe/base/ixgbe_82599.c     | 45 ++----------------
 drivers/net/ixgbe/base/ixgbe_82599.h     | 35 ++------------
 drivers/net/ixgbe/base/ixgbe_api.c       | 50 ++++++--------------
 drivers/net/ixgbe/base/ixgbe_api.h       | 36 ++-------------
 drivers/net/ixgbe/base/ixgbe_common.c    | 41 ++--------------
 drivers/net/ixgbe/base/ixgbe_common.h    | 35 ++------------
 drivers/net/ixgbe/base/ixgbe_dcb.c       | 35 ++------------
 drivers/net/ixgbe/base/ixgbe_dcb.h       | 35 ++------------
 drivers/net/ixgbe/base/ixgbe_dcb_82598.c | 35 ++------------
 drivers/net/ixgbe/base/ixgbe_dcb_82598.h | 35 ++------------
 drivers/net/ixgbe/base/ixgbe_dcb_82599.c | 35 ++------------
 drivers/net/ixgbe/base/ixgbe_dcb_82599.h | 35 ++------------
 drivers/net/ixgbe/base/ixgbe_hv_vf.c     | 35 ++------------
 drivers/net/ixgbe/base/ixgbe_hv_vf.h     | 35 ++------------
 drivers/net/ixgbe/base/ixgbe_mbx.c       | 35 ++------------
 drivers/net/ixgbe/base/ixgbe_mbx.h       | 35 ++------------
 drivers/net/ixgbe/base/ixgbe_osdep.h     | 36 ++-------------
 drivers/net/ixgbe/base/ixgbe_phy.c       | 36 ++-------------
 drivers/net/ixgbe/base/ixgbe_phy.h       | 35 ++------------
 drivers/net/ixgbe/base/ixgbe_type.h      | 53 ++++++---------------
 drivers/net/ixgbe/base/ixgbe_vf.c        | 35 ++------------
 drivers/net/ixgbe/base/ixgbe_vf.h        | 35 ++------------
 drivers/net/ixgbe/base/ixgbe_x540.c      | 35 ++------------
 drivers/net/ixgbe/base/ixgbe_x540.h      | 35 ++------------
 drivers/net/ixgbe/base/ixgbe_x550.c      | 59 +++++++++---------------
 drivers/net/ixgbe/base/ixgbe_x550.h      | 36 ++-------------
 drivers/net/ixgbe/ixgbe_ethdev.c         |  1 -
 30 files changed, 131 insertions(+), 931 deletions(-)

-- 
2.17.1

^ permalink raw reply	[flat|nested] 22+ messages in thread
* [PATCH 0/8] net/ixgbe: update base code
@ 2018-01-10 16:04 Qiming Yang
  2018-01-10 16:04 ` [PATCH 8/8] net/ixgbe/base: update README file Qiming Yang
  0 siblings, 1 reply; 22+ messages in thread
From: Qiming Yang @ 2018-01-10 16:04 UTC (permalink / raw)
  To: dev; +Cc: wenzhuo.lu, wei.dai, Qiming Yang

The patchset update ixgbe base code base on latest CID drop cid-
ixgbe.2018.01.02.tar.gz, couple issues are fixed, include:
SECRX_RDY polling frequency and semaphore timeout, PHY initialization
code not cleanup, uninitialized padding, PHY init fails, SW resource
bits sync and some compile issues for GCC7. And also changed method for
flash read, added x553 SGMII 10/100Mbps support and common FW version
functions. The patchset also covers couple code clean and function
comments update.

Qiming Yang (8):
  net/ixgbe/base: add common FW version functions
  net/ixgbe/base: increasing timeout
  net/ixgbe/base: x550 related bug fix
  net/ixgbe/base: changed method for flash read
  net/ixgbe/base: clear sync register during init
  net/ixgbe/base: update function comments
  net/ixgbe/base: added media type fiber fixed
  net/ixgbe/base: update README file

 drivers/net/ixgbe/base/README            |   2 +-
 drivers/net/ixgbe/base/ixgbe_82598.c     |   3 +-
 drivers/net/ixgbe/base/ixgbe_82599.c     |  31 ++++--
 drivers/net/ixgbe/base/ixgbe_api.c       |  18 +++-
 drivers/net/ixgbe/base/ixgbe_common.c    | 179 ++++++++++++++++++++++++++++---
 drivers/net/ixgbe/base/ixgbe_common.h    |   6 ++
 drivers/net/ixgbe/base/ixgbe_dcb.c       |  10 +-
 drivers/net/ixgbe/base/ixgbe_dcb_82598.c |  22 +++-
 drivers/net/ixgbe/base/ixgbe_dcb_82599.c |  25 ++++-
 drivers/net/ixgbe/base/ixgbe_hv_vf.c     |  17 +++
 drivers/net/ixgbe/base/ixgbe_mbx.c       |  26 +----
 drivers/net/ixgbe/base/ixgbe_phy.c       |  19 +++-
 drivers/net/ixgbe/base/ixgbe_type.h      |  61 +++++++++--
 drivers/net/ixgbe/base/ixgbe_vf.c        |   7 +-
 drivers/net/ixgbe/base/ixgbe_x540.c      |  27 +++--
 drivers/net/ixgbe/base/ixgbe_x550.c      | 150 +++++++++-----------------
 16 files changed, 418 insertions(+), 185 deletions(-)

-- 
2.9.4

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

end of thread, other threads:[~2018-09-19 14:33 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-10 16:37 [PATCH 0/8] update ixgbe base code Xiaoyun Li
2018-09-10 16:37 ` [PATCH 1/8] net/ixgbe/base: update the license Xiaoyun Li
2018-09-10 16:37 ` [PATCH 2/8] net/ixgbe/base: cleanup codes Xiaoyun Li
2018-09-13  9:02   ` Ferruh Yigit
2018-09-17  6:46     ` Li, Xiaoyun
2018-09-10 16:37 ` [PATCH 3/8] net/ixgbe/base: add FW recovery mode check Xiaoyun Li
2018-09-10 16:37 ` [PATCH 4/8] net/ixgbe/base: relpace an operation in X550 setup Xiaoyun Li
2018-09-10 16:37 ` [PATCH 5/8] net/ixgbe/base: update X550 SFP identification Xiaoyun Li
2018-09-10 16:37 ` [PATCH 6/8] net/ixgbe/base: add support for DCB registers dump Xiaoyun Li
2018-09-10 16:37 ` [PATCH 7/8] net/ixgbe: remove Light Spring code Xiaoyun Li
2018-09-10 16:37 ` [PATCH 8/8] net/ixgbe/base: update README file Xiaoyun Li
2018-09-13  2:16 ` [PATCH 0/8] update ixgbe base code Zhang, Qi Z
2018-09-17  9:28 ` [PATCH v2 0/7] " Xiaoyun Li
2018-09-17  9:28   ` [PATCH v2 1/7] net/ixgbe/base: update the license Xiaoyun Li
2018-09-17  9:28   ` [PATCH v2 2/7] net/ixgbe/base: cleanup codes Xiaoyun Li
2018-09-17  9:28   ` [PATCH v2 3/7] net/ixgbe/base: add FW recovery mode check Xiaoyun Li
2018-09-17  9:28   ` [PATCH v2 4/7] net/ixgbe/base: relpace an operation in X550 setup Xiaoyun Li
2018-09-17  9:28   ` [PATCH v2 5/7] net/ixgbe/base: update X550 SFP identification Xiaoyun Li
2018-09-17  9:28   ` [PATCH v2 6/7] net/ixgbe/base: add support for DCB registers dump Xiaoyun Li
2018-09-17  9:28   ` [PATCH v2 7/7] net/ixgbe/base: update README file Xiaoyun Li
2018-09-19 14:31   ` [PATCH v2 0/7] update ixgbe base code Zhang, Qi Z
  -- strict thread matches above, loose matches on Subject: below --
2018-01-10 16:04 [PATCH 0/8] net/ixgbe: update " Qiming Yang
2018-01-10 16:04 ` [PATCH 8/8] net/ixgbe/base: update README file Qiming Yang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.