1 /* bnx2x_sp.c: Qlogic Everest network driver.
3 * Copyright 2011-2013 Broadcom Corporation
4 * Copyright (c) 2014 QLogic Corporation
7 * Unless you and Qlogic execute a separate written software license
8 * agreement governing use of this software, this software is licensed to you
9 * under the terms of the GNU General Public License version 2, available
10 * at http://www.gnu.org/licenses/gpl-2.0.html (the "GPL").
12 * Notwithstanding the above, under no circumstances may you combine this
13 * software in any way with any other Qlogic software provided under a
14 * license other than the GPL, without Qlogic's express prior written
17 * Maintained by: Ariel Elior <ariel.elior@qlogic.com>
18 * Written by: Vladislav Zolotarov
22 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24 #include <linux/module.h>
25 #include <linux/crc32.h>
26 #include <linux/netdevice.h>
27 #include <linux/etherdevice.h>
28 #include <linux/crc32c.h>
30 #include "bnx2x_cmn.h"
33 #define BNX2X_MAX_EMUL_MULTI 16
35 /**** Exe Queue interfaces ****/
38 * bnx2x_exe_queue_init - init the Exe Queue object
40 * @o: pointer to the object
42 * @owner: pointer to the owner
43 * @validate: validate function pointer
44 * @optimize: optimize function pointer
45 * @exec: execute function pointer
46 * @get: get function pointer
48 static inline void bnx2x_exe_queue_init(struct bnx2x
*bp
,
49 struct bnx2x_exe_queue_obj
*o
,
51 union bnx2x_qable_obj
*owner
,
52 exe_q_validate validate
,
54 exe_q_optimize optimize
,
58 memset(o
, 0, sizeof(*o
));
60 INIT_LIST_HEAD(&o
->exe_queue
);
61 INIT_LIST_HEAD(&o
->pending_comp
);
63 spin_lock_init(&o
->lock
);
65 o
->exe_chunk_len
= exe_len
;
68 /* Owner specific callbacks */
69 o
->validate
= validate
;
71 o
->optimize
= optimize
;
75 DP(BNX2X_MSG_SP
, "Setup the execution queue with the chunk length of %d\n",
79 static inline void bnx2x_exe_queue_free_elem(struct bnx2x
*bp
,
80 struct bnx2x_exeq_elem
*elem
)
82 DP(BNX2X_MSG_SP
, "Deleting an exe_queue element\n");
86 static inline int bnx2x_exe_queue_length(struct bnx2x_exe_queue_obj
*o
)
88 struct bnx2x_exeq_elem
*elem
;
91 spin_lock_bh(&o
->lock
);
93 list_for_each_entry(elem
, &o
->exe_queue
, link
)
96 spin_unlock_bh(&o
->lock
);
102 * bnx2x_exe_queue_add - add a new element to the execution queue
106 * @cmd: new command to add
107 * @restore: true - do not optimize the command
109 * If the element is optimized or is illegal, frees it.
111 static inline int bnx2x_exe_queue_add(struct bnx2x
*bp
,
112 struct bnx2x_exe_queue_obj
*o
,
113 struct bnx2x_exeq_elem
*elem
,
118 spin_lock_bh(&o
->lock
);
121 /* Try to cancel this element queue */
122 rc
= o
->optimize(bp
, o
->owner
, elem
);
126 /* Check if this request is ok */
127 rc
= o
->validate(bp
, o
->owner
, elem
);
129 DP(BNX2X_MSG_SP
, "Preamble failed: %d\n", rc
);
134 /* If so, add it to the execution queue */
135 list_add_tail(&elem
->link
, &o
->exe_queue
);
137 spin_unlock_bh(&o
->lock
);
142 bnx2x_exe_queue_free_elem(bp
, elem
);
144 spin_unlock_bh(&o
->lock
);
149 static inline void __bnx2x_exe_queue_reset_pending(
151 struct bnx2x_exe_queue_obj
*o
)
153 struct bnx2x_exeq_elem
*elem
;
155 while (!list_empty(&o
->pending_comp
)) {
156 elem
= list_first_entry(&o
->pending_comp
,
157 struct bnx2x_exeq_elem
, link
);
159 list_del(&elem
->link
);
160 bnx2x_exe_queue_free_elem(bp
, elem
);
165 * bnx2x_exe_queue_step - execute one execution chunk atomically
169 * @ramrod_flags: flags
171 * (Should be called while holding the exe_queue->lock).
173 static inline int bnx2x_exe_queue_step(struct bnx2x
*bp
,
174 struct bnx2x_exe_queue_obj
*o
,
175 unsigned long *ramrod_flags
)
177 struct bnx2x_exeq_elem
*elem
, spacer
;
180 memset(&spacer
, 0, sizeof(spacer
));
182 /* Next step should not be performed until the current is finished,
183 * unless a DRV_CLEAR_ONLY bit is set. In this case we just want to
184 * properly clear object internals without sending any command to the FW
185 * which also implies there won't be any completion to clear the
188 if (!list_empty(&o
->pending_comp
)) {
189 if (test_bit(RAMROD_DRV_CLR_ONLY
, ramrod_flags
)) {
190 DP(BNX2X_MSG_SP
, "RAMROD_DRV_CLR_ONLY requested: resetting a pending_comp list\n");
191 __bnx2x_exe_queue_reset_pending(bp
, o
);
197 /* Run through the pending commands list and create a next
200 while (!list_empty(&o
->exe_queue
)) {
201 elem
= list_first_entry(&o
->exe_queue
, struct bnx2x_exeq_elem
,
203 WARN_ON(!elem
->cmd_len
);
205 if (cur_len
+ elem
->cmd_len
<= o
->exe_chunk_len
) {
206 cur_len
+= elem
->cmd_len
;
207 /* Prevent from both lists being empty when moving an
208 * element. This will allow the call of
209 * bnx2x_exe_queue_empty() without locking.
211 list_add_tail(&spacer
.link
, &o
->pending_comp
);
213 list_move_tail(&elem
->link
, &o
->pending_comp
);
214 list_del(&spacer
.link
);
223 rc
= o
->execute(bp
, o
->owner
, &o
->pending_comp
, ramrod_flags
);
225 /* In case of an error return the commands back to the queue
226 * and reset the pending_comp.
228 list_splice_init(&o
->pending_comp
, &o
->exe_queue
);
230 /* If zero is returned, means there are no outstanding pending
231 * completions and we may dismiss the pending list.
233 __bnx2x_exe_queue_reset_pending(bp
, o
);
238 static inline bool bnx2x_exe_queue_empty(struct bnx2x_exe_queue_obj
*o
)
240 bool empty
= list_empty(&o
->exe_queue
);
242 /* Don't reorder!!! */
245 return empty
&& list_empty(&o
->pending_comp
);
248 static inline struct bnx2x_exeq_elem
*bnx2x_exe_queue_alloc_elem(
251 DP(BNX2X_MSG_SP
, "Allocating a new exe_queue element\n");
252 return kzalloc(sizeof(struct bnx2x_exeq_elem
), GFP_ATOMIC
);
255 /************************ raw_obj functions ***********************************/
256 static bool bnx2x_raw_check_pending(struct bnx2x_raw_obj
*o
)
258 return !!test_bit(o
->state
, o
->pstate
);
261 static void bnx2x_raw_clear_pending(struct bnx2x_raw_obj
*o
)
263 smp_mb__before_atomic();
264 clear_bit(o
->state
, o
->pstate
);
265 smp_mb__after_atomic();
268 static void bnx2x_raw_set_pending(struct bnx2x_raw_obj
*o
)
270 smp_mb__before_atomic();
271 set_bit(o
->state
, o
->pstate
);
272 smp_mb__after_atomic();
276 * bnx2x_state_wait - wait until the given bit(state) is cleared
279 * @state: state which is to be cleared
280 * @state_p: state buffer
283 static inline int bnx2x_state_wait(struct bnx2x
*bp
, int state
,
284 unsigned long *pstate
)
286 /* can take a while if any port is running */
289 if (CHIP_REV_IS_EMUL(bp
))
292 DP(BNX2X_MSG_SP
, "waiting for state to become %d\n", state
);
296 if (!test_bit(state
, pstate
)) {
297 #ifdef BNX2X_STOP_ON_ERROR
298 DP(BNX2X_MSG_SP
, "exit (cnt %d)\n", 5000 - cnt
);
303 usleep_range(1000, 2000);
310 BNX2X_ERR("timeout waiting for state %d\n", state
);
311 #ifdef BNX2X_STOP_ON_ERROR
318 static int bnx2x_raw_wait(struct bnx2x
*bp
, struct bnx2x_raw_obj
*raw
)
320 return bnx2x_state_wait(bp
, raw
->state
, raw
->pstate
);
323 /***************** Classification verbs: Set/Del MAC/VLAN/VLAN-MAC ************/
324 /* credit handling callbacks */
325 static bool bnx2x_get_cam_offset_mac(struct bnx2x_vlan_mac_obj
*o
, int *offset
)
327 struct bnx2x_credit_pool_obj
*mp
= o
->macs_pool
;
331 return mp
->get_entry(mp
, offset
);
334 static bool bnx2x_get_credit_mac(struct bnx2x_vlan_mac_obj
*o
)
336 struct bnx2x_credit_pool_obj
*mp
= o
->macs_pool
;
340 return mp
->get(mp
, 1);
343 static bool bnx2x_get_cam_offset_vlan(struct bnx2x_vlan_mac_obj
*o
, int *offset
)
345 struct bnx2x_credit_pool_obj
*vp
= o
->vlans_pool
;
349 return vp
->get_entry(vp
, offset
);
352 static bool bnx2x_get_credit_vlan(struct bnx2x_vlan_mac_obj
*o
)
354 struct bnx2x_credit_pool_obj
*vp
= o
->vlans_pool
;
358 return vp
->get(vp
, 1);
361 static bool bnx2x_get_credit_vlan_mac(struct bnx2x_vlan_mac_obj
*o
)
363 struct bnx2x_credit_pool_obj
*mp
= o
->macs_pool
;
364 struct bnx2x_credit_pool_obj
*vp
= o
->vlans_pool
;
369 if (!vp
->get(vp
, 1)) {
377 static bool bnx2x_put_cam_offset_mac(struct bnx2x_vlan_mac_obj
*o
, int offset
)
379 struct bnx2x_credit_pool_obj
*mp
= o
->macs_pool
;
381 return mp
->put_entry(mp
, offset
);
384 static bool bnx2x_put_credit_mac(struct bnx2x_vlan_mac_obj
*o
)
386 struct bnx2x_credit_pool_obj
*mp
= o
->macs_pool
;
388 return mp
->put(mp
, 1);
391 static bool bnx2x_put_cam_offset_vlan(struct bnx2x_vlan_mac_obj
*o
, int offset
)
393 struct bnx2x_credit_pool_obj
*vp
= o
->vlans_pool
;
395 return vp
->put_entry(vp
, offset
);
398 static bool bnx2x_put_credit_vlan(struct bnx2x_vlan_mac_obj
*o
)
400 struct bnx2x_credit_pool_obj
*vp
= o
->vlans_pool
;
402 return vp
->put(vp
, 1);
405 static bool bnx2x_put_credit_vlan_mac(struct bnx2x_vlan_mac_obj
*o
)
407 struct bnx2x_credit_pool_obj
*mp
= o
->macs_pool
;
408 struct bnx2x_credit_pool_obj
*vp
= o
->vlans_pool
;
413 if (!vp
->put(vp
, 1)) {
422 * __bnx2x_vlan_mac_h_write_trylock - try getting the vlan mac writer lock
425 * @o: vlan_mac object
427 * @details: Non-blocking implementation; should be called under execution
430 static int __bnx2x_vlan_mac_h_write_trylock(struct bnx2x
*bp
,
431 struct bnx2x_vlan_mac_obj
*o
)
433 if (o
->head_reader
) {
434 DP(BNX2X_MSG_SP
, "vlan_mac_lock writer - There are readers; Busy\n");
438 DP(BNX2X_MSG_SP
, "vlan_mac_lock writer - Taken\n");
443 * __bnx2x_vlan_mac_h_exec_pending - execute step instead of a previous step
446 * @o: vlan_mac object
448 * @details Should be called under execution queue lock; notice it might release
449 * and reclaim it during its run.
451 static void __bnx2x_vlan_mac_h_exec_pending(struct bnx2x
*bp
,
452 struct bnx2x_vlan_mac_obj
*o
)
455 unsigned long ramrod_flags
= o
->saved_ramrod_flags
;
457 DP(BNX2X_MSG_SP
, "vlan_mac_lock execute pending command with ramrod flags %lu\n",
459 o
->head_exe_request
= false;
460 o
->saved_ramrod_flags
= 0;
461 rc
= bnx2x_exe_queue_step(bp
, &o
->exe_queue
, &ramrod_flags
);
462 if ((rc
!= 0) && (rc
!= 1)) {
463 BNX2X_ERR("execution of pending commands failed with rc %d\n",
465 #ifdef BNX2X_STOP_ON_ERROR
472 * __bnx2x_vlan_mac_h_pend - Pend an execution step which couldn't run
475 * @o: vlan_mac object
476 * @ramrod_flags: ramrod flags of missed execution
478 * @details Should be called under execution queue lock.
480 static void __bnx2x_vlan_mac_h_pend(struct bnx2x
*bp
,
481 struct bnx2x_vlan_mac_obj
*o
,
482 unsigned long ramrod_flags
)
484 o
->head_exe_request
= true;
485 o
->saved_ramrod_flags
= ramrod_flags
;
486 DP(BNX2X_MSG_SP
, "Placing pending execution with ramrod flags %lu\n",
491 * __bnx2x_vlan_mac_h_write_unlock - unlock the vlan mac head list writer lock
494 * @o: vlan_mac object
496 * @details Should be called under execution queue lock. Notice if a pending
497 * execution exists, it would perform it - possibly releasing and
498 * reclaiming the execution queue lock.
500 static void __bnx2x_vlan_mac_h_write_unlock(struct bnx2x
*bp
,
501 struct bnx2x_vlan_mac_obj
*o
)
503 /* It's possible a new pending execution was added since this writer
504 * executed. If so, execute again. [Ad infinitum]
506 while (o
->head_exe_request
) {
507 DP(BNX2X_MSG_SP
, "vlan_mac_lock - writer release encountered a pending request\n");
508 __bnx2x_vlan_mac_h_exec_pending(bp
, o
);
514 * __bnx2x_vlan_mac_h_read_lock - lock the vlan mac head list reader lock
517 * @o: vlan_mac object
519 * @details Should be called under the execution queue lock. May sleep. May
520 * release and reclaim execution queue lock during its run.
522 static int __bnx2x_vlan_mac_h_read_lock(struct bnx2x
*bp
,
523 struct bnx2x_vlan_mac_obj
*o
)
525 /* If we got here, we're holding lock --> no WRITER exists */
527 DP(BNX2X_MSG_SP
, "vlan_mac_lock - locked reader - number %d\n",
534 * bnx2x_vlan_mac_h_read_lock - lock the vlan mac head list reader lock
537 * @o: vlan_mac object
539 * @details May sleep. Claims and releases execution queue lock during its run.
541 int bnx2x_vlan_mac_h_read_lock(struct bnx2x
*bp
,
542 struct bnx2x_vlan_mac_obj
*o
)
546 spin_lock_bh(&o
->exe_queue
.lock
);
547 rc
= __bnx2x_vlan_mac_h_read_lock(bp
, o
);
548 spin_unlock_bh(&o
->exe_queue
.lock
);
554 * __bnx2x_vlan_mac_h_read_unlock - unlock the vlan mac head list reader lock
557 * @o: vlan_mac object
559 * @details Should be called under execution queue lock. Notice if a pending
560 * execution exists, it would be performed if this was the last
561 * reader. possibly releasing and reclaiming the execution queue lock.
563 static void __bnx2x_vlan_mac_h_read_unlock(struct bnx2x
*bp
,
564 struct bnx2x_vlan_mac_obj
*o
)
566 if (!o
->head_reader
) {
567 BNX2X_ERR("Need to release vlan mac reader lock, but lock isn't taken\n");
568 #ifdef BNX2X_STOP_ON_ERROR
573 DP(BNX2X_MSG_SP
, "vlan_mac_lock - decreased readers to %d\n",
577 /* It's possible a new pending execution was added, and that this reader
578 * was last - if so we need to execute the command.
580 if (!o
->head_reader
&& o
->head_exe_request
) {
581 DP(BNX2X_MSG_SP
, "vlan_mac_lock - reader release encountered a pending request\n");
583 /* Writer release will do the trick */
584 __bnx2x_vlan_mac_h_write_unlock(bp
, o
);
589 * bnx2x_vlan_mac_h_read_unlock - unlock the vlan mac head list reader lock
592 * @o: vlan_mac object
594 * @details Notice if a pending execution exists, it would be performed if this
595 * was the last reader. Claims and releases the execution queue lock
598 void bnx2x_vlan_mac_h_read_unlock(struct bnx2x
*bp
,
599 struct bnx2x_vlan_mac_obj
*o
)
601 spin_lock_bh(&o
->exe_queue
.lock
);
602 __bnx2x_vlan_mac_h_read_unlock(bp
, o
);
603 spin_unlock_bh(&o
->exe_queue
.lock
);
606 static int bnx2x_get_n_elements(struct bnx2x
*bp
, struct bnx2x_vlan_mac_obj
*o
,
607 int n
, u8
*base
, u8 stride
, u8 size
)
609 struct bnx2x_vlan_mac_registry_elem
*pos
;
614 DP(BNX2X_MSG_SP
, "get_n_elements - taking vlan_mac_lock (reader)\n");
615 read_lock
= bnx2x_vlan_mac_h_read_lock(bp
, o
);
617 BNX2X_ERR("get_n_elements failed to get vlan mac reader lock; Access without lock\n");
620 list_for_each_entry(pos
, &o
->head
, link
) {
622 memcpy(next
, &pos
->u
, size
);
624 DP(BNX2X_MSG_SP
, "copied element number %d to address %p element was:\n",
626 next
+= stride
+ size
;
630 if (read_lock
== 0) {
631 DP(BNX2X_MSG_SP
, "get_n_elements - releasing vlan_mac_lock (reader)\n");
632 bnx2x_vlan_mac_h_read_unlock(bp
, o
);
635 return counter
* ETH_ALEN
;
638 /* check_add() callbacks */
639 static int bnx2x_check_mac_add(struct bnx2x
*bp
,
640 struct bnx2x_vlan_mac_obj
*o
,
641 union bnx2x_classification_ramrod_data
*data
)
643 struct bnx2x_vlan_mac_registry_elem
*pos
;
645 DP(BNX2X_MSG_SP
, "Checking MAC %pM for ADD command\n", data
->mac
.mac
);
647 if (!is_valid_ether_addr(data
->mac
.mac
))
650 /* Check if a requested MAC already exists */
651 list_for_each_entry(pos
, &o
->head
, link
)
652 if (ether_addr_equal(data
->mac
.mac
, pos
->u
.mac
.mac
) &&
653 (data
->mac
.is_inner_mac
== pos
->u
.mac
.is_inner_mac
))
659 static int bnx2x_check_vlan_add(struct bnx2x
*bp
,
660 struct bnx2x_vlan_mac_obj
*o
,
661 union bnx2x_classification_ramrod_data
*data
)
663 struct bnx2x_vlan_mac_registry_elem
*pos
;
665 DP(BNX2X_MSG_SP
, "Checking VLAN %d for ADD command\n", data
->vlan
.vlan
);
667 list_for_each_entry(pos
, &o
->head
, link
)
668 if (data
->vlan
.vlan
== pos
->u
.vlan
.vlan
)
674 static int bnx2x_check_vlan_mac_add(struct bnx2x
*bp
,
675 struct bnx2x_vlan_mac_obj
*o
,
676 union bnx2x_classification_ramrod_data
*data
)
678 struct bnx2x_vlan_mac_registry_elem
*pos
;
680 DP(BNX2X_MSG_SP
, "Checking VLAN_MAC (%pM, %d) for ADD command\n",
681 data
->vlan_mac
.mac
, data
->vlan_mac
.vlan
);
683 list_for_each_entry(pos
, &o
->head
, link
)
684 if ((data
->vlan_mac
.vlan
== pos
->u
.vlan_mac
.vlan
) &&
685 (!memcmp(data
->vlan_mac
.mac
, pos
->u
.vlan_mac
.mac
,
687 (data
->vlan_mac
.is_inner_mac
==
688 pos
->u
.vlan_mac
.is_inner_mac
))
694 /* check_del() callbacks */
695 static struct bnx2x_vlan_mac_registry_elem
*
696 bnx2x_check_mac_del(struct bnx2x
*bp
,
697 struct bnx2x_vlan_mac_obj
*o
,
698 union bnx2x_classification_ramrod_data
*data
)
700 struct bnx2x_vlan_mac_registry_elem
*pos
;
702 DP(BNX2X_MSG_SP
, "Checking MAC %pM for DEL command\n", data
->mac
.mac
);
704 list_for_each_entry(pos
, &o
->head
, link
)
705 if (ether_addr_equal(data
->mac
.mac
, pos
->u
.mac
.mac
) &&
706 (data
->mac
.is_inner_mac
== pos
->u
.mac
.is_inner_mac
))
712 static struct bnx2x_vlan_mac_registry_elem
*
713 bnx2x_check_vlan_del(struct bnx2x
*bp
,
714 struct bnx2x_vlan_mac_obj
*o
,
715 union bnx2x_classification_ramrod_data
*data
)
717 struct bnx2x_vlan_mac_registry_elem
*pos
;
719 DP(BNX2X_MSG_SP
, "Checking VLAN %d for DEL command\n", data
->vlan
.vlan
);
721 list_for_each_entry(pos
, &o
->head
, link
)
722 if (data
->vlan
.vlan
== pos
->u
.vlan
.vlan
)
728 static struct bnx2x_vlan_mac_registry_elem
*
729 bnx2x_check_vlan_mac_del(struct bnx2x
*bp
,
730 struct bnx2x_vlan_mac_obj
*o
,
731 union bnx2x_classification_ramrod_data
*data
)
733 struct bnx2x_vlan_mac_registry_elem
*pos
;
735 DP(BNX2X_MSG_SP
, "Checking VLAN_MAC (%pM, %d) for DEL command\n",
736 data
->vlan_mac
.mac
, data
->vlan_mac
.vlan
);
738 list_for_each_entry(pos
, &o
->head
, link
)
739 if ((data
->vlan_mac
.vlan
== pos
->u
.vlan_mac
.vlan
) &&
740 (!memcmp(data
->vlan_mac
.mac
, pos
->u
.vlan_mac
.mac
,
742 (data
->vlan_mac
.is_inner_mac
==
743 pos
->u
.vlan_mac
.is_inner_mac
))
749 /* check_move() callback */
750 static bool bnx2x_check_move(struct bnx2x
*bp
,
751 struct bnx2x_vlan_mac_obj
*src_o
,
752 struct bnx2x_vlan_mac_obj
*dst_o
,
753 union bnx2x_classification_ramrod_data
*data
)
755 struct bnx2x_vlan_mac_registry_elem
*pos
;
758 /* Check if we can delete the requested configuration from the first
761 pos
= src_o
->check_del(bp
, src_o
, data
);
763 /* check if configuration can be added */
764 rc
= dst_o
->check_add(bp
, dst_o
, data
);
766 /* If this classification can not be added (is already set)
767 * or can't be deleted - return an error.
775 static bool bnx2x_check_move_always_err(
777 struct bnx2x_vlan_mac_obj
*src_o
,
778 struct bnx2x_vlan_mac_obj
*dst_o
,
779 union bnx2x_classification_ramrod_data
*data
)
784 static inline u8
bnx2x_vlan_mac_get_rx_tx_flag(struct bnx2x_vlan_mac_obj
*o
)
786 struct bnx2x_raw_obj
*raw
= &o
->raw
;
789 if ((raw
->obj_type
== BNX2X_OBJ_TYPE_TX
) ||
790 (raw
->obj_type
== BNX2X_OBJ_TYPE_RX_TX
))
791 rx_tx_flag
|= ETH_CLASSIFY_CMD_HEADER_TX_CMD
;
793 if ((raw
->obj_type
== BNX2X_OBJ_TYPE_RX
) ||
794 (raw
->obj_type
== BNX2X_OBJ_TYPE_RX_TX
))
795 rx_tx_flag
|= ETH_CLASSIFY_CMD_HEADER_RX_CMD
;
800 static void bnx2x_set_mac_in_nig(struct bnx2x
*bp
,
801 bool add
, unsigned char *dev_addr
, int index
)
804 u32 reg_offset
= BP_PORT(bp
) ? NIG_REG_LLH1_FUNC_MEM
:
805 NIG_REG_LLH0_FUNC_MEM
;
807 if (!IS_MF_SI(bp
) && !IS_MF_AFEX(bp
))
810 if (index
> BNX2X_LLH_CAM_MAX_PF_LINE
)
813 DP(BNX2X_MSG_SP
, "Going to %s LLH configuration at entry %d\n",
814 (add
? "ADD" : "DELETE"), index
);
817 /* LLH_FUNC_MEM is a u64 WB register */
818 reg_offset
+= 8*index
;
820 wb_data
[0] = ((dev_addr
[2] << 24) | (dev_addr
[3] << 16) |
821 (dev_addr
[4] << 8) | dev_addr
[5]);
822 wb_data
[1] = ((dev_addr
[0] << 8) | dev_addr
[1]);
824 REG_WR_DMAE(bp
, reg_offset
, wb_data
, 2);
827 REG_WR(bp
, (BP_PORT(bp
) ? NIG_REG_LLH1_FUNC_MEM_ENABLE
:
828 NIG_REG_LLH0_FUNC_MEM_ENABLE
) + 4*index
, add
);
832 * bnx2x_vlan_mac_set_cmd_hdr_e2 - set a header in a single classify ramrod
835 * @o: queue for which we want to configure this rule
836 * @add: if true the command is an ADD command, DEL otherwise
837 * @opcode: CLASSIFY_RULE_OPCODE_XXX
838 * @hdr: pointer to a header to setup
841 static inline void bnx2x_vlan_mac_set_cmd_hdr_e2(struct bnx2x
*bp
,
842 struct bnx2x_vlan_mac_obj
*o
, bool add
, int opcode
,
843 struct eth_classify_cmd_header
*hdr
)
845 struct bnx2x_raw_obj
*raw
= &o
->raw
;
847 hdr
->client_id
= raw
->cl_id
;
848 hdr
->func_id
= raw
->func_id
;
850 /* Rx or/and Tx (internal switching) configuration ? */
851 hdr
->cmd_general_data
|=
852 bnx2x_vlan_mac_get_rx_tx_flag(o
);
855 hdr
->cmd_general_data
|= ETH_CLASSIFY_CMD_HEADER_IS_ADD
;
857 hdr
->cmd_general_data
|=
858 (opcode
<< ETH_CLASSIFY_CMD_HEADER_OPCODE_SHIFT
);
862 * bnx2x_vlan_mac_set_rdata_hdr_e2 - set the classify ramrod data header
864 * @cid: connection id
865 * @type: BNX2X_FILTER_XXX_PENDING
866 * @hdr: pointer to header to setup
869 * currently we always configure one rule and echo field to contain a CID and an
872 static inline void bnx2x_vlan_mac_set_rdata_hdr_e2(u32 cid
, int type
,
873 struct eth_classify_header
*hdr
, int rule_cnt
)
875 hdr
->echo
= cpu_to_le32((cid
& BNX2X_SWCID_MASK
) |
876 (type
<< BNX2X_SWCID_SHIFT
));
877 hdr
->rule_cnt
= (u8
)rule_cnt
;
880 /* hw_config() callbacks */
881 static void bnx2x_set_one_mac_e2(struct bnx2x
*bp
,
882 struct bnx2x_vlan_mac_obj
*o
,
883 struct bnx2x_exeq_elem
*elem
, int rule_idx
,
886 struct bnx2x_raw_obj
*raw
= &o
->raw
;
887 struct eth_classify_rules_ramrod_data
*data
=
888 (struct eth_classify_rules_ramrod_data
*)(raw
->rdata
);
889 int rule_cnt
= rule_idx
+ 1, cmd
= elem
->cmd_data
.vlan_mac
.cmd
;
890 union eth_classify_rule_cmd
*rule_entry
= &data
->rules
[rule_idx
];
891 bool add
= (cmd
== BNX2X_VLAN_MAC_ADD
) ? true : false;
892 unsigned long *vlan_mac_flags
= &elem
->cmd_data
.vlan_mac
.vlan_mac_flags
;
893 u8
*mac
= elem
->cmd_data
.vlan_mac
.u
.mac
.mac
;
895 /* Set LLH CAM entry: currently only iSCSI and ETH macs are
896 * relevant. In addition, current implementation is tuned for a
899 * When multiple unicast ETH MACs PF configuration in switch
900 * independent mode is required (NetQ, multiple netdev MACs,
901 * etc.), consider better utilisation of 8 per function MAC
902 * entries in the LLH register. There is also
903 * NIG_REG_P[01]_LLH_FUNC_MEM2 registers that complete the
904 * total number of CAM entries to 16.
906 * Currently we won't configure NIG for MACs other than a primary ETH
907 * MAC and iSCSI L2 MAC.
909 * If this MAC is moving from one Queue to another, no need to change
912 if (cmd
!= BNX2X_VLAN_MAC_MOVE
) {
913 if (test_bit(BNX2X_ISCSI_ETH_MAC
, vlan_mac_flags
))
914 bnx2x_set_mac_in_nig(bp
, add
, mac
,
915 BNX2X_LLH_CAM_ISCSI_ETH_LINE
);
916 else if (test_bit(BNX2X_ETH_MAC
, vlan_mac_flags
))
917 bnx2x_set_mac_in_nig(bp
, add
, mac
,
918 BNX2X_LLH_CAM_ETH_LINE
);
921 /* Reset the ramrod data buffer for the first rule */
923 memset(data
, 0, sizeof(*data
));
925 /* Setup a command header */
926 bnx2x_vlan_mac_set_cmd_hdr_e2(bp
, o
, add
, CLASSIFY_RULE_OPCODE_MAC
,
927 &rule_entry
->mac
.header
);
929 DP(BNX2X_MSG_SP
, "About to %s MAC %pM for Queue %d\n",
930 (add
? "add" : "delete"), mac
, raw
->cl_id
);
932 /* Set a MAC itself */
933 bnx2x_set_fw_mac_addr(&rule_entry
->mac
.mac_msb
,
934 &rule_entry
->mac
.mac_mid
,
935 &rule_entry
->mac
.mac_lsb
, mac
);
936 rule_entry
->mac
.inner_mac
=
937 cpu_to_le16(elem
->cmd_data
.vlan_mac
.u
.mac
.is_inner_mac
);
939 /* MOVE: Add a rule that will add this MAC to the target Queue */
940 if (cmd
== BNX2X_VLAN_MAC_MOVE
) {
944 /* Setup ramrod data */
945 bnx2x_vlan_mac_set_cmd_hdr_e2(bp
,
946 elem
->cmd_data
.vlan_mac
.target_obj
,
947 true, CLASSIFY_RULE_OPCODE_MAC
,
948 &rule_entry
->mac
.header
);
950 /* Set a MAC itself */
951 bnx2x_set_fw_mac_addr(&rule_entry
->mac
.mac_msb
,
952 &rule_entry
->mac
.mac_mid
,
953 &rule_entry
->mac
.mac_lsb
, mac
);
954 rule_entry
->mac
.inner_mac
=
955 cpu_to_le16(elem
->cmd_data
.vlan_mac
.
959 /* Set the ramrod data header */
960 /* TODO: take this to the higher level in order to prevent multiple
962 bnx2x_vlan_mac_set_rdata_hdr_e2(raw
->cid
, raw
->state
, &data
->header
,
967 * bnx2x_vlan_mac_set_rdata_hdr_e1x - set a header in a single classify ramrod
972 * @cam_offset: offset in cam memory
973 * @hdr: pointer to a header to setup
977 static inline void bnx2x_vlan_mac_set_rdata_hdr_e1x(struct bnx2x
*bp
,
978 struct bnx2x_vlan_mac_obj
*o
, int type
, int cam_offset
,
979 struct mac_configuration_hdr
*hdr
)
981 struct bnx2x_raw_obj
*r
= &o
->raw
;
984 hdr
->offset
= (u8
)cam_offset
;
985 hdr
->client_id
= cpu_to_le16(0xff);
986 hdr
->echo
= cpu_to_le32((r
->cid
& BNX2X_SWCID_MASK
) |
987 (type
<< BNX2X_SWCID_SHIFT
));
990 static inline void bnx2x_vlan_mac_set_cfg_entry_e1x(struct bnx2x
*bp
,
991 struct bnx2x_vlan_mac_obj
*o
, bool add
, int opcode
, u8
*mac
,
992 u16 vlan_id
, struct mac_configuration_entry
*cfg_entry
)
994 struct bnx2x_raw_obj
*r
= &o
->raw
;
995 u32 cl_bit_vec
= (1 << r
->cl_id
);
997 cfg_entry
->clients_bit_vector
= cpu_to_le32(cl_bit_vec
);
998 cfg_entry
->pf_id
= r
->func_id
;
999 cfg_entry
->vlan_id
= cpu_to_le16(vlan_id
);
1002 SET_FLAG(cfg_entry
->flags
, MAC_CONFIGURATION_ENTRY_ACTION_TYPE
,
1003 T_ETH_MAC_COMMAND_SET
);
1004 SET_FLAG(cfg_entry
->flags
,
1005 MAC_CONFIGURATION_ENTRY_VLAN_FILTERING_MODE
, opcode
);
1007 /* Set a MAC in a ramrod data */
1008 bnx2x_set_fw_mac_addr(&cfg_entry
->msb_mac_addr
,
1009 &cfg_entry
->middle_mac_addr
,
1010 &cfg_entry
->lsb_mac_addr
, mac
);
1012 SET_FLAG(cfg_entry
->flags
, MAC_CONFIGURATION_ENTRY_ACTION_TYPE
,
1013 T_ETH_MAC_COMMAND_INVALIDATE
);
1016 static inline void bnx2x_vlan_mac_set_rdata_e1x(struct bnx2x
*bp
,
1017 struct bnx2x_vlan_mac_obj
*o
, int type
, int cam_offset
, bool add
,
1018 u8
*mac
, u16 vlan_id
, int opcode
, struct mac_configuration_cmd
*config
)
1020 struct mac_configuration_entry
*cfg_entry
= &config
->config_table
[0];
1021 struct bnx2x_raw_obj
*raw
= &o
->raw
;
1023 bnx2x_vlan_mac_set_rdata_hdr_e1x(bp
, o
, type
, cam_offset
,
1025 bnx2x_vlan_mac_set_cfg_entry_e1x(bp
, o
, add
, opcode
, mac
, vlan_id
,
1028 DP(BNX2X_MSG_SP
, "%s MAC %pM CLID %d CAM offset %d\n",
1029 (add
? "setting" : "clearing"),
1030 mac
, raw
->cl_id
, cam_offset
);
1034 * bnx2x_set_one_mac_e1x - fill a single MAC rule ramrod data
1036 * @bp: device handle
1037 * @o: bnx2x_vlan_mac_obj
1038 * @elem: bnx2x_exeq_elem
1039 * @rule_idx: rule_idx
1040 * @cam_offset: cam_offset
1042 static void bnx2x_set_one_mac_e1x(struct bnx2x
*bp
,
1043 struct bnx2x_vlan_mac_obj
*o
,
1044 struct bnx2x_exeq_elem
*elem
, int rule_idx
,
1047 struct bnx2x_raw_obj
*raw
= &o
->raw
;
1048 struct mac_configuration_cmd
*config
=
1049 (struct mac_configuration_cmd
*)(raw
->rdata
);
1050 /* 57710 and 57711 do not support MOVE command,
1051 * so it's either ADD or DEL
1053 bool add
= (elem
->cmd_data
.vlan_mac
.cmd
== BNX2X_VLAN_MAC_ADD
) ?
1056 /* Reset the ramrod data buffer */
1057 memset(config
, 0, sizeof(*config
));
1059 bnx2x_vlan_mac_set_rdata_e1x(bp
, o
, raw
->state
,
1061 elem
->cmd_data
.vlan_mac
.u
.mac
.mac
, 0,
1062 ETH_VLAN_FILTER_ANY_VLAN
, config
);
1065 static void bnx2x_set_one_vlan_e2(struct bnx2x
*bp
,
1066 struct bnx2x_vlan_mac_obj
*o
,
1067 struct bnx2x_exeq_elem
*elem
, int rule_idx
,
1070 struct bnx2x_raw_obj
*raw
= &o
->raw
;
1071 struct eth_classify_rules_ramrod_data
*data
=
1072 (struct eth_classify_rules_ramrod_data
*)(raw
->rdata
);
1073 int rule_cnt
= rule_idx
+ 1;
1074 union eth_classify_rule_cmd
*rule_entry
= &data
->rules
[rule_idx
];
1075 enum bnx2x_vlan_mac_cmd cmd
= elem
->cmd_data
.vlan_mac
.cmd
;
1076 bool add
= (cmd
== BNX2X_VLAN_MAC_ADD
) ? true : false;
1077 u16 vlan
= elem
->cmd_data
.vlan_mac
.u
.vlan
.vlan
;
1079 /* Reset the ramrod data buffer for the first rule */
1081 memset(data
, 0, sizeof(*data
));
1083 /* Set a rule header */
1084 bnx2x_vlan_mac_set_cmd_hdr_e2(bp
, o
, add
, CLASSIFY_RULE_OPCODE_VLAN
,
1085 &rule_entry
->vlan
.header
);
1087 DP(BNX2X_MSG_SP
, "About to %s VLAN %d\n", (add
? "add" : "delete"),
1090 /* Set a VLAN itself */
1091 rule_entry
->vlan
.vlan
= cpu_to_le16(vlan
);
1093 /* MOVE: Add a rule that will add this MAC to the target Queue */
1094 if (cmd
== BNX2X_VLAN_MAC_MOVE
) {
1098 /* Setup ramrod data */
1099 bnx2x_vlan_mac_set_cmd_hdr_e2(bp
,
1100 elem
->cmd_data
.vlan_mac
.target_obj
,
1101 true, CLASSIFY_RULE_OPCODE_VLAN
,
1102 &rule_entry
->vlan
.header
);
1104 /* Set a VLAN itself */
1105 rule_entry
->vlan
.vlan
= cpu_to_le16(vlan
);
1108 /* Set the ramrod data header */
1109 /* TODO: take this to the higher level in order to prevent multiple
1111 bnx2x_vlan_mac_set_rdata_hdr_e2(raw
->cid
, raw
->state
, &data
->header
,
1115 static void bnx2x_set_one_vlan_mac_e2(struct bnx2x
*bp
,
1116 struct bnx2x_vlan_mac_obj
*o
,
1117 struct bnx2x_exeq_elem
*elem
,
1118 int rule_idx
, int cam_offset
)
1120 struct bnx2x_raw_obj
*raw
= &o
->raw
;
1121 struct eth_classify_rules_ramrod_data
*data
=
1122 (struct eth_classify_rules_ramrod_data
*)(raw
->rdata
);
1123 int rule_cnt
= rule_idx
+ 1;
1124 union eth_classify_rule_cmd
*rule_entry
= &data
->rules
[rule_idx
];
1125 enum bnx2x_vlan_mac_cmd cmd
= elem
->cmd_data
.vlan_mac
.cmd
;
1126 bool add
= (cmd
== BNX2X_VLAN_MAC_ADD
) ? true : false;
1127 u16 vlan
= elem
->cmd_data
.vlan_mac
.u
.vlan_mac
.vlan
;
1128 u8
*mac
= elem
->cmd_data
.vlan_mac
.u
.vlan_mac
.mac
;
1131 /* Reset the ramrod data buffer for the first rule */
1133 memset(data
, 0, sizeof(*data
));
1135 /* Set a rule header */
1136 bnx2x_vlan_mac_set_cmd_hdr_e2(bp
, o
, add
, CLASSIFY_RULE_OPCODE_PAIR
,
1137 &rule_entry
->pair
.header
);
1139 /* Set VLAN and MAC themselves */
1140 rule_entry
->pair
.vlan
= cpu_to_le16(vlan
);
1141 bnx2x_set_fw_mac_addr(&rule_entry
->pair
.mac_msb
,
1142 &rule_entry
->pair
.mac_mid
,
1143 &rule_entry
->pair
.mac_lsb
, mac
);
1144 inner_mac
= elem
->cmd_data
.vlan_mac
.u
.vlan_mac
.is_inner_mac
;
1145 rule_entry
->pair
.inner_mac
= cpu_to_le16(inner_mac
);
1146 /* MOVE: Add a rule that will add this MAC/VLAN to the target Queue */
1147 if (cmd
== BNX2X_VLAN_MAC_MOVE
) {
1148 struct bnx2x_vlan_mac_obj
*target_obj
;
1153 /* Setup ramrod data */
1154 target_obj
= elem
->cmd_data
.vlan_mac
.target_obj
;
1155 bnx2x_vlan_mac_set_cmd_hdr_e2(bp
, target_obj
,
1156 true, CLASSIFY_RULE_OPCODE_PAIR
,
1157 &rule_entry
->pair
.header
);
1159 /* Set a VLAN itself */
1160 rule_entry
->pair
.vlan
= cpu_to_le16(vlan
);
1161 bnx2x_set_fw_mac_addr(&rule_entry
->pair
.mac_msb
,
1162 &rule_entry
->pair
.mac_mid
,
1163 &rule_entry
->pair
.mac_lsb
, mac
);
1164 rule_entry
->pair
.inner_mac
= cpu_to_le16(inner_mac
);
1167 /* Set the ramrod data header */
1168 bnx2x_vlan_mac_set_rdata_hdr_e2(raw
->cid
, raw
->state
, &data
->header
,
1173 * bnx2x_set_one_vlan_mac_e1h -
1175 * @bp: device handle
1176 * @o: bnx2x_vlan_mac_obj
1177 * @elem: bnx2x_exeq_elem
1178 * @rule_idx: rule_idx
1179 * @cam_offset: cam_offset
1181 static void bnx2x_set_one_vlan_mac_e1h(struct bnx2x
*bp
,
1182 struct bnx2x_vlan_mac_obj
*o
,
1183 struct bnx2x_exeq_elem
*elem
,
1184 int rule_idx
, int cam_offset
)
1186 struct bnx2x_raw_obj
*raw
= &o
->raw
;
1187 struct mac_configuration_cmd
*config
=
1188 (struct mac_configuration_cmd
*)(raw
->rdata
);
1189 /* 57710 and 57711 do not support MOVE command,
1190 * so it's either ADD or DEL
1192 bool add
= (elem
->cmd_data
.vlan_mac
.cmd
== BNX2X_VLAN_MAC_ADD
) ?
1195 /* Reset the ramrod data buffer */
1196 memset(config
, 0, sizeof(*config
));
1198 bnx2x_vlan_mac_set_rdata_e1x(bp
, o
, BNX2X_FILTER_VLAN_MAC_PENDING
,
1200 elem
->cmd_data
.vlan_mac
.u
.vlan_mac
.mac
,
1201 elem
->cmd_data
.vlan_mac
.u
.vlan_mac
.vlan
,
1202 ETH_VLAN_FILTER_CLASSIFY
, config
);
1206 * bnx2x_vlan_mac_restore - reconfigure next MAC/VLAN/VLAN-MAC element
1208 * @bp: device handle
1209 * @p: command parameters
1210 * @ppos: pointer to the cookie
1212 * reconfigure next MAC/VLAN/VLAN-MAC element from the
1213 * previously configured elements list.
1215 * from command parameters only RAMROD_COMP_WAIT bit in ramrod_flags is taken
1218 * pointer to the cookie - that should be given back in the next call to make
1219 * function handle the next element. If *ppos is set to NULL it will restart the
1220 * iterator. If returned *ppos == NULL this means that the last element has been
1224 static int bnx2x_vlan_mac_restore(struct bnx2x
*bp
,
1225 struct bnx2x_vlan_mac_ramrod_params
*p
,
1226 struct bnx2x_vlan_mac_registry_elem
**ppos
)
1228 struct bnx2x_vlan_mac_registry_elem
*pos
;
1229 struct bnx2x_vlan_mac_obj
*o
= p
->vlan_mac_obj
;
1231 /* If list is empty - there is nothing to do here */
1232 if (list_empty(&o
->head
)) {
1237 /* make a step... */
1239 *ppos
= list_first_entry(&o
->head
,
1240 struct bnx2x_vlan_mac_registry_elem
,
1243 *ppos
= list_next_entry(*ppos
, link
);
1247 /* If it's the last step - return NULL */
1248 if (list_is_last(&pos
->link
, &o
->head
))
1251 /* Prepare a 'user_req' */
1252 memcpy(&p
->user_req
.u
, &pos
->u
, sizeof(pos
->u
));
1254 /* Set the command */
1255 p
->user_req
.cmd
= BNX2X_VLAN_MAC_ADD
;
1257 /* Set vlan_mac_flags */
1258 p
->user_req
.vlan_mac_flags
= pos
->vlan_mac_flags
;
1260 /* Set a restore bit */
1261 __set_bit(RAMROD_RESTORE
, &p
->ramrod_flags
);
1263 return bnx2x_config_vlan_mac(bp
, p
);
1266 /* bnx2x_exeq_get_mac/bnx2x_exeq_get_vlan/bnx2x_exeq_get_vlan_mac return a
1267 * pointer to an element with a specific criteria and NULL if such an element
1268 * hasn't been found.
1270 static struct bnx2x_exeq_elem
*bnx2x_exeq_get_mac(
1271 struct bnx2x_exe_queue_obj
*o
,
1272 struct bnx2x_exeq_elem
*elem
)
1274 struct bnx2x_exeq_elem
*pos
;
1275 struct bnx2x_mac_ramrod_data
*data
= &elem
->cmd_data
.vlan_mac
.u
.mac
;
1277 /* Check pending for execution commands */
1278 list_for_each_entry(pos
, &o
->exe_queue
, link
)
1279 if (!memcmp(&pos
->cmd_data
.vlan_mac
.u
.mac
, data
,
1281 (pos
->cmd_data
.vlan_mac
.cmd
== elem
->cmd_data
.vlan_mac
.cmd
))
1287 static struct bnx2x_exeq_elem
*bnx2x_exeq_get_vlan(
1288 struct bnx2x_exe_queue_obj
*o
,
1289 struct bnx2x_exeq_elem
*elem
)
1291 struct bnx2x_exeq_elem
*pos
;
1292 struct bnx2x_vlan_ramrod_data
*data
= &elem
->cmd_data
.vlan_mac
.u
.vlan
;
1294 /* Check pending for execution commands */
1295 list_for_each_entry(pos
, &o
->exe_queue
, link
)
1296 if (!memcmp(&pos
->cmd_data
.vlan_mac
.u
.vlan
, data
,
1298 (pos
->cmd_data
.vlan_mac
.cmd
== elem
->cmd_data
.vlan_mac
.cmd
))
1304 static struct bnx2x_exeq_elem
*bnx2x_exeq_get_vlan_mac(
1305 struct bnx2x_exe_queue_obj
*o
,
1306 struct bnx2x_exeq_elem
*elem
)
1308 struct bnx2x_exeq_elem
*pos
;
1309 struct bnx2x_vlan_mac_ramrod_data
*data
=
1310 &elem
->cmd_data
.vlan_mac
.u
.vlan_mac
;
1312 /* Check pending for execution commands */
1313 list_for_each_entry(pos
, &o
->exe_queue
, link
)
1314 if (!memcmp(&pos
->cmd_data
.vlan_mac
.u
.vlan_mac
, data
,
1316 (pos
->cmd_data
.vlan_mac
.cmd
==
1317 elem
->cmd_data
.vlan_mac
.cmd
))
1324 * bnx2x_validate_vlan_mac_add - check if an ADD command can be executed
1326 * @bp: device handle
1327 * @qo: bnx2x_qable_obj
1328 * @elem: bnx2x_exeq_elem
1330 * Checks that the requested configuration can be added. If yes and if
1331 * requested, consume CAM credit.
1333 * The 'validate' is run after the 'optimize'.
1336 static inline int bnx2x_validate_vlan_mac_add(struct bnx2x
*bp
,
1337 union bnx2x_qable_obj
*qo
,
1338 struct bnx2x_exeq_elem
*elem
)
1340 struct bnx2x_vlan_mac_obj
*o
= &qo
->vlan_mac
;
1341 struct bnx2x_exe_queue_obj
*exeq
= &o
->exe_queue
;
1344 /* Check the registry */
1345 rc
= o
->check_add(bp
, o
, &elem
->cmd_data
.vlan_mac
.u
);
1347 DP(BNX2X_MSG_SP
, "ADD command is not allowed considering current registry state.\n");
1351 /* Check if there is a pending ADD command for this
1352 * MAC/VLAN/VLAN-MAC. Return an error if there is.
1354 if (exeq
->get(exeq
, elem
)) {
1355 DP(BNX2X_MSG_SP
, "There is a pending ADD command already\n");
1359 /* TODO: Check the pending MOVE from other objects where this
1360 * object is a destination object.
1363 /* Consume the credit if not requested not to */
1364 if (!(test_bit(BNX2X_DONT_CONSUME_CAM_CREDIT
,
1365 &elem
->cmd_data
.vlan_mac
.vlan_mac_flags
) ||
1373 * bnx2x_validate_vlan_mac_del - check if the DEL command can be executed
1375 * @bp: device handle
1376 * @qo: quable object to check
1377 * @elem: element that needs to be deleted
1379 * Checks that the requested configuration can be deleted. If yes and if
1380 * requested, returns a CAM credit.
1382 * The 'validate' is run after the 'optimize'.
1384 static inline int bnx2x_validate_vlan_mac_del(struct bnx2x
*bp
,
1385 union bnx2x_qable_obj
*qo
,
1386 struct bnx2x_exeq_elem
*elem
)
1388 struct bnx2x_vlan_mac_obj
*o
= &qo
->vlan_mac
;
1389 struct bnx2x_vlan_mac_registry_elem
*pos
;
1390 struct bnx2x_exe_queue_obj
*exeq
= &o
->exe_queue
;
1391 struct bnx2x_exeq_elem query_elem
;
1393 /* If this classification can not be deleted (doesn't exist)
1394 * - return a BNX2X_EXIST.
1396 pos
= o
->check_del(bp
, o
, &elem
->cmd_data
.vlan_mac
.u
);
1398 DP(BNX2X_MSG_SP
, "DEL command is not allowed considering current registry state\n");
1402 /* Check if there are pending DEL or MOVE commands for this
1403 * MAC/VLAN/VLAN-MAC. Return an error if so.
1405 memcpy(&query_elem
, elem
, sizeof(query_elem
));
1407 /* Check for MOVE commands */
1408 query_elem
.cmd_data
.vlan_mac
.cmd
= BNX2X_VLAN_MAC_MOVE
;
1409 if (exeq
->get(exeq
, &query_elem
)) {
1410 BNX2X_ERR("There is a pending MOVE command already\n");
1414 /* Check for DEL commands */
1415 if (exeq
->get(exeq
, elem
)) {
1416 DP(BNX2X_MSG_SP
, "There is a pending DEL command already\n");
1420 /* Return the credit to the credit pool if not requested not to */
1421 if (!(test_bit(BNX2X_DONT_CONSUME_CAM_CREDIT
,
1422 &elem
->cmd_data
.vlan_mac
.vlan_mac_flags
) ||
1423 o
->put_credit(o
))) {
1424 BNX2X_ERR("Failed to return a credit\n");
1432 * bnx2x_validate_vlan_mac_move - check if the MOVE command can be executed
1434 * @bp: device handle
1435 * @qo: quable object to check (source)
1436 * @elem: element that needs to be moved
1438 * Checks that the requested configuration can be moved. If yes and if
1439 * requested, returns a CAM credit.
1441 * The 'validate' is run after the 'optimize'.
1443 static inline int bnx2x_validate_vlan_mac_move(struct bnx2x
*bp
,
1444 union bnx2x_qable_obj
*qo
,
1445 struct bnx2x_exeq_elem
*elem
)
1447 struct bnx2x_vlan_mac_obj
*src_o
= &qo
->vlan_mac
;
1448 struct bnx2x_vlan_mac_obj
*dest_o
= elem
->cmd_data
.vlan_mac
.target_obj
;
1449 struct bnx2x_exeq_elem query_elem
;
1450 struct bnx2x_exe_queue_obj
*src_exeq
= &src_o
->exe_queue
;
1451 struct bnx2x_exe_queue_obj
*dest_exeq
= &dest_o
->exe_queue
;
1453 /* Check if we can perform this operation based on the current registry
1456 if (!src_o
->check_move(bp
, src_o
, dest_o
,
1457 &elem
->cmd_data
.vlan_mac
.u
)) {
1458 DP(BNX2X_MSG_SP
, "MOVE command is not allowed considering current registry state\n");
1462 /* Check if there is an already pending DEL or MOVE command for the
1463 * source object or ADD command for a destination object. Return an
1466 memcpy(&query_elem
, elem
, sizeof(query_elem
));
1468 /* Check DEL on source */
1469 query_elem
.cmd_data
.vlan_mac
.cmd
= BNX2X_VLAN_MAC_DEL
;
1470 if (src_exeq
->get(src_exeq
, &query_elem
)) {
1471 BNX2X_ERR("There is a pending DEL command on the source queue already\n");
1475 /* Check MOVE on source */
1476 if (src_exeq
->get(src_exeq
, elem
)) {
1477 DP(BNX2X_MSG_SP
, "There is a pending MOVE command already\n");
1481 /* Check ADD on destination */
1482 query_elem
.cmd_data
.vlan_mac
.cmd
= BNX2X_VLAN_MAC_ADD
;
1483 if (dest_exeq
->get(dest_exeq
, &query_elem
)) {
1484 BNX2X_ERR("There is a pending ADD command on the destination queue already\n");
1488 /* Consume the credit if not requested not to */
1489 if (!(test_bit(BNX2X_DONT_CONSUME_CAM_CREDIT_DEST
,
1490 &elem
->cmd_data
.vlan_mac
.vlan_mac_flags
) ||
1491 dest_o
->get_credit(dest_o
)))
1494 if (!(test_bit(BNX2X_DONT_CONSUME_CAM_CREDIT
,
1495 &elem
->cmd_data
.vlan_mac
.vlan_mac_flags
) ||
1496 src_o
->put_credit(src_o
))) {
1497 /* return the credit taken from dest... */
1498 dest_o
->put_credit(dest_o
);
1505 static int bnx2x_validate_vlan_mac(struct bnx2x
*bp
,
1506 union bnx2x_qable_obj
*qo
,
1507 struct bnx2x_exeq_elem
*elem
)
1509 switch (elem
->cmd_data
.vlan_mac
.cmd
) {
1510 case BNX2X_VLAN_MAC_ADD
:
1511 return bnx2x_validate_vlan_mac_add(bp
, qo
, elem
);
1512 case BNX2X_VLAN_MAC_DEL
:
1513 return bnx2x_validate_vlan_mac_del(bp
, qo
, elem
);
1514 case BNX2X_VLAN_MAC_MOVE
:
1515 return bnx2x_validate_vlan_mac_move(bp
, qo
, elem
);
1521 static int bnx2x_remove_vlan_mac(struct bnx2x
*bp
,
1522 union bnx2x_qable_obj
*qo
,
1523 struct bnx2x_exeq_elem
*elem
)
1527 /* If consumption wasn't required, nothing to do */
1528 if (test_bit(BNX2X_DONT_CONSUME_CAM_CREDIT
,
1529 &elem
->cmd_data
.vlan_mac
.vlan_mac_flags
))
1532 switch (elem
->cmd_data
.vlan_mac
.cmd
) {
1533 case BNX2X_VLAN_MAC_ADD
:
1534 case BNX2X_VLAN_MAC_MOVE
:
1535 rc
= qo
->vlan_mac
.put_credit(&qo
->vlan_mac
);
1537 case BNX2X_VLAN_MAC_DEL
:
1538 rc
= qo
->vlan_mac
.get_credit(&qo
->vlan_mac
);
1551 * bnx2x_wait_vlan_mac - passively wait for 5 seconds until all work completes.
1553 * @bp: device handle
1554 * @o: bnx2x_vlan_mac_obj
1557 static int bnx2x_wait_vlan_mac(struct bnx2x
*bp
,
1558 struct bnx2x_vlan_mac_obj
*o
)
1561 struct bnx2x_exe_queue_obj
*exeq
= &o
->exe_queue
;
1562 struct bnx2x_raw_obj
*raw
= &o
->raw
;
1565 /* Wait for the current command to complete */
1566 rc
= raw
->wait_comp(bp
, raw
);
1570 /* Wait until there are no pending commands */
1571 if (!bnx2x_exe_queue_empty(exeq
))
1572 usleep_range(1000, 2000);
1580 static int __bnx2x_vlan_mac_execute_step(struct bnx2x
*bp
,
1581 struct bnx2x_vlan_mac_obj
*o
,
1582 unsigned long *ramrod_flags
)
1586 spin_lock_bh(&o
->exe_queue
.lock
);
1588 DP(BNX2X_MSG_SP
, "vlan_mac_execute_step - trying to take writer lock\n");
1589 rc
= __bnx2x_vlan_mac_h_write_trylock(bp
, o
);
1592 __bnx2x_vlan_mac_h_pend(bp
, o
, *ramrod_flags
);
1594 /* Calling function should not diffrentiate between this case
1595 * and the case in which there is already a pending ramrod
1599 rc
= bnx2x_exe_queue_step(bp
, &o
->exe_queue
, ramrod_flags
);
1601 spin_unlock_bh(&o
->exe_queue
.lock
);
1607 * bnx2x_complete_vlan_mac - complete one VLAN-MAC ramrod
1609 * @bp: device handle
1610 * @o: bnx2x_vlan_mac_obj
1612 * @cont: if true schedule next execution chunk
1615 static int bnx2x_complete_vlan_mac(struct bnx2x
*bp
,
1616 struct bnx2x_vlan_mac_obj
*o
,
1617 union event_ring_elem
*cqe
,
1618 unsigned long *ramrod_flags
)
1620 struct bnx2x_raw_obj
*r
= &o
->raw
;
1623 /* Clearing the pending list & raw state should be made
1624 * atomically (as execution flow assumes they represent the same).
1626 spin_lock_bh(&o
->exe_queue
.lock
);
1628 /* Reset pending list */
1629 __bnx2x_exe_queue_reset_pending(bp
, &o
->exe_queue
);
1632 r
->clear_pending(r
);
1634 spin_unlock_bh(&o
->exe_queue
.lock
);
1636 /* If ramrod failed this is most likely a SW bug */
1637 if (cqe
->message
.error
)
1640 /* Run the next bulk of pending commands if requested */
1641 if (test_bit(RAMROD_CONT
, ramrod_flags
)) {
1642 rc
= __bnx2x_vlan_mac_execute_step(bp
, o
, ramrod_flags
);
1648 /* If there is more work to do return PENDING */
1649 if (!bnx2x_exe_queue_empty(&o
->exe_queue
))
1656 * bnx2x_optimize_vlan_mac - optimize ADD and DEL commands.
1658 * @bp: device handle
1659 * @o: bnx2x_qable_obj
1660 * @elem: bnx2x_exeq_elem
1662 static int bnx2x_optimize_vlan_mac(struct bnx2x
*bp
,
1663 union bnx2x_qable_obj
*qo
,
1664 struct bnx2x_exeq_elem
*elem
)
1666 struct bnx2x_exeq_elem query
, *pos
;
1667 struct bnx2x_vlan_mac_obj
*o
= &qo
->vlan_mac
;
1668 struct bnx2x_exe_queue_obj
*exeq
= &o
->exe_queue
;
1670 memcpy(&query
, elem
, sizeof(query
));
1672 switch (elem
->cmd_data
.vlan_mac
.cmd
) {
1673 case BNX2X_VLAN_MAC_ADD
:
1674 query
.cmd_data
.vlan_mac
.cmd
= BNX2X_VLAN_MAC_DEL
;
1676 case BNX2X_VLAN_MAC_DEL
:
1677 query
.cmd_data
.vlan_mac
.cmd
= BNX2X_VLAN_MAC_ADD
;
1680 /* Don't handle anything other than ADD or DEL */
1684 /* If we found the appropriate element - delete it */
1685 pos
= exeq
->get(exeq
, &query
);
1688 /* Return the credit of the optimized command */
1689 if (!test_bit(BNX2X_DONT_CONSUME_CAM_CREDIT
,
1690 &pos
->cmd_data
.vlan_mac
.vlan_mac_flags
)) {
1691 if ((query
.cmd_data
.vlan_mac
.cmd
==
1692 BNX2X_VLAN_MAC_ADD
) && !o
->put_credit(o
)) {
1693 BNX2X_ERR("Failed to return the credit for the optimized ADD command\n");
1695 } else if (!o
->get_credit(o
)) { /* VLAN_MAC_DEL */
1696 BNX2X_ERR("Failed to recover the credit from the optimized DEL command\n");
1701 DP(BNX2X_MSG_SP
, "Optimizing %s command\n",
1702 (elem
->cmd_data
.vlan_mac
.cmd
== BNX2X_VLAN_MAC_ADD
) ?
1705 list_del(&pos
->link
);
1706 bnx2x_exe_queue_free_elem(bp
, pos
);
1714 * bnx2x_vlan_mac_get_registry_elem - prepare a registry element
1716 * @bp: device handle
1722 * prepare a registry element according to the current command request.
1724 static inline int bnx2x_vlan_mac_get_registry_elem(
1726 struct bnx2x_vlan_mac_obj
*o
,
1727 struct bnx2x_exeq_elem
*elem
,
1729 struct bnx2x_vlan_mac_registry_elem
**re
)
1731 enum bnx2x_vlan_mac_cmd cmd
= elem
->cmd_data
.vlan_mac
.cmd
;
1732 struct bnx2x_vlan_mac_registry_elem
*reg_elem
;
1734 /* Allocate a new registry element if needed. */
1736 ((cmd
== BNX2X_VLAN_MAC_ADD
) || (cmd
== BNX2X_VLAN_MAC_MOVE
))) {
1737 reg_elem
= kzalloc(sizeof(*reg_elem
), GFP_ATOMIC
);
1741 /* Get a new CAM offset */
1742 if (!o
->get_cam_offset(o
, ®_elem
->cam_offset
)) {
1743 /* This shall never happen, because we have checked the
1744 * CAM availability in the 'validate'.
1751 DP(BNX2X_MSG_SP
, "Got cam offset %d\n", reg_elem
->cam_offset
);
1753 /* Set a VLAN-MAC data */
1754 memcpy(®_elem
->u
, &elem
->cmd_data
.vlan_mac
.u
,
1755 sizeof(reg_elem
->u
));
1757 /* Copy the flags (needed for DEL and RESTORE flows) */
1758 reg_elem
->vlan_mac_flags
=
1759 elem
->cmd_data
.vlan_mac
.vlan_mac_flags
;
1760 } else /* DEL, RESTORE */
1761 reg_elem
= o
->check_del(bp
, o
, &elem
->cmd_data
.vlan_mac
.u
);
1768 * bnx2x_execute_vlan_mac - execute vlan mac command
1770 * @bp: device handle
1775 * go and send a ramrod!
1777 static int bnx2x_execute_vlan_mac(struct bnx2x
*bp
,
1778 union bnx2x_qable_obj
*qo
,
1779 struct list_head
*exe_chunk
,
1780 unsigned long *ramrod_flags
)
1782 struct bnx2x_exeq_elem
*elem
;
1783 struct bnx2x_vlan_mac_obj
*o
= &qo
->vlan_mac
, *cam_obj
;
1784 struct bnx2x_raw_obj
*r
= &o
->raw
;
1786 bool restore
= test_bit(RAMROD_RESTORE
, ramrod_flags
);
1787 bool drv_only
= test_bit(RAMROD_DRV_CLR_ONLY
, ramrod_flags
);
1788 struct bnx2x_vlan_mac_registry_elem
*reg_elem
;
1789 enum bnx2x_vlan_mac_cmd cmd
;
1791 /* If DRIVER_ONLY execution is requested, cleanup a registry
1792 * and exit. Otherwise send a ramrod to FW.
1795 WARN_ON(r
->check_pending(r
));
1800 /* Fill the ramrod data */
1801 list_for_each_entry(elem
, exe_chunk
, link
) {
1802 cmd
= elem
->cmd_data
.vlan_mac
.cmd
;
1803 /* We will add to the target object in MOVE command, so
1804 * change the object for a CAM search.
1806 if (cmd
== BNX2X_VLAN_MAC_MOVE
)
1807 cam_obj
= elem
->cmd_data
.vlan_mac
.target_obj
;
1811 rc
= bnx2x_vlan_mac_get_registry_elem(bp
, cam_obj
,
1819 /* Push a new entry into the registry */
1821 ((cmd
== BNX2X_VLAN_MAC_ADD
) ||
1822 (cmd
== BNX2X_VLAN_MAC_MOVE
)))
1823 list_add(®_elem
->link
, &cam_obj
->head
);
1825 /* Configure a single command in a ramrod data buffer */
1826 o
->set_one_rule(bp
, o
, elem
, idx
,
1827 reg_elem
->cam_offset
);
1829 /* MOVE command consumes 2 entries in the ramrod data */
1830 if (cmd
== BNX2X_VLAN_MAC_MOVE
)
1836 /* No need for an explicit memory barrier here as long we would
1837 * need to ensure the ordering of writing to the SPQ element
1838 * and updating of the SPQ producer which involves a memory
1839 * read and we will have to put a full memory barrier there
1840 * (inside bnx2x_sp_post()).
1843 rc
= bnx2x_sp_post(bp
, o
->ramrod_cmd
, r
->cid
,
1844 U64_HI(r
->rdata_mapping
),
1845 U64_LO(r
->rdata_mapping
),
1846 ETH_CONNECTION_TYPE
);
1851 /* Now, when we are done with the ramrod - clean up the registry */
1852 list_for_each_entry(elem
, exe_chunk
, link
) {
1853 cmd
= elem
->cmd_data
.vlan_mac
.cmd
;
1854 if ((cmd
== BNX2X_VLAN_MAC_DEL
) ||
1855 (cmd
== BNX2X_VLAN_MAC_MOVE
)) {
1856 reg_elem
= o
->check_del(bp
, o
,
1857 &elem
->cmd_data
.vlan_mac
.u
);
1861 o
->put_cam_offset(o
, reg_elem
->cam_offset
);
1862 list_del(®_elem
->link
);
1873 r
->clear_pending(r
);
1875 /* Cleanup a registry in case of a failure */
1876 list_for_each_entry(elem
, exe_chunk
, link
) {
1877 cmd
= elem
->cmd_data
.vlan_mac
.cmd
;
1879 if (cmd
== BNX2X_VLAN_MAC_MOVE
)
1880 cam_obj
= elem
->cmd_data
.vlan_mac
.target_obj
;
1884 /* Delete all newly added above entries */
1886 ((cmd
== BNX2X_VLAN_MAC_ADD
) ||
1887 (cmd
== BNX2X_VLAN_MAC_MOVE
))) {
1888 reg_elem
= o
->check_del(bp
, cam_obj
,
1889 &elem
->cmd_data
.vlan_mac
.u
);
1891 list_del(®_elem
->link
);
1900 static inline int bnx2x_vlan_mac_push_new_cmd(
1902 struct bnx2x_vlan_mac_ramrod_params
*p
)
1904 struct bnx2x_exeq_elem
*elem
;
1905 struct bnx2x_vlan_mac_obj
*o
= p
->vlan_mac_obj
;
1906 bool restore
= test_bit(RAMROD_RESTORE
, &p
->ramrod_flags
);
1908 /* Allocate the execution queue element */
1909 elem
= bnx2x_exe_queue_alloc_elem(bp
);
1913 /* Set the command 'length' */
1914 switch (p
->user_req
.cmd
) {
1915 case BNX2X_VLAN_MAC_MOVE
:
1922 /* Fill the object specific info */
1923 memcpy(&elem
->cmd_data
.vlan_mac
, &p
->user_req
, sizeof(p
->user_req
));
1925 /* Try to add a new command to the pending list */
1926 return bnx2x_exe_queue_add(bp
, &o
->exe_queue
, elem
, restore
);
1930 * bnx2x_config_vlan_mac - configure VLAN/MAC/VLAN_MAC filtering rules.
1932 * @bp: device handle
1936 int bnx2x_config_vlan_mac(struct bnx2x
*bp
,
1937 struct bnx2x_vlan_mac_ramrod_params
*p
)
1940 struct bnx2x_vlan_mac_obj
*o
= p
->vlan_mac_obj
;
1941 unsigned long *ramrod_flags
= &p
->ramrod_flags
;
1942 bool cont
= test_bit(RAMROD_CONT
, ramrod_flags
);
1943 struct bnx2x_raw_obj
*raw
= &o
->raw
;
1946 * Add new elements to the execution list for commands that require it.
1949 rc
= bnx2x_vlan_mac_push_new_cmd(bp
, p
);
1954 /* If nothing will be executed further in this iteration we want to
1955 * return PENDING if there are pending commands
1957 if (!bnx2x_exe_queue_empty(&o
->exe_queue
))
1960 if (test_bit(RAMROD_DRV_CLR_ONLY
, ramrod_flags
)) {
1961 DP(BNX2X_MSG_SP
, "RAMROD_DRV_CLR_ONLY requested: clearing a pending bit.\n");
1962 raw
->clear_pending(raw
);
1965 /* Execute commands if required */
1966 if (cont
|| test_bit(RAMROD_EXEC
, ramrod_flags
) ||
1967 test_bit(RAMROD_COMP_WAIT
, ramrod_flags
)) {
1968 rc
= __bnx2x_vlan_mac_execute_step(bp
, p
->vlan_mac_obj
,
1974 /* RAMROD_COMP_WAIT is a superset of RAMROD_EXEC. If it was set
1975 * then user want to wait until the last command is done.
1977 if (test_bit(RAMROD_COMP_WAIT
, &p
->ramrod_flags
)) {
1978 /* Wait maximum for the current exe_queue length iterations plus
1979 * one (for the current pending command).
1981 int max_iterations
= bnx2x_exe_queue_length(&o
->exe_queue
) + 1;
1983 while (!bnx2x_exe_queue_empty(&o
->exe_queue
) &&
1986 /* Wait for the current command to complete */
1987 rc
= raw
->wait_comp(bp
, raw
);
1991 /* Make a next step */
1992 rc
= __bnx2x_vlan_mac_execute_step(bp
,
2006 * bnx2x_vlan_mac_del_all - delete elements with given vlan_mac_flags spec
2008 * @bp: device handle
2011 * @ramrod_flags: execution flags to be used for this deletion
2013 * if the last operation has completed successfully and there are no
2014 * more elements left, positive value if the last operation has completed
2015 * successfully and there are more previously configured elements, negative
2016 * value is current operation has failed.
2018 static int bnx2x_vlan_mac_del_all(struct bnx2x
*bp
,
2019 struct bnx2x_vlan_mac_obj
*o
,
2020 unsigned long *vlan_mac_flags
,
2021 unsigned long *ramrod_flags
)
2023 struct bnx2x_vlan_mac_registry_elem
*pos
= NULL
;
2024 struct bnx2x_vlan_mac_ramrod_params p
;
2025 struct bnx2x_exe_queue_obj
*exeq
= &o
->exe_queue
;
2026 struct bnx2x_exeq_elem
*exeq_pos
, *exeq_pos_n
;
2027 unsigned long flags
;
2031 /* Clear pending commands first */
2033 spin_lock_bh(&exeq
->lock
);
2035 list_for_each_entry_safe(exeq_pos
, exeq_pos_n
, &exeq
->exe_queue
, link
) {
2036 flags
= exeq_pos
->cmd_data
.vlan_mac
.vlan_mac_flags
;
2037 if (BNX2X_VLAN_MAC_CMP_FLAGS(flags
) ==
2038 BNX2X_VLAN_MAC_CMP_FLAGS(*vlan_mac_flags
)) {
2039 rc
= exeq
->remove(bp
, exeq
->owner
, exeq_pos
);
2041 BNX2X_ERR("Failed to remove command\n");
2042 spin_unlock_bh(&exeq
->lock
);
2045 list_del(&exeq_pos
->link
);
2046 bnx2x_exe_queue_free_elem(bp
, exeq_pos
);
2050 spin_unlock_bh(&exeq
->lock
);
2052 /* Prepare a command request */
2053 memset(&p
, 0, sizeof(p
));
2055 p
.ramrod_flags
= *ramrod_flags
;
2056 p
.user_req
.cmd
= BNX2X_VLAN_MAC_DEL
;
2058 /* Add all but the last VLAN-MAC to the execution queue without actually
2059 * execution anything.
2061 __clear_bit(RAMROD_COMP_WAIT
, &p
.ramrod_flags
);
2062 __clear_bit(RAMROD_EXEC
, &p
.ramrod_flags
);
2063 __clear_bit(RAMROD_CONT
, &p
.ramrod_flags
);
2065 DP(BNX2X_MSG_SP
, "vlan_mac_del_all -- taking vlan_mac_lock (reader)\n");
2066 read_lock
= bnx2x_vlan_mac_h_read_lock(bp
, o
);
2070 list_for_each_entry(pos
, &o
->head
, link
) {
2071 flags
= pos
->vlan_mac_flags
;
2072 if (BNX2X_VLAN_MAC_CMP_FLAGS(flags
) ==
2073 BNX2X_VLAN_MAC_CMP_FLAGS(*vlan_mac_flags
)) {
2074 p
.user_req
.vlan_mac_flags
= pos
->vlan_mac_flags
;
2075 memcpy(&p
.user_req
.u
, &pos
->u
, sizeof(pos
->u
));
2076 rc
= bnx2x_config_vlan_mac(bp
, &p
);
2078 BNX2X_ERR("Failed to add a new DEL command\n");
2079 bnx2x_vlan_mac_h_read_unlock(bp
, o
);
2085 DP(BNX2X_MSG_SP
, "vlan_mac_del_all -- releasing vlan_mac_lock (reader)\n");
2086 bnx2x_vlan_mac_h_read_unlock(bp
, o
);
2088 p
.ramrod_flags
= *ramrod_flags
;
2089 __set_bit(RAMROD_CONT
, &p
.ramrod_flags
);
2091 return bnx2x_config_vlan_mac(bp
, &p
);
2094 static inline void bnx2x_init_raw_obj(struct bnx2x_raw_obj
*raw
, u8 cl_id
,
2095 u32 cid
, u8 func_id
, void *rdata
, dma_addr_t rdata_mapping
, int state
,
2096 unsigned long *pstate
, bnx2x_obj_type type
)
2098 raw
->func_id
= func_id
;
2102 raw
->rdata_mapping
= rdata_mapping
;
2104 raw
->pstate
= pstate
;
2105 raw
->obj_type
= type
;
2106 raw
->check_pending
= bnx2x_raw_check_pending
;
2107 raw
->clear_pending
= bnx2x_raw_clear_pending
;
2108 raw
->set_pending
= bnx2x_raw_set_pending
;
2109 raw
->wait_comp
= bnx2x_raw_wait
;
2112 static inline void bnx2x_init_vlan_mac_common(struct bnx2x_vlan_mac_obj
*o
,
2113 u8 cl_id
, u32 cid
, u8 func_id
, void *rdata
, dma_addr_t rdata_mapping
,
2114 int state
, unsigned long *pstate
, bnx2x_obj_type type
,
2115 struct bnx2x_credit_pool_obj
*macs_pool
,
2116 struct bnx2x_credit_pool_obj
*vlans_pool
)
2118 INIT_LIST_HEAD(&o
->head
);
2120 o
->head_exe_request
= false;
2121 o
->saved_ramrod_flags
= 0;
2123 o
->macs_pool
= macs_pool
;
2124 o
->vlans_pool
= vlans_pool
;
2126 o
->delete_all
= bnx2x_vlan_mac_del_all
;
2127 o
->restore
= bnx2x_vlan_mac_restore
;
2128 o
->complete
= bnx2x_complete_vlan_mac
;
2129 o
->wait
= bnx2x_wait_vlan_mac
;
2131 bnx2x_init_raw_obj(&o
->raw
, cl_id
, cid
, func_id
, rdata
, rdata_mapping
,
2132 state
, pstate
, type
);
2135 void bnx2x_init_mac_obj(struct bnx2x
*bp
,
2136 struct bnx2x_vlan_mac_obj
*mac_obj
,
2137 u8 cl_id
, u32 cid
, u8 func_id
, void *rdata
,
2138 dma_addr_t rdata_mapping
, int state
,
2139 unsigned long *pstate
, bnx2x_obj_type type
,
2140 struct bnx2x_credit_pool_obj
*macs_pool
)
2142 union bnx2x_qable_obj
*qable_obj
= (union bnx2x_qable_obj
*)mac_obj
;
2144 bnx2x_init_vlan_mac_common(mac_obj
, cl_id
, cid
, func_id
, rdata
,
2145 rdata_mapping
, state
, pstate
, type
,
2148 /* CAM credit pool handling */
2149 mac_obj
->get_credit
= bnx2x_get_credit_mac
;
2150 mac_obj
->put_credit
= bnx2x_put_credit_mac
;
2151 mac_obj
->get_cam_offset
= bnx2x_get_cam_offset_mac
;
2152 mac_obj
->put_cam_offset
= bnx2x_put_cam_offset_mac
;
2154 if (CHIP_IS_E1x(bp
)) {
2155 mac_obj
->set_one_rule
= bnx2x_set_one_mac_e1x
;
2156 mac_obj
->check_del
= bnx2x_check_mac_del
;
2157 mac_obj
->check_add
= bnx2x_check_mac_add
;
2158 mac_obj
->check_move
= bnx2x_check_move_always_err
;
2159 mac_obj
->ramrod_cmd
= RAMROD_CMD_ID_ETH_SET_MAC
;
2162 bnx2x_exe_queue_init(bp
,
2163 &mac_obj
->exe_queue
, 1, qable_obj
,
2164 bnx2x_validate_vlan_mac
,
2165 bnx2x_remove_vlan_mac
,
2166 bnx2x_optimize_vlan_mac
,
2167 bnx2x_execute_vlan_mac
,
2168 bnx2x_exeq_get_mac
);
2170 mac_obj
->set_one_rule
= bnx2x_set_one_mac_e2
;
2171 mac_obj
->check_del
= bnx2x_check_mac_del
;
2172 mac_obj
->check_add
= bnx2x_check_mac_add
;
2173 mac_obj
->check_move
= bnx2x_check_move
;
2174 mac_obj
->ramrod_cmd
=
2175 RAMROD_CMD_ID_ETH_CLASSIFICATION_RULES
;
2176 mac_obj
->get_n_elements
= bnx2x_get_n_elements
;
2179 bnx2x_exe_queue_init(bp
,
2180 &mac_obj
->exe_queue
, CLASSIFY_RULES_COUNT
,
2181 qable_obj
, bnx2x_validate_vlan_mac
,
2182 bnx2x_remove_vlan_mac
,
2183 bnx2x_optimize_vlan_mac
,
2184 bnx2x_execute_vlan_mac
,
2185 bnx2x_exeq_get_mac
);
2189 void bnx2x_init_vlan_obj(struct bnx2x
*bp
,
2190 struct bnx2x_vlan_mac_obj
*vlan_obj
,
2191 u8 cl_id
, u32 cid
, u8 func_id
, void *rdata
,
2192 dma_addr_t rdata_mapping
, int state
,
2193 unsigned long *pstate
, bnx2x_obj_type type
,
2194 struct bnx2x_credit_pool_obj
*vlans_pool
)
2196 union bnx2x_qable_obj
*qable_obj
= (union bnx2x_qable_obj
*)vlan_obj
;
2198 bnx2x_init_vlan_mac_common(vlan_obj
, cl_id
, cid
, func_id
, rdata
,
2199 rdata_mapping
, state
, pstate
, type
, NULL
,
2202 vlan_obj
->get_credit
= bnx2x_get_credit_vlan
;
2203 vlan_obj
->put_credit
= bnx2x_put_credit_vlan
;
2204 vlan_obj
->get_cam_offset
= bnx2x_get_cam_offset_vlan
;
2205 vlan_obj
->put_cam_offset
= bnx2x_put_cam_offset_vlan
;
2207 if (CHIP_IS_E1x(bp
)) {
2208 BNX2X_ERR("Do not support chips others than E2 and newer\n");
2211 vlan_obj
->set_one_rule
= bnx2x_set_one_vlan_e2
;
2212 vlan_obj
->check_del
= bnx2x_check_vlan_del
;
2213 vlan_obj
->check_add
= bnx2x_check_vlan_add
;
2214 vlan_obj
->check_move
= bnx2x_check_move
;
2215 vlan_obj
->ramrod_cmd
=
2216 RAMROD_CMD_ID_ETH_CLASSIFICATION_RULES
;
2217 vlan_obj
->get_n_elements
= bnx2x_get_n_elements
;
2220 bnx2x_exe_queue_init(bp
,
2221 &vlan_obj
->exe_queue
, CLASSIFY_RULES_COUNT
,
2222 qable_obj
, bnx2x_validate_vlan_mac
,
2223 bnx2x_remove_vlan_mac
,
2224 bnx2x_optimize_vlan_mac
,
2225 bnx2x_execute_vlan_mac
,
2226 bnx2x_exeq_get_vlan
);
2230 void bnx2x_init_vlan_mac_obj(struct bnx2x
*bp
,
2231 struct bnx2x_vlan_mac_obj
*vlan_mac_obj
,
2232 u8 cl_id
, u32 cid
, u8 func_id
, void *rdata
,
2233 dma_addr_t rdata_mapping
, int state
,
2234 unsigned long *pstate
, bnx2x_obj_type type
,
2235 struct bnx2x_credit_pool_obj
*macs_pool
,
2236 struct bnx2x_credit_pool_obj
*vlans_pool
)
2238 union bnx2x_qable_obj
*qable_obj
=
2239 (union bnx2x_qable_obj
*)vlan_mac_obj
;
2241 bnx2x_init_vlan_mac_common(vlan_mac_obj
, cl_id
, cid
, func_id
, rdata
,
2242 rdata_mapping
, state
, pstate
, type
,
2243 macs_pool
, vlans_pool
);
2245 /* CAM pool handling */
2246 vlan_mac_obj
->get_credit
= bnx2x_get_credit_vlan_mac
;
2247 vlan_mac_obj
->put_credit
= bnx2x_put_credit_vlan_mac
;
2248 /* CAM offset is relevant for 57710 and 57711 chips only which have a
2249 * single CAM for both MACs and VLAN-MAC pairs. So the offset
2250 * will be taken from MACs' pool object only.
2252 vlan_mac_obj
->get_cam_offset
= bnx2x_get_cam_offset_mac
;
2253 vlan_mac_obj
->put_cam_offset
= bnx2x_put_cam_offset_mac
;
2255 if (CHIP_IS_E1(bp
)) {
2256 BNX2X_ERR("Do not support chips others than E2\n");
2258 } else if (CHIP_IS_E1H(bp
)) {
2259 vlan_mac_obj
->set_one_rule
= bnx2x_set_one_vlan_mac_e1h
;
2260 vlan_mac_obj
->check_del
= bnx2x_check_vlan_mac_del
;
2261 vlan_mac_obj
->check_add
= bnx2x_check_vlan_mac_add
;
2262 vlan_mac_obj
->check_move
= bnx2x_check_move_always_err
;
2263 vlan_mac_obj
->ramrod_cmd
= RAMROD_CMD_ID_ETH_SET_MAC
;
2266 bnx2x_exe_queue_init(bp
,
2267 &vlan_mac_obj
->exe_queue
, 1, qable_obj
,
2268 bnx2x_validate_vlan_mac
,
2269 bnx2x_remove_vlan_mac
,
2270 bnx2x_optimize_vlan_mac
,
2271 bnx2x_execute_vlan_mac
,
2272 bnx2x_exeq_get_vlan_mac
);
2274 vlan_mac_obj
->set_one_rule
= bnx2x_set_one_vlan_mac_e2
;
2275 vlan_mac_obj
->check_del
= bnx2x_check_vlan_mac_del
;
2276 vlan_mac_obj
->check_add
= bnx2x_check_vlan_mac_add
;
2277 vlan_mac_obj
->check_move
= bnx2x_check_move
;
2278 vlan_mac_obj
->ramrod_cmd
=
2279 RAMROD_CMD_ID_ETH_CLASSIFICATION_RULES
;
2282 bnx2x_exe_queue_init(bp
,
2283 &vlan_mac_obj
->exe_queue
,
2284 CLASSIFY_RULES_COUNT
,
2285 qable_obj
, bnx2x_validate_vlan_mac
,
2286 bnx2x_remove_vlan_mac
,
2287 bnx2x_optimize_vlan_mac
,
2288 bnx2x_execute_vlan_mac
,
2289 bnx2x_exeq_get_vlan_mac
);
2292 /* RX_MODE verbs: DROP_ALL/ACCEPT_ALL/ACCEPT_ALL_MULTI/ACCEPT_ALL_VLAN/NORMAL */
2293 static inline void __storm_memset_mac_filters(struct bnx2x
*bp
,
2294 struct tstorm_eth_mac_filter_config
*mac_filters
,
2297 size_t size
= sizeof(struct tstorm_eth_mac_filter_config
);
2299 u32 addr
= BAR_TSTRORM_INTMEM
+
2300 TSTORM_MAC_FILTER_CONFIG_OFFSET(pf_id
);
2302 __storm_memset_struct(bp
, addr
, size
, (u32
*)mac_filters
);
2305 static int bnx2x_set_rx_mode_e1x(struct bnx2x
*bp
,
2306 struct bnx2x_rx_mode_ramrod_params
*p
)
2308 /* update the bp MAC filter structure */
2309 u32 mask
= (1 << p
->cl_id
);
2311 struct tstorm_eth_mac_filter_config
*mac_filters
=
2312 (struct tstorm_eth_mac_filter_config
*)p
->rdata
;
2314 /* initial setting is drop-all */
2315 u8 drop_all_ucast
= 1, drop_all_mcast
= 1;
2316 u8 accp_all_ucast
= 0, accp_all_bcast
= 0, accp_all_mcast
= 0;
2317 u8 unmatched_unicast
= 0;
2319 /* In e1x there we only take into account rx accept flag since tx switching
2321 if (test_bit(BNX2X_ACCEPT_UNICAST
, &p
->rx_accept_flags
))
2322 /* accept matched ucast */
2325 if (test_bit(BNX2X_ACCEPT_MULTICAST
, &p
->rx_accept_flags
))
2326 /* accept matched mcast */
2329 if (test_bit(BNX2X_ACCEPT_ALL_UNICAST
, &p
->rx_accept_flags
)) {
2330 /* accept all mcast */
2334 if (test_bit(BNX2X_ACCEPT_ALL_MULTICAST
, &p
->rx_accept_flags
)) {
2335 /* accept all mcast */
2339 if (test_bit(BNX2X_ACCEPT_BROADCAST
, &p
->rx_accept_flags
))
2340 /* accept (all) bcast */
2342 if (test_bit(BNX2X_ACCEPT_UNMATCHED
, &p
->rx_accept_flags
))
2343 /* accept unmatched unicasts */
2344 unmatched_unicast
= 1;
2346 mac_filters
->ucast_drop_all
= drop_all_ucast
?
2347 mac_filters
->ucast_drop_all
| mask
:
2348 mac_filters
->ucast_drop_all
& ~mask
;
2350 mac_filters
->mcast_drop_all
= drop_all_mcast
?
2351 mac_filters
->mcast_drop_all
| mask
:
2352 mac_filters
->mcast_drop_all
& ~mask
;
2354 mac_filters
->ucast_accept_all
= accp_all_ucast
?
2355 mac_filters
->ucast_accept_all
| mask
:
2356 mac_filters
->ucast_accept_all
& ~mask
;
2358 mac_filters
->mcast_accept_all
= accp_all_mcast
?
2359 mac_filters
->mcast_accept_all
| mask
:
2360 mac_filters
->mcast_accept_all
& ~mask
;
2362 mac_filters
->bcast_accept_all
= accp_all_bcast
?
2363 mac_filters
->bcast_accept_all
| mask
:
2364 mac_filters
->bcast_accept_all
& ~mask
;
2366 mac_filters
->unmatched_unicast
= unmatched_unicast
?
2367 mac_filters
->unmatched_unicast
| mask
:
2368 mac_filters
->unmatched_unicast
& ~mask
;
2370 DP(BNX2X_MSG_SP
, "drop_ucast 0x%x\ndrop_mcast 0x%x\n accp_ucast 0x%x\n"
2371 "accp_mcast 0x%x\naccp_bcast 0x%x\n",
2372 mac_filters
->ucast_drop_all
, mac_filters
->mcast_drop_all
,
2373 mac_filters
->ucast_accept_all
, mac_filters
->mcast_accept_all
,
2374 mac_filters
->bcast_accept_all
);
2376 /* write the MAC filter structure*/
2377 __storm_memset_mac_filters(bp
, mac_filters
, p
->func_id
);
2379 /* The operation is completed */
2380 clear_bit(p
->state
, p
->pstate
);
2381 smp_mb__after_atomic();
2386 /* Setup ramrod data */
2387 static inline void bnx2x_rx_mode_set_rdata_hdr_e2(u32 cid
,
2388 struct eth_classify_header
*hdr
,
2391 hdr
->echo
= cpu_to_le32(cid
);
2392 hdr
->rule_cnt
= rule_cnt
;
2395 static inline void bnx2x_rx_mode_set_cmd_state_e2(struct bnx2x
*bp
,
2396 unsigned long *accept_flags
,
2397 struct eth_filter_rules_cmd
*cmd
,
2398 bool clear_accept_all
)
2402 /* start with 'drop-all' */
2403 state
= ETH_FILTER_RULES_CMD_UCAST_DROP_ALL
|
2404 ETH_FILTER_RULES_CMD_MCAST_DROP_ALL
;
2406 if (test_bit(BNX2X_ACCEPT_UNICAST
, accept_flags
))
2407 state
&= ~ETH_FILTER_RULES_CMD_UCAST_DROP_ALL
;
2409 if (test_bit(BNX2X_ACCEPT_MULTICAST
, accept_flags
))
2410 state
&= ~ETH_FILTER_RULES_CMD_MCAST_DROP_ALL
;
2412 if (test_bit(BNX2X_ACCEPT_ALL_UNICAST
, accept_flags
)) {
2413 state
&= ~ETH_FILTER_RULES_CMD_UCAST_DROP_ALL
;
2414 state
|= ETH_FILTER_RULES_CMD_UCAST_ACCEPT_ALL
;
2417 if (test_bit(BNX2X_ACCEPT_ALL_MULTICAST
, accept_flags
)) {
2418 state
|= ETH_FILTER_RULES_CMD_MCAST_ACCEPT_ALL
;
2419 state
&= ~ETH_FILTER_RULES_CMD_MCAST_DROP_ALL
;
2422 if (test_bit(BNX2X_ACCEPT_BROADCAST
, accept_flags
))
2423 state
|= ETH_FILTER_RULES_CMD_BCAST_ACCEPT_ALL
;
2425 if (test_bit(BNX2X_ACCEPT_UNMATCHED
, accept_flags
)) {
2426 state
&= ~ETH_FILTER_RULES_CMD_UCAST_DROP_ALL
;
2427 state
|= ETH_FILTER_RULES_CMD_UCAST_ACCEPT_UNMATCHED
;
2430 if (test_bit(BNX2X_ACCEPT_ANY_VLAN
, accept_flags
))
2431 state
|= ETH_FILTER_RULES_CMD_ACCEPT_ANY_VLAN
;
2433 /* Clear ACCEPT_ALL_XXX flags for FCoE L2 Queue */
2434 if (clear_accept_all
) {
2435 state
&= ~ETH_FILTER_RULES_CMD_MCAST_ACCEPT_ALL
;
2436 state
&= ~ETH_FILTER_RULES_CMD_BCAST_ACCEPT_ALL
;
2437 state
&= ~ETH_FILTER_RULES_CMD_UCAST_ACCEPT_ALL
;
2438 state
&= ~ETH_FILTER_RULES_CMD_UCAST_ACCEPT_UNMATCHED
;
2441 cmd
->state
= cpu_to_le16(state
);
2444 static int bnx2x_set_rx_mode_e2(struct bnx2x
*bp
,
2445 struct bnx2x_rx_mode_ramrod_params
*p
)
2447 struct eth_filter_rules_ramrod_data
*data
= p
->rdata
;
2451 /* Reset the ramrod data buffer */
2452 memset(data
, 0, sizeof(*data
));
2454 /* Setup ramrod data */
2456 /* Tx (internal switching) */
2457 if (test_bit(RAMROD_TX
, &p
->ramrod_flags
)) {
2458 data
->rules
[rule_idx
].client_id
= p
->cl_id
;
2459 data
->rules
[rule_idx
].func_id
= p
->func_id
;
2461 data
->rules
[rule_idx
].cmd_general_data
=
2462 ETH_FILTER_RULES_CMD_TX_CMD
;
2464 bnx2x_rx_mode_set_cmd_state_e2(bp
, &p
->tx_accept_flags
,
2465 &(data
->rules
[rule_idx
++]),
2470 if (test_bit(RAMROD_RX
, &p
->ramrod_flags
)) {
2471 data
->rules
[rule_idx
].client_id
= p
->cl_id
;
2472 data
->rules
[rule_idx
].func_id
= p
->func_id
;
2474 data
->rules
[rule_idx
].cmd_general_data
=
2475 ETH_FILTER_RULES_CMD_RX_CMD
;
2477 bnx2x_rx_mode_set_cmd_state_e2(bp
, &p
->rx_accept_flags
,
2478 &(data
->rules
[rule_idx
++]),
2482 /* If FCoE Queue configuration has been requested configure the Rx and
2483 * internal switching modes for this queue in separate rules.
2485 * FCoE queue shell never be set to ACCEPT_ALL packets of any sort:
2486 * MCAST_ALL, UCAST_ALL, BCAST_ALL and UNMATCHED.
2488 if (test_bit(BNX2X_RX_MODE_FCOE_ETH
, &p
->rx_mode_flags
)) {
2489 /* Tx (internal switching) */
2490 if (test_bit(RAMROD_TX
, &p
->ramrod_flags
)) {
2491 data
->rules
[rule_idx
].client_id
= bnx2x_fcoe(bp
, cl_id
);
2492 data
->rules
[rule_idx
].func_id
= p
->func_id
;
2494 data
->rules
[rule_idx
].cmd_general_data
=
2495 ETH_FILTER_RULES_CMD_TX_CMD
;
2497 bnx2x_rx_mode_set_cmd_state_e2(bp
, &p
->tx_accept_flags
,
2498 &(data
->rules
[rule_idx
]),
2504 if (test_bit(RAMROD_RX
, &p
->ramrod_flags
)) {
2505 data
->rules
[rule_idx
].client_id
= bnx2x_fcoe(bp
, cl_id
);
2506 data
->rules
[rule_idx
].func_id
= p
->func_id
;
2508 data
->rules
[rule_idx
].cmd_general_data
=
2509 ETH_FILTER_RULES_CMD_RX_CMD
;
2511 bnx2x_rx_mode_set_cmd_state_e2(bp
, &p
->rx_accept_flags
,
2512 &(data
->rules
[rule_idx
]),
2518 /* Set the ramrod header (most importantly - number of rules to
2521 bnx2x_rx_mode_set_rdata_hdr_e2(p
->cid
, &data
->header
, rule_idx
);
2523 DP(BNX2X_MSG_SP
, "About to configure %d rules, rx_accept_flags 0x%lx, tx_accept_flags 0x%lx\n",
2524 data
->header
.rule_cnt
, p
->rx_accept_flags
,
2525 p
->tx_accept_flags
);
2527 /* No need for an explicit memory barrier here as long as we
2528 * ensure the ordering of writing to the SPQ element
2529 * and updating of the SPQ producer which involves a memory
2530 * read. If the memory read is removed we will have to put a
2531 * full memory barrier there (inside bnx2x_sp_post()).
2535 rc
= bnx2x_sp_post(bp
, RAMROD_CMD_ID_ETH_FILTER_RULES
, p
->cid
,
2536 U64_HI(p
->rdata_mapping
),
2537 U64_LO(p
->rdata_mapping
),
2538 ETH_CONNECTION_TYPE
);
2542 /* Ramrod completion is pending */
2546 static int bnx2x_wait_rx_mode_comp_e2(struct bnx2x
*bp
,
2547 struct bnx2x_rx_mode_ramrod_params
*p
)
2549 return bnx2x_state_wait(bp
, p
->state
, p
->pstate
);
2552 static int bnx2x_empty_rx_mode_wait(struct bnx2x
*bp
,
2553 struct bnx2x_rx_mode_ramrod_params
*p
)
2559 int bnx2x_config_rx_mode(struct bnx2x
*bp
,
2560 struct bnx2x_rx_mode_ramrod_params
*p
)
2564 /* Configure the new classification in the chip */
2565 rc
= p
->rx_mode_obj
->config_rx_mode(bp
, p
);
2569 /* Wait for a ramrod completion if was requested */
2570 if (test_bit(RAMROD_COMP_WAIT
, &p
->ramrod_flags
)) {
2571 rc
= p
->rx_mode_obj
->wait_comp(bp
, p
);
2579 void bnx2x_init_rx_mode_obj(struct bnx2x
*bp
,
2580 struct bnx2x_rx_mode_obj
*o
)
2582 if (CHIP_IS_E1x(bp
)) {
2583 o
->wait_comp
= bnx2x_empty_rx_mode_wait
;
2584 o
->config_rx_mode
= bnx2x_set_rx_mode_e1x
;
2586 o
->wait_comp
= bnx2x_wait_rx_mode_comp_e2
;
2587 o
->config_rx_mode
= bnx2x_set_rx_mode_e2
;
2591 /********************* Multicast verbs: SET, CLEAR ****************************/
2592 static inline u8
bnx2x_mcast_bin_from_mac(u8
*mac
)
2594 return (crc32c_le(0, mac
, ETH_ALEN
) >> 24) & 0xff;
2597 struct bnx2x_mcast_mac_elem
{
2598 struct list_head link
;
2600 u8 pad
[2]; /* For a natural alignment of the following buffer */
2603 struct bnx2x_pending_mcast_cmd
{
2604 struct list_head link
;
2605 int type
; /* BNX2X_MCAST_CMD_X */
2607 struct list_head macs_head
;
2608 u32 macs_num
; /* Needed for DEL command */
2609 int next_bin
; /* Needed for RESTORE flow with aprox match */
2612 bool done
; /* set to true, when the command has been handled,
2613 * practically used in 57712 handling only, where one pending
2614 * command may be handled in a few operations. As long as for
2615 * other chips every operation handling is completed in a
2616 * single ramrod, there is no need to utilize this field.
2620 static int bnx2x_mcast_wait(struct bnx2x
*bp
,
2621 struct bnx2x_mcast_obj
*o
)
2623 if (bnx2x_state_wait(bp
, o
->sched_state
, o
->raw
.pstate
) ||
2624 o
->raw
.wait_comp(bp
, &o
->raw
))
2630 static int bnx2x_mcast_enqueue_cmd(struct bnx2x
*bp
,
2631 struct bnx2x_mcast_obj
*o
,
2632 struct bnx2x_mcast_ramrod_params
*p
,
2633 enum bnx2x_mcast_cmd cmd
)
2636 struct bnx2x_pending_mcast_cmd
*new_cmd
;
2637 struct bnx2x_mcast_mac_elem
*cur_mac
= NULL
;
2638 struct bnx2x_mcast_list_elem
*pos
;
2639 int macs_list_len
= ((cmd
== BNX2X_MCAST_CMD_ADD
) ?
2640 p
->mcast_list_len
: 0);
2642 /* If the command is empty ("handle pending commands only"), break */
2643 if (!p
->mcast_list_len
)
2646 total_sz
= sizeof(*new_cmd
) +
2647 macs_list_len
* sizeof(struct bnx2x_mcast_mac_elem
);
2649 /* Add mcast is called under spin_lock, thus calling with GFP_ATOMIC */
2650 new_cmd
= kzalloc(total_sz
, GFP_ATOMIC
);
2655 DP(BNX2X_MSG_SP
, "About to enqueue a new %d command. macs_list_len=%d\n",
2656 cmd
, macs_list_len
);
2658 INIT_LIST_HEAD(&new_cmd
->data
.macs_head
);
2660 new_cmd
->type
= cmd
;
2661 new_cmd
->done
= false;
2664 case BNX2X_MCAST_CMD_ADD
:
2665 cur_mac
= (struct bnx2x_mcast_mac_elem
*)
2666 ((u8
*)new_cmd
+ sizeof(*new_cmd
));
2668 /* Push the MACs of the current command into the pending command
2671 list_for_each_entry(pos
, &p
->mcast_list
, link
) {
2672 memcpy(cur_mac
->mac
, pos
->mac
, ETH_ALEN
);
2673 list_add_tail(&cur_mac
->link
, &new_cmd
->data
.macs_head
);
2679 case BNX2X_MCAST_CMD_DEL
:
2680 new_cmd
->data
.macs_num
= p
->mcast_list_len
;
2683 case BNX2X_MCAST_CMD_RESTORE
:
2684 new_cmd
->data
.next_bin
= 0;
2689 BNX2X_ERR("Unknown command: %d\n", cmd
);
2693 /* Push the new pending command to the tail of the pending list: FIFO */
2694 list_add_tail(&new_cmd
->link
, &o
->pending_cmds_head
);
2702 * bnx2x_mcast_get_next_bin - get the next set bin (index)
2705 * @last: index to start looking from (including)
2707 * returns the next found (set) bin or a negative value if none is found.
2709 static inline int bnx2x_mcast_get_next_bin(struct bnx2x_mcast_obj
*o
, int last
)
2711 int i
, j
, inner_start
= last
% BIT_VEC64_ELEM_SZ
;
2713 for (i
= last
/ BIT_VEC64_ELEM_SZ
; i
< BNX2X_MCAST_VEC_SZ
; i
++) {
2714 if (o
->registry
.aprox_match
.vec
[i
])
2715 for (j
= inner_start
; j
< BIT_VEC64_ELEM_SZ
; j
++) {
2716 int cur_bit
= j
+ BIT_VEC64_ELEM_SZ
* i
;
2717 if (BIT_VEC64_TEST_BIT(o
->registry
.aprox_match
.
2730 * bnx2x_mcast_clear_first_bin - find the first set bin and clear it
2734 * returns the index of the found bin or -1 if none is found
2736 static inline int bnx2x_mcast_clear_first_bin(struct bnx2x_mcast_obj
*o
)
2738 int cur_bit
= bnx2x_mcast_get_next_bin(o
, 0);
2741 BIT_VEC64_CLEAR_BIT(o
->registry
.aprox_match
.vec
, cur_bit
);
2746 static inline u8
bnx2x_mcast_get_rx_tx_flag(struct bnx2x_mcast_obj
*o
)
2748 struct bnx2x_raw_obj
*raw
= &o
->raw
;
2751 if ((raw
->obj_type
== BNX2X_OBJ_TYPE_TX
) ||
2752 (raw
->obj_type
== BNX2X_OBJ_TYPE_RX_TX
))
2753 rx_tx_flag
|= ETH_MULTICAST_RULES_CMD_TX_CMD
;
2755 if ((raw
->obj_type
== BNX2X_OBJ_TYPE_RX
) ||
2756 (raw
->obj_type
== BNX2X_OBJ_TYPE_RX_TX
))
2757 rx_tx_flag
|= ETH_MULTICAST_RULES_CMD_RX_CMD
;
2762 static void bnx2x_mcast_set_one_rule_e2(struct bnx2x
*bp
,
2763 struct bnx2x_mcast_obj
*o
, int idx
,
2764 union bnx2x_mcast_config_data
*cfg_data
,
2765 enum bnx2x_mcast_cmd cmd
)
2767 struct bnx2x_raw_obj
*r
= &o
->raw
;
2768 struct eth_multicast_rules_ramrod_data
*data
=
2769 (struct eth_multicast_rules_ramrod_data
*)(r
->rdata
);
2770 u8 func_id
= r
->func_id
;
2771 u8 rx_tx_add_flag
= bnx2x_mcast_get_rx_tx_flag(o
);
2774 if ((cmd
== BNX2X_MCAST_CMD_ADD
) || (cmd
== BNX2X_MCAST_CMD_RESTORE
))
2775 rx_tx_add_flag
|= ETH_MULTICAST_RULES_CMD_IS_ADD
;
2777 data
->rules
[idx
].cmd_general_data
|= rx_tx_add_flag
;
2779 /* Get a bin and update a bins' vector */
2781 case BNX2X_MCAST_CMD_ADD
:
2782 bin
= bnx2x_mcast_bin_from_mac(cfg_data
->mac
);
2783 BIT_VEC64_SET_BIT(o
->registry
.aprox_match
.vec
, bin
);
2786 case BNX2X_MCAST_CMD_DEL
:
2787 /* If there were no more bins to clear
2788 * (bnx2x_mcast_clear_first_bin() returns -1) then we would
2789 * clear any (0xff) bin.
2790 * See bnx2x_mcast_validate_e2() for explanation when it may
2793 bin
= bnx2x_mcast_clear_first_bin(o
);
2796 case BNX2X_MCAST_CMD_RESTORE
:
2797 bin
= cfg_data
->bin
;
2801 BNX2X_ERR("Unknown command: %d\n", cmd
);
2805 DP(BNX2X_MSG_SP
, "%s bin %d\n",
2806 ((rx_tx_add_flag
& ETH_MULTICAST_RULES_CMD_IS_ADD
) ?
2807 "Setting" : "Clearing"), bin
);
2809 data
->rules
[idx
].bin_id
= (u8
)bin
;
2810 data
->rules
[idx
].func_id
= func_id
;
2811 data
->rules
[idx
].engine_id
= o
->engine_id
;
2815 * bnx2x_mcast_handle_restore_cmd_e2 - restore configuration from the registry
2817 * @bp: device handle
2819 * @start_bin: index in the registry to start from (including)
2820 * @rdata_idx: index in the ramrod data to start from
2822 * returns last handled bin index or -1 if all bins have been handled
2824 static inline int bnx2x_mcast_handle_restore_cmd_e2(
2825 struct bnx2x
*bp
, struct bnx2x_mcast_obj
*o
, int start_bin
,
2828 int cur_bin
, cnt
= *rdata_idx
;
2829 union bnx2x_mcast_config_data cfg_data
= {NULL
};
2831 /* go through the registry and configure the bins from it */
2832 for (cur_bin
= bnx2x_mcast_get_next_bin(o
, start_bin
); cur_bin
>= 0;
2833 cur_bin
= bnx2x_mcast_get_next_bin(o
, cur_bin
+ 1)) {
2835 cfg_data
.bin
= (u8
)cur_bin
;
2836 o
->set_one_rule(bp
, o
, cnt
, &cfg_data
,
2837 BNX2X_MCAST_CMD_RESTORE
);
2841 DP(BNX2X_MSG_SP
, "About to configure a bin %d\n", cur_bin
);
2843 /* Break if we reached the maximum number
2846 if (cnt
>= o
->max_cmd_len
)
2855 static inline void bnx2x_mcast_hdl_pending_add_e2(struct bnx2x
*bp
,
2856 struct bnx2x_mcast_obj
*o
, struct bnx2x_pending_mcast_cmd
*cmd_pos
,
2859 struct bnx2x_mcast_mac_elem
*pmac_pos
, *pmac_pos_n
;
2860 int cnt
= *line_idx
;
2861 union bnx2x_mcast_config_data cfg_data
= {NULL
};
2863 list_for_each_entry_safe(pmac_pos
, pmac_pos_n
, &cmd_pos
->data
.macs_head
,
2866 cfg_data
.mac
= &pmac_pos
->mac
[0];
2867 o
->set_one_rule(bp
, o
, cnt
, &cfg_data
, cmd_pos
->type
);
2871 DP(BNX2X_MSG_SP
, "About to configure %pM mcast MAC\n",
2874 list_del(&pmac_pos
->link
);
2876 /* Break if we reached the maximum number
2879 if (cnt
>= o
->max_cmd_len
)
2885 /* if no more MACs to configure - we are done */
2886 if (list_empty(&cmd_pos
->data
.macs_head
))
2887 cmd_pos
->done
= true;
2890 static inline void bnx2x_mcast_hdl_pending_del_e2(struct bnx2x
*bp
,
2891 struct bnx2x_mcast_obj
*o
, struct bnx2x_pending_mcast_cmd
*cmd_pos
,
2894 int cnt
= *line_idx
;
2896 while (cmd_pos
->data
.macs_num
) {
2897 o
->set_one_rule(bp
, o
, cnt
, NULL
, cmd_pos
->type
);
2901 cmd_pos
->data
.macs_num
--;
2903 DP(BNX2X_MSG_SP
, "Deleting MAC. %d left,cnt is %d\n",
2904 cmd_pos
->data
.macs_num
, cnt
);
2906 /* Break if we reached the maximum
2909 if (cnt
>= o
->max_cmd_len
)
2915 /* If we cleared all bins - we are done */
2916 if (!cmd_pos
->data
.macs_num
)
2917 cmd_pos
->done
= true;
2920 static inline void bnx2x_mcast_hdl_pending_restore_e2(struct bnx2x
*bp
,
2921 struct bnx2x_mcast_obj
*o
, struct bnx2x_pending_mcast_cmd
*cmd_pos
,
2924 cmd_pos
->data
.next_bin
= o
->hdl_restore(bp
, o
, cmd_pos
->data
.next_bin
,
2927 if (cmd_pos
->data
.next_bin
< 0)
2928 /* If o->set_restore returned -1 we are done */
2929 cmd_pos
->done
= true;
2931 /* Start from the next bin next time */
2932 cmd_pos
->data
.next_bin
++;
2935 static inline int bnx2x_mcast_handle_pending_cmds_e2(struct bnx2x
*bp
,
2936 struct bnx2x_mcast_ramrod_params
*p
)
2938 struct bnx2x_pending_mcast_cmd
*cmd_pos
, *cmd_pos_n
;
2940 struct bnx2x_mcast_obj
*o
= p
->mcast_obj
;
2942 list_for_each_entry_safe(cmd_pos
, cmd_pos_n
, &o
->pending_cmds_head
,
2944 switch (cmd_pos
->type
) {
2945 case BNX2X_MCAST_CMD_ADD
:
2946 bnx2x_mcast_hdl_pending_add_e2(bp
, o
, cmd_pos
, &cnt
);
2949 case BNX2X_MCAST_CMD_DEL
:
2950 bnx2x_mcast_hdl_pending_del_e2(bp
, o
, cmd_pos
, &cnt
);
2953 case BNX2X_MCAST_CMD_RESTORE
:
2954 bnx2x_mcast_hdl_pending_restore_e2(bp
, o
, cmd_pos
,
2959 BNX2X_ERR("Unknown command: %d\n", cmd_pos
->type
);
2963 /* If the command has been completed - remove it from the list
2964 * and free the memory
2966 if (cmd_pos
->done
) {
2967 list_del(&cmd_pos
->link
);
2971 /* Break if we reached the maximum number of rules */
2972 if (cnt
>= o
->max_cmd_len
)
2979 static inline void bnx2x_mcast_hdl_add(struct bnx2x
*bp
,
2980 struct bnx2x_mcast_obj
*o
, struct bnx2x_mcast_ramrod_params
*p
,
2983 struct bnx2x_mcast_list_elem
*mlist_pos
;
2984 union bnx2x_mcast_config_data cfg_data
= {NULL
};
2985 int cnt
= *line_idx
;
2987 list_for_each_entry(mlist_pos
, &p
->mcast_list
, link
) {
2988 cfg_data
.mac
= mlist_pos
->mac
;
2989 o
->set_one_rule(bp
, o
, cnt
, &cfg_data
, BNX2X_MCAST_CMD_ADD
);
2993 DP(BNX2X_MSG_SP
, "About to configure %pM mcast MAC\n",
3000 static inline void bnx2x_mcast_hdl_del(struct bnx2x
*bp
,
3001 struct bnx2x_mcast_obj
*o
, struct bnx2x_mcast_ramrod_params
*p
,
3004 int cnt
= *line_idx
, i
;
3006 for (i
= 0; i
< p
->mcast_list_len
; i
++) {
3007 o
->set_one_rule(bp
, o
, cnt
, NULL
, BNX2X_MCAST_CMD_DEL
);
3011 DP(BNX2X_MSG_SP
, "Deleting MAC. %d left\n",
3012 p
->mcast_list_len
- i
- 1);
3019 * bnx2x_mcast_handle_current_cmd -
3021 * @bp: device handle
3024 * @start_cnt: first line in the ramrod data that may be used
3026 * This function is called iff there is enough place for the current command in
3028 * Returns number of lines filled in the ramrod data in total.
3030 static inline int bnx2x_mcast_handle_current_cmd(struct bnx2x
*bp
,
3031 struct bnx2x_mcast_ramrod_params
*p
,
3032 enum bnx2x_mcast_cmd cmd
,
3035 struct bnx2x_mcast_obj
*o
= p
->mcast_obj
;
3036 int cnt
= start_cnt
;
3038 DP(BNX2X_MSG_SP
, "p->mcast_list_len=%d\n", p
->mcast_list_len
);
3041 case BNX2X_MCAST_CMD_ADD
:
3042 bnx2x_mcast_hdl_add(bp
, o
, p
, &cnt
);
3045 case BNX2X_MCAST_CMD_DEL
:
3046 bnx2x_mcast_hdl_del(bp
, o
, p
, &cnt
);
3049 case BNX2X_MCAST_CMD_RESTORE
:
3050 o
->hdl_restore(bp
, o
, 0, &cnt
);
3054 BNX2X_ERR("Unknown command: %d\n", cmd
);
3058 /* The current command has been handled */
3059 p
->mcast_list_len
= 0;
3064 static int bnx2x_mcast_validate_e2(struct bnx2x
*bp
,
3065 struct bnx2x_mcast_ramrod_params
*p
,
3066 enum bnx2x_mcast_cmd cmd
)
3068 struct bnx2x_mcast_obj
*o
= p
->mcast_obj
;
3069 int reg_sz
= o
->get_registry_size(o
);
3072 /* DEL command deletes all currently configured MACs */
3073 case BNX2X_MCAST_CMD_DEL
:
3074 o
->set_registry_size(o
, 0);
3077 /* RESTORE command will restore the entire multicast configuration */
3078 case BNX2X_MCAST_CMD_RESTORE
:
3079 /* Here we set the approximate amount of work to do, which in
3080 * fact may be only less as some MACs in postponed ADD
3081 * command(s) scheduled before this command may fall into
3082 * the same bin and the actual number of bins set in the
3083 * registry would be less than we estimated here. See
3084 * bnx2x_mcast_set_one_rule_e2() for further details.
3086 p
->mcast_list_len
= reg_sz
;
3089 case BNX2X_MCAST_CMD_ADD
:
3090 case BNX2X_MCAST_CMD_CONT
:
3091 /* Here we assume that all new MACs will fall into new bins.
3092 * However we will correct the real registry size after we
3093 * handle all pending commands.
3095 o
->set_registry_size(o
, reg_sz
+ p
->mcast_list_len
);
3099 BNX2X_ERR("Unknown command: %d\n", cmd
);
3103 /* Increase the total number of MACs pending to be configured */
3104 o
->total_pending_num
+= p
->mcast_list_len
;
3109 static void bnx2x_mcast_revert_e2(struct bnx2x
*bp
,
3110 struct bnx2x_mcast_ramrod_params
*p
,
3113 struct bnx2x_mcast_obj
*o
= p
->mcast_obj
;
3115 o
->set_registry_size(o
, old_num_bins
);
3116 o
->total_pending_num
-= p
->mcast_list_len
;
3120 * bnx2x_mcast_set_rdata_hdr_e2 - sets a header values
3122 * @bp: device handle
3124 * @len: number of rules to handle
3126 static inline void bnx2x_mcast_set_rdata_hdr_e2(struct bnx2x
*bp
,
3127 struct bnx2x_mcast_ramrod_params
*p
,
3130 struct bnx2x_raw_obj
*r
= &p
->mcast_obj
->raw
;
3131 struct eth_multicast_rules_ramrod_data
*data
=
3132 (struct eth_multicast_rules_ramrod_data
*)(r
->rdata
);
3134 data
->header
.echo
= cpu_to_le32((r
->cid
& BNX2X_SWCID_MASK
) |
3135 (BNX2X_FILTER_MCAST_PENDING
<<
3136 BNX2X_SWCID_SHIFT
));
3137 data
->header
.rule_cnt
= len
;
3141 * bnx2x_mcast_refresh_registry_e2 - recalculate the actual number of set bins
3143 * @bp: device handle
3146 * Recalculate the actual number of set bins in the registry using Brian
3147 * Kernighan's algorithm: it's execution complexity is as a number of set bins.
3149 * returns 0 for the compliance with bnx2x_mcast_refresh_registry_e1().
3151 static inline int bnx2x_mcast_refresh_registry_e2(struct bnx2x
*bp
,
3152 struct bnx2x_mcast_obj
*o
)
3157 for (i
= 0; i
< BNX2X_MCAST_VEC_SZ
; i
++) {
3158 elem
= o
->registry
.aprox_match
.vec
[i
];
3163 o
->set_registry_size(o
, cnt
);
3168 static int bnx2x_mcast_setup_e2(struct bnx2x
*bp
,
3169 struct bnx2x_mcast_ramrod_params
*p
,
3170 enum bnx2x_mcast_cmd cmd
)
3172 struct bnx2x_raw_obj
*raw
= &p
->mcast_obj
->raw
;
3173 struct bnx2x_mcast_obj
*o
= p
->mcast_obj
;
3174 struct eth_multicast_rules_ramrod_data
*data
=
3175 (struct eth_multicast_rules_ramrod_data
*)(raw
->rdata
);
3178 /* Reset the ramrod data buffer */
3179 memset(data
, 0, sizeof(*data
));
3181 cnt
= bnx2x_mcast_handle_pending_cmds_e2(bp
, p
);
3183 /* If there are no more pending commands - clear SCHEDULED state */
3184 if (list_empty(&o
->pending_cmds_head
))
3187 /* The below may be true iff there was enough room in ramrod
3188 * data for all pending commands and for the current
3189 * command. Otherwise the current command would have been added
3190 * to the pending commands and p->mcast_list_len would have been
3193 if (p
->mcast_list_len
> 0)
3194 cnt
= bnx2x_mcast_handle_current_cmd(bp
, p
, cmd
, cnt
);
3196 /* We've pulled out some MACs - update the total number of
3199 o
->total_pending_num
-= cnt
;
3202 WARN_ON(o
->total_pending_num
< 0);
3203 WARN_ON(cnt
> o
->max_cmd_len
);
3205 bnx2x_mcast_set_rdata_hdr_e2(bp
, p
, (u8
)cnt
);
3207 /* Update a registry size if there are no more pending operations.
3209 * We don't want to change the value of the registry size if there are
3210 * pending operations because we want it to always be equal to the
3211 * exact or the approximate number (see bnx2x_mcast_validate_e2()) of
3212 * set bins after the last requested operation in order to properly
3213 * evaluate the size of the next DEL/RESTORE operation.
3215 * Note that we update the registry itself during command(s) handling
3216 * - see bnx2x_mcast_set_one_rule_e2(). That's because for 57712 we
3217 * aggregate multiple commands (ADD/DEL/RESTORE) into one ramrod but
3218 * with a limited amount of update commands (per MAC/bin) and we don't
3219 * know in this scope what the actual state of bins configuration is
3220 * going to be after this ramrod.
3222 if (!o
->total_pending_num
)
3223 bnx2x_mcast_refresh_registry_e2(bp
, o
);
3225 /* If CLEAR_ONLY was requested - don't send a ramrod and clear
3226 * RAMROD_PENDING status immediately.
3228 if (test_bit(RAMROD_DRV_CLR_ONLY
, &p
->ramrod_flags
)) {
3229 raw
->clear_pending(raw
);
3232 /* No need for an explicit memory barrier here as long as we
3233 * ensure the ordering of writing to the SPQ element
3234 * and updating of the SPQ producer which involves a memory
3235 * read. If the memory read is removed we will have to put a
3236 * full memory barrier there (inside bnx2x_sp_post()).
3240 rc
= bnx2x_sp_post(bp
, RAMROD_CMD_ID_ETH_MULTICAST_RULES
,
3241 raw
->cid
, U64_HI(raw
->rdata_mapping
),
3242 U64_LO(raw
->rdata_mapping
),
3243 ETH_CONNECTION_TYPE
);
3247 /* Ramrod completion is pending */
3252 static int bnx2x_mcast_validate_e1h(struct bnx2x
*bp
,
3253 struct bnx2x_mcast_ramrod_params
*p
,
3254 enum bnx2x_mcast_cmd cmd
)
3256 /* Mark, that there is a work to do */
3257 if ((cmd
== BNX2X_MCAST_CMD_DEL
) || (cmd
== BNX2X_MCAST_CMD_RESTORE
))
3258 p
->mcast_list_len
= 1;
3263 static void bnx2x_mcast_revert_e1h(struct bnx2x
*bp
,
3264 struct bnx2x_mcast_ramrod_params
*p
,
3270 #define BNX2X_57711_SET_MC_FILTER(filter, bit) \
3272 (filter)[(bit) >> 5] |= (1 << ((bit) & 0x1f)); \
3275 static inline void bnx2x_mcast_hdl_add_e1h(struct bnx2x
*bp
,
3276 struct bnx2x_mcast_obj
*o
,
3277 struct bnx2x_mcast_ramrod_params
*p
,
3280 struct bnx2x_mcast_list_elem
*mlist_pos
;
3283 list_for_each_entry(mlist_pos
, &p
->mcast_list
, link
) {
3284 bit
= bnx2x_mcast_bin_from_mac(mlist_pos
->mac
);
3285 BNX2X_57711_SET_MC_FILTER(mc_filter
, bit
);
3287 DP(BNX2X_MSG_SP
, "About to configure %pM mcast MAC, bin %d\n",
3288 mlist_pos
->mac
, bit
);
3290 /* bookkeeping... */
3291 BIT_VEC64_SET_BIT(o
->registry
.aprox_match
.vec
,
3296 static inline void bnx2x_mcast_hdl_restore_e1h(struct bnx2x
*bp
,
3297 struct bnx2x_mcast_obj
*o
, struct bnx2x_mcast_ramrod_params
*p
,
3302 for (bit
= bnx2x_mcast_get_next_bin(o
, 0);
3304 bit
= bnx2x_mcast_get_next_bin(o
, bit
+ 1)) {
3305 BNX2X_57711_SET_MC_FILTER(mc_filter
, bit
);
3306 DP(BNX2X_MSG_SP
, "About to set bin %d\n", bit
);
3310 /* On 57711 we write the multicast MACs' approximate match
3311 * table by directly into the TSTORM's internal RAM. So we don't
3312 * really need to handle any tricks to make it work.
3314 static int bnx2x_mcast_setup_e1h(struct bnx2x
*bp
,
3315 struct bnx2x_mcast_ramrod_params
*p
,
3316 enum bnx2x_mcast_cmd cmd
)
3319 struct bnx2x_mcast_obj
*o
= p
->mcast_obj
;
3320 struct bnx2x_raw_obj
*r
= &o
->raw
;
3322 /* If CLEAR_ONLY has been requested - clear the registry
3323 * and clear a pending bit.
3325 if (!test_bit(RAMROD_DRV_CLR_ONLY
, &p
->ramrod_flags
)) {
3326 u32 mc_filter
[MC_HASH_SIZE
] = {0};
3328 /* Set the multicast filter bits before writing it into
3329 * the internal memory.
3332 case BNX2X_MCAST_CMD_ADD
:
3333 bnx2x_mcast_hdl_add_e1h(bp
, o
, p
, mc_filter
);
3336 case BNX2X_MCAST_CMD_DEL
:
3338 "Invalidating multicast MACs configuration\n");
3340 /* clear the registry */
3341 memset(o
->registry
.aprox_match
.vec
, 0,
3342 sizeof(o
->registry
.aprox_match
.vec
));
3345 case BNX2X_MCAST_CMD_RESTORE
:
3346 bnx2x_mcast_hdl_restore_e1h(bp
, o
, p
, mc_filter
);
3350 BNX2X_ERR("Unknown command: %d\n", cmd
);
3354 /* Set the mcast filter in the internal memory */
3355 for (i
= 0; i
< MC_HASH_SIZE
; i
++)
3356 REG_WR(bp
, MC_HASH_OFFSET(bp
, i
), mc_filter
[i
]);
3358 /* clear the registry */
3359 memset(o
->registry
.aprox_match
.vec
, 0,
3360 sizeof(o
->registry
.aprox_match
.vec
));
3363 r
->clear_pending(r
);
3368 static int bnx2x_mcast_validate_e1(struct bnx2x
*bp
,
3369 struct bnx2x_mcast_ramrod_params
*p
,
3370 enum bnx2x_mcast_cmd cmd
)
3372 struct bnx2x_mcast_obj
*o
= p
->mcast_obj
;
3373 int reg_sz
= o
->get_registry_size(o
);
3376 /* DEL command deletes all currently configured MACs */
3377 case BNX2X_MCAST_CMD_DEL
:
3378 o
->set_registry_size(o
, 0);
3381 /* RESTORE command will restore the entire multicast configuration */
3382 case BNX2X_MCAST_CMD_RESTORE
:
3383 p
->mcast_list_len
= reg_sz
;
3384 DP(BNX2X_MSG_SP
, "Command %d, p->mcast_list_len=%d\n",
3385 cmd
, p
->mcast_list_len
);
3388 case BNX2X_MCAST_CMD_ADD
:
3389 case BNX2X_MCAST_CMD_CONT
:
3390 /* Multicast MACs on 57710 are configured as unicast MACs and
3391 * there is only a limited number of CAM entries for that
3394 if (p
->mcast_list_len
> o
->max_cmd_len
) {
3395 BNX2X_ERR("Can't configure more than %d multicast MACs on 57710\n",
3399 /* Every configured MAC should be cleared if DEL command is
3400 * called. Only the last ADD command is relevant as long as
3401 * every ADD commands overrides the previous configuration.
3403 DP(BNX2X_MSG_SP
, "p->mcast_list_len=%d\n", p
->mcast_list_len
);
3404 if (p
->mcast_list_len
> 0)
3405 o
->set_registry_size(o
, p
->mcast_list_len
);
3410 BNX2X_ERR("Unknown command: %d\n", cmd
);
3414 /* We want to ensure that commands are executed one by one for 57710.
3415 * Therefore each none-empty command will consume o->max_cmd_len.
3417 if (p
->mcast_list_len
)
3418 o
->total_pending_num
+= o
->max_cmd_len
;
3423 static void bnx2x_mcast_revert_e1(struct bnx2x
*bp
,
3424 struct bnx2x_mcast_ramrod_params
*p
,
3427 struct bnx2x_mcast_obj
*o
= p
->mcast_obj
;
3429 o
->set_registry_size(o
, old_num_macs
);
3431 /* If current command hasn't been handled yet and we are
3432 * here means that it's meant to be dropped and we have to
3433 * update the number of outstanding MACs accordingly.
3435 if (p
->mcast_list_len
)
3436 o
->total_pending_num
-= o
->max_cmd_len
;
3439 static void bnx2x_mcast_set_one_rule_e1(struct bnx2x
*bp
,
3440 struct bnx2x_mcast_obj
*o
, int idx
,
3441 union bnx2x_mcast_config_data
*cfg_data
,
3442 enum bnx2x_mcast_cmd cmd
)
3444 struct bnx2x_raw_obj
*r
= &o
->raw
;
3445 struct mac_configuration_cmd
*data
=
3446 (struct mac_configuration_cmd
*)(r
->rdata
);
3449 if ((cmd
== BNX2X_MCAST_CMD_ADD
) || (cmd
== BNX2X_MCAST_CMD_RESTORE
)) {
3450 bnx2x_set_fw_mac_addr(&data
->config_table
[idx
].msb_mac_addr
,
3451 &data
->config_table
[idx
].middle_mac_addr
,
3452 &data
->config_table
[idx
].lsb_mac_addr
,
3455 data
->config_table
[idx
].vlan_id
= 0;
3456 data
->config_table
[idx
].pf_id
= r
->func_id
;
3457 data
->config_table
[idx
].clients_bit_vector
=
3458 cpu_to_le32(1 << r
->cl_id
);
3460 SET_FLAG(data
->config_table
[idx
].flags
,
3461 MAC_CONFIGURATION_ENTRY_ACTION_TYPE
,
3462 T_ETH_MAC_COMMAND_SET
);
3467 * bnx2x_mcast_set_rdata_hdr_e1 - set header values in mac_configuration_cmd
3469 * @bp: device handle
3471 * @len: number of rules to handle
3473 static inline void bnx2x_mcast_set_rdata_hdr_e1(struct bnx2x
*bp
,
3474 struct bnx2x_mcast_ramrod_params
*p
,
3477 struct bnx2x_raw_obj
*r
= &p
->mcast_obj
->raw
;
3478 struct mac_configuration_cmd
*data
=
3479 (struct mac_configuration_cmd
*)(r
->rdata
);
3481 u8 offset
= (CHIP_REV_IS_SLOW(bp
) ?
3482 BNX2X_MAX_EMUL_MULTI
*(1 + r
->func_id
) :
3483 BNX2X_MAX_MULTICAST
*(1 + r
->func_id
));
3485 data
->hdr
.offset
= offset
;
3486 data
->hdr
.client_id
= cpu_to_le16(0xff);
3487 data
->hdr
.echo
= cpu_to_le32((r
->cid
& BNX2X_SWCID_MASK
) |
3488 (BNX2X_FILTER_MCAST_PENDING
<<
3489 BNX2X_SWCID_SHIFT
));
3490 data
->hdr
.length
= len
;
3494 * bnx2x_mcast_handle_restore_cmd_e1 - restore command for 57710
3496 * @bp: device handle
3498 * @start_idx: index in the registry to start from
3499 * @rdata_idx: index in the ramrod data to start from
3501 * restore command for 57710 is like all other commands - always a stand alone
3502 * command - start_idx and rdata_idx will always be 0. This function will always
3504 * returns -1 to comply with 57712 variant.
3506 static inline int bnx2x_mcast_handle_restore_cmd_e1(
3507 struct bnx2x
*bp
, struct bnx2x_mcast_obj
*o
, int start_idx
,
3510 struct bnx2x_mcast_mac_elem
*elem
;
3512 union bnx2x_mcast_config_data cfg_data
= {NULL
};
3514 /* go through the registry and configure the MACs from it. */
3515 list_for_each_entry(elem
, &o
->registry
.exact_match
.macs
, link
) {
3516 cfg_data
.mac
= &elem
->mac
[0];
3517 o
->set_one_rule(bp
, o
, i
, &cfg_data
, BNX2X_MCAST_CMD_RESTORE
);
3521 DP(BNX2X_MSG_SP
, "About to configure %pM mcast MAC\n",
3530 static inline int bnx2x_mcast_handle_pending_cmds_e1(
3531 struct bnx2x
*bp
, struct bnx2x_mcast_ramrod_params
*p
)
3533 struct bnx2x_pending_mcast_cmd
*cmd_pos
;
3534 struct bnx2x_mcast_mac_elem
*pmac_pos
;
3535 struct bnx2x_mcast_obj
*o
= p
->mcast_obj
;
3536 union bnx2x_mcast_config_data cfg_data
= {NULL
};
3539 /* If nothing to be done - return */
3540 if (list_empty(&o
->pending_cmds_head
))
3543 /* Handle the first command */
3544 cmd_pos
= list_first_entry(&o
->pending_cmds_head
,
3545 struct bnx2x_pending_mcast_cmd
, link
);
3547 switch (cmd_pos
->type
) {
3548 case BNX2X_MCAST_CMD_ADD
:
3549 list_for_each_entry(pmac_pos
, &cmd_pos
->data
.macs_head
, link
) {
3550 cfg_data
.mac
= &pmac_pos
->mac
[0];
3551 o
->set_one_rule(bp
, o
, cnt
, &cfg_data
, cmd_pos
->type
);
3555 DP(BNX2X_MSG_SP
, "About to configure %pM mcast MAC\n",
3560 case BNX2X_MCAST_CMD_DEL
:
3561 cnt
= cmd_pos
->data
.macs_num
;
3562 DP(BNX2X_MSG_SP
, "About to delete %d multicast MACs\n", cnt
);
3565 case BNX2X_MCAST_CMD_RESTORE
:
3566 o
->hdl_restore(bp
, o
, 0, &cnt
);
3570 BNX2X_ERR("Unknown command: %d\n", cmd_pos
->type
);
3574 list_del(&cmd_pos
->link
);
3581 * bnx2x_get_fw_mac_addr - revert the bnx2x_set_fw_mac_addr().
3588 static inline void bnx2x_get_fw_mac_addr(__le16
*fw_hi
, __le16
*fw_mid
,
3589 __le16
*fw_lo
, u8
*mac
)
3591 mac
[1] = ((u8
*)fw_hi
)[0];
3592 mac
[0] = ((u8
*)fw_hi
)[1];
3593 mac
[3] = ((u8
*)fw_mid
)[0];
3594 mac
[2] = ((u8
*)fw_mid
)[1];
3595 mac
[5] = ((u8
*)fw_lo
)[0];
3596 mac
[4] = ((u8
*)fw_lo
)[1];
3600 * bnx2x_mcast_refresh_registry_e1 -
3602 * @bp: device handle
3605 * Check the ramrod data first entry flag to see if it's a DELETE or ADD command
3606 * and update the registry correspondingly: if ADD - allocate a memory and add
3607 * the entries to the registry (list), if DELETE - clear the registry and free
3610 static inline int bnx2x_mcast_refresh_registry_e1(struct bnx2x
*bp
,
3611 struct bnx2x_mcast_obj
*o
)
3613 struct bnx2x_raw_obj
*raw
= &o
->raw
;
3614 struct bnx2x_mcast_mac_elem
*elem
;
3615 struct mac_configuration_cmd
*data
=
3616 (struct mac_configuration_cmd
*)(raw
->rdata
);
3618 /* If first entry contains a SET bit - the command was ADD,
3619 * otherwise - DEL_ALL
3621 if (GET_FLAG(data
->config_table
[0].flags
,
3622 MAC_CONFIGURATION_ENTRY_ACTION_TYPE
)) {
3623 int i
, len
= data
->hdr
.length
;
3625 /* Break if it was a RESTORE command */
3626 if (!list_empty(&o
->registry
.exact_match
.macs
))
3629 elem
= kcalloc(len
, sizeof(*elem
), GFP_ATOMIC
);
3631 BNX2X_ERR("Failed to allocate registry memory\n");
3635 for (i
= 0; i
< len
; i
++, elem
++) {
3636 bnx2x_get_fw_mac_addr(
3637 &data
->config_table
[i
].msb_mac_addr
,
3638 &data
->config_table
[i
].middle_mac_addr
,
3639 &data
->config_table
[i
].lsb_mac_addr
,
3641 DP(BNX2X_MSG_SP
, "Adding registry entry for [%pM]\n",
3643 list_add_tail(&elem
->link
,
3644 &o
->registry
.exact_match
.macs
);
3647 elem
= list_first_entry(&o
->registry
.exact_match
.macs
,
3648 struct bnx2x_mcast_mac_elem
, link
);
3649 DP(BNX2X_MSG_SP
, "Deleting a registry\n");
3651 INIT_LIST_HEAD(&o
->registry
.exact_match
.macs
);
3657 static int bnx2x_mcast_setup_e1(struct bnx2x
*bp
,
3658 struct bnx2x_mcast_ramrod_params
*p
,
3659 enum bnx2x_mcast_cmd cmd
)
3661 struct bnx2x_mcast_obj
*o
= p
->mcast_obj
;
3662 struct bnx2x_raw_obj
*raw
= &o
->raw
;
3663 struct mac_configuration_cmd
*data
=
3664 (struct mac_configuration_cmd
*)(raw
->rdata
);
3667 /* Reset the ramrod data buffer */
3668 memset(data
, 0, sizeof(*data
));
3670 /* First set all entries as invalid */
3671 for (i
= 0; i
< o
->max_cmd_len
; i
++)
3672 SET_FLAG(data
->config_table
[i
].flags
,
3673 MAC_CONFIGURATION_ENTRY_ACTION_TYPE
,
3674 T_ETH_MAC_COMMAND_INVALIDATE
);
3676 /* Handle pending commands first */
3677 cnt
= bnx2x_mcast_handle_pending_cmds_e1(bp
, p
);
3679 /* If there are no more pending commands - clear SCHEDULED state */
3680 if (list_empty(&o
->pending_cmds_head
))
3683 /* The below may be true iff there were no pending commands */
3685 cnt
= bnx2x_mcast_handle_current_cmd(bp
, p
, cmd
, 0);
3687 /* For 57710 every command has o->max_cmd_len length to ensure that
3688 * commands are done one at a time.
3690 o
->total_pending_num
-= o
->max_cmd_len
;
3694 WARN_ON(cnt
> o
->max_cmd_len
);
3696 /* Set ramrod header (in particular, a number of entries to update) */
3697 bnx2x_mcast_set_rdata_hdr_e1(bp
, p
, (u8
)cnt
);
3699 /* update a registry: we need the registry contents to be always up
3700 * to date in order to be able to execute a RESTORE opcode. Here
3701 * we use the fact that for 57710 we sent one command at a time
3702 * hence we may take the registry update out of the command handling
3703 * and do it in a simpler way here.
3705 rc
= bnx2x_mcast_refresh_registry_e1(bp
, o
);
3709 /* If CLEAR_ONLY was requested - don't send a ramrod and clear
3710 * RAMROD_PENDING status immediately.
3712 if (test_bit(RAMROD_DRV_CLR_ONLY
, &p
->ramrod_flags
)) {
3713 raw
->clear_pending(raw
);
3716 /* No need for an explicit memory barrier here as long as we
3717 * ensure the ordering of writing to the SPQ element
3718 * and updating of the SPQ producer which involves a memory
3719 * read. If the memory read is removed we will have to put a
3720 * full memory barrier there (inside bnx2x_sp_post()).
3724 rc
= bnx2x_sp_post(bp
, RAMROD_CMD_ID_ETH_SET_MAC
, raw
->cid
,
3725 U64_HI(raw
->rdata_mapping
),
3726 U64_LO(raw
->rdata_mapping
),
3727 ETH_CONNECTION_TYPE
);
3731 /* Ramrod completion is pending */
3736 static int bnx2x_mcast_get_registry_size_exact(struct bnx2x_mcast_obj
*o
)
3738 return o
->registry
.exact_match
.num_macs_set
;
3741 static int bnx2x_mcast_get_registry_size_aprox(struct bnx2x_mcast_obj
*o
)
3743 return o
->registry
.aprox_match
.num_bins_set
;
3746 static void bnx2x_mcast_set_registry_size_exact(struct bnx2x_mcast_obj
*o
,
3749 o
->registry
.exact_match
.num_macs_set
= n
;
3752 static void bnx2x_mcast_set_registry_size_aprox(struct bnx2x_mcast_obj
*o
,
3755 o
->registry
.aprox_match
.num_bins_set
= n
;
3758 int bnx2x_config_mcast(struct bnx2x
*bp
,
3759 struct bnx2x_mcast_ramrod_params
*p
,
3760 enum bnx2x_mcast_cmd cmd
)
3762 struct bnx2x_mcast_obj
*o
= p
->mcast_obj
;
3763 struct bnx2x_raw_obj
*r
= &o
->raw
;
3764 int rc
= 0, old_reg_size
;
3766 /* This is needed to recover number of currently configured mcast macs
3767 * in case of failure.
3769 old_reg_size
= o
->get_registry_size(o
);
3771 /* Do some calculations and checks */
3772 rc
= o
->validate(bp
, p
, cmd
);
3776 /* Return if there is no work to do */
3777 if ((!p
->mcast_list_len
) && (!o
->check_sched(o
)))
3780 DP(BNX2X_MSG_SP
, "o->total_pending_num=%d p->mcast_list_len=%d o->max_cmd_len=%d\n",
3781 o
->total_pending_num
, p
->mcast_list_len
, o
->max_cmd_len
);
3783 /* Enqueue the current command to the pending list if we can't complete
3784 * it in the current iteration
3786 if (r
->check_pending(r
) ||
3787 ((o
->max_cmd_len
> 0) && (o
->total_pending_num
> o
->max_cmd_len
))) {
3788 rc
= o
->enqueue_cmd(bp
, p
->mcast_obj
, p
, cmd
);
3792 /* As long as the current command is in a command list we
3793 * don't need to handle it separately.
3795 p
->mcast_list_len
= 0;
3798 if (!r
->check_pending(r
)) {
3800 /* Set 'pending' state */
3803 /* Configure the new classification in the chip */
3804 rc
= o
->config_mcast(bp
, p
, cmd
);
3808 /* Wait for a ramrod completion if was requested */
3809 if (test_bit(RAMROD_COMP_WAIT
, &p
->ramrod_flags
))
3810 rc
= o
->wait_comp(bp
, o
);
3816 r
->clear_pending(r
);
3819 o
->revert(bp
, p
, old_reg_size
);
3824 static void bnx2x_mcast_clear_sched(struct bnx2x_mcast_obj
*o
)
3826 smp_mb__before_atomic();
3827 clear_bit(o
->sched_state
, o
->raw
.pstate
);
3828 smp_mb__after_atomic();
3831 static void bnx2x_mcast_set_sched(struct bnx2x_mcast_obj
*o
)
3833 smp_mb__before_atomic();
3834 set_bit(o
->sched_state
, o
->raw
.pstate
);
3835 smp_mb__after_atomic();
3838 static bool bnx2x_mcast_check_sched(struct bnx2x_mcast_obj
*o
)
3840 return !!test_bit(o
->sched_state
, o
->raw
.pstate
);
3843 static bool bnx2x_mcast_check_pending(struct bnx2x_mcast_obj
*o
)
3845 return o
->raw
.check_pending(&o
->raw
) || o
->check_sched(o
);
3848 void bnx2x_init_mcast_obj(struct bnx2x
*bp
,
3849 struct bnx2x_mcast_obj
*mcast_obj
,
3850 u8 mcast_cl_id
, u32 mcast_cid
, u8 func_id
,
3851 u8 engine_id
, void *rdata
, dma_addr_t rdata_mapping
,
3852 int state
, unsigned long *pstate
, bnx2x_obj_type type
)
3854 memset(mcast_obj
, 0, sizeof(*mcast_obj
));
3856 bnx2x_init_raw_obj(&mcast_obj
->raw
, mcast_cl_id
, mcast_cid
, func_id
,
3857 rdata
, rdata_mapping
, state
, pstate
, type
);
3859 mcast_obj
->engine_id
= engine_id
;
3861 INIT_LIST_HEAD(&mcast_obj
->pending_cmds_head
);
3863 mcast_obj
->sched_state
= BNX2X_FILTER_MCAST_SCHED
;
3864 mcast_obj
->check_sched
= bnx2x_mcast_check_sched
;
3865 mcast_obj
->set_sched
= bnx2x_mcast_set_sched
;
3866 mcast_obj
->clear_sched
= bnx2x_mcast_clear_sched
;
3868 if (CHIP_IS_E1(bp
)) {
3869 mcast_obj
->config_mcast
= bnx2x_mcast_setup_e1
;
3870 mcast_obj
->enqueue_cmd
= bnx2x_mcast_enqueue_cmd
;
3871 mcast_obj
->hdl_restore
=
3872 bnx2x_mcast_handle_restore_cmd_e1
;
3873 mcast_obj
->check_pending
= bnx2x_mcast_check_pending
;
3875 if (CHIP_REV_IS_SLOW(bp
))
3876 mcast_obj
->max_cmd_len
= BNX2X_MAX_EMUL_MULTI
;
3878 mcast_obj
->max_cmd_len
= BNX2X_MAX_MULTICAST
;
3880 mcast_obj
->wait_comp
= bnx2x_mcast_wait
;
3881 mcast_obj
->set_one_rule
= bnx2x_mcast_set_one_rule_e1
;
3882 mcast_obj
->validate
= bnx2x_mcast_validate_e1
;
3883 mcast_obj
->revert
= bnx2x_mcast_revert_e1
;
3884 mcast_obj
->get_registry_size
=
3885 bnx2x_mcast_get_registry_size_exact
;
3886 mcast_obj
->set_registry_size
=
3887 bnx2x_mcast_set_registry_size_exact
;
3889 /* 57710 is the only chip that uses the exact match for mcast
3892 INIT_LIST_HEAD(&mcast_obj
->registry
.exact_match
.macs
);
3894 } else if (CHIP_IS_E1H(bp
)) {
3895 mcast_obj
->config_mcast
= bnx2x_mcast_setup_e1h
;
3896 mcast_obj
->enqueue_cmd
= NULL
;
3897 mcast_obj
->hdl_restore
= NULL
;
3898 mcast_obj
->check_pending
= bnx2x_mcast_check_pending
;
3900 /* 57711 doesn't send a ramrod, so it has unlimited credit
3903 mcast_obj
->max_cmd_len
= -1;
3904 mcast_obj
->wait_comp
= bnx2x_mcast_wait
;
3905 mcast_obj
->set_one_rule
= NULL
;
3906 mcast_obj
->validate
= bnx2x_mcast_validate_e1h
;
3907 mcast_obj
->revert
= bnx2x_mcast_revert_e1h
;
3908 mcast_obj
->get_registry_size
=
3909 bnx2x_mcast_get_registry_size_aprox
;
3910 mcast_obj
->set_registry_size
=
3911 bnx2x_mcast_set_registry_size_aprox
;
3913 mcast_obj
->config_mcast
= bnx2x_mcast_setup_e2
;
3914 mcast_obj
->enqueue_cmd
= bnx2x_mcast_enqueue_cmd
;
3915 mcast_obj
->hdl_restore
=
3916 bnx2x_mcast_handle_restore_cmd_e2
;
3917 mcast_obj
->check_pending
= bnx2x_mcast_check_pending
;
3918 /* TODO: There should be a proper HSI define for this number!!!
3920 mcast_obj
->max_cmd_len
= 16;
3921 mcast_obj
->wait_comp
= bnx2x_mcast_wait
;
3922 mcast_obj
->set_one_rule
= bnx2x_mcast_set_one_rule_e2
;
3923 mcast_obj
->validate
= bnx2x_mcast_validate_e2
;
3924 mcast_obj
->revert
= bnx2x_mcast_revert_e2
;
3925 mcast_obj
->get_registry_size
=
3926 bnx2x_mcast_get_registry_size_aprox
;
3927 mcast_obj
->set_registry_size
=
3928 bnx2x_mcast_set_registry_size_aprox
;
3932 /*************************** Credit handling **********************************/
3935 * atomic_add_ifless - add if the result is less than a given value.
3937 * @v: pointer of type atomic_t
3938 * @a: the amount to add to v...
3939 * @u: ...if (v + a) is less than u.
3941 * returns true if (v + a) was less than u, and false otherwise.
3944 static inline bool __atomic_add_ifless(atomic_t
*v
, int a
, int u
)
3950 if (unlikely(c
+ a
>= u
))
3953 old
= atomic_cmpxchg((v
), c
, c
+ a
);
3954 if (likely(old
== c
))
3963 * atomic_dec_ifmoe - dec if the result is more or equal than a given value.
3965 * @v: pointer of type atomic_t
3966 * @a: the amount to dec from v...
3967 * @u: ...if (v - a) is more or equal than u.
3969 * returns true if (v - a) was more or equal than u, and false
3972 static inline bool __atomic_dec_ifmoe(atomic_t
*v
, int a
, int u
)
3978 if (unlikely(c
- a
< u
))
3981 old
= atomic_cmpxchg((v
), c
, c
- a
);
3982 if (likely(old
== c
))
3990 static bool bnx2x_credit_pool_get(struct bnx2x_credit_pool_obj
*o
, int cnt
)
3995 rc
= __atomic_dec_ifmoe(&o
->credit
, cnt
, 0);
4001 static bool bnx2x_credit_pool_put(struct bnx2x_credit_pool_obj
*o
, int cnt
)
4007 /* Don't let to refill if credit + cnt > pool_sz */
4008 rc
= __atomic_add_ifless(&o
->credit
, cnt
, o
->pool_sz
+ 1);
4015 static int bnx2x_credit_pool_check(struct bnx2x_credit_pool_obj
*o
)
4020 cur_credit
= atomic_read(&o
->credit
);
4025 static bool bnx2x_credit_pool_always_true(struct bnx2x_credit_pool_obj
*o
,
4031 static bool bnx2x_credit_pool_get_entry(
4032 struct bnx2x_credit_pool_obj
*o
,
4039 /* Find "internal cam-offset" then add to base for this object... */
4040 for (vec
= 0; vec
< BNX2X_POOL_VEC_SIZE
; vec
++) {
4042 /* Skip the current vector if there are no free entries in it */
4043 if (!o
->pool_mirror
[vec
])
4046 /* If we've got here we are going to find a free entry */
4047 for (idx
= vec
* BIT_VEC64_ELEM_SZ
, i
= 0;
4048 i
< BIT_VEC64_ELEM_SZ
; idx
++, i
++)
4050 if (BIT_VEC64_TEST_BIT(o
->pool_mirror
, idx
)) {
4052 BIT_VEC64_CLEAR_BIT(o
->pool_mirror
, idx
);
4053 *offset
= o
->base_pool_offset
+ idx
;
4061 static bool bnx2x_credit_pool_put_entry(
4062 struct bnx2x_credit_pool_obj
*o
,
4065 if (offset
< o
->base_pool_offset
)
4068 offset
-= o
->base_pool_offset
;
4070 if (offset
>= o
->pool_sz
)
4073 /* Return the entry to the pool */
4074 BIT_VEC64_SET_BIT(o
->pool_mirror
, offset
);
4079 static bool bnx2x_credit_pool_put_entry_always_true(
4080 struct bnx2x_credit_pool_obj
*o
,
4086 static bool bnx2x_credit_pool_get_entry_always_true(
4087 struct bnx2x_credit_pool_obj
*o
,
4094 * bnx2x_init_credit_pool - initialize credit pool internals.
4097 * @base: Base entry in the CAM to use.
4098 * @credit: pool size.
4100 * If base is negative no CAM entries handling will be performed.
4101 * If credit is negative pool operations will always succeed (unlimited pool).
4104 void bnx2x_init_credit_pool(struct bnx2x_credit_pool_obj
*p
,
4105 int base
, int credit
)
4107 /* Zero the object first */
4108 memset(p
, 0, sizeof(*p
));
4110 /* Set the table to all 1s */
4111 memset(&p
->pool_mirror
, 0xff, sizeof(p
->pool_mirror
));
4113 /* Init a pool as full */
4114 atomic_set(&p
->credit
, credit
);
4116 /* The total poll size */
4117 p
->pool_sz
= credit
;
4119 p
->base_pool_offset
= base
;
4121 /* Commit the change */
4124 p
->check
= bnx2x_credit_pool_check
;
4126 /* if pool credit is negative - disable the checks */
4128 p
->put
= bnx2x_credit_pool_put
;
4129 p
->get
= bnx2x_credit_pool_get
;
4130 p
->put_entry
= bnx2x_credit_pool_put_entry
;
4131 p
->get_entry
= bnx2x_credit_pool_get_entry
;
4133 p
->put
= bnx2x_credit_pool_always_true
;
4134 p
->get
= bnx2x_credit_pool_always_true
;
4135 p
->put_entry
= bnx2x_credit_pool_put_entry_always_true
;
4136 p
->get_entry
= bnx2x_credit_pool_get_entry_always_true
;
4139 /* If base is negative - disable entries handling */
4141 p
->put_entry
= bnx2x_credit_pool_put_entry_always_true
;
4142 p
->get_entry
= bnx2x_credit_pool_get_entry_always_true
;
4146 void bnx2x_init_mac_credit_pool(struct bnx2x
*bp
,
4147 struct bnx2x_credit_pool_obj
*p
, u8 func_id
,
4150 /* TODO: this will be defined in consts as well... */
4151 #define BNX2X_CAM_SIZE_EMUL 5
4155 if (CHIP_IS_E1(bp
)) {
4156 /* In E1, Multicast is saved in cam... */
4157 if (!CHIP_REV_IS_SLOW(bp
))
4158 cam_sz
= (MAX_MAC_CREDIT_E1
/ 2) - BNX2X_MAX_MULTICAST
;
4160 cam_sz
= BNX2X_CAM_SIZE_EMUL
- BNX2X_MAX_EMUL_MULTI
;
4162 bnx2x_init_credit_pool(p
, func_id
* cam_sz
, cam_sz
);
4164 } else if (CHIP_IS_E1H(bp
)) {
4165 /* CAM credit is equaly divided between all active functions
4168 if ((func_num
> 0)) {
4169 if (!CHIP_REV_IS_SLOW(bp
))
4170 cam_sz
= (MAX_MAC_CREDIT_E1H
/ (2*func_num
));
4172 cam_sz
= BNX2X_CAM_SIZE_EMUL
;
4173 bnx2x_init_credit_pool(p
, func_id
* cam_sz
, cam_sz
);
4175 /* this should never happen! Block MAC operations. */
4176 bnx2x_init_credit_pool(p
, 0, 0);
4181 /* CAM credit is equaly divided between all active functions
4185 if (!CHIP_REV_IS_SLOW(bp
))
4186 cam_sz
= PF_MAC_CREDIT_E2(bp
, func_num
);
4188 cam_sz
= BNX2X_CAM_SIZE_EMUL
;
4190 /* No need for CAM entries handling for 57712 and
4193 bnx2x_init_credit_pool(p
, -1, cam_sz
);
4195 /* this should never happen! Block MAC operations. */
4196 bnx2x_init_credit_pool(p
, 0, 0);
4201 void bnx2x_init_vlan_credit_pool(struct bnx2x
*bp
,
4202 struct bnx2x_credit_pool_obj
*p
,
4206 if (CHIP_IS_E1x(bp
)) {
4207 /* There is no VLAN credit in HW on 57710 and 57711 only
4208 * MAC / MAC-VLAN can be set
4210 bnx2x_init_credit_pool(p
, 0, -1);
4212 /* CAM credit is equally divided between all active functions
4216 int credit
= PF_VLAN_CREDIT_E2(bp
, func_num
);
4218 bnx2x_init_credit_pool(p
, -1/*unused for E2*/, credit
);
4220 /* this should never happen! Block VLAN operations. */
4221 bnx2x_init_credit_pool(p
, 0, 0);
4225 /****************** RSS Configuration ******************/
4227 * bnx2x_debug_print_ind_table - prints the indirection table configuration.
4229 * @bp: driver handle
4230 * @p: pointer to rss configuration
4232 * Prints it when NETIF_MSG_IFUP debug level is configured.
4234 static inline void bnx2x_debug_print_ind_table(struct bnx2x
*bp
,
4235 struct bnx2x_config_rss_params
*p
)
4239 DP(BNX2X_MSG_SP
, "Setting indirection table to:\n");
4240 DP(BNX2X_MSG_SP
, "0x0000: ");
4241 for (i
= 0; i
< T_ETH_INDIRECTION_TABLE_SIZE
; i
++) {
4242 DP_CONT(BNX2X_MSG_SP
, "0x%02x ", p
->ind_table
[i
]);
4244 /* Print 4 bytes in a line */
4245 if ((i
+ 1 < T_ETH_INDIRECTION_TABLE_SIZE
) &&
4246 (((i
+ 1) & 0x3) == 0)) {
4247 DP_CONT(BNX2X_MSG_SP
, "\n");
4248 DP(BNX2X_MSG_SP
, "0x%04x: ", i
+ 1);
4252 DP_CONT(BNX2X_MSG_SP
, "\n");
4256 * bnx2x_setup_rss - configure RSS
4258 * @bp: device handle
4259 * @p: rss configuration
4261 * sends on UPDATE ramrod for that matter.
4263 static int bnx2x_setup_rss(struct bnx2x
*bp
,
4264 struct bnx2x_config_rss_params
*p
)
4266 struct bnx2x_rss_config_obj
*o
= p
->rss_obj
;
4267 struct bnx2x_raw_obj
*r
= &o
->raw
;
4268 struct eth_rss_update_ramrod_data
*data
=
4269 (struct eth_rss_update_ramrod_data
*)(r
->rdata
);
4274 memset(data
, 0, sizeof(*data
));
4276 DP(BNX2X_MSG_SP
, "Configuring RSS\n");
4278 /* Set an echo field */
4279 data
->echo
= cpu_to_le32((r
->cid
& BNX2X_SWCID_MASK
) |
4280 (r
->state
<< BNX2X_SWCID_SHIFT
));
4283 if (test_bit(BNX2X_RSS_MODE_DISABLED
, &p
->rss_flags
))
4284 rss_mode
= ETH_RSS_MODE_DISABLED
;
4285 else if (test_bit(BNX2X_RSS_MODE_REGULAR
, &p
->rss_flags
))
4286 rss_mode
= ETH_RSS_MODE_REGULAR
;
4288 data
->rss_mode
= rss_mode
;
4290 DP(BNX2X_MSG_SP
, "rss_mode=%d\n", rss_mode
);
4292 /* RSS capabilities */
4293 if (test_bit(BNX2X_RSS_IPV4
, &p
->rss_flags
))
4294 caps
|= ETH_RSS_UPDATE_RAMROD_DATA_IPV4_CAPABILITY
;
4296 if (test_bit(BNX2X_RSS_IPV4_TCP
, &p
->rss_flags
))
4297 caps
|= ETH_RSS_UPDATE_RAMROD_DATA_IPV4_TCP_CAPABILITY
;
4299 if (test_bit(BNX2X_RSS_IPV4_UDP
, &p
->rss_flags
))
4300 caps
|= ETH_RSS_UPDATE_RAMROD_DATA_IPV4_UDP_CAPABILITY
;
4302 if (test_bit(BNX2X_RSS_IPV6
, &p
->rss_flags
))
4303 caps
|= ETH_RSS_UPDATE_RAMROD_DATA_IPV6_CAPABILITY
;
4305 if (test_bit(BNX2X_RSS_IPV6_TCP
, &p
->rss_flags
))
4306 caps
|= ETH_RSS_UPDATE_RAMROD_DATA_IPV6_TCP_CAPABILITY
;
4308 if (test_bit(BNX2X_RSS_IPV6_UDP
, &p
->rss_flags
))
4309 caps
|= ETH_RSS_UPDATE_RAMROD_DATA_IPV6_UDP_CAPABILITY
;
4311 if (test_bit(BNX2X_RSS_IPV4_VXLAN
, &p
->rss_flags
))
4312 caps
|= ETH_RSS_UPDATE_RAMROD_DATA_IPV4_VXLAN_CAPABILITY
;
4314 if (test_bit(BNX2X_RSS_IPV6_VXLAN
, &p
->rss_flags
))
4315 caps
|= ETH_RSS_UPDATE_RAMROD_DATA_IPV6_VXLAN_CAPABILITY
;
4317 if (test_bit(BNX2X_RSS_TUNN_INNER_HDRS
, &p
->rss_flags
))
4318 caps
|= ETH_RSS_UPDATE_RAMROD_DATA_TUNN_INNER_HDRS_CAPABILITY
;
4321 if (test_bit(BNX2X_RSS_SET_SRCH
, &p
->rss_flags
)) {
4322 u8
*dst
= (u8
*)(data
->rss_key
) + sizeof(data
->rss_key
);
4323 const u8
*src
= (const u8
*)p
->rss_key
;
4326 /* Apparently, bnx2x reads this array in reverse order
4327 * We need to byte swap rss_key to comply with Toeplitz specs.
4329 for (i
= 0; i
< sizeof(data
->rss_key
); i
++)
4332 caps
|= ETH_RSS_UPDATE_RAMROD_DATA_UPDATE_RSS_KEY
;
4335 data
->capabilities
= cpu_to_le16(caps
);
4338 data
->rss_result_mask
= p
->rss_result_mask
;
4341 data
->rss_engine_id
= o
->engine_id
;
4343 DP(BNX2X_MSG_SP
, "rss_engine_id=%d\n", data
->rss_engine_id
);
4345 /* Indirection table */
4346 memcpy(data
->indirection_table
, p
->ind_table
,
4347 T_ETH_INDIRECTION_TABLE_SIZE
);
4349 /* Remember the last configuration */
4350 memcpy(o
->ind_table
, p
->ind_table
, T_ETH_INDIRECTION_TABLE_SIZE
);
4352 /* Print the indirection table */
4353 if (netif_msg_ifup(bp
))
4354 bnx2x_debug_print_ind_table(bp
, p
);
4356 /* No need for an explicit memory barrier here as long as we
4357 * ensure the ordering of writing to the SPQ element
4358 * and updating of the SPQ producer which involves a memory
4359 * read. If the memory read is removed we will have to put a
4360 * full memory barrier there (inside bnx2x_sp_post()).
4364 rc
= bnx2x_sp_post(bp
, RAMROD_CMD_ID_ETH_RSS_UPDATE
, r
->cid
,
4365 U64_HI(r
->rdata_mapping
),
4366 U64_LO(r
->rdata_mapping
),
4367 ETH_CONNECTION_TYPE
);
4375 void bnx2x_get_rss_ind_table(struct bnx2x_rss_config_obj
*rss_obj
,
4378 memcpy(ind_table
, rss_obj
->ind_table
, sizeof(rss_obj
->ind_table
));
4381 int bnx2x_config_rss(struct bnx2x
*bp
,
4382 struct bnx2x_config_rss_params
*p
)
4385 struct bnx2x_rss_config_obj
*o
= p
->rss_obj
;
4386 struct bnx2x_raw_obj
*r
= &o
->raw
;
4388 /* Do nothing if only driver cleanup was requested */
4389 if (test_bit(RAMROD_DRV_CLR_ONLY
, &p
->ramrod_flags
)) {
4390 DP(BNX2X_MSG_SP
, "Not configuring RSS ramrod_flags=%lx\n",
4397 rc
= o
->config_rss(bp
, p
);
4399 r
->clear_pending(r
);
4403 if (test_bit(RAMROD_COMP_WAIT
, &p
->ramrod_flags
))
4404 rc
= r
->wait_comp(bp
, r
);
4409 void bnx2x_init_rss_config_obj(struct bnx2x
*bp
,
4410 struct bnx2x_rss_config_obj
*rss_obj
,
4411 u8 cl_id
, u32 cid
, u8 func_id
, u8 engine_id
,
4412 void *rdata
, dma_addr_t rdata_mapping
,
4413 int state
, unsigned long *pstate
,
4414 bnx2x_obj_type type
)
4416 bnx2x_init_raw_obj(&rss_obj
->raw
, cl_id
, cid
, func_id
, rdata
,
4417 rdata_mapping
, state
, pstate
, type
);
4419 rss_obj
->engine_id
= engine_id
;
4420 rss_obj
->config_rss
= bnx2x_setup_rss
;
4423 /********************** Queue state object ***********************************/
4426 * bnx2x_queue_state_change - perform Queue state change transition
4428 * @bp: device handle
4429 * @params: parameters to perform the transition
4431 * returns 0 in case of successfully completed transition, negative error
4432 * code in case of failure, positive (EBUSY) value if there is a completion
4433 * to that is still pending (possible only if RAMROD_COMP_WAIT is
4434 * not set in params->ramrod_flags for asynchronous commands).
4437 int bnx2x_queue_state_change(struct bnx2x
*bp
,
4438 struct bnx2x_queue_state_params
*params
)
4440 struct bnx2x_queue_sp_obj
*o
= params
->q_obj
;
4441 int rc
, pending_bit
;
4442 unsigned long *pending
= &o
->pending
;
4444 /* Check that the requested transition is legal */
4445 rc
= o
->check_transition(bp
, o
, params
);
4447 BNX2X_ERR("check transition returned an error. rc %d\n", rc
);
4451 /* Set "pending" bit */
4452 DP(BNX2X_MSG_SP
, "pending bit was=%lx\n", o
->pending
);
4453 pending_bit
= o
->set_pending(o
, params
);
4454 DP(BNX2X_MSG_SP
, "pending bit now=%lx\n", o
->pending
);
4456 /* Don't send a command if only driver cleanup was requested */
4457 if (test_bit(RAMROD_DRV_CLR_ONLY
, ¶ms
->ramrod_flags
))
4458 o
->complete_cmd(bp
, o
, pending_bit
);
4461 rc
= o
->send_cmd(bp
, params
);
4463 o
->next_state
= BNX2X_Q_STATE_MAX
;
4464 clear_bit(pending_bit
, pending
);
4465 smp_mb__after_atomic();
4469 if (test_bit(RAMROD_COMP_WAIT
, ¶ms
->ramrod_flags
)) {
4470 rc
= o
->wait_comp(bp
, o
, pending_bit
);
4478 return !!test_bit(pending_bit
, pending
);
4481 static int bnx2x_queue_set_pending(struct bnx2x_queue_sp_obj
*obj
,
4482 struct bnx2x_queue_state_params
*params
)
4484 enum bnx2x_queue_cmd cmd
= params
->cmd
, bit
;
4486 /* ACTIVATE and DEACTIVATE commands are implemented on top of
4489 if ((cmd
== BNX2X_Q_CMD_ACTIVATE
) ||
4490 (cmd
== BNX2X_Q_CMD_DEACTIVATE
))
4491 bit
= BNX2X_Q_CMD_UPDATE
;
4495 set_bit(bit
, &obj
->pending
);
4499 static int bnx2x_queue_wait_comp(struct bnx2x
*bp
,
4500 struct bnx2x_queue_sp_obj
*o
,
4501 enum bnx2x_queue_cmd cmd
)
4503 return bnx2x_state_wait(bp
, cmd
, &o
->pending
);
4507 * bnx2x_queue_comp_cmd - complete the state change command.
4509 * @bp: device handle
4513 * Checks that the arrived completion is expected.
4515 static int bnx2x_queue_comp_cmd(struct bnx2x
*bp
,
4516 struct bnx2x_queue_sp_obj
*o
,
4517 enum bnx2x_queue_cmd cmd
)
4519 unsigned long cur_pending
= o
->pending
;
4521 if (!test_and_clear_bit(cmd
, &cur_pending
)) {
4522 BNX2X_ERR("Bad MC reply %d for queue %d in state %d pending 0x%lx, next_state %d\n",
4523 cmd
, o
->cids
[BNX2X_PRIMARY_CID_INDEX
],
4524 o
->state
, cur_pending
, o
->next_state
);
4528 if (o
->next_tx_only
>= o
->max_cos
)
4529 /* >= because tx only must always be smaller than cos since the
4530 * primary connection supports COS 0
4532 BNX2X_ERR("illegal value for next tx_only: %d. max cos was %d",
4533 o
->next_tx_only
, o
->max_cos
);
4536 "Completing command %d for queue %d, setting state to %d\n",
4537 cmd
, o
->cids
[BNX2X_PRIMARY_CID_INDEX
], o
->next_state
);
4539 if (o
->next_tx_only
) /* print num tx-only if any exist */
4540 DP(BNX2X_MSG_SP
, "primary cid %d: num tx-only cons %d\n",
4541 o
->cids
[BNX2X_PRIMARY_CID_INDEX
], o
->next_tx_only
);
4543 o
->state
= o
->next_state
;
4544 o
->num_tx_only
= o
->next_tx_only
;
4545 o
->next_state
= BNX2X_Q_STATE_MAX
;
4547 /* It's important that o->state and o->next_state are
4548 * updated before o->pending.
4552 clear_bit(cmd
, &o
->pending
);
4553 smp_mb__after_atomic();
4558 static void bnx2x_q_fill_setup_data_e2(struct bnx2x
*bp
,
4559 struct bnx2x_queue_state_params
*cmd_params
,
4560 struct client_init_ramrod_data
*data
)
4562 struct bnx2x_queue_setup_params
*params
= &cmd_params
->params
.setup
;
4566 /* IPv6 TPA supported for E2 and above only */
4567 data
->rx
.tpa_en
|= test_bit(BNX2X_Q_FLG_TPA_IPV6
, ¶ms
->flags
) *
4568 CLIENT_INIT_RX_DATA_TPA_EN_IPV6
;
4571 static void bnx2x_q_fill_init_general_data(struct bnx2x
*bp
,
4572 struct bnx2x_queue_sp_obj
*o
,
4573 struct bnx2x_general_setup_params
*params
,
4574 struct client_init_general_data
*gen_data
,
4575 unsigned long *flags
)
4577 gen_data
->client_id
= o
->cl_id
;
4579 if (test_bit(BNX2X_Q_FLG_STATS
, flags
)) {
4580 gen_data
->statistics_counter_id
=
4582 gen_data
->statistics_en_flg
= 1;
4583 gen_data
->statistics_zero_flg
=
4584 test_bit(BNX2X_Q_FLG_ZERO_STATS
, flags
);
4586 gen_data
->statistics_counter_id
=
4587 DISABLE_STATISTIC_COUNTER_ID_VALUE
;
4589 gen_data
->is_fcoe_flg
= test_bit(BNX2X_Q_FLG_FCOE
, flags
);
4590 gen_data
->activate_flg
= test_bit(BNX2X_Q_FLG_ACTIVE
, flags
);
4591 gen_data
->sp_client_id
= params
->spcl_id
;
4592 gen_data
->mtu
= cpu_to_le16(params
->mtu
);
4593 gen_data
->func_id
= o
->func_id
;
4595 gen_data
->cos
= params
->cos
;
4597 gen_data
->traffic_type
=
4598 test_bit(BNX2X_Q_FLG_FCOE
, flags
) ?
4599 LLFC_TRAFFIC_TYPE_FCOE
: LLFC_TRAFFIC_TYPE_NW
;
4601 gen_data
->fp_hsi_ver
= params
->fp_hsi
;
4603 DP(BNX2X_MSG_SP
, "flags: active %d, cos %d, stats en %d\n",
4604 gen_data
->activate_flg
, gen_data
->cos
, gen_data
->statistics_en_flg
);
4607 static void bnx2x_q_fill_init_tx_data(struct bnx2x_queue_sp_obj
*o
,
4608 struct bnx2x_txq_setup_params
*params
,
4609 struct client_init_tx_data
*tx_data
,
4610 unsigned long *flags
)
4612 tx_data
->enforce_security_flg
=
4613 test_bit(BNX2X_Q_FLG_TX_SEC
, flags
);
4614 tx_data
->default_vlan
=
4615 cpu_to_le16(params
->default_vlan
);
4616 tx_data
->default_vlan_flg
=
4617 test_bit(BNX2X_Q_FLG_DEF_VLAN
, flags
);
4618 tx_data
->tx_switching_flg
=
4619 test_bit(BNX2X_Q_FLG_TX_SWITCH
, flags
);
4620 tx_data
->anti_spoofing_flg
=
4621 test_bit(BNX2X_Q_FLG_ANTI_SPOOF
, flags
);
4622 tx_data
->force_default_pri_flg
=
4623 test_bit(BNX2X_Q_FLG_FORCE_DEFAULT_PRI
, flags
);
4624 tx_data
->refuse_outband_vlan_flg
=
4625 test_bit(BNX2X_Q_FLG_REFUSE_OUTBAND_VLAN
, flags
);
4626 tx_data
->tunnel_lso_inc_ip_id
=
4627 test_bit(BNX2X_Q_FLG_TUN_INC_INNER_IP_ID
, flags
);
4628 tx_data
->tunnel_non_lso_pcsum_location
=
4629 test_bit(BNX2X_Q_FLG_PCSUM_ON_PKT
, flags
) ? CSUM_ON_PKT
:
4632 tx_data
->tx_status_block_id
= params
->fw_sb_id
;
4633 tx_data
->tx_sb_index_number
= params
->sb_cq_index
;
4634 tx_data
->tss_leading_client_id
= params
->tss_leading_cl_id
;
4636 tx_data
->tx_bd_page_base
.lo
=
4637 cpu_to_le32(U64_LO(params
->dscr_map
));
4638 tx_data
->tx_bd_page_base
.hi
=
4639 cpu_to_le32(U64_HI(params
->dscr_map
));
4641 /* Don't configure any Tx switching mode during queue SETUP */
4645 static void bnx2x_q_fill_init_pause_data(struct bnx2x_queue_sp_obj
*o
,
4646 struct rxq_pause_params
*params
,
4647 struct client_init_rx_data
*rx_data
)
4649 /* flow control data */
4650 rx_data
->cqe_pause_thr_low
= cpu_to_le16(params
->rcq_th_lo
);
4651 rx_data
->cqe_pause_thr_high
= cpu_to_le16(params
->rcq_th_hi
);
4652 rx_data
->bd_pause_thr_low
= cpu_to_le16(params
->bd_th_lo
);
4653 rx_data
->bd_pause_thr_high
= cpu_to_le16(params
->bd_th_hi
);
4654 rx_data
->sge_pause_thr_low
= cpu_to_le16(params
->sge_th_lo
);
4655 rx_data
->sge_pause_thr_high
= cpu_to_le16(params
->sge_th_hi
);
4656 rx_data
->rx_cos_mask
= cpu_to_le16(params
->pri_map
);
4659 static void bnx2x_q_fill_init_rx_data(struct bnx2x_queue_sp_obj
*o
,
4660 struct bnx2x_rxq_setup_params
*params
,
4661 struct client_init_rx_data
*rx_data
,
4662 unsigned long *flags
)
4664 rx_data
->tpa_en
= test_bit(BNX2X_Q_FLG_TPA
, flags
) *
4665 CLIENT_INIT_RX_DATA_TPA_EN_IPV4
;
4666 rx_data
->tpa_en
|= test_bit(BNX2X_Q_FLG_TPA_GRO
, flags
) *
4667 CLIENT_INIT_RX_DATA_TPA_MODE
;
4668 rx_data
->vmqueue_mode_en_flg
= 0;
4670 rx_data
->cache_line_alignment_log_size
=
4671 params
->cache_line_log
;
4672 rx_data
->enable_dynamic_hc
=
4673 test_bit(BNX2X_Q_FLG_DHC
, flags
);
4674 rx_data
->max_sges_for_packet
= params
->max_sges_pkt
;
4675 rx_data
->client_qzone_id
= params
->cl_qzone_id
;
4676 rx_data
->max_agg_size
= cpu_to_le16(params
->tpa_agg_sz
);
4678 /* Always start in DROP_ALL mode */
4679 rx_data
->state
= cpu_to_le16(CLIENT_INIT_RX_DATA_UCAST_DROP_ALL
|
4680 CLIENT_INIT_RX_DATA_MCAST_DROP_ALL
);
4682 /* We don't set drop flags */
4683 rx_data
->drop_ip_cs_err_flg
= 0;
4684 rx_data
->drop_tcp_cs_err_flg
= 0;
4685 rx_data
->drop_ttl0_flg
= 0;
4686 rx_data
->drop_udp_cs_err_flg
= 0;
4687 rx_data
->inner_vlan_removal_enable_flg
=
4688 test_bit(BNX2X_Q_FLG_VLAN
, flags
);
4689 rx_data
->outer_vlan_removal_enable_flg
=
4690 test_bit(BNX2X_Q_FLG_OV
, flags
);
4691 rx_data
->status_block_id
= params
->fw_sb_id
;
4692 rx_data
->rx_sb_index_number
= params
->sb_cq_index
;
4693 rx_data
->max_tpa_queues
= params
->max_tpa_queues
;
4694 rx_data
->max_bytes_on_bd
= cpu_to_le16(params
->buf_sz
);
4695 rx_data
->sge_buff_size
= cpu_to_le16(params
->sge_buf_sz
);
4696 rx_data
->bd_page_base
.lo
=
4697 cpu_to_le32(U64_LO(params
->dscr_map
));
4698 rx_data
->bd_page_base
.hi
=
4699 cpu_to_le32(U64_HI(params
->dscr_map
));
4700 rx_data
->sge_page_base
.lo
=
4701 cpu_to_le32(U64_LO(params
->sge_map
));
4702 rx_data
->sge_page_base
.hi
=
4703 cpu_to_le32(U64_HI(params
->sge_map
));
4704 rx_data
->cqe_page_base
.lo
=
4705 cpu_to_le32(U64_LO(params
->rcq_map
));
4706 rx_data
->cqe_page_base
.hi
=
4707 cpu_to_le32(U64_HI(params
->rcq_map
));
4708 rx_data
->is_leading_rss
= test_bit(BNX2X_Q_FLG_LEADING_RSS
, flags
);
4710 if (test_bit(BNX2X_Q_FLG_MCAST
, flags
)) {
4711 rx_data
->approx_mcast_engine_id
= params
->mcast_engine_id
;
4712 rx_data
->is_approx_mcast
= 1;
4715 rx_data
->rss_engine_id
= params
->rss_engine_id
;
4717 /* silent vlan removal */
4718 rx_data
->silent_vlan_removal_flg
=
4719 test_bit(BNX2X_Q_FLG_SILENT_VLAN_REM
, flags
);
4720 rx_data
->silent_vlan_value
=
4721 cpu_to_le16(params
->silent_removal_value
);
4722 rx_data
->silent_vlan_mask
=
4723 cpu_to_le16(params
->silent_removal_mask
);
4726 /* initialize the general, tx and rx parts of a queue object */
4727 static void bnx2x_q_fill_setup_data_cmn(struct bnx2x
*bp
,
4728 struct bnx2x_queue_state_params
*cmd_params
,
4729 struct client_init_ramrod_data
*data
)
4731 bnx2x_q_fill_init_general_data(bp
, cmd_params
->q_obj
,
4732 &cmd_params
->params
.setup
.gen_params
,
4734 &cmd_params
->params
.setup
.flags
);
4736 bnx2x_q_fill_init_tx_data(cmd_params
->q_obj
,
4737 &cmd_params
->params
.setup
.txq_params
,
4739 &cmd_params
->params
.setup
.flags
);
4741 bnx2x_q_fill_init_rx_data(cmd_params
->q_obj
,
4742 &cmd_params
->params
.setup
.rxq_params
,
4744 &cmd_params
->params
.setup
.flags
);
4746 bnx2x_q_fill_init_pause_data(cmd_params
->q_obj
,
4747 &cmd_params
->params
.setup
.pause_params
,
4751 /* initialize the general and tx parts of a tx-only queue object */
4752 static void bnx2x_q_fill_setup_tx_only(struct bnx2x
*bp
,
4753 struct bnx2x_queue_state_params
*cmd_params
,
4754 struct tx_queue_init_ramrod_data
*data
)
4756 bnx2x_q_fill_init_general_data(bp
, cmd_params
->q_obj
,
4757 &cmd_params
->params
.tx_only
.gen_params
,
4759 &cmd_params
->params
.tx_only
.flags
);
4761 bnx2x_q_fill_init_tx_data(cmd_params
->q_obj
,
4762 &cmd_params
->params
.tx_only
.txq_params
,
4764 &cmd_params
->params
.tx_only
.flags
);
4766 DP(BNX2X_MSG_SP
, "cid %d, tx bd page lo %x hi %x",
4767 cmd_params
->q_obj
->cids
[0],
4768 data
->tx
.tx_bd_page_base
.lo
,
4769 data
->tx
.tx_bd_page_base
.hi
);
4773 * bnx2x_q_init - init HW/FW queue
4775 * @bp: device handle
4778 * HW/FW initial Queue configuration:
4780 * - CDU context validation
4783 static inline int bnx2x_q_init(struct bnx2x
*bp
,
4784 struct bnx2x_queue_state_params
*params
)
4786 struct bnx2x_queue_sp_obj
*o
= params
->q_obj
;
4787 struct bnx2x_queue_init_params
*init
= ¶ms
->params
.init
;
4791 /* Tx HC configuration */
4792 if (test_bit(BNX2X_Q_TYPE_HAS_TX
, &o
->type
) &&
4793 test_bit(BNX2X_Q_FLG_HC
, &init
->tx
.flags
)) {
4794 hc_usec
= init
->tx
.hc_rate
? 1000000 / init
->tx
.hc_rate
: 0;
4796 bnx2x_update_coalesce_sb_index(bp
, init
->tx
.fw_sb_id
,
4797 init
->tx
.sb_cq_index
,
4798 !test_bit(BNX2X_Q_FLG_HC_EN
, &init
->tx
.flags
),
4802 /* Rx HC configuration */
4803 if (test_bit(BNX2X_Q_TYPE_HAS_RX
, &o
->type
) &&
4804 test_bit(BNX2X_Q_FLG_HC
, &init
->rx
.flags
)) {
4805 hc_usec
= init
->rx
.hc_rate
? 1000000 / init
->rx
.hc_rate
: 0;
4807 bnx2x_update_coalesce_sb_index(bp
, init
->rx
.fw_sb_id
,
4808 init
->rx
.sb_cq_index
,
4809 !test_bit(BNX2X_Q_FLG_HC_EN
, &init
->rx
.flags
),
4813 /* Set CDU context validation values */
4814 for (cos
= 0; cos
< o
->max_cos
; cos
++) {
4815 DP(BNX2X_MSG_SP
, "setting context validation. cid %d, cos %d\n",
4817 DP(BNX2X_MSG_SP
, "context pointer %p\n", init
->cxts
[cos
]);
4818 bnx2x_set_ctx_validation(bp
, init
->cxts
[cos
], o
->cids
[cos
]);
4821 /* As no ramrod is sent, complete the command immediately */
4822 o
->complete_cmd(bp
, o
, BNX2X_Q_CMD_INIT
);
4830 static inline int bnx2x_q_send_setup_e1x(struct bnx2x
*bp
,
4831 struct bnx2x_queue_state_params
*params
)
4833 struct bnx2x_queue_sp_obj
*o
= params
->q_obj
;
4834 struct client_init_ramrod_data
*rdata
=
4835 (struct client_init_ramrod_data
*)o
->rdata
;
4836 dma_addr_t data_mapping
= o
->rdata_mapping
;
4837 int ramrod
= RAMROD_CMD_ID_ETH_CLIENT_SETUP
;
4839 /* Clear the ramrod data */
4840 memset(rdata
, 0, sizeof(*rdata
));
4842 /* Fill the ramrod data */
4843 bnx2x_q_fill_setup_data_cmn(bp
, params
, rdata
);
4845 /* No need for an explicit memory barrier here as long as we
4846 * ensure the ordering of writing to the SPQ element
4847 * and updating of the SPQ producer which involves a memory
4848 * read. If the memory read is removed we will have to put a
4849 * full memory barrier there (inside bnx2x_sp_post()).
4851 return bnx2x_sp_post(bp
, ramrod
, o
->cids
[BNX2X_PRIMARY_CID_INDEX
],
4852 U64_HI(data_mapping
),
4853 U64_LO(data_mapping
), ETH_CONNECTION_TYPE
);
4856 static inline int bnx2x_q_send_setup_e2(struct bnx2x
*bp
,
4857 struct bnx2x_queue_state_params
*params
)
4859 struct bnx2x_queue_sp_obj
*o
= params
->q_obj
;
4860 struct client_init_ramrod_data
*rdata
=
4861 (struct client_init_ramrod_data
*)o
->rdata
;
4862 dma_addr_t data_mapping
= o
->rdata_mapping
;
4863 int ramrod
= RAMROD_CMD_ID_ETH_CLIENT_SETUP
;
4865 /* Clear the ramrod data */
4866 memset(rdata
, 0, sizeof(*rdata
));
4868 /* Fill the ramrod data */
4869 bnx2x_q_fill_setup_data_cmn(bp
, params
, rdata
);
4870 bnx2x_q_fill_setup_data_e2(bp
, params
, rdata
);
4872 /* No need for an explicit memory barrier here as long as we
4873 * ensure the ordering of writing to the SPQ element
4874 * and updating of the SPQ producer which involves a memory
4875 * read. If the memory read is removed we will have to put a
4876 * full memory barrier there (inside bnx2x_sp_post()).
4878 return bnx2x_sp_post(bp
, ramrod
, o
->cids
[BNX2X_PRIMARY_CID_INDEX
],
4879 U64_HI(data_mapping
),
4880 U64_LO(data_mapping
), ETH_CONNECTION_TYPE
);
4883 static inline int bnx2x_q_send_setup_tx_only(struct bnx2x
*bp
,
4884 struct bnx2x_queue_state_params
*params
)
4886 struct bnx2x_queue_sp_obj
*o
= params
->q_obj
;
4887 struct tx_queue_init_ramrod_data
*rdata
=
4888 (struct tx_queue_init_ramrod_data
*)o
->rdata
;
4889 dma_addr_t data_mapping
= o
->rdata_mapping
;
4890 int ramrod
= RAMROD_CMD_ID_ETH_TX_QUEUE_SETUP
;
4891 struct bnx2x_queue_setup_tx_only_params
*tx_only_params
=
4892 ¶ms
->params
.tx_only
;
4893 u8 cid_index
= tx_only_params
->cid_index
;
4895 if (cid_index
>= o
->max_cos
) {
4896 BNX2X_ERR("queue[%d]: cid_index (%d) is out of range\n",
4897 o
->cl_id
, cid_index
);
4901 DP(BNX2X_MSG_SP
, "parameters received: cos: %d sp-id: %d\n",
4902 tx_only_params
->gen_params
.cos
,
4903 tx_only_params
->gen_params
.spcl_id
);
4905 /* Clear the ramrod data */
4906 memset(rdata
, 0, sizeof(*rdata
));
4908 /* Fill the ramrod data */
4909 bnx2x_q_fill_setup_tx_only(bp
, params
, rdata
);
4911 DP(BNX2X_MSG_SP
, "sending tx-only ramrod: cid %d, client-id %d, sp-client id %d, cos %d\n",
4912 o
->cids
[cid_index
], rdata
->general
.client_id
,
4913 rdata
->general
.sp_client_id
, rdata
->general
.cos
);
4915 /* No need for an explicit memory barrier here as long as we
4916 * ensure the ordering of writing to the SPQ element
4917 * and updating of the SPQ producer which involves a memory
4918 * read. If the memory read is removed we will have to put a
4919 * full memory barrier there (inside bnx2x_sp_post()).
4921 return bnx2x_sp_post(bp
, ramrod
, o
->cids
[cid_index
],
4922 U64_HI(data_mapping
),
4923 U64_LO(data_mapping
), ETH_CONNECTION_TYPE
);
4926 static void bnx2x_q_fill_update_data(struct bnx2x
*bp
,
4927 struct bnx2x_queue_sp_obj
*obj
,
4928 struct bnx2x_queue_update_params
*params
,
4929 struct client_update_ramrod_data
*data
)
4931 /* Client ID of the client to update */
4932 data
->client_id
= obj
->cl_id
;
4934 /* Function ID of the client to update */
4935 data
->func_id
= obj
->func_id
;
4937 /* Default VLAN value */
4938 data
->default_vlan
= cpu_to_le16(params
->def_vlan
);
4940 /* Inner VLAN stripping */
4941 data
->inner_vlan_removal_enable_flg
=
4942 test_bit(BNX2X_Q_UPDATE_IN_VLAN_REM
, ¶ms
->update_flags
);
4943 data
->inner_vlan_removal_change_flg
=
4944 test_bit(BNX2X_Q_UPDATE_IN_VLAN_REM_CHNG
,
4945 ¶ms
->update_flags
);
4947 /* Outer VLAN stripping */
4948 data
->outer_vlan_removal_enable_flg
=
4949 test_bit(BNX2X_Q_UPDATE_OUT_VLAN_REM
, ¶ms
->update_flags
);
4950 data
->outer_vlan_removal_change_flg
=
4951 test_bit(BNX2X_Q_UPDATE_OUT_VLAN_REM_CHNG
,
4952 ¶ms
->update_flags
);
4954 /* Drop packets that have source MAC that doesn't belong to this
4957 data
->anti_spoofing_enable_flg
=
4958 test_bit(BNX2X_Q_UPDATE_ANTI_SPOOF
, ¶ms
->update_flags
);
4959 data
->anti_spoofing_change_flg
=
4960 test_bit(BNX2X_Q_UPDATE_ANTI_SPOOF_CHNG
, ¶ms
->update_flags
);
4962 /* Activate/Deactivate */
4963 data
->activate_flg
=
4964 test_bit(BNX2X_Q_UPDATE_ACTIVATE
, ¶ms
->update_flags
);
4965 data
->activate_change_flg
=
4966 test_bit(BNX2X_Q_UPDATE_ACTIVATE_CHNG
, ¶ms
->update_flags
);
4968 /* Enable default VLAN */
4969 data
->default_vlan_enable_flg
=
4970 test_bit(BNX2X_Q_UPDATE_DEF_VLAN_EN
, ¶ms
->update_flags
);
4971 data
->default_vlan_change_flg
=
4972 test_bit(BNX2X_Q_UPDATE_DEF_VLAN_EN_CHNG
,
4973 ¶ms
->update_flags
);
4975 /* silent vlan removal */
4976 data
->silent_vlan_change_flg
=
4977 test_bit(BNX2X_Q_UPDATE_SILENT_VLAN_REM_CHNG
,
4978 ¶ms
->update_flags
);
4979 data
->silent_vlan_removal_flg
=
4980 test_bit(BNX2X_Q_UPDATE_SILENT_VLAN_REM
, ¶ms
->update_flags
);
4981 data
->silent_vlan_value
= cpu_to_le16(params
->silent_removal_value
);
4982 data
->silent_vlan_mask
= cpu_to_le16(params
->silent_removal_mask
);
4985 data
->tx_switching_flg
=
4986 test_bit(BNX2X_Q_UPDATE_TX_SWITCHING
, ¶ms
->update_flags
);
4987 data
->tx_switching_change_flg
=
4988 test_bit(BNX2X_Q_UPDATE_TX_SWITCHING_CHNG
,
4989 ¶ms
->update_flags
);
4992 data
->handle_ptp_pkts_flg
=
4993 test_bit(BNX2X_Q_UPDATE_PTP_PKTS
, ¶ms
->update_flags
);
4994 data
->handle_ptp_pkts_change_flg
=
4995 test_bit(BNX2X_Q_UPDATE_PTP_PKTS_CHNG
, ¶ms
->update_flags
);
4998 static inline int bnx2x_q_send_update(struct bnx2x
*bp
,
4999 struct bnx2x_queue_state_params
*params
)
5001 struct bnx2x_queue_sp_obj
*o
= params
->q_obj
;
5002 struct client_update_ramrod_data
*rdata
=
5003 (struct client_update_ramrod_data
*)o
->rdata
;
5004 dma_addr_t data_mapping
= o
->rdata_mapping
;
5005 struct bnx2x_queue_update_params
*update_params
=
5006 ¶ms
->params
.update
;
5007 u8 cid_index
= update_params
->cid_index
;
5009 if (cid_index
>= o
->max_cos
) {
5010 BNX2X_ERR("queue[%d]: cid_index (%d) is out of range\n",
5011 o
->cl_id
, cid_index
);
5015 /* Clear the ramrod data */
5016 memset(rdata
, 0, sizeof(*rdata
));
5018 /* Fill the ramrod data */
5019 bnx2x_q_fill_update_data(bp
, o
, update_params
, rdata
);
5021 /* No need for an explicit memory barrier here as long as we
5022 * ensure the ordering of writing to the SPQ element
5023 * and updating of the SPQ producer which involves a memory
5024 * read. If the memory read is removed we will have to put a
5025 * full memory barrier there (inside bnx2x_sp_post()).
5027 return bnx2x_sp_post(bp
, RAMROD_CMD_ID_ETH_CLIENT_UPDATE
,
5028 o
->cids
[cid_index
], U64_HI(data_mapping
),
5029 U64_LO(data_mapping
), ETH_CONNECTION_TYPE
);
5033 * bnx2x_q_send_deactivate - send DEACTIVATE command
5035 * @bp: device handle
5038 * implemented using the UPDATE command.
5040 static inline int bnx2x_q_send_deactivate(struct bnx2x
*bp
,
5041 struct bnx2x_queue_state_params
*params
)
5043 struct bnx2x_queue_update_params
*update
= ¶ms
->params
.update
;
5045 memset(update
, 0, sizeof(*update
));
5047 __set_bit(BNX2X_Q_UPDATE_ACTIVATE_CHNG
, &update
->update_flags
);
5049 return bnx2x_q_send_update(bp
, params
);
5053 * bnx2x_q_send_activate - send ACTIVATE command
5055 * @bp: device handle
5058 * implemented using the UPDATE command.
5060 static inline int bnx2x_q_send_activate(struct bnx2x
*bp
,
5061 struct bnx2x_queue_state_params
*params
)
5063 struct bnx2x_queue_update_params
*update
= ¶ms
->params
.update
;
5065 memset(update
, 0, sizeof(*update
));
5067 __set_bit(BNX2X_Q_UPDATE_ACTIVATE
, &update
->update_flags
);
5068 __set_bit(BNX2X_Q_UPDATE_ACTIVATE_CHNG
, &update
->update_flags
);
5070 return bnx2x_q_send_update(bp
, params
);
5073 static void bnx2x_q_fill_update_tpa_data(struct bnx2x
*bp
,
5074 struct bnx2x_queue_sp_obj
*obj
,
5075 struct bnx2x_queue_update_tpa_params
*params
,
5076 struct tpa_update_ramrod_data
*data
)
5078 data
->client_id
= obj
->cl_id
;
5079 data
->complete_on_both_clients
= params
->complete_on_both_clients
;
5080 data
->dont_verify_rings_pause_thr_flg
=
5081 params
->dont_verify_thr
;
5082 data
->max_agg_size
= cpu_to_le16(params
->max_agg_sz
);
5083 data
->max_sges_for_packet
= params
->max_sges_pkt
;
5084 data
->max_tpa_queues
= params
->max_tpa_queues
;
5085 data
->sge_buff_size
= cpu_to_le16(params
->sge_buff_sz
);
5086 data
->sge_page_base_hi
= cpu_to_le32(U64_HI(params
->sge_map
));
5087 data
->sge_page_base_lo
= cpu_to_le32(U64_LO(params
->sge_map
));
5088 data
->sge_pause_thr_high
= cpu_to_le16(params
->sge_pause_thr_high
);
5089 data
->sge_pause_thr_low
= cpu_to_le16(params
->sge_pause_thr_low
);
5090 data
->tpa_mode
= params
->tpa_mode
;
5091 data
->update_ipv4
= params
->update_ipv4
;
5092 data
->update_ipv6
= params
->update_ipv6
;
5095 static inline int bnx2x_q_send_update_tpa(struct bnx2x
*bp
,
5096 struct bnx2x_queue_state_params
*params
)
5098 struct bnx2x_queue_sp_obj
*o
= params
->q_obj
;
5099 struct tpa_update_ramrod_data
*rdata
=
5100 (struct tpa_update_ramrod_data
*)o
->rdata
;
5101 dma_addr_t data_mapping
= o
->rdata_mapping
;
5102 struct bnx2x_queue_update_tpa_params
*update_tpa_params
=
5103 ¶ms
->params
.update_tpa
;
5106 /* Clear the ramrod data */
5107 memset(rdata
, 0, sizeof(*rdata
));
5109 /* Fill the ramrod data */
5110 bnx2x_q_fill_update_tpa_data(bp
, o
, update_tpa_params
, rdata
);
5112 /* Add the function id inside the type, so that sp post function
5113 * doesn't automatically add the PF func-id, this is required
5114 * for operations done by PFs on behalf of their VFs
5116 type
= ETH_CONNECTION_TYPE
|
5117 ((o
->func_id
) << SPE_HDR_FUNCTION_ID_SHIFT
);
5119 /* No need for an explicit memory barrier here as long as we
5120 * ensure the ordering of writing to the SPQ element
5121 * and updating of the SPQ producer which involves a memory
5122 * read. If the memory read is removed we will have to put a
5123 * full memory barrier there (inside bnx2x_sp_post()).
5125 return bnx2x_sp_post(bp
, RAMROD_CMD_ID_ETH_TPA_UPDATE
,
5126 o
->cids
[BNX2X_PRIMARY_CID_INDEX
],
5127 U64_HI(data_mapping
),
5128 U64_LO(data_mapping
), type
);
5131 static inline int bnx2x_q_send_halt(struct bnx2x
*bp
,
5132 struct bnx2x_queue_state_params
*params
)
5134 struct bnx2x_queue_sp_obj
*o
= params
->q_obj
;
5136 return bnx2x_sp_post(bp
, RAMROD_CMD_ID_ETH_HALT
,
5137 o
->cids
[BNX2X_PRIMARY_CID_INDEX
], 0, o
->cl_id
,
5138 ETH_CONNECTION_TYPE
);
5141 static inline int bnx2x_q_send_cfc_del(struct bnx2x
*bp
,
5142 struct bnx2x_queue_state_params
*params
)
5144 struct bnx2x_queue_sp_obj
*o
= params
->q_obj
;
5145 u8 cid_idx
= params
->params
.cfc_del
.cid_index
;
5147 if (cid_idx
>= o
->max_cos
) {
5148 BNX2X_ERR("queue[%d]: cid_index (%d) is out of range\n",
5153 return bnx2x_sp_post(bp
, RAMROD_CMD_ID_COMMON_CFC_DEL
,
5154 o
->cids
[cid_idx
], 0, 0, NONE_CONNECTION_TYPE
);
5157 static inline int bnx2x_q_send_terminate(struct bnx2x
*bp
,
5158 struct bnx2x_queue_state_params
*params
)
5160 struct bnx2x_queue_sp_obj
*o
= params
->q_obj
;
5161 u8 cid_index
= params
->params
.terminate
.cid_index
;
5163 if (cid_index
>= o
->max_cos
) {
5164 BNX2X_ERR("queue[%d]: cid_index (%d) is out of range\n",
5165 o
->cl_id
, cid_index
);
5169 return bnx2x_sp_post(bp
, RAMROD_CMD_ID_ETH_TERMINATE
,
5170 o
->cids
[cid_index
], 0, 0, ETH_CONNECTION_TYPE
);
5173 static inline int bnx2x_q_send_empty(struct bnx2x
*bp
,
5174 struct bnx2x_queue_state_params
*params
)
5176 struct bnx2x_queue_sp_obj
*o
= params
->q_obj
;
5178 return bnx2x_sp_post(bp
, RAMROD_CMD_ID_ETH_EMPTY
,
5179 o
->cids
[BNX2X_PRIMARY_CID_INDEX
], 0, 0,
5180 ETH_CONNECTION_TYPE
);
5183 static inline int bnx2x_queue_send_cmd_cmn(struct bnx2x
*bp
,
5184 struct bnx2x_queue_state_params
*params
)
5186 switch (params
->cmd
) {
5187 case BNX2X_Q_CMD_INIT
:
5188 return bnx2x_q_init(bp
, params
);
5189 case BNX2X_Q_CMD_SETUP_TX_ONLY
:
5190 return bnx2x_q_send_setup_tx_only(bp
, params
);
5191 case BNX2X_Q_CMD_DEACTIVATE
:
5192 return bnx2x_q_send_deactivate(bp
, params
);
5193 case BNX2X_Q_CMD_ACTIVATE
:
5194 return bnx2x_q_send_activate(bp
, params
);
5195 case BNX2X_Q_CMD_UPDATE
:
5196 return bnx2x_q_send_update(bp
, params
);
5197 case BNX2X_Q_CMD_UPDATE_TPA
:
5198 return bnx2x_q_send_update_tpa(bp
, params
);
5199 case BNX2X_Q_CMD_HALT
:
5200 return bnx2x_q_send_halt(bp
, params
);
5201 case BNX2X_Q_CMD_CFC_DEL
:
5202 return bnx2x_q_send_cfc_del(bp
, params
);
5203 case BNX2X_Q_CMD_TERMINATE
:
5204 return bnx2x_q_send_terminate(bp
, params
);
5205 case BNX2X_Q_CMD_EMPTY
:
5206 return bnx2x_q_send_empty(bp
, params
);
5208 BNX2X_ERR("Unknown command: %d\n", params
->cmd
);
5213 static int bnx2x_queue_send_cmd_e1x(struct bnx2x
*bp
,
5214 struct bnx2x_queue_state_params
*params
)
5216 switch (params
->cmd
) {
5217 case BNX2X_Q_CMD_SETUP
:
5218 return bnx2x_q_send_setup_e1x(bp
, params
);
5219 case BNX2X_Q_CMD_INIT
:
5220 case BNX2X_Q_CMD_SETUP_TX_ONLY
:
5221 case BNX2X_Q_CMD_DEACTIVATE
:
5222 case BNX2X_Q_CMD_ACTIVATE
:
5223 case BNX2X_Q_CMD_UPDATE
:
5224 case BNX2X_Q_CMD_UPDATE_TPA
:
5225 case BNX2X_Q_CMD_HALT
:
5226 case BNX2X_Q_CMD_CFC_DEL
:
5227 case BNX2X_Q_CMD_TERMINATE
:
5228 case BNX2X_Q_CMD_EMPTY
:
5229 return bnx2x_queue_send_cmd_cmn(bp
, params
);
5231 BNX2X_ERR("Unknown command: %d\n", params
->cmd
);
5236 static int bnx2x_queue_send_cmd_e2(struct bnx2x
*bp
,
5237 struct bnx2x_queue_state_params
*params
)
5239 switch (params
->cmd
) {
5240 case BNX2X_Q_CMD_SETUP
:
5241 return bnx2x_q_send_setup_e2(bp
, params
);
5242 case BNX2X_Q_CMD_INIT
:
5243 case BNX2X_Q_CMD_SETUP_TX_ONLY
:
5244 case BNX2X_Q_CMD_DEACTIVATE
:
5245 case BNX2X_Q_CMD_ACTIVATE
:
5246 case BNX2X_Q_CMD_UPDATE
:
5247 case BNX2X_Q_CMD_UPDATE_TPA
:
5248 case BNX2X_Q_CMD_HALT
:
5249 case BNX2X_Q_CMD_CFC_DEL
:
5250 case BNX2X_Q_CMD_TERMINATE
:
5251 case BNX2X_Q_CMD_EMPTY
:
5252 return bnx2x_queue_send_cmd_cmn(bp
, params
);
5254 BNX2X_ERR("Unknown command: %d\n", params
->cmd
);
5260 * bnx2x_queue_chk_transition - check state machine of a regular Queue
5262 * @bp: device handle
5267 * It both checks if the requested command is legal in a current
5268 * state and, if it's legal, sets a `next_state' in the object
5269 * that will be used in the completion flow to set the `state'
5272 * returns 0 if a requested command is a legal transition,
5273 * -EINVAL otherwise.
5275 static int bnx2x_queue_chk_transition(struct bnx2x
*bp
,
5276 struct bnx2x_queue_sp_obj
*o
,
5277 struct bnx2x_queue_state_params
*params
)
5279 enum bnx2x_q_state state
= o
->state
, next_state
= BNX2X_Q_STATE_MAX
;
5280 enum bnx2x_queue_cmd cmd
= params
->cmd
;
5281 struct bnx2x_queue_update_params
*update_params
=
5282 ¶ms
->params
.update
;
5283 u8 next_tx_only
= o
->num_tx_only
;
5285 /* Forget all pending for completion commands if a driver only state
5286 * transition has been requested.
5288 if (test_bit(RAMROD_DRV_CLR_ONLY
, ¶ms
->ramrod_flags
)) {
5290 o
->next_state
= BNX2X_Q_STATE_MAX
;
5293 /* Don't allow a next state transition if we are in the middle of
5297 BNX2X_ERR("Blocking transition since pending was %lx\n",
5303 case BNX2X_Q_STATE_RESET
:
5304 if (cmd
== BNX2X_Q_CMD_INIT
)
5305 next_state
= BNX2X_Q_STATE_INITIALIZED
;
5308 case BNX2X_Q_STATE_INITIALIZED
:
5309 if (cmd
== BNX2X_Q_CMD_SETUP
) {
5310 if (test_bit(BNX2X_Q_FLG_ACTIVE
,
5311 ¶ms
->params
.setup
.flags
))
5312 next_state
= BNX2X_Q_STATE_ACTIVE
;
5314 next_state
= BNX2X_Q_STATE_INACTIVE
;
5318 case BNX2X_Q_STATE_ACTIVE
:
5319 if (cmd
== BNX2X_Q_CMD_DEACTIVATE
)
5320 next_state
= BNX2X_Q_STATE_INACTIVE
;
5322 else if ((cmd
== BNX2X_Q_CMD_EMPTY
) ||
5323 (cmd
== BNX2X_Q_CMD_UPDATE_TPA
))
5324 next_state
= BNX2X_Q_STATE_ACTIVE
;
5326 else if (cmd
== BNX2X_Q_CMD_SETUP_TX_ONLY
) {
5327 next_state
= BNX2X_Q_STATE_MULTI_COS
;
5331 else if (cmd
== BNX2X_Q_CMD_HALT
)
5332 next_state
= BNX2X_Q_STATE_STOPPED
;
5334 else if (cmd
== BNX2X_Q_CMD_UPDATE
) {
5335 /* If "active" state change is requested, update the
5336 * state accordingly.
5338 if (test_bit(BNX2X_Q_UPDATE_ACTIVATE_CHNG
,
5339 &update_params
->update_flags
) &&
5340 !test_bit(BNX2X_Q_UPDATE_ACTIVATE
,
5341 &update_params
->update_flags
))
5342 next_state
= BNX2X_Q_STATE_INACTIVE
;
5344 next_state
= BNX2X_Q_STATE_ACTIVE
;
5348 case BNX2X_Q_STATE_MULTI_COS
:
5349 if (cmd
== BNX2X_Q_CMD_TERMINATE
)
5350 next_state
= BNX2X_Q_STATE_MCOS_TERMINATED
;
5352 else if (cmd
== BNX2X_Q_CMD_SETUP_TX_ONLY
) {
5353 next_state
= BNX2X_Q_STATE_MULTI_COS
;
5354 next_tx_only
= o
->num_tx_only
+ 1;
5357 else if ((cmd
== BNX2X_Q_CMD_EMPTY
) ||
5358 (cmd
== BNX2X_Q_CMD_UPDATE_TPA
))
5359 next_state
= BNX2X_Q_STATE_MULTI_COS
;
5361 else if (cmd
== BNX2X_Q_CMD_UPDATE
) {
5362 /* If "active" state change is requested, update the
5363 * state accordingly.
5365 if (test_bit(BNX2X_Q_UPDATE_ACTIVATE_CHNG
,
5366 &update_params
->update_flags
) &&
5367 !test_bit(BNX2X_Q_UPDATE_ACTIVATE
,
5368 &update_params
->update_flags
))
5369 next_state
= BNX2X_Q_STATE_INACTIVE
;
5371 next_state
= BNX2X_Q_STATE_MULTI_COS
;
5375 case BNX2X_Q_STATE_MCOS_TERMINATED
:
5376 if (cmd
== BNX2X_Q_CMD_CFC_DEL
) {
5377 next_tx_only
= o
->num_tx_only
- 1;
5378 if (next_tx_only
== 0)
5379 next_state
= BNX2X_Q_STATE_ACTIVE
;
5381 next_state
= BNX2X_Q_STATE_MULTI_COS
;
5385 case BNX2X_Q_STATE_INACTIVE
:
5386 if (cmd
== BNX2X_Q_CMD_ACTIVATE
)
5387 next_state
= BNX2X_Q_STATE_ACTIVE
;
5389 else if ((cmd
== BNX2X_Q_CMD_EMPTY
) ||
5390 (cmd
== BNX2X_Q_CMD_UPDATE_TPA
))
5391 next_state
= BNX2X_Q_STATE_INACTIVE
;
5393 else if (cmd
== BNX2X_Q_CMD_HALT
)
5394 next_state
= BNX2X_Q_STATE_STOPPED
;
5396 else if (cmd
== BNX2X_Q_CMD_UPDATE
) {
5397 /* If "active" state change is requested, update the
5398 * state accordingly.
5400 if (test_bit(BNX2X_Q_UPDATE_ACTIVATE_CHNG
,
5401 &update_params
->update_flags
) &&
5402 test_bit(BNX2X_Q_UPDATE_ACTIVATE
,
5403 &update_params
->update_flags
)){
5404 if (o
->num_tx_only
== 0)
5405 next_state
= BNX2X_Q_STATE_ACTIVE
;
5406 else /* tx only queues exist for this queue */
5407 next_state
= BNX2X_Q_STATE_MULTI_COS
;
5409 next_state
= BNX2X_Q_STATE_INACTIVE
;
5413 case BNX2X_Q_STATE_STOPPED
:
5414 if (cmd
== BNX2X_Q_CMD_TERMINATE
)
5415 next_state
= BNX2X_Q_STATE_TERMINATED
;
5418 case BNX2X_Q_STATE_TERMINATED
:
5419 if (cmd
== BNX2X_Q_CMD_CFC_DEL
)
5420 next_state
= BNX2X_Q_STATE_RESET
;
5424 BNX2X_ERR("Illegal state: %d\n", state
);
5427 /* Transition is assured */
5428 if (next_state
!= BNX2X_Q_STATE_MAX
) {
5429 DP(BNX2X_MSG_SP
, "Good state transition: %d(%d)->%d\n",
5430 state
, cmd
, next_state
);
5431 o
->next_state
= next_state
;
5432 o
->next_tx_only
= next_tx_only
;
5436 DP(BNX2X_MSG_SP
, "Bad state transition request: %d %d\n", state
, cmd
);
5441 void bnx2x_init_queue_obj(struct bnx2x
*bp
,
5442 struct bnx2x_queue_sp_obj
*obj
,
5443 u8 cl_id
, u32
*cids
, u8 cid_cnt
, u8 func_id
,
5445 dma_addr_t rdata_mapping
, unsigned long type
)
5447 memset(obj
, 0, sizeof(*obj
));
5449 /* We support only BNX2X_MULTI_TX_COS Tx CoS at the moment */
5450 BUG_ON(BNX2X_MULTI_TX_COS
< cid_cnt
);
5452 memcpy(obj
->cids
, cids
, sizeof(obj
->cids
[0]) * cid_cnt
);
5453 obj
->max_cos
= cid_cnt
;
5455 obj
->func_id
= func_id
;
5457 obj
->rdata_mapping
= rdata_mapping
;
5459 obj
->next_state
= BNX2X_Q_STATE_MAX
;
5461 if (CHIP_IS_E1x(bp
))
5462 obj
->send_cmd
= bnx2x_queue_send_cmd_e1x
;
5464 obj
->send_cmd
= bnx2x_queue_send_cmd_e2
;
5466 obj
->check_transition
= bnx2x_queue_chk_transition
;
5468 obj
->complete_cmd
= bnx2x_queue_comp_cmd
;
5469 obj
->wait_comp
= bnx2x_queue_wait_comp
;
5470 obj
->set_pending
= bnx2x_queue_set_pending
;
5473 /* return a queue object's logical state*/
5474 int bnx2x_get_q_logical_state(struct bnx2x
*bp
,
5475 struct bnx2x_queue_sp_obj
*obj
)
5477 switch (obj
->state
) {
5478 case BNX2X_Q_STATE_ACTIVE
:
5479 case BNX2X_Q_STATE_MULTI_COS
:
5480 return BNX2X_Q_LOGICAL_STATE_ACTIVE
;
5481 case BNX2X_Q_STATE_RESET
:
5482 case BNX2X_Q_STATE_INITIALIZED
:
5483 case BNX2X_Q_STATE_MCOS_TERMINATED
:
5484 case BNX2X_Q_STATE_INACTIVE
:
5485 case BNX2X_Q_STATE_STOPPED
:
5486 case BNX2X_Q_STATE_TERMINATED
:
5487 case BNX2X_Q_STATE_FLRED
:
5488 return BNX2X_Q_LOGICAL_STATE_STOPPED
;
5494 /********************** Function state object *********************************/
5495 enum bnx2x_func_state
bnx2x_func_get_state(struct bnx2x
*bp
,
5496 struct bnx2x_func_sp_obj
*o
)
5498 /* in the middle of transaction - return INVALID state */
5500 return BNX2X_F_STATE_MAX
;
5502 /* unsure the order of reading of o->pending and o->state
5503 * o->pending should be read first
5510 static int bnx2x_func_wait_comp(struct bnx2x
*bp
,
5511 struct bnx2x_func_sp_obj
*o
,
5512 enum bnx2x_func_cmd cmd
)
5514 return bnx2x_state_wait(bp
, cmd
, &o
->pending
);
5518 * bnx2x_func_state_change_comp - complete the state machine transition
5520 * @bp: device handle
5524 * Called on state change transition. Completes the state
5525 * machine transition only - no HW interaction.
5527 static inline int bnx2x_func_state_change_comp(struct bnx2x
*bp
,
5528 struct bnx2x_func_sp_obj
*o
,
5529 enum bnx2x_func_cmd cmd
)
5531 unsigned long cur_pending
= o
->pending
;
5533 if (!test_and_clear_bit(cmd
, &cur_pending
)) {
5534 BNX2X_ERR("Bad MC reply %d for func %d in state %d pending 0x%lx, next_state %d\n",
5535 cmd
, BP_FUNC(bp
), o
->state
,
5536 cur_pending
, o
->next_state
);
5541 "Completing command %d for func %d, setting state to %d\n",
5542 cmd
, BP_FUNC(bp
), o
->next_state
);
5544 o
->state
= o
->next_state
;
5545 o
->next_state
= BNX2X_F_STATE_MAX
;
5547 /* It's important that o->state and o->next_state are
5548 * updated before o->pending.
5552 clear_bit(cmd
, &o
->pending
);
5553 smp_mb__after_atomic();
5559 * bnx2x_func_comp_cmd - complete the state change command
5561 * @bp: device handle
5565 * Checks that the arrived completion is expected.
5567 static int bnx2x_func_comp_cmd(struct bnx2x
*bp
,
5568 struct bnx2x_func_sp_obj
*o
,
5569 enum bnx2x_func_cmd cmd
)
5571 /* Complete the state machine part first, check if it's a
5574 int rc
= bnx2x_func_state_change_comp(bp
, o
, cmd
);
5579 * bnx2x_func_chk_transition - perform function state machine transition
5581 * @bp: device handle
5585 * It both checks if the requested command is legal in a current
5586 * state and, if it's legal, sets a `next_state' in the object
5587 * that will be used in the completion flow to set the `state'
5590 * returns 0 if a requested command is a legal transition,
5591 * -EINVAL otherwise.
5593 static int bnx2x_func_chk_transition(struct bnx2x
*bp
,
5594 struct bnx2x_func_sp_obj
*o
,
5595 struct bnx2x_func_state_params
*params
)
5597 enum bnx2x_func_state state
= o
->state
, next_state
= BNX2X_F_STATE_MAX
;
5598 enum bnx2x_func_cmd cmd
= params
->cmd
;
5600 /* Forget all pending for completion commands if a driver only state
5601 * transition has been requested.
5603 if (test_bit(RAMROD_DRV_CLR_ONLY
, ¶ms
->ramrod_flags
)) {
5605 o
->next_state
= BNX2X_F_STATE_MAX
;
5608 /* Don't allow a next state transition if we are in the middle of
5615 case BNX2X_F_STATE_RESET
:
5616 if (cmd
== BNX2X_F_CMD_HW_INIT
)
5617 next_state
= BNX2X_F_STATE_INITIALIZED
;
5620 case BNX2X_F_STATE_INITIALIZED
:
5621 if (cmd
== BNX2X_F_CMD_START
)
5622 next_state
= BNX2X_F_STATE_STARTED
;
5624 else if (cmd
== BNX2X_F_CMD_HW_RESET
)
5625 next_state
= BNX2X_F_STATE_RESET
;
5628 case BNX2X_F_STATE_STARTED
:
5629 if (cmd
== BNX2X_F_CMD_STOP
)
5630 next_state
= BNX2X_F_STATE_INITIALIZED
;
5631 /* afex ramrods can be sent only in started mode, and only
5632 * if not pending for function_stop ramrod completion
5633 * for these events - next state remained STARTED.
5635 else if ((cmd
== BNX2X_F_CMD_AFEX_UPDATE
) &&
5636 (!test_bit(BNX2X_F_CMD_STOP
, &o
->pending
)))
5637 next_state
= BNX2X_F_STATE_STARTED
;
5639 else if ((cmd
== BNX2X_F_CMD_AFEX_VIFLISTS
) &&
5640 (!test_bit(BNX2X_F_CMD_STOP
, &o
->pending
)))
5641 next_state
= BNX2X_F_STATE_STARTED
;
5643 /* Switch_update ramrod can be sent in either started or
5644 * tx_stopped state, and it doesn't change the state.
5646 else if ((cmd
== BNX2X_F_CMD_SWITCH_UPDATE
) &&
5647 (!test_bit(BNX2X_F_CMD_STOP
, &o
->pending
)))
5648 next_state
= BNX2X_F_STATE_STARTED
;
5650 else if ((cmd
== BNX2X_F_CMD_SET_TIMESYNC
) &&
5651 (!test_bit(BNX2X_F_CMD_STOP
, &o
->pending
)))
5652 next_state
= BNX2X_F_STATE_STARTED
;
5654 else if (cmd
== BNX2X_F_CMD_TX_STOP
)
5655 next_state
= BNX2X_F_STATE_TX_STOPPED
;
5658 case BNX2X_F_STATE_TX_STOPPED
:
5659 if ((cmd
== BNX2X_F_CMD_SWITCH_UPDATE
) &&
5660 (!test_bit(BNX2X_F_CMD_STOP
, &o
->pending
)))
5661 next_state
= BNX2X_F_STATE_TX_STOPPED
;
5663 else if ((cmd
== BNX2X_F_CMD_SET_TIMESYNC
) &&
5664 (!test_bit(BNX2X_F_CMD_STOP
, &o
->pending
)))
5665 next_state
= BNX2X_F_STATE_TX_STOPPED
;
5667 else if (cmd
== BNX2X_F_CMD_TX_START
)
5668 next_state
= BNX2X_F_STATE_STARTED
;
5672 BNX2X_ERR("Unknown state: %d\n", state
);
5675 /* Transition is assured */
5676 if (next_state
!= BNX2X_F_STATE_MAX
) {
5677 DP(BNX2X_MSG_SP
, "Good function state transition: %d(%d)->%d\n",
5678 state
, cmd
, next_state
);
5679 o
->next_state
= next_state
;
5683 DP(BNX2X_MSG_SP
, "Bad function state transition request: %d %d\n",
5690 * bnx2x_func_init_func - performs HW init at function stage
5692 * @bp: device handle
5695 * Init HW when the current phase is
5696 * FW_MSG_CODE_DRV_LOAD_FUNCTION: initialize only FUNCTION-only
5699 static inline int bnx2x_func_init_func(struct bnx2x
*bp
,
5700 const struct bnx2x_func_sp_drv_ops
*drv
)
5702 return drv
->init_hw_func(bp
);
5706 * bnx2x_func_init_port - performs HW init at port stage
5708 * @bp: device handle
5711 * Init HW when the current phase is
5712 * FW_MSG_CODE_DRV_LOAD_PORT: initialize PORT-only and
5713 * FUNCTION-only HW blocks.
5716 static inline int bnx2x_func_init_port(struct bnx2x
*bp
,
5717 const struct bnx2x_func_sp_drv_ops
*drv
)
5719 int rc
= drv
->init_hw_port(bp
);
5723 return bnx2x_func_init_func(bp
, drv
);
5727 * bnx2x_func_init_cmn_chip - performs HW init at chip-common stage
5729 * @bp: device handle
5732 * Init HW when the current phase is
5733 * FW_MSG_CODE_DRV_LOAD_COMMON_CHIP: initialize COMMON_CHIP,
5734 * PORT-only and FUNCTION-only HW blocks.
5736 static inline int bnx2x_func_init_cmn_chip(struct bnx2x
*bp
,
5737 const struct bnx2x_func_sp_drv_ops
*drv
)
5739 int rc
= drv
->init_hw_cmn_chip(bp
);
5743 return bnx2x_func_init_port(bp
, drv
);
5747 * bnx2x_func_init_cmn - performs HW init at common stage
5749 * @bp: device handle
5752 * Init HW when the current phase is
5753 * FW_MSG_CODE_DRV_LOAD_COMMON_CHIP: initialize COMMON,
5754 * PORT-only and FUNCTION-only HW blocks.
5756 static inline int bnx2x_func_init_cmn(struct bnx2x
*bp
,
5757 const struct bnx2x_func_sp_drv_ops
*drv
)
5759 int rc
= drv
->init_hw_cmn(bp
);
5763 return bnx2x_func_init_port(bp
, drv
);
5766 static int bnx2x_func_hw_init(struct bnx2x
*bp
,
5767 struct bnx2x_func_state_params
*params
)
5769 u32 load_code
= params
->params
.hw_init
.load_phase
;
5770 struct bnx2x_func_sp_obj
*o
= params
->f_obj
;
5771 const struct bnx2x_func_sp_drv_ops
*drv
= o
->drv
;
5774 DP(BNX2X_MSG_SP
, "function %d load_code %x\n",
5775 BP_ABS_FUNC(bp
), load_code
);
5777 /* Prepare buffers for unzipping the FW */
5778 rc
= drv
->gunzip_init(bp
);
5783 rc
= drv
->init_fw(bp
);
5785 BNX2X_ERR("Error loading firmware\n");
5789 /* Handle the beginning of COMMON_XXX pases separately... */
5790 switch (load_code
) {
5791 case FW_MSG_CODE_DRV_LOAD_COMMON_CHIP
:
5792 rc
= bnx2x_func_init_cmn_chip(bp
, drv
);
5797 case FW_MSG_CODE_DRV_LOAD_COMMON
:
5798 rc
= bnx2x_func_init_cmn(bp
, drv
);
5803 case FW_MSG_CODE_DRV_LOAD_PORT
:
5804 rc
= bnx2x_func_init_port(bp
, drv
);
5809 case FW_MSG_CODE_DRV_LOAD_FUNCTION
:
5810 rc
= bnx2x_func_init_func(bp
, drv
);
5816 BNX2X_ERR("Unknown load_code (0x%x) from MCP\n", load_code
);
5821 drv
->gunzip_end(bp
);
5823 /* In case of success, complete the command immediately: no ramrods
5827 o
->complete_cmd(bp
, o
, BNX2X_F_CMD_HW_INIT
);
5833 * bnx2x_func_reset_func - reset HW at function stage
5835 * @bp: device handle
5838 * Reset HW at FW_MSG_CODE_DRV_UNLOAD_FUNCTION stage: reset only
5839 * FUNCTION-only HW blocks.
5841 static inline void bnx2x_func_reset_func(struct bnx2x
*bp
,
5842 const struct bnx2x_func_sp_drv_ops
*drv
)
5844 drv
->reset_hw_func(bp
);
5848 * bnx2x_func_reset_port - reset HW at port stage
5850 * @bp: device handle
5853 * Reset HW at FW_MSG_CODE_DRV_UNLOAD_PORT stage: reset
5854 * FUNCTION-only and PORT-only HW blocks.
5858 * It's important to call reset_port before reset_func() as the last thing
5859 * reset_func does is pf_disable() thus disabling PGLUE_B, which
5860 * makes impossible any DMAE transactions.
5862 static inline void bnx2x_func_reset_port(struct bnx2x
*bp
,
5863 const struct bnx2x_func_sp_drv_ops
*drv
)
5865 drv
->reset_hw_port(bp
);
5866 bnx2x_func_reset_func(bp
, drv
);
5870 * bnx2x_func_reset_cmn - reset HW at common stage
5872 * @bp: device handle
5875 * Reset HW at FW_MSG_CODE_DRV_UNLOAD_COMMON and
5876 * FW_MSG_CODE_DRV_UNLOAD_COMMON_CHIP stages: reset COMMON,
5877 * COMMON_CHIP, FUNCTION-only and PORT-only HW blocks.
5879 static inline void bnx2x_func_reset_cmn(struct bnx2x
*bp
,
5880 const struct bnx2x_func_sp_drv_ops
*drv
)
5882 bnx2x_func_reset_port(bp
, drv
);
5883 drv
->reset_hw_cmn(bp
);
5886 static inline int bnx2x_func_hw_reset(struct bnx2x
*bp
,
5887 struct bnx2x_func_state_params
*params
)
5889 u32 reset_phase
= params
->params
.hw_reset
.reset_phase
;
5890 struct bnx2x_func_sp_obj
*o
= params
->f_obj
;
5891 const struct bnx2x_func_sp_drv_ops
*drv
= o
->drv
;
5893 DP(BNX2X_MSG_SP
, "function %d reset_phase %x\n", BP_ABS_FUNC(bp
),
5896 switch (reset_phase
) {
5897 case FW_MSG_CODE_DRV_UNLOAD_COMMON
:
5898 bnx2x_func_reset_cmn(bp
, drv
);
5900 case FW_MSG_CODE_DRV_UNLOAD_PORT
:
5901 bnx2x_func_reset_port(bp
, drv
);
5903 case FW_MSG_CODE_DRV_UNLOAD_FUNCTION
:
5904 bnx2x_func_reset_func(bp
, drv
);
5907 BNX2X_ERR("Unknown reset_phase (0x%x) from MCP\n",
5912 /* Complete the command immediately: no ramrods have been sent. */
5913 o
->complete_cmd(bp
, o
, BNX2X_F_CMD_HW_RESET
);
5918 static inline int bnx2x_func_send_start(struct bnx2x
*bp
,
5919 struct bnx2x_func_state_params
*params
)
5921 struct bnx2x_func_sp_obj
*o
= params
->f_obj
;
5922 struct function_start_data
*rdata
=
5923 (struct function_start_data
*)o
->rdata
;
5924 dma_addr_t data_mapping
= o
->rdata_mapping
;
5925 struct bnx2x_func_start_params
*start_params
= ¶ms
->params
.start
;
5927 memset(rdata
, 0, sizeof(*rdata
));
5929 /* Fill the ramrod data with provided parameters */
5930 rdata
->function_mode
= (u8
)start_params
->mf_mode
;
5931 rdata
->sd_vlan_tag
= cpu_to_le16(start_params
->sd_vlan_tag
);
5932 rdata
->path_id
= BP_PATH(bp
);
5933 rdata
->network_cos_mode
= start_params
->network_cos_mode
;
5935 rdata
->vxlan_dst_port
= cpu_to_le16(start_params
->vxlan_dst_port
);
5936 rdata
->geneve_dst_port
= cpu_to_le16(start_params
->geneve_dst_port
);
5937 rdata
->inner_clss_l2gre
= start_params
->inner_clss_l2gre
;
5938 rdata
->inner_clss_l2geneve
= start_params
->inner_clss_l2geneve
;
5939 rdata
->inner_clss_vxlan
= start_params
->inner_clss_vxlan
;
5940 rdata
->inner_rss
= start_params
->inner_rss
;
5942 rdata
->sd_accept_mf_clss_fail
= start_params
->class_fail
;
5943 if (start_params
->class_fail_ethtype
) {
5944 rdata
->sd_accept_mf_clss_fail_match_ethtype
= 1;
5945 rdata
->sd_accept_mf_clss_fail_ethtype
=
5946 cpu_to_le16(start_params
->class_fail_ethtype
);
5949 rdata
->sd_vlan_force_pri_flg
= start_params
->sd_vlan_force_pri
;
5950 rdata
->sd_vlan_force_pri_val
= start_params
->sd_vlan_force_pri_val
;
5951 if (start_params
->sd_vlan_eth_type
)
5952 rdata
->sd_vlan_eth_type
=
5953 cpu_to_le16(start_params
->sd_vlan_eth_type
);
5955 rdata
->sd_vlan_eth_type
=
5956 cpu_to_le16(0x8100);
5958 rdata
->no_added_tags
= start_params
->no_added_tags
;
5960 rdata
->c2s_pri_tt_valid
= start_params
->c2s_pri_valid
;
5961 if (rdata
->c2s_pri_tt_valid
) {
5962 memcpy(rdata
->c2s_pri_trans_table
.val
,
5963 start_params
->c2s_pri
,
5964 MAX_VLAN_PRIORITIES
);
5965 rdata
->c2s_pri_default
= start_params
->c2s_pri_default
;
5967 /* No need for an explicit memory barrier here as long we would
5968 * need to ensure the ordering of writing to the SPQ element
5969 * and updating of the SPQ producer which involves a memory
5970 * read and we will have to put a full memory barrier there
5971 * (inside bnx2x_sp_post()).
5974 return bnx2x_sp_post(bp
, RAMROD_CMD_ID_COMMON_FUNCTION_START
, 0,
5975 U64_HI(data_mapping
),
5976 U64_LO(data_mapping
), NONE_CONNECTION_TYPE
);
5979 static inline int bnx2x_func_send_switch_update(struct bnx2x
*bp
,
5980 struct bnx2x_func_state_params
*params
)
5982 struct bnx2x_func_sp_obj
*o
= params
->f_obj
;
5983 struct function_update_data
*rdata
=
5984 (struct function_update_data
*)o
->rdata
;
5985 dma_addr_t data_mapping
= o
->rdata_mapping
;
5986 struct bnx2x_func_switch_update_params
*switch_update_params
=
5987 ¶ms
->params
.switch_update
;
5989 memset(rdata
, 0, sizeof(*rdata
));
5991 /* Fill the ramrod data with provided parameters */
5992 if (test_bit(BNX2X_F_UPDATE_TX_SWITCH_SUSPEND_CHNG
,
5993 &switch_update_params
->changes
)) {
5994 rdata
->tx_switch_suspend_change_flg
= 1;
5995 rdata
->tx_switch_suspend
=
5996 test_bit(BNX2X_F_UPDATE_TX_SWITCH_SUSPEND
,
5997 &switch_update_params
->changes
);
6000 if (test_bit(BNX2X_F_UPDATE_SD_VLAN_TAG_CHNG
,
6001 &switch_update_params
->changes
)) {
6002 rdata
->sd_vlan_tag_change_flg
= 1;
6003 rdata
->sd_vlan_tag
=
6004 cpu_to_le16(switch_update_params
->vlan
);
6007 if (test_bit(BNX2X_F_UPDATE_SD_VLAN_ETH_TYPE_CHNG
,
6008 &switch_update_params
->changes
)) {
6009 rdata
->sd_vlan_eth_type_change_flg
= 1;
6010 rdata
->sd_vlan_eth_type
=
6011 cpu_to_le16(switch_update_params
->vlan_eth_type
);
6014 if (test_bit(BNX2X_F_UPDATE_VLAN_FORCE_PRIO_CHNG
,
6015 &switch_update_params
->changes
)) {
6016 rdata
->sd_vlan_force_pri_change_flg
= 1;
6017 if (test_bit(BNX2X_F_UPDATE_VLAN_FORCE_PRIO_FLAG
,
6018 &switch_update_params
->changes
))
6019 rdata
->sd_vlan_force_pri_flg
= 1;
6020 rdata
->sd_vlan_force_pri_flg
=
6021 switch_update_params
->vlan_force_prio
;
6024 if (test_bit(BNX2X_F_UPDATE_TUNNEL_CFG_CHNG
,
6025 &switch_update_params
->changes
)) {
6026 rdata
->update_tunn_cfg_flg
= 1;
6027 if (test_bit(BNX2X_F_UPDATE_TUNNEL_INNER_CLSS_L2GRE
,
6028 &switch_update_params
->changes
))
6029 rdata
->inner_clss_l2gre
= 1;
6030 if (test_bit(BNX2X_F_UPDATE_TUNNEL_INNER_CLSS_VXLAN
,
6031 &switch_update_params
->changes
))
6032 rdata
->inner_clss_vxlan
= 1;
6033 if (test_bit(BNX2X_F_UPDATE_TUNNEL_INNER_CLSS_L2GENEVE
,
6034 &switch_update_params
->changes
))
6035 rdata
->inner_clss_l2geneve
= 1;
6036 if (test_bit(BNX2X_F_UPDATE_TUNNEL_INNER_RSS
,
6037 &switch_update_params
->changes
))
6038 rdata
->inner_rss
= 1;
6039 rdata
->vxlan_dst_port
=
6040 cpu_to_le16(switch_update_params
->vxlan_dst_port
);
6041 rdata
->geneve_dst_port
=
6042 cpu_to_le16(switch_update_params
->geneve_dst_port
);
6045 rdata
->echo
= SWITCH_UPDATE
;
6047 /* No need for an explicit memory barrier here as long as we
6048 * ensure the ordering of writing to the SPQ element
6049 * and updating of the SPQ producer which involves a memory
6050 * read. If the memory read is removed we will have to put a
6051 * full memory barrier there (inside bnx2x_sp_post()).
6053 return bnx2x_sp_post(bp
, RAMROD_CMD_ID_COMMON_FUNCTION_UPDATE
, 0,
6054 U64_HI(data_mapping
),
6055 U64_LO(data_mapping
), NONE_CONNECTION_TYPE
);
6058 static inline int bnx2x_func_send_afex_update(struct bnx2x
*bp
,
6059 struct bnx2x_func_state_params
*params
)
6061 struct bnx2x_func_sp_obj
*o
= params
->f_obj
;
6062 struct function_update_data
*rdata
=
6063 (struct function_update_data
*)o
->afex_rdata
;
6064 dma_addr_t data_mapping
= o
->afex_rdata_mapping
;
6065 struct bnx2x_func_afex_update_params
*afex_update_params
=
6066 ¶ms
->params
.afex_update
;
6068 memset(rdata
, 0, sizeof(*rdata
));
6070 /* Fill the ramrod data with provided parameters */
6071 rdata
->vif_id_change_flg
= 1;
6072 rdata
->vif_id
= cpu_to_le16(afex_update_params
->vif_id
);
6073 rdata
->afex_default_vlan_change_flg
= 1;
6074 rdata
->afex_default_vlan
=
6075 cpu_to_le16(afex_update_params
->afex_default_vlan
);
6076 rdata
->allowed_priorities_change_flg
= 1;
6077 rdata
->allowed_priorities
= afex_update_params
->allowed_priorities
;
6078 rdata
->echo
= AFEX_UPDATE
;
6080 /* No need for an explicit memory barrier here as long as we
6081 * ensure the ordering of writing to the SPQ element
6082 * and updating of the SPQ producer which involves a memory
6083 * read. If the memory read is removed we will have to put a
6084 * full memory barrier there (inside bnx2x_sp_post()).
6087 "afex: sending func_update vif_id 0x%x dvlan 0x%x prio 0x%x\n",
6089 rdata
->afex_default_vlan
, rdata
->allowed_priorities
);
6091 return bnx2x_sp_post(bp
, RAMROD_CMD_ID_COMMON_FUNCTION_UPDATE
, 0,
6092 U64_HI(data_mapping
),
6093 U64_LO(data_mapping
), NONE_CONNECTION_TYPE
);
6097 inline int bnx2x_func_send_afex_viflists(struct bnx2x
*bp
,
6098 struct bnx2x_func_state_params
*params
)
6100 struct bnx2x_func_sp_obj
*o
= params
->f_obj
;
6101 struct afex_vif_list_ramrod_data
*rdata
=
6102 (struct afex_vif_list_ramrod_data
*)o
->afex_rdata
;
6103 struct bnx2x_func_afex_viflists_params
*afex_vif_params
=
6104 ¶ms
->params
.afex_viflists
;
6105 u64
*p_rdata
= (u64
*)rdata
;
6107 memset(rdata
, 0, sizeof(*rdata
));
6109 /* Fill the ramrod data with provided parameters */
6110 rdata
->vif_list_index
= cpu_to_le16(afex_vif_params
->vif_list_index
);
6111 rdata
->func_bit_map
= afex_vif_params
->func_bit_map
;
6112 rdata
->afex_vif_list_command
= afex_vif_params
->afex_vif_list_command
;
6113 rdata
->func_to_clear
= afex_vif_params
->func_to_clear
;
6115 /* send in echo type of sub command */
6116 rdata
->echo
= afex_vif_params
->afex_vif_list_command
;
6118 /* No need for an explicit memory barrier here as long we would
6119 * need to ensure the ordering of writing to the SPQ element
6120 * and updating of the SPQ producer which involves a memory
6121 * read and we will have to put a full memory barrier there
6122 * (inside bnx2x_sp_post()).
6125 DP(BNX2X_MSG_SP
, "afex: ramrod lists, cmd 0x%x index 0x%x func_bit_map 0x%x func_to_clr 0x%x\n",
6126 rdata
->afex_vif_list_command
, rdata
->vif_list_index
,
6127 rdata
->func_bit_map
, rdata
->func_to_clear
);
6129 /* this ramrod sends data directly and not through DMA mapping */
6130 return bnx2x_sp_post(bp
, RAMROD_CMD_ID_COMMON_AFEX_VIF_LISTS
, 0,
6131 U64_HI(*p_rdata
), U64_LO(*p_rdata
),
6132 NONE_CONNECTION_TYPE
);
6135 static inline int bnx2x_func_send_stop(struct bnx2x
*bp
,
6136 struct bnx2x_func_state_params
*params
)
6138 return bnx2x_sp_post(bp
, RAMROD_CMD_ID_COMMON_FUNCTION_STOP
, 0, 0, 0,
6139 NONE_CONNECTION_TYPE
);
6142 static inline int bnx2x_func_send_tx_stop(struct bnx2x
*bp
,
6143 struct bnx2x_func_state_params
*params
)
6145 return bnx2x_sp_post(bp
, RAMROD_CMD_ID_COMMON_STOP_TRAFFIC
, 0, 0, 0,
6146 NONE_CONNECTION_TYPE
);
6148 static inline int bnx2x_func_send_tx_start(struct bnx2x
*bp
,
6149 struct bnx2x_func_state_params
*params
)
6151 struct bnx2x_func_sp_obj
*o
= params
->f_obj
;
6152 struct flow_control_configuration
*rdata
=
6153 (struct flow_control_configuration
*)o
->rdata
;
6154 dma_addr_t data_mapping
= o
->rdata_mapping
;
6155 struct bnx2x_func_tx_start_params
*tx_start_params
=
6156 ¶ms
->params
.tx_start
;
6159 memset(rdata
, 0, sizeof(*rdata
));
6161 rdata
->dcb_enabled
= tx_start_params
->dcb_enabled
;
6162 rdata
->dcb_version
= tx_start_params
->dcb_version
;
6163 rdata
->dont_add_pri_0_en
= tx_start_params
->dont_add_pri_0_en
;
6165 for (i
= 0; i
< ARRAY_SIZE(rdata
->traffic_type_to_priority_cos
); i
++)
6166 rdata
->traffic_type_to_priority_cos
[i
] =
6167 tx_start_params
->traffic_type_to_priority_cos
[i
];
6169 for (i
= 0; i
< MAX_TRAFFIC_TYPES
; i
++)
6170 rdata
->dcb_outer_pri
[i
] = tx_start_params
->dcb_outer_pri
[i
];
6171 /* No need for an explicit memory barrier here as long as we
6172 * ensure the ordering of writing to the SPQ element
6173 * and updating of the SPQ producer which involves a memory
6174 * read. If the memory read is removed we will have to put a
6175 * full memory barrier there (inside bnx2x_sp_post()).
6177 return bnx2x_sp_post(bp
, RAMROD_CMD_ID_COMMON_START_TRAFFIC
, 0,
6178 U64_HI(data_mapping
),
6179 U64_LO(data_mapping
), NONE_CONNECTION_TYPE
);
6183 int bnx2x_func_send_set_timesync(struct bnx2x
*bp
,
6184 struct bnx2x_func_state_params
*params
)
6186 struct bnx2x_func_sp_obj
*o
= params
->f_obj
;
6187 struct set_timesync_ramrod_data
*rdata
=
6188 (struct set_timesync_ramrod_data
*)o
->rdata
;
6189 dma_addr_t data_mapping
= o
->rdata_mapping
;
6190 struct bnx2x_func_set_timesync_params
*set_timesync_params
=
6191 ¶ms
->params
.set_timesync
;
6193 memset(rdata
, 0, sizeof(*rdata
));
6195 /* Fill the ramrod data with provided parameters */
6196 rdata
->drift_adjust_cmd
= set_timesync_params
->drift_adjust_cmd
;
6197 rdata
->offset_cmd
= set_timesync_params
->offset_cmd
;
6198 rdata
->add_sub_drift_adjust_value
=
6199 set_timesync_params
->add_sub_drift_adjust_value
;
6200 rdata
->drift_adjust_value
= set_timesync_params
->drift_adjust_value
;
6201 rdata
->drift_adjust_period
= set_timesync_params
->drift_adjust_period
;
6202 rdata
->offset_delta
.lo
=
6203 cpu_to_le32(U64_LO(set_timesync_params
->offset_delta
));
6204 rdata
->offset_delta
.hi
=
6205 cpu_to_le32(U64_HI(set_timesync_params
->offset_delta
));
6207 DP(BNX2X_MSG_SP
, "Set timesync command params: drift_cmd = %d, offset_cmd = %d, add_sub_drift = %d, drift_val = %d, drift_period = %d, offset_lo = %d, offset_hi = %d\n",
6208 rdata
->drift_adjust_cmd
, rdata
->offset_cmd
,
6209 rdata
->add_sub_drift_adjust_value
, rdata
->drift_adjust_value
,
6210 rdata
->drift_adjust_period
, rdata
->offset_delta
.lo
,
6211 rdata
->offset_delta
.hi
);
6213 return bnx2x_sp_post(bp
, RAMROD_CMD_ID_COMMON_SET_TIMESYNC
, 0,
6214 U64_HI(data_mapping
),
6215 U64_LO(data_mapping
), NONE_CONNECTION_TYPE
);
6218 static int bnx2x_func_send_cmd(struct bnx2x
*bp
,
6219 struct bnx2x_func_state_params
*params
)
6221 switch (params
->cmd
) {
6222 case BNX2X_F_CMD_HW_INIT
:
6223 return bnx2x_func_hw_init(bp
, params
);
6224 case BNX2X_F_CMD_START
:
6225 return bnx2x_func_send_start(bp
, params
);
6226 case BNX2X_F_CMD_STOP
:
6227 return bnx2x_func_send_stop(bp
, params
);
6228 case BNX2X_F_CMD_HW_RESET
:
6229 return bnx2x_func_hw_reset(bp
, params
);
6230 case BNX2X_F_CMD_AFEX_UPDATE
:
6231 return bnx2x_func_send_afex_update(bp
, params
);
6232 case BNX2X_F_CMD_AFEX_VIFLISTS
:
6233 return bnx2x_func_send_afex_viflists(bp
, params
);
6234 case BNX2X_F_CMD_TX_STOP
:
6235 return bnx2x_func_send_tx_stop(bp
, params
);
6236 case BNX2X_F_CMD_TX_START
:
6237 return bnx2x_func_send_tx_start(bp
, params
);
6238 case BNX2X_F_CMD_SWITCH_UPDATE
:
6239 return bnx2x_func_send_switch_update(bp
, params
);
6240 case BNX2X_F_CMD_SET_TIMESYNC
:
6241 return bnx2x_func_send_set_timesync(bp
, params
);
6243 BNX2X_ERR("Unknown command: %d\n", params
->cmd
);
6248 void bnx2x_init_func_obj(struct bnx2x
*bp
,
6249 struct bnx2x_func_sp_obj
*obj
,
6250 void *rdata
, dma_addr_t rdata_mapping
,
6251 void *afex_rdata
, dma_addr_t afex_rdata_mapping
,
6252 struct bnx2x_func_sp_drv_ops
*drv_iface
)
6254 memset(obj
, 0, sizeof(*obj
));
6256 mutex_init(&obj
->one_pending_mutex
);
6259 obj
->rdata_mapping
= rdata_mapping
;
6260 obj
->afex_rdata
= afex_rdata
;
6261 obj
->afex_rdata_mapping
= afex_rdata_mapping
;
6262 obj
->send_cmd
= bnx2x_func_send_cmd
;
6263 obj
->check_transition
= bnx2x_func_chk_transition
;
6264 obj
->complete_cmd
= bnx2x_func_comp_cmd
;
6265 obj
->wait_comp
= bnx2x_func_wait_comp
;
6267 obj
->drv
= drv_iface
;
6271 * bnx2x_func_state_change - perform Function state change transition
6273 * @bp: device handle
6274 * @params: parameters to perform the transaction
6276 * returns 0 in case of successfully completed transition,
6277 * negative error code in case of failure, positive
6278 * (EBUSY) value if there is a completion to that is
6279 * still pending (possible only if RAMROD_COMP_WAIT is
6280 * not set in params->ramrod_flags for asynchronous
6283 int bnx2x_func_state_change(struct bnx2x
*bp
,
6284 struct bnx2x_func_state_params
*params
)
6286 struct bnx2x_func_sp_obj
*o
= params
->f_obj
;
6288 enum bnx2x_func_cmd cmd
= params
->cmd
;
6289 unsigned long *pending
= &o
->pending
;
6291 mutex_lock(&o
->one_pending_mutex
);
6293 /* Check that the requested transition is legal */
6294 rc
= o
->check_transition(bp
, o
, params
);
6295 if ((rc
== -EBUSY
) &&
6296 (test_bit(RAMROD_RETRY
, ¶ms
->ramrod_flags
))) {
6297 while ((rc
== -EBUSY
) && (--cnt
> 0)) {
6298 mutex_unlock(&o
->one_pending_mutex
);
6300 mutex_lock(&o
->one_pending_mutex
);
6301 rc
= o
->check_transition(bp
, o
, params
);
6304 mutex_unlock(&o
->one_pending_mutex
);
6305 BNX2X_ERR("timeout waiting for previous ramrod completion\n");
6309 mutex_unlock(&o
->one_pending_mutex
);
6313 /* Set "pending" bit */
6314 set_bit(cmd
, pending
);
6316 /* Don't send a command if only driver cleanup was requested */
6317 if (test_bit(RAMROD_DRV_CLR_ONLY
, ¶ms
->ramrod_flags
)) {
6318 bnx2x_func_state_change_comp(bp
, o
, cmd
);
6319 mutex_unlock(&o
->one_pending_mutex
);
6322 rc
= o
->send_cmd(bp
, params
);
6324 mutex_unlock(&o
->one_pending_mutex
);
6327 o
->next_state
= BNX2X_F_STATE_MAX
;
6328 clear_bit(cmd
, pending
);
6329 smp_mb__after_atomic();
6333 if (test_bit(RAMROD_COMP_WAIT
, ¶ms
->ramrod_flags
)) {
6334 rc
= o
->wait_comp(bp
, o
, cmd
);
6342 return !!test_bit(cmd
, pending
);