4 * Copyright (c) 2015-2016 Amazon.com, Inc. or its affiliates.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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
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.
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.
34 #ifndef _ENA_ETHDEV_H_
35 #define _ENA_ETHDEV_H_
37 #include <rte_cycles.h>
39 #include <rte_bus_pci.h>
40 #include <rte_timer.h>
44 #define ENA_REGS_BAR 0
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
52 #define ENA_MIN_MTU 128
54 #define ENA_MMIO_DISABLE_REG_READ BIT(0)
56 #define ENA_WD_TIMEOUT_SEC 3
57 #define ENA_DEVICE_KALIVE_TIMEOUT (ENA_WD_TIMEOUT_SEC * rte_get_timer_hz())
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];
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;
108 enum ena_ring_type type;
109 enum ena_admin_placement_policy_type tx_mem_queue_type;
110 /* Holds the empty requests for TX/RX OOO completions */
112 uint16_t *empty_tx_reqs;
113 uint16_t *empty_rx_reqs;
117 struct ena_tx_buffer *tx_buffer_info; /* contex of tx packet */
118 struct rte_mbuf **rx_buffer_info; /* contex of rx packet */
120 struct rte_mbuf **rx_refill_buffer;
121 unsigned int ring_size; /* number of tx/rx_buffer_info's entries */
123 struct ena_com_io_cq *ena_com_io_cq;
124 struct ena_com_io_sq *ena_com_io_sq;
126 struct ena_com_rx_buf_info ena_bufs[ENA_PKT_MAX_BUFS]
129 struct rte_mempool *mb_pool;
130 unsigned int port_id;
132 /* Max length PMD can push to device for LLQ */
133 uint8_t tx_max_header_size;
136 uint8_t *push_buf_intermediate_buf;
138 struct ena_adapter *adapter;
143 struct ena_stats_rx rx_stats;
144 struct ena_stats_tx tx_stats;
147 unsigned int numa_socket_id;
148 } __rte_cache_aligned;
150 enum ena_adapter_state {
151 ENA_ADAPTER_STATE_FREE = 0,
152 ENA_ADAPTER_STATE_INIT = 1,
153 ENA_ADAPTER_STATE_RUNNING = 2,
154 ENA_ADAPTER_STATE_STOPPED = 3,
155 ENA_ADAPTER_STATE_CONFIG = 4,
156 ENA_ADAPTER_STATE_CLOSED = 5,
159 struct ena_driver_stats {
160 rte_atomic64_t ierrors;
161 rte_atomic64_t oerrors;
162 rte_atomic64_t rx_nombuf;
163 rte_atomic64_t rx_drops;
166 struct ena_stats_dev {
172 struct ena_offloads {
174 bool tx_csum_supported;
175 bool rx_csum_supported;
178 /* board specific private data structure */
180 /* OS defined structs */
181 struct rte_pci_device *pdev;
182 struct rte_eth_dev_data *rte_eth_dev_data;
183 struct rte_eth_dev *rte_dev;
185 struct ena_com_dev ena_dev __rte_cache_aligned;
188 struct ena_ring tx_ring[ENA_MAX_NUM_QUEUES] __rte_cache_aligned;
193 struct ena_ring rx_ring[ENA_MAX_NUM_QUEUES] __rte_cache_aligned;
199 struct ena_offloads offloads;
202 char name[ENA_NAME_MAX_LEN];
203 u8 mac_addr[RTE_ETHER_ADDR_LEN];
208 struct ena_driver_stats *drv_stats;
209 enum ena_adapter_state state;
211 uint64_t tx_supported_offloads;
212 uint64_t tx_selected_offloads;
213 uint64_t rx_supported_offloads;
214 uint64_t rx_selected_offloads;
218 enum ena_regs_reset_reason_types reset_reason;
220 struct rte_timer timer_wd;
221 uint64_t timestamp_wd;
222 uint64_t keep_alive_timeout;
224 struct ena_stats_dev dev_stats;
231 #endif /* _ENA_ETHDEV_H_ */