common/cnxk: add new PCI IDs to supported devices
[dpdk.git] / drivers / event / cnxk / cnxk_eventdev_adptr.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(C) 2021 Marvell.
3  */
4
5 #include "cnxk_ethdev.h"
6 #include "cnxk_eventdev.h"
7
8 void
9 cnxk_sso_updt_xae_cnt(struct cnxk_sso_evdev *dev, void *data,
10                       uint32_t event_type)
11 {
12         int i;
13
14         switch (event_type) {
15         case RTE_EVENT_TYPE_ETHDEV: {
16                 struct cnxk_eth_rxq_sp *rxq = data;
17                 uint64_t *old_ptr;
18
19                 for (i = 0; i < dev->rx_adptr_pool_cnt; i++) {
20                         if ((uint64_t)rxq->qconf.mp == dev->rx_adptr_pools[i])
21                                 return;
22                 }
23
24                 dev->rx_adptr_pool_cnt++;
25                 old_ptr = dev->rx_adptr_pools;
26                 dev->rx_adptr_pools = rte_realloc(
27                         dev->rx_adptr_pools,
28                         sizeof(uint64_t) * dev->rx_adptr_pool_cnt, 0);
29                 if (dev->rx_adptr_pools == NULL) {
30                         dev->adptr_xae_cnt += rxq->qconf.mp->size;
31                         dev->rx_adptr_pools = old_ptr;
32                         dev->rx_adptr_pool_cnt--;
33                         return;
34                 }
35                 dev->rx_adptr_pools[dev->rx_adptr_pool_cnt - 1] =
36                         (uint64_t)rxq->qconf.mp;
37
38                 dev->adptr_xae_cnt += rxq->qconf.mp->size;
39                 break;
40         }
41         case RTE_EVENT_TYPE_ETHDEV_VECTOR: {
42                 struct rte_mempool *mp = data;
43                 uint64_t *old_ptr;
44
45                 for (i = 0; i < dev->vec_pool_cnt; i++) {
46                         if ((uint64_t)mp == dev->vec_pools[i])
47                                 return;
48                 }
49
50                 dev->vec_pool_cnt++;
51                 old_ptr = dev->vec_pools;
52                 dev->vec_pools =
53                         rte_realloc(dev->vec_pools,
54                                     sizeof(uint64_t) * dev->vec_pool_cnt, 0);
55                 if (dev->vec_pools == NULL) {
56                         dev->adptr_xae_cnt += mp->size;
57                         dev->vec_pools = old_ptr;
58                         dev->vec_pool_cnt--;
59                         return;
60                 }
61                 dev->vec_pools[dev->vec_pool_cnt - 1] = (uint64_t)mp;
62
63                 dev->adptr_xae_cnt += mp->size;
64                 break;
65         }
66         case RTE_EVENT_TYPE_TIMER: {
67                 struct cnxk_tim_ring *timr = data;
68                 uint16_t *old_ring_ptr;
69                 uint64_t *old_sz_ptr;
70
71                 for (i = 0; i < dev->tim_adptr_ring_cnt; i++) {
72                         if (timr->ring_id != dev->timer_adptr_rings[i])
73                                 continue;
74                         if (timr->nb_timers == dev->timer_adptr_sz[i])
75                                 return;
76                         dev->adptr_xae_cnt -= dev->timer_adptr_sz[i];
77                         dev->adptr_xae_cnt += timr->nb_timers;
78                         dev->timer_adptr_sz[i] = timr->nb_timers;
79
80                         return;
81                 }
82
83                 dev->tim_adptr_ring_cnt++;
84                 old_ring_ptr = dev->timer_adptr_rings;
85                 old_sz_ptr = dev->timer_adptr_sz;
86
87                 dev->timer_adptr_rings = rte_realloc(
88                         dev->timer_adptr_rings,
89                         sizeof(uint16_t) * dev->tim_adptr_ring_cnt, 0);
90                 if (dev->timer_adptr_rings == NULL) {
91                         dev->adptr_xae_cnt += timr->nb_timers;
92                         dev->timer_adptr_rings = old_ring_ptr;
93                         dev->tim_adptr_ring_cnt--;
94                         return;
95                 }
96
97                 dev->timer_adptr_sz = rte_realloc(
98                         dev->timer_adptr_sz,
99                         sizeof(uint64_t) * dev->tim_adptr_ring_cnt, 0);
100
101                 if (dev->timer_adptr_sz == NULL) {
102                         dev->adptr_xae_cnt += timr->nb_timers;
103                         dev->timer_adptr_sz = old_sz_ptr;
104                         dev->tim_adptr_ring_cnt--;
105                         return;
106                 }
107
108                 dev->timer_adptr_rings[dev->tim_adptr_ring_cnt - 1] =
109                         timr->ring_id;
110                 dev->timer_adptr_sz[dev->tim_adptr_ring_cnt - 1] =
111                         timr->nb_timers;
112
113                 dev->adptr_xae_cnt += timr->nb_timers;
114                 break;
115         }
116         default:
117                 break;
118         }
119 }
120
121 static int
122 cnxk_sso_rxq_enable(struct cnxk_eth_dev *cnxk_eth_dev, uint16_t rq_id,
123                     uint16_t port_id, const struct rte_event *ev,
124                     uint8_t custom_flowid)
125 {
126         struct roc_nix *nix = &cnxk_eth_dev->nix;
127         struct roc_nix_rq *rq;
128         int rc;
129
130         rq = &cnxk_eth_dev->rqs[rq_id];
131         rq->sso_ena = 1;
132         rq->tt = ev->sched_type;
133         rq->hwgrp = ev->queue_id;
134         rq->flow_tag_width = 20;
135         rq->wqe_skip = 1;
136         rq->tag_mask = (port_id & 0xF) << 20;
137         rq->tag_mask |= (((port_id >> 4) & 0xF) | (RTE_EVENT_TYPE_ETHDEV << 4))
138                         << 24;
139
140         if (custom_flowid) {
141                 rq->flow_tag_width = 0;
142                 rq->tag_mask |= ev->flow_id;
143         }
144
145         rc = roc_nix_rq_modify(&cnxk_eth_dev->nix, rq, 0);
146         if (rc)
147                 return rc;
148
149         if (rq_id == 0 && roc_nix_inl_inb_is_enabled(nix)) {
150                 uint32_t sec_tag_const;
151
152                 /* IPSec tag const is 8-bit left shifted value of tag_mask
153                  * as it applies to bit 32:8 of tag only.
154                  */
155                 sec_tag_const = rq->tag_mask >> 8;
156                 rc = roc_nix_inl_inb_tag_update(nix, sec_tag_const,
157                                                 ev->sched_type);
158                 if (rc)
159                         plt_err("Failed to set tag conf for ipsec, rc=%d", rc);
160         }
161
162         return rc;
163 }
164
165 static int
166 cnxk_sso_rxq_disable(struct cnxk_eth_dev *cnxk_eth_dev, uint16_t rq_id)
167 {
168         struct roc_nix_rq *rq;
169
170         rq = &cnxk_eth_dev->rqs[rq_id];
171         rq->sso_ena = 0;
172         rq->flow_tag_width = 32;
173         rq->tag_mask = 0;
174
175         return roc_nix_rq_modify(&cnxk_eth_dev->nix, rq, 0);
176 }
177
178 static int
179 cnxk_sso_rx_adapter_vwqe_enable(struct cnxk_eth_dev *cnxk_eth_dev,
180                                 uint16_t port_id, uint16_t rq_id, uint16_t sz,
181                                 uint64_t tmo_ns, struct rte_mempool *vmp)
182 {
183         struct roc_nix_rq *rq;
184
185         rq = &cnxk_eth_dev->rqs[rq_id];
186
187         if (!rq->sso_ena)
188                 return -EINVAL;
189         if (rq->flow_tag_width == 0)
190                 return -EINVAL;
191
192         rq->vwqe_ena = 1;
193         rq->vwqe_first_skip = 0;
194         rq->vwqe_aura_handle = roc_npa_aura_handle_to_aura(vmp->pool_id);
195         rq->vwqe_max_sz_exp = rte_log2_u32(sz);
196         rq->vwqe_wait_tmo =
197                 tmo_ns /
198                 ((roc_nix_get_vwqe_interval(&cnxk_eth_dev->nix) + 1) * 100);
199         rq->tag_mask = (port_id & 0xF) << 20;
200         rq->tag_mask |=
201                 (((port_id >> 4) & 0xF) | (RTE_EVENT_TYPE_ETHDEV_VECTOR << 4))
202                 << 24;
203
204         return roc_nix_rq_modify(&cnxk_eth_dev->nix, rq, 0);
205 }
206
207 int
208 cnxk_sso_rx_adapter_queue_add(
209         const struct rte_eventdev *event_dev, const struct rte_eth_dev *eth_dev,
210         int32_t rx_queue_id,
211         const struct rte_event_eth_rx_adapter_queue_conf *queue_conf)
212 {
213         struct cnxk_eth_dev *cnxk_eth_dev = eth_dev->data->dev_private;
214         struct cnxk_sso_evdev *dev = cnxk_sso_pmd_priv(event_dev);
215         uint16_t port = eth_dev->data->port_id;
216         struct cnxk_eth_rxq_sp *rxq_sp;
217         int i, rc = 0;
218
219         if (rx_queue_id < 0) {
220                 for (i = 0; i < eth_dev->data->nb_rx_queues; i++)
221                         rc |= cnxk_sso_rx_adapter_queue_add(event_dev, eth_dev,
222                                                             i, queue_conf);
223         } else {
224                 rxq_sp = cnxk_eth_rxq_to_sp(
225                         eth_dev->data->rx_queues[rx_queue_id]);
226                 cnxk_sso_updt_xae_cnt(dev, rxq_sp, RTE_EVENT_TYPE_ETHDEV);
227                 rc = cnxk_sso_xae_reconfigure(
228                         (struct rte_eventdev *)(uintptr_t)event_dev);
229                 rc |= cnxk_sso_rxq_enable(
230                         cnxk_eth_dev, (uint16_t)rx_queue_id, port,
231                         &queue_conf->ev,
232                         !!(queue_conf->rx_queue_flags &
233                            RTE_EVENT_ETH_RX_ADAPTER_CAP_OVERRIDE_FLOW_ID));
234                 if (queue_conf->rx_queue_flags &
235                     RTE_EVENT_ETH_RX_ADAPTER_QUEUE_EVENT_VECTOR) {
236                         cnxk_sso_updt_xae_cnt(dev, queue_conf->vector_mp,
237                                               RTE_EVENT_TYPE_ETHDEV_VECTOR);
238                         rc |= cnxk_sso_xae_reconfigure(
239                                 (struct rte_eventdev *)(uintptr_t)event_dev);
240                         rc |= cnxk_sso_rx_adapter_vwqe_enable(
241                                 cnxk_eth_dev, port, rx_queue_id,
242                                 queue_conf->vector_sz,
243                                 queue_conf->vector_timeout_ns,
244                                 queue_conf->vector_mp);
245                 }
246                 rox_nix_fc_npa_bp_cfg(&cnxk_eth_dev->nix,
247                                       rxq_sp->qconf.mp->pool_id, true,
248                                       dev->force_ena_bp);
249                 cnxk_eth_dev->nb_rxq_sso++;
250         }
251
252         if (rc < 0) {
253                 plt_err("Failed to configure Rx adapter port=%d, q=%d", port,
254                         queue_conf->ev.queue_id);
255                 return rc;
256         }
257
258         dev->rx_offloads |= cnxk_eth_dev->rx_offload_flags;
259
260         /* Switch to use PF/VF's NIX LF instead of inline device for inbound
261          * when all the RQ's are switched to event dev mode. We do this only
262          * when using inline device is not forced by dev args.
263          */
264         if (!cnxk_eth_dev->inb.force_inl_dev &&
265             cnxk_eth_dev->nb_rxq_sso == cnxk_eth_dev->nb_rxq)
266                 cnxk_nix_inb_mode_set(cnxk_eth_dev, false);
267
268         return 0;
269 }
270
271 int
272 cnxk_sso_rx_adapter_queue_del(const struct rte_eventdev *event_dev,
273                               const struct rte_eth_dev *eth_dev,
274                               int32_t rx_queue_id)
275 {
276         struct cnxk_eth_dev *cnxk_eth_dev = eth_dev->data->dev_private;
277         struct cnxk_sso_evdev *dev = cnxk_sso_pmd_priv(event_dev);
278         struct cnxk_eth_rxq_sp *rxq_sp;
279         int i, rc = 0;
280
281         RTE_SET_USED(event_dev);
282         if (rx_queue_id < 0) {
283                 for (i = 0; i < eth_dev->data->nb_rx_queues; i++)
284                         cnxk_sso_rx_adapter_queue_del(event_dev, eth_dev, i);
285         } else {
286                 rxq_sp = cnxk_eth_rxq_to_sp(
287                         eth_dev->data->rx_queues[rx_queue_id]);
288                 rc = cnxk_sso_rxq_disable(cnxk_eth_dev, (uint16_t)rx_queue_id);
289                 rox_nix_fc_npa_bp_cfg(&cnxk_eth_dev->nix,
290                                       rxq_sp->qconf.mp->pool_id, false,
291                                       dev->force_ena_bp);
292                 cnxk_eth_dev->nb_rxq_sso--;
293         }
294
295         if (rc < 0)
296                 plt_err("Failed to clear Rx adapter config port=%d, q=%d",
297                         eth_dev->data->port_id, rx_queue_id);
298
299         /* Removing RQ from Rx adapter implies need to use
300          * inline device for CQ/Poll mode.
301          */
302         cnxk_nix_inb_mode_set(cnxk_eth_dev, true);
303
304         return rc;
305 }
306
307 int
308 cnxk_sso_rx_adapter_start(const struct rte_eventdev *event_dev,
309                           const struct rte_eth_dev *eth_dev)
310 {
311         RTE_SET_USED(event_dev);
312         RTE_SET_USED(eth_dev);
313
314         return 0;
315 }
316
317 int
318 cnxk_sso_rx_adapter_stop(const struct rte_eventdev *event_dev,
319                          const struct rte_eth_dev *eth_dev)
320 {
321         RTE_SET_USED(event_dev);
322         RTE_SET_USED(eth_dev);
323
324         return 0;
325 }
326
327 static int
328 cnxk_sso_sqb_aura_limit_edit(struct roc_nix_sq *sq, uint16_t nb_sqb_bufs)
329 {
330         return roc_npa_aura_limit_modify(
331                 sq->aura_handle, RTE_MIN(nb_sqb_bufs, sq->aura_sqb_bufs));
332 }
333
334 static int
335 cnxk_sso_updt_tx_queue_data(const struct rte_eventdev *event_dev,
336                             uint16_t eth_port_id, uint16_t tx_queue_id,
337                             void *txq)
338 {
339         struct cnxk_sso_evdev *dev = cnxk_sso_pmd_priv(event_dev);
340         uint16_t max_port_id = dev->max_port_id;
341         uint64_t *txq_data = dev->tx_adptr_data;
342
343         if (txq_data == NULL || eth_port_id > max_port_id) {
344                 max_port_id = RTE_MAX(max_port_id, eth_port_id);
345                 txq_data = rte_realloc_socket(
346                         txq_data,
347                         (sizeof(uint64_t) * (max_port_id + 1) *
348                          RTE_MAX_QUEUES_PER_PORT),
349                         RTE_CACHE_LINE_SIZE, event_dev->data->socket_id);
350                 if (txq_data == NULL)
351                         return -ENOMEM;
352         }
353
354         ((uint64_t(*)[RTE_MAX_QUEUES_PER_PORT])
355                  txq_data)[eth_port_id][tx_queue_id] = (uint64_t)txq;
356         dev->max_port_id = max_port_id;
357         dev->tx_adptr_data = txq_data;
358         return 0;
359 }
360
361 int
362 cnxk_sso_tx_adapter_queue_add(const struct rte_eventdev *event_dev,
363                               const struct rte_eth_dev *eth_dev,
364                               int32_t tx_queue_id)
365 {
366         struct cnxk_eth_dev *cnxk_eth_dev = eth_dev->data->dev_private;
367         struct cnxk_sso_evdev *dev = cnxk_sso_pmd_priv(event_dev);
368         struct roc_nix_sq *sq;
369         int i, ret;
370         void *txq;
371
372         if (tx_queue_id < 0) {
373                 for (i = 0; i < eth_dev->data->nb_tx_queues; i++)
374                         cnxk_sso_tx_adapter_queue_add(event_dev, eth_dev, i);
375         } else {
376                 txq = eth_dev->data->tx_queues[tx_queue_id];
377                 sq = &cnxk_eth_dev->sqs[tx_queue_id];
378                 cnxk_sso_sqb_aura_limit_edit(sq, CNXK_SSO_SQB_LIMIT);
379                 ret = cnxk_sso_updt_tx_queue_data(
380                         event_dev, eth_dev->data->port_id, tx_queue_id, txq);
381                 if (ret < 0)
382                         return ret;
383
384                 dev->tx_offloads |= cnxk_eth_dev->tx_offload_flags;
385         }
386
387         return 0;
388 }
389
390 int
391 cnxk_sso_tx_adapter_queue_del(const struct rte_eventdev *event_dev,
392                               const struct rte_eth_dev *eth_dev,
393                               int32_t tx_queue_id)
394 {
395         struct cnxk_eth_dev *cnxk_eth_dev = eth_dev->data->dev_private;
396         struct roc_nix_sq *sq;
397         int i, ret;
398
399         RTE_SET_USED(event_dev);
400         if (tx_queue_id < 0) {
401                 for (i = 0; i < eth_dev->data->nb_tx_queues; i++)
402                         cnxk_sso_tx_adapter_queue_del(event_dev, eth_dev, i);
403         } else {
404                 sq = &cnxk_eth_dev->sqs[tx_queue_id];
405                 cnxk_sso_sqb_aura_limit_edit(sq, sq->nb_sqb_bufs);
406                 ret = cnxk_sso_updt_tx_queue_data(
407                         event_dev, eth_dev->data->port_id, tx_queue_id, NULL);
408                 if (ret < 0)
409                         return ret;
410         }
411
412         return 0;
413 }