1 /* bnx2x_sp.h: Broadcom Everest network driver.
3 * Copyright 2011 Broadcom Corporation
5 * Unless you and Broadcom execute a separate written software license
6 * agreement governing use of this software, this software is licensed to you
7 * under the terms of the GNU General Public License version 2, available
8 * at http://www.gnu.org/licenses/old-licenses/gpl-2.0.html (the "GPL").
10 * Notwithstanding the above, under no circumstances may you combine this
11 * software in any way with any other Broadcom software provided under a
12 * license other than the GPL, without Broadcom's express prior written
15 * Maintained by: Eilon Greenstein <eilong@broadcom.com>
16 * Written by: Vladislav Zolotarov
19 #ifndef BNX2X_SP_VERBS
20 #define BNX2X_SP_VERBS
25 /* Bits representing general command's configuration */
29 /* Wait until all pending commands complete */
31 /* Don't send a ramrod, only update a registry */
33 /* Configure HW according to the current object state */
35 /* Execute the next command now */
38 * Don't add a new command and continue execution of posponed
39 * commands. If not set a new command will be added to the
40 * pending commands list.
51 /* Filtering states */
53 BNX2X_FILTER_MAC_PENDING
,
54 BNX2X_FILTER_VLAN_PENDING
,
55 BNX2X_FILTER_VLAN_MAC_PENDING
,
56 BNX2X_FILTER_RX_MODE_PENDING
,
57 BNX2X_FILTER_RX_MODE_SCHED
,
58 BNX2X_FILTER_ISCSI_ETH_START_SCHED
,
59 BNX2X_FILTER_ISCSI_ETH_STOP_SCHED
,
60 BNX2X_FILTER_FCOE_ETH_START_SCHED
,
61 BNX2X_FILTER_FCOE_ETH_STOP_SCHED
,
62 BNX2X_FILTER_MCAST_PENDING
,
63 BNX2X_FILTER_MCAST_SCHED
,
64 BNX2X_FILTER_RSS_CONF_PENDING
,
67 struct bnx2x_raw_obj
{
74 /* Ramrod data buffer params */
76 dma_addr_t rdata_mapping
;
78 /* Ramrod state params */
79 int state
; /* "ramrod is pending" state bit */
80 unsigned long *pstate
; /* pointer to state buffer */
82 bnx2x_obj_type obj_type
;
84 int (*wait_comp
)(struct bnx2x
*bp
,
85 struct bnx2x_raw_obj
*o
);
87 bool (*check_pending
)(struct bnx2x_raw_obj
*o
);
88 void (*clear_pending
)(struct bnx2x_raw_obj
*o
);
89 void (*set_pending
)(struct bnx2x_raw_obj
*o
);
92 /************************* VLAN-MAC commands related parameters ***************/
93 struct bnx2x_mac_ramrod_data
{
97 struct bnx2x_vlan_ramrod_data
{
101 struct bnx2x_vlan_mac_ramrod_data
{
106 union bnx2x_classification_ramrod_data
{
107 struct bnx2x_mac_ramrod_data mac
;
108 struct bnx2x_vlan_ramrod_data vlan
;
109 struct bnx2x_vlan_mac_ramrod_data vlan_mac
;
112 /* VLAN_MAC commands */
113 enum bnx2x_vlan_mac_cmd
{
119 struct bnx2x_vlan_mac_data
{
120 /* Requested command: BNX2X_VLAN_MAC_XX */
121 enum bnx2x_vlan_mac_cmd cmd
;
123 * used to contain the data related vlan_mac_flags bits from
126 unsigned long vlan_mac_flags
;
128 /* Needed for MOVE command */
129 struct bnx2x_vlan_mac_obj
*target_obj
;
131 union bnx2x_classification_ramrod_data u
;
134 /*************************** Exe Queue obj ************************************/
135 union bnx2x_exe_queue_cmd_data
{
136 struct bnx2x_vlan_mac_data vlan_mac
;
143 struct bnx2x_exeq_elem
{
144 struct list_head link
;
146 /* Length of this element in the exe_chunk. */
149 union bnx2x_exe_queue_cmd_data cmd_data
;
152 union bnx2x_qable_obj
;
154 union bnx2x_exeq_comp_elem
{
155 union event_ring_elem
*elem
;
158 struct bnx2x_exe_queue_obj
;
160 typedef int (*exe_q_validate
)(struct bnx2x
*bp
,
161 union bnx2x_qable_obj
*o
,
162 struct bnx2x_exeq_elem
*elem
);
164 typedef int (*exe_q_remove
)(struct bnx2x
*bp
,
165 union bnx2x_qable_obj
*o
,
166 struct bnx2x_exeq_elem
*elem
);
169 * @return positive is entry was optimized, 0 - if not, negative
170 * in case of an error.
172 typedef int (*exe_q_optimize
)(struct bnx2x
*bp
,
173 union bnx2x_qable_obj
*o
,
174 struct bnx2x_exeq_elem
*elem
);
175 typedef int (*exe_q_execute
)(struct bnx2x
*bp
,
176 union bnx2x_qable_obj
*o
,
177 struct list_head
*exe_chunk
,
178 unsigned long *ramrod_flags
);
179 typedef struct bnx2x_exeq_elem
*
180 (*exe_q_get
)(struct bnx2x_exe_queue_obj
*o
,
181 struct bnx2x_exeq_elem
*elem
);
183 struct bnx2x_exe_queue_obj
{
185 * Commands pending for an execution.
187 struct list_head exe_queue
;
190 * Commands pending for an completion.
192 struct list_head pending_comp
;
196 /* Maximum length of commands' list for one execution */
199 union bnx2x_qable_obj
*owner
;
201 /****** Virtual functions ******/
203 * Called before commands execution for commands that are really
204 * going to be executed (after 'optimize').
206 * Must run under exe_queue->lock
208 exe_q_validate validate
;
211 * Called before removing pending commands, cleaning allocated
212 * resources (e.g., credits from validate)
217 * This will try to cancel the current pending commands list
218 * considering the new command.
220 * Returns the number of optimized commands or a negative error code
222 * Must run under exe_queue->lock
224 exe_q_optimize optimize
;
227 * Run the next commands chunk (owner specific).
229 exe_q_execute execute
;
232 * Return the exe_queue element containing the specific command
233 * if any. Otherwise return NULL.
237 /***************** Classification verbs: Set/Del MAC/VLAN/VLAN-MAC ************/
239 * Element in the VLAN_MAC registry list having all currenty configured
242 struct bnx2x_vlan_mac_registry_elem
{
243 struct list_head link
;
246 * Used to store the cam offset used for the mac/vlan/vlan-mac.
247 * Relevant for 57710 and 57711 only. VLANs and MACs share the
248 * same CAM for these chips.
252 /* Needed for DEL and RESTORE flows */
253 unsigned long vlan_mac_flags
;
255 union bnx2x_classification_ramrod_data u
;
258 /* Bits representing VLAN_MAC commands specific flags */
264 BNX2X_DONT_CONSUME_CAM_CREDIT
,
265 BNX2X_DONT_CONSUME_CAM_CREDIT_DEST
,
268 struct bnx2x_vlan_mac_ramrod_params
{
269 /* Object to run the command from */
270 struct bnx2x_vlan_mac_obj
*vlan_mac_obj
;
272 /* General command flags: COMP_WAIT, etc. */
273 unsigned long ramrod_flags
;
275 /* Command specific configuration request */
276 struct bnx2x_vlan_mac_data user_req
;
279 struct bnx2x_vlan_mac_obj
{
280 struct bnx2x_raw_obj raw
;
282 /* Bookkeeping list: will prevent the addition of already existing
285 struct list_head head
;
287 /* TODO: Add it's initialization in the init functions */
288 struct bnx2x_exe_queue_obj exe_queue
;
290 /* MACs credit pool */
291 struct bnx2x_credit_pool_obj
*macs_pool
;
293 /* VLANs credit pool */
294 struct bnx2x_credit_pool_obj
*vlans_pool
;
296 /* RAMROD command to be used */
299 /* copy first n elements onto preallocated buffer
301 * @param n number of elements to get
302 * @param buf buffer preallocated by caller into which elements
303 * will be copied. Note elements are 4-byte aligned
304 * so buffer size must be able to accomodate the
307 * @return number of copied bytes
309 int (*get_n_elements
)(struct bnx2x
*bp
, struct bnx2x_vlan_mac_obj
*o
,
313 * Checks if ADD-ramrod with the given params may be performed.
315 * @return zero if the element may be added
318 int (*check_add
)(struct bnx2x_vlan_mac_obj
*o
,
319 union bnx2x_classification_ramrod_data
*data
);
322 * Checks if DEL-ramrod with the given params may be performed.
324 * @return true if the element may be deleted
326 struct bnx2x_vlan_mac_registry_elem
*
327 (*check_del
)(struct bnx2x_vlan_mac_obj
*o
,
328 union bnx2x_classification_ramrod_data
*data
);
331 * Checks if DEL-ramrod with the given params may be performed.
333 * @return true if the element may be deleted
335 bool (*check_move
)(struct bnx2x_vlan_mac_obj
*src_o
,
336 struct bnx2x_vlan_mac_obj
*dst_o
,
337 union bnx2x_classification_ramrod_data
*data
);
340 * Update the relevant credit object(s) (consume/return
343 bool (*get_credit
)(struct bnx2x_vlan_mac_obj
*o
);
344 bool (*put_credit
)(struct bnx2x_vlan_mac_obj
*o
);
345 bool (*get_cam_offset
)(struct bnx2x_vlan_mac_obj
*o
, int *offset
);
346 bool (*put_cam_offset
)(struct bnx2x_vlan_mac_obj
*o
, int offset
);
349 * Configures one rule in the ramrod data buffer.
351 void (*set_one_rule
)(struct bnx2x
*bp
,
352 struct bnx2x_vlan_mac_obj
*o
,
353 struct bnx2x_exeq_elem
*elem
, int rule_idx
,
357 * Delete all configured elements having the given
358 * vlan_mac_flags specification. Assumes no pending for
359 * execution commands. Will schedule all all currently
360 * configured MACs/VLANs/VLAN-MACs matching the vlan_mac_flags
361 * specification for deletion and will use the given
362 * ramrod_flags for the last DEL operation.
366 * @param ramrod_flags RAMROD_XX flags
368 * @return 0 if the last operation has completed successfully
369 * and there are no more elements left, positive value
370 * if there are pending for completion commands,
371 * negative value in case of failure.
373 int (*delete_all
)(struct bnx2x
*bp
,
374 struct bnx2x_vlan_mac_obj
*o
,
375 unsigned long *vlan_mac_flags
,
376 unsigned long *ramrod_flags
);
379 * Reconfigures the next MAC/VLAN/VLAN-MAC element from the previously
380 * configured elements list.
383 * @param p Command parameters (RAMROD_COMP_WAIT bit in
384 * ramrod_flags is only taken into an account)
385 * @param ppos a pointer to the cooky that should be given back in the
386 * next call to make function handle the next element. If
387 * *ppos is set to NULL it will restart the iterator.
388 * If returned *ppos == NULL this means that the last
389 * element has been handled.
393 int (*restore
)(struct bnx2x
*bp
,
394 struct bnx2x_vlan_mac_ramrod_params
*p
,
395 struct bnx2x_vlan_mac_registry_elem
**ppos
);
398 * Should be called on a completion arival.
402 * @param cqe Completion element we are handling
403 * @param ramrod_flags if RAMROD_CONT is set the next bulk of
404 * pending commands will be executed.
405 * RAMROD_DRV_CLR_ONLY and RAMROD_RESTORE
406 * may also be set if needed.
408 * @return 0 if there are neither pending nor waiting for
409 * completion commands. Positive value if there are
410 * pending for execution or for completion commands.
411 * Negative value in case of an error (including an
414 int (*complete
)(struct bnx2x
*bp
, struct bnx2x_vlan_mac_obj
*o
,
415 union event_ring_elem
*cqe
,
416 unsigned long *ramrod_flags
);
419 * Wait for completion of all commands. Don't schedule new ones,
420 * just wait. It assumes that the completion code will schedule
423 int (*wait
)(struct bnx2x
*bp
, struct bnx2x_vlan_mac_obj
*o
);
426 /** RX_MODE verbs:DROP_ALL/ACCEPT_ALL/ACCEPT_ALL_MULTI/ACCEPT_ALL_VLAN/NORMAL */
428 /* RX_MODE ramrod spesial flags: set in rx_mode_flags field in
429 * a bnx2x_rx_mode_ramrod_params.
432 BNX2X_RX_MODE_FCOE_ETH
,
433 BNX2X_RX_MODE_ISCSI_ETH
,
437 BNX2X_ACCEPT_UNICAST
,
438 BNX2X_ACCEPT_MULTICAST
,
439 BNX2X_ACCEPT_ALL_UNICAST
,
440 BNX2X_ACCEPT_ALL_MULTICAST
,
441 BNX2X_ACCEPT_BROADCAST
,
442 BNX2X_ACCEPT_UNMATCHED
,
443 BNX2X_ACCEPT_ANY_VLAN
446 struct bnx2x_rx_mode_ramrod_params
{
447 struct bnx2x_rx_mode_obj
*rx_mode_obj
;
448 unsigned long *pstate
;
453 unsigned long ramrod_flags
;
454 unsigned long rx_mode_flags
;
457 * rdata is either a pointer to eth_filter_rules_ramrod_data(e2) or to
458 * a tstorm_eth_mac_filter_config (e1x).
461 dma_addr_t rdata_mapping
;
463 /* Rx mode settings */
464 unsigned long rx_accept_flags
;
466 /* internal switching settings */
467 unsigned long tx_accept_flags
;
470 struct bnx2x_rx_mode_obj
{
471 int (*config_rx_mode
)(struct bnx2x
*bp
,
472 struct bnx2x_rx_mode_ramrod_params
*p
);
474 int (*wait_comp
)(struct bnx2x
*bp
,
475 struct bnx2x_rx_mode_ramrod_params
*p
);
478 /********************** Set multicast group ***********************************/
480 struct bnx2x_mcast_list_elem
{
481 struct list_head link
;
485 union bnx2x_mcast_config_data
{
487 u8 bin
; /* used in a RESTORE flow */
490 struct bnx2x_mcast_ramrod_params
{
491 struct bnx2x_mcast_obj
*mcast_obj
;
493 /* Relevant options are RAMROD_COMP_WAIT and RAMROD_DRV_CLR_ONLY */
494 unsigned long ramrod_flags
;
496 struct list_head mcast_list
; /* list of struct bnx2x_mcast_list_elem */
498 * - rename it to macs_num.
499 * - Add a new command type for handling pending commands
500 * (remove "zero semantics").
502 * Length of mcast_list. If zero and ADD_CONT command - post
510 BNX2X_MCAST_CMD_CONT
,
512 BNX2X_MCAST_CMD_RESTORE
,
515 struct bnx2x_mcast_obj
{
516 struct bnx2x_raw_obj raw
;
520 #define BNX2X_MCAST_BINS_NUM 256
521 #define BNX2X_MCAST_VEC_SZ (BNX2X_MCAST_BINS_NUM / 64)
522 u64 vec
[BNX2X_MCAST_VEC_SZ
];
524 /** Number of BINs to clear. Should be updated
525 * immediately when a command arrives in order to
526 * properly create DEL commands.
532 struct list_head macs
;
537 /* Pending commands */
538 struct list_head pending_cmds_head
;
540 /* A state that is set in raw.pstate, when there are pending commands */
543 /* Maximal number of mcast MACs configured in one command */
546 /* Total number of currently pending MACs to configure: both
547 * in the pending commands list and in the current command.
549 int total_pending_num
;
554 * @param cmd command to execute (BNX2X_MCAST_CMD_X, see above)
556 int (*config_mcast
)(struct bnx2x
*bp
,
557 struct bnx2x_mcast_ramrod_params
*p
, int cmd
);
560 * Fills the ramrod data during the RESTORE flow.
564 * @param start_idx Registry index to start from
565 * @param rdata_idx Index in the ramrod data to start from
567 * @return -1 if we handled the whole registry or index of the last
568 * handled registry element.
570 int (*hdl_restore
)(struct bnx2x
*bp
, struct bnx2x_mcast_obj
*o
,
571 int start_bin
, int *rdata_idx
);
573 int (*enqueue_cmd
)(struct bnx2x
*bp
, struct bnx2x_mcast_obj
*o
,
574 struct bnx2x_mcast_ramrod_params
*p
, int cmd
);
576 void (*set_one_rule
)(struct bnx2x
*bp
,
577 struct bnx2x_mcast_obj
*o
, int idx
,
578 union bnx2x_mcast_config_data
*cfg_data
, int cmd
);
580 /** Checks if there are more mcast MACs to be set or a previous
581 * command is still pending.
583 bool (*check_pending
)(struct bnx2x_mcast_obj
*o
);
586 * Set/Clear/Check SCHEDULED state of the object
588 void (*set_sched
)(struct bnx2x_mcast_obj
*o
);
589 void (*clear_sched
)(struct bnx2x_mcast_obj
*o
);
590 bool (*check_sched
)(struct bnx2x_mcast_obj
*o
);
592 /* Wait until all pending commands complete */
593 int (*wait_comp
)(struct bnx2x
*bp
, struct bnx2x_mcast_obj
*o
);
596 * Handle the internal object counters needed for proper
597 * commands handling. Checks that the provided parameters are
600 int (*validate
)(struct bnx2x
*bp
,
601 struct bnx2x_mcast_ramrod_params
*p
, int cmd
);
604 * Restore the values of internal counters in case of a failure.
606 void (*revert
)(struct bnx2x
*bp
,
607 struct bnx2x_mcast_ramrod_params
*p
,
610 int (*get_registry_size
)(struct bnx2x_mcast_obj
*o
);
611 void (*set_registry_size
)(struct bnx2x_mcast_obj
*o
, int n
);
614 /*************************** Credit handling **********************************/
615 struct bnx2x_credit_pool_obj
{
617 /* Current amount of credit in the pool */
620 /* Maximum allowed credit. put() will check against it. */
624 * Allocate a pool table statically.
626 * Currently the mamimum allowed size is MAX_MAC_CREDIT_E2(272)
628 * The set bit in the table will mean that the entry is available.
630 #define BNX2X_POOL_VEC_SIZE (MAX_MAC_CREDIT_E2 / 64)
631 u64 pool_mirror
[BNX2X_POOL_VEC_SIZE
];
633 /* Base pool offset (initialized differently */
634 int base_pool_offset
;
637 * Get the next free pool entry.
639 * @return true if there was a free entry in the pool
641 bool (*get_entry
)(struct bnx2x_credit_pool_obj
*o
, int *entry
);
644 * Return the entry back to the pool.
646 * @return true if entry is legal and has been successfully
647 * returned to the pool.
649 bool (*put_entry
)(struct bnx2x_credit_pool_obj
*o
, int entry
);
652 * Get the requested amount of credit from the pool.
654 * @param cnt Amount of requested credit
655 * @return true if the operation is successful
657 bool (*get
)(struct bnx2x_credit_pool_obj
*o
, int cnt
);
660 * Returns the credit to the pool.
662 * @param cnt Amount of credit to return
663 * @return true if the operation is successful
665 bool (*put
)(struct bnx2x_credit_pool_obj
*o
, int cnt
);
668 * Reads the current amount of credit.
670 int (*check
)(struct bnx2x_credit_pool_obj
*o
);
673 /*************************** RSS configuration ********************************/
675 /* RSS_MODE bits are mutually exclusive */
676 BNX2X_RSS_MODE_DISABLED
,
677 BNX2X_RSS_MODE_REGULAR
,
678 BNX2X_RSS_MODE_VLAN_PRI
,
679 BNX2X_RSS_MODE_E1HOV_PRI
,
680 BNX2X_RSS_MODE_IP_DSCP
,
682 BNX2X_RSS_SET_SRCH
, /* Setup searcher, E1x specific flag */
690 struct bnx2x_config_rss_params
{
691 struct bnx2x_rss_config_obj
*rss_obj
;
693 /* may have RAMROD_COMP_WAIT set only */
694 unsigned long ramrod_flags
;
696 /* BNX2X_RSS_X bits */
697 unsigned long rss_flags
;
699 /* Number hash bits to take into an account */
702 /* Indirection table */
703 u8 ind_table
[T_ETH_INDIRECTION_TABLE_SIZE
];
705 /* RSS hash values */
708 /* valid only iff BNX2X_RSS_UPDATE_TOE is set */
712 struct bnx2x_rss_config_obj
{
713 struct bnx2x_raw_obj raw
;
715 /* RSS engine to use */
718 /* Last configured indirection table */
719 u8 ind_table
[T_ETH_INDIRECTION_TABLE_SIZE
];
721 int (*config_rss
)(struct bnx2x
*bp
,
722 struct bnx2x_config_rss_params
*p
);
725 /*********************** Queue state update ***********************************/
727 /* UPDATE command options */
729 BNX2X_Q_UPDATE_IN_VLAN_REM
,
730 BNX2X_Q_UPDATE_IN_VLAN_REM_CHNG
,
731 BNX2X_Q_UPDATE_OUT_VLAN_REM
,
732 BNX2X_Q_UPDATE_OUT_VLAN_REM_CHNG
,
733 BNX2X_Q_UPDATE_ANTI_SPOOF
,
734 BNX2X_Q_UPDATE_ANTI_SPOOF_CHNG
,
735 BNX2X_Q_UPDATE_ACTIVATE
,
736 BNX2X_Q_UPDATE_ACTIVATE_CHNG
,
737 BNX2X_Q_UPDATE_DEF_VLAN_EN
,
738 BNX2X_Q_UPDATE_DEF_VLAN_EN_CHNG
,
739 BNX2X_Q_UPDATE_SILENT_VLAN_REM_CHNG
,
740 BNX2X_Q_UPDATE_SILENT_VLAN_REM
743 /* Allowed Queue states */
746 BNX2X_Q_STATE_INITIALIZED
,
747 BNX2X_Q_STATE_ACTIVE
,
748 BNX2X_Q_STATE_MULTI_COS
,
749 BNX2X_Q_STATE_MCOS_TERMINATED
,
750 BNX2X_Q_STATE_INACTIVE
,
751 BNX2X_Q_STATE_STOPPED
,
752 BNX2X_Q_STATE_TERMINATED
,
757 /* Allowed commands */
758 enum bnx2x_queue_cmd
{
761 BNX2X_Q_CMD_SETUP_TX_ONLY
,
762 BNX2X_Q_CMD_DEACTIVATE
,
763 BNX2X_Q_CMD_ACTIVATE
,
765 BNX2X_Q_CMD_UPDATE_TPA
,
768 BNX2X_Q_CMD_TERMINATE
,
773 /* queue SETUP + INIT flags */
776 BNX2X_Q_FLG_TPA_IPV6
,
778 BNX2X_Q_FLG_ZERO_STATS
,
787 BNX2X_Q_FLG_LEADING_RSS
,
789 BNX2X_Q_FLG_DEF_VLAN
,
790 BNX2X_Q_FLG_TX_SWITCH
,
792 BNX2X_Q_FLG_ANTI_SPOOF
,
793 BNX2X_Q_FLG_SILENT_VLAN_REM
796 /* Queue type options: queue type may be a compination of below. */
798 /** TODO: Consider moving both these flags into the init()
805 #define BNX2X_PRIMARY_CID_INDEX 0
806 #define BNX2X_MULTI_TX_COS_E1X 1
807 #define BNX2X_MULTI_TX_COS_E2_E3A0 2
808 #define BNX2X_MULTI_TX_COS_E3B0 3
809 #define BNX2X_MULTI_TX_COS BNX2X_MULTI_TX_COS_E3B0
812 struct bnx2x_queue_init_params
{
827 /* CID context in the host memory */
828 struct eth_context
*cxts
[BNX2X_MULTI_TX_COS
];
830 /* maximum number of cos supported by hardware */
834 struct bnx2x_queue_terminate_params
{
835 /* index within the tx_only cids of this queue object */
839 struct bnx2x_queue_cfc_del_params
{
840 /* index within the tx_only cids of this queue object */
844 struct bnx2x_queue_update_params
{
845 unsigned long update_flags
; /* BNX2X_Q_UPDATE_XX bits */
847 u16 silent_removal_value
;
848 u16 silent_removal_mask
;
849 /* index within the tx_only cids of this queue object */
853 struct rxq_pause_params
{
858 u16 sge_th_lo
; /* valid iff BNX2X_Q_FLG_TPA */
859 u16 sge_th_hi
; /* valid iff BNX2X_Q_FLG_TPA */
864 struct bnx2x_general_setup_params
{
865 /* valid iff BNX2X_Q_FLG_STATS */
873 struct bnx2x_rxq_setup_params
{
878 dma_addr_t rcq_np_map
;
885 /* valid iff BNX2X_Q_FLG_TPA */
896 /* valid iff BXN2X_Q_FLG_SILENT_VLAN_REM */
897 u16 silent_removal_value
;
898 u16 silent_removal_mask
;
901 struct bnx2x_txq_setup_params
{
907 u8 cos
; /* valid iff BNX2X_Q_FLG_COS */
909 /* equals to the leading rss client id, used for TX classification*/
910 u8 tss_leading_cl_id
;
912 /* valid iff BNX2X_Q_FLG_DEF_VLAN */
916 struct bnx2x_queue_setup_params
{
917 struct bnx2x_general_setup_params gen_params
;
918 struct bnx2x_txq_setup_params txq_params
;
919 struct bnx2x_rxq_setup_params rxq_params
;
920 struct rxq_pause_params pause_params
;
924 struct bnx2x_queue_setup_tx_only_params
{
925 struct bnx2x_general_setup_params gen_params
;
926 struct bnx2x_txq_setup_params txq_params
;
928 /* index within the tx_only cids of this queue object */
932 struct bnx2x_queue_state_params
{
933 struct bnx2x_queue_sp_obj
*q_obj
;
935 /* Current command */
936 enum bnx2x_queue_cmd cmd
;
938 /* may have RAMROD_COMP_WAIT set only */
939 unsigned long ramrod_flags
;
941 /* Params according to the current command */
943 struct bnx2x_queue_update_params update
;
944 struct bnx2x_queue_setup_params setup
;
945 struct bnx2x_queue_init_params init
;
946 struct bnx2x_queue_setup_tx_only_params tx_only
;
947 struct bnx2x_queue_terminate_params terminate
;
948 struct bnx2x_queue_cfc_del_params cfc_del
;
952 struct bnx2x_queue_sp_obj
{
953 u32 cids
[BNX2X_MULTI_TX_COS
];
958 * number of traffic classes supported by queue.
959 * The primary connection of the queue suppotrs the first traffic
960 * class. Any further traffic class is suppoted by a tx-only
963 * Therefore max_cos is also a number of valid entries in the cids
967 u8 num_tx_only
, next_tx_only
;
969 enum bnx2x_q_state state
, next_state
;
971 /* bits from enum bnx2x_q_type */
974 /* BNX2X_Q_CMD_XX bits. This object implements "one
975 * pending" paradigm but for debug and tracing purposes it's
976 * more convinient to have different bits for different
979 unsigned long pending
;
981 /* Buffer to use as a ramrod data and its mapping */
983 dma_addr_t rdata_mapping
;
986 * Performs one state change according to the given parameters.
988 * @return 0 in case of success and negative value otherwise.
990 int (*send_cmd
)(struct bnx2x
*bp
,
991 struct bnx2x_queue_state_params
*params
);
994 * Sets the pending bit according to the requested transition.
996 int (*set_pending
)(struct bnx2x_queue_sp_obj
*o
,
997 struct bnx2x_queue_state_params
*params
);
1000 * Checks that the requested state transition is legal.
1002 int (*check_transition
)(struct bnx2x
*bp
,
1003 struct bnx2x_queue_sp_obj
*o
,
1004 struct bnx2x_queue_state_params
*params
);
1007 * Completes the pending command.
1009 int (*complete_cmd
)(struct bnx2x
*bp
,
1010 struct bnx2x_queue_sp_obj
*o
,
1011 enum bnx2x_queue_cmd
);
1013 int (*wait_comp
)(struct bnx2x
*bp
,
1014 struct bnx2x_queue_sp_obj
*o
,
1015 enum bnx2x_queue_cmd cmd
);
1018 /********************** Function state update *********************************/
1019 /* Allowed Function states */
1020 enum bnx2x_func_state
{
1021 BNX2X_F_STATE_RESET
,
1022 BNX2X_F_STATE_INITIALIZED
,
1023 BNX2X_F_STATE_STARTED
,
1024 BNX2X_F_STATE_TX_STOPPED
,
1028 /* Allowed Function commands */
1029 enum bnx2x_func_cmd
{
1030 BNX2X_F_CMD_HW_INIT
,
1033 BNX2X_F_CMD_HW_RESET
,
1034 BNX2X_F_CMD_TX_STOP
,
1035 BNX2X_F_CMD_TX_START
,
1039 struct bnx2x_func_hw_init_params
{
1040 /* A load phase returned by MCP.
1043 * FW_MSG_CODE_DRV_LOAD_COMMON_CHIP
1044 * FW_MSG_CODE_DRV_LOAD_COMMON
1045 * FW_MSG_CODE_DRV_LOAD_PORT
1046 * FW_MSG_CODE_DRV_LOAD_FUNCTION
1051 struct bnx2x_func_hw_reset_params
{
1052 /* A load phase returned by MCP.
1055 * FW_MSG_CODE_DRV_LOAD_COMMON_CHIP
1056 * FW_MSG_CODE_DRV_LOAD_COMMON
1057 * FW_MSG_CODE_DRV_LOAD_PORT
1058 * FW_MSG_CODE_DRV_LOAD_FUNCTION
1063 struct bnx2x_func_start_params
{
1064 /* Multi Function mode:
1066 * - Switch Dependent
1067 * - Switch Independent
1071 /* Switch Dependent mode outer VLAN tag */
1074 /* Function cos mode */
1075 u8 network_cos_mode
;
1078 struct bnx2x_func_tx_start_params
{
1079 struct priority_cos traffic_type_to_priority_cos
[MAX_TRAFFIC_TYPES
];
1082 u8 dont_add_pri_0_en
;
1085 struct bnx2x_func_state_params
{
1086 struct bnx2x_func_sp_obj
*f_obj
;
1088 /* Current command */
1089 enum bnx2x_func_cmd cmd
;
1091 /* may have RAMROD_COMP_WAIT set only */
1092 unsigned long ramrod_flags
;
1094 /* Params according to the current command */
1096 struct bnx2x_func_hw_init_params hw_init
;
1097 struct bnx2x_func_hw_reset_params hw_reset
;
1098 struct bnx2x_func_start_params start
;
1099 struct bnx2x_func_tx_start_params tx_start
;
1103 struct bnx2x_func_sp_drv_ops
{
1104 /* Init tool + runtime initialization:
1106 * - Common (per Path)
1110 int (*init_hw_cmn_chip
)(struct bnx2x
*bp
);
1111 int (*init_hw_cmn
)(struct bnx2x
*bp
);
1112 int (*init_hw_port
)(struct bnx2x
*bp
);
1113 int (*init_hw_func
)(struct bnx2x
*bp
);
1115 /* Reset Function HW: Common, Port, Function phases. */
1116 void (*reset_hw_cmn
)(struct bnx2x
*bp
);
1117 void (*reset_hw_port
)(struct bnx2x
*bp
);
1118 void (*reset_hw_func
)(struct bnx2x
*bp
);
1120 /* Init/Free GUNZIP resources */
1121 int (*gunzip_init
)(struct bnx2x
*bp
);
1122 void (*gunzip_end
)(struct bnx2x
*bp
);
1124 /* Prepare/Release FW resources */
1125 int (*init_fw
)(struct bnx2x
*bp
);
1126 void (*release_fw
)(struct bnx2x
*bp
);
1129 struct bnx2x_func_sp_obj
{
1130 enum bnx2x_func_state state
, next_state
;
1132 /* BNX2X_FUNC_CMD_XX bits. This object implements "one
1133 * pending" paradigm but for debug and tracing purposes it's
1134 * more convinient to have different bits for different
1137 unsigned long pending
;
1139 /* Buffer to use as a ramrod data and its mapping */
1141 dma_addr_t rdata_mapping
;
1143 /* this mutex validates that when pending flag is taken, the next
1144 * ramrod to be sent will be the one set the pending bit
1146 struct mutex one_pending_mutex
;
1148 /* Driver interface */
1149 struct bnx2x_func_sp_drv_ops
*drv
;
1152 * Performs one state change according to the given parameters.
1154 * @return 0 in case of success and negative value otherwise.
1156 int (*send_cmd
)(struct bnx2x
*bp
,
1157 struct bnx2x_func_state_params
*params
);
1160 * Checks that the requested state transition is legal.
1162 int (*check_transition
)(struct bnx2x
*bp
,
1163 struct bnx2x_func_sp_obj
*o
,
1164 struct bnx2x_func_state_params
*params
);
1167 * Completes the pending command.
1169 int (*complete_cmd
)(struct bnx2x
*bp
,
1170 struct bnx2x_func_sp_obj
*o
,
1171 enum bnx2x_func_cmd cmd
);
1173 int (*wait_comp
)(struct bnx2x
*bp
, struct bnx2x_func_sp_obj
*o
,
1174 enum bnx2x_func_cmd cmd
);
1177 /********************** Interfaces ********************************************/
1178 /* Queueable objects set */
1179 union bnx2x_qable_obj
{
1180 struct bnx2x_vlan_mac_obj vlan_mac
;
1182 /************** Function state update *********/
1183 void bnx2x_init_func_obj(struct bnx2x
*bp
,
1184 struct bnx2x_func_sp_obj
*obj
,
1185 void *rdata
, dma_addr_t rdata_mapping
,
1186 struct bnx2x_func_sp_drv_ops
*drv_iface
);
1188 int bnx2x_func_state_change(struct bnx2x
*bp
,
1189 struct bnx2x_func_state_params
*params
);
1191 enum bnx2x_func_state
bnx2x_func_get_state(struct bnx2x
*bp
,
1192 struct bnx2x_func_sp_obj
*o
);
1193 /******************* Queue State **************/
1194 void bnx2x_init_queue_obj(struct bnx2x
*bp
,
1195 struct bnx2x_queue_sp_obj
*obj
, u8 cl_id
, u32
*cids
,
1196 u8 cid_cnt
, u8 func_id
, void *rdata
,
1197 dma_addr_t rdata_mapping
, unsigned long type
);
1199 int bnx2x_queue_state_change(struct bnx2x
*bp
,
1200 struct bnx2x_queue_state_params
*params
);
1202 /********************* VLAN-MAC ****************/
1203 void bnx2x_init_mac_obj(struct bnx2x
*bp
,
1204 struct bnx2x_vlan_mac_obj
*mac_obj
,
1205 u8 cl_id
, u32 cid
, u8 func_id
, void *rdata
,
1206 dma_addr_t rdata_mapping
, int state
,
1207 unsigned long *pstate
, bnx2x_obj_type type
,
1208 struct bnx2x_credit_pool_obj
*macs_pool
);
1210 void bnx2x_init_vlan_obj(struct bnx2x
*bp
,
1211 struct bnx2x_vlan_mac_obj
*vlan_obj
,
1212 u8 cl_id
, u32 cid
, u8 func_id
, void *rdata
,
1213 dma_addr_t rdata_mapping
, int state
,
1214 unsigned long *pstate
, bnx2x_obj_type type
,
1215 struct bnx2x_credit_pool_obj
*vlans_pool
);
1217 void bnx2x_init_vlan_mac_obj(struct bnx2x
*bp
,
1218 struct bnx2x_vlan_mac_obj
*vlan_mac_obj
,
1219 u8 cl_id
, u32 cid
, u8 func_id
, void *rdata
,
1220 dma_addr_t rdata_mapping
, int state
,
1221 unsigned long *pstate
, bnx2x_obj_type type
,
1222 struct bnx2x_credit_pool_obj
*macs_pool
,
1223 struct bnx2x_credit_pool_obj
*vlans_pool
);
1225 int bnx2x_config_vlan_mac(struct bnx2x
*bp
,
1226 struct bnx2x_vlan_mac_ramrod_params
*p
);
1228 int bnx2x_vlan_mac_move(struct bnx2x
*bp
,
1229 struct bnx2x_vlan_mac_ramrod_params
*p
,
1230 struct bnx2x_vlan_mac_obj
*dest_o
);
1232 /********************* RX MODE ****************/
1234 void bnx2x_init_rx_mode_obj(struct bnx2x
*bp
,
1235 struct bnx2x_rx_mode_obj
*o
);
1238 * Send and RX_MODE ramrod according to the provided parameters.
1241 * @param p Command parameters
1243 * @return 0 - if operation was successfull and there is no pending completions,
1244 * positive number - if there are pending completions,
1245 * negative - if there were errors
1247 int bnx2x_config_rx_mode(struct bnx2x
*bp
,
1248 struct bnx2x_rx_mode_ramrod_params
*p
);
1250 /****************** MULTICASTS ****************/
1252 void bnx2x_init_mcast_obj(struct bnx2x
*bp
,
1253 struct bnx2x_mcast_obj
*mcast_obj
,
1254 u8 mcast_cl_id
, u32 mcast_cid
, u8 func_id
,
1255 u8 engine_id
, void *rdata
, dma_addr_t rdata_mapping
,
1256 int state
, unsigned long *pstate
,
1257 bnx2x_obj_type type
);
1260 * Configure multicast MACs list. May configure a new list
1261 * provided in p->mcast_list (BNX2X_MCAST_CMD_ADD), clean up
1262 * (BNX2X_MCAST_CMD_DEL) or restore (BNX2X_MCAST_CMD_RESTORE) a current
1263 * configuration, continue to execute the pending commands
1264 * (BNX2X_MCAST_CMD_CONT).
1266 * If previous command is still pending or if number of MACs to
1267 * configure is more that maximum number of MACs in one command,
1268 * the current command will be enqueued to the tail of the
1269 * pending commands list.
1273 * @param command to execute: BNX2X_MCAST_CMD_X
1275 * @return 0 is operation was sucessfull and there are no pending completions,
1276 * negative if there were errors, positive if there are pending
1279 int bnx2x_config_mcast(struct bnx2x
*bp
,
1280 struct bnx2x_mcast_ramrod_params
*p
, int cmd
);
1282 /****************** CREDIT POOL ****************/
1283 void bnx2x_init_mac_credit_pool(struct bnx2x
*bp
,
1284 struct bnx2x_credit_pool_obj
*p
, u8 func_id
,
1286 void bnx2x_init_vlan_credit_pool(struct bnx2x
*bp
,
1287 struct bnx2x_credit_pool_obj
*p
, u8 func_id
,
1291 /****************** RSS CONFIGURATION ****************/
1292 void bnx2x_init_rss_config_obj(struct bnx2x
*bp
,
1293 struct bnx2x_rss_config_obj
*rss_obj
,
1294 u8 cl_id
, u32 cid
, u8 func_id
, u8 engine_id
,
1295 void *rdata
, dma_addr_t rdata_mapping
,
1296 int state
, unsigned long *pstate
,
1297 bnx2x_obj_type type
);
1300 * Updates RSS configuration according to provided parameters.
1305 * @return 0 in case of success
1307 int bnx2x_config_rss(struct bnx2x
*bp
,
1308 struct bnx2x_config_rss_params
*p
);
1311 * Return the current ind_table configuration.
1314 * @param ind_table buffer to fill with the current indirection
1315 * table content. Should be at least
1316 * T_ETH_INDIRECTION_TABLE_SIZE bytes long.
1318 void bnx2x_get_rss_ind_table(struct bnx2x_rss_config_obj
*rss_obj
,
1321 #endif /* BNX2X_SP_VERBS */