patches for DPDK stable branches
 help / color / mirror / Atom feed
From: Kevin Traynor <ktraynor@redhat.com>
To: Qi Zhang <qi.z.zhang@intel.com>,
	wenzhuo.lu@intel.com, wei.zhao1@intel.com
Cc: paul.m.stillwell.jr@intel.com, dev@dpdk.org, stable@dpdk.org,
	Jingjing Wu <jingjing.wu@intel.com>
Subject: Re: [dpdk-stable] [dpdk-dev] [PATCH] net/iavf: enable more link speed
Date: Tue, 14 May 2019 16:11:19 +0100	[thread overview]
Message-ID: <1b9cf52d-b0c4-94e7-2869-99fe2bba7693@redhat.com> (raw)
In-Reply-To: <20190504140910.8935-1-qi.z.zhang@intel.com>

On 04/05/2019 15:09, Qi Zhang wrote:
> Enable advanced link speed mode (VIRTCHNL_VF_CAP_ADV_LINK_SPEED) so iavf
> PMD can identify more link speed that reported by pf.
> 
> Cc: stable@dpdk.org
> 

There is no Fixes: tag and that looks correct as it is adding a new
capability and in the process changing some of the existing code. Not
applying for 18.11.2, we can discuss further for 18.11.3 if necessary.

Kevin.

> Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
> ---
>  drivers/net/iavf/base/virtchnl.h | 17 ++++++++++++++++-
>  drivers/net/iavf/iavf.h          |  2 +-
>  drivers/net/iavf/iavf_ethdev.c   | 21 +++++++++++++++------
>  drivers/net/iavf/iavf_vchnl.c    |  4 ++--
>  4 files changed, 34 insertions(+), 10 deletions(-)
> 
> diff --git a/drivers/net/iavf/base/virtchnl.h b/drivers/net/iavf/base/virtchnl.h
> index 13bfdb86b..10b65380c 100644
> --- a/drivers/net/iavf/base/virtchnl.h
> +++ b/drivers/net/iavf/base/virtchnl.h
> @@ -258,6 +258,8 @@ VIRTCHNL_CHECK_STRUCT_LEN(16, virtchnl_vsi_resource);
>  #define VIRTCHNL_VF_OFFLOAD_ENCAP		0X00100000
>  #define VIRTCHNL_VF_OFFLOAD_ENCAP_CSUM		0X00200000
>  #define VIRTCHNL_VF_OFFLOAD_RX_ENCAP_CSUM	0X00400000
> +/* Define below the capability flags that are not offloads */
> +#define VIRTCHNL_VF_CAP_ADV_LINK_SPEED          0x00000080
>  
>  #define VF_BASE_MODE_OFFLOADS (VIRTCHNL_VF_OFFLOAD_L2 | \
>  			       VIRTCHNL_VF_OFFLOAD_VLAN | \
> @@ -562,10 +564,23 @@ enum virtchnl_event_codes {
>  struct virtchnl_pf_event {
>  	enum virtchnl_event_codes event;
>  	union {
> +		/* If the PF driver does not support the new speed reporting
> +		 * capabilities then use link_event else use link_event_adv to
> +		 * get the speed and link information. The ability to understand
> +		 * new speeds is indicated by setting the capability flag
> +		 * VIRTCHNL_VF_CAP_ADV_LINK_SPEED in vf_cap_flags parameter
> +		 * in virtchnl_vf_resource struct and can be used to determine
> +		 * which link event struct to use below.
> +		 */
>  		struct {
>  			enum virtchnl_link_speed link_speed;
> -			bool link_status;
> +			u8 link_status;
>  		} link_event;
> +		struct {
> +			/* link_speed provided in Mbps */
> +			u32 link_speed;
> +			u8 link_status;
> +		} link_event_adv;
>  	} event_data;
>  
>  	int severity;
> diff --git a/drivers/net/iavf/iavf.h b/drivers/net/iavf/iavf.h
> index e6e3e8d30..9a334e41c 100644
> --- a/drivers/net/iavf/iavf.h
> +++ b/drivers/net/iavf/iavf.h
> @@ -95,7 +95,7 @@ struct iavf_info {
>  	/* Event from pf */
>  	bool dev_closed;
>  	bool link_up;
> -	enum virtchnl_link_speed link_speed;
> +	uint32_t link_speed;
>  
>  	struct iavf_vsi vsi;
>  	bool vf_reset;
> diff --git a/drivers/net/iavf/iavf_ethdev.c b/drivers/net/iavf/iavf_ethdev.c
> index 7a0696ed7..bd9c5ecdf 100644
> --- a/drivers/net/iavf/iavf_ethdev.c
> +++ b/drivers/net/iavf/iavf_ethdev.c
> @@ -584,24 +584,33 @@ iavf_dev_link_update(struct rte_eth_dev *dev,
>  	 *  when receive LINK_CHANGE evnet from PF by Virtchnnl.
>  	 */
>  	switch (vf->link_speed) {
> -	case VIRTCHNL_LINK_SPEED_100MB:
> +	case 10:
> +		new_link.link_speed = ETH_SPEED_NUM_10M;
> +		break;
> +	case 100:
>  		new_link.link_speed = ETH_SPEED_NUM_100M;
>  		break;
> -	case VIRTCHNL_LINK_SPEED_1GB:
> +	case 1000:
>  		new_link.link_speed = ETH_SPEED_NUM_1G;
>  		break;
> -	case VIRTCHNL_LINK_SPEED_10GB:
> +	case 10000:
>  		new_link.link_speed = ETH_SPEED_NUM_10G;
>  		break;
> -	case VIRTCHNL_LINK_SPEED_20GB:
> +	case 20000:
>  		new_link.link_speed = ETH_SPEED_NUM_20G;
>  		break;
> -	case VIRTCHNL_LINK_SPEED_25GB:
> +	case 25000:
>  		new_link.link_speed = ETH_SPEED_NUM_25G;
>  		break;
> -	case VIRTCHNL_LINK_SPEED_40GB:
> +	case 40000:
>  		new_link.link_speed = ETH_SPEED_NUM_40G;
>  		break;
> +	case 50000:
> +		new_link.link_speed = ETH_SPEED_NUM_50G;
> +		break;
> +	case 100000:
> +		new_link.link_speed = ETH_SPEED_NUM_100G;
> +		break;
>  	default:
>  		new_link.link_speed = ETH_SPEED_NUM_NONE;
>  		break;
> diff --git a/drivers/net/iavf/iavf_vchnl.c b/drivers/net/iavf/iavf_vchnl.c
> index 6381fb63c..da6401d35 100644
> --- a/drivers/net/iavf/iavf_vchnl.c
> +++ b/drivers/net/iavf/iavf_vchnl.c
> @@ -153,7 +153,7 @@ iavf_handle_pf_event_msg(struct rte_eth_dev *dev, uint8_t *msg,
>  	case VIRTCHNL_EVENT_LINK_CHANGE:
>  		PMD_DRV_LOG(DEBUG, "VIRTCHNL_EVENT_LINK_CHANGE event");
>  		vf->link_up = pf_msg->event_data.link_event.link_status;
> -		vf->link_speed = pf_msg->event_data.link_event.link_speed;
> +		vf->link_speed = pf_msg->event_data.link_event_adv.link_speed;
>  		iavf_dev_link_update(dev, 0);
>  		_rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_INTR_LSC,
>  					      NULL);
> @@ -344,7 +344,7 @@ iavf_get_vf_resource(struct iavf_adapter *adapter)
>  	 * add advanced/optional offload capabilities
>  	 */
>  
> -	caps = IAVF_BASIC_OFFLOAD_CAPS;
> +	caps = IAVF_BASIC_OFFLOAD_CAPS | VIRTCHNL_VF_CAP_ADV_LINK_SPEED;
>  
>  	args.in_args = (uint8_t *)&caps;
>  	args.in_args_size = sizeof(caps);
> 


      parent reply	other threads:[~2019-05-14 15:11 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-04 14:09 [dpdk-stable] " Qi Zhang
2019-05-05  2:50 ` Zhao1, Wei
2019-05-06  2:27   ` Zhang, Qi Z
2019-05-14 15:11 ` Kevin Traynor [this message]

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=1b9cf52d-b0c4-94e7-2869-99fe2bba7693@redhat.com \
    --to=ktraynor@redhat.com \
    --cc=dev@dpdk.org \
    --cc=jingjing.wu@intel.com \
    --cc=paul.m.stillwell.jr@intel.com \
    --cc=qi.z.zhang@intel.com \
    --cc=stable@dpdk.org \
    --cc=wei.zhao1@intel.com \
    --cc=wenzhuo.lu@intel.com \
    /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).