]> git.droids-corp.org - dpdk.git/commitdiff
eal: add bus pointer in device structure
authorThomas Monjalon <thomas@monjalon.net>
Tue, 2 Oct 2018 22:25:06 +0000 (00:25 +0200)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 11 Oct 2018 12:09:24 +0000 (14:09 +0200)
When a device is added with a devargs (hotplug or whitelist),
the bus pointer can be retrieved via its devargs.
But there is no such devargs.bus in case of standard scan.

A pointer to the rte_bus handle is added to rte_device.
When a device is allocated (during a scan),
the pointer to its bus is assigned.

It will make possible to remove a rte_device,
using the function pointer from its bus.

The function rte_bus_find_by_device() becomes useless,
and may be removed later.

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: Gaetan Rivet <gaetan.rivet@6wind.com>
Reviewed-by: Stephen Hemminger <stephen@networkplumber.org>
23 files changed:
doc/guides/rel_notes/release_18_11.rst
drivers/bus/dpaa/Makefile
drivers/bus/dpaa/dpaa_bus.c
drivers/bus/dpaa/meson.build
drivers/bus/fslmc/Makefile
drivers/bus/fslmc/fslmc_bus.c
drivers/bus/fslmc/meson.build
drivers/bus/ifpga/Makefile
drivers/bus/ifpga/ifpga_bus.c
drivers/bus/ifpga/meson.build
drivers/bus/pci/Makefile
drivers/bus/pci/bsd/pci.c
drivers/bus/pci/linux/pci.c
drivers/bus/pci/meson.build
drivers/bus/pci/private.h
drivers/bus/vdev/Makefile
drivers/bus/vdev/meson.build
drivers/bus/vdev/vdev.c
drivers/bus/vmbus/Makefile
drivers/bus/vmbus/linux/vmbus_bus.c
drivers/bus/vmbus/meson.build
drivers/bus/vmbus/private.h
lib/librte_eal/common/include/rte_dev.h

index 66d28ce4ffb0e61089b8df45812b3ff0f4de7af1..8a6acd740a9339e9506fa66cf848ea88f761ca0a 100644 (file)
@@ -197,6 +197,10 @@ ABI Changes
          - structure ``rte_eal_memconfig`` has been extended to contain next
            socket ID for externally allocated segments
 
+* eal: The structure ``rte_device`` got a new field to reference a ``rte_bus``.
+  It is changing the size of the ``struct rte_device`` and the inherited
+  device structures of all buses.
+
 
 Removed Items
 -------------
@@ -232,11 +236,12 @@ The libraries prepended with a plus sign were incremented in this version.
      librte_bbdev.so.1
      librte_bitratestats.so.2
      librte_bpf.so.1
-     librte_bus_dpaa.so.1
-     librte_bus_fslmc.so.1
-     librte_bus_pci.so.1
-     librte_bus_vdev.so.1
-   + librte_bus_vmbus.so.1
+   + librte_bus_dpaa.so.2
+   + librte_bus_fslmc.so.2
+   + librte_bus_ifpga.so.2
+   + librte_bus_pci.so.2
+   + librte_bus_vdev.so.2
+   + librte_bus_vmbus.so.2
      librte_cfgfile.so.2
      librte_cmdline.so.2
      librte_common_octeontx.so.1
index bffaa9d92c724ca746d3dc08042c55792d91b5ad..9337b5f92846c60789cad781f6023318ec75ef37 100644 (file)
@@ -24,7 +24,7 @@ CFLAGS += -I$(RTE_SDK)/lib/librte_eal/common/include
 # versioning export map
 EXPORT_MAP := rte_bus_dpaa_version.map
 
-LIBABIVER := 1
+LIBABIVER := 2
 
 # all source are stored in SRCS-y
 #
index 49cd04dbb4ba9a10931e6b1a976e49de914887d6..138e0f98da41d87ff6c3b41371f7d42f1696324d 100644 (file)
@@ -165,6 +165,8 @@ dpaa_create_device_list(void)
                        goto cleanup;
                }
 
+               dev->device.bus = &rte_dpaa_bus.bus;
+
                cfg = &dpaa_netcfg->port_cfg[i];
                fman_intf = cfg->fman_if;
 
index d10b62c033862e27702a8c2c14375fb5dd0628a1..5e7705571e2bdf7c8a2de6b1d90ac34116b8c59b 100644 (file)
@@ -1,6 +1,8 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright 2018 NXP
 
+version = 2
+
 if host_machine.system() != 'linux'
         build = false
 endif
index 515d0f534fa44c7968ad74e0cbddceffa40e807d..e9555198013543ca14e5646e696fb3f718828a59 100644 (file)
@@ -24,7 +24,7 @@ LDLIBS += -lrte_ethdev
 EXPORT_MAP := rte_bus_fslmc_version.map
 
 # library version
-LIBABIVER := 1
+LIBABIVER := 2
 
 SRCS-$(CONFIG_RTE_LIBRTE_FSLMC_BUS) += \
         qbman/qbman_portal.c \
index bfe81e23694720b2e2f99fe246228c9ad26e4487..960f550719029f56189f8dda6c8a3a44c2e80198 100644 (file)
@@ -161,6 +161,8 @@ scan_one_fslmc_device(char *dev_name)
                return -ENOMEM;
        }
 
+       dev->device.bus = &rte_fslmc_bus.bus;
+
        /* Parse the device name and ID */
        t_ptr = strtok(dup_dev_name, ".");
        if (!t_ptr) {
index 22a56a6fc1520f21a2dae100fc45dc3213c0e636..54ca92d0c4d5cc30a40d2243a7439c9126675d35 100644 (file)
@@ -1,6 +1,8 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright 2018 NXP
 
+version = 2
+
 if host_machine.system() != 'linux'
         build = false
 endif
index 3ff3bdb819c953c95cd0733d62b2a0e4d2a5bacb..514452b39dea4c430d79c92f8218303cbeda3b79 100644 (file)
@@ -19,7 +19,7 @@ LDLIBS += -lrte_kvargs
 EXPORT_MAP := rte_bus_ifpga_version.map
 
 # library version
-LIBABIVER := 1
+LIBABIVER := 2
 
 SRCS-$(CONFIG_RTE_LIBRTE_IFPGA_BUS) += ifpga_bus.c
 SRCS-$(CONFIG_RTE_LIBRTE_IFPGA_BUS) += ifpga_common.c
index 3ef035b7e0f4754177c90e5337b9dbfb4ab82b3a..80663328aacca48d41e8494af0f825ec5aea61ed 100644 (file)
@@ -142,6 +142,7 @@ ifpga_scan_one(struct rte_rawdev *rawdev,
        if (!afu_dev)
                goto end;
 
+       afu_dev->device.bus = &rte_ifpga_bus;
        afu_dev->device.devargs = devargs;
        afu_dev->device.numa_node = SOCKET_ID_ANY;
        afu_dev->device.name = devargs->name;
index c9b08c86279482c9fc92198610d4737374421ced..0b5c38d54c3f976c8c567f8e12e82b4012bc3ef0 100644 (file)
@@ -1,6 +1,8 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2010-2018 Intel Corporation
 
+version = 2
+
 deps += ['pci', 'kvargs', 'rawdev']
 install_headers('rte_bus_ifpga.h')
 sources = files('ifpga_common.c', 'ifpga_bus.c')
index 4de953f8f0a7611af4d6c85116fa7ccd3d855fca..f33e0120f6b29e25235f07d521f3d34fd8d29170 100644 (file)
@@ -4,7 +4,7 @@
 include $(RTE_SDK)/mk/rte.vars.mk
 
 LIB = librte_bus_pci.a
-LIBABIVER := 1
+LIBABIVER := 2
 EXPORT_MAP := rte_bus_pci_version.map
 
 CFLAGS := -I$(SRCDIR) $(CFLAGS)
index 655b34b7e4bceabac8293c53adcfa154253ecc33..40641cad4414ad59bb5338193a834f9c218f62e2 100644 (file)
@@ -223,6 +223,8 @@ pci_scan_one(int dev_pci_fd, struct pci_conf *conf)
        }
 
        memset(dev, 0, sizeof(*dev));
+       dev->device.bus = &rte_pci_bus.bus;
+
        dev->addr.domain = conf->pc_sel.pc_domain;
        dev->addr.bus = conf->pc_sel.pc_bus;
        dev->addr.devid = conf->pc_sel.pc_dev;
index d6e1027ab78ac23599011eed89a4f180bc1b3e05..145cb1091a91ae262989be0de07cc9624b474ff4 100644 (file)
@@ -228,6 +228,7 @@ pci_scan_one(const char *dirname, const struct rte_pci_addr *addr)
                return -1;
 
        memset(dev, 0, sizeof(*dev));
+       dev->device.bus = &rte_pci_bus.bus;
        dev->addr = *addr;
 
        /* get vendor id */
index 23d6a5fece36750e3e0e26a3fee48c81d4d51667..ef9492bb87156303b68f297f827efc5fdc0baaf4 100644 (file)
@@ -1,6 +1,8 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
+version = 2
+
 deps += ['pci']
 install_headers('rte_bus_pci.h')
 sources = files('pci_common.c',
index 0e689fa7429987f68d6ac0940097860f60690b73..04bffa6e7785cc6969ea934d68a488220f3df4dd 100644 (file)
@@ -15,6 +15,8 @@ extern struct rte_pci_bus rte_pci_bus;
 struct rte_pci_driver;
 struct rte_pci_device;
 
+extern struct rte_pci_bus rte_pci_bus;
+
 /**
  * Probe the PCI bus
  *
index 1f9cd7ebec54114d350d109d009fa7c7d636d909..803b8ea7b01c8c18fd82a4181f2b296c133c1040 100644 (file)
@@ -16,7 +16,7 @@ CFLAGS += -DALLOW_EXPERIMENTAL_API
 EXPORT_MAP := rte_bus_vdev_version.map
 
 # library version
-LIBABIVER := 1
+LIBABIVER := 2
 
 SRCS-y += vdev.c
 SRCS-y += vdev_params.c
index 12605e5c7427e53db303587c9d4d5a5413798125..803785f10f89765e4356b54e68b222bfb6a85b13 100644 (file)
@@ -1,6 +1,8 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
+version = 2
+
 sources = files('vdev.c',
        'vdev_params.c')
 install_headers('rte_bus_vdev.h')
index efca962f7b43ea964e21917020fdeb4f62d1003f..0142fb2c834a0cbe6911d7aef82d8a5f2647b2b8 100644 (file)
@@ -456,6 +456,7 @@ vdev_scan(void)
                        continue;
                }
 
+               dev->device.bus = &rte_vdev_bus;
                dev->device.devargs = devargs;
                dev->device.numa_node = SOCKET_ID_ANY;
                dev->device.name = devargs->name;
index deee9dd1091b338532d431f76ff76d225895c5a8..e54c557c6866e2f4e80fdfb7ff51f944164c34d7 100644 (file)
@@ -3,7 +3,7 @@
 include $(RTE_SDK)/mk/rte.vars.mk
 
 LIB = librte_bus_vmbus.a
-LIBABIVER := 1
+LIBABIVER := 2
 EXPORT_MAP := rte_bus_vmbus_version.map
 
 CFLAGS += -I$(SRCDIR)
index 527a6a39f2bc9e9303e87d7f6754b0c9c8bea8ce..a4755a3878dfb4179909ac4e0de4acb131b3312c 100644 (file)
@@ -229,6 +229,7 @@ vmbus_scan_one(const char *name)
        if (dev == NULL)
                return -1;
 
+       dev->device.bus = &rte_vmbus_bus.bus;
        dev->device.name = strdup(name);
        if (!dev->device.name)
                goto error;
index 18daabecc62def78192a055516bcb540f46a6ce7..0e4d058ee4859ba25493339c001620fa16247282 100644 (file)
@@ -1,5 +1,7 @@
 # SPDX-License-Identifier: BSD-3-Clause
 
+version = 2
+
 allow_experimental_apis = true
 
 install_headers('rte_bus_vmbus.h','rte_vmbus_reg.h')
index f2022a68cb2b60d7b21ed1763256dbe9eedacfa9..211127dd8db52acca695d59cbc859cf343befee6 100644 (file)
 #include <sys/uio.h>
 #include <rte_log.h>
 #include <rte_vmbus_reg.h>
+#include <rte_bus_vmbus.h>
 
 #ifndef PAGE_SIZE
 #define PAGE_SIZE      4096
 #endif
 
+extern struct rte_vmbus_bus rte_vmbus_bus;
+
 extern int vmbus_logtype_bus;
 #define VMBUS_LOG(level, fmt, args...) \
        rte_log(RTE_LOG_ ## level, vmbus_logtype_bus, "%s(): " fmt "\n", \
index b80a8059832150f845b0c22a4fe57787f1491556..d82cba84761261cf50923c3e5130d55bfc4d1347 100644 (file)
@@ -157,6 +157,7 @@ struct rte_device {
        TAILQ_ENTRY(rte_device) next; /**< Next device */
        const char *name;             /**< Device name */
        const struct rte_driver *driver;/**< Associated driver */
+       const struct rte_bus *bus;    /**< Bus handle assigned on scan */
        int numa_node;                /**< NUMA node connection */
        struct rte_devargs *devargs;  /**< Device user arguments */
 };