DPDK patches and discussions
 help / color / mirror / Atom feed
From: Ferruh Yigit <ferruh.yigit@amd.com>
To: Hyong Youb Kim <hyonkim@cisco.com>
Cc: dev@dpdk.org, John Daley <johndale@cisco.com>
Subject: Re: [PATCH v2 2/3] net/enic: add speed capabilities for newer models
Date: Thu, 8 Aug 2024 09:50:30 +0100	[thread overview]
Message-ID: <54587e61-a155-45cb-a0e4-afe296ef8e73@amd.com> (raw)
In-Reply-To: <20240808061433.14971-3-hyonkim@cisco.com>

On 8/8/2024 7:14 AM, Hyong Youb Kim wrote:
> Add 1400/14000 and 15000 models to the speed_capa list.
> 

Do you want to introduce this new device variants in the driver guide?

Also does it makes sense to document new device model support in the
release notes?

> Signed-off-by: Hyong Youb Kim <hyonkim@cisco.com>
> Reviewed-by: John Daley <johndale@cisco.com>
> ---
>  drivers/net/enic/enic_ethdev.c | 21 +++++++++++++++++++++
>  1 file changed, 21 insertions(+)
> 
> diff --git a/drivers/net/enic/enic_ethdev.c b/drivers/net/enic/enic_ethdev.c
> index 5c967677fb..62c8751d09 100644
> --- a/drivers/net/enic/enic_ethdev.c
> +++ b/drivers/net/enic/enic_ethdev.c
> @@ -62,6 +62,27 @@ static const struct vic_speed_capa {
>  	{ 0x021a, RTE_ETH_LINK_SPEED_40G }, /* 1487 MLOM */
>  	{ 0x024a, RTE_ETH_LINK_SPEED_40G | RTE_ETH_LINK_SPEED_100G }, /* 1495 PCIe */
>  	{ 0x024b, RTE_ETH_LINK_SPEED_40G | RTE_ETH_LINK_SPEED_100G }, /* 1497 MLOM */
> +	{ 0x02af, RTE_ETH_LINK_SPEED_10G | RTE_ETH_LINK_SPEED_25G }, /* 1467 MLOM */
> +	{ 0x02b0, RTE_ETH_LINK_SPEED_40G | RTE_ETH_LINK_SPEED_100G }, /* 1477 MLOM */
> +	{ 0x02cf, RTE_ETH_LINK_SPEED_25G }, /* 14425 MLOM */
> +	{ 0x02d0, RTE_ETH_LINK_SPEED_25G }, /* 14825 Mezz */
> +	{ 0x02db, RTE_ETH_LINK_SPEED_100G }, /* 15231 MLOM */
> +	{ 0x02dc, RTE_ETH_LINK_SPEED_10G }, /* 15411 MLOM */
> +	{ 0x02dd, RTE_ETH_LINK_SPEED_10G | RTE_ETH_LINK_SPEED_25G |
> +		  RTE_ETH_LINK_SPEED_50G }, /* 15428 MLOM */
> +	{ 0x02de, RTE_ETH_LINK_SPEED_25G }, /* 15420 MLOM */
> +	{ 0x02e8, RTE_ETH_LINK_SPEED_40G | RTE_ETH_LINK_SPEED_100G |
> +		  RTE_ETH_LINK_SPEED_200G}, /* 15238 MLOM */
> +	{ 0x02e0, RTE_ETH_LINK_SPEED_10G | RTE_ETH_LINK_SPEED_25G |
> +		  RTE_ETH_LINK_SPEED_50G }, /* 15427 MLOM */
> +	{ 0x02df, RTE_ETH_LINK_SPEED_50G | RTE_ETH_LINK_SPEED_100G }, /* 15230 MLOM */
> +	{ 0x02e1, RTE_ETH_LINK_SPEED_25G | RTE_ETH_LINK_SPEED_50G }, /* 15422 Mezz */
> +	{ 0x02e4, RTE_ETH_LINK_SPEED_40G | RTE_ETH_LINK_SPEED_100G |
> +		  RTE_ETH_LINK_SPEED_200G }, /* 15235 PCIe */
> +	{ 0x02f2, RTE_ETH_LINK_SPEED_10G | RTE_ETH_LINK_SPEED_25G |
> +		  RTE_ETH_LINK_SPEED_50G }, /* 15425 PCIe */
> +	{ 0x02f3, RTE_ETH_LINK_SPEED_40G | RTE_ETH_LINK_SPEED_100G |
> +		  RTE_ETH_LINK_SPEED_200G }, /* 15237 MLOM */
>  	{ 0, 0 }, /* End marker */
>  };
>  


  reply	other threads:[~2024-08-08  8:50 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-08  4:18 [PATCH 0/3] net/enic: support VF and fix minor issues Hyong Youb Kim
2024-08-08  4:18 ` [PATCH 1/3] net/enic: support SR-IOV VF using admin channel Hyong Youb Kim
2024-08-08  4:18 ` [PATCH 2/3] net/enic: add speed capabilities for newer models Hyong Youb Kim
2024-08-08  4:18 ` [PATCH 3/3] net/enic: allow multicast in MAC address add callback Hyong Youb Kim
2024-08-08  6:14   ` [PATCH v2 0/3] net/enic: support VF and fix minor issues Hyong Youb Kim
2024-08-08  6:14     ` [PATCH v2 1/3] net/enic: support SR-IOV VF using admin channel Hyong Youb Kim
2024-08-08  8:50       ` Ferruh Yigit
2024-08-09  6:27         ` Hyong Youb Kim (hyonkim)
2024-08-08  6:14     ` [PATCH v2 2/3] net/enic: add speed capabilities for newer models Hyong Youb Kim
2024-08-08  8:50       ` Ferruh Yigit [this message]
2024-08-09  6:28         ` Hyong Youb Kim (hyonkim)
2024-08-08  6:14     ` [PATCH v2 3/3] net/enic: allow multicast in MAC address add callback Hyong Youb Kim
2024-08-08  8:50       ` Ferruh Yigit
2024-08-09  6:49         ` Hyong Youb Kim (hyonkim)
2024-08-09  7:07     ` [PATCH v3 0/3] net/enic: support VF and fix minor issues Hyong Youb Kim
2024-08-09  7:07       ` [PATCH v3 1/3] net/enic: support SR-IOV VF using admin channel Hyong Youb Kim
2024-08-09  7:07       ` [PATCH v3 2/3] net/enic: add speed capabilities for newer models Hyong Youb Kim
2024-08-09  7:07       ` [PATCH v3 3/3] net/enic: allow multicast in MAC address add callback Hyong Youb Kim

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=54587e61-a155-45cb-a0e4-afe296ef8e73@amd.com \
    --to=ferruh.yigit@amd.com \
    --cc=dev@dpdk.org \
    --cc=hyonkim@cisco.com \
    --cc=johndale@cisco.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).