4 * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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
17 * * Neither the name of Intel Corporation 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.
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.
37 #include <rte_common.h>
39 #include <rte_memory.h>
40 #include <rte_malloc.h>
41 #include <rte_cycles.h>
42 #include <rte_prefetch.h>
43 #include <rte_branch_prediction.h>
46 #include "rte_sched.h"
47 #include "rte_bitmap.h"
48 #include "rte_sched_common.h"
49 #include "rte_approx.h"
51 #ifdef __INTEL_COMPILER
52 #pragma warning(disable:2259) /* conversion may lose significant bits */
55 #ifndef RTE_SCHED_DEBUG
56 #define RTE_SCHED_DEBUG 0
59 #ifndef RTE_SCHED_OPTIMIZATIONS
60 #define RTE_SCHED_OPTIMIZATIONS 0
63 #if RTE_SCHED_OPTIMIZATIONS
64 #include <immintrin.h>
67 #define RTE_SCHED_ENQUEUE 1
69 #define RTE_SCHED_TS 1
71 #if RTE_SCHED_TS == 0 /* Infinite credits. Traffic shaping disabled. */
72 #define RTE_SCHED_TS_CREDITS_UPDATE 0
73 #define RTE_SCHED_TS_CREDITS_CHECK 0
74 #else /* Real Credits. Full traffic shaping implemented. */
75 #define RTE_SCHED_TS_CREDITS_UPDATE 1
76 #define RTE_SCHED_TS_CREDITS_CHECK 1
79 #ifndef RTE_SCHED_TB_RATE_CONFIG_ERR
80 #define RTE_SCHED_TB_RATE_CONFIG_ERR (1e-7)
83 #define RTE_SCHED_WRR 1
85 #ifndef RTE_SCHED_WRR_SHIFT
86 #define RTE_SCHED_WRR_SHIFT 3
89 #ifndef RTE_SCHED_PORT_N_GRINDERS
90 #define RTE_SCHED_PORT_N_GRINDERS 8
92 #if (RTE_SCHED_PORT_N_GRINDERS == 0) || (RTE_SCHED_PORT_N_GRINDERS & (RTE_SCHED_PORT_N_GRINDERS - 1))
93 #error Number of grinders must be non-zero and a power of 2
95 #if (RTE_SCHED_OPTIMIZATIONS && (RTE_SCHED_PORT_N_GRINDERS != 8))
96 #error Number of grinders must be 8 when RTE_SCHED_OPTIMIZATIONS is set
99 #define RTE_SCHED_GRINDER_PCACHE_SIZE (64 / RTE_SCHED_QUEUES_PER_PIPE)
101 #define RTE_SCHED_PIPE_INVALID UINT32_MAX
103 #define RTE_SCHED_BMP_POS_INVALID UINT32_MAX
105 struct rte_sched_subport {
106 /* Token bucket (TB) */
107 uint64_t tb_time; /* time of last update */
109 uint32_t tb_credits_per_period;
113 /* Traffic classes (TCs) */
114 uint64_t tc_time; /* time of next update */
115 uint32_t tc_credits_per_period[RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE];
116 uint32_t tc_credits[RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE];
119 /* TC oversubscription */
121 uint32_t tc_ov_wm_min;
122 uint32_t tc_ov_wm_max;
123 uint8_t tc_ov_period_id;
129 struct rte_sched_subport_stats stats;
132 struct rte_sched_pipe_profile {
133 /* Token bucket (TB) */
135 uint32_t tb_credits_per_period;
138 /* Pipe traffic classes */
140 uint32_t tc_credits_per_period[RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE];
141 uint8_t tc_ov_weight;
144 uint8_t wrr_cost[RTE_SCHED_QUEUES_PER_PIPE];
147 struct rte_sched_pipe {
148 /* Token bucket (TB) */
149 uint64_t tb_time; /* time of last update */
152 /* Pipe profile and flags */
155 /* Traffic classes (TCs) */
156 uint64_t tc_time; /* time of next update */
157 uint32_t tc_credits[RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE];
159 /* Weighted Round Robin (WRR) */
160 uint8_t wrr_tokens[RTE_SCHED_QUEUES_PER_PIPE];
162 /* TC oversubscription */
163 uint32_t tc_ov_credits;
164 uint8_t tc_ov_period_id;
166 } __rte_cache_aligned;
168 struct rte_sched_queue {
173 struct rte_sched_queue_extra {
174 struct rte_sched_queue_stats stats;
181 e_GRINDER_PREFETCH_PIPE = 0,
182 e_GRINDER_PREFETCH_TC_QUEUE_ARRAYS,
183 e_GRINDER_PREFETCH_MBUF,
187 struct rte_sched_grinder {
189 uint16_t pcache_qmask[RTE_SCHED_GRINDER_PCACHE_SIZE];
190 uint32_t pcache_qindex[RTE_SCHED_GRINDER_PCACHE_SIZE];
195 enum grinder_state state;
198 struct rte_sched_subport *subport;
199 struct rte_sched_pipe *pipe;
200 struct rte_sched_pipe_profile *pipe_params;
203 uint8_t tccache_qmask[4];
204 uint32_t tccache_qindex[4];
210 struct rte_sched_queue *queue[RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE];
211 struct rte_mbuf **qbase[RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE];
212 uint32_t qindex[RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE];
216 struct rte_mbuf *pkt;
219 uint16_t wrr_tokens[RTE_SCHED_QUEUES_PER_TRAFFIC_CLASS];
220 uint16_t wrr_mask[RTE_SCHED_QUEUES_PER_TRAFFIC_CLASS];
221 uint8_t wrr_cost[RTE_SCHED_QUEUES_PER_TRAFFIC_CLASS];
224 struct rte_sched_port {
225 /* User parameters */
226 uint32_t n_subports_per_port;
227 uint32_t n_pipes_per_subport;
230 uint32_t frame_overhead;
231 uint16_t qsize[RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE];
232 uint32_t n_pipe_profiles;
233 uint32_t pipe_tc3_rate_max;
235 struct rte_red_config red_config[RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE][e_RTE_METER_COLORS];
239 uint64_t time_cpu_cycles; /* Current CPU time measured in CPU cyles */
240 uint64_t time_cpu_bytes; /* Current CPU time measured in bytes */
241 uint64_t time; /* Current NIC TX time measured in bytes */
242 double cycles_per_byte; /* CPU cycles per byte */
244 /* Scheduling loop detection */
246 uint32_t pipe_exhaustion;
249 struct rte_bitmap *bmp;
250 uint32_t grinder_base_bmp_pos[RTE_SCHED_PORT_N_GRINDERS] __rte_aligned_16;
253 struct rte_sched_grinder grinder[RTE_SCHED_PORT_N_GRINDERS];
254 uint32_t busy_grinders;
255 struct rte_mbuf **pkts_out;
258 /* Queue base calculation */
259 uint32_t qsize_add[RTE_SCHED_QUEUES_PER_PIPE];
262 /* Large data structures */
263 struct rte_sched_subport *subport;
264 struct rte_sched_pipe *pipe;
265 struct rte_sched_queue *queue;
266 struct rte_sched_queue_extra *queue_extra;
267 struct rte_sched_pipe_profile *pipe_profiles;
269 struct rte_mbuf **queue_array;
270 uint8_t memory[0] __rte_cache_aligned;
271 } __rte_cache_aligned;
273 enum rte_sched_port_array {
274 e_RTE_SCHED_PORT_ARRAY_SUBPORT = 0,
275 e_RTE_SCHED_PORT_ARRAY_PIPE,
276 e_RTE_SCHED_PORT_ARRAY_QUEUE,
277 e_RTE_SCHED_PORT_ARRAY_QUEUE_EXTRA,
278 e_RTE_SCHED_PORT_ARRAY_PIPE_PROFILES,
279 e_RTE_SCHED_PORT_ARRAY_BMP_ARRAY,
280 e_RTE_SCHED_PORT_ARRAY_QUEUE_ARRAY,
281 e_RTE_SCHED_PORT_ARRAY_TOTAL,
284 #ifdef RTE_SCHED_COLLECT_STATS
286 static inline uint32_t
287 rte_sched_port_queues_per_subport(struct rte_sched_port *port)
289 return RTE_SCHED_QUEUES_PER_PIPE * port->n_pipes_per_subport;
294 static inline uint32_t
295 rte_sched_port_queues_per_port(struct rte_sched_port *port)
297 return RTE_SCHED_QUEUES_PER_PIPE * port->n_pipes_per_subport * port->n_subports_per_port;
301 rte_sched_port_check_params(struct rte_sched_port_params *params)
305 if (params == NULL) {
310 if ((params->socket < 0) || (params->socket >= RTE_MAX_NUMA_NODES)) {
315 if (params->rate == 0) {
320 if (params->mtu == 0) {
324 /* n_subports_per_port: non-zero, power of 2 */
325 if ((params->n_subports_per_port == 0) || (!rte_is_power_of_2(params->n_subports_per_port))) {
329 /* n_pipes_per_subport: non-zero, power of 2 */
330 if ((params->n_pipes_per_subport == 0) || (!rte_is_power_of_2(params->n_pipes_per_subport))) {
334 /* qsize: non-zero, power of 2, no bigger than 32K (due to 16-bit read/write pointers) */
335 for (i = 0; i < RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE; i ++) {
336 uint16_t qsize = params->qsize[i];
338 if ((qsize == 0) || (!rte_is_power_of_2(qsize))) {
343 /* pipe_profiles and n_pipe_profiles */
344 if ((params->pipe_profiles == NULL) ||
345 (params->n_pipe_profiles == 0) ||
346 (params->n_pipe_profiles > RTE_SCHED_PIPE_PROFILES_PER_PORT)) {
350 for (i = 0; i < params->n_pipe_profiles; i ++) {
351 struct rte_sched_pipe_params *p = params->pipe_profiles + i;
353 /* TB rate: non-zero, not greater than port rate */
354 if ((p->tb_rate == 0) || (p->tb_rate > params->rate)) {
358 /* TB size: non-zero */
359 if (p->tb_size == 0) {
363 /* TC rate: non-zero, less than pipe rate */
364 for (j = 0; j < RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE; j ++) {
365 if ((p->tc_rate[j] == 0) || (p->tc_rate[j] > p->tb_rate)) {
370 /* TC period: non-zero */
371 if (p->tc_period == 0) {
375 #ifdef RTE_SCHED_SUBPORT_TC_OV
376 /* TC3 oversubscription weight: non-zero */
377 if (p->tc_ov_weight == 0) {
382 /* Queue WRR weights: non-zero */
383 for (j = 0; j < RTE_SCHED_QUEUES_PER_PIPE; j ++) {
384 if (p->wrr_weights[j] == 0) {
394 rte_sched_port_get_array_base(struct rte_sched_port_params *params, enum rte_sched_port_array array)
396 uint32_t n_subports_per_port = params->n_subports_per_port;
397 uint32_t n_pipes_per_subport = params->n_pipes_per_subport;
398 uint32_t n_pipes_per_port = n_pipes_per_subport * n_subports_per_port;
399 uint32_t n_queues_per_port = RTE_SCHED_QUEUES_PER_PIPE * n_pipes_per_subport * n_subports_per_port;
401 uint32_t size_subport = n_subports_per_port * sizeof(struct rte_sched_subport);
402 uint32_t size_pipe = n_pipes_per_port * sizeof(struct rte_sched_pipe);
403 uint32_t size_queue = n_queues_per_port * sizeof(struct rte_sched_queue);
404 uint32_t size_queue_extra = n_queues_per_port * sizeof(struct rte_sched_queue_extra);
405 uint32_t size_pipe_profiles = RTE_SCHED_PIPE_PROFILES_PER_PORT * sizeof(struct rte_sched_pipe_profile);
406 uint32_t size_bmp_array = rte_bitmap_get_memory_footprint(n_queues_per_port);
407 uint32_t size_per_pipe_queue_array, size_queue_array;
411 size_per_pipe_queue_array = 0;
412 for (i = 0; i < RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE; i ++) {
413 size_per_pipe_queue_array += RTE_SCHED_QUEUES_PER_TRAFFIC_CLASS * params->qsize[i] * sizeof(struct rte_mbuf *);
415 size_queue_array = n_pipes_per_port * size_per_pipe_queue_array;
419 if (array == e_RTE_SCHED_PORT_ARRAY_SUBPORT) return base;
420 base += RTE_CACHE_LINE_ROUNDUP(size_subport);
422 if (array == e_RTE_SCHED_PORT_ARRAY_PIPE) return base;
423 base += RTE_CACHE_LINE_ROUNDUP(size_pipe);
425 if (array == e_RTE_SCHED_PORT_ARRAY_QUEUE) return base;
426 base += RTE_CACHE_LINE_ROUNDUP(size_queue);
428 if (array == e_RTE_SCHED_PORT_ARRAY_QUEUE_EXTRA) return base;
429 base += RTE_CACHE_LINE_ROUNDUP(size_queue_extra);
431 if (array == e_RTE_SCHED_PORT_ARRAY_PIPE_PROFILES) return base;
432 base += RTE_CACHE_LINE_ROUNDUP(size_pipe_profiles);
434 if (array == e_RTE_SCHED_PORT_ARRAY_BMP_ARRAY) return base;
435 base += RTE_CACHE_LINE_ROUNDUP(size_bmp_array);
437 if (array == e_RTE_SCHED_PORT_ARRAY_QUEUE_ARRAY) return base;
438 base += RTE_CACHE_LINE_ROUNDUP(size_queue_array);
444 rte_sched_port_get_memory_footprint(struct rte_sched_port_params *params)
446 uint32_t size0, size1;
449 status = rte_sched_port_check_params(params);
451 RTE_LOG(INFO, SCHED, "Port scheduler params check failed (%d)\n", status);
456 size0 = sizeof(struct rte_sched_port);
457 size1 = rte_sched_port_get_array_base(params, e_RTE_SCHED_PORT_ARRAY_TOTAL);
459 return (size0 + size1);
463 rte_sched_port_config_qsize(struct rte_sched_port *port)
466 port->qsize_add[0] = 0;
467 port->qsize_add[1] = port->qsize_add[0] + port->qsize[0];
468 port->qsize_add[2] = port->qsize_add[1] + port->qsize[0];
469 port->qsize_add[3] = port->qsize_add[2] + port->qsize[0];
472 port->qsize_add[4] = port->qsize_add[3] + port->qsize[0];
473 port->qsize_add[5] = port->qsize_add[4] + port->qsize[1];
474 port->qsize_add[6] = port->qsize_add[5] + port->qsize[1];
475 port->qsize_add[7] = port->qsize_add[6] + port->qsize[1];
478 port->qsize_add[8] = port->qsize_add[7] + port->qsize[1];
479 port->qsize_add[9] = port->qsize_add[8] + port->qsize[2];
480 port->qsize_add[10] = port->qsize_add[9] + port->qsize[2];
481 port->qsize_add[11] = port->qsize_add[10] + port->qsize[2];
484 port->qsize_add[12] = port->qsize_add[11] + port->qsize[2];
485 port->qsize_add[13] = port->qsize_add[12] + port->qsize[3];
486 port->qsize_add[14] = port->qsize_add[13] + port->qsize[3];
487 port->qsize_add[15] = port->qsize_add[14] + port->qsize[3];
489 port->qsize_sum = port->qsize_add[15] + port->qsize[3];
493 rte_sched_port_log_pipe_profile(struct rte_sched_port *port, uint32_t i)
495 struct rte_sched_pipe_profile *p = port->pipe_profiles + i;
497 RTE_LOG(INFO, SCHED, "Low level config for pipe profile %u:\n"
498 "\tToken bucket: period = %u, credits per period = %u, size = %u\n"
499 "\tTraffic classes: period = %u, credits per period = [%u, %u, %u, %u]\n"
500 "\tTraffic class 3 oversubscription: weight = %hhu\n"
501 "\tWRR cost: [%hhu, %hhu, %hhu, %hhu], [%hhu, %hhu, %hhu, %hhu], [%hhu, %hhu, %hhu, %hhu], [%hhu, %hhu, %hhu, %hhu]\n",
506 p->tb_credits_per_period,
509 /* Traffic classes */
511 p->tc_credits_per_period[0],
512 p->tc_credits_per_period[1],
513 p->tc_credits_per_period[2],
514 p->tc_credits_per_period[3],
516 /* Traffic class 3 oversubscription */
520 p->wrr_cost[ 0], p->wrr_cost[ 1], p->wrr_cost[ 2], p->wrr_cost[ 3],
521 p->wrr_cost[ 4], p->wrr_cost[ 5], p->wrr_cost[ 6], p->wrr_cost[ 7],
522 p->wrr_cost[ 8], p->wrr_cost[ 9], p->wrr_cost[10], p->wrr_cost[11],
523 p->wrr_cost[12], p->wrr_cost[13], p->wrr_cost[14], p->wrr_cost[15]);
526 static inline uint64_t
527 rte_sched_time_ms_to_bytes(uint32_t time_ms, uint32_t rate)
529 uint64_t time = time_ms;
530 time = (time * rate) / 1000;
536 rte_sched_port_config_pipe_profile_table(struct rte_sched_port *port, struct rte_sched_port_params *params)
540 for (i = 0; i < port->n_pipe_profiles; i ++) {
541 struct rte_sched_pipe_params *src = params->pipe_profiles + i;
542 struct rte_sched_pipe_profile *dst = port->pipe_profiles + i;
545 if (src->tb_rate == params->rate) {
546 dst->tb_credits_per_period = 1;
549 double tb_rate = ((double) src->tb_rate) / ((double) params->rate);
550 double d = RTE_SCHED_TB_RATE_CONFIG_ERR;
552 rte_approx(tb_rate, d, &dst->tb_credits_per_period, &dst->tb_period);
554 dst->tb_size = src->tb_size;
556 /* Traffic Classes */
557 dst->tc_period = (uint32_t) rte_sched_time_ms_to_bytes(src->tc_period, params->rate);
558 for (j = 0; j < RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE; j ++) {
559 dst->tc_credits_per_period[j] = (uint32_t) rte_sched_time_ms_to_bytes(src->tc_period, src->tc_rate[j]);
561 #ifdef RTE_SCHED_SUBPORT_TC_OV
562 dst->tc_ov_weight = src->tc_ov_weight;
566 for (j = 0; j < RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE; j ++) {
567 uint32_t wrr_cost[RTE_SCHED_QUEUES_PER_TRAFFIC_CLASS];
568 uint32_t lcd, lcd1, lcd2;
571 qindex = j * RTE_SCHED_QUEUES_PER_TRAFFIC_CLASS;
573 wrr_cost[0] = src->wrr_weights[qindex];
574 wrr_cost[1] = src->wrr_weights[qindex + 1];
575 wrr_cost[2] = src->wrr_weights[qindex + 2];
576 wrr_cost[3] = src->wrr_weights[qindex + 3];
578 lcd1 = rte_get_lcd(wrr_cost[0], wrr_cost[1]);
579 lcd2 = rte_get_lcd(wrr_cost[2], wrr_cost[3]);
580 lcd = rte_get_lcd(lcd1, lcd2);
582 wrr_cost[0] = lcd / wrr_cost[0];
583 wrr_cost[1] = lcd / wrr_cost[1];
584 wrr_cost[2] = lcd / wrr_cost[2];
585 wrr_cost[3] = lcd / wrr_cost[3];
587 dst->wrr_cost[qindex] = (uint8_t) wrr_cost[0];
588 dst->wrr_cost[qindex + 1] = (uint8_t) wrr_cost[1];
589 dst->wrr_cost[qindex + 2] = (uint8_t) wrr_cost[2];
590 dst->wrr_cost[qindex + 3] = (uint8_t) wrr_cost[3];
593 rte_sched_port_log_pipe_profile(port, i);
596 port->pipe_tc3_rate_max = 0;
597 for (i = 0; i < port->n_pipe_profiles; i ++) {
598 struct rte_sched_pipe_params *src = params->pipe_profiles + i;
599 uint32_t pipe_tc3_rate = src->tc_rate[3];
601 if (port->pipe_tc3_rate_max < pipe_tc3_rate) {
602 port->pipe_tc3_rate_max = pipe_tc3_rate;
607 struct rte_sched_port *
608 rte_sched_port_config(struct rte_sched_port_params *params)
610 struct rte_sched_port *port = NULL;
611 uint32_t mem_size, bmp_mem_size, n_queues_per_port, i;
613 /* Check user parameters. Determine the amount of memory to allocate */
614 mem_size = rte_sched_port_get_memory_footprint(params);
619 /* Allocate memory to store the data structures */
620 port = rte_zmalloc("qos_params", mem_size, RTE_CACHE_LINE_SIZE);
625 /* User parameters */
626 port->n_subports_per_port = params->n_subports_per_port;
627 port->n_pipes_per_subport = params->n_pipes_per_subport;
628 port->rate = params->rate;
629 port->mtu = params->mtu + params->frame_overhead;
630 port->frame_overhead = params->frame_overhead;
631 memcpy(port->qsize, params->qsize, sizeof(params->qsize));
632 port->n_pipe_profiles = params->n_pipe_profiles;
635 for (i = 0; i < RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE; i++) {
638 for (j = 0; j < e_RTE_METER_COLORS; j++) {
639 if (rte_red_config_init(&port->red_config[i][j],
640 params->red_params[i][j].wq_log2,
641 params->red_params[i][j].min_th,
642 params->red_params[i][j].max_th,
643 params->red_params[i][j].maxp_inv) != 0) {
651 port->time_cpu_cycles = rte_get_tsc_cycles();
652 port->time_cpu_bytes = 0;
654 port->cycles_per_byte = ((double) rte_get_tsc_hz()) / ((double) params->rate);
656 /* Scheduling loop detection */
657 port->pipe_loop = RTE_SCHED_PIPE_INVALID;
658 port->pipe_exhaustion = 0;
661 port->busy_grinders = 0;
662 port->pkts_out = NULL;
663 port->n_pkts_out = 0;
665 /* Queue base calculation */
666 rte_sched_port_config_qsize(port);
668 /* Large data structures */
669 port->subport = (struct rte_sched_subport *) (port->memory + rte_sched_port_get_array_base(params, e_RTE_SCHED_PORT_ARRAY_SUBPORT));
670 port->pipe = (struct rte_sched_pipe *) (port->memory + rte_sched_port_get_array_base(params, e_RTE_SCHED_PORT_ARRAY_PIPE));
671 port->queue = (struct rte_sched_queue *) (port->memory + rte_sched_port_get_array_base(params, e_RTE_SCHED_PORT_ARRAY_QUEUE));
672 port->queue_extra = (struct rte_sched_queue_extra *) (port->memory + rte_sched_port_get_array_base(params, e_RTE_SCHED_PORT_ARRAY_QUEUE_EXTRA));
673 port->pipe_profiles = (struct rte_sched_pipe_profile *) (port->memory + rte_sched_port_get_array_base(params, e_RTE_SCHED_PORT_ARRAY_PIPE_PROFILES));
674 port->bmp_array = port->memory + rte_sched_port_get_array_base(params, e_RTE_SCHED_PORT_ARRAY_BMP_ARRAY);
675 port->queue_array = (struct rte_mbuf **) (port->memory + rte_sched_port_get_array_base(params, e_RTE_SCHED_PORT_ARRAY_QUEUE_ARRAY));
677 /* Pipe profile table */
678 rte_sched_port_config_pipe_profile_table(port, params);
681 n_queues_per_port = rte_sched_port_queues_per_port(port);
682 bmp_mem_size = rte_bitmap_get_memory_footprint(n_queues_per_port);
683 port->bmp = rte_bitmap_init(n_queues_per_port, port->bmp_array, bmp_mem_size);
684 if (port->bmp == NULL) {
685 RTE_LOG(INFO, SCHED, "Bitmap init error\n");
688 for (i = 0; i < RTE_SCHED_PORT_N_GRINDERS; i ++) {
689 port->grinder_base_bmp_pos[i] = RTE_SCHED_PIPE_INVALID;
696 rte_sched_port_free(struct rte_sched_port *port)
698 /* Check user parameters */
703 rte_bitmap_free(port->bmp);
708 rte_sched_port_log_subport_config(struct rte_sched_port *port, uint32_t i)
710 struct rte_sched_subport *s = port->subport + i;
712 RTE_LOG(INFO, SCHED, "Low level config for subport %u:\n"
713 "\tToken bucket: period = %u, credits per period = %u, size = %u\n"
714 "\tTraffic classes: period = %u, credits per period = [%u, %u, %u, %u]\n"
715 "\tTraffic class 3 oversubscription: wm min = %u, wm max = %u\n",
720 s->tb_credits_per_period,
723 /* Traffic classes */
725 s->tc_credits_per_period[0],
726 s->tc_credits_per_period[1],
727 s->tc_credits_per_period[2],
728 s->tc_credits_per_period[3],
730 /* Traffic class 3 oversubscription */
736 rte_sched_subport_config(struct rte_sched_port *port,
738 struct rte_sched_subport_params *params)
740 struct rte_sched_subport *s;
743 /* Check user parameters */
744 if ((port == NULL) ||
745 (subport_id >= port->n_subports_per_port) ||
750 if ((params->tb_rate == 0) || (params->tb_rate > port->rate)) {
754 if (params->tb_size == 0) {
758 for (i = 0; i < RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE; i ++) {
759 if ((params->tc_rate[i] == 0) || (params->tc_rate[i] > params->tb_rate)) {
764 if (params->tc_period == 0) {
768 s = port->subport + subport_id;
770 /* Token Bucket (TB) */
771 if (params->tb_rate == port->rate) {
772 s->tb_credits_per_period = 1;
775 double tb_rate = ((double) params->tb_rate) / ((double) port->rate);
776 double d = RTE_SCHED_TB_RATE_CONFIG_ERR;
778 rte_approx(tb_rate, d, &s->tb_credits_per_period, &s->tb_period);
780 s->tb_size = params->tb_size;
781 s->tb_time = port->time;
782 s->tb_credits = s->tb_size / 2;
784 /* Traffic Classes (TCs) */
785 s->tc_period = (uint32_t) rte_sched_time_ms_to_bytes(params->tc_period, port->rate);
786 for (i = 0; i < RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE; i ++) {
787 s->tc_credits_per_period[i] = (uint32_t) rte_sched_time_ms_to_bytes(params->tc_period, params->tc_rate[i]);
789 s->tc_time = port->time + s->tc_period;
790 for (i = 0; i < RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE; i ++) {
791 s->tc_credits[i] = s->tc_credits_per_period[i];
794 #ifdef RTE_SCHED_SUBPORT_TC_OV
795 /* TC oversubscription */
796 s->tc_ov_wm_min = port->mtu;
797 s->tc_ov_wm_max = (uint32_t) rte_sched_time_ms_to_bytes(params->tc_period, port->pipe_tc3_rate_max);
798 s->tc_ov_wm = s->tc_ov_wm_max;
799 s->tc_ov_period_id = 0;
805 rte_sched_port_log_subport_config(port, subport_id);
811 rte_sched_pipe_config(struct rte_sched_port *port,
814 int32_t pipe_profile)
816 struct rte_sched_subport *s;
817 struct rte_sched_pipe *p;
818 struct rte_sched_pipe_profile *params;
819 uint32_t deactivate, profile, i;
821 /* Check user parameters */
822 profile = (uint32_t) pipe_profile;
823 deactivate = (pipe_profile < 0);
824 if ((port == NULL) ||
825 (subport_id >= port->n_subports_per_port) ||
826 (pipe_id >= port->n_pipes_per_subport) ||
827 ((!deactivate) && (profile >= port->n_pipe_profiles))) {
831 /* Check that subport configuration is valid */
832 s = port->subport + subport_id;
833 if (s->tb_period == 0) {
837 p = port->pipe + (subport_id * port->n_pipes_per_subport + pipe_id);
839 /* Handle the case when pipe already has a valid configuration */
841 params = port->pipe_profiles + p->profile;
843 #ifdef RTE_SCHED_SUBPORT_TC_OV
844 double subport_tc3_rate = ((double) s->tc_credits_per_period[3]) / ((double) s->tc_period);
845 double pipe_tc3_rate = ((double) params->tc_credits_per_period[3]) / ((double) params->tc_period);
846 uint32_t tc3_ov = s->tc_ov;
848 /* Unplug pipe from its subport */
849 s->tc_ov_n -= params->tc_ov_weight;
850 s->tc_ov_rate -= pipe_tc3_rate;
851 s->tc_ov = s->tc_ov_rate > subport_tc3_rate;
853 if (s->tc_ov != tc3_ov) {
854 RTE_LOG(INFO, SCHED, "Subport %u TC3 oversubscription is OFF (%.4lf >= %.4lf)\n",
855 subport_id, subport_tc3_rate, s->tc_ov_rate);
860 memset(p, 0, sizeof(struct rte_sched_pipe));
867 /* Apply the new pipe configuration */
868 p->profile = profile;
869 params = port->pipe_profiles + p->profile;
871 /* Token Bucket (TB) */
872 p->tb_time = port->time;
873 p->tb_credits = params->tb_size / 2;
875 /* Traffic Classes (TCs) */
876 p->tc_time = port->time + params->tc_period;
877 for (i = 0; i < RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE; i ++) {
878 p->tc_credits[i] = params->tc_credits_per_period[i];
881 #ifdef RTE_SCHED_SUBPORT_TC_OV
883 /* Subport TC3 oversubscription */
884 double subport_tc3_rate = ((double) s->tc_credits_per_period[3]) / ((double) s->tc_period);
885 double pipe_tc3_rate = ((double) params->tc_credits_per_period[3]) / ((double) params->tc_period);
886 uint32_t tc3_ov = s->tc_ov;
888 s->tc_ov_n += params->tc_ov_weight;
889 s->tc_ov_rate += pipe_tc3_rate;
890 s->tc_ov = s->tc_ov_rate > subport_tc3_rate;
892 if (s->tc_ov != tc3_ov) {
893 RTE_LOG(INFO, SCHED, "Subport %u TC3 oversubscription is ON (%.4lf < %.4lf)\n",
894 subport_id, subport_tc3_rate, s->tc_ov_rate);
896 p->tc_ov_period_id = s->tc_ov_period_id;
897 p->tc_ov_credits = s->tc_ov_wm;
905 rte_sched_subport_read_stats(struct rte_sched_port *port,
907 struct rte_sched_subport_stats *stats,
910 struct rte_sched_subport *s;
912 /* Check user parameters */
913 if ((port == NULL) ||
914 (subport_id >= port->n_subports_per_port) ||
919 s = port->subport + subport_id;
921 /* Copy subport stats and clear */
922 memcpy(stats, &s->stats, sizeof(struct rte_sched_subport_stats));
923 memset(&s->stats, 0, sizeof(struct rte_sched_subport_stats));
925 /* Subport TC ovesubscription status */
932 rte_sched_queue_read_stats(struct rte_sched_port *port,
934 struct rte_sched_queue_stats *stats,
937 struct rte_sched_queue *q;
938 struct rte_sched_queue_extra *qe;
940 /* Check user parameters */
941 if ((port == NULL) ||
942 (queue_id >= rte_sched_port_queues_per_port(port)) ||
947 q = port->queue + queue_id;
948 qe = port->queue_extra + queue_id;
950 /* Copy queue stats and clear */
951 memcpy(stats, &qe->stats, sizeof(struct rte_sched_queue_stats));
952 memset(&qe->stats, 0, sizeof(struct rte_sched_queue_stats));
955 *qlen = q->qw - q->qr;
960 static inline uint32_t
961 rte_sched_port_qindex(struct rte_sched_port *port, uint32_t subport, uint32_t pipe, uint32_t traffic_class, uint32_t queue)
965 result = subport * port->n_pipes_per_subport + pipe;
966 result = result * RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE + traffic_class;
967 result = result * RTE_SCHED_QUEUES_PER_TRAFFIC_CLASS + queue;
972 static inline struct rte_mbuf **
973 rte_sched_port_qbase(struct rte_sched_port *port, uint32_t qindex)
975 uint32_t pindex = qindex >> 4;
976 uint32_t qpos = qindex & 0xF;
978 return (port->queue_array + pindex * port->qsize_sum + port->qsize_add[qpos]);
981 static inline uint16_t
982 rte_sched_port_qsize(struct rte_sched_port *port, uint32_t qindex)
984 uint32_t tc = (qindex >> 2) & 0x3;
986 return port->qsize[tc];
992 rte_sched_port_queue_is_empty(struct rte_sched_port *port, uint32_t qindex)
994 struct rte_sched_queue *queue = port->queue + qindex;
996 return (queue->qr == queue->qw);
1000 rte_sched_port_queue_is_full(struct rte_sched_port *port, uint32_t qindex)
1002 struct rte_sched_queue *queue = port->queue + qindex;
1003 uint16_t qsize = rte_sched_port_qsize(port, qindex);
1004 uint16_t qlen = queue->qw - queue->qr;
1006 return (qlen >= qsize);
1009 #endif /* RTE_SCHED_DEBUG */
1011 #ifdef RTE_SCHED_COLLECT_STATS
1014 rte_sched_port_update_subport_stats(struct rte_sched_port *port, uint32_t qindex, struct rte_mbuf *pkt)
1016 struct rte_sched_subport *s = port->subport + (qindex / rte_sched_port_queues_per_subport(port));
1017 uint32_t tc_index = (qindex >> 2) & 0x3;
1018 uint32_t pkt_len = pkt->pkt_len;
1020 s->stats.n_pkts_tc[tc_index] += 1;
1021 s->stats.n_bytes_tc[tc_index] += pkt_len;
1025 rte_sched_port_update_subport_stats_on_drop(struct rte_sched_port *port, uint32_t qindex, struct rte_mbuf *pkt)
1027 struct rte_sched_subport *s = port->subport + (qindex / rte_sched_port_queues_per_subport(port));
1028 uint32_t tc_index = (qindex >> 2) & 0x3;
1029 uint32_t pkt_len = pkt->pkt_len;
1031 s->stats.n_pkts_tc_dropped[tc_index] += 1;
1032 s->stats.n_bytes_tc_dropped[tc_index] += pkt_len;
1036 rte_sched_port_update_queue_stats(struct rte_sched_port *port, uint32_t qindex, struct rte_mbuf *pkt)
1038 struct rte_sched_queue_extra *qe = port->queue_extra + qindex;
1039 uint32_t pkt_len = pkt->pkt_len;
1041 qe->stats.n_pkts += 1;
1042 qe->stats.n_bytes += pkt_len;
1046 rte_sched_port_update_queue_stats_on_drop(struct rte_sched_port *port, uint32_t qindex, struct rte_mbuf *pkt)
1048 struct rte_sched_queue_extra *qe = port->queue_extra + qindex;
1049 uint32_t pkt_len = pkt->pkt_len;
1051 qe->stats.n_pkts_dropped += 1;
1052 qe->stats.n_bytes_dropped += pkt_len;
1055 #endif /* RTE_SCHED_COLLECT_STATS */
1057 #ifdef RTE_SCHED_RED
1060 rte_sched_port_red_drop(struct rte_sched_port *port, struct rte_mbuf *pkt, uint32_t qindex, uint16_t qlen)
1062 struct rte_sched_queue_extra *qe;
1063 struct rte_red_config *red_cfg;
1064 struct rte_red *red;
1066 enum rte_meter_color color;
1068 tc_index = (qindex >> 2) & 0x3;
1069 color = rte_sched_port_pkt_read_color(pkt);
1070 red_cfg = &port->red_config[tc_index][color];
1072 qe = port->queue_extra + qindex;
1075 return rte_red_enqueue(red_cfg, red, qlen, port->time);
1079 rte_sched_port_set_queue_empty_timestamp(struct rte_sched_port *port, uint32_t qindex)
1081 struct rte_sched_queue_extra *qe;
1082 struct rte_red *red;
1084 qe = port->queue_extra + qindex;
1087 rte_red_mark_queue_empty(red, port->time);
1092 #define rte_sched_port_red_drop(port, pkt, qindex, qlen) 0
1094 #define rte_sched_port_set_queue_empty_timestamp(port, qindex)
1096 #endif /* RTE_SCHED_RED */
1101 debug_pipe_is_empty(struct rte_sched_port *port, uint32_t pindex)
1105 qindex = pindex << 4;
1107 for (i = 0; i < 16; i ++){
1108 uint32_t queue_empty = rte_sched_port_queue_is_empty(port, qindex + i);
1109 uint32_t bmp_bit_clear = (rte_bitmap_get(port->bmp, qindex + i) == 0);
1111 if (queue_empty != bmp_bit_clear){
1112 rte_panic("Queue status mismatch for queue %u of pipe %u\n", i, pindex);
1124 debug_check_queue_slab(struct rte_sched_port *port, uint32_t bmp_pos, uint64_t bmp_slab)
1130 rte_panic("Empty slab at position %u\n", bmp_pos);
1134 for (i = 0, mask = 1; i < 64; i ++, mask <<= 1) {
1135 if (mask & bmp_slab){
1136 if (rte_sched_port_queue_is_empty(port, bmp_pos + i)) {
1137 printf("Queue %u (slab offset %u) is empty\n", bmp_pos + i, i);
1144 rte_panic("Empty queues in slab 0x%" PRIx64 "starting at position %u\n",
1149 #endif /* RTE_SCHED_DEBUG */
1151 static inline uint32_t
1152 rte_sched_port_enqueue_qptrs_prefetch0(struct rte_sched_port *port, struct rte_mbuf *pkt)
1154 struct rte_sched_queue *q;
1155 #ifdef RTE_SCHED_COLLECT_STATS
1156 struct rte_sched_queue_extra *qe;
1158 uint32_t subport, pipe, traffic_class, queue, qindex;
1160 rte_sched_port_pkt_read_tree_path(pkt, &subport, &pipe, &traffic_class, &queue);
1162 qindex = rte_sched_port_qindex(port, subport, pipe, traffic_class, queue);
1163 q = port->queue + qindex;
1165 #ifdef RTE_SCHED_COLLECT_STATS
1166 qe = port->queue_extra + qindex;
1174 rte_sched_port_enqueue_qwa_prefetch0(struct rte_sched_port *port, uint32_t qindex, struct rte_mbuf **qbase)
1176 struct rte_sched_queue *q;
1177 struct rte_mbuf **q_qw;
1180 q = port->queue + qindex;
1181 qsize = rte_sched_port_qsize(port, qindex);
1182 q_qw = qbase + (q->qw & (qsize - 1));
1184 rte_prefetch0(q_qw);
1185 rte_bitmap_prefetch0(port->bmp, qindex);
1189 rte_sched_port_enqueue_qwa(struct rte_sched_port *port, uint32_t qindex, struct rte_mbuf **qbase, struct rte_mbuf *pkt)
1191 struct rte_sched_queue *q;
1195 q = port->queue + qindex;
1196 qsize = rte_sched_port_qsize(port, qindex);
1197 qlen = q->qw - q->qr;
1199 /* Drop the packet (and update drop stats) when queue is full */
1200 if (unlikely(rte_sched_port_red_drop(port, pkt, qindex, qlen) || (qlen >= qsize))) {
1201 rte_pktmbuf_free(pkt);
1202 #ifdef RTE_SCHED_COLLECT_STATS
1203 rte_sched_port_update_subport_stats_on_drop(port, qindex, pkt);
1204 rte_sched_port_update_queue_stats_on_drop(port, qindex, pkt);
1209 /* Enqueue packet */
1210 qbase[q->qw & (qsize - 1)] = pkt;
1213 /* Activate queue in the port bitmap */
1214 rte_bitmap_set(port->bmp, qindex);
1217 #ifdef RTE_SCHED_COLLECT_STATS
1218 rte_sched_port_update_subport_stats(port, qindex, pkt);
1219 rte_sched_port_update_queue_stats(port, qindex, pkt);
1225 #if RTE_SCHED_ENQUEUE == 0
1228 rte_sched_port_enqueue(struct rte_sched_port *port, struct rte_mbuf **pkts, uint32_t n_pkts)
1234 for (i = 0; i < n_pkts; i ++) {
1235 struct rte_mbuf *pkt;
1236 struct rte_mbuf **q_base;
1237 uint32_t subport, pipe, traffic_class, queue, qindex;
1241 rte_sched_port_pkt_read_tree_path(pkt, &subport, &pipe, &traffic_class, &queue);
1243 qindex = rte_sched_port_qindex(port, subport, pipe, traffic_class, queue);
1245 q_base = rte_sched_port_qbase(port, qindex);
1247 result += rte_sched_port_enqueue_qwa(port, qindex, q_base, pkt);
1255 /* The enqueue function implements a 4-level pipeline with each stage processing
1256 * two different packets. The purpose of using a pipeline is to hide the latency
1257 * of prefetching the data structures. The naming convention is presented in the
1260 * p00 _______ p10 _______ p20 _______ p30 _______
1261 * ----->| |----->| |----->| |----->| |----->
1262 * | 0 | | 1 | | 2 | | 3 |
1263 * ----->|_______|----->|_______|----->|_______|----->|_______|----->
1268 rte_sched_port_enqueue(struct rte_sched_port *port, struct rte_mbuf **pkts, uint32_t n_pkts)
1270 struct rte_mbuf *pkt00, *pkt01, *pkt10, *pkt11, *pkt20, *pkt21, *pkt30, *pkt31, *pkt_last;
1271 struct rte_mbuf **q00_base, **q01_base, **q10_base, **q11_base, **q20_base, **q21_base, **q30_base, **q31_base, **q_last_base;
1272 uint32_t q00, q01, q10, q11, q20, q21, q30, q31, q_last;
1273 uint32_t r00, r01, r10, r11, r20, r21, r30, r31, r_last;
1278 /* Less then 6 input packets available, which is not enough to feed the pipeline */
1279 if (unlikely(n_pkts < 6)) {
1280 struct rte_mbuf **q_base[5];
1283 /* Prefetch the mbuf structure of each packet */
1284 for (i = 0; i < n_pkts; i ++) {
1285 rte_prefetch0(pkts[i]);
1288 /* Prefetch the queue structure for each queue */
1289 for (i = 0; i < n_pkts; i ++) {
1290 q[i] = rte_sched_port_enqueue_qptrs_prefetch0(port, pkts[i]);
1293 /* Prefetch the write pointer location of each queue */
1294 for (i = 0; i < n_pkts; i ++) {
1295 q_base[i] = rte_sched_port_qbase(port, q[i]);
1296 rte_sched_port_enqueue_qwa_prefetch0(port, q[i], q_base[i]);
1299 /* Write each packet to its queue */
1300 for (i = 0; i < n_pkts; i ++) {
1301 result += rte_sched_port_enqueue_qwa(port, q[i], q_base[i], pkts[i]);
1307 /* Feed the first 3 stages of the pipeline (6 packets needed) */
1310 rte_prefetch0(pkt20);
1311 rte_prefetch0(pkt21);
1315 rte_prefetch0(pkt10);
1316 rte_prefetch0(pkt11);
1318 q20 = rte_sched_port_enqueue_qptrs_prefetch0(port, pkt20);
1319 q21 = rte_sched_port_enqueue_qptrs_prefetch0(port, pkt21);
1323 rte_prefetch0(pkt00);
1324 rte_prefetch0(pkt01);
1326 q10 = rte_sched_port_enqueue_qptrs_prefetch0(port, pkt10);
1327 q11 = rte_sched_port_enqueue_qptrs_prefetch0(port, pkt11);
1329 q20_base = rte_sched_port_qbase(port, q20);
1330 q21_base = rte_sched_port_qbase(port, q21);
1331 rte_sched_port_enqueue_qwa_prefetch0(port, q20, q20_base);
1332 rte_sched_port_enqueue_qwa_prefetch0(port, q21, q21_base);
1334 /* Run the pipeline */
1335 for (i = 6; i < (n_pkts & (~1)); i += 2) {
1336 /* Propagate stage inputs */
1347 q30_base = q20_base;
1348 q31_base = q21_base;
1350 /* Stage 0: Get packets in */
1352 pkt01 = pkts[i + 1];
1353 rte_prefetch0(pkt00);
1354 rte_prefetch0(pkt01);
1356 /* Stage 1: Prefetch queue structure storing queue pointers */
1357 q10 = rte_sched_port_enqueue_qptrs_prefetch0(port, pkt10);
1358 q11 = rte_sched_port_enqueue_qptrs_prefetch0(port, pkt11);
1360 /* Stage 2: Prefetch queue write location */
1361 q20_base = rte_sched_port_qbase(port, q20);
1362 q21_base = rte_sched_port_qbase(port, q21);
1363 rte_sched_port_enqueue_qwa_prefetch0(port, q20, q20_base);
1364 rte_sched_port_enqueue_qwa_prefetch0(port, q21, q21_base);
1366 /* Stage 3: Write packet to queue and activate queue */
1367 r30 = rte_sched_port_enqueue_qwa(port, q30, q30_base, pkt30);
1368 r31 = rte_sched_port_enqueue_qwa(port, q31, q31_base, pkt31);
1369 result += r30 + r31;
1372 /* Drain the pipeline (exactly 6 packets). Handle the last packet in the case
1373 of an odd number of input packets. */
1374 pkt_last = pkts[n_pkts - 1];
1375 rte_prefetch0(pkt_last);
1377 q00 = rte_sched_port_enqueue_qptrs_prefetch0(port, pkt00);
1378 q01 = rte_sched_port_enqueue_qptrs_prefetch0(port, pkt01);
1380 q10_base = rte_sched_port_qbase(port, q10);
1381 q11_base = rte_sched_port_qbase(port, q11);
1382 rte_sched_port_enqueue_qwa_prefetch0(port, q10, q10_base);
1383 rte_sched_port_enqueue_qwa_prefetch0(port, q11, q11_base);
1385 r20 = rte_sched_port_enqueue_qwa(port, q20, q20_base, pkt20);
1386 r21 = rte_sched_port_enqueue_qwa(port, q21, q21_base, pkt21);
1387 result += r20 + r21;
1389 q_last = rte_sched_port_enqueue_qptrs_prefetch0(port, pkt_last);
1391 q00_base = rte_sched_port_qbase(port, q00);
1392 q01_base = rte_sched_port_qbase(port, q01);
1393 rte_sched_port_enqueue_qwa_prefetch0(port, q00, q00_base);
1394 rte_sched_port_enqueue_qwa_prefetch0(port, q01, q01_base);
1396 r10 = rte_sched_port_enqueue_qwa(port, q10, q10_base, pkt10);
1397 r11 = rte_sched_port_enqueue_qwa(port, q11, q11_base, pkt11);
1398 result += r10 + r11;
1400 q_last_base = rte_sched_port_qbase(port, q_last);
1401 rte_sched_port_enqueue_qwa_prefetch0(port, q_last, q_last_base);
1403 r00 = rte_sched_port_enqueue_qwa(port, q00, q00_base, pkt00);
1404 r01 = rte_sched_port_enqueue_qwa(port, q01, q01_base, pkt01);
1405 result += r00 + r01;
1408 r_last = rte_sched_port_enqueue_qwa(port, q_last, q_last_base, pkt_last);
1415 #endif /* RTE_SCHED_ENQUEUE */
1417 #if RTE_SCHED_TS_CREDITS_UPDATE == 0
1419 #define grinder_credits_update(port, pos)
1421 #elif !defined(RTE_SCHED_SUBPORT_TC_OV)
1424 grinder_credits_update(struct rte_sched_port *port, uint32_t pos)
1426 struct rte_sched_grinder *grinder = port->grinder + pos;
1427 struct rte_sched_subport *subport = grinder->subport;
1428 struct rte_sched_pipe *pipe = grinder->pipe;
1429 struct rte_sched_pipe_profile *params = grinder->pipe_params;
1433 n_periods = (port->time - subport->tb_time) / subport->tb_period;
1434 subport->tb_credits += n_periods * subport->tb_credits_per_period;
1435 subport->tb_credits = rte_sched_min_val_2_u32(subport->tb_credits, subport->tb_size);
1436 subport->tb_time += n_periods * subport->tb_period;
1439 n_periods = (port->time - pipe->tb_time) / params->tb_period;
1440 pipe->tb_credits += n_periods * params->tb_credits_per_period;
1441 pipe->tb_credits = rte_sched_min_val_2_u32(pipe->tb_credits, params->tb_size);
1442 pipe->tb_time += n_periods * params->tb_period;
1445 if (unlikely(port->time >= subport->tc_time)) {
1446 subport->tc_credits[0] = subport->tc_credits_per_period[0];
1447 subport->tc_credits[1] = subport->tc_credits_per_period[1];
1448 subport->tc_credits[2] = subport->tc_credits_per_period[2];
1449 subport->tc_credits[3] = subport->tc_credits_per_period[3];
1450 subport->tc_time = port->time + subport->tc_period;
1454 if (unlikely(port->time >= pipe->tc_time)) {
1455 pipe->tc_credits[0] = params->tc_credits_per_period[0];
1456 pipe->tc_credits[1] = params->tc_credits_per_period[1];
1457 pipe->tc_credits[2] = params->tc_credits_per_period[2];
1458 pipe->tc_credits[3] = params->tc_credits_per_period[3];
1459 pipe->tc_time = port->time + params->tc_period;
1465 static inline uint32_t
1466 grinder_tc_ov_credits_update(struct rte_sched_port *port, uint32_t pos)
1468 struct rte_sched_grinder *grinder = port->grinder + pos;
1469 struct rte_sched_subport *subport = grinder->subport;
1470 uint32_t tc_ov_consumption[RTE_SCHED_TRAFFIC_CLASSES_PER_PIPE];
1471 uint32_t tc_ov_consumption_max;
1472 uint32_t tc_ov_wm = subport->tc_ov_wm;
1474 if (subport->tc_ov == 0) {
1475 return subport->tc_ov_wm_max;
1478 tc_ov_consumption[0] = subport->tc_credits_per_period[0] - subport->tc_credits[0];
1479 tc_ov_consumption[1] = subport->tc_credits_per_period[1] - subport->tc_credits[1];
1480 tc_ov_consumption[2] = subport->tc_credits_per_period[2] - subport->tc_credits[2];
1481 tc_ov_consumption[3] = subport->tc_credits_per_period[3] - subport->tc_credits[3];
1483 tc_ov_consumption_max = subport->tc_credits_per_period[3] -
1484 (tc_ov_consumption[0] + tc_ov_consumption[1] + tc_ov_consumption[2]);
1486 if (tc_ov_consumption[3] > (tc_ov_consumption_max - port->mtu)) {
1487 tc_ov_wm -= tc_ov_wm >> 7;
1488 if (tc_ov_wm < subport->tc_ov_wm_min) {
1489 tc_ov_wm = subport->tc_ov_wm_min;
1494 tc_ov_wm += (tc_ov_wm >> 7) + 1;
1495 if (tc_ov_wm > subport->tc_ov_wm_max) {
1496 tc_ov_wm = subport->tc_ov_wm_max;
1502 grinder_credits_update(struct rte_sched_port *port, uint32_t pos)
1504 struct rte_sched_grinder *grinder = port->grinder + pos;
1505 struct rte_sched_subport *subport = grinder->subport;
1506 struct rte_sched_pipe *pipe = grinder->pipe;
1507 struct rte_sched_pipe_profile *params = grinder->pipe_params;
1511 n_periods = (port->time - subport->tb_time) / subport->tb_period;
1512 subport->tb_credits += n_periods * subport->tb_credits_per_period;
1513 subport->tb_credits = rte_sched_min_val_2_u32(subport->tb_credits, subport->tb_size);
1514 subport->tb_time += n_periods * subport->tb_period;
1517 n_periods = (port->time - pipe->tb_time) / params->tb_period;
1518 pipe->tb_credits += n_periods * params->tb_credits_per_period;
1519 pipe->tb_credits = rte_sched_min_val_2_u32(pipe->tb_credits, params->tb_size);
1520 pipe->tb_time += n_periods * params->tb_period;
1523 if (unlikely(port->time >= subport->tc_time)) {
1524 subport->tc_ov_wm = grinder_tc_ov_credits_update(port, pos);
1526 subport->tc_credits[0] = subport->tc_credits_per_period[0];
1527 subport->tc_credits[1] = subport->tc_credits_per_period[1];
1528 subport->tc_credits[2] = subport->tc_credits_per_period[2];
1529 subport->tc_credits[3] = subport->tc_credits_per_period[3];
1531 subport->tc_time = port->time + subport->tc_period;
1532 subport->tc_ov_period_id ++;
1536 if (unlikely(port->time >= pipe->tc_time)) {
1537 pipe->tc_credits[0] = params->tc_credits_per_period[0];
1538 pipe->tc_credits[1] = params->tc_credits_per_period[1];
1539 pipe->tc_credits[2] = params->tc_credits_per_period[2];
1540 pipe->tc_credits[3] = params->tc_credits_per_period[3];
1541 pipe->tc_time = port->time + params->tc_period;
1544 /* Pipe TCs - Oversubscription */
1545 if (unlikely(pipe->tc_ov_period_id != subport->tc_ov_period_id)) {
1546 pipe->tc_ov_credits = subport->tc_ov_wm * params->tc_ov_weight;
1548 pipe->tc_ov_period_id = subport->tc_ov_period_id;
1552 #endif /* RTE_SCHED_TS_CREDITS_UPDATE, RTE_SCHED_SUBPORT_TC_OV */
1554 #if RTE_SCHED_TS_CREDITS_CHECK
1556 #ifndef RTE_SCHED_SUBPORT_TC_OV
1559 grinder_credits_check(struct rte_sched_port *port, uint32_t pos)
1561 struct rte_sched_grinder *grinder = port->grinder + pos;
1562 struct rte_sched_subport *subport = grinder->subport;
1563 struct rte_sched_pipe *pipe = grinder->pipe;
1564 struct rte_mbuf *pkt = grinder->pkt;
1565 uint32_t tc_index = grinder->tc_index;
1566 uint32_t pkt_len = pkt->pkt_len + port->frame_overhead;
1567 uint32_t subport_tb_credits = subport->tb_credits;
1568 uint32_t subport_tc_credits = subport->tc_credits[tc_index];
1569 uint32_t pipe_tb_credits = pipe->tb_credits;
1570 uint32_t pipe_tc_credits = pipe->tc_credits[tc_index];
1573 /* Check queue credits */
1574 enough_credits = (pkt_len <= subport_tb_credits) &&
1575 (pkt_len <= subport_tc_credits) &&
1576 (pkt_len <= pipe_tb_credits) &&
1577 (pkt_len <= pipe_tc_credits);
1579 if (!enough_credits) {
1583 /* Update port credits */
1584 subport->tb_credits -= pkt_len;
1585 subport->tc_credits[tc_index] -= pkt_len;
1586 pipe->tb_credits -= pkt_len;
1587 pipe->tc_credits[tc_index] -= pkt_len;
1595 grinder_credits_check(struct rte_sched_port *port, uint32_t pos)
1597 struct rte_sched_grinder *grinder = port->grinder + pos;
1598 struct rte_sched_subport *subport = grinder->subport;
1599 struct rte_sched_pipe *pipe = grinder->pipe;
1600 struct rte_mbuf *pkt = grinder->pkt;
1601 uint32_t tc_index = grinder->tc_index;
1602 uint32_t pkt_len = pkt->pkt_len + port->frame_overhead;
1603 uint32_t subport_tb_credits = subport->tb_credits;
1604 uint32_t subport_tc_credits = subport->tc_credits[tc_index];
1605 uint32_t pipe_tb_credits = pipe->tb_credits;
1606 uint32_t pipe_tc_credits = pipe->tc_credits[tc_index];
1607 uint32_t pipe_tc_ov_mask1[] = {UINT32_MAX, UINT32_MAX, UINT32_MAX, pipe->tc_ov_credits};
1608 uint32_t pipe_tc_ov_mask2[] = {0, 0, 0, UINT32_MAX};
1609 uint32_t pipe_tc_ov_credits = pipe_tc_ov_mask1[tc_index];
1612 /* Check pipe and subport credits */
1613 enough_credits = (pkt_len <= subport_tb_credits) &&
1614 (pkt_len <= subport_tc_credits) &&
1615 (pkt_len <= pipe_tb_credits) &&
1616 (pkt_len <= pipe_tc_credits) &&
1617 (pkt_len <= pipe_tc_ov_credits);
1619 if (!enough_credits) {
1623 /* Update pipe and subport credits */
1624 subport->tb_credits -= pkt_len;
1625 subport->tc_credits[tc_index] -= pkt_len;
1626 pipe->tb_credits -= pkt_len;
1627 pipe->tc_credits[tc_index] -= pkt_len;
1628 pipe->tc_ov_credits -= pipe_tc_ov_mask2[tc_index] & pkt_len;
1633 #endif /* RTE_SCHED_SUBPORT_TC_OV */
1635 #endif /* RTE_SCHED_TS_CREDITS_CHECK */
1638 grinder_schedule(struct rte_sched_port *port, uint32_t pos)
1640 struct rte_sched_grinder *grinder = port->grinder + pos;
1641 struct rte_sched_queue *queue = grinder->queue[grinder->qpos];
1642 struct rte_mbuf *pkt = grinder->pkt;
1643 uint32_t pkt_len = pkt->pkt_len + port->frame_overhead;
1645 #if RTE_SCHED_TS_CREDITS_CHECK
1646 if (!grinder_credits_check(port, pos)) {
1651 /* Advance port time */
1652 port->time += pkt_len;
1655 port->pkts_out[port->n_pkts_out ++] = pkt;
1657 grinder->wrr_tokens[grinder->qpos] += pkt_len * grinder->wrr_cost[grinder->qpos];
1658 if (queue->qr == queue->qw) {
1659 uint32_t qindex = grinder->qindex[grinder->qpos];
1661 rte_bitmap_clear(port->bmp, qindex);
1662 grinder->qmask &= ~(1 << grinder->qpos);
1663 grinder->wrr_mask[grinder->qpos] = 0;
1664 rte_sched_port_set_queue_empty_timestamp(port, qindex);
1667 /* Reset pipe loop detection */
1668 port->pipe_loop = RTE_SCHED_PIPE_INVALID;
1669 grinder->productive = 1;
1674 #if RTE_SCHED_OPTIMIZATIONS
1677 grinder_pipe_exists(struct rte_sched_port *port, uint32_t base_pipe)
1679 __m128i index = _mm_set1_epi32 (base_pipe);
1680 __m128i pipes = _mm_load_si128((__m128i *)port->grinder_base_bmp_pos);
1681 __m128i res = _mm_cmpeq_epi32(pipes, index);
1682 pipes = _mm_load_si128((__m128i *)(port->grinder_base_bmp_pos + 4));
1683 pipes = _mm_cmpeq_epi32(pipes, index);
1684 res = _mm_or_si128(res, pipes);
1686 if (_mm_testz_si128(res, res))
1695 grinder_pipe_exists(struct rte_sched_port *port, uint32_t base_pipe)
1699 for (i = 0; i < RTE_SCHED_PORT_N_GRINDERS; i ++) {
1700 if (port->grinder_base_bmp_pos[i] == base_pipe) {
1708 #endif /* RTE_SCHED_OPTIMIZATIONS */
1711 grinder_pcache_populate(struct rte_sched_port *port, uint32_t pos, uint32_t bmp_pos, uint64_t bmp_slab)
1713 struct rte_sched_grinder *grinder = port->grinder + pos;
1716 grinder->pcache_w = 0;
1717 grinder->pcache_r = 0;
1719 w[0] = (uint16_t) bmp_slab;
1720 w[1] = (uint16_t) (bmp_slab >> 16);
1721 w[2] = (uint16_t) (bmp_slab >> 32);
1722 w[3] = (uint16_t) (bmp_slab >> 48);
1724 grinder->pcache_qmask[grinder->pcache_w] = w[0];
1725 grinder->pcache_qindex[grinder->pcache_w] = bmp_pos;
1726 grinder->pcache_w += (w[0] != 0);
1728 grinder->pcache_qmask[grinder->pcache_w] = w[1];
1729 grinder->pcache_qindex[grinder->pcache_w] = bmp_pos + 16;
1730 grinder->pcache_w += (w[1] != 0);
1732 grinder->pcache_qmask[grinder->pcache_w] = w[2];
1733 grinder->pcache_qindex[grinder->pcache_w] = bmp_pos + 32;
1734 grinder->pcache_w += (w[2] != 0);
1736 grinder->pcache_qmask[grinder->pcache_w] = w[3];
1737 grinder->pcache_qindex[grinder->pcache_w] = bmp_pos + 48;
1738 grinder->pcache_w += (w[3] != 0);
1742 grinder_tccache_populate(struct rte_sched_port *port, uint32_t pos, uint32_t qindex, uint16_t qmask)
1744 struct rte_sched_grinder *grinder = port->grinder + pos;
1747 grinder->tccache_w = 0;
1748 grinder->tccache_r = 0;
1750 b[0] = (uint8_t) (qmask & 0xF);
1751 b[1] = (uint8_t) ((qmask >> 4) & 0xF);
1752 b[2] = (uint8_t) ((qmask >> 8) & 0xF);
1753 b[3] = (uint8_t) ((qmask >> 12) & 0xF);
1755 grinder->tccache_qmask[grinder->tccache_w] = b[0];
1756 grinder->tccache_qindex[grinder->tccache_w] = qindex;
1757 grinder->tccache_w += (b[0] != 0);
1759 grinder->tccache_qmask[grinder->tccache_w] = b[1];
1760 grinder->tccache_qindex[grinder->tccache_w] = qindex + 4;
1761 grinder->tccache_w += (b[1] != 0);
1763 grinder->tccache_qmask[grinder->tccache_w] = b[2];
1764 grinder->tccache_qindex[grinder->tccache_w] = qindex + 8;
1765 grinder->tccache_w += (b[2] != 0);
1767 grinder->tccache_qmask[grinder->tccache_w] = b[3];
1768 grinder->tccache_qindex[grinder->tccache_w] = qindex + 12;
1769 grinder->tccache_w += (b[3] != 0);
1773 grinder_next_tc(struct rte_sched_port *port, uint32_t pos)
1775 struct rte_sched_grinder *grinder = port->grinder + pos;
1776 struct rte_mbuf **qbase;
1780 if (grinder->tccache_r == grinder->tccache_w) {
1784 qindex = grinder->tccache_qindex[grinder->tccache_r];
1785 qbase = rte_sched_port_qbase(port, qindex);
1786 qsize = rte_sched_port_qsize(port, qindex);
1788 grinder->tc_index = (qindex >> 2) & 0x3;
1789 grinder->qmask = grinder->tccache_qmask[grinder->tccache_r];
1790 grinder->qsize = qsize;
1792 grinder->qindex[0] = qindex;
1793 grinder->qindex[1] = qindex + 1;
1794 grinder->qindex[2] = qindex + 2;
1795 grinder->qindex[3] = qindex + 3;
1797 grinder->queue[0] = port->queue + qindex;
1798 grinder->queue[1] = port->queue + qindex + 1;
1799 grinder->queue[2] = port->queue + qindex + 2;
1800 grinder->queue[3] = port->queue + qindex + 3;
1802 grinder->qbase[0] = qbase;
1803 grinder->qbase[1] = qbase + qsize;
1804 grinder->qbase[2] = qbase + 2 * qsize;
1805 grinder->qbase[3] = qbase + 3 * qsize;
1807 grinder->tccache_r ++;
1812 grinder_next_pipe(struct rte_sched_port *port, uint32_t pos)
1814 struct rte_sched_grinder *grinder = port->grinder + pos;
1815 uint32_t pipe_qindex;
1816 uint16_t pipe_qmask;
1818 if (grinder->pcache_r < grinder->pcache_w) {
1819 pipe_qmask = grinder->pcache_qmask[grinder->pcache_r];
1820 pipe_qindex = grinder->pcache_qindex[grinder->pcache_r];
1821 grinder->pcache_r ++;
1823 uint64_t bmp_slab = 0;
1824 uint32_t bmp_pos = 0;
1826 /* Get another non-empty pipe group */
1827 if (unlikely(rte_bitmap_scan(port->bmp, &bmp_pos, &bmp_slab) <= 0)) {
1832 debug_check_queue_slab(port, bmp_pos, bmp_slab);
1835 /* Return if pipe group already in one of the other grinders */
1836 port->grinder_base_bmp_pos[pos] = RTE_SCHED_BMP_POS_INVALID;
1837 if (unlikely(grinder_pipe_exists(port, bmp_pos))) {
1840 port->grinder_base_bmp_pos[pos] = bmp_pos;
1842 /* Install new pipe group into grinder's pipe cache */
1843 grinder_pcache_populate(port, pos, bmp_pos, bmp_slab);
1845 pipe_qmask = grinder->pcache_qmask[0];
1846 pipe_qindex = grinder->pcache_qindex[0];
1847 grinder->pcache_r = 1;
1850 /* Install new pipe in the grinder */
1851 grinder->pindex = pipe_qindex >> 4;
1852 grinder->subport = port->subport + (grinder->pindex / port->n_pipes_per_subport);
1853 grinder->pipe = port->pipe + grinder->pindex;
1854 grinder->pipe_params = NULL; /* to be set after the pipe structure is prefetched */
1855 grinder->productive = 0;
1857 grinder_tccache_populate(port, pos, pipe_qindex, pipe_qmask);
1858 grinder_next_tc(port, pos);
1860 /* Check for pipe exhaustion */
1861 if (grinder->pindex == port->pipe_loop) {
1862 port->pipe_exhaustion = 1;
1863 port->pipe_loop = RTE_SCHED_PIPE_INVALID;
1869 #if RTE_SCHED_WRR == 0
1871 #define grinder_wrr_load(a,b)
1873 #define grinder_wrr_store(a,b)
1876 grinder_wrr(struct rte_sched_port *port, uint32_t pos)
1878 struct rte_sched_grinder *grinder = port->grinder + pos;
1879 uint64_t slab = grinder->qmask;
1881 if (rte_bsf64(slab, &grinder->qpos) == 0) {
1882 rte_panic("grinder wrr\n");
1886 #elif RTE_SCHED_WRR == 1
1889 grinder_wrr_load(struct rte_sched_port *port, uint32_t pos)
1891 struct rte_sched_grinder *grinder = port->grinder + pos;
1892 struct rte_sched_pipe *pipe = grinder->pipe;
1893 struct rte_sched_pipe_profile *pipe_params = grinder->pipe_params;
1894 uint32_t tc_index = grinder->tc_index;
1895 uint32_t qmask = grinder->qmask;
1898 qindex = tc_index * 4;
1900 grinder->wrr_tokens[0] = ((uint16_t) pipe->wrr_tokens[qindex]) << RTE_SCHED_WRR_SHIFT;
1901 grinder->wrr_tokens[1] = ((uint16_t) pipe->wrr_tokens[qindex + 1]) << RTE_SCHED_WRR_SHIFT;
1902 grinder->wrr_tokens[2] = ((uint16_t) pipe->wrr_tokens[qindex + 2]) << RTE_SCHED_WRR_SHIFT;
1903 grinder->wrr_tokens[3] = ((uint16_t) pipe->wrr_tokens[qindex + 3]) << RTE_SCHED_WRR_SHIFT;
1905 grinder->wrr_mask[0] = (qmask & 0x1) * 0xFFFF;
1906 grinder->wrr_mask[1] = ((qmask >> 1) & 0x1) * 0xFFFF;
1907 grinder->wrr_mask[2] = ((qmask >> 2) & 0x1) * 0xFFFF;
1908 grinder->wrr_mask[3] = ((qmask >> 3) & 0x1) * 0xFFFF;
1910 grinder->wrr_cost[0] = pipe_params->wrr_cost[qindex];
1911 grinder->wrr_cost[1] = pipe_params->wrr_cost[qindex + 1];
1912 grinder->wrr_cost[2] = pipe_params->wrr_cost[qindex + 2];
1913 grinder->wrr_cost[3] = pipe_params->wrr_cost[qindex + 3];
1917 grinder_wrr_store(struct rte_sched_port *port, uint32_t pos)
1919 struct rte_sched_grinder *grinder = port->grinder + pos;
1920 struct rte_sched_pipe *pipe = grinder->pipe;
1921 uint32_t tc_index = grinder->tc_index;
1924 qindex = tc_index * 4;
1926 pipe->wrr_tokens[qindex] = (uint8_t) ((grinder->wrr_tokens[0] & grinder->wrr_mask[0]) >> RTE_SCHED_WRR_SHIFT);
1927 pipe->wrr_tokens[qindex + 1] = (uint8_t) ((grinder->wrr_tokens[1] & grinder->wrr_mask[1]) >> RTE_SCHED_WRR_SHIFT);
1928 pipe->wrr_tokens[qindex + 2] = (uint8_t) ((grinder->wrr_tokens[2] & grinder->wrr_mask[2]) >> RTE_SCHED_WRR_SHIFT);
1929 pipe->wrr_tokens[qindex + 3] = (uint8_t) ((grinder->wrr_tokens[3] & grinder->wrr_mask[3]) >> RTE_SCHED_WRR_SHIFT);
1933 grinder_wrr(struct rte_sched_port *port, uint32_t pos)
1935 struct rte_sched_grinder *grinder = port->grinder + pos;
1936 uint16_t wrr_tokens_min;
1938 grinder->wrr_tokens[0] |= ~grinder->wrr_mask[0];
1939 grinder->wrr_tokens[1] |= ~grinder->wrr_mask[1];
1940 grinder->wrr_tokens[2] |= ~grinder->wrr_mask[2];
1941 grinder->wrr_tokens[3] |= ~grinder->wrr_mask[3];
1943 grinder->qpos = rte_min_pos_4_u16(grinder->wrr_tokens);
1944 wrr_tokens_min = grinder->wrr_tokens[grinder->qpos];
1946 grinder->wrr_tokens[0] -= wrr_tokens_min;
1947 grinder->wrr_tokens[1] -= wrr_tokens_min;
1948 grinder->wrr_tokens[2] -= wrr_tokens_min;
1949 grinder->wrr_tokens[3] -= wrr_tokens_min;
1954 #error Invalid value for RTE_SCHED_WRR
1956 #endif /* RTE_SCHED_WRR */
1958 #define grinder_evict(port, pos)
1961 grinder_prefetch_pipe(struct rte_sched_port *port, uint32_t pos)
1963 struct rte_sched_grinder *grinder = port->grinder + pos;
1965 rte_prefetch0(grinder->pipe);
1966 rte_prefetch0(grinder->queue[0]);
1970 grinder_prefetch_tc_queue_arrays(struct rte_sched_port *port, uint32_t pos)
1972 struct rte_sched_grinder *grinder = port->grinder + pos;
1973 uint16_t qsize, qr[4];
1975 qsize = grinder->qsize;
1976 qr[0] = grinder->queue[0]->qr & (qsize - 1);
1977 qr[1] = grinder->queue[1]->qr & (qsize - 1);
1978 qr[2] = grinder->queue[2]->qr & (qsize - 1);
1979 qr[3] = grinder->queue[3]->qr & (qsize - 1);
1981 rte_prefetch0(grinder->qbase[0] + qr[0]);
1982 rte_prefetch0(grinder->qbase[1] + qr[1]);
1984 grinder_wrr_load(port, pos);
1985 grinder_wrr(port, pos);
1987 rte_prefetch0(grinder->qbase[2] + qr[2]);
1988 rte_prefetch0(grinder->qbase[3] + qr[3]);
1992 grinder_prefetch_mbuf(struct rte_sched_port *port, uint32_t pos)
1994 struct rte_sched_grinder *grinder = port->grinder + pos;
1995 uint32_t qpos = grinder->qpos;
1996 struct rte_mbuf **qbase = grinder->qbase[qpos];
1997 uint16_t qsize = grinder->qsize;
1998 uint16_t qr = grinder->queue[qpos]->qr & (qsize - 1);
2000 grinder->pkt = qbase[qr];
2001 rte_prefetch0(grinder->pkt);
2003 if (unlikely((qr & 0x7) == 7)) {
2004 uint16_t qr_next = (grinder->queue[qpos]->qr + 1) & (qsize - 1);
2006 rte_prefetch0(qbase + qr_next);
2010 static inline uint32_t
2011 grinder_handle(struct rte_sched_port *port, uint32_t pos)
2013 struct rte_sched_grinder *grinder = port->grinder + pos;
2015 switch (grinder->state) {
2016 case e_GRINDER_PREFETCH_PIPE:
2018 if (grinder_next_pipe(port, pos)) {
2019 grinder_prefetch_pipe(port, pos);
2020 port->busy_grinders ++;
2022 grinder->state = e_GRINDER_PREFETCH_TC_QUEUE_ARRAYS;
2029 case e_GRINDER_PREFETCH_TC_QUEUE_ARRAYS:
2031 struct rte_sched_pipe *pipe = grinder->pipe;
2033 grinder->pipe_params = port->pipe_profiles + pipe->profile;
2034 grinder_prefetch_tc_queue_arrays(port, pos);
2035 grinder_credits_update(port, pos);
2037 grinder->state = e_GRINDER_PREFETCH_MBUF;
2041 case e_GRINDER_PREFETCH_MBUF:
2043 grinder_prefetch_mbuf(port, pos);
2045 grinder->state = e_GRINDER_READ_MBUF;
2049 case e_GRINDER_READ_MBUF:
2051 uint32_t result = 0;
2053 result = grinder_schedule(port, pos);
2055 /* Look for next packet within the same TC */
2056 if (result && grinder->qmask) {
2057 grinder_wrr(port, pos);
2058 grinder_prefetch_mbuf(port, pos);
2062 grinder_wrr_store(port, pos);
2064 /* Look for another active TC within same pipe */
2065 if (grinder_next_tc(port, pos)) {
2066 grinder_prefetch_tc_queue_arrays(port, pos);
2068 grinder->state = e_GRINDER_PREFETCH_MBUF;
2071 if ((grinder->productive == 0) && (port->pipe_loop == RTE_SCHED_PIPE_INVALID)) {
2072 port->pipe_loop = grinder->pindex;
2074 grinder_evict(port, pos);
2076 /* Look for another active pipe */
2077 if (grinder_next_pipe(port, pos)) {
2078 grinder_prefetch_pipe(port, pos);
2080 grinder->state = e_GRINDER_PREFETCH_TC_QUEUE_ARRAYS;
2084 /* No active pipe found */
2085 port->busy_grinders --;
2087 grinder->state = e_GRINDER_PREFETCH_PIPE;
2092 rte_panic("Algorithmic error (invalid state)\n");
2098 rte_sched_port_time_resync(struct rte_sched_port *port)
2100 uint64_t cycles = rte_get_tsc_cycles();
2101 uint64_t cycles_diff = cycles - port->time_cpu_cycles;
2102 double bytes_diff = ((double) cycles_diff) / port->cycles_per_byte;
2104 /* Advance port time */
2105 port->time_cpu_cycles = cycles;
2106 port->time_cpu_bytes += (uint64_t) bytes_diff;
2107 if (port->time < port->time_cpu_bytes) {
2108 port->time = port->time_cpu_bytes;
2111 /* Reset pipe loop detection */
2112 port->pipe_loop = RTE_SCHED_PIPE_INVALID;
2116 rte_sched_port_exceptions(struct rte_sched_port *port, int second_pass)
2120 /* Check if any exception flag is set */
2121 exceptions = (second_pass && port->busy_grinders == 0) ||
2122 (port->pipe_exhaustion == 1);
2124 /* Clear exception flags */
2125 port->pipe_exhaustion = 0;
2131 rte_sched_port_dequeue(struct rte_sched_port *port, struct rte_mbuf **pkts, uint32_t n_pkts)
2135 port->pkts_out = pkts;
2136 port->n_pkts_out = 0;
2138 rte_sched_port_time_resync(port);
2140 /* Take each queue in the grinder one step further */
2141 for (i = 0, count = 0; ; i ++) {
2142 count += grinder_handle(port, i & (RTE_SCHED_PORT_N_GRINDERS - 1));
2143 if ((count == n_pkts) ||
2144 rte_sched_port_exceptions(port, i >= RTE_SCHED_PORT_N_GRINDERS)) {