New upstream version 17.11.1
[deb_dpdk.git] / drivers / net / mrvl / mrvl_ethdev.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2017 Marvell International Ltd.
5  *   Copyright(c) 2017 Semihalf.
6  *   All rights reserved.
7  *
8  *   Redistribution and use in source and binary forms, with or without
9  *   modification, are permitted provided that the following conditions
10  *   are met:
11  *
12  *     * Redistributions of source code must retain the above copyright
13  *       notice, this list of conditions and the following disclaimer.
14  *     * Redistributions in binary form must reproduce the above copyright
15  *       notice, this list of conditions and the following disclaimer in
16  *       the documentation and/or other materials provided with the
17  *       distribution.
18  *     * Neither the name of the copyright holder nor the names of its
19  *       contributors may be used to endorse or promote products derived
20  *       from this software without specific prior written permission.
21  *
22  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
26  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33  */
34
35 #ifndef _MRVL_ETHDEV_H_
36 #define _MRVL_ETHDEV_H_
37
38 #include <rte_spinlock.h>
39 #include <drivers/mv_pp2_cls.h>
40 #include <drivers/mv_pp2_ppio.h>
41
42 /** Maximum number of rx queues per port */
43 #define MRVL_PP2_RXQ_MAX 32
44
45 /** Maximum number of tx queues per port */
46 #define MRVL_PP2_TXQ_MAX 8
47
48 /** Minimum number of descriptors in tx queue */
49 #define MRVL_PP2_TXD_MIN 16
50
51 /** Maximum number of descriptors in tx queue */
52 #define MRVL_PP2_TXD_MAX 2048
53
54 /** Tx queue descriptors alignment */
55 #define MRVL_PP2_TXD_ALIGN 16
56
57 /** Minimum number of descriptors in rx queue */
58 #define MRVL_PP2_RXD_MIN 16
59
60 /** Maximum number of descriptors in rx queue */
61 #define MRVL_PP2_RXD_MAX 2048
62
63 /** Rx queue descriptors alignment */
64 #define MRVL_PP2_RXD_ALIGN 16
65
66 /** Maximum number of descriptors in tx aggregated queue */
67 #define MRVL_PP2_AGGR_TXQD_MAX 2048
68
69 /** Maximum number of Traffic Classes. */
70 #define MRVL_PP2_TC_MAX 8
71
72 /** Packet offset inside RX buffer. */
73 #define MRVL_PKT_OFFS 64
74
75 /** Maximum number of descriptors in shadow queue. Must be power of 2 */
76 #define MRVL_PP2_TX_SHADOWQ_SIZE MRVL_PP2_TXD_MAX
77
78 /** Shadow queue size mask (since shadow queue size is power of 2) */
79 #define MRVL_PP2_TX_SHADOWQ_MASK (MRVL_PP2_TX_SHADOWQ_SIZE - 1)
80
81 /** Minimum number of sent buffers to release from shadow queue to BM */
82 #define MRVL_PP2_BUF_RELEASE_BURST_SIZE 64
83
84 struct mrvl_priv {
85         /* Hot fields, used in fast path. */
86         struct pp2_bpool *bpool;  /**< BPool pointer */
87         struct pp2_ppio *ppio;    /**< Port handler pointer */
88         rte_spinlock_t lock;      /**< Spinlock for checking bpool status */
89         uint16_t bpool_max_size;  /**< BPool maximum size */
90         uint16_t bpool_min_size;  /**< BPool minimum size  */
91         uint16_t bpool_init_size; /**< Configured BPool size  */
92
93         /** Mapping for DPDK rx queue->(TC, MRVL relative inq) */
94         struct {
95                 uint8_t tc;  /**< Traffic Class */
96                 uint8_t inq; /**< Relative in-queue number */
97         } rxq_map[MRVL_PP2_RXQ_MAX] __rte_cache_aligned;
98
99         /* Configuration data, used sporadically. */
100         uint8_t pp_id;
101         uint8_t ppio_id;
102         uint8_t bpool_bit;
103         uint8_t rss_hf_tcp;
104         uint8_t uc_mc_flushed;
105         uint8_t vlan_flushed;
106
107         struct pp2_ppio_params ppio_params;
108         struct pp2_cls_qos_tbl_params qos_tbl_params;
109         struct pp2_cls_tbl *qos_tbl;
110         uint16_t nb_rx_queues;
111 };
112
113 #endif /* _MRVL_ETHDEV_H_ */