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