1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(C) 2019 Marvell International Ltd.
5 #include "otx2_worker_dual.h"
6 #include "otx2_worker.h"
8 static __rte_noinline uint8_t
9 otx2_ssogws_dual_new_event(struct otx2_ssogws_dual *ws,
10 const struct rte_event *ev)
12 const uint32_t tag = (uint32_t)ev->event;
13 const uint8_t new_tt = ev->sched_type;
14 const uint64_t event_ptr = ev->u64;
15 const uint16_t grp = ev->queue_id;
17 if (ws->xaq_lmt <= *ws->fc_mem)
20 otx2_ssogws_dual_add_work(ws, event_ptr, tag, new_tt, grp);
25 static __rte_always_inline void
26 otx2_ssogws_dual_fwd_swtag(struct otx2_ssogws_state *ws,
27 const struct rte_event *ev)
29 const uint32_t tag = (uint32_t)ev->event;
30 const uint8_t new_tt = ev->sched_type;
31 const uint8_t cur_tt = ws->cur_tt;
34 * cur_tt/new_tt SSO_SYNC_ORDERED SSO_SYNC_ATOMIC SSO_SYNC_UNTAGGED
36 * SSO_SYNC_ORDERED norm norm untag
37 * SSO_SYNC_ATOMIC norm norm untag
38 * SSO_SYNC_UNTAGGED norm norm NOOP
40 if (new_tt == SSO_SYNC_UNTAGGED) {
41 if (cur_tt != SSO_SYNC_UNTAGGED)
42 otx2_ssogws_swtag_untag((struct otx2_ssogws *)ws);
44 otx2_ssogws_swtag_norm((struct otx2_ssogws *)ws, tag, new_tt);
48 static __rte_always_inline void
49 otx2_ssogws_dual_fwd_group(struct otx2_ssogws_state *ws,
50 const struct rte_event *ev, const uint16_t grp)
52 const uint32_t tag = (uint32_t)ev->event;
53 const uint8_t new_tt = ev->sched_type;
55 otx2_write64(ev->u64, OTX2_SSOW_GET_BASE_ADDR(ws->getwrk_op) +
56 SSOW_LF_GWS_OP_UPD_WQP_GRP1);
58 otx2_ssogws_swtag_desched((struct otx2_ssogws *)ws, tag, new_tt, grp);
61 static __rte_always_inline void
62 otx2_ssogws_dual_forward_event(struct otx2_ssogws_dual *ws,
63 struct otx2_ssogws_state *vws,
64 const struct rte_event *ev)
66 const uint8_t grp = ev->queue_id;
68 /* Group hasn't changed, Use SWTAG to forward the event */
69 if (vws->cur_grp == grp) {
70 otx2_ssogws_dual_fwd_swtag(vws, ev);
74 * Group has been changed for group based work pipelining,
75 * Use deschedule/add_work operation to transfer the event to
78 otx2_ssogws_dual_fwd_group(vws, ev, grp);
83 otx2_ssogws_dual_enq(void *port, const struct rte_event *ev)
85 struct otx2_ssogws_dual *ws = port;
86 struct otx2_ssogws_state *vws = &ws->ws_state[!ws->vws];
89 case RTE_EVENT_OP_NEW:
91 return otx2_ssogws_dual_new_event(ws, ev);
92 case RTE_EVENT_OP_FORWARD:
93 otx2_ssogws_dual_forward_event(ws, vws, ev);
95 case RTE_EVENT_OP_RELEASE:
96 otx2_ssogws_swtag_flush((struct otx2_ssogws *)vws);
106 otx2_ssogws_dual_enq_burst(void *port, const struct rte_event ev[],
109 RTE_SET_USED(nb_events);
110 return otx2_ssogws_dual_enq(port, ev);
114 otx2_ssogws_dual_enq_new_burst(void *port, const struct rte_event ev[],
117 struct otx2_ssogws_dual *ws = port;
121 if (ws->xaq_lmt <= *ws->fc_mem)
124 for (i = 0; i < nb_events && rc; i++)
125 rc = otx2_ssogws_dual_new_event(ws, &ev[i]);
131 otx2_ssogws_dual_enq_fwd_burst(void *port, const struct rte_event ev[],
134 struct otx2_ssogws_dual *ws = port;
135 struct otx2_ssogws_state *vws = &ws->ws_state[!ws->vws];
137 RTE_SET_USED(nb_events);
138 otx2_ssogws_dual_forward_event(ws, vws, ev);
143 #define R(name, f5, f4, f3, f2, f1, f0, flags) \
145 otx2_ssogws_dual_deq_ ##name(void *port, struct rte_event *ev, \
146 uint64_t timeout_ticks) \
148 struct otx2_ssogws_dual *ws = port; \
151 rte_prefetch_non_temporal(ws); \
152 RTE_SET_USED(timeout_ticks); \
153 if (ws->swtag_req) { \
154 otx2_ssogws_swtag_wait((struct otx2_ssogws *) \
155 &ws->ws_state[!ws->vws]); \
160 gw = otx2_ssogws_dual_get_work(&ws->ws_state[ws->vws], \
161 &ws->ws_state[!ws->vws], ev, \
162 flags, ws->lookup_mem, \
164 ws->vws = !ws->vws; \
170 otx2_ssogws_dual_deq_burst_ ##name(void *port, struct rte_event ev[], \
171 uint16_t nb_events, \
172 uint64_t timeout_ticks) \
174 RTE_SET_USED(nb_events); \
176 return otx2_ssogws_dual_deq_ ##name(port, ev, timeout_ticks); \
180 otx2_ssogws_dual_deq_timeout_ ##name(void *port, struct rte_event *ev, \
181 uint64_t timeout_ticks) \
183 struct otx2_ssogws_dual *ws = port; \
187 if (ws->swtag_req) { \
188 otx2_ssogws_swtag_wait((struct otx2_ssogws *) \
189 &ws->ws_state[!ws->vws]); \
194 gw = otx2_ssogws_dual_get_work(&ws->ws_state[ws->vws], \
195 &ws->ws_state[!ws->vws], ev, \
196 flags, ws->lookup_mem, \
198 ws->vws = !ws->vws; \
199 for (iter = 1; iter < timeout_ticks && (gw == 0); iter++) { \
200 gw = otx2_ssogws_dual_get_work(&ws->ws_state[ws->vws], \
201 &ws->ws_state[!ws->vws], \
205 ws->vws = !ws->vws; \
212 otx2_ssogws_dual_deq_timeout_burst_ ##name(void *port, \
213 struct rte_event ev[], \
214 uint16_t nb_events, \
215 uint64_t timeout_ticks) \
217 RTE_SET_USED(nb_events); \
219 return otx2_ssogws_dual_deq_timeout_ ##name(port, ev, \
224 otx2_ssogws_dual_deq_seg_ ##name(void *port, struct rte_event *ev, \
225 uint64_t timeout_ticks) \
227 struct otx2_ssogws_dual *ws = port; \
230 RTE_SET_USED(timeout_ticks); \
231 if (ws->swtag_req) { \
232 otx2_ssogws_swtag_wait((struct otx2_ssogws *) \
233 &ws->ws_state[!ws->vws]); \
238 gw = otx2_ssogws_dual_get_work(&ws->ws_state[ws->vws], \
239 &ws->ws_state[!ws->vws], ev, \
240 flags | NIX_RX_MULTI_SEG_F, \
243 ws->vws = !ws->vws; \
249 otx2_ssogws_dual_deq_seg_burst_ ##name(void *port, \
250 struct rte_event ev[], \
251 uint16_t nb_events, \
252 uint64_t timeout_ticks) \
254 RTE_SET_USED(nb_events); \
256 return otx2_ssogws_dual_deq_seg_ ##name(port, ev, \
261 otx2_ssogws_dual_deq_seg_timeout_ ##name(void *port, \
262 struct rte_event *ev, \
263 uint64_t timeout_ticks) \
265 struct otx2_ssogws_dual *ws = port; \
269 if (ws->swtag_req) { \
270 otx2_ssogws_swtag_wait((struct otx2_ssogws *) \
271 &ws->ws_state[!ws->vws]); \
276 gw = otx2_ssogws_dual_get_work(&ws->ws_state[ws->vws], \
277 &ws->ws_state[!ws->vws], ev, \
278 flags | NIX_RX_MULTI_SEG_F, \
281 ws->vws = !ws->vws; \
282 for (iter = 1; iter < timeout_ticks && (gw == 0); iter++) { \
283 gw = otx2_ssogws_dual_get_work(&ws->ws_state[ws->vws], \
284 &ws->ws_state[!ws->vws], \
286 NIX_RX_MULTI_SEG_F, \
289 ws->vws = !ws->vws; \
296 otx2_ssogws_dual_deq_seg_timeout_burst_ ##name(void *port, \
297 struct rte_event ev[], \
298 uint16_t nb_events, \
299 uint64_t timeout_ticks) \
301 RTE_SET_USED(nb_events); \
303 return otx2_ssogws_dual_deq_seg_timeout_ ##name(port, ev, \
307 SSO_RX_ADPTR_ENQ_FASTPATH_FUNC
310 #define T(name, f5, f4, f3, f2, f1, f0, sz, flags) \
312 otx2_ssogws_dual_tx_adptr_enq_ ## name(void *port, \
313 struct rte_event ev[], \
314 uint16_t nb_events) \
316 struct otx2_ssogws_dual *ws = port; \
317 struct otx2_ssogws *vws = \
318 (struct otx2_ssogws *)&ws->ws_state[!ws->vws]; \
321 RTE_SET_USED(nb_events); \
322 return otx2_ssogws_event_tx(vws, ev, cmd, flags); \
324 SSO_TX_ADPTR_ENQ_FASTPATH_FUNC
327 #define T(name, f5, f4, f3, f2, f1, f0, sz, flags) \
329 otx2_ssogws_dual_tx_adptr_enq_seg_ ## name(void *port, \
330 struct rte_event ev[], \
331 uint16_t nb_events) \
333 struct otx2_ssogws_dual *ws = port; \
334 struct otx2_ssogws *vws = \
335 (struct otx2_ssogws *)&ws->ws_state[!ws->vws]; \
336 uint64_t cmd[(sz) + NIX_TX_MSEG_SG_DWORDS - 2]; \
338 RTE_SET_USED(nb_events); \
339 return otx2_ssogws_event_tx(vws, ev, cmd, (flags) | \
340 NIX_TX_MULTI_SEG_F); \
342 SSO_TX_ADPTR_ENQ_FASTPATH_FUNC