1 /* QLogic qed NIC Driver
2 * Copyright (c) 2015-2017 QLogic Corporation
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
8 * OpenIB.org BSD license below:
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
33 #include <linux/types.h>
34 #include <asm/byteorder.h>
35 #include <linux/dma-mapping.h>
36 #include <linux/if_vlan.h>
37 #include <linux/kernel.h>
38 #include <linux/pci.h>
39 #include <linux/slab.h>
40 #include <linux/stddef.h>
41 #include <linux/workqueue.h>
43 #include <linux/bitops.h>
44 #include <linux/delay.h>
45 #include <linux/errno.h>
46 #include <linux/etherdevice.h>
48 #include <linux/list.h>
49 #include <linux/mutex.h>
50 #include <linux/spinlock.h>
51 #include <linux/string.h>
52 #include <linux/qed/qed_ll2_if.h>
55 #include "qed_dev_api.h"
62 #include "qed_reg_addr.h"
66 #define QED_LL2_RX_REGISTERED(ll2) ((ll2)->rx_queue.b_cb_registred)
67 #define QED_LL2_TX_REGISTERED(ll2) ((ll2)->tx_queue.b_cb_registred)
69 #define QED_LL2_TX_SIZE (256)
70 #define QED_LL2_RX_SIZE (4096)
72 struct qed_cb_ll2_info
{
77 /* Lock protecting LL2 buffer lists in sleepless context */
79 struct list_head list
;
81 const struct qed_ll2_cb_ops
*cbs
;
85 struct qed_ll2_buffer
{
86 struct list_head list
;
91 static void qed_ll2b_complete_tx_packet(void *cxt
,
94 dma_addr_t first_frag_addr
,
98 struct qed_hwfn
*p_hwfn
= cxt
;
99 struct qed_dev
*cdev
= p_hwfn
->cdev
;
100 struct sk_buff
*skb
= cookie
;
102 /* All we need to do is release the mapping */
103 dma_unmap_single(&p_hwfn
->cdev
->pdev
->dev
, first_frag_addr
,
104 skb_headlen(skb
), DMA_TO_DEVICE
);
106 if (cdev
->ll2
->cbs
&& cdev
->ll2
->cbs
->tx_cb
)
107 cdev
->ll2
->cbs
->tx_cb(cdev
->ll2
->cb_cookie
, skb
,
110 dev_kfree_skb_any(skb
);
113 static int qed_ll2_alloc_buffer(struct qed_dev
*cdev
,
114 u8
**data
, dma_addr_t
*phys_addr
)
116 *data
= kmalloc(cdev
->ll2
->rx_size
, GFP_ATOMIC
);
118 DP_INFO(cdev
, "Failed to allocate LL2 buffer data\n");
122 *phys_addr
= dma_map_single(&cdev
->pdev
->dev
,
123 ((*data
) + NET_SKB_PAD
),
124 cdev
->ll2
->rx_size
, DMA_FROM_DEVICE
);
125 if (dma_mapping_error(&cdev
->pdev
->dev
, *phys_addr
)) {
126 DP_INFO(cdev
, "Failed to map LL2 buffer data\n");
134 static int qed_ll2_dealloc_buffer(struct qed_dev
*cdev
,
135 struct qed_ll2_buffer
*buffer
)
137 spin_lock_bh(&cdev
->ll2
->lock
);
139 dma_unmap_single(&cdev
->pdev
->dev
, buffer
->phys_addr
,
140 cdev
->ll2
->rx_size
, DMA_FROM_DEVICE
);
142 list_del(&buffer
->list
);
145 if (!cdev
->ll2
->rx_cnt
)
146 DP_INFO(cdev
, "All LL2 entries were removed\n");
148 spin_unlock_bh(&cdev
->ll2
->lock
);
153 static void qed_ll2_kill_buffers(struct qed_dev
*cdev
)
155 struct qed_ll2_buffer
*buffer
, *tmp_buffer
;
157 list_for_each_entry_safe(buffer
, tmp_buffer
, &cdev
->ll2
->list
, list
)
158 qed_ll2_dealloc_buffer(cdev
, buffer
);
161 void qed_ll2b_complete_rx_packet(void *cxt
, struct qed_ll2_comp_rx_data
*data
)
163 struct qed_hwfn
*p_hwfn
= cxt
;
164 struct qed_ll2_buffer
*buffer
= data
->cookie
;
165 struct qed_dev
*cdev
= p_hwfn
->cdev
;
166 dma_addr_t new_phys_addr
;
173 (NETIF_MSG_RX_STATUS
| QED_MSG_STORAGE
| NETIF_MSG_PKTDATA
),
174 "Got an LL2 Rx completion: [Buffer at phys 0x%llx, offset 0x%02x] Length 0x%04x Parse_flags 0x%04x vlan 0x%04x Opaque data [0x%08x:0x%08x]\n",
175 (u64
)data
->rx_buf_addr
,
176 data
->u
.placement_offset
,
177 data
->length
.packet_length
,
179 data
->vlan
, data
->opaque_data_0
, data
->opaque_data_1
);
181 if ((cdev
->dp_module
& NETIF_MSG_PKTDATA
) && buffer
->data
) {
182 print_hex_dump(KERN_INFO
, "",
183 DUMP_PREFIX_OFFSET
, 16, 1,
184 buffer
->data
, data
->length
.packet_length
, false);
187 /* Determine if data is valid */
188 if (data
->length
.packet_length
< ETH_HLEN
)
191 /* Allocate a replacement for buffer; Reuse upon failure */
193 rc
= qed_ll2_alloc_buffer(p_hwfn
->cdev
, &new_data
,
196 /* If need to reuse or there's no replacement buffer, repost this */
199 dma_unmap_single(&cdev
->pdev
->dev
, buffer
->phys_addr
,
200 cdev
->ll2
->rx_size
, DMA_FROM_DEVICE
);
202 skb
= build_skb(buffer
->data
, 0);
208 data
->u
.placement_offset
+= NET_SKB_PAD
;
209 skb_reserve(skb
, data
->u
.placement_offset
);
210 skb_put(skb
, data
->length
.packet_length
);
211 skb_checksum_none_assert(skb
);
213 /* Get parital ethernet information instead of eth_type_trans(),
214 * Since we don't have an associated net_device.
216 skb_reset_mac_header(skb
);
217 skb
->protocol
= eth_hdr(skb
)->h_proto
;
219 /* Pass SKB onward */
220 if (cdev
->ll2
->cbs
&& cdev
->ll2
->cbs
->rx_cb
) {
222 __vlan_hwaccel_put_tag(skb
, htons(ETH_P_8021Q
),
224 cdev
->ll2
->cbs
->rx_cb(cdev
->ll2
->cb_cookie
, skb
,
226 data
->opaque_data_1
);
229 /* Update Buffer information and update FW producer */
230 buffer
->data
= new_data
;
231 buffer
->phys_addr
= new_phys_addr
;
234 rc
= qed_ll2_post_rx_buffer(QED_LEADING_HWFN(cdev
), cdev
->ll2
->handle
,
235 buffer
->phys_addr
, 0, buffer
, 1);
238 qed_ll2_dealloc_buffer(cdev
, buffer
);
241 static struct qed_ll2_info
*__qed_ll2_handle_sanity(struct qed_hwfn
*p_hwfn
,
242 u8 connection_handle
,
246 struct qed_ll2_info
*p_ll2_conn
, *p_ret
= NULL
;
248 if (connection_handle
>= QED_MAX_NUM_OF_LL2_CONNECTIONS
)
251 if (!p_hwfn
->p_ll2_info
)
254 p_ll2_conn
= &p_hwfn
->p_ll2_info
[connection_handle
];
258 mutex_lock(&p_ll2_conn
->mutex
);
259 if (p_ll2_conn
->b_active
)
262 mutex_unlock(&p_ll2_conn
->mutex
);
270 static struct qed_ll2_info
*qed_ll2_handle_sanity(struct qed_hwfn
*p_hwfn
,
271 u8 connection_handle
)
273 return __qed_ll2_handle_sanity(p_hwfn
, connection_handle
, false, true);
276 static struct qed_ll2_info
*qed_ll2_handle_sanity_lock(struct qed_hwfn
*p_hwfn
,
277 u8 connection_handle
)
279 return __qed_ll2_handle_sanity(p_hwfn
, connection_handle
, true, true);
282 static struct qed_ll2_info
*qed_ll2_handle_sanity_inactive(struct qed_hwfn
284 u8 connection_handle
)
286 return __qed_ll2_handle_sanity(p_hwfn
, connection_handle
, false, false);
289 static void qed_ll2_txq_flush(struct qed_hwfn
*p_hwfn
, u8 connection_handle
)
291 bool b_last_packet
= false, b_last_frag
= false;
292 struct qed_ll2_tx_packet
*p_pkt
= NULL
;
293 struct qed_ll2_info
*p_ll2_conn
;
294 struct qed_ll2_tx_queue
*p_tx
;
297 p_ll2_conn
= qed_ll2_handle_sanity_inactive(p_hwfn
, connection_handle
);
301 p_tx
= &p_ll2_conn
->tx_queue
;
303 while (!list_empty(&p_tx
->active_descq
)) {
304 p_pkt
= list_first_entry(&p_tx
->active_descq
,
305 struct qed_ll2_tx_packet
, list_entry
);
309 list_del(&p_pkt
->list_entry
);
310 b_last_packet
= list_empty(&p_tx
->active_descq
);
311 list_add_tail(&p_pkt
->list_entry
, &p_tx
->free_descq
);
312 if (p_ll2_conn
->input
.conn_type
== QED_LL2_TYPE_OOO
) {
313 struct qed_ooo_buffer
*p_buffer
;
315 p_buffer
= (struct qed_ooo_buffer
*)p_pkt
->cookie
;
316 qed_ooo_put_free_buffer(p_hwfn
, p_hwfn
->p_ooo_info
,
319 p_tx
->cur_completing_packet
= *p_pkt
;
320 p_tx
->cur_completing_bd_idx
= 1;
322 p_tx
->cur_completing_bd_idx
== p_pkt
->bd_used
;
323 tx_frag
= p_pkt
->bds_set
[0].tx_frag
;
324 p_ll2_conn
->cbs
.tx_release_cb(p_ll2_conn
->cbs
.cookie
,
334 static int qed_ll2_txq_completion(struct qed_hwfn
*p_hwfn
, void *p_cookie
)
336 struct qed_ll2_info
*p_ll2_conn
= p_cookie
;
337 struct qed_ll2_tx_queue
*p_tx
= &p_ll2_conn
->tx_queue
;
338 u16 new_idx
= 0, num_bds
= 0, num_bds_in_packet
= 0;
339 struct qed_ll2_tx_packet
*p_pkt
;
340 bool b_last_frag
= false;
344 spin_lock_irqsave(&p_tx
->lock
, flags
);
345 if (p_tx
->b_completing_packet
) {
350 new_idx
= le16_to_cpu(*p_tx
->p_fw_cons
);
351 num_bds
= ((s16
)new_idx
- (s16
)p_tx
->bds_idx
);
353 if (list_empty(&p_tx
->active_descq
))
356 p_pkt
= list_first_entry(&p_tx
->active_descq
,
357 struct qed_ll2_tx_packet
, list_entry
);
361 p_tx
->b_completing_packet
= true;
362 p_tx
->cur_completing_packet
= *p_pkt
;
363 num_bds_in_packet
= p_pkt
->bd_used
;
364 list_del(&p_pkt
->list_entry
);
366 if (num_bds
< num_bds_in_packet
) {
368 "Rest of BDs does not cover whole packet\n");
372 num_bds
-= num_bds_in_packet
;
373 p_tx
->bds_idx
+= num_bds_in_packet
;
374 while (num_bds_in_packet
--)
375 qed_chain_consume(&p_tx
->txq_chain
);
377 p_tx
->cur_completing_bd_idx
= 1;
378 b_last_frag
= p_tx
->cur_completing_bd_idx
== p_pkt
->bd_used
;
379 list_add_tail(&p_pkt
->list_entry
, &p_tx
->free_descq
);
381 spin_unlock_irqrestore(&p_tx
->lock
, flags
);
383 p_ll2_conn
->cbs
.tx_comp_cb(p_ll2_conn
->cbs
.cookie
,
386 p_pkt
->bds_set
[0].tx_frag
,
387 b_last_frag
, !num_bds
);
389 spin_lock_irqsave(&p_tx
->lock
, flags
);
392 p_tx
->b_completing_packet
= false;
395 spin_unlock_irqrestore(&p_tx
->lock
, flags
);
399 static void qed_ll2_rxq_parse_gsi(struct qed_hwfn
*p_hwfn
,
400 union core_rx_cqe_union
*p_cqe
,
401 struct qed_ll2_comp_rx_data
*data
)
403 data
->parse_flags
= le16_to_cpu(p_cqe
->rx_cqe_gsi
.parse_flags
.flags
);
404 data
->length
.data_length
= le16_to_cpu(p_cqe
->rx_cqe_gsi
.data_length
);
405 data
->vlan
= le16_to_cpu(p_cqe
->rx_cqe_gsi
.vlan
);
406 data
->opaque_data_0
= le32_to_cpu(p_cqe
->rx_cqe_gsi
.src_mac_addrhi
);
407 data
->opaque_data_1
= le16_to_cpu(p_cqe
->rx_cqe_gsi
.src_mac_addrlo
);
408 data
->u
.data_length_error
= p_cqe
->rx_cqe_gsi
.data_length_error
;
409 data
->qp_id
= le16_to_cpu(p_cqe
->rx_cqe_gsi
.qp_id
);
411 data
->src_qp
= le32_to_cpu(p_cqe
->rx_cqe_gsi
.src_qp
);
414 static void qed_ll2_rxq_parse_reg(struct qed_hwfn
*p_hwfn
,
415 union core_rx_cqe_union
*p_cqe
,
416 struct qed_ll2_comp_rx_data
*data
)
418 data
->parse_flags
= le16_to_cpu(p_cqe
->rx_cqe_fp
.parse_flags
.flags
);
419 data
->err_flags
= le16_to_cpu(p_cqe
->rx_cqe_fp
.err_flags
.flags
);
420 data
->length
.packet_length
=
421 le16_to_cpu(p_cqe
->rx_cqe_fp
.packet_length
);
422 data
->vlan
= le16_to_cpu(p_cqe
->rx_cqe_fp
.vlan
);
423 data
->opaque_data_0
= le32_to_cpu(p_cqe
->rx_cqe_fp
.opaque_data
.data
[0]);
424 data
->opaque_data_1
= le32_to_cpu(p_cqe
->rx_cqe_fp
.opaque_data
.data
[1]);
425 data
->u
.placement_offset
= p_cqe
->rx_cqe_fp
.placement_offset
;
429 qed_ll2_handle_slowpath(struct qed_hwfn
*p_hwfn
,
430 struct qed_ll2_info
*p_ll2_conn
,
431 union core_rx_cqe_union
*p_cqe
,
432 unsigned long *p_lock_flags
)
434 struct qed_ll2_rx_queue
*p_rx
= &p_ll2_conn
->rx_queue
;
435 struct core_rx_slow_path_cqe
*sp_cqe
;
437 sp_cqe
= &p_cqe
->rx_cqe_sp
;
438 if (sp_cqe
->ramrod_cmd_id
!= CORE_RAMROD_RX_QUEUE_FLUSH
) {
440 "LL2 - unexpected Rx CQE slowpath ramrod_cmd_id:%d\n",
441 sp_cqe
->ramrod_cmd_id
);
445 if (!p_ll2_conn
->cbs
.slowpath_cb
) {
447 "LL2 - received RX_QUEUE_FLUSH but no callback was provided\n");
451 spin_unlock_irqrestore(&p_rx
->lock
, *p_lock_flags
);
453 p_ll2_conn
->cbs
.slowpath_cb(p_ll2_conn
->cbs
.cookie
,
455 le32_to_cpu(sp_cqe
->opaque_data
.data
[0]),
456 le32_to_cpu(sp_cqe
->opaque_data
.data
[1]));
458 spin_lock_irqsave(&p_rx
->lock
, *p_lock_flags
);
464 qed_ll2_rxq_handle_completion(struct qed_hwfn
*p_hwfn
,
465 struct qed_ll2_info
*p_ll2_conn
,
466 union core_rx_cqe_union
*p_cqe
,
467 unsigned long *p_lock_flags
, bool b_last_cqe
)
469 struct qed_ll2_rx_queue
*p_rx
= &p_ll2_conn
->rx_queue
;
470 struct qed_ll2_rx_packet
*p_pkt
= NULL
;
471 struct qed_ll2_comp_rx_data data
;
473 if (!list_empty(&p_rx
->active_descq
))
474 p_pkt
= list_first_entry(&p_rx
->active_descq
,
475 struct qed_ll2_rx_packet
, list_entry
);
478 "[%d] LL2 Rx completion but active_descq is empty\n",
479 p_ll2_conn
->input
.conn_type
);
483 list_del(&p_pkt
->list_entry
);
485 if (p_cqe
->rx_cqe_sp
.type
== CORE_RX_CQE_TYPE_REGULAR
)
486 qed_ll2_rxq_parse_reg(p_hwfn
, p_cqe
, &data
);
488 qed_ll2_rxq_parse_gsi(p_hwfn
, p_cqe
, &data
);
489 if (qed_chain_consume(&p_rx
->rxq_chain
) != p_pkt
->rxq_bd
)
491 "Mismatch between active_descq and the LL2 Rx chain\n");
493 list_add_tail(&p_pkt
->list_entry
, &p_rx
->free_descq
);
495 data
.connection_handle
= p_ll2_conn
->my_id
;
496 data
.cookie
= p_pkt
->cookie
;
497 data
.rx_buf_addr
= p_pkt
->rx_buf_addr
;
498 data
.b_last_packet
= b_last_cqe
;
500 spin_unlock_irqrestore(&p_rx
->lock
, *p_lock_flags
);
501 p_ll2_conn
->cbs
.rx_comp_cb(p_ll2_conn
->cbs
.cookie
, &data
);
503 spin_lock_irqsave(&p_rx
->lock
, *p_lock_flags
);
508 static int qed_ll2_rxq_completion(struct qed_hwfn
*p_hwfn
, void *cookie
)
510 struct qed_ll2_info
*p_ll2_conn
= (struct qed_ll2_info
*)cookie
;
511 struct qed_ll2_rx_queue
*p_rx
= &p_ll2_conn
->rx_queue
;
512 union core_rx_cqe_union
*cqe
= NULL
;
513 u16 cq_new_idx
= 0, cq_old_idx
= 0;
514 unsigned long flags
= 0;
517 spin_lock_irqsave(&p_rx
->lock
, flags
);
518 cq_new_idx
= le16_to_cpu(*p_rx
->p_fw_cons
);
519 cq_old_idx
= qed_chain_get_cons_idx(&p_rx
->rcq_chain
);
521 while (cq_new_idx
!= cq_old_idx
) {
522 bool b_last_cqe
= (cq_new_idx
== cq_old_idx
);
525 (union core_rx_cqe_union
*)
526 qed_chain_consume(&p_rx
->rcq_chain
);
527 cq_old_idx
= qed_chain_get_cons_idx(&p_rx
->rcq_chain
);
531 "LL2 [sw. cons %04x, fw. at %04x] - Got Packet of type %02x\n",
532 cq_old_idx
, cq_new_idx
, cqe
->rx_cqe_sp
.type
);
534 switch (cqe
->rx_cqe_sp
.type
) {
535 case CORE_RX_CQE_TYPE_SLOW_PATH
:
536 rc
= qed_ll2_handle_slowpath(p_hwfn
, p_ll2_conn
,
539 case CORE_RX_CQE_TYPE_GSI_OFFLOAD
:
540 case CORE_RX_CQE_TYPE_REGULAR
:
541 rc
= qed_ll2_rxq_handle_completion(p_hwfn
, p_ll2_conn
,
550 spin_unlock_irqrestore(&p_rx
->lock
, flags
);
554 static void qed_ll2_rxq_flush(struct qed_hwfn
*p_hwfn
, u8 connection_handle
)
556 struct qed_ll2_info
*p_ll2_conn
= NULL
;
557 struct qed_ll2_rx_packet
*p_pkt
= NULL
;
558 struct qed_ll2_rx_queue
*p_rx
;
560 p_ll2_conn
= qed_ll2_handle_sanity_inactive(p_hwfn
, connection_handle
);
564 p_rx
= &p_ll2_conn
->rx_queue
;
566 while (!list_empty(&p_rx
->active_descq
)) {
567 p_pkt
= list_first_entry(&p_rx
->active_descq
,
568 struct qed_ll2_rx_packet
, list_entry
);
572 list_move_tail(&p_pkt
->list_entry
, &p_rx
->free_descq
);
574 if (p_ll2_conn
->input
.conn_type
== QED_LL2_TYPE_OOO
) {
575 struct qed_ooo_buffer
*p_buffer
;
577 p_buffer
= (struct qed_ooo_buffer
*)p_pkt
->cookie
;
578 qed_ooo_put_free_buffer(p_hwfn
, p_hwfn
->p_ooo_info
,
581 dma_addr_t rx_buf_addr
= p_pkt
->rx_buf_addr
;
582 void *cookie
= p_pkt
->cookie
;
585 b_last
= list_empty(&p_rx
->active_descq
);
586 p_ll2_conn
->cbs
.rx_release_cb(p_ll2_conn
->cbs
.cookie
,
589 rx_buf_addr
, b_last
);
594 static u8
qed_ll2_convert_rx_parse_to_tx_flags(u16 parse_flags
)
598 if (GET_FIELD(parse_flags
, PARSING_AND_ERR_FLAGS_TAG8021QEXIST
))
599 SET_FIELD(bd_flags
, CORE_TX_BD_DATA_VLAN_INSERTION
, 1);
604 static int qed_ll2_lb_rxq_handler(struct qed_hwfn
*p_hwfn
,
605 struct qed_ll2_info
*p_ll2_conn
)
607 struct qed_ll2_rx_queue
*p_rx
= &p_ll2_conn
->rx_queue
;
608 u16 packet_length
= 0, parse_flags
= 0, vlan
= 0;
609 struct qed_ll2_rx_packet
*p_pkt
= NULL
;
610 u32 num_ooo_add_to_peninsula
= 0, cid
;
611 union core_rx_cqe_union
*cqe
= NULL
;
612 u16 cq_new_idx
= 0, cq_old_idx
= 0;
613 struct qed_ooo_buffer
*p_buffer
;
614 struct ooo_opaque
*iscsi_ooo
;
615 u8 placement_offset
= 0;
618 cq_new_idx
= le16_to_cpu(*p_rx
->p_fw_cons
);
619 cq_old_idx
= qed_chain_get_cons_idx(&p_rx
->rcq_chain
);
620 if (cq_new_idx
== cq_old_idx
)
623 while (cq_new_idx
!= cq_old_idx
) {
624 struct core_rx_fast_path_cqe
*p_cqe_fp
;
626 cqe
= qed_chain_consume(&p_rx
->rcq_chain
);
627 cq_old_idx
= qed_chain_get_cons_idx(&p_rx
->rcq_chain
);
628 cqe_type
= cqe
->rx_cqe_sp
.type
;
630 if (cqe_type
!= CORE_RX_CQE_TYPE_REGULAR
) {
632 "Got a non-regular LB LL2 completion [type 0x%02x]\n",
636 p_cqe_fp
= &cqe
->rx_cqe_fp
;
638 placement_offset
= p_cqe_fp
->placement_offset
;
639 parse_flags
= le16_to_cpu(p_cqe_fp
->parse_flags
.flags
);
640 packet_length
= le16_to_cpu(p_cqe_fp
->packet_length
);
641 vlan
= le16_to_cpu(p_cqe_fp
->vlan
);
642 iscsi_ooo
= (struct ooo_opaque
*)&p_cqe_fp
->opaque_data
;
643 qed_ooo_save_history_entry(p_hwfn
, p_hwfn
->p_ooo_info
,
645 cid
= le32_to_cpu(iscsi_ooo
->cid
);
647 /* Process delete isle first */
648 if (iscsi_ooo
->drop_size
)
649 qed_ooo_delete_isles(p_hwfn
, p_hwfn
->p_ooo_info
, cid
,
650 iscsi_ooo
->drop_isle
,
651 iscsi_ooo
->drop_size
);
653 if (iscsi_ooo
->ooo_opcode
== TCP_EVENT_NOP
)
656 /* Now process create/add/join isles */
657 if (list_empty(&p_rx
->active_descq
)) {
659 "LL2 OOO RX chain has no submitted buffers\n"
664 p_pkt
= list_first_entry(&p_rx
->active_descq
,
665 struct qed_ll2_rx_packet
, list_entry
);
667 if ((iscsi_ooo
->ooo_opcode
== TCP_EVENT_ADD_NEW_ISLE
) ||
668 (iscsi_ooo
->ooo_opcode
== TCP_EVENT_ADD_ISLE_RIGHT
) ||
669 (iscsi_ooo
->ooo_opcode
== TCP_EVENT_ADD_ISLE_LEFT
) ||
670 (iscsi_ooo
->ooo_opcode
== TCP_EVENT_ADD_PEN
) ||
671 (iscsi_ooo
->ooo_opcode
== TCP_EVENT_JOIN
)) {
674 "LL2 OOO RX packet is not valid\n");
677 list_del(&p_pkt
->list_entry
);
678 p_buffer
= (struct qed_ooo_buffer
*)p_pkt
->cookie
;
679 p_buffer
->packet_length
= packet_length
;
680 p_buffer
->parse_flags
= parse_flags
;
681 p_buffer
->vlan
= vlan
;
682 p_buffer
->placement_offset
= placement_offset
;
683 qed_chain_consume(&p_rx
->rxq_chain
);
684 list_add_tail(&p_pkt
->list_entry
, &p_rx
->free_descq
);
686 switch (iscsi_ooo
->ooo_opcode
) {
687 case TCP_EVENT_ADD_NEW_ISLE
:
688 qed_ooo_add_new_isle(p_hwfn
,
694 case TCP_EVENT_ADD_ISLE_RIGHT
:
695 qed_ooo_add_new_buffer(p_hwfn
,
702 case TCP_EVENT_ADD_ISLE_LEFT
:
703 qed_ooo_add_new_buffer(p_hwfn
,
711 qed_ooo_add_new_buffer(p_hwfn
,
714 iscsi_ooo
->ooo_isle
+
718 qed_ooo_join_isles(p_hwfn
,
720 cid
, iscsi_ooo
->ooo_isle
);
722 case TCP_EVENT_ADD_PEN
:
723 num_ooo_add_to_peninsula
++;
724 qed_ooo_put_ready_buffer(p_hwfn
,
731 "Unexpected event (%d) TX OOO completion\n",
732 iscsi_ooo
->ooo_opcode
);
740 qed_ooo_submit_tx_buffers(struct qed_hwfn
*p_hwfn
,
741 struct qed_ll2_info
*p_ll2_conn
)
743 struct qed_ll2_tx_pkt_info tx_pkt
;
744 struct qed_ooo_buffer
*p_buffer
;
746 dma_addr_t first_frag
;
751 /* Submit Tx buffers here */
752 while ((p_buffer
= qed_ooo_get_ready_buffer(p_hwfn
,
753 p_hwfn
->p_ooo_info
))) {
757 first_frag
= p_buffer
->rx_buffer_phys_addr
+
758 p_buffer
->placement_offset
;
759 parse_flags
= p_buffer
->parse_flags
;
760 bd_flags
= qed_ll2_convert_rx_parse_to_tx_flags(parse_flags
);
761 SET_FIELD(bd_flags
, CORE_TX_BD_DATA_FORCE_VLAN_MODE
, 1);
762 SET_FIELD(bd_flags
, CORE_TX_BD_DATA_L4_PROTOCOL
, 1);
764 memset(&tx_pkt
, 0, sizeof(tx_pkt
));
765 tx_pkt
.num_of_bds
= 1;
766 tx_pkt
.vlan
= p_buffer
->vlan
;
767 tx_pkt
.bd_flags
= bd_flags
;
768 tx_pkt
.l4_hdr_offset_w
= l4_hdr_offset_w
;
769 tx_pkt
.tx_dest
= p_ll2_conn
->tx_dest
;
770 tx_pkt
.first_frag
= first_frag
;
771 tx_pkt
.first_frag_len
= p_buffer
->packet_length
;
772 tx_pkt
.cookie
= p_buffer
;
774 rc
= qed_ll2_prepare_tx_packet(p_hwfn
, p_ll2_conn
->my_id
,
777 qed_ooo_put_ready_buffer(p_hwfn
, p_hwfn
->p_ooo_info
,
785 qed_ooo_submit_rx_buffers(struct qed_hwfn
*p_hwfn
,
786 struct qed_ll2_info
*p_ll2_conn
)
788 struct qed_ooo_buffer
*p_buffer
;
791 while ((p_buffer
= qed_ooo_get_free_buffer(p_hwfn
,
792 p_hwfn
->p_ooo_info
))) {
793 rc
= qed_ll2_post_rx_buffer(p_hwfn
,
795 p_buffer
->rx_buffer_phys_addr
,
798 qed_ooo_put_free_buffer(p_hwfn
,
799 p_hwfn
->p_ooo_info
, p_buffer
);
805 static int qed_ll2_lb_rxq_completion(struct qed_hwfn
*p_hwfn
, void *p_cookie
)
807 struct qed_ll2_info
*p_ll2_conn
= (struct qed_ll2_info
*)p_cookie
;
810 rc
= qed_ll2_lb_rxq_handler(p_hwfn
, p_ll2_conn
);
814 qed_ooo_submit_rx_buffers(p_hwfn
, p_ll2_conn
);
815 qed_ooo_submit_tx_buffers(p_hwfn
, p_ll2_conn
);
820 static int qed_ll2_lb_txq_completion(struct qed_hwfn
*p_hwfn
, void *p_cookie
)
822 struct qed_ll2_info
*p_ll2_conn
= (struct qed_ll2_info
*)p_cookie
;
823 struct qed_ll2_tx_queue
*p_tx
= &p_ll2_conn
->tx_queue
;
824 struct qed_ll2_tx_packet
*p_pkt
= NULL
;
825 struct qed_ooo_buffer
*p_buffer
;
826 bool b_dont_submit_rx
= false;
827 u16 new_idx
= 0, num_bds
= 0;
830 new_idx
= le16_to_cpu(*p_tx
->p_fw_cons
);
831 num_bds
= ((s16
)new_idx
- (s16
)p_tx
->bds_idx
);
837 if (list_empty(&p_tx
->active_descq
))
840 p_pkt
= list_first_entry(&p_tx
->active_descq
,
841 struct qed_ll2_tx_packet
, list_entry
);
845 if (p_pkt
->bd_used
!= 1) {
847 "Unexpectedly many BDs(%d) in TX OOO completion\n",
852 list_del(&p_pkt
->list_entry
);
856 qed_chain_consume(&p_tx
->txq_chain
);
858 p_buffer
= (struct qed_ooo_buffer
*)p_pkt
->cookie
;
859 list_add_tail(&p_pkt
->list_entry
, &p_tx
->free_descq
);
861 if (b_dont_submit_rx
) {
862 qed_ooo_put_free_buffer(p_hwfn
, p_hwfn
->p_ooo_info
,
867 rc
= qed_ll2_post_rx_buffer(p_hwfn
, p_ll2_conn
->my_id
,
868 p_buffer
->rx_buffer_phys_addr
, 0,
871 qed_ooo_put_free_buffer(p_hwfn
,
872 p_hwfn
->p_ooo_info
, p_buffer
);
873 b_dont_submit_rx
= true;
877 qed_ooo_submit_tx_buffers(p_hwfn
, p_ll2_conn
);
882 static void qed_ll2_stop_ooo(struct qed_dev
*cdev
)
884 struct qed_hwfn
*hwfn
= QED_LEADING_HWFN(cdev
);
885 u8
*handle
= &hwfn
->pf_params
.iscsi_pf_params
.ll2_ooo_queue_id
;
887 DP_VERBOSE(cdev
, QED_MSG_STORAGE
, "Stopping LL2 OOO queue [%02x]\n",
890 qed_ll2_terminate_connection(hwfn
, *handle
);
891 qed_ll2_release_connection(hwfn
, *handle
);
892 *handle
= QED_LL2_UNUSED_HANDLE
;
895 static int qed_sp_ll2_rx_queue_start(struct qed_hwfn
*p_hwfn
,
896 struct qed_ll2_info
*p_ll2_conn
,
899 enum qed_ll2_conn_type conn_type
= p_ll2_conn
->input
.conn_type
;
900 struct qed_ll2_rx_queue
*p_rx
= &p_ll2_conn
->rx_queue
;
901 struct core_rx_start_ramrod_data
*p_ramrod
= NULL
;
902 struct qed_spq_entry
*p_ent
= NULL
;
903 struct qed_sp_init_data init_data
;
908 memset(&init_data
, 0, sizeof(init_data
));
909 init_data
.cid
= p_ll2_conn
->cid
;
910 init_data
.opaque_fid
= p_hwfn
->hw_info
.opaque_fid
;
911 init_data
.comp_mode
= QED_SPQ_MODE_EBLOCK
;
913 rc
= qed_sp_init_request(p_hwfn
, &p_ent
,
914 CORE_RAMROD_RX_QUEUE_START
,
915 PROTOCOLID_CORE
, &init_data
);
919 p_ramrod
= &p_ent
->ramrod
.core_rx_queue_start
;
921 p_ramrod
->sb_id
= cpu_to_le16(qed_int_get_sp_sb_id(p_hwfn
));
922 p_ramrod
->sb_index
= p_rx
->rx_sb_index
;
923 p_ramrod
->complete_event_flg
= 1;
925 p_ramrod
->mtu
= cpu_to_le16(p_ll2_conn
->input
.mtu
);
926 DMA_REGPAIR_LE(p_ramrod
->bd_base
, p_rx
->rxq_chain
.p_phys_addr
);
927 cqe_pbl_size
= (u16
)qed_chain_get_page_cnt(&p_rx
->rcq_chain
);
928 p_ramrod
->num_of_pbl_pages
= cpu_to_le16(cqe_pbl_size
);
929 DMA_REGPAIR_LE(p_ramrod
->cqe_pbl_addr
,
930 qed_chain_get_pbl_phys(&p_rx
->rcq_chain
));
932 p_ramrod
->drop_ttl0_flg
= p_ll2_conn
->input
.rx_drop_ttl0_flg
;
933 p_ramrod
->inner_vlan_stripping_en
=
934 p_ll2_conn
->input
.rx_vlan_removal_en
;
935 p_ramrod
->queue_id
= p_ll2_conn
->queue_id
;
936 p_ramrod
->main_func_queue
= p_ll2_conn
->main_func_queue
? 1 : 0;
938 if ((IS_MF_DEFAULT(p_hwfn
) || IS_MF_SI(p_hwfn
)) &&
939 p_ramrod
->main_func_queue
&& (conn_type
!= QED_LL2_TYPE_ROCE
) &&
940 (conn_type
!= QED_LL2_TYPE_IWARP
)) {
941 p_ramrod
->mf_si_bcast_accept_all
= 1;
942 p_ramrod
->mf_si_mcast_accept_all
= 1;
944 p_ramrod
->mf_si_bcast_accept_all
= 0;
945 p_ramrod
->mf_si_mcast_accept_all
= 0;
948 p_ramrod
->action_on_error
.error_type
= action_on_error
;
949 p_ramrod
->gsi_offload_flag
= p_ll2_conn
->input
.gsi_enable
;
950 return qed_spq_post(p_hwfn
, p_ent
, NULL
);
953 static int qed_sp_ll2_tx_queue_start(struct qed_hwfn
*p_hwfn
,
954 struct qed_ll2_info
*p_ll2_conn
)
956 enum qed_ll2_conn_type conn_type
= p_ll2_conn
->input
.conn_type
;
957 struct qed_ll2_tx_queue
*p_tx
= &p_ll2_conn
->tx_queue
;
958 struct core_tx_start_ramrod_data
*p_ramrod
= NULL
;
959 struct qed_spq_entry
*p_ent
= NULL
;
960 struct qed_sp_init_data init_data
;
961 u16 pq_id
= 0, pbl_size
;
964 if (!QED_LL2_TX_REGISTERED(p_ll2_conn
))
967 if (p_ll2_conn
->input
.conn_type
== QED_LL2_TYPE_OOO
)
968 p_ll2_conn
->tx_stats_en
= 0;
970 p_ll2_conn
->tx_stats_en
= 1;
973 memset(&init_data
, 0, sizeof(init_data
));
974 init_data
.cid
= p_ll2_conn
->cid
;
975 init_data
.opaque_fid
= p_hwfn
->hw_info
.opaque_fid
;
976 init_data
.comp_mode
= QED_SPQ_MODE_EBLOCK
;
978 rc
= qed_sp_init_request(p_hwfn
, &p_ent
,
979 CORE_RAMROD_TX_QUEUE_START
,
980 PROTOCOLID_CORE
, &init_data
);
984 p_ramrod
= &p_ent
->ramrod
.core_tx_queue_start
;
986 p_ramrod
->sb_id
= cpu_to_le16(qed_int_get_sp_sb_id(p_hwfn
));
987 p_ramrod
->sb_index
= p_tx
->tx_sb_index
;
988 p_ramrod
->mtu
= cpu_to_le16(p_ll2_conn
->input
.mtu
);
989 p_ramrod
->stats_en
= p_ll2_conn
->tx_stats_en
;
990 p_ramrod
->stats_id
= p_ll2_conn
->tx_stats_id
;
992 DMA_REGPAIR_LE(p_ramrod
->pbl_base_addr
,
993 qed_chain_get_pbl_phys(&p_tx
->txq_chain
));
994 pbl_size
= qed_chain_get_page_cnt(&p_tx
->txq_chain
);
995 p_ramrod
->pbl_size
= cpu_to_le16(pbl_size
);
997 switch (p_ll2_conn
->input
.tx_tc
) {
999 pq_id
= qed_get_cm_pq_idx(p_hwfn
, PQ_FLAGS_LB
);
1002 pq_id
= qed_get_cm_pq_idx(p_hwfn
, PQ_FLAGS_OOO
);
1005 pq_id
= qed_get_cm_pq_idx(p_hwfn
, PQ_FLAGS_OFLD
);
1009 p_ramrod
->qm_pq_id
= cpu_to_le16(pq_id
);
1011 switch (conn_type
) {
1012 case QED_LL2_TYPE_FCOE
:
1013 p_ramrod
->conn_type
= PROTOCOLID_FCOE
;
1015 case QED_LL2_TYPE_ISCSI
:
1016 p_ramrod
->conn_type
= PROTOCOLID_ISCSI
;
1018 case QED_LL2_TYPE_ROCE
:
1019 p_ramrod
->conn_type
= PROTOCOLID_ROCE
;
1021 case QED_LL2_TYPE_IWARP
:
1022 p_ramrod
->conn_type
= PROTOCOLID_IWARP
;
1024 case QED_LL2_TYPE_OOO
:
1025 if (p_hwfn
->hw_info
.personality
== QED_PCI_ISCSI
)
1026 p_ramrod
->conn_type
= PROTOCOLID_ISCSI
;
1028 p_ramrod
->conn_type
= PROTOCOLID_IWARP
;
1031 p_ramrod
->conn_type
= PROTOCOLID_ETH
;
1032 DP_NOTICE(p_hwfn
, "Unknown connection type: %d\n", conn_type
);
1035 p_ramrod
->gsi_offload_flag
= p_ll2_conn
->input
.gsi_enable
;
1037 return qed_spq_post(p_hwfn
, p_ent
, NULL
);
1040 static int qed_sp_ll2_rx_queue_stop(struct qed_hwfn
*p_hwfn
,
1041 struct qed_ll2_info
*p_ll2_conn
)
1043 struct core_rx_stop_ramrod_data
*p_ramrod
= NULL
;
1044 struct qed_spq_entry
*p_ent
= NULL
;
1045 struct qed_sp_init_data init_data
;
1049 memset(&init_data
, 0, sizeof(init_data
));
1050 init_data
.cid
= p_ll2_conn
->cid
;
1051 init_data
.opaque_fid
= p_hwfn
->hw_info
.opaque_fid
;
1052 init_data
.comp_mode
= QED_SPQ_MODE_EBLOCK
;
1054 rc
= qed_sp_init_request(p_hwfn
, &p_ent
,
1055 CORE_RAMROD_RX_QUEUE_STOP
,
1056 PROTOCOLID_CORE
, &init_data
);
1060 p_ramrod
= &p_ent
->ramrod
.core_rx_queue_stop
;
1062 p_ramrod
->complete_event_flg
= 1;
1063 p_ramrod
->queue_id
= p_ll2_conn
->queue_id
;
1065 return qed_spq_post(p_hwfn
, p_ent
, NULL
);
1068 static int qed_sp_ll2_tx_queue_stop(struct qed_hwfn
*p_hwfn
,
1069 struct qed_ll2_info
*p_ll2_conn
)
1071 struct qed_spq_entry
*p_ent
= NULL
;
1072 struct qed_sp_init_data init_data
;
1076 memset(&init_data
, 0, sizeof(init_data
));
1077 init_data
.cid
= p_ll2_conn
->cid
;
1078 init_data
.opaque_fid
= p_hwfn
->hw_info
.opaque_fid
;
1079 init_data
.comp_mode
= QED_SPQ_MODE_EBLOCK
;
1081 rc
= qed_sp_init_request(p_hwfn
, &p_ent
,
1082 CORE_RAMROD_TX_QUEUE_STOP
,
1083 PROTOCOLID_CORE
, &init_data
);
1087 return qed_spq_post(p_hwfn
, p_ent
, NULL
);
1091 qed_ll2_acquire_connection_rx(struct qed_hwfn
*p_hwfn
,
1092 struct qed_ll2_info
*p_ll2_info
)
1094 struct qed_ll2_rx_packet
*p_descq
;
1098 if (!p_ll2_info
->input
.rx_num_desc
)
1101 rc
= qed_chain_alloc(p_hwfn
->cdev
,
1102 QED_CHAIN_USE_TO_CONSUME_PRODUCE
,
1103 QED_CHAIN_MODE_NEXT_PTR
,
1104 QED_CHAIN_CNT_TYPE_U16
,
1105 p_ll2_info
->input
.rx_num_desc
,
1106 sizeof(struct core_rx_bd
),
1107 &p_ll2_info
->rx_queue
.rxq_chain
, NULL
);
1109 DP_NOTICE(p_hwfn
, "Failed to allocate ll2 rxq chain\n");
1113 capacity
= qed_chain_get_capacity(&p_ll2_info
->rx_queue
.rxq_chain
);
1114 p_descq
= kcalloc(capacity
, sizeof(struct qed_ll2_rx_packet
),
1118 DP_NOTICE(p_hwfn
, "Failed to allocate ll2 Rx desc\n");
1121 p_ll2_info
->rx_queue
.descq_array
= p_descq
;
1123 rc
= qed_chain_alloc(p_hwfn
->cdev
,
1124 QED_CHAIN_USE_TO_CONSUME_PRODUCE
,
1126 QED_CHAIN_CNT_TYPE_U16
,
1127 p_ll2_info
->input
.rx_num_desc
,
1128 sizeof(struct core_rx_fast_path_cqe
),
1129 &p_ll2_info
->rx_queue
.rcq_chain
, NULL
);
1131 DP_NOTICE(p_hwfn
, "Failed to allocate ll2 rcq chain\n");
1135 DP_VERBOSE(p_hwfn
, QED_MSG_LL2
,
1136 "Allocated LL2 Rxq [Type %08x] with 0x%08x buffers\n",
1137 p_ll2_info
->input
.conn_type
, p_ll2_info
->input
.rx_num_desc
);
1143 static int qed_ll2_acquire_connection_tx(struct qed_hwfn
*p_hwfn
,
1144 struct qed_ll2_info
*p_ll2_info
)
1146 struct qed_ll2_tx_packet
*p_descq
;
1151 if (!p_ll2_info
->input
.tx_num_desc
)
1154 rc
= qed_chain_alloc(p_hwfn
->cdev
,
1155 QED_CHAIN_USE_TO_CONSUME_PRODUCE
,
1157 QED_CHAIN_CNT_TYPE_U16
,
1158 p_ll2_info
->input
.tx_num_desc
,
1159 sizeof(struct core_tx_bd
),
1160 &p_ll2_info
->tx_queue
.txq_chain
, NULL
);
1164 capacity
= qed_chain_get_capacity(&p_ll2_info
->tx_queue
.txq_chain
);
1165 /* First element is part of the packet, rest are flexibly added */
1166 desc_size
= (sizeof(*p_descq
) +
1167 (p_ll2_info
->input
.tx_max_bds_per_packet
- 1) *
1168 sizeof(p_descq
->bds_set
));
1170 p_descq
= kcalloc(capacity
, desc_size
, GFP_KERNEL
);
1175 p_ll2_info
->tx_queue
.descq_mem
= p_descq
;
1177 DP_VERBOSE(p_hwfn
, QED_MSG_LL2
,
1178 "Allocated LL2 Txq [Type %08x] with 0x%08x buffers\n",
1179 p_ll2_info
->input
.conn_type
, p_ll2_info
->input
.tx_num_desc
);
1184 "Can't allocate memory for Tx LL2 with 0x%08x buffers\n",
1185 p_ll2_info
->input
.tx_num_desc
);
1190 qed_ll2_acquire_connection_ooo(struct qed_hwfn
*p_hwfn
,
1191 struct qed_ll2_info
*p_ll2_info
, u16 mtu
)
1193 struct qed_ooo_buffer
*p_buf
= NULL
;
1198 if (p_ll2_info
->input
.conn_type
!= QED_LL2_TYPE_OOO
)
1201 /* Correct number of requested OOO buffers if needed */
1202 if (!p_ll2_info
->input
.rx_num_ooo_buffers
) {
1203 u16 num_desc
= p_ll2_info
->input
.rx_num_desc
;
1207 p_ll2_info
->input
.rx_num_ooo_buffers
= num_desc
* 2;
1210 for (buf_idx
= 0; buf_idx
< p_ll2_info
->input
.rx_num_ooo_buffers
;
1212 p_buf
= kzalloc(sizeof(*p_buf
), GFP_KERNEL
);
1218 p_buf
->rx_buffer_size
= mtu
+ 26 + ETH_CACHE_LINE_SIZE
;
1219 p_buf
->rx_buffer_size
= (p_buf
->rx_buffer_size
+
1220 ETH_CACHE_LINE_SIZE
- 1) &
1221 ~(ETH_CACHE_LINE_SIZE
- 1);
1222 p_virt
= dma_alloc_coherent(&p_hwfn
->cdev
->pdev
->dev
,
1223 p_buf
->rx_buffer_size
,
1224 &p_buf
->rx_buffer_phys_addr
,
1232 p_buf
->rx_buffer_virt_addr
= p_virt
;
1233 qed_ooo_put_free_buffer(p_hwfn
, p_hwfn
->p_ooo_info
, p_buf
);
1236 DP_VERBOSE(p_hwfn
, QED_MSG_LL2
,
1237 "Allocated [%04x] LL2 OOO buffers [each of size 0x%08x]\n",
1238 p_ll2_info
->input
.rx_num_ooo_buffers
, p_buf
->rx_buffer_size
);
1245 qed_ll2_set_cbs(struct qed_ll2_info
*p_ll2_info
, const struct qed_ll2_cbs
*cbs
)
1247 if (!cbs
|| (!cbs
->rx_comp_cb
||
1248 !cbs
->rx_release_cb
||
1249 !cbs
->tx_comp_cb
|| !cbs
->tx_release_cb
|| !cbs
->cookie
))
1252 p_ll2_info
->cbs
.rx_comp_cb
= cbs
->rx_comp_cb
;
1253 p_ll2_info
->cbs
.rx_release_cb
= cbs
->rx_release_cb
;
1254 p_ll2_info
->cbs
.tx_comp_cb
= cbs
->tx_comp_cb
;
1255 p_ll2_info
->cbs
.tx_release_cb
= cbs
->tx_release_cb
;
1256 p_ll2_info
->cbs
.slowpath_cb
= cbs
->slowpath_cb
;
1257 p_ll2_info
->cbs
.cookie
= cbs
->cookie
;
1262 static enum core_error_handle
1263 qed_ll2_get_error_choice(enum qed_ll2_error_handle err
)
1266 case QED_LL2_DROP_PACKET
:
1267 return LL2_DROP_PACKET
;
1268 case QED_LL2_DO_NOTHING
:
1269 return LL2_DO_NOTHING
;
1270 case QED_LL2_ASSERT
:
1273 return LL2_DO_NOTHING
;
1277 int qed_ll2_acquire_connection(void *cxt
, struct qed_ll2_acquire_data
*data
)
1279 struct qed_hwfn
*p_hwfn
= cxt
;
1280 qed_int_comp_cb_t comp_rx_cb
, comp_tx_cb
;
1281 struct qed_ll2_info
*p_ll2_info
= NULL
;
1285 if (!data
->p_connection_handle
|| !p_hwfn
->p_ll2_info
)
1288 /* Find a free connection to be used */
1289 for (i
= 0; (i
< QED_MAX_NUM_OF_LL2_CONNECTIONS
); i
++) {
1290 mutex_lock(&p_hwfn
->p_ll2_info
[i
].mutex
);
1291 if (p_hwfn
->p_ll2_info
[i
].b_active
) {
1292 mutex_unlock(&p_hwfn
->p_ll2_info
[i
].mutex
);
1296 p_hwfn
->p_ll2_info
[i
].b_active
= true;
1297 p_ll2_info
= &p_hwfn
->p_ll2_info
[i
];
1298 mutex_unlock(&p_hwfn
->p_ll2_info
[i
].mutex
);
1304 memcpy(&p_ll2_info
->input
, &data
->input
, sizeof(p_ll2_info
->input
));
1306 switch (data
->input
.tx_dest
) {
1307 case QED_LL2_TX_DEST_NW
:
1308 p_ll2_info
->tx_dest
= CORE_TX_DEST_NW
;
1310 case QED_LL2_TX_DEST_LB
:
1311 p_ll2_info
->tx_dest
= CORE_TX_DEST_LB
;
1313 case QED_LL2_TX_DEST_DROP
:
1314 p_ll2_info
->tx_dest
= CORE_TX_DEST_DROP
;
1320 if (data
->input
.conn_type
== QED_LL2_TYPE_OOO
||
1321 data
->input
.secondary_queue
)
1322 p_ll2_info
->main_func_queue
= false;
1324 p_ll2_info
->main_func_queue
= true;
1326 /* Correct maximum number of Tx BDs */
1327 p_tx_max
= &p_ll2_info
->input
.tx_max_bds_per_packet
;
1329 *p_tx_max
= CORE_LL2_TX_MAX_BDS_PER_PACKET
;
1331 *p_tx_max
= min_t(u8
, *p_tx_max
,
1332 CORE_LL2_TX_MAX_BDS_PER_PACKET
);
1334 rc
= qed_ll2_set_cbs(p_ll2_info
, data
->cbs
);
1336 DP_NOTICE(p_hwfn
, "Invalid callback functions\n");
1337 goto q_allocate_fail
;
1340 rc
= qed_ll2_acquire_connection_rx(p_hwfn
, p_ll2_info
);
1342 goto q_allocate_fail
;
1344 rc
= qed_ll2_acquire_connection_tx(p_hwfn
, p_ll2_info
);
1346 goto q_allocate_fail
;
1348 rc
= qed_ll2_acquire_connection_ooo(p_hwfn
, p_ll2_info
,
1351 goto q_allocate_fail
;
1353 /* Register callbacks for the Rx/Tx queues */
1354 if (data
->input
.conn_type
== QED_LL2_TYPE_OOO
) {
1355 comp_rx_cb
= qed_ll2_lb_rxq_completion
;
1356 comp_tx_cb
= qed_ll2_lb_txq_completion
;
1358 comp_rx_cb
= qed_ll2_rxq_completion
;
1359 comp_tx_cb
= qed_ll2_txq_completion
;
1362 if (data
->input
.rx_num_desc
) {
1363 qed_int_register_cb(p_hwfn
, comp_rx_cb
,
1364 &p_hwfn
->p_ll2_info
[i
],
1365 &p_ll2_info
->rx_queue
.rx_sb_index
,
1366 &p_ll2_info
->rx_queue
.p_fw_cons
);
1367 p_ll2_info
->rx_queue
.b_cb_registred
= true;
1370 if (data
->input
.tx_num_desc
) {
1371 qed_int_register_cb(p_hwfn
,
1373 &p_hwfn
->p_ll2_info
[i
],
1374 &p_ll2_info
->tx_queue
.tx_sb_index
,
1375 &p_ll2_info
->tx_queue
.p_fw_cons
);
1376 p_ll2_info
->tx_queue
.b_cb_registred
= true;
1379 *data
->p_connection_handle
= i
;
1383 qed_ll2_release_connection(p_hwfn
, i
);
1387 static int qed_ll2_establish_connection_rx(struct qed_hwfn
*p_hwfn
,
1388 struct qed_ll2_info
*p_ll2_conn
)
1390 enum qed_ll2_error_handle error_input
;
1391 enum core_error_handle error_mode
;
1392 u8 action_on_error
= 0;
1394 if (!QED_LL2_RX_REGISTERED(p_ll2_conn
))
1397 DIRECT_REG_WR(p_ll2_conn
->rx_queue
.set_prod_addr
, 0x0);
1398 error_input
= p_ll2_conn
->input
.ai_err_packet_too_big
;
1399 error_mode
= qed_ll2_get_error_choice(error_input
);
1400 SET_FIELD(action_on_error
,
1401 CORE_RX_ACTION_ON_ERROR_PACKET_TOO_BIG
, error_mode
);
1402 error_input
= p_ll2_conn
->input
.ai_err_no_buf
;
1403 error_mode
= qed_ll2_get_error_choice(error_input
);
1404 SET_FIELD(action_on_error
, CORE_RX_ACTION_ON_ERROR_NO_BUFF
, error_mode
);
1406 return qed_sp_ll2_rx_queue_start(p_hwfn
, p_ll2_conn
, action_on_error
);
1410 qed_ll2_establish_connection_ooo(struct qed_hwfn
*p_hwfn
,
1411 struct qed_ll2_info
*p_ll2_conn
)
1413 if (p_ll2_conn
->input
.conn_type
!= QED_LL2_TYPE_OOO
)
1416 qed_ooo_release_all_isles(p_hwfn
, p_hwfn
->p_ooo_info
);
1417 qed_ooo_submit_rx_buffers(p_hwfn
, p_ll2_conn
);
1420 int qed_ll2_establish_connection(void *cxt
, u8 connection_handle
)
1422 struct qed_hwfn
*p_hwfn
= cxt
;
1423 struct qed_ll2_info
*p_ll2_conn
;
1424 struct qed_ll2_tx_packet
*p_pkt
;
1425 struct qed_ll2_rx_queue
*p_rx
;
1426 struct qed_ll2_tx_queue
*p_tx
;
1427 struct qed_ptt
*p_ptt
;
1433 p_ptt
= qed_ptt_acquire(p_hwfn
);
1437 p_ll2_conn
= qed_ll2_handle_sanity_lock(p_hwfn
, connection_handle
);
1443 p_rx
= &p_ll2_conn
->rx_queue
;
1444 p_tx
= &p_ll2_conn
->tx_queue
;
1446 qed_chain_reset(&p_rx
->rxq_chain
);
1447 qed_chain_reset(&p_rx
->rcq_chain
);
1448 INIT_LIST_HEAD(&p_rx
->active_descq
);
1449 INIT_LIST_HEAD(&p_rx
->free_descq
);
1450 INIT_LIST_HEAD(&p_rx
->posting_descq
);
1451 spin_lock_init(&p_rx
->lock
);
1452 capacity
= qed_chain_get_capacity(&p_rx
->rxq_chain
);
1453 for (i
= 0; i
< capacity
; i
++)
1454 list_add_tail(&p_rx
->descq_array
[i
].list_entry
,
1456 *p_rx
->p_fw_cons
= 0;
1458 qed_chain_reset(&p_tx
->txq_chain
);
1459 INIT_LIST_HEAD(&p_tx
->active_descq
);
1460 INIT_LIST_HEAD(&p_tx
->free_descq
);
1461 INIT_LIST_HEAD(&p_tx
->sending_descq
);
1462 spin_lock_init(&p_tx
->lock
);
1463 capacity
= qed_chain_get_capacity(&p_tx
->txq_chain
);
1464 /* First element is part of the packet, rest are flexibly added */
1465 desc_size
= (sizeof(*p_pkt
) +
1466 (p_ll2_conn
->input
.tx_max_bds_per_packet
- 1) *
1467 sizeof(p_pkt
->bds_set
));
1469 for (i
= 0; i
< capacity
; i
++) {
1470 p_pkt
= p_tx
->descq_mem
+ desc_size
* i
;
1471 list_add_tail(&p_pkt
->list_entry
, &p_tx
->free_descq
);
1473 p_tx
->cur_completing_bd_idx
= 0;
1475 p_tx
->b_completing_packet
= false;
1476 p_tx
->cur_send_packet
= NULL
;
1477 p_tx
->cur_send_frag_num
= 0;
1478 p_tx
->cur_completing_frag_num
= 0;
1479 *p_tx
->p_fw_cons
= 0;
1481 rc
= qed_cxt_acquire_cid(p_hwfn
, PROTOCOLID_CORE
, &p_ll2_conn
->cid
);
1485 qid
= p_hwfn
->hw_info
.resc_start
[QED_LL2_QUEUE
] + connection_handle
;
1486 p_ll2_conn
->queue_id
= qid
;
1487 p_ll2_conn
->tx_stats_id
= qid
;
1488 p_rx
->set_prod_addr
= (u8 __iomem
*)p_hwfn
->regview
+
1489 GTT_BAR0_MAP_REG_TSDM_RAM
+
1490 TSTORM_LL2_RX_PRODS_OFFSET(qid
);
1491 p_tx
->doorbell_addr
= (u8 __iomem
*)p_hwfn
->doorbells
+
1492 qed_db_addr(p_ll2_conn
->cid
,
1495 rc
= qed_ll2_establish_connection_rx(p_hwfn
, p_ll2_conn
);
1499 rc
= qed_sp_ll2_tx_queue_start(p_hwfn
, p_ll2_conn
);
1503 if (!QED_IS_RDMA_PERSONALITY(p_hwfn
))
1504 qed_wr(p_hwfn
, p_ptt
, PRS_REG_USE_LIGHT_L2
, 1);
1506 qed_ll2_establish_connection_ooo(p_hwfn
, p_ll2_conn
);
1508 if (p_ll2_conn
->input
.conn_type
== QED_LL2_TYPE_FCOE
) {
1509 qed_llh_add_protocol_filter(p_hwfn
, p_ptt
,
1511 QED_LLH_FILTER_ETHERTYPE
);
1512 qed_llh_add_protocol_filter(p_hwfn
, p_ptt
,
1514 QED_LLH_FILTER_ETHERTYPE
);
1518 qed_ptt_release(p_hwfn
, p_ptt
);
1522 static void qed_ll2_post_rx_buffer_notify_fw(struct qed_hwfn
*p_hwfn
,
1523 struct qed_ll2_rx_queue
*p_rx
,
1524 struct qed_ll2_rx_packet
*p_curp
)
1526 struct qed_ll2_rx_packet
*p_posting_packet
= NULL
;
1527 struct core_ll2_rx_prod rx_prod
= { 0, 0, 0 };
1528 bool b_notify_fw
= false;
1529 u16 bd_prod
, cq_prod
;
1531 /* This handles the flushing of already posted buffers */
1532 while (!list_empty(&p_rx
->posting_descq
)) {
1533 p_posting_packet
= list_first_entry(&p_rx
->posting_descq
,
1534 struct qed_ll2_rx_packet
,
1536 list_move_tail(&p_posting_packet
->list_entry
,
1537 &p_rx
->active_descq
);
1541 /* This handles the supplied packet [if there is one] */
1543 list_add_tail(&p_curp
->list_entry
, &p_rx
->active_descq
);
1550 bd_prod
= qed_chain_get_prod_idx(&p_rx
->rxq_chain
);
1551 cq_prod
= qed_chain_get_prod_idx(&p_rx
->rcq_chain
);
1552 rx_prod
.bd_prod
= cpu_to_le16(bd_prod
);
1553 rx_prod
.cqe_prod
= cpu_to_le16(cq_prod
);
1554 DIRECT_REG_WR(p_rx
->set_prod_addr
, *((u32
*)&rx_prod
));
1557 int qed_ll2_post_rx_buffer(void *cxt
,
1558 u8 connection_handle
,
1560 u16 buf_len
, void *cookie
, u8 notify_fw
)
1562 struct qed_hwfn
*p_hwfn
= cxt
;
1563 struct core_rx_bd_with_buff_len
*p_curb
= NULL
;
1564 struct qed_ll2_rx_packet
*p_curp
= NULL
;
1565 struct qed_ll2_info
*p_ll2_conn
;
1566 struct qed_ll2_rx_queue
*p_rx
;
1567 unsigned long flags
;
1571 p_ll2_conn
= qed_ll2_handle_sanity(p_hwfn
, connection_handle
);
1574 p_rx
= &p_ll2_conn
->rx_queue
;
1576 spin_lock_irqsave(&p_rx
->lock
, flags
);
1577 if (!list_empty(&p_rx
->free_descq
))
1578 p_curp
= list_first_entry(&p_rx
->free_descq
,
1579 struct qed_ll2_rx_packet
, list_entry
);
1581 if (qed_chain_get_elem_left(&p_rx
->rxq_chain
) &&
1582 qed_chain_get_elem_left(&p_rx
->rcq_chain
)) {
1583 p_data
= qed_chain_produce(&p_rx
->rxq_chain
);
1584 p_curb
= (struct core_rx_bd_with_buff_len
*)p_data
;
1585 qed_chain_produce(&p_rx
->rcq_chain
);
1589 /* If we're lacking entires, let's try to flush buffers to FW */
1590 if (!p_curp
|| !p_curb
) {
1596 /* We have an Rx packet we can fill */
1597 DMA_REGPAIR_LE(p_curb
->addr
, addr
);
1598 p_curb
->buff_length
= cpu_to_le16(buf_len
);
1599 p_curp
->rx_buf_addr
= addr
;
1600 p_curp
->cookie
= cookie
;
1601 p_curp
->rxq_bd
= p_curb
;
1602 p_curp
->buf_length
= buf_len
;
1603 list_del(&p_curp
->list_entry
);
1605 /* Check if we only want to enqueue this packet without informing FW */
1607 list_add_tail(&p_curp
->list_entry
, &p_rx
->posting_descq
);
1612 qed_ll2_post_rx_buffer_notify_fw(p_hwfn
, p_rx
, p_curp
);
1614 spin_unlock_irqrestore(&p_rx
->lock
, flags
);
1618 static void qed_ll2_prepare_tx_packet_set(struct qed_hwfn
*p_hwfn
,
1619 struct qed_ll2_tx_queue
*p_tx
,
1620 struct qed_ll2_tx_packet
*p_curp
,
1621 struct qed_ll2_tx_pkt_info
*pkt
,
1624 list_del(&p_curp
->list_entry
);
1625 p_curp
->cookie
= pkt
->cookie
;
1626 p_curp
->bd_used
= pkt
->num_of_bds
;
1627 p_curp
->notify_fw
= notify_fw
;
1628 p_tx
->cur_send_packet
= p_curp
;
1629 p_tx
->cur_send_frag_num
= 0;
1631 p_curp
->bds_set
[p_tx
->cur_send_frag_num
].tx_frag
= pkt
->first_frag
;
1632 p_curp
->bds_set
[p_tx
->cur_send_frag_num
].frag_len
= pkt
->first_frag_len
;
1633 p_tx
->cur_send_frag_num
++;
1637 qed_ll2_prepare_tx_packet_set_bd(struct qed_hwfn
*p_hwfn
,
1638 struct qed_ll2_info
*p_ll2
,
1639 struct qed_ll2_tx_packet
*p_curp
,
1640 struct qed_ll2_tx_pkt_info
*pkt
)
1642 struct qed_chain
*p_tx_chain
= &p_ll2
->tx_queue
.txq_chain
;
1643 u16 prod_idx
= qed_chain_get_prod_idx(p_tx_chain
);
1644 struct core_tx_bd
*start_bd
= NULL
;
1645 enum core_roce_flavor_type roce_flavor
;
1646 enum core_tx_dest tx_dest
;
1647 u16 bd_data
= 0, frag_idx
;
1649 roce_flavor
= (pkt
->qed_roce_flavor
== QED_LL2_ROCE
) ? CORE_ROCE
1652 switch (pkt
->tx_dest
) {
1653 case QED_LL2_TX_DEST_NW
:
1654 tx_dest
= CORE_TX_DEST_NW
;
1656 case QED_LL2_TX_DEST_LB
:
1657 tx_dest
= CORE_TX_DEST_LB
;
1659 case QED_LL2_TX_DEST_DROP
:
1660 tx_dest
= CORE_TX_DEST_DROP
;
1663 tx_dest
= CORE_TX_DEST_LB
;
1667 start_bd
= (struct core_tx_bd
*)qed_chain_produce(p_tx_chain
);
1668 if (QED_IS_IWARP_PERSONALITY(p_hwfn
) &&
1669 p_ll2
->input
.conn_type
== QED_LL2_TYPE_OOO
)
1670 start_bd
->nw_vlan_or_lb_echo
=
1671 cpu_to_le16(IWARP_LL2_IN_ORDER_TX_QUEUE
);
1673 start_bd
->nw_vlan_or_lb_echo
= cpu_to_le16(pkt
->vlan
);
1674 SET_FIELD(start_bd
->bitfield1
, CORE_TX_BD_L4_HDR_OFFSET_W
,
1675 cpu_to_le16(pkt
->l4_hdr_offset_w
));
1676 SET_FIELD(start_bd
->bitfield1
, CORE_TX_BD_TX_DST
, tx_dest
);
1677 bd_data
|= pkt
->bd_flags
;
1678 SET_FIELD(bd_data
, CORE_TX_BD_DATA_START_BD
, 0x1);
1679 SET_FIELD(bd_data
, CORE_TX_BD_DATA_NBDS
, pkt
->num_of_bds
);
1680 SET_FIELD(bd_data
, CORE_TX_BD_DATA_ROCE_FLAV
, roce_flavor
);
1681 SET_FIELD(bd_data
, CORE_TX_BD_DATA_IP_CSUM
, !!(pkt
->enable_ip_cksum
));
1682 SET_FIELD(bd_data
, CORE_TX_BD_DATA_L4_CSUM
, !!(pkt
->enable_l4_cksum
));
1683 SET_FIELD(bd_data
, CORE_TX_BD_DATA_IP_LEN
, !!(pkt
->calc_ip_len
));
1684 start_bd
->bd_data
.as_bitfield
= cpu_to_le16(bd_data
);
1685 DMA_REGPAIR_LE(start_bd
->addr
, pkt
->first_frag
);
1686 start_bd
->nbytes
= cpu_to_le16(pkt
->first_frag_len
);
1689 (NETIF_MSG_TX_QUEUED
| QED_MSG_LL2
),
1690 "LL2 [q 0x%02x cid 0x%08x type 0x%08x] Tx Producer at [0x%04x] - set with a %04x bytes %02x BDs buffer at %08x:%08x\n",
1693 p_ll2
->input
.conn_type
,
1695 pkt
->first_frag_len
,
1697 le32_to_cpu(start_bd
->addr
.hi
),
1698 le32_to_cpu(start_bd
->addr
.lo
));
1700 if (p_ll2
->tx_queue
.cur_send_frag_num
== pkt
->num_of_bds
)
1703 /* Need to provide the packet with additional BDs for frags */
1704 for (frag_idx
= p_ll2
->tx_queue
.cur_send_frag_num
;
1705 frag_idx
< pkt
->num_of_bds
; frag_idx
++) {
1706 struct core_tx_bd
**p_bd
= &p_curp
->bds_set
[frag_idx
].txq_bd
;
1708 *p_bd
= (struct core_tx_bd
*)qed_chain_produce(p_tx_chain
);
1709 (*p_bd
)->bd_data
.as_bitfield
= 0;
1710 (*p_bd
)->bitfield1
= 0;
1711 p_curp
->bds_set
[frag_idx
].tx_frag
= 0;
1712 p_curp
->bds_set
[frag_idx
].frag_len
= 0;
1716 /* This should be called while the Txq spinlock is being held */
1717 static void qed_ll2_tx_packet_notify(struct qed_hwfn
*p_hwfn
,
1718 struct qed_ll2_info
*p_ll2_conn
)
1720 bool b_notify
= p_ll2_conn
->tx_queue
.cur_send_packet
->notify_fw
;
1721 struct qed_ll2_tx_queue
*p_tx
= &p_ll2_conn
->tx_queue
;
1722 struct qed_ll2_tx_packet
*p_pkt
= NULL
;
1723 struct core_db_data db_msg
= { 0, 0, 0 };
1726 /* If there are missing BDs, don't do anything now */
1727 if (p_ll2_conn
->tx_queue
.cur_send_frag_num
!=
1728 p_ll2_conn
->tx_queue
.cur_send_packet
->bd_used
)
1731 /* Push the current packet to the list and clean after it */
1732 list_add_tail(&p_ll2_conn
->tx_queue
.cur_send_packet
->list_entry
,
1733 &p_ll2_conn
->tx_queue
.sending_descq
);
1734 p_ll2_conn
->tx_queue
.cur_send_packet
= NULL
;
1735 p_ll2_conn
->tx_queue
.cur_send_frag_num
= 0;
1737 /* Notify FW of packet only if requested to */
1741 bd_prod
= qed_chain_get_prod_idx(&p_ll2_conn
->tx_queue
.txq_chain
);
1743 while (!list_empty(&p_tx
->sending_descq
)) {
1744 p_pkt
= list_first_entry(&p_tx
->sending_descq
,
1745 struct qed_ll2_tx_packet
, list_entry
);
1749 list_move_tail(&p_pkt
->list_entry
, &p_tx
->active_descq
);
1752 SET_FIELD(db_msg
.params
, CORE_DB_DATA_DEST
, DB_DEST_XCM
);
1753 SET_FIELD(db_msg
.params
, CORE_DB_DATA_AGG_CMD
, DB_AGG_CMD_SET
);
1754 SET_FIELD(db_msg
.params
, CORE_DB_DATA_AGG_VAL_SEL
,
1755 DQ_XCM_CORE_TX_BD_PROD_CMD
);
1756 db_msg
.agg_flags
= DQ_XCM_CORE_DQ_CF_CMD
;
1757 db_msg
.spq_prod
= cpu_to_le16(bd_prod
);
1759 /* Make sure the BDs data is updated before ringing the doorbell */
1762 DIRECT_REG_WR(p_tx
->doorbell_addr
, *((u32
*)&db_msg
));
1765 (NETIF_MSG_TX_QUEUED
| QED_MSG_LL2
),
1766 "LL2 [q 0x%02x cid 0x%08x type 0x%08x] Doorbelled [producer 0x%04x]\n",
1767 p_ll2_conn
->queue_id
,
1769 p_ll2_conn
->input
.conn_type
, db_msg
.spq_prod
);
1772 int qed_ll2_prepare_tx_packet(void *cxt
,
1773 u8 connection_handle
,
1774 struct qed_ll2_tx_pkt_info
*pkt
,
1777 struct qed_hwfn
*p_hwfn
= cxt
;
1778 struct qed_ll2_tx_packet
*p_curp
= NULL
;
1779 struct qed_ll2_info
*p_ll2_conn
= NULL
;
1780 struct qed_ll2_tx_queue
*p_tx
;
1781 struct qed_chain
*p_tx_chain
;
1782 unsigned long flags
;
1785 p_ll2_conn
= qed_ll2_handle_sanity(p_hwfn
, connection_handle
);
1788 p_tx
= &p_ll2_conn
->tx_queue
;
1789 p_tx_chain
= &p_tx
->txq_chain
;
1791 if (pkt
->num_of_bds
> p_ll2_conn
->input
.tx_max_bds_per_packet
)
1794 spin_lock_irqsave(&p_tx
->lock
, flags
);
1795 if (p_tx
->cur_send_packet
) {
1800 /* Get entry, but only if we have tx elements for it */
1801 if (!list_empty(&p_tx
->free_descq
))
1802 p_curp
= list_first_entry(&p_tx
->free_descq
,
1803 struct qed_ll2_tx_packet
, list_entry
);
1804 if (p_curp
&& qed_chain_get_elem_left(p_tx_chain
) < pkt
->num_of_bds
)
1812 /* Prepare packet and BD, and perhaps send a doorbell to FW */
1813 qed_ll2_prepare_tx_packet_set(p_hwfn
, p_tx
, p_curp
, pkt
, notify_fw
);
1815 qed_ll2_prepare_tx_packet_set_bd(p_hwfn
, p_ll2_conn
, p_curp
, pkt
);
1817 qed_ll2_tx_packet_notify(p_hwfn
, p_ll2_conn
);
1820 spin_unlock_irqrestore(&p_tx
->lock
, flags
);
1824 int qed_ll2_set_fragment_of_tx_packet(void *cxt
,
1825 u8 connection_handle
,
1826 dma_addr_t addr
, u16 nbytes
)
1828 struct qed_ll2_tx_packet
*p_cur_send_packet
= NULL
;
1829 struct qed_hwfn
*p_hwfn
= cxt
;
1830 struct qed_ll2_info
*p_ll2_conn
= NULL
;
1831 u16 cur_send_frag_num
= 0;
1832 struct core_tx_bd
*p_bd
;
1833 unsigned long flags
;
1835 p_ll2_conn
= qed_ll2_handle_sanity(p_hwfn
, connection_handle
);
1839 if (!p_ll2_conn
->tx_queue
.cur_send_packet
)
1842 p_cur_send_packet
= p_ll2_conn
->tx_queue
.cur_send_packet
;
1843 cur_send_frag_num
= p_ll2_conn
->tx_queue
.cur_send_frag_num
;
1845 if (cur_send_frag_num
>= p_cur_send_packet
->bd_used
)
1848 /* Fill the BD information, and possibly notify FW */
1849 p_bd
= p_cur_send_packet
->bds_set
[cur_send_frag_num
].txq_bd
;
1850 DMA_REGPAIR_LE(p_bd
->addr
, addr
);
1851 p_bd
->nbytes
= cpu_to_le16(nbytes
);
1852 p_cur_send_packet
->bds_set
[cur_send_frag_num
].tx_frag
= addr
;
1853 p_cur_send_packet
->bds_set
[cur_send_frag_num
].frag_len
= nbytes
;
1855 p_ll2_conn
->tx_queue
.cur_send_frag_num
++;
1857 spin_lock_irqsave(&p_ll2_conn
->tx_queue
.lock
, flags
);
1858 qed_ll2_tx_packet_notify(p_hwfn
, p_ll2_conn
);
1859 spin_unlock_irqrestore(&p_ll2_conn
->tx_queue
.lock
, flags
);
1864 int qed_ll2_terminate_connection(void *cxt
, u8 connection_handle
)
1866 struct qed_hwfn
*p_hwfn
= cxt
;
1867 struct qed_ll2_info
*p_ll2_conn
= NULL
;
1869 struct qed_ptt
*p_ptt
;
1871 p_ptt
= qed_ptt_acquire(p_hwfn
);
1875 p_ll2_conn
= qed_ll2_handle_sanity_lock(p_hwfn
, connection_handle
);
1881 /* Stop Tx & Rx of connection, if needed */
1882 if (QED_LL2_TX_REGISTERED(p_ll2_conn
)) {
1883 rc
= qed_sp_ll2_tx_queue_stop(p_hwfn
, p_ll2_conn
);
1886 qed_ll2_txq_flush(p_hwfn
, connection_handle
);
1889 if (QED_LL2_RX_REGISTERED(p_ll2_conn
)) {
1890 rc
= qed_sp_ll2_rx_queue_stop(p_hwfn
, p_ll2_conn
);
1893 qed_ll2_rxq_flush(p_hwfn
, connection_handle
);
1896 if (p_ll2_conn
->input
.conn_type
== QED_LL2_TYPE_OOO
)
1897 qed_ooo_release_all_isles(p_hwfn
, p_hwfn
->p_ooo_info
);
1899 if (p_ll2_conn
->input
.conn_type
== QED_LL2_TYPE_FCOE
) {
1900 qed_llh_remove_protocol_filter(p_hwfn
, p_ptt
,
1902 QED_LLH_FILTER_ETHERTYPE
);
1903 qed_llh_remove_protocol_filter(p_hwfn
, p_ptt
,
1905 QED_LLH_FILTER_ETHERTYPE
);
1909 qed_ptt_release(p_hwfn
, p_ptt
);
1913 static void qed_ll2_release_connection_ooo(struct qed_hwfn
*p_hwfn
,
1914 struct qed_ll2_info
*p_ll2_conn
)
1916 struct qed_ooo_buffer
*p_buffer
;
1918 if (p_ll2_conn
->input
.conn_type
!= QED_LL2_TYPE_OOO
)
1921 qed_ooo_release_all_isles(p_hwfn
, p_hwfn
->p_ooo_info
);
1922 while ((p_buffer
= qed_ooo_get_free_buffer(p_hwfn
,
1923 p_hwfn
->p_ooo_info
))) {
1924 dma_free_coherent(&p_hwfn
->cdev
->pdev
->dev
,
1925 p_buffer
->rx_buffer_size
,
1926 p_buffer
->rx_buffer_virt_addr
,
1927 p_buffer
->rx_buffer_phys_addr
);
1932 void qed_ll2_release_connection(void *cxt
, u8 connection_handle
)
1934 struct qed_hwfn
*p_hwfn
= cxt
;
1935 struct qed_ll2_info
*p_ll2_conn
= NULL
;
1937 p_ll2_conn
= qed_ll2_handle_sanity(p_hwfn
, connection_handle
);
1941 if (QED_LL2_RX_REGISTERED(p_ll2_conn
)) {
1942 p_ll2_conn
->rx_queue
.b_cb_registred
= false;
1943 qed_int_unregister_cb(p_hwfn
, p_ll2_conn
->rx_queue
.rx_sb_index
);
1946 if (QED_LL2_TX_REGISTERED(p_ll2_conn
)) {
1947 p_ll2_conn
->tx_queue
.b_cb_registred
= false;
1948 qed_int_unregister_cb(p_hwfn
, p_ll2_conn
->tx_queue
.tx_sb_index
);
1951 kfree(p_ll2_conn
->tx_queue
.descq_mem
);
1952 qed_chain_free(p_hwfn
->cdev
, &p_ll2_conn
->tx_queue
.txq_chain
);
1954 kfree(p_ll2_conn
->rx_queue
.descq_array
);
1955 qed_chain_free(p_hwfn
->cdev
, &p_ll2_conn
->rx_queue
.rxq_chain
);
1956 qed_chain_free(p_hwfn
->cdev
, &p_ll2_conn
->rx_queue
.rcq_chain
);
1958 qed_cxt_release_cid(p_hwfn
, p_ll2_conn
->cid
);
1960 qed_ll2_release_connection_ooo(p_hwfn
, p_ll2_conn
);
1962 mutex_lock(&p_ll2_conn
->mutex
);
1963 p_ll2_conn
->b_active
= false;
1964 mutex_unlock(&p_ll2_conn
->mutex
);
1967 int qed_ll2_alloc(struct qed_hwfn
*p_hwfn
)
1969 struct qed_ll2_info
*p_ll2_connections
;
1972 /* Allocate LL2's set struct */
1973 p_ll2_connections
= kcalloc(QED_MAX_NUM_OF_LL2_CONNECTIONS
,
1974 sizeof(struct qed_ll2_info
), GFP_KERNEL
);
1975 if (!p_ll2_connections
) {
1976 DP_NOTICE(p_hwfn
, "Failed to allocate `struct qed_ll2'\n");
1980 for (i
= 0; i
< QED_MAX_NUM_OF_LL2_CONNECTIONS
; i
++)
1981 p_ll2_connections
[i
].my_id
= i
;
1983 p_hwfn
->p_ll2_info
= p_ll2_connections
;
1987 void qed_ll2_setup(struct qed_hwfn
*p_hwfn
)
1991 for (i
= 0; i
< QED_MAX_NUM_OF_LL2_CONNECTIONS
; i
++)
1992 mutex_init(&p_hwfn
->p_ll2_info
[i
].mutex
);
1995 void qed_ll2_free(struct qed_hwfn
*p_hwfn
)
1997 if (!p_hwfn
->p_ll2_info
)
2000 kfree(p_hwfn
->p_ll2_info
);
2001 p_hwfn
->p_ll2_info
= NULL
;
2004 static void _qed_ll2_get_port_stats(struct qed_hwfn
*p_hwfn
,
2005 struct qed_ptt
*p_ptt
,
2006 struct qed_ll2_stats
*p_stats
)
2008 struct core_ll2_port_stats port_stats
;
2010 memset(&port_stats
, 0, sizeof(port_stats
));
2011 qed_memcpy_from(p_hwfn
, p_ptt
, &port_stats
,
2012 BAR0_MAP_REG_TSDM_RAM
+
2013 TSTORM_LL2_PORT_STAT_OFFSET(MFW_PORT(p_hwfn
)),
2014 sizeof(port_stats
));
2016 p_stats
->gsi_invalid_hdr
= HILO_64_REGPAIR(port_stats
.gsi_invalid_hdr
);
2017 p_stats
->gsi_invalid_pkt_length
=
2018 HILO_64_REGPAIR(port_stats
.gsi_invalid_pkt_length
);
2019 p_stats
->gsi_unsupported_pkt_typ
=
2020 HILO_64_REGPAIR(port_stats
.gsi_unsupported_pkt_typ
);
2021 p_stats
->gsi_crcchksm_error
=
2022 HILO_64_REGPAIR(port_stats
.gsi_crcchksm_error
);
2025 static void _qed_ll2_get_tstats(struct qed_hwfn
*p_hwfn
,
2026 struct qed_ptt
*p_ptt
,
2027 struct qed_ll2_info
*p_ll2_conn
,
2028 struct qed_ll2_stats
*p_stats
)
2030 struct core_ll2_tstorm_per_queue_stat tstats
;
2031 u8 qid
= p_ll2_conn
->queue_id
;
2034 memset(&tstats
, 0, sizeof(tstats
));
2035 tstats_addr
= BAR0_MAP_REG_TSDM_RAM
+
2036 CORE_LL2_TSTORM_PER_QUEUE_STAT_OFFSET(qid
);
2037 qed_memcpy_from(p_hwfn
, p_ptt
, &tstats
, tstats_addr
, sizeof(tstats
));
2039 p_stats
->packet_too_big_discard
=
2040 HILO_64_REGPAIR(tstats
.packet_too_big_discard
);
2041 p_stats
->no_buff_discard
= HILO_64_REGPAIR(tstats
.no_buff_discard
);
2044 static void _qed_ll2_get_ustats(struct qed_hwfn
*p_hwfn
,
2045 struct qed_ptt
*p_ptt
,
2046 struct qed_ll2_info
*p_ll2_conn
,
2047 struct qed_ll2_stats
*p_stats
)
2049 struct core_ll2_ustorm_per_queue_stat ustats
;
2050 u8 qid
= p_ll2_conn
->queue_id
;
2053 memset(&ustats
, 0, sizeof(ustats
));
2054 ustats_addr
= BAR0_MAP_REG_USDM_RAM
+
2055 CORE_LL2_USTORM_PER_QUEUE_STAT_OFFSET(qid
);
2056 qed_memcpy_from(p_hwfn
, p_ptt
, &ustats
, ustats_addr
, sizeof(ustats
));
2058 p_stats
->rcv_ucast_bytes
= HILO_64_REGPAIR(ustats
.rcv_ucast_bytes
);
2059 p_stats
->rcv_mcast_bytes
= HILO_64_REGPAIR(ustats
.rcv_mcast_bytes
);
2060 p_stats
->rcv_bcast_bytes
= HILO_64_REGPAIR(ustats
.rcv_bcast_bytes
);
2061 p_stats
->rcv_ucast_pkts
= HILO_64_REGPAIR(ustats
.rcv_ucast_pkts
);
2062 p_stats
->rcv_mcast_pkts
= HILO_64_REGPAIR(ustats
.rcv_mcast_pkts
);
2063 p_stats
->rcv_bcast_pkts
= HILO_64_REGPAIR(ustats
.rcv_bcast_pkts
);
2066 static void _qed_ll2_get_pstats(struct qed_hwfn
*p_hwfn
,
2067 struct qed_ptt
*p_ptt
,
2068 struct qed_ll2_info
*p_ll2_conn
,
2069 struct qed_ll2_stats
*p_stats
)
2071 struct core_ll2_pstorm_per_queue_stat pstats
;
2072 u8 stats_id
= p_ll2_conn
->tx_stats_id
;
2075 memset(&pstats
, 0, sizeof(pstats
));
2076 pstats_addr
= BAR0_MAP_REG_PSDM_RAM
+
2077 CORE_LL2_PSTORM_PER_QUEUE_STAT_OFFSET(stats_id
);
2078 qed_memcpy_from(p_hwfn
, p_ptt
, &pstats
, pstats_addr
, sizeof(pstats
));
2080 p_stats
->sent_ucast_bytes
= HILO_64_REGPAIR(pstats
.sent_ucast_bytes
);
2081 p_stats
->sent_mcast_bytes
= HILO_64_REGPAIR(pstats
.sent_mcast_bytes
);
2082 p_stats
->sent_bcast_bytes
= HILO_64_REGPAIR(pstats
.sent_bcast_bytes
);
2083 p_stats
->sent_ucast_pkts
= HILO_64_REGPAIR(pstats
.sent_ucast_pkts
);
2084 p_stats
->sent_mcast_pkts
= HILO_64_REGPAIR(pstats
.sent_mcast_pkts
);
2085 p_stats
->sent_bcast_pkts
= HILO_64_REGPAIR(pstats
.sent_bcast_pkts
);
2088 int qed_ll2_get_stats(void *cxt
,
2089 u8 connection_handle
, struct qed_ll2_stats
*p_stats
)
2091 struct qed_hwfn
*p_hwfn
= cxt
;
2092 struct qed_ll2_info
*p_ll2_conn
= NULL
;
2093 struct qed_ptt
*p_ptt
;
2095 memset(p_stats
, 0, sizeof(*p_stats
));
2097 if ((connection_handle
>= QED_MAX_NUM_OF_LL2_CONNECTIONS
) ||
2098 !p_hwfn
->p_ll2_info
)
2101 p_ll2_conn
= &p_hwfn
->p_ll2_info
[connection_handle
];
2103 p_ptt
= qed_ptt_acquire(p_hwfn
);
2105 DP_ERR(p_hwfn
, "Failed to acquire ptt\n");
2109 if (p_ll2_conn
->input
.gsi_enable
)
2110 _qed_ll2_get_port_stats(p_hwfn
, p_ptt
, p_stats
);
2111 _qed_ll2_get_tstats(p_hwfn
, p_ptt
, p_ll2_conn
, p_stats
);
2112 _qed_ll2_get_ustats(p_hwfn
, p_ptt
, p_ll2_conn
, p_stats
);
2113 if (p_ll2_conn
->tx_stats_en
)
2114 _qed_ll2_get_pstats(p_hwfn
, p_ptt
, p_ll2_conn
, p_stats
);
2116 qed_ptt_release(p_hwfn
, p_ptt
);
2120 static void qed_ll2b_release_rx_packet(void *cxt
,
2121 u8 connection_handle
,
2123 dma_addr_t rx_buf_addr
,
2126 struct qed_hwfn
*p_hwfn
= cxt
;
2128 qed_ll2_dealloc_buffer(p_hwfn
->cdev
, cookie
);
2131 static void qed_ll2_register_cb_ops(struct qed_dev
*cdev
,
2132 const struct qed_ll2_cb_ops
*ops
,
2135 cdev
->ll2
->cbs
= ops
;
2136 cdev
->ll2
->cb_cookie
= cookie
;
2139 struct qed_ll2_cbs ll2_cbs
= {
2140 .rx_comp_cb
= &qed_ll2b_complete_rx_packet
,
2141 .rx_release_cb
= &qed_ll2b_release_rx_packet
,
2142 .tx_comp_cb
= &qed_ll2b_complete_tx_packet
,
2143 .tx_release_cb
= &qed_ll2b_complete_tx_packet
,
2146 static void qed_ll2_set_conn_data(struct qed_dev
*cdev
,
2147 struct qed_ll2_acquire_data
*data
,
2148 struct qed_ll2_params
*params
,
2149 enum qed_ll2_conn_type conn_type
,
2150 u8
*handle
, bool lb
)
2152 memset(data
, 0, sizeof(*data
));
2154 data
->input
.conn_type
= conn_type
;
2155 data
->input
.mtu
= params
->mtu
;
2156 data
->input
.rx_num_desc
= QED_LL2_RX_SIZE
;
2157 data
->input
.rx_drop_ttl0_flg
= params
->drop_ttl0_packets
;
2158 data
->input
.rx_vlan_removal_en
= params
->rx_vlan_stripping
;
2159 data
->input
.tx_num_desc
= QED_LL2_TX_SIZE
;
2160 data
->p_connection_handle
= handle
;
2161 data
->cbs
= &ll2_cbs
;
2162 ll2_cbs
.cookie
= QED_LEADING_HWFN(cdev
);
2165 data
->input
.tx_tc
= PKT_LB_TC
;
2166 data
->input
.tx_dest
= QED_LL2_TX_DEST_LB
;
2168 data
->input
.tx_tc
= 0;
2169 data
->input
.tx_dest
= QED_LL2_TX_DEST_NW
;
2173 static int qed_ll2_start_ooo(struct qed_dev
*cdev
,
2174 struct qed_ll2_params
*params
)
2176 struct qed_hwfn
*hwfn
= QED_LEADING_HWFN(cdev
);
2177 u8
*handle
= &hwfn
->pf_params
.iscsi_pf_params
.ll2_ooo_queue_id
;
2178 struct qed_ll2_acquire_data data
;
2181 qed_ll2_set_conn_data(cdev
, &data
, params
,
2182 QED_LL2_TYPE_OOO
, handle
, true);
2184 rc
= qed_ll2_acquire_connection(hwfn
, &data
);
2186 DP_INFO(cdev
, "Failed to acquire LL2 OOO connection\n");
2190 rc
= qed_ll2_establish_connection(hwfn
, *handle
);
2192 DP_INFO(cdev
, "Failed to establist LL2 OOO connection\n");
2199 qed_ll2_release_connection(hwfn
, *handle
);
2201 *handle
= QED_LL2_UNUSED_HANDLE
;
2205 static int qed_ll2_start(struct qed_dev
*cdev
, struct qed_ll2_params
*params
)
2207 struct qed_ll2_buffer
*buffer
, *tmp_buffer
;
2208 enum qed_ll2_conn_type conn_type
;
2209 struct qed_ll2_acquire_data data
;
2210 struct qed_ptt
*p_ptt
;
2214 /* Initialize LL2 locks & lists */
2215 INIT_LIST_HEAD(&cdev
->ll2
->list
);
2216 spin_lock_init(&cdev
->ll2
->lock
);
2217 cdev
->ll2
->rx_size
= NET_SKB_PAD
+ ETH_HLEN
+
2218 L1_CACHE_BYTES
+ params
->mtu
;
2220 /*Allocate memory for LL2 */
2221 DP_INFO(cdev
, "Allocating LL2 buffers of size %08x bytes\n",
2222 cdev
->ll2
->rx_size
);
2223 for (i
= 0; i
< QED_LL2_RX_SIZE
; i
++) {
2224 buffer
= kzalloc(sizeof(*buffer
), GFP_KERNEL
);
2226 DP_INFO(cdev
, "Failed to allocate LL2 buffers\n");
2230 rc
= qed_ll2_alloc_buffer(cdev
, (u8
**)&buffer
->data
,
2231 &buffer
->phys_addr
);
2237 list_add_tail(&buffer
->list
, &cdev
->ll2
->list
);
2240 switch (QED_LEADING_HWFN(cdev
)->hw_info
.personality
) {
2242 conn_type
= QED_LL2_TYPE_FCOE
;
2245 conn_type
= QED_LL2_TYPE_ISCSI
;
2247 case QED_PCI_ETH_ROCE
:
2248 conn_type
= QED_LL2_TYPE_ROCE
;
2251 conn_type
= QED_LL2_TYPE_TEST
;
2254 qed_ll2_set_conn_data(cdev
, &data
, params
, conn_type
,
2255 &cdev
->ll2
->handle
, false);
2257 rc
= qed_ll2_acquire_connection(QED_LEADING_HWFN(cdev
), &data
);
2259 DP_INFO(cdev
, "Failed to acquire LL2 connection\n");
2263 rc
= qed_ll2_establish_connection(QED_LEADING_HWFN(cdev
),
2266 DP_INFO(cdev
, "Failed to establish LL2 connection\n");
2270 /* Post all Rx buffers to FW */
2271 spin_lock_bh(&cdev
->ll2
->lock
);
2272 list_for_each_entry_safe(buffer
, tmp_buffer
, &cdev
->ll2
->list
, list
) {
2273 rc
= qed_ll2_post_rx_buffer(QED_LEADING_HWFN(cdev
),
2275 buffer
->phys_addr
, 0, buffer
, 1);
2278 "Failed to post an Rx buffer; Deleting it\n");
2279 dma_unmap_single(&cdev
->pdev
->dev
, buffer
->phys_addr
,
2280 cdev
->ll2
->rx_size
, DMA_FROM_DEVICE
);
2281 kfree(buffer
->data
);
2282 list_del(&buffer
->list
);
2285 cdev
->ll2
->rx_cnt
++;
2288 spin_unlock_bh(&cdev
->ll2
->lock
);
2290 if (!cdev
->ll2
->rx_cnt
) {
2291 DP_INFO(cdev
, "Failed passing even a single Rx buffer\n");
2292 goto release_terminate
;
2295 if (!is_valid_ether_addr(params
->ll2_mac_address
)) {
2296 DP_INFO(cdev
, "Invalid Ethernet address\n");
2297 goto release_terminate
;
2300 if (QED_LEADING_HWFN(cdev
)->hw_info
.personality
== QED_PCI_ISCSI
) {
2301 DP_VERBOSE(cdev
, QED_MSG_STORAGE
, "Starting OOO LL2 queue\n");
2302 rc
= qed_ll2_start_ooo(cdev
, params
);
2305 "Failed to initialize the OOO LL2 queue\n");
2306 goto release_terminate
;
2310 p_ptt
= qed_ptt_acquire(QED_LEADING_HWFN(cdev
));
2312 DP_INFO(cdev
, "Failed to acquire PTT\n");
2313 goto release_terminate
;
2316 rc
= qed_llh_add_mac_filter(QED_LEADING_HWFN(cdev
), p_ptt
,
2317 params
->ll2_mac_address
);
2318 qed_ptt_release(QED_LEADING_HWFN(cdev
), p_ptt
);
2320 DP_ERR(cdev
, "Failed to allocate LLH filter\n");
2321 goto release_terminate_all
;
2324 ether_addr_copy(cdev
->ll2_mac_address
, params
->ll2_mac_address
);
2327 release_terminate_all
:
2330 qed_ll2_terminate_connection(QED_LEADING_HWFN(cdev
), cdev
->ll2
->handle
);
2332 qed_ll2_release_connection(QED_LEADING_HWFN(cdev
), cdev
->ll2
->handle
);
2334 qed_ll2_kill_buffers(cdev
);
2335 cdev
->ll2
->handle
= QED_LL2_UNUSED_HANDLE
;
2339 static int qed_ll2_stop(struct qed_dev
*cdev
)
2341 struct qed_ptt
*p_ptt
;
2344 if (cdev
->ll2
->handle
== QED_LL2_UNUSED_HANDLE
)
2347 p_ptt
= qed_ptt_acquire(QED_LEADING_HWFN(cdev
));
2349 DP_INFO(cdev
, "Failed to acquire PTT\n");
2353 qed_llh_remove_mac_filter(QED_LEADING_HWFN(cdev
), p_ptt
,
2354 cdev
->ll2_mac_address
);
2355 qed_ptt_release(QED_LEADING_HWFN(cdev
), p_ptt
);
2356 eth_zero_addr(cdev
->ll2_mac_address
);
2358 if (QED_LEADING_HWFN(cdev
)->hw_info
.personality
== QED_PCI_ISCSI
)
2359 qed_ll2_stop_ooo(cdev
);
2361 rc
= qed_ll2_terminate_connection(QED_LEADING_HWFN(cdev
),
2364 DP_INFO(cdev
, "Failed to terminate LL2 connection\n");
2366 qed_ll2_kill_buffers(cdev
);
2368 qed_ll2_release_connection(QED_LEADING_HWFN(cdev
), cdev
->ll2
->handle
);
2369 cdev
->ll2
->handle
= QED_LL2_UNUSED_HANDLE
;
2376 static int qed_ll2_start_xmit(struct qed_dev
*cdev
, struct sk_buff
*skb
)
2378 struct qed_ll2_tx_pkt_info pkt
;
2379 const skb_frag_t
*frag
;
2380 int rc
= -EINVAL
, i
;
2385 if (unlikely(skb
->ip_summed
!= CHECKSUM_NONE
)) {
2386 DP_INFO(cdev
, "Cannot transmit a checksumed packet\n");
2390 if (1 + skb_shinfo(skb
)->nr_frags
> CORE_LL2_TX_MAX_BDS_PER_PACKET
) {
2391 DP_ERR(cdev
, "Cannot transmit a packet with %d fragments\n",
2392 1 + skb_shinfo(skb
)->nr_frags
);
2396 mapping
= dma_map_single(&cdev
->pdev
->dev
, skb
->data
,
2397 skb
->len
, DMA_TO_DEVICE
);
2398 if (unlikely(dma_mapping_error(&cdev
->pdev
->dev
, mapping
))) {
2399 DP_NOTICE(cdev
, "SKB mapping failed\n");
2403 /* Request HW to calculate IP csum */
2404 if (!((vlan_get_protocol(skb
) == htons(ETH_P_IPV6
)) &&
2405 ipv6_hdr(skb
)->nexthdr
== NEXTHDR_IPV6
))
2406 flags
|= BIT(CORE_TX_BD_DATA_IP_CSUM_SHIFT
);
2408 if (skb_vlan_tag_present(skb
)) {
2409 vlan
= skb_vlan_tag_get(skb
);
2410 flags
|= BIT(CORE_TX_BD_DATA_VLAN_INSERTION_SHIFT
);
2413 memset(&pkt
, 0, sizeof(pkt
));
2414 pkt
.num_of_bds
= 1 + skb_shinfo(skb
)->nr_frags
;
2416 pkt
.bd_flags
= flags
;
2417 pkt
.tx_dest
= QED_LL2_TX_DEST_NW
;
2418 pkt
.first_frag
= mapping
;
2419 pkt
.first_frag_len
= skb
->len
;
2422 rc
= qed_ll2_prepare_tx_packet(&cdev
->hwfns
[0], cdev
->ll2
->handle
,
2427 for (i
= 0; i
< skb_shinfo(skb
)->nr_frags
; i
++) {
2428 frag
= &skb_shinfo(skb
)->frags
[i
];
2430 mapping
= skb_frag_dma_map(&cdev
->pdev
->dev
, frag
, 0,
2431 skb_frag_size(frag
), DMA_TO_DEVICE
);
2433 if (unlikely(dma_mapping_error(&cdev
->pdev
->dev
, mapping
))) {
2435 "Unable to map frag - dropping packet\n");
2439 rc
= qed_ll2_set_fragment_of_tx_packet(QED_LEADING_HWFN(cdev
),
2442 skb_frag_size(frag
));
2444 /* if failed not much to do here, partial packet has been posted
2445 * we can't free memory, will need to wait for completion.
2454 dma_unmap_single(&cdev
->pdev
->dev
, mapping
, skb
->len
, DMA_TO_DEVICE
);
2460 static int qed_ll2_stats(struct qed_dev
*cdev
, struct qed_ll2_stats
*stats
)
2465 return qed_ll2_get_stats(QED_LEADING_HWFN(cdev
),
2466 cdev
->ll2
->handle
, stats
);
2469 const struct qed_ll2_ops qed_ll2_ops_pass
= {
2470 .start
= &qed_ll2_start
,
2471 .stop
= &qed_ll2_stop
,
2472 .start_xmit
= &qed_ll2_start_xmit
,
2473 .register_cb_ops
= &qed_ll2_register_cb_ops
,
2474 .get_stats
= &qed_ll2_stats
,
2477 int qed_ll2_alloc_if(struct qed_dev
*cdev
)
2479 cdev
->ll2
= kzalloc(sizeof(*cdev
->ll2
), GFP_KERNEL
);
2480 return cdev
->ll2
? 0 : -ENOMEM
;
2483 void qed_ll2_dealloc_if(struct qed_dev
*cdev
)