summaryrefslogtreecommitdiffstats
path: root/test/test_acl_plugin_l2l3.py
AgeCommit message (Expand)AuthorFilesLines
2017-04-20Clean up old datapath code in ACL plugin.Andrew Yourtchenko1-48/+0
2017-04-06acl-plugin: make the IPv4/IPv6 non-first fragment handling in line with ACL (...Andrew Yourtchenko1-3/+48
2017-03-21ACL plugin 1.2Andrew Yourtchenko1-0/+722
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
/*-
 *   BSD LICENSE
 *
 *   Copyright (c) 2017 CESNET
 *   All rights reserved.
 *
 *   Redistribution and use in source and binary forms, with or without
 *   modification, are permitted provided that the following conditions
 *   are met:
 *
 *     * Redistributions of source code must retain the above copyright
 *       notice, this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above copyright
 *       notice, this list of conditions and the following disclaimer in
 *       the documentation and/or other materials provided with the
 *       distribution.
 *     * Neither the name of CESNET nor the names of its
 *       contributors may be used to endorse or promote products derived
 *       from this software without specific prior written permission.
 *
 *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include <stdint.h>

#include <rte_common.h>

#include "szedata2_iobuf.h"

/*
 * IBUFs and OBUFs can generally be located at different offsets in different
 * firmwares (modes).
 * This part defines base offsets of IBUFs and OBUFs for various cards
 * and firmwares (modes).
 * Type of firmware (mode) is set through configuration option
 * CONFIG_RTE_LIBRTE_PMD_SZEDATA2_AS.
 * Possible values are:
 * 0 - for cards (modes):
 *     NFB-100G1 (100G1)
 *
 * 1 - for cards (modes):
 *     NFB-100G2Q (100G1)
 *
 * 2 - for cards (modes):
 *     NFB-40G2 (40G2)
 *     NFB-100G2C (100G2)
 *     NFB-100G2Q (40G2)
 *
 * 3 - for cards (modes):
 *     NFB-40G2 (10G8)
 *     NFB-100G2Q (10G8)
 *
 * 4 - for cards (modes):
 *     NFB-100G1 (10G10)
 *
 * 5 - for experimental firmwares and future use
 */
#if !defined(RTE_LIBRTE_PMD_SZEDATA2_AS)
#error "RTE_LIBRTE_PMD_SZEDATA2_AS has to be defined"
#elif RTE_LIBRTE_PMD_SZEDATA2_AS == 0

/*
 * Cards (modes):
 *     NFB-100G1 (100G1)
 */

const uint32_t szedata2_ibuf_base_table[] = {
	0x8000
};
const uint32_t szedata2_obuf_base_table[] = {
	0x9000
};

#elif RTE_LIBRTE_PMD_SZEDATA2_AS == 1

/*
 * Cards (modes):
 *     NFB-100G2Q (100G1)
 */

const uint32_t szedata2_ibuf_base_table[] = {
	0x8800
};
const uint32_t szedata2_obuf_base_table[] = {
	0x9800
};

#elif RTE_LIBRTE_PMD_SZEDATA2_AS == 2

/*
 * Cards (modes):
 *     NFB-40G2 (40G2)
 *     NFB-100G2C (100G2)
 *     NFB-100G2Q (40G2)
 */

const uint32_t szedata2_ibuf_base_table[] = {
	0x8000,
	0x8800
};
const uint32_t szedata2_obuf_base_table[] = {
	0x9000,
	0x9800
};

#elif RTE_LIBRTE_PMD_SZEDATA2_AS == 3

/*
 * Cards (modes):
 *     NFB-40G2 (10G8)
 *     NFB-100G2Q (10G8)
 */

const uint32_t szedata2_ibuf_base_table[] = {
	0x8000,
	0x8200,
	0x8400,
	0x8600,
	0x8800,
	0x8A00,
	0x8C00,
	0x8E00
};
const uint32_t szedata2_obuf_base_table[] = {
	0x9000,
	0x9200,
	0x9400,
	0x9600,
	0x9800,
	0x9A00,
	0x9C00,
	0x9E00
};

#elif RTE_LIBRTE_PMD_SZEDATA2_AS == 4

/*
 * Cards (modes):
 *     NFB-100G1 (10G10)
 */

const uint32_t szedata2_ibuf_base_table[] = {
	0x8000,
	0x8200,
	0x8400,
	0x8600,
	0x8800,
	0x8A00,
	0x8C00,
	0x8E00,
	0x9000,
	0x9200
};
const uint32_t szedata2_obuf_base_table[] = {
	0xA000,
	0xA200,
	0xA400,
	0xA600,
	0xA800,
	0xAA00,
	0xAC00,
	0xAE00,
	0xB000,
	0xB200
};

#elif RTE_LIBRTE_PMD_SZEDATA2_AS == 5

/*
 * Future use and experimental firmwares.
 */

const uint32_t szedata2_ibuf_base_table[] = {
	0x8000,
	0x8200,
	0x8400,
	0x8600,
	0x8800
};
const uint32_t szedata2_obuf_base_table[] = {
	0x9000,
	0x9200,
	0x9400,
	0x9600,
	0x9800
};

#else
#error "RTE_LIBRTE_PMD_SZEDATA2_AS has wrong value, see comments in config file"
#endif

const uint32_t szedata2_ibuf_count = RTE_DIM(szedata2_ibuf_base_table);
const uint32_t szedata2_obuf_count = RTE_DIM(szedata2_obuf_base_table);