From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <dev-bounces@dpdk.org>
Received: from dpdk.org (dpdk.org [92.243.14.124])
	by inbox.dpdk.org (Postfix) with ESMTP id 2D2FFA00C2;
	Wed, 22 Apr 2020 09:28:08 +0200 (CEST)
Received: from [92.243.14.124] (localhost [127.0.0.1])
	by dpdk.org (Postfix) with ESMTP id 8C1181C2A7;
	Wed, 22 Apr 2020 09:28:07 +0200 (CEST)
Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129])
 by dpdk.org (Postfix) with ESMTP id 2ADC11C29B
 for <dev@dpdk.org>; Wed, 22 Apr 2020 09:28:06 +0200 (CEST)
Received: from Internal Mail-Server by MTLPINE1 (envelope-from
 talshn@mellanox.com)
 with ESMTPS (AES256-SHA encrypted); 22 Apr 2020 10:28:05 +0300
Received: from l-wincomp04-vm.labs.mlnx (l-wincomp04-vm.mtl.labs.mlnx
 [10.237.1.5])
 by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 03M7S5BS002026;
 Wed, 22 Apr 2020 10:28:05 +0300
From: talshn@mellanox.com
To: dev@dpdk.org
Cc: thomas@monjalon.net, pallavi.kadam@intel.com, dmitry.kozliuk@gmail.com,
 david.marchand@redhat.com, grive@u256.net,
 Tal Shnaiderman <talshn@mellanox.com>
Date: Wed, 22 Apr 2020 10:27:40 +0300
Message-Id: <20200422072747.15960-1-talshn@mellanox.com>
X-Mailer: git-send-email 2.16.1.windows.4
Subject: [dpdk-dev] [PATCH 0/7] Windows bus/pci support
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
Errors-To: dev-bounces@dpdk.org
Sender: "dev" <dev-bounces@dpdk.org>

From: Tal Shnaiderman <talshn@mellanox.com>

This patchset implements the EAL and PCI functions needed for probing PMDs using RTE_KDRV_NONE on Windows.

Depends-on: series-9374 ("Windows basic memory management")

Tal Shnaiderman (7):
  eal: move OS common functions to single file
  pci: build on Windows
  eal: add function finding integer in a string
  drivers: ignore pmdinfogen generation for Windows
  drivers: fix incorrect meson import folder for Windows
  bus/pci: introduce Windows support with stubs
  bus/pci: support Windows with bifurcated drivers

 drivers/baseband/meson.build                  |   4 +
 drivers/bus/ifpga/meson.build                 |   6 +
 drivers/bus/pci/meson.build                   |  14 +-
 drivers/bus/pci/pci_common.c                  |   2 -
 drivers/bus/pci/windows/pci.c                 | 515 ++++++++++++++++++++++++++
 drivers/bus/vdev/meson.build                  |   6 +
 drivers/bus/vmbus/meson.build                 |   7 +
 drivers/common/meson.build                    |   4 +
 drivers/compress/meson.build                  |   4 +
 drivers/crypto/meson.build                    |   4 +
 drivers/event/meson.build                     |   4 +
 drivers/mempool/meson.build                   |   4 +
 drivers/meson.build                           |   9 +-
 drivers/net/meson.build                       |   4 +
 drivers/raw/meson.build                       |   4 +
 drivers/vdpa/meson.build                      |   4 +
 lib/librte_eal/common/eal_common_string_fns.c |  29 ++
 lib/librte_eal/common/eal_config.c            |  34 ++
 lib/librte_eal/common/eal_private.h           |  11 +
 lib/librte_eal/common/meson.build             |   4 +
 lib/librte_eal/freebsd/eal.c                  |  34 --
 lib/librte_eal/include/rte_string_fns.h       |  17 +
 lib/librte_eal/linux/eal.c                    |  33 --
 lib/librte_eal/rte_eal_exports.def            |   9 +
 lib/librte_eal/windows/eal.c                  |  61 ++-
 lib/librte_eal/windows/eal_mp.c               |  14 +
 lib/librte_eal/windows/include/rte_os.h       |   1 +
 lib/librte_eal/windows/include/rte_windows.h  |   1 +
 lib/librte_pci/rte_pci.c                      |   9 +-
 lib/meson.build                               |   5 +-
 30 files changed, 735 insertions(+), 122 deletions(-)
 create mode 100644 drivers/bus/pci/windows/pci.c
 create mode 100644 lib/librte_eal/common/eal_config.c

-- 
2.16.1.windows.4