net/ena: add HW queues depth setup
[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_ring {
83         u16 next_to_use;
84         u16 next_to_clean;
85
86         enum ena_ring_type type;
87         enum ena_admin_placement_policy_type tx_mem_queue_type;
88         /* Holds the empty requests for TX/RX OOO completions */
89         union {
90                 uint16_t *empty_tx_reqs;
91                 uint16_t *empty_rx_reqs;
92         };
93
94         union {
95                 struct ena_tx_buffer *tx_buffer_info; /* contex of tx packet */
96                 struct rte_mbuf **rx_buffer_info; /* contex of rx packet */
97         };
98         struct rte_mbuf **rx_refill_buffer;
99         unsigned int ring_size; /* number of tx/rx_buffer_info's entries */
100
101         struct ena_com_io_cq *ena_com_io_cq;
102         struct ena_com_io_sq *ena_com_io_sq;
103
104         struct ena_com_rx_buf_info ena_bufs[ENA_PKT_MAX_BUFS]
105                                                 __rte_cache_aligned;
106
107         struct rte_mempool *mb_pool;
108         unsigned int port_id;
109         unsigned int id;
110         /* Max length PMD can push to device for LLQ */
111         uint8_t tx_max_header_size;
112         int configured;
113         struct ena_adapter *adapter;
114         uint64_t offloads;
115         u16 sgl_size;
116 } __rte_cache_aligned;
117
118 enum ena_adapter_state {
119         ENA_ADAPTER_STATE_FREE    = 0,
120         ENA_ADAPTER_STATE_INIT    = 1,
121         ENA_ADAPTER_STATE_RUNNING = 2,
122         ENA_ADAPTER_STATE_STOPPED = 3,
123         ENA_ADAPTER_STATE_CONFIG  = 4,
124         ENA_ADAPTER_STATE_CLOSED  = 5,
125 };
126
127 struct ena_driver_stats {
128         rte_atomic64_t ierrors;
129         rte_atomic64_t oerrors;
130         rte_atomic64_t rx_nombuf;
131 };
132
133 struct ena_stats_dev {
134         u64 tx_timeout;
135         u64 io_suspend;
136         u64 io_resume;
137         u64 wd_expired;
138         u64 interface_up;
139         u64 interface_down;
140         u64 admin_q_pause;
141 };
142
143 struct ena_stats_tx {
144         u64 cnt;
145         u64 bytes;
146         u64 queue_stop;
147         u64 prepare_ctx_err;
148         u64 queue_wakeup;
149         u64 dma_mapping_err;
150         u64 linearize;
151         u64 linearize_failed;
152         u64 tx_poll;
153         u64 doorbells;
154         u64 missing_tx_comp;
155         u64 bad_req_id;
156 };
157
158 struct ena_stats_rx {
159         u64 cnt;
160         u64 bytes;
161         u64 refil_partial;
162         u64 bad_csum;
163         u64 page_alloc_fail;
164         u64 skb_alloc_fail;
165         u64 dma_mapping_err;
166         u64 bad_desc_num;
167         u64 small_copy_len_pkt;
168 };
169
170 /* board specific private data structure */
171 struct ena_adapter {
172         /* OS defined structs */
173         struct rte_pci_device *pdev;
174         struct rte_eth_dev_data *rte_eth_dev_data;
175         struct rte_eth_dev *rte_dev;
176
177         struct ena_com_dev ena_dev __rte_cache_aligned;
178
179         /* TX */
180         struct ena_ring tx_ring[ENA_MAX_NUM_QUEUES] __rte_cache_aligned;
181         int tx_ring_size;
182         u16 max_tx_sgl_size;
183
184         /* RX */
185         struct ena_ring rx_ring[ENA_MAX_NUM_QUEUES] __rte_cache_aligned;
186         int rx_ring_size;
187         u16 max_rx_sgl_size;
188
189         u16 num_queues;
190         u16 max_mtu;
191         u8 tso4_supported;
192
193         int id_number;
194         char name[ENA_NAME_MAX_LEN];
195         u8 mac_addr[ETHER_ADDR_LEN];
196
197         void *regs;
198         void *dev_mem_base;
199
200         struct ena_driver_stats *drv_stats;
201         enum ena_adapter_state state;
202
203         uint64_t tx_supported_offloads;
204         uint64_t tx_selected_offloads;
205         uint64_t rx_supported_offloads;
206         uint64_t rx_selected_offloads;
207
208         bool link_status;
209
210         enum ena_regs_reset_reason_types reset_reason;
211
212         struct rte_timer timer_wd;
213         uint64_t timestamp_wd;
214         uint64_t keep_alive_timeout;
215
216         bool trigger_reset;
217
218         bool wd_state;
219 };
220
221 #endif /* _ENA_ETHDEV_H_ */