1 /* SPDX-License-Identifier: BSD-3-Clause
3 * Copyright 2017-2019 NXP
14 #include <sys/types.h>
15 #include <sys/syscall.h>
17 #include <rte_byteorder.h>
18 #include <rte_common.h>
19 #include <rte_interrupts.h>
21 #include <rte_debug.h>
22 #include <rte_atomic.h>
23 #include <rte_branch_prediction.h>
24 #include <rte_memory.h>
25 #include <rte_tailq.h>
27 #include <rte_alarm.h>
28 #include <rte_ether.h>
29 #include <rte_ethdev_driver.h>
30 #include <rte_malloc.h>
33 #include <rte_mbuf_pool_ops.h>
36 #include <rte_dpaa_bus.h>
37 #include <rte_dpaa_logs.h>
38 #include <dpaax_iova_table.h>
46 int dpaa_logtype_mempool;
48 int dpaa_logtype_eventdev;
50 static struct rte_dpaa_bus rte_dpaa_bus;
51 struct netcfg_info *dpaa_netcfg;
53 /* define a variable to hold the portal_key, once created.*/
54 static pthread_key_t dpaa_portal_key;
56 unsigned int dpaa_svr_family;
58 #define FSL_DPAA_BUS_NAME dpaa_bus
60 RTE_DEFINE_PER_LCORE(bool, dpaa_io);
61 RTE_DEFINE_PER_LCORE(struct dpaa_portal_dqrr, held_bufs);
64 compare_dpaa_devices(struct rte_dpaa_device *dev1,
65 struct rte_dpaa_device *dev2)
69 /* Segragating ETH from SEC devices */
70 if (dev1->device_type > dev2->device_type)
72 else if (dev1->device_type < dev2->device_type)
77 if ((comp != 0) || (dev1->device_type != FSL_DPAA_ETH))
80 if (dev1->id.fman_id > dev2->id.fman_id) {
82 } else if (dev1->id.fman_id < dev2->id.fman_id) {
85 /* FMAN ids match, check for mac_id */
86 if (dev1->id.mac_id > dev2->id.mac_id)
88 else if (dev1->id.mac_id < dev2->id.mac_id)
98 dpaa_add_to_device_list(struct rte_dpaa_device *newdev)
100 int comp, inserted = 0;
101 struct rte_dpaa_device *dev = NULL;
102 struct rte_dpaa_device *tdev = NULL;
104 TAILQ_FOREACH_SAFE(dev, &rte_dpaa_bus.device_list, next, tdev) {
105 comp = compare_dpaa_devices(newdev, dev);
107 TAILQ_INSERT_BEFORE(dev, newdev, next);
114 TAILQ_INSERT_TAIL(&rte_dpaa_bus.device_list, newdev, next);
118 * Reads the SEC device from DTS
119 * Returns -1 if SEC devices not available, 0 otherwise
122 dpaa_sec_available(void)
124 const struct device_node *caam_node;
126 for_each_compatible_node(caam_node, NULL, "fsl,sec-v4.0") {
133 static void dpaa_clean_device_list(void);
135 static struct rte_devargs *
136 dpaa_devargs_lookup(struct rte_dpaa_device *dev)
138 struct rte_devargs *devargs;
141 RTE_EAL_DEVARGS_FOREACH("dpaa_bus", devargs) {
142 devargs->bus->parse(devargs->name, &dev_name);
143 if (strcmp(dev_name, dev->device.name) == 0) {
144 DPAA_BUS_INFO("**Devargs matched %s", dev_name);
152 dpaa_create_device_list(void)
156 struct rte_dpaa_device *dev;
157 struct fm_eth_port_cfg *cfg;
158 struct fman_if *fman_intf;
160 /* Creating Ethernet Devices */
161 for (i = 0; i < dpaa_netcfg->num_ethports; i++) {
162 dev = calloc(1, sizeof(struct rte_dpaa_device));
164 DPAA_BUS_LOG(ERR, "Failed to allocate ETH devices");
169 dev->device.bus = &rte_dpaa_bus.bus;
171 cfg = &dpaa_netcfg->port_cfg[i];
172 fman_intf = cfg->fman_if;
174 /* Device identifiers */
175 dev->id.fman_id = fman_intf->fman_idx + 1;
176 dev->id.mac_id = fman_intf->mac_idx;
177 dev->device_type = FSL_DPAA_ETH;
180 /* Create device name */
181 memset(dev->name, 0, RTE_ETH_NAME_MAX_LEN);
182 sprintf(dev->name, "fm%d-mac%d", (fman_intf->fman_idx + 1),
184 DPAA_BUS_LOG(INFO, "%s netdev added", dev->name);
185 dev->device.name = dev->name;
186 dev->device.devargs = dpaa_devargs_lookup(dev);
188 dpaa_add_to_device_list(dev);
191 rte_dpaa_bus.device_count = i;
193 /* Unlike case of ETH, RTE_LIBRTE_DPAA_MAX_CRYPTODEV SEC devices are
194 * constantly created only if "sec" property is found in the device
195 * tree. Logically there is no limit for number of devices (QI
196 * interfaces) that can be created.
199 if (dpaa_sec_available()) {
200 DPAA_BUS_LOG(INFO, "DPAA SEC devices are not available");
204 /* Creating SEC Devices */
205 for (i = 0; i < RTE_LIBRTE_DPAA_MAX_CRYPTODEV; i++) {
206 dev = calloc(1, sizeof(struct rte_dpaa_device));
208 DPAA_BUS_LOG(ERR, "Failed to allocate SEC devices");
213 dev->device_type = FSL_DPAA_CRYPTO;
214 dev->id.dev_id = rte_dpaa_bus.device_count + i;
216 /* Even though RTE_CRYPTODEV_NAME_MAX_LEN is valid length of
217 * crypto PMD, using RTE_ETH_NAME_MAX_LEN as that is the size
218 * allocated for dev->name/
220 memset(dev->name, 0, RTE_ETH_NAME_MAX_LEN);
221 sprintf(dev->name, "dpaa_sec-%d", i+1);
222 DPAA_BUS_LOG(INFO, "%s cryptodev added", dev->name);
223 dev->device.name = dev->name;
224 dev->device.devargs = dpaa_devargs_lookup(dev);
226 dpaa_add_to_device_list(dev);
229 rte_dpaa_bus.device_count += i;
234 dpaa_clean_device_list();
239 dpaa_clean_device_list(void)
241 struct rte_dpaa_device *dev = NULL;
242 struct rte_dpaa_device *tdev = NULL;
244 TAILQ_FOREACH_SAFE(dev, &rte_dpaa_bus.device_list, next, tdev) {
245 TAILQ_REMOVE(&rte_dpaa_bus.device_list, dev, next);
251 int rte_dpaa_portal_init(void *arg)
253 unsigned int cpu, lcore = rte_lcore_id();
255 struct dpaa_portal *dpaa_io_portal;
257 BUS_INIT_FUNC_TRACE();
259 if ((size_t)arg == 1 || lcore == LCORE_ID_ANY)
260 lcore = rte_get_master_lcore();
262 if (lcore >= RTE_MAX_LCORE)
265 cpu = rte_lcore_to_cpu_id(lcore);
267 /* Initialise bman thread portals */
268 ret = bman_thread_init();
270 DPAA_BUS_LOG(ERR, "bman_thread_init failed on core %u"
271 " (lcore=%u) with ret: %d", cpu, lcore, ret);
275 DPAA_BUS_LOG(DEBUG, "BMAN thread initialized - CPU=%d lcore=%d",
278 /* Initialise qman thread portals */
279 ret = qman_thread_init();
281 DPAA_BUS_LOG(ERR, "qman_thread_init failed on core %u"
282 " (lcore=%u) with ret: %d", cpu, lcore, ret);
283 bman_thread_finish();
287 DPAA_BUS_LOG(DEBUG, "QMAN thread initialized - CPU=%d lcore=%d",
290 dpaa_io_portal = rte_malloc(NULL, sizeof(struct dpaa_portal),
291 RTE_CACHE_LINE_SIZE);
292 if (!dpaa_io_portal) {
293 DPAA_BUS_LOG(ERR, "Unable to allocate memory");
294 bman_thread_finish();
295 qman_thread_finish();
299 dpaa_io_portal->qman_idx = qman_get_portal_index();
300 dpaa_io_portal->bman_idx = bman_get_portal_index();
301 dpaa_io_portal->tid = syscall(SYS_gettid);
303 ret = pthread_setspecific(dpaa_portal_key, (void *)dpaa_io_portal);
305 DPAA_BUS_LOG(ERR, "pthread_setspecific failed on core %u"
306 " (lcore=%u) with ret: %d", cpu, lcore, ret);
307 dpaa_portal_finish(NULL);
312 RTE_PER_LCORE(dpaa_io) = true;
314 DPAA_BUS_LOG(DEBUG, "QMAN thread initialized");
320 rte_dpaa_portal_fq_init(void *arg, struct qman_fq *fq)
322 /* Affine above created portal with channel*/
326 if (unlikely(!RTE_PER_LCORE(dpaa_io))) {
327 ret = rte_dpaa_portal_init(arg);
329 DPAA_BUS_LOG(ERR, "portal initialization failure");
334 /* Initialise qman specific portals */
335 ret = fsl_qman_fq_portal_init(fq->qp);
337 DPAA_BUS_LOG(ERR, "Unable to init fq portal");
341 sdqcr = QM_SDQCR_CHANNELS_POOL_CONV(fq->ch_id);
342 qman_static_dequeue_add(sdqcr, fq->qp);
347 int rte_dpaa_portal_fq_close(struct qman_fq *fq)
349 return fsl_qman_fq_portal_destroy(fq->qp);
353 dpaa_portal_finish(void *arg)
355 struct dpaa_portal *dpaa_io_portal = (struct dpaa_portal *)arg;
357 if (!dpaa_io_portal) {
358 DPAA_BUS_LOG(DEBUG, "Portal already cleaned");
362 bman_thread_finish();
363 qman_thread_finish();
365 pthread_setspecific(dpaa_portal_key, NULL);
367 rte_free(dpaa_io_portal);
368 dpaa_io_portal = NULL;
370 RTE_PER_LCORE(dpaa_io) = false;
374 rte_dpaa_bus_parse(const char *name, void *out_name)
377 int max_fman = 2, max_macs = 16;
381 /* There are two ways of passing device name, with and without
382 * separator. "dpaa_bus:fm1-mac3" with separator, and "fm1-mac3"
383 * without separator. Both need to be handled.
384 * It is also possible that "name=fm1-mac3" is passed along.
386 DPAA_BUS_DEBUG("Parse device name (%s)", name);
388 /* Check for dpaa_bus:fm1-mac3 style */
389 dup_name = strdup(name);
390 sep = strchr(dup_name, ':');
392 /* If not, check for name=fm1-mac3 style */
393 sep = strchr(dup_name, '=');
396 /* jump over the seprator */
397 sep = (char *) (sep + 1);
401 for (i = 0; i < max_fman; i++) {
402 for (j = 0; j < max_macs; j++) {
404 snprintf(fm_name, 16, "fm%d-mac%d", i, j);
405 if (strcmp(fm_name, sep) == 0) {
407 strcpy(out_name, sep);
414 for (i = 0; i < RTE_LIBRTE_DPAA_MAX_CRYPTODEV; i++) {
417 snprintf(sec_name, 16, "dpaa_sec-%d", i+1);
418 if (strcmp(sec_name, sep) == 0) {
420 strcpy(out_name, sep);
430 #define DPAA_DEV_PATH1 "/sys/devices/platform/soc/soc:fsl,dpaa"
431 #define DPAA_DEV_PATH2 "/sys/devices/platform/fsl,dpaa"
434 rte_dpaa_bus_scan(void)
438 BUS_INIT_FUNC_TRACE();
440 if ((access(DPAA_DEV_PATH1, F_OK) != 0) &&
441 (access(DPAA_DEV_PATH2, F_OK) != 0)) {
442 RTE_LOG(DEBUG, EAL, "DPAA Bus not present. Skipping.\n");
446 if (rte_dpaa_bus.detected)
449 rte_dpaa_bus.detected = 1;
451 /* create the key, supplying a function that'll be invoked
452 * when a portal affined thread will be deleted.
454 ret = pthread_key_create(&dpaa_portal_key, dpaa_portal_finish);
456 DPAA_BUS_LOG(DEBUG, "Unable to create pthread key. (%d)", ret);
457 dpaa_clean_device_list();
464 /* register a dpaa bus based dpaa driver */
466 rte_dpaa_driver_register(struct rte_dpaa_driver *driver)
470 BUS_INIT_FUNC_TRACE();
472 TAILQ_INSERT_TAIL(&rte_dpaa_bus.driver_list, driver, next);
473 /* Update Bus references */
474 driver->dpaa_bus = &rte_dpaa_bus;
477 /* un-register a dpaa bus based dpaa driver */
479 rte_dpaa_driver_unregister(struct rte_dpaa_driver *driver)
481 struct rte_dpaa_bus *dpaa_bus;
483 BUS_INIT_FUNC_TRACE();
485 dpaa_bus = driver->dpaa_bus;
487 TAILQ_REMOVE(&dpaa_bus->driver_list, driver, next);
488 /* Update Bus references */
489 driver->dpaa_bus = NULL;
493 rte_dpaa_device_match(struct rte_dpaa_driver *drv,
494 struct rte_dpaa_device *dev)
497 DPAA_BUS_DEBUG("Invalid drv or dev received.");
501 if (drv->drv_type == dev->device_type)
508 rte_dpaa_bus_dev_build(void)
512 /* Load the device-tree driver */
515 DPAA_BUS_LOG(ERR, "of_init failed with ret: %d", ret);
519 /* Get the interface configurations from device-tree */
520 dpaa_netcfg = netcfg_acquire();
522 DPAA_BUS_LOG(ERR, "netcfg_acquire failed");
526 RTE_LOG(NOTICE, EAL, "DPAA Bus Detected\n");
528 if (!dpaa_netcfg->num_ethports) {
529 DPAA_BUS_LOG(INFO, "no network interfaces available");
530 /* This is not an error */
534 #ifdef RTE_LIBRTE_DPAA_DEBUG_DRIVER
535 dump_netcfg(dpaa_netcfg);
538 DPAA_BUS_LOG(DEBUG, "Number of ethernet devices = %d",
539 dpaa_netcfg->num_ethports);
540 ret = dpaa_create_device_list();
542 DPAA_BUS_LOG(ERR, "Unable to create device list. (%d)", ret);
549 rte_dpaa_bus_probe(void)
552 struct rte_dpaa_device *dev;
553 struct rte_dpaa_driver *drv;
554 FILE *svr_file = NULL;
555 unsigned int svr_ver;
556 int probe_all = rte_dpaa_bus.bus.conf.scan_mode != RTE_BUS_SCAN_WHITELIST;
557 static int process_once;
559 /* If DPAA bus is not present nothing needs to be done */
560 if (!rte_dpaa_bus.detected)
563 /* Device list creation is only done once */
565 rte_dpaa_bus_dev_build();
568 /* If no device present on DPAA bus nothing needs to be done */
569 if (TAILQ_EMPTY(&rte_dpaa_bus.device_list))
572 svr_file = fopen(DPAA_SOC_ID_FILE, "r");
574 if (fscanf(svr_file, "svr:%x", &svr_ver) > 0)
575 dpaa_svr_family = svr_ver & SVR_MASK;
579 /* And initialize the PA->VA translation table */
580 dpaax_iova_table_populate();
582 /* For each registered driver, and device, call the driver->probe */
583 TAILQ_FOREACH(dev, &rte_dpaa_bus.device_list, next) {
584 TAILQ_FOREACH(drv, &rte_dpaa_bus.driver_list, next) {
585 ret = rte_dpaa_device_match(drv, dev);
589 if (rte_dev_is_probed(&dev->device))
593 (dev->device.devargs &&
594 dev->device.devargs->policy == RTE_DEV_BLACKLISTED))
598 (dev->device.devargs &&
599 dev->device.devargs->policy ==
600 RTE_DEV_WHITELISTED)) {
601 ret = drv->probe(drv, dev);
603 DPAA_BUS_ERR("Unable to probe.\n");
606 dev->device.driver = &drv->driver;
613 /* Register DPAA mempool ops only if any DPAA device has
616 rte_mbuf_set_platform_mempool_ops(DPAA_MEMPOOL_OPS_NAME);
621 static struct rte_device *
622 rte_dpaa_find_device(const struct rte_device *start, rte_dev_cmp_t cmp,
625 struct rte_dpaa_device *dev;
626 const struct rte_dpaa_device *dstart;
628 /* find_device is called with 'data' as an opaque object - just call
629 * cmp with this and each device object on bus.
633 dstart = RTE_DEV_TO_DPAA_CONST(start);
634 dev = TAILQ_NEXT(dstart, next);
636 dev = TAILQ_FIRST(&rte_dpaa_bus.device_list);
639 while (dev != NULL) {
640 if (cmp(&dev->device, data) == 0) {
641 DPAA_BUS_DEBUG("Found dev=(%s)\n", dev->device.name);
644 dev = TAILQ_NEXT(dev, next);
647 DPAA_BUS_DEBUG("Unable to find any device\n");
652 * Get iommu class of DPAA2 devices on the bus.
654 static enum rte_iova_mode
655 rte_dpaa_get_iommu_class(void)
657 if ((access(DPAA_DEV_PATH1, F_OK) != 0) &&
658 (access(DPAA_DEV_PATH2, F_OK) != 0)) {
665 dpaa_bus_plug(struct rte_device *dev __rte_unused)
667 /* No operation is performed while plugging the device */
672 dpaa_bus_unplug(struct rte_device *dev __rte_unused)
674 /* No operation is performed while unplugging the device */
679 dpaa_bus_dev_iterate(const void *start, const char *str,
680 const struct rte_dev_iterator *it __rte_unused)
682 const struct rte_dpaa_device *dstart;
683 struct rte_dpaa_device *dev;
684 char *dup, *dev_name = NULL;
686 /* Expectation is that device would be name=device_name */
687 if (strncmp(str, "name=", 5) != 0) {
688 DPAA_BUS_DEBUG("Invalid device string (%s)\n", str);
692 /* Now that name=device_name format is available, split */
694 dev_name = dup + strlen("name=");
697 dstart = RTE_DEV_TO_DPAA_CONST(start);
698 dev = TAILQ_NEXT(dstart, next);
700 dev = TAILQ_FIRST(&rte_dpaa_bus.device_list);
703 while (dev != NULL) {
704 if (strcmp(dev->device.name, dev_name) == 0) {
708 dev = TAILQ_NEXT(dev, next);
715 static struct rte_dpaa_bus rte_dpaa_bus = {
717 .scan = rte_dpaa_bus_scan,
718 .probe = rte_dpaa_bus_probe,
719 .parse = rte_dpaa_bus_parse,
720 .find_device = rte_dpaa_find_device,
721 .get_iommu_class = rte_dpaa_get_iommu_class,
722 .plug = dpaa_bus_plug,
723 .unplug = dpaa_bus_unplug,
724 .dev_iterate = dpaa_bus_dev_iterate,
726 .device_list = TAILQ_HEAD_INITIALIZER(rte_dpaa_bus.device_list),
727 .driver_list = TAILQ_HEAD_INITIALIZER(rte_dpaa_bus.driver_list),
731 RTE_REGISTER_BUS(FSL_DPAA_BUS_NAME, rte_dpaa_bus.bus);
733 RTE_INIT(dpaa_init_log)
735 dpaa_logtype_bus = rte_log_register("bus.dpaa");
736 if (dpaa_logtype_bus >= 0)
737 rte_log_set_level(dpaa_logtype_bus, RTE_LOG_NOTICE);
739 dpaa_logtype_mempool = rte_log_register("mempool.dpaa");
740 if (dpaa_logtype_mempool >= 0)
741 rte_log_set_level(dpaa_logtype_mempool, RTE_LOG_NOTICE);
743 dpaa_logtype_pmd = rte_log_register("pmd.net.dpaa");
744 if (dpaa_logtype_pmd >= 0)
745 rte_log_set_level(dpaa_logtype_pmd, RTE_LOG_NOTICE);
747 dpaa_logtype_eventdev = rte_log_register("pmd.event.dpaa");
748 if (dpaa_logtype_eventdev >= 0)
749 rte_log_set_level(dpaa_logtype_eventdev, RTE_LOG_NOTICE);