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.
36 #include <rte_random.h>
37 #include <rte_common.h>
39 #ifdef __INTEL_COMPILER
40 #pragma warning(disable:2259) /* conversion may lose significant bits */
43 static int rte_red_init_done = 0; /**< Flag to indicate that global initialisation is done */
44 uint32_t rte_red_rand_val = 0; /**< Random value cache */
45 uint32_t rte_red_rand_seed = 0; /**< Seed for random number generation */
48 * table[i] = log2(1-Wq) * Scale * -1
51 uint16_t rte_red_log2_1_minus_Wq[RTE_RED_WQ_LOG2_NUM];
54 * table[i] = 2^(i/16) * Scale
56 uint16_t rte_red_pow2_frac_inv[16];
59 * @brief Initialize tables used to compute average
60 * queue size when queue is empty.
63 __rte_red_init_tables(void)
67 double table_size = 0.0;
69 scale = (double)(1 << RTE_RED_SCALING);
70 table_size = (double)(RTE_DIM(rte_red_pow2_frac_inv));
72 for (i = 0; i < RTE_DIM(rte_red_pow2_frac_inv); i++) {
75 rte_red_pow2_frac_inv[i] = (uint16_t) round(scale / pow(2, m / table_size));
80 RTE_ASSERT(RTE_RED_WQ_LOG2_NUM == RTE_DIM(rte_red_log2_1_minus_Wq));
82 for (i = RTE_RED_WQ_LOG2_MIN; i <= RTE_RED_WQ_LOG2_MAX; i++) {
84 double Wq = pow(2, -n);
85 uint32_t index = i - RTE_RED_WQ_LOG2_MIN;
87 rte_red_log2_1_minus_Wq[index] = (uint16_t) round(-1.0 * scale * log2(1.0 - Wq));
89 * Table entry of zero, corresponds to a Wq of zero
90 * which is not valid (avg would remain constant no
91 * matter how long the queue is empty). So we have
92 * to check for zero and round up to one.
94 if (rte_red_log2_1_minus_Wq[index] == 0) {
95 rte_red_log2_1_minus_Wq[index] = 1;
101 rte_red_rt_data_init(struct rte_red *red)
113 rte_red_config_init(struct rte_red_config *red_cfg,
114 const uint16_t wq_log2,
115 const uint16_t min_th,
116 const uint16_t max_th,
117 const uint16_t maxp_inv)
119 if (red_cfg == NULL) {
122 if (max_th > RTE_RED_MAX_TH_MAX) {
125 if (min_th >= max_th) {
128 if (wq_log2 > RTE_RED_WQ_LOG2_MAX) {
131 if (wq_log2 < RTE_RED_WQ_LOG2_MIN) {
134 if (maxp_inv < RTE_RED_MAXP_INV_MIN) {
137 if (maxp_inv > RTE_RED_MAXP_INV_MAX) {
142 * Initialize the RED module if not already done
144 if (!rte_red_init_done) {
145 rte_red_rand_seed = rte_rand();
146 rte_red_rand_val = rte_fast_rand();
147 __rte_red_init_tables();
148 rte_red_init_done = 1;
151 red_cfg->min_th = ((uint32_t) min_th) << (wq_log2 + RTE_RED_SCALING);
152 red_cfg->max_th = ((uint32_t) max_th) << (wq_log2 + RTE_RED_SCALING);
153 red_cfg->pa_const = (2 * (max_th - min_th) * maxp_inv) << RTE_RED_SCALING;
154 red_cfg->maxp_inv = maxp_inv;
155 red_cfg->wq_log2 = wq_log2;