net/ena: add per-queue software counters stats
[dpdk.git] / drivers / net / ena / ena_ethdev.h
1 /*-
2 * BSD LICENSE
3 *
4 * Copyright (c) 2015-2016 Amazon.com, Inc. or its affiliates.
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 copyright holder 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 #ifndef _ENA_ETHDEV_H_
35 #define _ENA_ETHDEV_H_
36
37 #include <rte_cycles.h>
38 #include <rte_pci.h>
39 #include <rte_bus_pci.h>
40 #include <rte_timer.h>
41
42 #include "ena_com.h"
43
44 #define ENA_REGS_BAR    0
45 #define ENA_MEM_BAR     2
46
47 #define ENA_MAX_NUM_QUEUES      128
48 #define ENA_MIN_FRAME_LEN       64
49 #define ENA_NAME_MAX_LEN        20
50 #define ENA_PKT_MAX_BUFS        17
51
52 #define ENA_MIN_MTU             128
53
54 #define ENA_MMIO_DISABLE_REG_READ       BIT(0)
55
56 #define ENA_WD_TIMEOUT_SEC      3
57 #define ENA_DEVICE_KALIVE_TIMEOUT (ENA_WD_TIMEOUT_SEC * rte_get_timer_hz())
58
59 struct ena_adapter;
60
61 enum ena_ring_type {
62         ENA_RING_TYPE_RX = 1,
63         ENA_RING_TYPE_TX = 2,
64 };
65
66 struct ena_tx_buffer {
67         struct rte_mbuf *mbuf;
68         unsigned int tx_descs;
69         unsigned int num_of_bufs;
70         struct ena_com_buf bufs[ENA_PKT_MAX_BUFS];
71 };
72
73 struct ena_calc_queue_size_ctx {
74         struct ena_com_dev_get_features_ctx *get_feat_ctx;
75         struct ena_com_dev *ena_dev;
76         u16 rx_queue_size;
77         u16 tx_queue_size;
78         u16 max_tx_sgl_size;
79         u16 max_rx_sgl_size;
80 };
81
82 struct ena_stats_tx {
83         u64 cnt;
84         u64 bytes;
85         u64 queue_stop;
86         u64 prepare_ctx_err;
87         u64 queue_wakeup;
88         u64 dma_mapping_err;
89         u64 linearize;
90         u64 linearize_failed;
91         u64 tx_poll;
92         u64 doorbells;
93         u64 missing_tx_comp;
94         u64 bad_req_id;
95 };
96
97 struct ena_stats_rx {
98         u64 cnt;
99         u64 bytes;
100         u64 refil_partial;
101         u64 bad_csum;
102         u64 page_alloc_fail;
103         u64 skb_alloc_fail;
104         u64 dma_mapping_err;
105         u64 bad_desc_num;
106         u64 small_copy_len_pkt;
107         u64 bad_req_id;
108 };
109
110 struct ena_ring {
111         u16 next_to_use;
112         u16 next_to_clean;
113
114         enum ena_ring_type type;
115         enum ena_admin_placement_policy_type tx_mem_queue_type;
116         /* Holds the empty requests for TX/RX OOO completions */
117         union {
118                 uint16_t *empty_tx_reqs;
119                 uint16_t *empty_rx_reqs;
120         };
121
122         union {
123                 struct ena_tx_buffer *tx_buffer_info; /* contex of tx packet */
124                 struct rte_mbuf **rx_buffer_info; /* contex of rx packet */
125         };
126         struct rte_mbuf **rx_refill_buffer;
127         unsigned int ring_size; /* number of tx/rx_buffer_info's entries */
128
129         struct ena_com_io_cq *ena_com_io_cq;
130         struct ena_com_io_sq *ena_com_io_sq;
131
132         struct ena_com_rx_buf_info ena_bufs[ENA_PKT_MAX_BUFS]
133                                                 __rte_cache_aligned;
134
135         struct rte_mempool *mb_pool;
136         unsigned int port_id;
137         unsigned int id;
138         /* Max length PMD can push to device for LLQ */
139         uint8_t tx_max_header_size;
140         int configured;
141
142         uint8_t *push_buf_intermediate_buf;
143
144         struct ena_adapter *adapter;
145         uint64_t offloads;
146         u16 sgl_size;
147
148         union {
149                 struct ena_stats_rx rx_stats;
150                 struct ena_stats_tx tx_stats;
151         };
152 } __rte_cache_aligned;
153
154 enum ena_adapter_state {
155         ENA_ADAPTER_STATE_FREE    = 0,
156         ENA_ADAPTER_STATE_INIT    = 1,
157         ENA_ADAPTER_STATE_RUNNING = 2,
158         ENA_ADAPTER_STATE_STOPPED = 3,
159         ENA_ADAPTER_STATE_CONFIG  = 4,
160         ENA_ADAPTER_STATE_CLOSED  = 5,
161 };
162
163 struct ena_driver_stats {
164         rte_atomic64_t ierrors;
165         rte_atomic64_t oerrors;
166         rte_atomic64_t rx_nombuf;
167 };
168
169 struct ena_stats_dev {
170         u64 tx_timeout;
171         u64 io_suspend;
172         u64 io_resume;
173         u64 wd_expired;
174         u64 interface_up;
175         u64 interface_down;
176         u64 admin_q_pause;
177 };
178
179 /* board specific private data structure */
180 struct ena_adapter {
181         /* OS defined structs */
182         struct rte_pci_device *pdev;
183         struct rte_eth_dev_data *rte_eth_dev_data;
184         struct rte_eth_dev *rte_dev;
185
186         struct ena_com_dev ena_dev __rte_cache_aligned;
187
188         /* TX */
189         struct ena_ring tx_ring[ENA_MAX_NUM_QUEUES] __rte_cache_aligned;
190         int tx_ring_size;
191         u16 max_tx_sgl_size;
192
193         /* RX */
194         struct ena_ring rx_ring[ENA_MAX_NUM_QUEUES] __rte_cache_aligned;
195         int rx_ring_size;
196         u16 max_rx_sgl_size;
197
198         u16 num_queues;
199         u16 max_mtu;
200         u8 tso4_supported;
201
202         int id_number;
203         char name[ENA_NAME_MAX_LEN];
204         u8 mac_addr[ETHER_ADDR_LEN];
205
206         void *regs;
207         void *dev_mem_base;
208
209         struct ena_driver_stats *drv_stats;
210         enum ena_adapter_state state;
211
212         uint64_t tx_supported_offloads;
213         uint64_t tx_selected_offloads;
214         uint64_t rx_supported_offloads;
215         uint64_t rx_selected_offloads;
216
217         bool link_status;
218
219         enum ena_regs_reset_reason_types reset_reason;
220
221         struct rte_timer timer_wd;
222         uint64_t timestamp_wd;
223         uint64_t keep_alive_timeout;
224
225         bool trigger_reset;
226
227         bool wd_state;
228 };
229
230 #endif /* _ENA_ETHDEV_H_ */