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 1/3] net/enic: support SR-IOV VF using admin channel
Date: Thu, 8 Aug 2024 09:50:24 +0100 [thread overview]
Message-ID: <81cacbfa-7bd7-4e1b-9b9c-f60c11848dab@amd.com> (raw)
In-Reply-To: <20240808061433.14971-2-hyonkim@cisco.com>
On 8/8/2024 7:14 AM, Hyong Youb Kim wrote:
> The Linux VIC PF driver now requires the use of the admin channel
> between PF and VF drivers. Certain devcmds are disabled for VF. The VF
> driver is supposed to send control messages through the admin channel
> to the PF driver to perform those devcmds. This commit adds the admin
> channel to the VF driver (net/enic).
>
> The VF's admin channel consists of normal Tx/Rx queues. VIC firmware
> hardwires those queues to PF. Control messages are specially crafted
> but otherwise normal packets.
>
> The Rx queue uses LSC interrupt (interrupt vector 0) to notify the
> driver of new Rx control messages. The PF driver may send unsolicited
> request messages (e.g. asking for VF stats) to VF. Such messages cause
> LSC interrupts and are processed on the global interrupt thread.
>
> For devcmds that must be sent through the admin channel, use wrapper
> functions. They check if the device is a VF. If VF, use the admin
> channel. Otherwise, perform devcmd directly.
>
> Two complications:
> - Soft Rx stats
> VF on old VIC models does not have HW Rx counters. In this case, the
> VF driver counts packets/bytes and reports them as device stats.
>
> - Backward compatibility mode
> Old VIC PF drivers on some operating systems may support only
> VF_CAPABILITY_REQUEST message or not support the admin channel at
> all. When the VF driver detects such PF driver, it reverts to the
> compatibility mode and does not use the admin channel. In this mode,
> trust mode (e.g. enabling promiscuous mode) does not work.
>
Do you think does it worth to document above restrictions in the driver
guide?
> Signed-off-by: Hyong Youb Kim <hyonkim@cisco.com>
> Reviewed-by: John Daley <johndale@cisco.com>
> ---
> drivers/net/enic/base/vnic_cq.c | 27 +
> drivers/net/enic/base/vnic_cq.h | 3 +
> drivers/net/enic/base/vnic_dev.c | 48 ++
> drivers/net/enic/base/vnic_dev.h | 3 +
> drivers/net/enic/base/vnic_devcmd.h | 49 ++
> drivers/net/enic/base/vnic_resource.h | 32 +-
> drivers/net/enic/base/vnic_rq.c | 27 +
> drivers/net/enic/base/vnic_rq.h | 7 +
> drivers/net/enic/base/vnic_wq.c | 37 +-
> drivers/net/enic/base/vnic_wq.h | 5 +
> drivers/net/enic/enic.h | 28 +-
> drivers/net/enic/enic_ethdev.c | 8 +-
> drivers/net/enic/enic_main.c | 77 ++-
> drivers/net/enic/enic_res.c | 12 +
> drivers/net/enic/enic_rxtx.c | 20 +
> drivers/net/enic/enic_sriov.c | 801 ++++++++++++++++++++++++++
> drivers/net/enic/enic_sriov.h | 209 +++++++
>
This new file is missing coopyright and license information.
(Detected by './devtools/check-spdx-tag.sh' script)
<...>
> diff --git a/drivers/net/enic/enic_ethdev.c b/drivers/net/enic/enic_ethdev.c
> index cad8db2f6f..5c967677fb 100644
> --- a/drivers/net/enic/enic_ethdev.c
> +++ b/drivers/net/enic/enic_ethdev.c
> @@ -21,6 +21,7 @@
> #include "vnic_rq.h"
> #include "vnic_enet.h"
> #include "enic.h"
> +#include "enic_sriov.h"
>
> /*
> * The set of PCI devices this driver supports
> @@ -28,7 +29,6 @@
> #define CISCO_PCI_VENDOR_ID 0x1137
> static const struct rte_pci_id pci_id_enic_map[] = {
> {RTE_PCI_DEVICE(CISCO_PCI_VENDOR_ID, PCI_DEVICE_ID_CISCO_VIC_ENET)},
> - {RTE_PCI_DEVICE(CISCO_PCI_VENDOR_ID, PCI_DEVICE_ID_CISCO_VIC_ENET_VF)},
> {RTE_PCI_DEVICE(CISCO_PCI_VENDOR_ID, PCI_DEVICE_ID_CISCO_VIC_ENET_SN)},
>
Won't there be a specific PCIe device ID for the VF?
Can there be some old devices around that requires this support?
What is the difference between PCI_DEVICE_ID_CISCO_VIC_ENET_VF &
PCI_DEVICE_ID_CISCO_VIC_ENET_SN?
Current code seems detecting device as VF when the PCIe device ID is
PCI_DEVICE_ID_CISCO_VIC_ENET_SN.
next prev parent reply other threads:[~2024-08-08 8:50 UTC|newest]
Thread overview: 19+ 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 [this message]
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
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
2024-09-22 4:35 ` [PATCH v3 0/3] net/enic: support VF and fix minor issues Ferruh Yigit
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=81cacbfa-7bd7-4e1b-9b9c-f60c11848dab@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).