2 * Copyright 2015 Amazon.com, Inc. or its affiliates.
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36 #include <linux/bitops.h>
37 #include <linux/dim.h>
38 #include <linux/etherdevice.h>
39 #include <linux/if_vlan.h>
40 #include <linux/inetdevice.h>
41 #include <linux/interrupt.h>
42 #include <linux/netdevice.h>
43 #include <linux/skbuff.h>
46 #include "ena_eth_com.h"
48 #define DRV_MODULE_VER_MAJOR 2
49 #define DRV_MODULE_VER_MINOR 1
50 #define DRV_MODULE_VER_SUBMINOR 0
52 #define DRV_MODULE_NAME "ena"
53 #ifndef DRV_MODULE_VERSION
54 #define DRV_MODULE_VERSION \
55 __stringify(DRV_MODULE_VER_MAJOR) "." \
56 __stringify(DRV_MODULE_VER_MINOR) "." \
57 __stringify(DRV_MODULE_VER_SUBMINOR) "K"
60 #define DEVICE_NAME "Elastic Network Adapter (ENA)"
62 /* 1 for AENQ + ADMIN */
63 #define ENA_ADMIN_MSIX_VEC 1
64 #define ENA_MAX_MSIX_VEC(io_queues) (ENA_ADMIN_MSIX_VEC + (io_queues))
66 /* The ENA buffer length fields is 16 bit long. So when PAGE_SIZE == 64kB the
68 * Since the max packet size the ENA handles is ~9kB limit the buffer length to
71 #if PAGE_SIZE > SZ_16K
72 #define ENA_PAGE_SIZE SZ_16K
74 #define ENA_PAGE_SIZE PAGE_SIZE
77 #define ENA_MIN_MSIX_VEC 2
81 #define ENA_BAR_MASK (BIT(ENA_REG_BAR) | BIT(ENA_MEM_BAR))
83 #define ENA_DEFAULT_RING_SIZE (1024)
84 #define ENA_MIN_RING_SIZE (256)
86 #define ENA_MIN_NUM_IO_QUEUES (1)
88 #define ENA_TX_WAKEUP_THRESH (MAX_SKB_FRAGS + 2)
89 #define ENA_DEFAULT_RX_COPYBREAK (256 - NET_IP_ALIGN)
91 /* limit the buffer size to 600 bytes to handle MTU changes from very
92 * small to very large, in which case the number of buffers per packet
93 * could exceed ENA_PKT_MAX_BUFS
95 #define ENA_DEFAULT_MIN_RX_BUFF_ALLOC_SIZE 600
97 #define ENA_MIN_MTU 128
99 #define ENA_NAME_MAX_LEN 20
100 #define ENA_IRQNAME_SIZE 40
102 #define ENA_PKT_MAX_BUFS 19
104 #define ENA_RX_RSS_TABLE_LOG_SIZE 7
105 #define ENA_RX_RSS_TABLE_SIZE (1 << ENA_RX_RSS_TABLE_LOG_SIZE)
107 #define ENA_HASH_KEY_SIZE 40
109 /* The number of tx packet completions that will be handled each NAPI poll
110 * cycle is ring_size / ENA_TX_POLL_BUDGET_DIVIDER.
112 #define ENA_TX_POLL_BUDGET_DIVIDER 4
114 /* Refill Rx queue when number of required descriptors is above
115 * QUEUE_SIZE / ENA_RX_REFILL_THRESH_DIVIDER or ENA_RX_REFILL_THRESH_PACKET
117 #define ENA_RX_REFILL_THRESH_DIVIDER 8
118 #define ENA_RX_REFILL_THRESH_PACKET 256
120 /* Number of queues to check for missing queues per timer service */
121 #define ENA_MONITORED_TX_QUEUES 4
122 /* Max timeout packets before device reset */
123 #define MAX_NUM_OF_TIMEOUTED_PACKETS 128
125 #define ENA_TX_RING_IDX_NEXT(idx, ring_size) (((idx) + 1) & ((ring_size) - 1))
127 #define ENA_RX_RING_IDX_NEXT(idx, ring_size) (((idx) + 1) & ((ring_size) - 1))
128 #define ENA_RX_RING_IDX_ADD(idx, n, ring_size) \
129 (((idx) + (n)) & ((ring_size) - 1))
131 #define ENA_IO_TXQ_IDX(q) (2 * (q))
132 #define ENA_IO_RXQ_IDX(q) (2 * (q) + 1)
134 #define ENA_MGMNT_IRQ_IDX 0
135 #define ENA_IO_IRQ_FIRST_IDX 1
136 #define ENA_IO_IRQ_IDX(q) (ENA_IO_IRQ_FIRST_IDX + (q))
138 /* ENA device should send keep alive msg every 1 sec.
139 * We wait for 6 sec just to be on the safe side.
141 #define ENA_DEVICE_KALIVE_TIMEOUT (6 * HZ)
142 #define ENA_MAX_NO_INTERRUPT_ITERATIONS 3
144 #define ENA_MMIO_DISABLE_REG_READ BIT(0)
146 /* The max MTU size is configured to be the ethernet frame size without
147 * the overhead of the ethernet header, which can have a VLAN header, and
148 * a frame check sequence (FCS).
149 * The buffer size we share with the device is defined to be ENA_PAGE_SIZE
152 #define ENA_XDP_MAX_MTU (ENA_PAGE_SIZE - ETH_HLEN - ETH_FCS_LEN - \
153 VLAN_HLEN - XDP_PACKET_HEADROOM)
155 #define ENA_IS_XDP_INDEX(adapter, index) (((index) >= (adapter)->xdp_first_ring) && \
156 ((index) < (adapter)->xdp_first_ring + (adapter)->xdp_num_queues))
159 irq_handler_t handler
;
163 cpumask_t affinity_hint_mask
;
164 char name
[ENA_IRQNAME_SIZE
];
168 struct napi_struct napi ____cacheline_aligned
;
169 struct ena_ring
*tx_ring
;
170 struct ena_ring
*rx_ring
;
171 struct ena_ring
*xdp_ring
;
172 bool first_interrupt
;
177 struct ena_calc_queue_size_ctx
{
178 struct ena_com_dev_get_features_ctx
*get_feat_ctx
;
179 struct ena_com_dev
*ena_dev
;
180 struct pci_dev
*pdev
;
183 u32 max_tx_queue_size
;
184 u32 max_rx_queue_size
;
189 struct ena_tx_buffer
{
191 /* num of ena desc for this specific skb
192 * (includes data desc and metadata desc)
195 /* num of buffers used by this skb */
198 /* XDP buffer structure which is used for sending packets in
201 struct xdp_frame
*xdpf
;
202 /* The rx page for the rx buffer that was received in rx and
203 * re transmitted on xdp tx queues as a result of XDP_TX action.
204 * We need to free the page once we finished cleaning the buffer in
207 struct page
*xdp_rx_page
;
209 /* Indicate if bufs[0] map the linear data of the skb. */
212 /* Used for detect missing tx packets to limit the number of prints */
214 /* Save the last jiffies to detect missing tx packets
216 * sets to non zero value on ena_start_xmit and set to zero on
217 * napi and timer_Service_routine.
219 * while this value is not protected by lock,
220 * a given packet is not expected to be handled by ena_start_xmit
221 * and by napi/timer_service at the same time.
223 unsigned long last_jiffies
;
224 struct ena_com_buf bufs
[ENA_PKT_MAX_BUFS
];
225 } ____cacheline_aligned
;
227 struct ena_rx_buffer
{
231 struct ena_com_buf ena_buf
;
232 } ____cacheline_aligned
;
234 struct ena_stats_tx
{
242 u64 linearize_failed
;
251 struct ena_stats_rx
{
254 u64 rx_copybreak_pkt
;
268 /* Holds the empty requests for TX/RX
269 * out of order completions
274 struct ena_tx_buffer
*tx_buffer_info
;
275 struct ena_rx_buffer
*rx_buffer_info
;
278 /* cache ptr to avoid using the adapter */
280 struct pci_dev
*pdev
;
281 struct napi_struct
*napi
;
282 struct net_device
*netdev
;
283 struct ena_com_dev
*ena_dev
;
284 struct ena_adapter
*adapter
;
285 struct ena_com_io_cq
*ena_com_io_cq
;
286 struct ena_com_io_sq
*ena_com_io_sq
;
287 struct bpf_prog
*xdp_bpf_prog
;
288 struct xdp_rxq_info xdp_rxq
;
298 /* The maximum header length the device can handle */
299 u8 tx_max_header_size
;
301 bool first_interrupt
;
302 u16 no_interrupt_event_cnt
;
306 /* number of tx/rx_buffer_info's entries */
309 enum ena_admin_placement_policy_type tx_mem_queue_type
;
311 struct ena_com_rx_buf_info ena_bufs
[ENA_PKT_MAX_BUFS
];
312 u32 smoothed_interval
;
313 u32 per_napi_packets
;
314 u16 non_empty_napi_events
;
315 struct u64_stats_sync syncp
;
317 struct ena_stats_tx tx_stats
;
318 struct ena_stats_rx rx_stats
;
321 u8
*push_buf_intermediate_buf
;
323 } ____cacheline_aligned
;
325 struct ena_stats_dev
{
337 ENA_FLAG_DEVICE_RUNNING
,
340 ENA_FLAG_MSIX_ENABLED
,
341 ENA_FLAG_TRIGGER_RESET
,
342 ENA_FLAG_ONGOING_RESET
345 /* adapter specific private data structure */
347 struct ena_com_dev
*ena_dev
;
348 /* OS defined structs */
349 struct net_device
*netdev
;
350 struct pci_dev
*pdev
;
352 /* rx packets that shorter that this len will be copied to the skb
359 u32 max_num_io_queues
;
363 u32 missing_tx_completion_threshold
;
365 u32 requested_tx_ring_size
;
366 u32 requested_rx_ring_size
;
368 u32 max_tx_ring_size
;
369 u32 max_rx_ring_size
;
376 u8 mac_addr
[ETH_ALEN
];
378 unsigned long keep_alive_timeout
;
379 unsigned long missing_tx_completion_to
;
381 char name
[ENA_NAME_MAX_LEN
];
385 struct ena_ring tx_ring
[ENA_MAX_NUM_IO_QUEUES
]
386 ____cacheline_aligned_in_smp
;
389 struct ena_ring rx_ring
[ENA_MAX_NUM_IO_QUEUES
]
390 ____cacheline_aligned_in_smp
;
392 struct ena_napi ena_napi
[ENA_MAX_NUM_IO_QUEUES
];
394 struct ena_irq irq_tbl
[ENA_MAX_MSIX_VEC(ENA_MAX_NUM_IO_QUEUES
)];
397 struct work_struct reset_task
;
398 struct timer_list timer_service
;
401 bool dev_up_before_reset
;
402 unsigned long last_keep_alive_jiffies
;
404 struct u64_stats_sync syncp
;
405 struct ena_stats_dev dev_stats
;
407 /* last queue index that was checked for uncompleted tx packets */
408 u32 last_monitored_tx_qid
;
410 enum ena_regs_reset_reason_types reset_reason
;
412 struct bpf_prog
*xdp_bpf_prog
;
417 void ena_set_ethtool_ops(struct net_device
*netdev
);
419 void ena_dump_stats_to_dmesg(struct ena_adapter
*adapter
);
421 void ena_dump_stats_to_buf(struct ena_adapter
*adapter
, u8
*buf
);
423 int ena_update_queue_sizes(struct ena_adapter
*adapter
,
427 int ena_update_queue_count(struct ena_adapter
*adapter
, u32 new_channel_count
);
429 int ena_get_sset_count(struct net_device
*netdev
, int sset
);
431 enum ena_xdp_errors_t
{
433 ENA_XDP_CURRENT_MTU_TOO_LARGE
,
434 ENA_XDP_NO_ENOUGH_QUEUES
,
437 static inline bool ena_xdp_queues_present(struct ena_adapter
*adapter
)
439 return adapter
->xdp_first_ring
!= 0;
442 static inline bool ena_xdp_present(struct ena_adapter
*adapter
)
444 return !!adapter
->xdp_bpf_prog
;
447 static inline bool ena_xdp_present_ring(struct ena_ring
*ring
)
449 return !!ring
->xdp_bpf_prog
;
452 static inline int ena_xdp_legal_queue_count(struct ena_adapter
*adapter
,
455 return 2 * queues
<= adapter
->max_num_io_queues
;
458 static inline enum ena_xdp_errors_t
ena_xdp_allowed(struct ena_adapter
*adapter
)
460 enum ena_xdp_errors_t rc
= ENA_XDP_ALLOWED
;
462 if (adapter
->netdev
->mtu
> ENA_XDP_MAX_MTU
)
463 rc
= ENA_XDP_CURRENT_MTU_TOO_LARGE
;
464 else if (!ena_xdp_legal_queue_count(adapter
, adapter
->num_io_queues
))
465 rc
= ENA_XDP_NO_ENOUGH_QUEUES
;
470 #endif /* !(ENA_H) */