DPDK patches and discussions
 help / color / mirror / Atom feed
From: Ouyang Changchun <changchun.ouyang@intel.com>
To: dev@dpdk.org
Subject: [dpdk-dev] [PATCH 00/36] Update IXGBE base codes
Date: Thu, 12 Feb 2015 20:00:32 +0800	[thread overview]
Message-ID: <1423742468-30404-1-git-send-email-changchun.ouyang@intel.com> (raw)

This patch set update IXGBE base codes to the version of cid-10g-shared-code.2015.02.03.
and this patch set add 2 new device id as following:
#define IXGBE_DEV_ID_X550EM_X_10G_T            0x15AD
#define IXGBE_DEV_ID_X550EM_X_1G_T             0x15AE

Changchun Ouyang (36):
  ixgbe base codes: Code cleanup and minor changes
  ixgbe base codes: Debug output macro
  ixgbe base codes: Fix bus type issue
  ixgbe base codes: Fix link speed issue
  ixgbe base codes: Fix early return
  ixgbe base codes: Update the CS address
  ixgbe base codes: Extract function for management capability
  ixgbe base codes: Set phy power
  ixgbe base codes: Use mng present function
  ixgbe base codes: Get host interface command status
  ixgbe base codes: Refine function for host interface command
  ixgbe base codes: Refine struct for physical information
  ixgbe base codes: Clear Tx pending
  ixgbe base codes: Use IOMEM
  ixgbe base codes: Update macros
  ixgbe base codes: New phy ID
  ixgbe base codes: Get bus info
  ixgbe base codes: Restructure host interface command
  ixgbe base codes: Fix mac type issue
  ixgbe base codes: API for setup internal phy
  ixgbe base codes: API for set phy power
  ixgbe base codes: API for read i2c combined
  ixgbe base codes: API for write i2c combined
  ixgbe base codes: Support 5G link speed
  ixgbe base codes: Refine branch statement
  ixgbe base codes: SFP probe
  ixgbe base codes: Set LAN ID
  ixgbe base codes: Calculate checksum
  ixgbe base codes: Command for flow director
  ixgbe base codes: Auto-negotiation
  ixgbe base codes: Bit-bang mode
  ixgbe base codes: Setup kx4 phy
  ixgbe base codes: Read/write iosf sb stat
  ixgbe base codes: New device id
  ixgbe base codes: Update readme
  eal: Add 2 device ids for ixgbe

 lib/librte_eal/common/include/rte_pci_dev_ids.h |   6 +-
 lib/librte_pmd_ixgbe/ixgbe/README               |   2 +-
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_82598.c        |  55 ++-
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_82598.h        |   1 -
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_82599.c        | 237 +++++-----
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_82599.h        |   1 -
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_api.c          |  61 ++-
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_api.h          |   5 +-
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_common.c       | 189 +++++---
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_common.h       |   5 +-
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_dcb.c          |   1 -
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_dcb.h          |   2 -
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_dcb_82598.c    |   1 -
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_dcb_82598.h    |   1 -
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_dcb_82599.c    |   3 +-
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_dcb_82599.h    |   1 -
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_osdep.h        |   4 +-
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_phy.c          | 220 +++++++--
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_phy.h          |   7 +-
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_type.h         | 131 +++++-
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_vf.c           |   1 -
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_vf.h           |   5 -
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_x540.c         |  82 ++--
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_x540.h         |   1 -
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_x550.c         | 582 ++++++++++++++++++------
 lib/librte_pmd_ixgbe/ixgbe/ixgbe_x550.h         |   9 +-
 26 files changed, 1158 insertions(+), 455 deletions(-)

-- 
1.8.4.2

             reply	other threads:[~2015-02-12 12:01 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-12 12:00 Ouyang Changchun [this message]
2015-02-12 12:00 ` [dpdk-dev] [PATCH 01/36] ixgbe base codes: Code cleanup and minor changes Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 02/36] ixgbe base codes: Debug output macro Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 03/36] ixgbe base codes: Fix bus type issue Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 04/36] ixgbe base codes: Fix link speed issue Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 05/36] ixgbe base codes: Fix early return Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 06/36] ixgbe base codes: Update the CS address Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 07/36] ixgbe base codes: Extract function for management capability Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 08/36] ixgbe base codes: Set phy power Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 09/36] ixgbe base codes: Use mng present function Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 10/36] ixgbe base codes: Get host interface command status Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 11/36] ixgbe base codes: Refine function for host interface command Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 12/36] ixgbe base codes: Refine struct for physical information Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 13/36] ixgbe base codes: Clear Tx pending Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 14/36] ixgbe base codes: Use IOMEM Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 15/36] ixgbe base codes: Update macros Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 16/36] ixgbe base codes: New phy ID Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 17/36] ixgbe base codes: Get bus info Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 18/36] ixgbe base codes: Restructure host interface command Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 19/36] ixgbe base codes: Fix mac type issue Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 20/36] ixgbe base codes: API for setup internal phy Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 21/36] ixgbe base codes: API for set phy power Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 22/36] ixgbe base codes: API for read i2c combined Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 23/36] ixgbe base codes: API for write " Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 24/36] ixgbe base codes: Support 5G link speed Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 25/36] ixgbe base codes: Refine branch statement Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 26/36] ixgbe base codes: SFP probe Ouyang Changchun
2015-02-12 12:00 ` [dpdk-dev] [PATCH 27/36] ixgbe base codes: Set LAN ID Ouyang Changchun
2015-02-12 12:01 ` [dpdk-dev] [PATCH 28/36] ixgbe base codes: Calculate checksum Ouyang Changchun
2015-02-12 12:01 ` [dpdk-dev] [PATCH 29/36] ixgbe base codes: Command for flow director Ouyang Changchun
2015-02-12 12:01 ` [dpdk-dev] [PATCH 30/36] ixgbe base codes: Auto-negotiation Ouyang Changchun
2015-02-12 12:01 ` [dpdk-dev] [PATCH 31/36] ixgbe base codes: Bit-bang mode Ouyang Changchun
2015-02-12 12:01 ` [dpdk-dev] [PATCH 32/36] ixgbe base codes: Setup kx4 phy Ouyang Changchun
2015-02-12 12:01 ` [dpdk-dev] [PATCH 33/36] ixgbe base codes: Read/write iosf sb stat Ouyang Changchun
2015-02-12 12:01 ` [dpdk-dev] [PATCH 34/36] ixgbe base codes: New device id Ouyang Changchun
2015-02-12 12:01 ` [dpdk-dev] [PATCH 36/36] eal: Add 2 device ids for ixgbe Ouyang Changchun
2015-02-27 14:54 ` [dpdk-dev] [PATCH 00/36] Update IXGBE base codes Liu, Jijiang
2015-04-27 14:59   ` Thomas Monjalon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1423742468-30404-1-git-send-email-changchun.ouyang@intel.com \
    --to=changchun.ouyang@intel.com \
    --cc=dev@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).