> Subject: [PATCH v6] bus/pci: netuio interface for windows > > External email: Use caution opening links or attachments > > > This patch adds implementations to probe PCI devices bound to netuio with > the help of "netuio" class device changes. > Now Windows will support both "netuio" and "net" device class and can set > kernel driver type based on the device class selection. > > Note: Few definitions and structures have been copied from > netuio_interface.h file from ("[v5] windows/netuio: add Windows NetUIO > kernel driver") series and this will be fixed once the exact path for netuio > source code is known. > > v6 changes: > - Split up the get_netuio_device_info() function into smaller > functions > - Moved get numa node id code to get_device_resource_info() in > order to work on both RTE_PCI_KDRV_NONE and > RTE_PCI_KDRV_NIC_UIO > v5 changes: > Changed when netuio driver handle is closed > v4 changes: > Removed 'reserved' member as it is not used > v3 changes: > Removed the casts > v2 changes: > - Moved all netuio specific definitions and functions to > pci_netuio.c and pci_netuio.h files > - Added a single function call to scan all the devices > > Signed-off-by: John Alexander <john.alexan...@datapath.co.uk> > Signed-off-by: Pallavi Kadam <pallavi.ka...@intel.com> > Reviewed-by: Ranjit Menon <ranjit.me...@intel.com> > ---
<snip> > diff --git a/drivers/bus/pci/windows/pci_netuio.c > b/drivers/bus/pci/windows/pci_netuio.c > new file mode 100644 > index 000000000..5c9790684 > --- /dev/null > +++ b/drivers/bus/pci/windows/pci_netuio.c > @@ -0,0 +1,190 @@ > +/* SPDX-License-Identifier: BSD-3-Clause > + * Copyright(c) 2020 Intel Corporation. > + */ > + > +#include <rte_windows.h> > +#include <rte_errno.h> > +#include <rte_log.h> > +#include <rte_eal.h> > + > +#include "private.h" > +#include "pci_netuio.h" > + > +#include <devpkey.h> > + > +#ifdef RTE_TOOLCHAIN_GCC > +#include <devpropdef.h> > +DEFINE_DEVPROPKEY(DEVPKEY_Device_Numa_Node, 0x540b947e, 0x8b40, > 0x45bc, > + 0xa8, 0xa2, 0x6a, 0x0b, 0x89, 0x4c, 0xbd, 0xa2, 3); #endif The whole ifdef section and the devpkey.h include can be removed since Numa detection is done in pci.c.