2d25e65ad1bc436ee18026b00280d045418f0584
[dpdk.git] / drivers / net / szedata2 / szedata2_iobuf.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright (c) 2017 CESNET
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
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
16  *       distribution.
17  *     * Neither the name of CESNET 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.
20  *
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.
32  */
33
34 #include <stdint.h>
35
36 #include <rte_common.h>
37
38 #include "szedata2_iobuf.h"
39
40 /*
41  * IBUFs and OBUFs can generally be located at different offsets in different
42  * firmwares.
43  * This part defines base offsets of IBUFs and OBUFs through various firmwares.
44  * Currently one firmware type is supported.
45  * Type of firmware is set through configuration option
46  * CONFIG_RTE_LIBRTE_PMD_SZEDATA2_AS.
47  * Possible values are:
48  * 0 - for firmwares:
49  *     NIC_100G1_LR4
50  *     HANIC_100G1_LR4
51  *     HANIC_100G1_SR10
52  */
53 #if !defined(RTE_LIBRTE_PMD_SZEDATA2_AS)
54 #error "RTE_LIBRTE_PMD_SZEDATA2_AS has to be defined"
55 #elif RTE_LIBRTE_PMD_SZEDATA2_AS == 0
56
57 const uint32_t szedata2_ibuf_base_table[] = {
58         0x8000
59 };
60 const uint32_t szedata2_obuf_base_table[] = {
61         0x9000
62 };
63
64 #else
65 #error "RTE_LIBRTE_PMD_SZEDATA2_AS has wrong value, see comments in config file"
66 #endif
67
68 const uint32_t szedata2_ibuf_count = RTE_DIM(szedata2_ibuf_base_table);
69 const uint32_t szedata2_obuf_count = RTE_DIM(szedata2_obuf_base_table);