]> git.droids-corp.org - dpdk.git/commitdiff
bus: add probing
authorShreyansh Jain <shreyansh.jain@nxp.com>
Wed, 18 Jan 2017 14:05:22 +0000 (19:35 +0530)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Thu, 19 Jan 2017 03:58:17 +0000 (04:58 +0100)
Bus implementations can implement a probe handler to match the devices
scanned against the drivers registered.

Signed-off-by: Shreyansh Jain <shreyansh.jain@nxp.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
lib/librte_eal/bsdapp/eal/eal.c
lib/librte_eal/bsdapp/eal/rte_eal_version.map
lib/librte_eal/common/eal_common_bus.c
lib/librte_eal/common/include/rte_bus.h
lib/librte_eal/linuxapp/eal/eal.c
lib/librte_eal/linuxapp/eal/rte_eal_version.map

index be5d29558144d45060e45eb807ce5f6cbf72654b..534aeeab7aec02bc44bee8bdfea1325da4ff587f 100644 (file)
@@ -612,6 +612,10 @@ rte_eal_init(int argc, char **argv)
        rte_eal_mp_remote_launch(sync_func, NULL, SKIP_MASTER);
        rte_eal_mp_wait_lcore();
 
+       /* Probe all the buses and devices/drivers on them */
+       if (rte_bus_probe())
+               rte_panic("Cannot probe devices\n");
+
        /* Probe & Initialize PCI devices */
        if (rte_eal_pci_probe())
                rte_panic("Cannot probe PCI\n");
index 931afeba0948ba3d27c984e4e29a7c62b653e8b3..2cf1ac8f316ce8007fcad005223f686173296e29 100644 (file)
@@ -179,6 +179,7 @@ DPDK_17.02 {
        global:
 
        rte_bus_dump;
+       rte_bus_probe;
        rte_bus_register;
        rte_bus_scan;
        rte_bus_unregister;
index ef10390807c587267aa219ca0eb1d44e97fcbf01..4638e78d2e023d544687945edcc2d68e28a85f3e 100644 (file)
@@ -49,6 +49,7 @@ rte_bus_register(struct rte_bus *bus)
        RTE_VERIFY(bus->name && strlen(bus->name));
        /* A bus should mandatorily have the scan implemented */
        RTE_VERIFY(bus->scan);
+       RTE_VERIFY(bus->probe);
 
        TAILQ_INSERT_TAIL(&rte_bus_list, bus, next);
        RTE_LOG(DEBUG, EAL, "Registered [%s] bus.\n", bus->name);
@@ -80,6 +81,25 @@ rte_bus_scan(void)
        return 0;
 }
 
+/* Probe all devices of all buses */
+int
+rte_bus_probe(void)
+{
+       int ret;
+       struct rte_bus *bus;
+
+       TAILQ_FOREACH(bus, &rte_bus_list, next) {
+               ret = bus->probe();
+               if (ret) {
+                       RTE_LOG(ERR, EAL, "Bus (%s) probe failed.\n",
+                               bus->name);
+                       return ret;
+               }
+       }
+
+       return 0;
+}
+
 /* Dump information of a single bus */
 static int
 bus_dump_one(FILE *f, struct rte_bus *bus)
index b01930af5dbf4f1427aeb879d9f6c6bf26c5e3ac..7c369692673e354beabe270c351b31ecff04a87e 100644 (file)
@@ -69,6 +69,18 @@ TAILQ_HEAD(rte_bus_list, rte_bus);
  */
 typedef int (*rte_bus_scan_t)(void);
 
+/**
+ * Implementation specific probe function which is responsible for linking
+ * devices on that bus with applicable drivers.
+ *
+ * This is called while iterating over each registered bus.
+ *
+ * @return
+ *     0 for successful probe
+ *     !0 for any error while probing
+ */
+typedef int (*rte_bus_probe_t)(void);
+
 /**
  * A structure describing a generic bus.
  */
@@ -76,6 +88,7 @@ struct rte_bus {
        TAILQ_ENTRY(rte_bus) next;   /**< Next bus object in linked list */
        const char *name;            /**< Name of the bus */
        rte_bus_scan_t scan;         /**< Scan for devices attached to bus */
+       rte_bus_probe_t probe;       /**< Probe devices on bus */
 };
 
 /**
@@ -105,6 +118,16 @@ void rte_bus_unregister(struct rte_bus *bus);
  */
 int rte_bus_scan(void);
 
+/**
+ * For each device on the buses, perform a driver 'match' and call the
+ * driver-specific probe for device initialization.
+ *
+ * @return
+ *      0 for successful match/probe
+ *     !0 otherwise
+ */
+int rte_bus_probe(void);
+
 /**
  * Dump information of all the buses registered with EAL.
  *
index 1d2a16a39c1ce6d0507dc32f0ec09342f31b95c0..bf6b818c83a59b52c9d2ca8dee1cd96a81f12c8b 100644 (file)
@@ -884,6 +884,10 @@ rte_eal_init(int argc, char **argv)
        rte_eal_mp_remote_launch(sync_func, NULL, SKIP_MASTER);
        rte_eal_mp_wait_lcore();
 
+       /* Probe all the buses and devices/drivers on them */
+       if (rte_bus_probe())
+               rte_panic("Cannot probe devices\n");
+
        /* Probe & Initialize PCI devices */
        if (rte_eal_pci_probe())
                rte_panic("Cannot probe PCI\n");
index c238381b6421d480f03022625ab457a6d1700fb2..3c68ff54d35ae185c92b1bfe98769abec4867cc9 100644 (file)
@@ -183,6 +183,7 @@ DPDK_17.02 {
        global:
 
        rte_bus_dump;
+       rte_bus_probe;
        rte_bus_register;
        rte_bus_scan;
        rte_bus_unregister;