1 /* SPDX-License-Identifier: BSD-3-Clause
13 #include <rte_eal_memconfig.h>
14 #include <rte_malloc.h>
15 #include <rte_devargs.h>
16 #include <rte_memcpy.h>
17 #include <rte_ethdev_driver.h>
19 #include <rte_fslmc.h>
20 #include <fslmc_vfio.h>
21 #include "fslmc_logs.h"
23 #include <dpaax_iova_table.h>
25 int dpaa2_logtype_bus;
27 #define VFIO_IOMMU_GROUP_PATH "/sys/kernel/iommu_groups"
28 #define FSLMC_BUS_NAME fslmc
30 struct rte_fslmc_bus rte_fslmc_bus;
31 uint8_t dpaa2_virt_mode;
34 rte_fslmc_get_device_count(enum rte_dpaa2_dev_type device_type)
36 if (device_type > DPAA2_DEVTYPE_MAX)
38 return rte_fslmc_bus.device_count[device_type];
41 RTE_DEFINE_PER_LCORE(struct dpaa2_portal_dqrr, dpaa2_held_bufs);
44 cleanup_fslmc_device_list(void)
46 struct rte_dpaa2_device *dev;
47 struct rte_dpaa2_device *t_dev;
49 TAILQ_FOREACH_SAFE(dev, &rte_fslmc_bus.device_list, next, t_dev) {
50 TAILQ_REMOVE(&rte_fslmc_bus.device_list, dev, next);
57 compare_dpaa2_devname(struct rte_dpaa2_device *dev1,
58 struct rte_dpaa2_device *dev2)
62 if (dev1->dev_type > dev2->dev_type) {
64 } else if (dev1->dev_type < dev2->dev_type) {
67 /* Check the ID as types match */
68 if (dev1->object_id > dev2->object_id)
70 else if (dev1->object_id < dev2->object_id)
73 comp = 0; /* Duplicate device name */
80 insert_in_device_list(struct rte_dpaa2_device *newdev)
82 int comp, inserted = 0;
83 struct rte_dpaa2_device *dev = NULL;
84 struct rte_dpaa2_device *tdev = NULL;
86 TAILQ_FOREACH_SAFE(dev, &rte_fslmc_bus.device_list, next, tdev) {
87 comp = compare_dpaa2_devname(newdev, dev);
89 TAILQ_INSERT_BEFORE(dev, newdev, next);
96 TAILQ_INSERT_TAIL(&rte_fslmc_bus.device_list, newdev, next);
99 static struct rte_devargs *
100 fslmc_devargs_lookup(struct rte_dpaa2_device *dev)
102 struct rte_devargs *devargs;
105 RTE_EAL_DEVARGS_FOREACH("fslmc", devargs) {
106 devargs->bus->parse(devargs->name, &dev_name);
107 if (strcmp(dev_name, dev->device.name) == 0) {
108 DPAA2_BUS_INFO("**Devargs matched %s", dev_name);
116 dump_device_list(void)
118 struct rte_dpaa2_device *dev;
119 uint32_t global_log_level;
122 /* Only if the log level has been set to Debugging, print list */
123 global_log_level = rte_log_get_global_level();
124 local_log_level = rte_log_get_level(dpaa2_logtype_bus);
125 if (global_log_level == RTE_LOG_DEBUG ||
126 local_log_level == RTE_LOG_DEBUG) {
127 DPAA2_BUS_LOG(DEBUG, "List of devices scanned on bus:");
128 TAILQ_FOREACH(dev, &rte_fslmc_bus.device_list, next) {
129 DPAA2_BUS_LOG(DEBUG, "\t\t%s", dev->device.name);
135 scan_one_fslmc_device(char *dev_name)
137 char *dup_dev_name, *t_ptr;
138 struct rte_dpaa2_device *dev;
143 /* Ignore the Container name itself */
144 if (!strncmp("dprc", dev_name, 4))
147 /* Creating a temporary copy to perform cut-parse over string */
148 dup_dev_name = strdup(dev_name);
150 DPAA2_BUS_ERR("Unable to allocate device name memory");
154 /* For all other devices, we allocate rte_dpaa2_device.
155 * For those devices where there is no driver, probe would release
156 * the memory associated with the rte_dpaa2_device after necessary
159 dev = calloc(1, sizeof(struct rte_dpaa2_device));
161 DPAA2_BUS_ERR("Unable to allocate device object");
166 dev->device.bus = &rte_fslmc_bus.bus;
168 /* Parse the device name and ID */
169 t_ptr = strtok(dup_dev_name, ".");
171 DPAA2_BUS_ERR("Incorrect device name observed");
174 if (!strncmp("dpni", t_ptr, 4))
175 dev->dev_type = DPAA2_ETH;
176 else if (!strncmp("dpseci", t_ptr, 6))
177 dev->dev_type = DPAA2_CRYPTO;
178 else if (!strncmp("dpcon", t_ptr, 5))
179 dev->dev_type = DPAA2_CON;
180 else if (!strncmp("dpbp", t_ptr, 4))
181 dev->dev_type = DPAA2_BPOOL;
182 else if (!strncmp("dpio", t_ptr, 4))
183 dev->dev_type = DPAA2_IO;
184 else if (!strncmp("dpci", t_ptr, 4))
185 dev->dev_type = DPAA2_CI;
186 else if (!strncmp("dpmcp", t_ptr, 5))
187 dev->dev_type = DPAA2_MPORTAL;
188 else if (!strncmp("dpdmai", t_ptr, 6))
189 dev->dev_type = DPAA2_QDMA;
191 dev->dev_type = DPAA2_UNKNOWN;
193 /* Update the device found into the device_count table */
194 rte_fslmc_bus.device_count[dev->dev_type]++;
196 t_ptr = strtok(NULL, ".");
198 DPAA2_BUS_ERR("Incorrect device string observed (%s)", t_ptr);
202 sscanf(t_ptr, "%hu", &dev->object_id);
203 dev->device.name = strdup(dev_name);
204 if (!dev->device.name) {
205 DPAA2_BUS_ERR("Unable to clone device name. Out of memory");
208 dev->device.devargs = fslmc_devargs_lookup(dev);
210 /* Add device in the fslmc device list */
211 insert_in_device_list(dev);
213 /* Don't need the duplicated device filesystem entry anymore */
227 rte_fslmc_parse(const char *name, void *addr)
231 char *sep = strchr(name, ':');
233 if (strncmp(name, RTE_STR(FSLMC_BUS_NAME),
234 strlen(RTE_STR(FSLMC_BUS_NAME)))) {
239 DPAA2_BUS_ERR("Incorrect device name observed");
243 t_ptr = (char *)(sep + 1);
245 if (strncmp("dpni", t_ptr, 4) &&
246 strncmp("dpseci", t_ptr, 6) &&
247 strncmp("dpcon", t_ptr, 5) &&
248 strncmp("dpbp", t_ptr, 4) &&
249 strncmp("dpio", t_ptr, 4) &&
250 strncmp("dpci", t_ptr, 4) &&
251 strncmp("dpmcp", t_ptr, 5) &&
252 strncmp("dpdmai", t_ptr, 6)) {
253 DPAA2_BUS_ERR("Unknown or unsupported device");
257 t_ptr = strchr(name, '.');
259 DPAA2_BUS_ERR("Incorrect device string observed (%s)", t_ptr);
263 t_ptr = (char *)(t_ptr + 1);
264 if (sscanf(t_ptr, "%hu", &dev_id) <= 0) {
265 DPAA2_BUS_ERR("Incorrect device string observed (%s)", t_ptr);
270 strcpy(addr, (char *)(sep + 1));
278 int device_count = 0;
279 char fslmc_dirpath[PATH_MAX];
281 struct dirent *entry;
282 static int process_once;
286 DPAA2_BUS_DEBUG("Fslmc bus already scanned. Not rescanning");
291 ret = fslmc_get_container_group(&groupid);
295 /* Scan devices on the group */
296 sprintf(fslmc_dirpath, "%s/%d/devices", VFIO_IOMMU_GROUP_PATH,
298 dir = opendir(fslmc_dirpath);
300 DPAA2_BUS_ERR("Unable to open VFIO group directory");
304 while ((entry = readdir(dir)) != NULL) {
305 if (entry->d_name[0] == '.' || entry->d_type != DT_LNK)
308 ret = scan_one_fslmc_device(entry->d_name);
310 /* Error in parsing directory - exit gracefully */
311 goto scan_fail_cleanup;
318 DPAA2_BUS_INFO("FSLMC Bus scan completed");
319 /* If debugging is enabled, device list is dumped to log output */
327 /* Remove all devices in the list */
328 cleanup_fslmc_device_list();
330 DPAA2_BUS_DEBUG("FSLMC Bus Not Available. Skipping");
331 /* Irrespective of failure, scan only return success */
336 rte_fslmc_match(struct rte_dpaa2_driver *dpaa2_drv,
337 struct rte_dpaa2_device *dpaa2_dev)
339 if (dpaa2_drv->drv_type == dpaa2_dev->dev_type)
346 rte_fslmc_probe(void)
351 struct rte_dpaa2_device *dev;
352 struct rte_dpaa2_driver *drv;
354 if (TAILQ_EMPTY(&rte_fslmc_bus.device_list))
357 ret = fslmc_vfio_setup_group();
359 DPAA2_BUS_ERR("Unable to setup VFIO %d", ret);
363 /* Map existing segments as well as, in case of hotpluggable memory,
364 * install callback handler.
366 ret = rte_fslmc_vfio_dmamap();
368 DPAA2_BUS_ERR("Unable to DMA map existing VAs: (%d)", ret);
369 /* Not continuing ahead */
370 DPAA2_BUS_ERR("FSLMC VFIO Mapping failed");
374 ret = fslmc_vfio_process_group();
376 DPAA2_BUS_ERR("Unable to setup devices %d", ret);
380 probe_all = rte_fslmc_bus.bus.conf.scan_mode != RTE_BUS_SCAN_WHITELIST;
382 /* In case of PA, the FD addresses returned by qbman APIs are physical
383 * addresses, which need conversion into equivalent VA address for
384 * rte_mbuf. For that, a table (a serial array, in memory) is used to
385 * increase translation efficiency.
386 * This has to be done before probe as some device initialization
387 * (during) probe allocate memory (dpaa2_sec) which needs to be pinned
390 * Error is ignored as relevant logs are handled within dpaax and
391 * handling for unavailable dpaax table too is transparent to caller.
393 dpaax_iova_table_populate();
395 TAILQ_FOREACH(dev, &rte_fslmc_bus.device_list, next) {
396 TAILQ_FOREACH(drv, &rte_fslmc_bus.driver_list, next) {
397 ret = rte_fslmc_match(drv, dev);
404 if (rte_dev_is_probed(&dev->device))
407 if (dev->device.devargs &&
408 dev->device.devargs->policy == RTE_DEV_BLACKLISTED) {
409 DPAA2_BUS_LOG(DEBUG, "%s Blacklisted, skipping",
415 (dev->device.devargs &&
416 dev->device.devargs->policy ==
417 RTE_DEV_WHITELISTED)) {
418 ret = drv->probe(drv, dev);
420 DPAA2_BUS_ERR("Unable to probe");
423 dev->device.driver = &drv->driver;
430 if (rte_eal_iova_mode() == RTE_IOVA_VA)
436 static struct rte_device *
437 rte_fslmc_find_device(const struct rte_device *start, rte_dev_cmp_t cmp,
440 const struct rte_dpaa2_device *dstart;
441 struct rte_dpaa2_device *dev;
444 dstart = RTE_DEV_TO_FSLMC_CONST(start);
445 dev = TAILQ_NEXT(dstart, next);
447 dev = TAILQ_FIRST(&rte_fslmc_bus.device_list);
449 while (dev != NULL) {
450 if (cmp(&dev->device, data) == 0)
452 dev = TAILQ_NEXT(dev, next);
458 /*register a fslmc bus based dpaa2 driver */
460 rte_fslmc_driver_register(struct rte_dpaa2_driver *driver)
464 TAILQ_INSERT_TAIL(&rte_fslmc_bus.driver_list, driver, next);
465 /* Update Bus references */
466 driver->fslmc_bus = &rte_fslmc_bus;
469 /*un-register a fslmc bus based dpaa2 driver */
471 rte_fslmc_driver_unregister(struct rte_dpaa2_driver *driver)
473 struct rte_fslmc_bus *fslmc_bus;
475 fslmc_bus = driver->fslmc_bus;
477 /* Cleanup the PA->VA Translation table; From whereever this function
480 dpaax_iova_table_depopulate();
482 TAILQ_REMOVE(&fslmc_bus->driver_list, driver, next);
483 /* Update Bus references */
484 driver->fslmc_bus = NULL;
488 * All device has iova as va
491 fslmc_all_device_support_iova(void)
494 struct rte_dpaa2_device *dev;
495 struct rte_dpaa2_driver *drv;
497 TAILQ_FOREACH(dev, &rte_fslmc_bus.device_list, next) {
498 TAILQ_FOREACH(drv, &rte_fslmc_bus.driver_list, next) {
499 ret = rte_fslmc_match(drv, dev);
502 /* if the driver is not supporting IOVA */
503 if (!(drv->drv_flags & RTE_DPAA2_DRV_IOVA_AS_VA))
511 * Get iommu class of DPAA2 devices on the bus.
513 static enum rte_iova_mode
514 rte_dpaa2_get_iommu_class(void)
516 bool is_vfio_noiommu_enabled = 1;
519 if (TAILQ_EMPTY(&rte_fslmc_bus.device_list))
522 #ifdef RTE_LIBRTE_DPAA2_USE_PHYS_IOVA
526 /* check if all devices on the bus support Virtual addressing or not */
527 has_iova_va = fslmc_all_device_support_iova();
530 is_vfio_noiommu_enabled = rte_vfio_noiommu_is_enabled() == true ?
534 if (has_iova_va && !is_vfio_noiommu_enabled)
540 struct rte_fslmc_bus rte_fslmc_bus = {
542 .scan = rte_fslmc_scan,
543 .probe = rte_fslmc_probe,
544 .parse = rte_fslmc_parse,
545 .find_device = rte_fslmc_find_device,
546 .get_iommu_class = rte_dpaa2_get_iommu_class,
548 .device_list = TAILQ_HEAD_INITIALIZER(rte_fslmc_bus.device_list),
549 .driver_list = TAILQ_HEAD_INITIALIZER(rte_fslmc_bus.driver_list),
553 RTE_REGISTER_BUS(FSLMC_BUS_NAME, rte_fslmc_bus.bus);
555 RTE_INIT(fslmc_init_log)
558 dpaa2_logtype_bus = rte_log_register("bus.fslmc");
559 if (dpaa2_logtype_bus >= 0)
560 rte_log_set_level(dpaa2_logtype_bus, RTE_LOG_NOTICE);