New upstream version 18.11-rc1
[deb_dpdk.git] / drivers / bus / fslmc / fslmc_bus.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  *
3  *   Copyright 2016 NXP
4  *
5  */
6
7 #include <string.h>
8 #include <dirent.h>
9 #include <stdbool.h>
10
11 #include <rte_log.h>
12 #include <rte_bus.h>
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>
18
19 #include <rte_fslmc.h>
20 #include <fslmc_vfio.h>
21 #include "fslmc_logs.h"
22
23 #include <dpaax_iova_table.h>
24
25 int dpaa2_logtype_bus;
26
27 #define VFIO_IOMMU_GROUP_PATH "/sys/kernel/iommu_groups"
28 #define FSLMC_BUS_NAME  fslmc
29
30 struct rte_fslmc_bus rte_fslmc_bus;
31 uint8_t dpaa2_virt_mode;
32
33 uint32_t
34 rte_fslmc_get_device_count(enum rte_dpaa2_dev_type device_type)
35 {
36         if (device_type > DPAA2_DEVTYPE_MAX)
37                 return 0;
38         return rte_fslmc_bus.device_count[device_type];
39 }
40
41 RTE_DEFINE_PER_LCORE(struct dpaa2_portal_dqrr, dpaa2_held_bufs);
42
43 static void
44 cleanup_fslmc_device_list(void)
45 {
46         struct rte_dpaa2_device *dev;
47         struct rte_dpaa2_device *t_dev;
48
49         TAILQ_FOREACH_SAFE(dev, &rte_fslmc_bus.device_list, next, t_dev) {
50                 TAILQ_REMOVE(&rte_fslmc_bus.device_list, dev, next);
51                 free(dev);
52                 dev = NULL;
53         }
54 }
55
56 static int
57 compare_dpaa2_devname(struct rte_dpaa2_device *dev1,
58                       struct rte_dpaa2_device *dev2)
59 {
60         int comp;
61
62         if (dev1->dev_type > dev2->dev_type) {
63                 comp = 1;
64         } else if (dev1->dev_type < dev2->dev_type) {
65                 comp = -1;
66         } else {
67                 /* Check the ID as types match */
68                 if (dev1->object_id > dev2->object_id)
69                         comp = 1;
70                 else if (dev1->object_id < dev2->object_id)
71                         comp = -1;
72                 else
73                         comp = 0; /* Duplicate device name */
74         }
75
76         return comp;
77 }
78
79 static void
80 insert_in_device_list(struct rte_dpaa2_device *newdev)
81 {
82         int comp, inserted = 0;
83         struct rte_dpaa2_device *dev = NULL;
84         struct rte_dpaa2_device *tdev = NULL;
85
86         TAILQ_FOREACH_SAFE(dev, &rte_fslmc_bus.device_list, next, tdev) {
87                 comp = compare_dpaa2_devname(newdev, dev);
88                 if (comp < 0) {
89                         TAILQ_INSERT_BEFORE(dev, newdev, next);
90                         inserted = 1;
91                         break;
92                 }
93         }
94
95         if (!inserted)
96                 TAILQ_INSERT_TAIL(&rte_fslmc_bus.device_list, newdev, next);
97 }
98
99 static struct rte_devargs *
100 fslmc_devargs_lookup(struct rte_dpaa2_device *dev)
101 {
102         struct rte_devargs *devargs;
103         char dev_name[32];
104
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);
109                         return devargs;
110                 }
111         }
112         return NULL;
113 }
114
115 static void
116 dump_device_list(void)
117 {
118         struct rte_dpaa2_device *dev;
119         uint32_t global_log_level;
120         int local_log_level;
121
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);
130                 }
131         }
132 }
133
134 static int
135 scan_one_fslmc_device(char *dev_name)
136 {
137         char *dup_dev_name, *t_ptr;
138         struct rte_dpaa2_device *dev;
139
140         if (!dev_name)
141                 return -1;
142
143         /* Ignore the Container name itself */
144         if (!strncmp("dprc", dev_name, 4))
145                 return 0;
146
147         /* Creating a temporary copy to perform cut-parse over string */
148         dup_dev_name = strdup(dev_name);
149         if (!dup_dev_name) {
150                 DPAA2_BUS_ERR("Unable to allocate device name memory");
151                 return -ENOMEM;
152         }
153
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
157          * initialization.
158          */
159         dev = calloc(1, sizeof(struct rte_dpaa2_device));
160         if (!dev) {
161                 DPAA2_BUS_ERR("Unable to allocate device object");
162                 free(dup_dev_name);
163                 return -ENOMEM;
164         }
165
166         dev->device.bus = &rte_fslmc_bus.bus;
167
168         /* Parse the device name and ID */
169         t_ptr = strtok(dup_dev_name, ".");
170         if (!t_ptr) {
171                 DPAA2_BUS_ERR("Incorrect device name observed");
172                 goto cleanup;
173         }
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;
190         else
191                 dev->dev_type = DPAA2_UNKNOWN;
192
193         /* Update the device found into the device_count table */
194         rte_fslmc_bus.device_count[dev->dev_type]++;
195
196         t_ptr = strtok(NULL, ".");
197         if (!t_ptr) {
198                 DPAA2_BUS_ERR("Incorrect device string observed (%s)", t_ptr);
199                 goto cleanup;
200         }
201
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");
206                 goto cleanup;
207         }
208         dev->device.devargs = fslmc_devargs_lookup(dev);
209
210         /* Add device in the fslmc device list */
211         insert_in_device_list(dev);
212
213         /* Don't need the duplicated device filesystem entry anymore */
214         if (dup_dev_name)
215                 free(dup_dev_name);
216
217         return 0;
218 cleanup:
219         if (dup_dev_name)
220                 free(dup_dev_name);
221         if (dev)
222                 free(dev);
223         return -1;
224 }
225
226 static int
227 rte_fslmc_parse(const char *name, void *addr)
228 {
229         uint16_t dev_id;
230         char *t_ptr;
231         char *sep = strchr(name, ':');
232
233         if (strncmp(name, RTE_STR(FSLMC_BUS_NAME),
234                 strlen(RTE_STR(FSLMC_BUS_NAME)))) {
235                 return -EINVAL;
236         }
237
238         if (!sep) {
239                 DPAA2_BUS_ERR("Incorrect device name observed");
240                 return -EINVAL;
241         }
242
243         t_ptr = (char *)(sep + 1);
244
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");
254                 return -EINVAL;
255         }
256
257         t_ptr = strchr(name, '.');
258         if (!t_ptr) {
259                 DPAA2_BUS_ERR("Incorrect device string observed (%s)", t_ptr);
260                 return -EINVAL;
261         }
262
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);
266                 return -EINVAL;
267         }
268
269         if (addr)
270                 strcpy(addr, (char *)(sep + 1));
271         return 0;
272 }
273
274 static int
275 rte_fslmc_scan(void)
276 {
277         int ret;
278         int device_count = 0;
279         char fslmc_dirpath[PATH_MAX];
280         DIR *dir;
281         struct dirent *entry;
282         static int process_once;
283         int groupid;
284
285         if (process_once) {
286                 DPAA2_BUS_DEBUG("Fslmc bus already scanned. Not rescanning");
287                 return 0;
288         }
289         process_once = 1;
290
291         ret = fslmc_get_container_group(&groupid);
292         if (ret != 0)
293                 goto scan_fail;
294
295         /* Scan devices on the group */
296         sprintf(fslmc_dirpath, "%s/%d/devices", VFIO_IOMMU_GROUP_PATH,
297                 groupid);
298         dir = opendir(fslmc_dirpath);
299         if (!dir) {
300                 DPAA2_BUS_ERR("Unable to open VFIO group directory");
301                 goto scan_fail;
302         }
303
304         while ((entry = readdir(dir)) != NULL) {
305                 if (entry->d_name[0] == '.' || entry->d_type != DT_LNK)
306                         continue;
307
308                 ret = scan_one_fslmc_device(entry->d_name);
309                 if (ret != 0) {
310                         /* Error in parsing directory - exit gracefully */
311                         goto scan_fail_cleanup;
312                 }
313                 device_count += 1;
314         }
315
316         closedir(dir);
317
318         DPAA2_BUS_INFO("FSLMC Bus scan completed");
319         /* If debugging is enabled, device list is dumped to log output */
320         dump_device_list();
321
322         return 0;
323
324 scan_fail_cleanup:
325         closedir(dir);
326
327         /* Remove all devices in the list */
328         cleanup_fslmc_device_list();
329 scan_fail:
330         DPAA2_BUS_DEBUG("FSLMC Bus Not Available. Skipping");
331         /* Irrespective of failure, scan only return success */
332         return 0;
333 }
334
335 static int
336 rte_fslmc_match(struct rte_dpaa2_driver *dpaa2_drv,
337                 struct rte_dpaa2_device *dpaa2_dev)
338 {
339         if (dpaa2_drv->drv_type == dpaa2_dev->dev_type)
340                 return 0;
341
342         return 1;
343 }
344
345 static int
346 rte_fslmc_probe(void)
347 {
348         int ret = 0;
349         int probe_all;
350
351         struct rte_dpaa2_device *dev;
352         struct rte_dpaa2_driver *drv;
353
354         if (TAILQ_EMPTY(&rte_fslmc_bus.device_list))
355                 return 0;
356
357         ret = fslmc_vfio_setup_group();
358         if (ret) {
359                 DPAA2_BUS_ERR("Unable to setup VFIO %d", ret);
360                 return 0;
361         }
362
363         /* Map existing segments as well as, in case of hotpluggable memory,
364          * install callback handler.
365          */
366         ret = rte_fslmc_vfio_dmamap();
367         if (ret) {
368                 DPAA2_BUS_ERR("Unable to DMA map existing VAs: (%d)", ret);
369                 /* Not continuing ahead */
370                 DPAA2_BUS_ERR("FSLMC VFIO Mapping failed");
371                 return 0;
372         }
373
374         ret = fslmc_vfio_process_group();
375         if (ret) {
376                 DPAA2_BUS_ERR("Unable to setup devices %d", ret);
377                 return 0;
378         }
379
380         probe_all = rte_fslmc_bus.bus.conf.scan_mode != RTE_BUS_SCAN_WHITELIST;
381
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
388          * to this table.
389          *
390          * Error is ignored as relevant logs are handled within dpaax and
391          * handling for unavailable dpaax table too is transparent to caller.
392          */
393         dpaax_iova_table_populate();
394
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);
398                         if (ret)
399                                 continue;
400
401                         if (!drv->probe)
402                                 continue;
403
404                         if (rte_dev_is_probed(&dev->device))
405                                 continue;
406
407                         if (dev->device.devargs &&
408                           dev->device.devargs->policy == RTE_DEV_BLACKLISTED) {
409                                 DPAA2_BUS_LOG(DEBUG, "%s Blacklisted, skipping",
410                                               dev->device.name);
411                                 continue;
412                         }
413
414                         if (probe_all ||
415                            (dev->device.devargs &&
416                            dev->device.devargs->policy ==
417                            RTE_DEV_WHITELISTED)) {
418                                 ret = drv->probe(drv, dev);
419                                 if (ret) {
420                                         DPAA2_BUS_ERR("Unable to probe");
421                                 } else {
422                                         dev->driver = drv;
423                                         dev->device.driver = &drv->driver;
424                                 }
425                         }
426                         break;
427                 }
428         }
429
430         if (rte_eal_iova_mode() == RTE_IOVA_VA)
431                 dpaa2_virt_mode = 1;
432
433         return 0;
434 }
435
436 static struct rte_device *
437 rte_fslmc_find_device(const struct rte_device *start, rte_dev_cmp_t cmp,
438                       const void *data)
439 {
440         const struct rte_dpaa2_device *dstart;
441         struct rte_dpaa2_device *dev;
442
443         if (start != NULL) {
444                 dstart = RTE_DEV_TO_FSLMC_CONST(start);
445                 dev = TAILQ_NEXT(dstart, next);
446         } else {
447                 dev = TAILQ_FIRST(&rte_fslmc_bus.device_list);
448         }
449         while (dev != NULL) {
450                 if (cmp(&dev->device, data) == 0)
451                         return &dev->device;
452                 dev = TAILQ_NEXT(dev, next);
453         }
454
455         return NULL;
456 }
457
458 /*register a fslmc bus based dpaa2 driver */
459 void
460 rte_fslmc_driver_register(struct rte_dpaa2_driver *driver)
461 {
462         RTE_VERIFY(driver);
463
464         TAILQ_INSERT_TAIL(&rte_fslmc_bus.driver_list, driver, next);
465         /* Update Bus references */
466         driver->fslmc_bus = &rte_fslmc_bus;
467 }
468
469 /*un-register a fslmc bus based dpaa2 driver */
470 void
471 rte_fslmc_driver_unregister(struct rte_dpaa2_driver *driver)
472 {
473         struct rte_fslmc_bus *fslmc_bus;
474
475         fslmc_bus = driver->fslmc_bus;
476
477         /* Cleanup the PA->VA Translation table; From whereever this function
478          * is called from.
479          */
480         dpaax_iova_table_depopulate();
481
482         TAILQ_REMOVE(&fslmc_bus->driver_list, driver, next);
483         /* Update Bus references */
484         driver->fslmc_bus = NULL;
485 }
486
487 /*
488  * All device has iova as va
489  */
490 static inline int
491 fslmc_all_device_support_iova(void)
492 {
493         int ret = 0;
494         struct rte_dpaa2_device *dev;
495         struct rte_dpaa2_driver *drv;
496
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);
500                         if (ret)
501                                 continue;
502                         /* if the driver is not supporting IOVA */
503                         if (!(drv->drv_flags & RTE_DPAA2_DRV_IOVA_AS_VA))
504                                 return 0;
505                 }
506         }
507         return 1;
508 }
509
510 /*
511  * Get iommu class of DPAA2 devices on the bus.
512  */
513 static enum rte_iova_mode
514 rte_dpaa2_get_iommu_class(void)
515 {
516         bool is_vfio_noiommu_enabled = 1;
517         bool has_iova_va;
518
519         if (TAILQ_EMPTY(&rte_fslmc_bus.device_list))
520                 return RTE_IOVA_DC;
521
522 #ifdef RTE_LIBRTE_DPAA2_USE_PHYS_IOVA
523         return RTE_IOVA_PA;
524 #endif
525
526         /* check if all devices on the bus support Virtual addressing or not */
527         has_iova_va = fslmc_all_device_support_iova();
528
529 #ifdef VFIO_PRESENT
530         is_vfio_noiommu_enabled = rte_vfio_noiommu_is_enabled() == true ?
531                                                 true : false;
532 #endif
533
534         if (has_iova_va && !is_vfio_noiommu_enabled)
535                 return RTE_IOVA_VA;
536
537         return RTE_IOVA_PA;
538 }
539
540 struct rte_fslmc_bus rte_fslmc_bus = {
541         .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,
547         },
548         .device_list = TAILQ_HEAD_INITIALIZER(rte_fslmc_bus.device_list),
549         .driver_list = TAILQ_HEAD_INITIALIZER(rte_fslmc_bus.driver_list),
550         .device_count = {0},
551 };
552
553 RTE_REGISTER_BUS(FSLMC_BUS_NAME, rte_fslmc_bus.bus);
554
555 RTE_INIT(fslmc_init_log)
556 {
557         /* Bus level logs */
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);
561 }