dpaa2: prepare for 32-bit build
[dpdk.git] / drivers / bus / fslmc / portal / dpaa2_hw_dpio.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  *
3  *   Copyright (c) 2016 Freescale Semiconductor, Inc. All rights reserved.
4  *   Copyright 2016 NXP
5  *
6  */
7 #include <unistd.h>
8 #include <stdio.h>
9 #include <string.h>
10 #include <stdlib.h>
11 #include <fcntl.h>
12 #include <errno.h>
13 #include <stdarg.h>
14 #include <inttypes.h>
15 #include <signal.h>
16 #include <pthread.h>
17 #include <sys/types.h>
18 #include <sys/queue.h>
19 #include <sys/ioctl.h>
20 #include <sys/stat.h>
21 #include <sys/mman.h>
22 #include <sys/syscall.h>
23 #include <sys/epoll.h>
24 #include<sys/eventfd.h>
25
26 #include <rte_mbuf.h>
27 #include <rte_ethdev_driver.h>
28 #include <rte_malloc.h>
29 #include <rte_memcpy.h>
30 #include <rte_string_fns.h>
31 #include <rte_cycles.h>
32 #include <rte_kvargs.h>
33 #include <rte_dev.h>
34
35 #include <fslmc_logs.h>
36 #include <rte_fslmc.h>
37 #include "dpaa2_hw_pvt.h"
38 #include "dpaa2_hw_dpio.h"
39 #include <mc/fsl_dpmng.h>
40
41 #define NUM_HOST_CPUS RTE_MAX_LCORE
42
43 struct dpaa2_io_portal_t dpaa2_io_portal[RTE_MAX_LCORE];
44 RTE_DEFINE_PER_LCORE(struct dpaa2_io_portal_t, _dpaa2_io);
45
46 struct swp_active_dqs rte_global_active_dqs_list[NUM_MAX_SWP];
47
48 TAILQ_HEAD(dpio_dev_list, dpaa2_dpio_dev);
49 static struct dpio_dev_list dpio_dev_list
50         = TAILQ_HEAD_INITIALIZER(dpio_dev_list); /*!< DPIO device list */
51 static uint32_t io_space_count;
52
53 /* Variable to store DPAA2 platform type */
54 uint32_t dpaa2_svr_family;
55
56 /*Stashing Macros default for LS208x*/
57 static int dpaa2_core_cluster_base = 0x04;
58 static int dpaa2_cluster_sz = 2;
59
60 /* For LS208X platform There are four clusters with following mapping:
61  * Cluster 1 (ID = x04) : CPU0, CPU1;
62  * Cluster 2 (ID = x05) : CPU2, CPU3;
63  * Cluster 3 (ID = x06) : CPU4, CPU5;
64  * Cluster 4 (ID = x07) : CPU6, CPU7;
65  */
66 /* For LS108X platform There are two clusters with following mapping:
67  * Cluster 1 (ID = x02) : CPU0, CPU1, CPU2, CPU3;
68  * Cluster 2 (ID = x03) : CPU4, CPU5, CPU6, CPU7;
69  */
70 /* For LX2160 platform There are four clusters with following mapping:
71  * Cluster 1 (ID = x00) : CPU0, CPU1;
72  * Cluster 2 (ID = x01) : CPU2, CPU3;
73  * Cluster 3 (ID = x02) : CPU4, CPU5;
74  * Cluster 4 (ID = x03) : CPU6, CPU7;
75  * Cluster 1 (ID = x04) : CPU8, CPU9;
76  * Cluster 2 (ID = x05) : CPU10, CP11;
77  * Cluster 3 (ID = x06) : CPU12, CPU13;
78  * Cluster 4 (ID = x07) : CPU14, CPU15;
79  */
80
81 static int
82 dpaa2_core_cluster_sdest(int cpu_id)
83 {
84         int x = cpu_id / dpaa2_cluster_sz;
85
86         return dpaa2_core_cluster_base + x;
87 }
88
89 #ifdef RTE_LIBRTE_PMD_DPAA2_EVENTDEV
90 static void dpaa2_affine_dpio_intr_to_respective_core(int32_t dpio_id)
91 {
92 #define STRING_LEN      28
93 #define COMMAND_LEN     50
94         uint32_t cpu_mask = 1;
95         int ret;
96         size_t len = 0;
97         char *temp = NULL, *token = NULL;
98         char string[STRING_LEN], command[COMMAND_LEN];
99         FILE *file;
100
101         snprintf(string, STRING_LEN, "dpio.%d", dpio_id);
102         file = fopen("/proc/interrupts", "r");
103         if (!file) {
104                 PMD_DRV_LOG(WARNING, "Failed to open /proc/interrupts file\n");
105                 return;
106         }
107         while (getline(&temp, &len, file) != -1) {
108                 if ((strstr(temp, string)) != NULL) {
109                         token = strtok(temp, ":");
110                         break;
111                 }
112         }
113
114         if (!token) {
115                 PMD_DRV_LOG(WARNING, "Failed to get interrupt id for dpio.%d\n",
116                             dpio_id);
117                 if (temp)
118                         free(temp);
119                 fclose(file);
120                 return;
121         }
122
123         cpu_mask = cpu_mask << rte_lcore_id();
124         snprintf(command, COMMAND_LEN, "echo %X > /proc/irq/%s/smp_affinity",
125                  cpu_mask, token);
126         ret = system(command);
127         if (ret < 0)
128                 PMD_DRV_LOG(WARNING,
129                         "Failed to affine interrupts on respective core\n");
130         else
131                 PMD_DRV_LOG(WARNING, " %s command is executed\n", command);
132
133         free(temp);
134         fclose(file);
135 }
136
137 static int dpaa2_dpio_intr_init(struct dpaa2_dpio_dev *dpio_dev)
138 {
139         struct epoll_event epoll_ev;
140         int eventfd, dpio_epoll_fd, ret;
141         int threshold = 0x3, timeout = 0xFF;
142
143         dpio_epoll_fd = epoll_create(1);
144         ret = rte_dpaa2_intr_enable(&dpio_dev->intr_handle, 0);
145         if (ret) {
146                 PMD_DRV_LOG(ERR, "Interrupt registeration failed\n");
147                 return -1;
148         }
149
150         if (getenv("DPAA2_PORTAL_INTR_THRESHOLD"))
151                 threshold = atoi(getenv("DPAA2_PORTAL_INTR_THRESHOLD"));
152
153         if (getenv("DPAA2_PORTAL_INTR_TIMEOUT"))
154                 sscanf(getenv("DPAA2_PORTAL_INTR_TIMEOUT"), "%x", &timeout);
155
156         qbman_swp_interrupt_set_trigger(dpio_dev->sw_portal,
157                                         QBMAN_SWP_INTERRUPT_DQRI);
158         qbman_swp_interrupt_clear_status(dpio_dev->sw_portal, 0xffffffff);
159         qbman_swp_interrupt_set_inhibit(dpio_dev->sw_portal, 0);
160         qbman_swp_dqrr_thrshld_write(dpio_dev->sw_portal, threshold);
161         qbman_swp_intr_timeout_write(dpio_dev->sw_portal, timeout);
162
163         eventfd = dpio_dev->intr_handle.fd;
164         epoll_ev.events = EPOLLIN | EPOLLPRI | EPOLLET;
165         epoll_ev.data.fd = eventfd;
166
167         ret = epoll_ctl(dpio_epoll_fd, EPOLL_CTL_ADD, eventfd, &epoll_ev);
168         if (ret < 0) {
169                 PMD_DRV_LOG(ERR, "epoll_ctl failed\n");
170                 return -1;
171         }
172         dpio_dev->epoll_fd = dpio_epoll_fd;
173
174         dpaa2_affine_dpio_intr_to_respective_core(dpio_dev->hw_id);
175
176         return 0;
177 }
178 #endif
179
180 static int
181 configure_dpio_qbman_swp(struct dpaa2_dpio_dev *dpio_dev)
182 {
183         struct qbman_swp_desc p_des;
184         struct dpio_attr attr;
185
186         dpio_dev->dpio = malloc(sizeof(struct fsl_mc_io));
187         if (!dpio_dev->dpio) {
188                 PMD_INIT_LOG(ERR, "Memory allocation failure\n");
189                 return -1;
190         }
191
192         PMD_DRV_LOG(DEBUG, "Allocated  DPIO Portal[%p]", dpio_dev->dpio);
193         dpio_dev->dpio->regs = dpio_dev->mc_portal;
194         if (dpio_open(dpio_dev->dpio, CMD_PRI_LOW, dpio_dev->hw_id,
195                       &dpio_dev->token)) {
196                 PMD_INIT_LOG(ERR, "Failed to allocate IO space\n");
197                 free(dpio_dev->dpio);
198                 return -1;
199         }
200
201         if (dpio_reset(dpio_dev->dpio, CMD_PRI_LOW, dpio_dev->token)) {
202                 PMD_INIT_LOG(ERR, "Failed to reset dpio\n");
203                 dpio_close(dpio_dev->dpio, CMD_PRI_LOW, dpio_dev->token);
204                 free(dpio_dev->dpio);
205                 return -1;
206         }
207
208         if (dpio_enable(dpio_dev->dpio, CMD_PRI_LOW, dpio_dev->token)) {
209                 PMD_INIT_LOG(ERR, "Failed to Enable dpio\n");
210                 dpio_close(dpio_dev->dpio, CMD_PRI_LOW, dpio_dev->token);
211                 free(dpio_dev->dpio);
212                 return -1;
213         }
214
215         if (dpio_get_attributes(dpio_dev->dpio, CMD_PRI_LOW,
216                                 dpio_dev->token, &attr)) {
217                 PMD_INIT_LOG(ERR, "DPIO Get attribute failed\n");
218                 dpio_disable(dpio_dev->dpio, CMD_PRI_LOW, dpio_dev->token);
219                 dpio_close(dpio_dev->dpio, CMD_PRI_LOW,  dpio_dev->token);
220                 free(dpio_dev->dpio);
221                 return -1;
222         }
223
224         /* Configure & setup SW portal */
225         p_des.block = NULL;
226         p_des.idx = attr.qbman_portal_id;
227         p_des.cena_bar = (void *)(dpio_dev->qbman_portal_ce_paddr);
228         p_des.cinh_bar = (void *)(dpio_dev->qbman_portal_ci_paddr);
229         p_des.irq = -1;
230         p_des.qman_version = attr.qbman_version;
231
232         dpio_dev->sw_portal = qbman_swp_init(&p_des);
233         if (dpio_dev->sw_portal == NULL) {
234                 PMD_DRV_LOG(ERR, " QBMan SW Portal Init failed\n");
235                 dpio_close(dpio_dev->dpio, CMD_PRI_LOW, dpio_dev->token);
236                 free(dpio_dev->dpio);
237                 return -1;
238         }
239
240         return 0;
241 }
242
243 static int
244 dpaa2_configure_stashing(struct dpaa2_dpio_dev *dpio_dev, int cpu_id)
245 {
246         int sdest, ret;
247
248         /* Set the Stashing Destination */
249         if (cpu_id < 0) {
250                 cpu_id = rte_get_master_lcore();
251                 if (cpu_id < 0) {
252                         RTE_LOG(ERR, PMD, "\tGetting CPU Index failed\n");
253                         return -1;
254                 }
255         }
256         /* Set the STASH Destination depending on Current CPU ID.
257          * Valid values of SDEST are 4,5,6,7. Where,
258          */
259
260         sdest = dpaa2_core_cluster_sdest(cpu_id);
261         PMD_DRV_LOG(DEBUG, "Portal= %d  CPU= %u SDEST= %d",
262                     dpio_dev->index, cpu_id, sdest);
263
264         ret = dpio_set_stashing_destination(dpio_dev->dpio, CMD_PRI_LOW,
265                                             dpio_dev->token, sdest);
266         if (ret) {
267                 PMD_DRV_LOG(ERR, "%d ERROR in SDEST\n",  ret);
268                 return -1;
269         }
270
271 #ifdef RTE_LIBRTE_PMD_DPAA2_EVENTDEV
272         if (dpaa2_dpio_intr_init(dpio_dev)) {
273                 PMD_DRV_LOG(ERR, "Interrupt registration failed for dpio\n");
274                 return -1;
275         }
276 #endif
277
278         return 0;
279 }
280
281 struct dpaa2_dpio_dev *dpaa2_get_qbman_swp(int cpu_id)
282 {
283         struct dpaa2_dpio_dev *dpio_dev = NULL;
284         int ret;
285
286         /* Get DPIO dev handle from list using index */
287         TAILQ_FOREACH(dpio_dev, &dpio_dev_list, next) {
288                 if (dpio_dev && rte_atomic16_test_and_set(&dpio_dev->ref_count))
289                         break;
290         }
291         if (!dpio_dev)
292                 return NULL;
293
294         PMD_DRV_LOG(DEBUG, "New Portal %p (%d) affined thread - %lu",
295                     dpio_dev, dpio_dev->index, syscall(SYS_gettid));
296
297         ret = dpaa2_configure_stashing(dpio_dev, cpu_id);
298         if (ret)
299                 PMD_DRV_LOG(ERR, "dpaa2_configure_stashing failed");
300
301         return dpio_dev;
302 }
303
304 int
305 dpaa2_affine_qbman_swp(void)
306 {
307         unsigned int lcore_id = rte_lcore_id();
308         uint64_t tid = syscall(SYS_gettid);
309
310         if (lcore_id == LCORE_ID_ANY)
311                 lcore_id = rte_get_master_lcore();
312         /* if the core id is not supported */
313         else if (lcore_id >= RTE_MAX_LCORE)
314                 return -1;
315
316         if (dpaa2_io_portal[lcore_id].dpio_dev) {
317                 PMD_DRV_LOG(INFO, "DPAAPortal=%p (%d) is being shared"
318                             " between thread %" PRIu64 " and current "
319                             "%" PRIu64 "\n",
320                             dpaa2_io_portal[lcore_id].dpio_dev,
321                             dpaa2_io_portal[lcore_id].dpio_dev->index,
322                             dpaa2_io_portal[lcore_id].net_tid,
323                             tid);
324                 RTE_PER_LCORE(_dpaa2_io).dpio_dev
325                         = dpaa2_io_portal[lcore_id].dpio_dev;
326                 rte_atomic16_inc(&dpaa2_io_portal
327                                  [lcore_id].dpio_dev->ref_count);
328                 dpaa2_io_portal[lcore_id].net_tid = tid;
329
330                 PMD_DRV_LOG(DEBUG, "Old Portal=%p (%d)"
331                             "affined thread - %" PRIu64 "\n",
332                             dpaa2_io_portal[lcore_id].dpio_dev,
333                             dpaa2_io_portal[lcore_id].dpio_dev->index,
334                             tid);
335                 return 0;
336         }
337
338         /* Populate the dpaa2_io_portal structure */
339         dpaa2_io_portal[lcore_id].dpio_dev = dpaa2_get_qbman_swp(lcore_id);
340
341         if (dpaa2_io_portal[lcore_id].dpio_dev) {
342                 RTE_PER_LCORE(_dpaa2_io).dpio_dev
343                         = dpaa2_io_portal[lcore_id].dpio_dev;
344                 dpaa2_io_portal[lcore_id].net_tid = tid;
345
346                 return 0;
347         } else {
348                 return -1;
349         }
350 }
351
352 int
353 dpaa2_affine_qbman_swp_sec(void)
354 {
355         unsigned int lcore_id = rte_lcore_id();
356         uint64_t tid = syscall(SYS_gettid);
357
358         if (lcore_id == LCORE_ID_ANY)
359                 lcore_id = rte_get_master_lcore();
360         /* if the core id is not supported */
361         else if (lcore_id >= RTE_MAX_LCORE)
362                 return -1;
363
364         if (dpaa2_io_portal[lcore_id].sec_dpio_dev) {
365                 PMD_DRV_LOG(INFO, "DPAAPortal=%p (%d) is being shared"
366                             " between thread %" PRIu64 " and current "
367                             "%" PRIu64 "\n",
368                             dpaa2_io_portal[lcore_id].sec_dpio_dev,
369                             dpaa2_io_portal[lcore_id].sec_dpio_dev->index,
370                             dpaa2_io_portal[lcore_id].sec_tid,
371                             tid);
372                 RTE_PER_LCORE(_dpaa2_io).sec_dpio_dev
373                         = dpaa2_io_portal[lcore_id].sec_dpio_dev;
374                 rte_atomic16_inc(&dpaa2_io_portal
375                                  [lcore_id].sec_dpio_dev->ref_count);
376                 dpaa2_io_portal[lcore_id].sec_tid = tid;
377
378                 PMD_DRV_LOG(DEBUG, "Old Portal=%p (%d) "
379                             "affined thread - %" PRIu64 "\n",
380                             dpaa2_io_portal[lcore_id].sec_dpio_dev,
381                             dpaa2_io_portal[lcore_id].sec_dpio_dev->index,
382                             tid);
383                 return 0;
384         }
385
386         /* Populate the dpaa2_io_portal structure */
387         dpaa2_io_portal[lcore_id].sec_dpio_dev = dpaa2_get_qbman_swp(lcore_id);
388
389         if (dpaa2_io_portal[lcore_id].sec_dpio_dev) {
390                 RTE_PER_LCORE(_dpaa2_io).sec_dpio_dev
391                         = dpaa2_io_portal[lcore_id].sec_dpio_dev;
392                 dpaa2_io_portal[lcore_id].sec_tid = tid;
393                 return 0;
394         } else {
395                 return -1;
396         }
397 }
398
399 static int
400 dpaa2_create_dpio_device(int vdev_fd,
401                          struct vfio_device_info *obj_info,
402                          int object_id)
403 {
404         struct dpaa2_dpio_dev *dpio_dev;
405         struct vfio_region_info reg_info = { .argsz = sizeof(reg_info)};
406
407         if (obj_info->num_regions < NUM_DPIO_REGIONS) {
408                 PMD_INIT_LOG(ERR, "ERROR, Not sufficient number "
409                                 "of DPIO regions.\n");
410                 return -1;
411         }
412
413         dpio_dev = rte_malloc(NULL, sizeof(struct dpaa2_dpio_dev),
414                               RTE_CACHE_LINE_SIZE);
415         if (!dpio_dev) {
416                 PMD_INIT_LOG(ERR, "Memory allocation failed for DPIO Device\n");
417                 return -1;
418         }
419
420         dpio_dev->dpio = NULL;
421         dpio_dev->hw_id = object_id;
422         rte_atomic16_init(&dpio_dev->ref_count);
423         /* Using single portal  for all devices */
424         dpio_dev->mc_portal = rte_mcp_ptr_list[MC_PORTAL_INDEX];
425
426         reg_info.index = 0;
427         if (ioctl(vdev_fd, VFIO_DEVICE_GET_REGION_INFO, &reg_info)) {
428                 PMD_INIT_LOG(ERR, "vfio: error getting region info\n");
429                 rte_free(dpio_dev);
430                 return -1;
431         }
432
433         dpio_dev->ce_size = reg_info.size;
434         dpio_dev->qbman_portal_ce_paddr = (size_t)mmap(NULL, reg_info.size,
435                                 PROT_WRITE | PROT_READ, MAP_SHARED,
436                                 vdev_fd, reg_info.offset);
437
438         reg_info.index = 1;
439         if (ioctl(vdev_fd, VFIO_DEVICE_GET_REGION_INFO, &reg_info)) {
440                 PMD_INIT_LOG(ERR, "vfio: error getting region info\n");
441                 rte_free(dpio_dev);
442                 return -1;
443         }
444
445         dpio_dev->ci_size = reg_info.size;
446         dpio_dev->qbman_portal_ci_paddr = (size_t)mmap(NULL, reg_info.size,
447                                 PROT_WRITE | PROT_READ, MAP_SHARED,
448                                 vdev_fd, reg_info.offset);
449
450         if (configure_dpio_qbman_swp(dpio_dev)) {
451                 PMD_INIT_LOG(ERR,
452                              "Fail to configure the dpio qbman portal for %d\n",
453                              dpio_dev->hw_id);
454                 rte_free(dpio_dev);
455                 return -1;
456         }
457
458         io_space_count++;
459         dpio_dev->index = io_space_count;
460
461         if (rte_dpaa2_vfio_setup_intr(&dpio_dev->intr_handle, vdev_fd, 1)) {
462                 PMD_INIT_LOG(ERR, "Fail to setup interrupt for %d\n",
463                              dpio_dev->hw_id);
464                 rte_free(dpio_dev);
465         }
466
467         /* find the SoC type for the first time */
468         if (!dpaa2_svr_family) {
469                 struct mc_soc_version mc_plat_info = {0};
470
471                 if (mc_get_soc_version(dpio_dev->dpio,
472                                        CMD_PRI_LOW, &mc_plat_info)) {
473                         PMD_INIT_LOG(ERR, "\tmc_get_soc_version failed\n");
474                 } else if ((mc_plat_info.svr & 0xffff0000) == SVR_LS1080A) {
475                         dpaa2_core_cluster_base = 0x02;
476                         dpaa2_cluster_sz = 4;
477                         PMD_INIT_LOG(DEBUG, "\tLS108x (A53) Platform Detected");
478                 } else if ((mc_plat_info.svr & 0xffff0000) == SVR_LX2160A) {
479                         dpaa2_core_cluster_base = 0x00;
480                         dpaa2_cluster_sz = 2;
481                         PMD_INIT_LOG(DEBUG, "\tLX2160 Platform Detected");
482                 }
483                 dpaa2_svr_family = (mc_plat_info.svr & 0xffff0000);
484         }
485
486         TAILQ_INSERT_TAIL(&dpio_dev_list, dpio_dev, next);
487         RTE_LOG(DEBUG, PMD, "DPAA2: Added [dpio.%d]\n", object_id);
488
489         return 0;
490 }
491
492 void
493 dpaa2_free_dq_storage(struct queue_storage_info_t *q_storage)
494 {
495         int i = 0;
496
497         for (i = 0; i < NUM_DQS_PER_QUEUE; i++) {
498                 if (q_storage->dq_storage[i])
499                         rte_free(q_storage->dq_storage[i]);
500         }
501 }
502
503 int
504 dpaa2_alloc_dq_storage(struct queue_storage_info_t *q_storage)
505 {
506         int i = 0;
507
508         for (i = 0; i < NUM_DQS_PER_QUEUE; i++) {
509                 q_storage->dq_storage[i] = rte_malloc(NULL,
510                         DPAA2_DQRR_RING_SIZE * sizeof(struct qbman_result),
511                         RTE_CACHE_LINE_SIZE);
512                 if (!q_storage->dq_storage[i])
513                         goto fail;
514         }
515         return 0;
516 fail:
517         while (--i >= 0)
518                 rte_free(q_storage->dq_storage[i]);
519
520         return -1;
521 }
522
523 static struct rte_dpaa2_object rte_dpaa2_dpio_obj = {
524         .dev_type = DPAA2_IO,
525         .create = dpaa2_create_dpio_device,
526 };
527
528 RTE_PMD_REGISTER_DPAA2_OBJECT(dpio, rte_dpaa2_dpio_obj);