bnx2x: use FW 7.8.17
[linux-2.6/btrfs-unstable.git] / drivers / net / ethernet / broadcom / bnx2x / bnx2x_sp.h
blob064dba24610d1a13cd93f5e21d1d34aea35aa87f
1 /* bnx2x_sp.h: Broadcom Everest network driver.
3 * Copyright (c) 2011-2013 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
13 * consent.
15 * Maintained by: Eilon Greenstein <eilong@broadcom.com>
16 * Written by: Vladislav Zolotarov
19 #ifndef BNX2X_SP_VERBS
20 #define BNX2X_SP_VERBS
22 struct bnx2x;
23 struct eth_context;
25 /* Bits representing general command's configuration */
26 enum {
27 RAMROD_TX,
28 RAMROD_RX,
29 /* Wait until all pending commands complete */
30 RAMROD_COMP_WAIT,
31 /* Don't send a ramrod, only update a registry */
32 RAMROD_DRV_CLR_ONLY,
33 /* Configure HW according to the current object state */
34 RAMROD_RESTORE,
35 /* Execute the next command now */
36 RAMROD_EXEC,
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.
42 RAMROD_CONT,
43 /* If there is another pending ramrod, wait until it finishes and
44 * re-try to submit this one. This flag can be set only in sleepable
45 * context, and should not be set from the context that completes the
46 * ramrods as deadlock will occur.
48 RAMROD_RETRY,
51 typedef enum {
52 BNX2X_OBJ_TYPE_RX,
53 BNX2X_OBJ_TYPE_TX,
54 BNX2X_OBJ_TYPE_RX_TX,
55 } bnx2x_obj_type;
57 /* Public slow path states */
58 enum {
59 BNX2X_FILTER_MAC_PENDING,
60 BNX2X_FILTER_VLAN_PENDING,
61 BNX2X_FILTER_VLAN_MAC_PENDING,
62 BNX2X_FILTER_RX_MODE_PENDING,
63 BNX2X_FILTER_RX_MODE_SCHED,
64 BNX2X_FILTER_ISCSI_ETH_START_SCHED,
65 BNX2X_FILTER_ISCSI_ETH_STOP_SCHED,
66 BNX2X_FILTER_FCOE_ETH_START_SCHED,
67 BNX2X_FILTER_FCOE_ETH_STOP_SCHED,
68 BNX2X_FILTER_MCAST_PENDING,
69 BNX2X_FILTER_MCAST_SCHED,
70 BNX2X_FILTER_RSS_CONF_PENDING,
71 BNX2X_AFEX_FCOE_Q_UPDATE_PENDING,
72 BNX2X_AFEX_PENDING_VIFSET_MCP_ACK
75 struct bnx2x_raw_obj {
76 u8 func_id;
78 /* Queue params */
79 u8 cl_id;
80 u32 cid;
82 /* Ramrod data buffer params */
83 void *rdata;
84 dma_addr_t rdata_mapping;
86 /* Ramrod state params */
87 int state; /* "ramrod is pending" state bit */
88 unsigned long *pstate; /* pointer to state buffer */
90 bnx2x_obj_type obj_type;
92 int (*wait_comp)(struct bnx2x *bp,
93 struct bnx2x_raw_obj *o);
95 bool (*check_pending)(struct bnx2x_raw_obj *o);
96 void (*clear_pending)(struct bnx2x_raw_obj *o);
97 void (*set_pending)(struct bnx2x_raw_obj *o);
100 /************************* VLAN-MAC commands related parameters ***************/
101 struct bnx2x_mac_ramrod_data {
102 u8 mac[ETH_ALEN];
103 u8 is_inner_mac;
106 struct bnx2x_vlan_ramrod_data {
107 u16 vlan;
110 struct bnx2x_vlan_mac_ramrod_data {
111 u8 mac[ETH_ALEN];
112 u8 is_inner_mac;
113 u16 vlan;
116 union bnx2x_classification_ramrod_data {
117 struct bnx2x_mac_ramrod_data mac;
118 struct bnx2x_vlan_ramrod_data vlan;
119 struct bnx2x_vlan_mac_ramrod_data vlan_mac;
122 /* VLAN_MAC commands */
123 enum bnx2x_vlan_mac_cmd {
124 BNX2X_VLAN_MAC_ADD,
125 BNX2X_VLAN_MAC_DEL,
126 BNX2X_VLAN_MAC_MOVE,
129 struct bnx2x_vlan_mac_data {
130 /* Requested command: BNX2X_VLAN_MAC_XX */
131 enum bnx2x_vlan_mac_cmd cmd;
133 * used to contain the data related vlan_mac_flags bits from
134 * ramrod parameters.
136 unsigned long vlan_mac_flags;
138 /* Needed for MOVE command */
139 struct bnx2x_vlan_mac_obj *target_obj;
141 union bnx2x_classification_ramrod_data u;
144 /*************************** Exe Queue obj ************************************/
145 union bnx2x_exe_queue_cmd_data {
146 struct bnx2x_vlan_mac_data vlan_mac;
148 struct {
149 /* TODO */
150 } mcast;
153 struct bnx2x_exeq_elem {
154 struct list_head link;
156 /* Length of this element in the exe_chunk. */
157 int cmd_len;
159 union bnx2x_exe_queue_cmd_data cmd_data;
162 union bnx2x_qable_obj;
164 union bnx2x_exeq_comp_elem {
165 union event_ring_elem *elem;
168 struct bnx2x_exe_queue_obj;
170 typedef int (*exe_q_validate)(struct bnx2x *bp,
171 union bnx2x_qable_obj *o,
172 struct bnx2x_exeq_elem *elem);
174 typedef int (*exe_q_remove)(struct bnx2x *bp,
175 union bnx2x_qable_obj *o,
176 struct bnx2x_exeq_elem *elem);
178 /* Return positive if entry was optimized, 0 - if not, negative
179 * in case of an error.
181 typedef int (*exe_q_optimize)(struct bnx2x *bp,
182 union bnx2x_qable_obj *o,
183 struct bnx2x_exeq_elem *elem);
184 typedef int (*exe_q_execute)(struct bnx2x *bp,
185 union bnx2x_qable_obj *o,
186 struct list_head *exe_chunk,
187 unsigned long *ramrod_flags);
188 typedef struct bnx2x_exeq_elem *
189 (*exe_q_get)(struct bnx2x_exe_queue_obj *o,
190 struct bnx2x_exeq_elem *elem);
192 struct bnx2x_exe_queue_obj {
194 * Commands pending for an execution.
196 struct list_head exe_queue;
199 * Commands pending for an completion.
201 struct list_head pending_comp;
203 spinlock_t lock;
205 /* Maximum length of commands' list for one execution */
206 int exe_chunk_len;
208 union bnx2x_qable_obj *owner;
210 /****** Virtual functions ******/
212 * Called before commands execution for commands that are really
213 * going to be executed (after 'optimize').
215 * Must run under exe_queue->lock
217 exe_q_validate validate;
220 * Called before removing pending commands, cleaning allocated
221 * resources (e.g., credits from validate)
223 exe_q_remove remove;
226 * This will try to cancel the current pending commands list
227 * considering the new command.
229 * Returns the number of optimized commands or a negative error code
231 * Must run under exe_queue->lock
233 exe_q_optimize optimize;
236 * Run the next commands chunk (owner specific).
238 exe_q_execute execute;
241 * Return the exe_queue element containing the specific command
242 * if any. Otherwise return NULL.
244 exe_q_get get;
246 /***************** Classification verbs: Set/Del MAC/VLAN/VLAN-MAC ************/
248 * Element in the VLAN_MAC registry list having all currenty configured
249 * rules.
251 struct bnx2x_vlan_mac_registry_elem {
252 struct list_head link;
255 * Used to store the cam offset used for the mac/vlan/vlan-mac.
256 * Relevant for 57710 and 57711 only. VLANs and MACs share the
257 * same CAM for these chips.
259 int cam_offset;
261 /* Needed for DEL and RESTORE flows */
262 unsigned long vlan_mac_flags;
264 union bnx2x_classification_ramrod_data u;
267 /* Bits representing VLAN_MAC commands specific flags */
268 enum {
269 BNX2X_UC_LIST_MAC,
270 BNX2X_ETH_MAC,
271 BNX2X_ISCSI_ETH_MAC,
272 BNX2X_NETQ_ETH_MAC,
273 BNX2X_DONT_CONSUME_CAM_CREDIT,
274 BNX2X_DONT_CONSUME_CAM_CREDIT_DEST,
277 struct bnx2x_vlan_mac_ramrod_params {
278 /* Object to run the command from */
279 struct bnx2x_vlan_mac_obj *vlan_mac_obj;
281 /* General command flags: COMP_WAIT, etc. */
282 unsigned long ramrod_flags;
284 /* Command specific configuration request */
285 struct bnx2x_vlan_mac_data user_req;
288 struct bnx2x_vlan_mac_obj {
289 struct bnx2x_raw_obj raw;
291 /* Bookkeeping list: will prevent the addition of already existing
292 * entries.
294 struct list_head head;
296 /* TODO: Add it's initialization in the init functions */
297 struct bnx2x_exe_queue_obj exe_queue;
299 /* MACs credit pool */
300 struct bnx2x_credit_pool_obj *macs_pool;
302 /* VLANs credit pool */
303 struct bnx2x_credit_pool_obj *vlans_pool;
305 /* RAMROD command to be used */
306 int ramrod_cmd;
308 /* copy first n elements onto preallocated buffer
310 * @param n number of elements to get
311 * @param buf buffer preallocated by caller into which elements
312 * will be copied. Note elements are 4-byte aligned
313 * so buffer size must be able to accomodate the
314 * aligned elements.
316 * @return number of copied bytes
318 int (*get_n_elements)(struct bnx2x *bp,
319 struct bnx2x_vlan_mac_obj *o, int n, u8 *base,
320 u8 stride, u8 size);
323 * Checks if ADD-ramrod with the given params may be performed.
325 * @return zero if the element may be added
328 int (*check_add)(struct bnx2x *bp,
329 struct bnx2x_vlan_mac_obj *o,
330 union bnx2x_classification_ramrod_data *data);
333 * Checks if DEL-ramrod with the given params may be performed.
335 * @return true if the element may be deleted
337 struct bnx2x_vlan_mac_registry_elem *
338 (*check_del)(struct bnx2x *bp,
339 struct bnx2x_vlan_mac_obj *o,
340 union bnx2x_classification_ramrod_data *data);
343 * Checks if DEL-ramrod with the given params may be performed.
345 * @return true if the element may be deleted
347 bool (*check_move)(struct bnx2x *bp,
348 struct bnx2x_vlan_mac_obj *src_o,
349 struct bnx2x_vlan_mac_obj *dst_o,
350 union bnx2x_classification_ramrod_data *data);
353 * Update the relevant credit object(s) (consume/return
354 * correspondingly).
356 bool (*get_credit)(struct bnx2x_vlan_mac_obj *o);
357 bool (*put_credit)(struct bnx2x_vlan_mac_obj *o);
358 bool (*get_cam_offset)(struct bnx2x_vlan_mac_obj *o, int *offset);
359 bool (*put_cam_offset)(struct bnx2x_vlan_mac_obj *o, int offset);
362 * Configures one rule in the ramrod data buffer.
364 void (*set_one_rule)(struct bnx2x *bp,
365 struct bnx2x_vlan_mac_obj *o,
366 struct bnx2x_exeq_elem *elem, int rule_idx,
367 int cam_offset);
370 * Delete all configured elements having the given
371 * vlan_mac_flags specification. Assumes no pending for
372 * execution commands. Will schedule all all currently
373 * configured MACs/VLANs/VLAN-MACs matching the vlan_mac_flags
374 * specification for deletion and will use the given
375 * ramrod_flags for the last DEL operation.
377 * @param bp
378 * @param o
379 * @param ramrod_flags RAMROD_XX flags
381 * @return 0 if the last operation has completed successfully
382 * and there are no more elements left, positive value
383 * if there are pending for completion commands,
384 * negative value in case of failure.
386 int (*delete_all)(struct bnx2x *bp,
387 struct bnx2x_vlan_mac_obj *o,
388 unsigned long *vlan_mac_flags,
389 unsigned long *ramrod_flags);
392 * Reconfigures the next MAC/VLAN/VLAN-MAC element from the previously
393 * configured elements list.
395 * @param bp
396 * @param p Command parameters (RAMROD_COMP_WAIT bit in
397 * ramrod_flags is only taken into an account)
398 * @param ppos a pointer to the cooky that should be given back in the
399 * next call to make function handle the next element. If
400 * *ppos is set to NULL it will restart the iterator.
401 * If returned *ppos == NULL this means that the last
402 * element has been handled.
404 * @return int
406 int (*restore)(struct bnx2x *bp,
407 struct bnx2x_vlan_mac_ramrod_params *p,
408 struct bnx2x_vlan_mac_registry_elem **ppos);
411 * Should be called on a completion arival.
413 * @param bp
414 * @param o
415 * @param cqe Completion element we are handling
416 * @param ramrod_flags if RAMROD_CONT is set the next bulk of
417 * pending commands will be executed.
418 * RAMROD_DRV_CLR_ONLY and RAMROD_RESTORE
419 * may also be set if needed.
421 * @return 0 if there are neither pending nor waiting for
422 * completion commands. Positive value if there are
423 * pending for execution or for completion commands.
424 * Negative value in case of an error (including an
425 * error in the cqe).
427 int (*complete)(struct bnx2x *bp, struct bnx2x_vlan_mac_obj *o,
428 union event_ring_elem *cqe,
429 unsigned long *ramrod_flags);
432 * Wait for completion of all commands. Don't schedule new ones,
433 * just wait. It assumes that the completion code will schedule
434 * for new commands.
436 int (*wait)(struct bnx2x *bp, struct bnx2x_vlan_mac_obj *o);
439 enum {
440 BNX2X_LLH_CAM_ISCSI_ETH_LINE = 0,
441 BNX2X_LLH_CAM_ETH_LINE,
442 BNX2X_LLH_CAM_MAX_PF_LINE = NIG_REG_LLH1_FUNC_MEM_SIZE / 2
445 void bnx2x_set_mac_in_nig(struct bnx2x *bp,
446 bool add, unsigned char *dev_addr, int index);
448 /** RX_MODE verbs:DROP_ALL/ACCEPT_ALL/ACCEPT_ALL_MULTI/ACCEPT_ALL_VLAN/NORMAL */
450 /* RX_MODE ramrod spesial flags: set in rx_mode_flags field in
451 * a bnx2x_rx_mode_ramrod_params.
453 enum {
454 BNX2X_RX_MODE_FCOE_ETH,
455 BNX2X_RX_MODE_ISCSI_ETH,
458 enum {
459 BNX2X_ACCEPT_UNICAST,
460 BNX2X_ACCEPT_MULTICAST,
461 BNX2X_ACCEPT_ALL_UNICAST,
462 BNX2X_ACCEPT_ALL_MULTICAST,
463 BNX2X_ACCEPT_BROADCAST,
464 BNX2X_ACCEPT_UNMATCHED,
465 BNX2X_ACCEPT_ANY_VLAN
468 struct bnx2x_rx_mode_ramrod_params {
469 struct bnx2x_rx_mode_obj *rx_mode_obj;
470 unsigned long *pstate;
471 int state;
472 u8 cl_id;
473 u32 cid;
474 u8 func_id;
475 unsigned long ramrod_flags;
476 unsigned long rx_mode_flags;
479 * rdata is either a pointer to eth_filter_rules_ramrod_data(e2) or to
480 * a tstorm_eth_mac_filter_config (e1x).
482 void *rdata;
483 dma_addr_t rdata_mapping;
485 /* Rx mode settings */
486 unsigned long rx_accept_flags;
488 /* internal switching settings */
489 unsigned long tx_accept_flags;
492 struct bnx2x_rx_mode_obj {
493 int (*config_rx_mode)(struct bnx2x *bp,
494 struct bnx2x_rx_mode_ramrod_params *p);
496 int (*wait_comp)(struct bnx2x *bp,
497 struct bnx2x_rx_mode_ramrod_params *p);
500 /********************** Set multicast group ***********************************/
502 struct bnx2x_mcast_list_elem {
503 struct list_head link;
504 u8 *mac;
507 union bnx2x_mcast_config_data {
508 u8 *mac;
509 u8 bin; /* used in a RESTORE flow */
512 struct bnx2x_mcast_ramrod_params {
513 struct bnx2x_mcast_obj *mcast_obj;
515 /* Relevant options are RAMROD_COMP_WAIT and RAMROD_DRV_CLR_ONLY */
516 unsigned long ramrod_flags;
518 struct list_head mcast_list; /* list of struct bnx2x_mcast_list_elem */
519 /** TODO:
520 * - rename it to macs_num.
521 * - Add a new command type for handling pending commands
522 * (remove "zero semantics").
524 * Length of mcast_list. If zero and ADD_CONT command - post
525 * pending commands.
527 int mcast_list_len;
530 enum bnx2x_mcast_cmd {
531 BNX2X_MCAST_CMD_ADD,
532 BNX2X_MCAST_CMD_CONT,
533 BNX2X_MCAST_CMD_DEL,
534 BNX2X_MCAST_CMD_RESTORE,
537 struct bnx2x_mcast_obj {
538 struct bnx2x_raw_obj raw;
540 union {
541 struct {
542 #define BNX2X_MCAST_BINS_NUM 256
543 #define BNX2X_MCAST_VEC_SZ (BNX2X_MCAST_BINS_NUM / 64)
544 u64 vec[BNX2X_MCAST_VEC_SZ];
546 /** Number of BINs to clear. Should be updated
547 * immediately when a command arrives in order to
548 * properly create DEL commands.
550 int num_bins_set;
551 } aprox_match;
553 struct {
554 struct list_head macs;
555 int num_macs_set;
556 } exact_match;
557 } registry;
559 /* Pending commands */
560 struct list_head pending_cmds_head;
562 /* A state that is set in raw.pstate, when there are pending commands */
563 int sched_state;
565 /* Maximal number of mcast MACs configured in one command */
566 int max_cmd_len;
568 /* Total number of currently pending MACs to configure: both
569 * in the pending commands list and in the current command.
571 int total_pending_num;
573 u8 engine_id;
576 * @param cmd command to execute (BNX2X_MCAST_CMD_X, see above)
578 int (*config_mcast)(struct bnx2x *bp,
579 struct bnx2x_mcast_ramrod_params *p,
580 enum bnx2x_mcast_cmd cmd);
583 * Fills the ramrod data during the RESTORE flow.
585 * @param bp
586 * @param o
587 * @param start_idx Registry index to start from
588 * @param rdata_idx Index in the ramrod data to start from
590 * @return -1 if we handled the whole registry or index of the last
591 * handled registry element.
593 int (*hdl_restore)(struct bnx2x *bp, struct bnx2x_mcast_obj *o,
594 int start_bin, int *rdata_idx);
596 int (*enqueue_cmd)(struct bnx2x *bp, struct bnx2x_mcast_obj *o,
597 struct bnx2x_mcast_ramrod_params *p,
598 enum bnx2x_mcast_cmd cmd);
600 void (*set_one_rule)(struct bnx2x *bp,
601 struct bnx2x_mcast_obj *o, int idx,
602 union bnx2x_mcast_config_data *cfg_data,
603 enum bnx2x_mcast_cmd cmd);
605 /** Checks if there are more mcast MACs to be set or a previous
606 * command is still pending.
608 bool (*check_pending)(struct bnx2x_mcast_obj *o);
611 * Set/Clear/Check SCHEDULED state of the object
613 void (*set_sched)(struct bnx2x_mcast_obj *o);
614 void (*clear_sched)(struct bnx2x_mcast_obj *o);
615 bool (*check_sched)(struct bnx2x_mcast_obj *o);
617 /* Wait until all pending commands complete */
618 int (*wait_comp)(struct bnx2x *bp, struct bnx2x_mcast_obj *o);
621 * Handle the internal object counters needed for proper
622 * commands handling. Checks that the provided parameters are
623 * feasible.
625 int (*validate)(struct bnx2x *bp,
626 struct bnx2x_mcast_ramrod_params *p,
627 enum bnx2x_mcast_cmd cmd);
630 * Restore the values of internal counters in case of a failure.
632 void (*revert)(struct bnx2x *bp,
633 struct bnx2x_mcast_ramrod_params *p,
634 int old_num_bins);
636 int (*get_registry_size)(struct bnx2x_mcast_obj *o);
637 void (*set_registry_size)(struct bnx2x_mcast_obj *o, int n);
640 /*************************** Credit handling **********************************/
641 struct bnx2x_credit_pool_obj {
643 /* Current amount of credit in the pool */
644 atomic_t credit;
646 /* Maximum allowed credit. put() will check against it. */
647 int pool_sz;
650 * Allocate a pool table statically.
652 * Currently the mamimum allowed size is MAX_MAC_CREDIT_E2(272)
654 * The set bit in the table will mean that the entry is available.
656 #define BNX2X_POOL_VEC_SIZE (MAX_MAC_CREDIT_E2 / 64)
657 u64 pool_mirror[BNX2X_POOL_VEC_SIZE];
659 /* Base pool offset (initialized differently */
660 int base_pool_offset;
663 * Get the next free pool entry.
665 * @return true if there was a free entry in the pool
667 bool (*get_entry)(struct bnx2x_credit_pool_obj *o, int *entry);
670 * Return the entry back to the pool.
672 * @return true if entry is legal and has been successfully
673 * returned to the pool.
675 bool (*put_entry)(struct bnx2x_credit_pool_obj *o, int entry);
678 * Get the requested amount of credit from the pool.
680 * @param cnt Amount of requested credit
681 * @return true if the operation is successful
683 bool (*get)(struct bnx2x_credit_pool_obj *o, int cnt);
686 * Returns the credit to the pool.
688 * @param cnt Amount of credit to return
689 * @return true if the operation is successful
691 bool (*put)(struct bnx2x_credit_pool_obj *o, int cnt);
694 * Reads the current amount of credit.
696 int (*check)(struct bnx2x_credit_pool_obj *o);
699 /*************************** RSS configuration ********************************/
700 enum {
701 /* RSS_MODE bits are mutually exclusive */
702 BNX2X_RSS_MODE_DISABLED,
703 BNX2X_RSS_MODE_REGULAR,
705 BNX2X_RSS_SET_SRCH, /* Setup searcher, E1x specific flag */
707 BNX2X_RSS_IPV4,
708 BNX2X_RSS_IPV4_TCP,
709 BNX2X_RSS_IPV4_UDP,
710 BNX2X_RSS_IPV6,
711 BNX2X_RSS_IPV6_TCP,
712 BNX2X_RSS_IPV6_UDP,
715 struct bnx2x_config_rss_params {
716 struct bnx2x_rss_config_obj *rss_obj;
718 /* may have RAMROD_COMP_WAIT set only */
719 unsigned long ramrod_flags;
721 /* BNX2X_RSS_X bits */
722 unsigned long rss_flags;
724 /* Number hash bits to take into an account */
725 u8 rss_result_mask;
727 /* Indirection table */
728 u8 ind_table[T_ETH_INDIRECTION_TABLE_SIZE];
730 /* RSS hash values */
731 u32 rss_key[10];
733 /* valid only iff BNX2X_RSS_UPDATE_TOE is set */
734 u16 toe_rss_bitmap;
737 struct bnx2x_rss_config_obj {
738 struct bnx2x_raw_obj raw;
740 /* RSS engine to use */
741 u8 engine_id;
743 /* Last configured indirection table */
744 u8 ind_table[T_ETH_INDIRECTION_TABLE_SIZE];
746 /* flags for enabling 4-tupple hash on UDP */
747 u8 udp_rss_v4;
748 u8 udp_rss_v6;
750 int (*config_rss)(struct bnx2x *bp,
751 struct bnx2x_config_rss_params *p);
754 /*********************** Queue state update ***********************************/
756 /* UPDATE command options */
757 enum {
758 BNX2X_Q_UPDATE_IN_VLAN_REM,
759 BNX2X_Q_UPDATE_IN_VLAN_REM_CHNG,
760 BNX2X_Q_UPDATE_OUT_VLAN_REM,
761 BNX2X_Q_UPDATE_OUT_VLAN_REM_CHNG,
762 BNX2X_Q_UPDATE_ANTI_SPOOF,
763 BNX2X_Q_UPDATE_ANTI_SPOOF_CHNG,
764 BNX2X_Q_UPDATE_ACTIVATE,
765 BNX2X_Q_UPDATE_ACTIVATE_CHNG,
766 BNX2X_Q_UPDATE_DEF_VLAN_EN,
767 BNX2X_Q_UPDATE_DEF_VLAN_EN_CHNG,
768 BNX2X_Q_UPDATE_SILENT_VLAN_REM_CHNG,
769 BNX2X_Q_UPDATE_SILENT_VLAN_REM
772 /* Allowed Queue states */
773 enum bnx2x_q_state {
774 BNX2X_Q_STATE_RESET,
775 BNX2X_Q_STATE_INITIALIZED,
776 BNX2X_Q_STATE_ACTIVE,
777 BNX2X_Q_STATE_MULTI_COS,
778 BNX2X_Q_STATE_MCOS_TERMINATED,
779 BNX2X_Q_STATE_INACTIVE,
780 BNX2X_Q_STATE_STOPPED,
781 BNX2X_Q_STATE_TERMINATED,
782 BNX2X_Q_STATE_FLRED,
783 BNX2X_Q_STATE_MAX,
786 /* Allowed Queue states */
787 enum bnx2x_q_logical_state {
788 BNX2X_Q_LOGICAL_STATE_ACTIVE,
789 BNX2X_Q_LOGICAL_STATE_STOPPED,
792 /* Allowed commands */
793 enum bnx2x_queue_cmd {
794 BNX2X_Q_CMD_INIT,
795 BNX2X_Q_CMD_SETUP,
796 BNX2X_Q_CMD_SETUP_TX_ONLY,
797 BNX2X_Q_CMD_DEACTIVATE,
798 BNX2X_Q_CMD_ACTIVATE,
799 BNX2X_Q_CMD_UPDATE,
800 BNX2X_Q_CMD_UPDATE_TPA,
801 BNX2X_Q_CMD_HALT,
802 BNX2X_Q_CMD_CFC_DEL,
803 BNX2X_Q_CMD_TERMINATE,
804 BNX2X_Q_CMD_EMPTY,
805 BNX2X_Q_CMD_MAX,
808 /* queue SETUP + INIT flags */
809 enum {
810 BNX2X_Q_FLG_TPA,
811 BNX2X_Q_FLG_TPA_IPV6,
812 BNX2X_Q_FLG_TPA_GRO,
813 BNX2X_Q_FLG_STATS,
814 BNX2X_Q_FLG_ZERO_STATS,
815 BNX2X_Q_FLG_ACTIVE,
816 BNX2X_Q_FLG_OV,
817 BNX2X_Q_FLG_VLAN,
818 BNX2X_Q_FLG_COS,
819 BNX2X_Q_FLG_HC,
820 BNX2X_Q_FLG_HC_EN,
821 BNX2X_Q_FLG_DHC,
822 BNX2X_Q_FLG_FCOE,
823 BNX2X_Q_FLG_LEADING_RSS,
824 BNX2X_Q_FLG_MCAST,
825 BNX2X_Q_FLG_DEF_VLAN,
826 BNX2X_Q_FLG_TX_SWITCH,
827 BNX2X_Q_FLG_TX_SEC,
828 BNX2X_Q_FLG_ANTI_SPOOF,
829 BNX2X_Q_FLG_SILENT_VLAN_REM,
830 BNX2X_Q_FLG_FORCE_DEFAULT_PRI,
831 BNX2X_Q_FLG_PCSUM_ON_PKT
834 /* Queue type options: queue type may be a compination of below. */
835 enum bnx2x_q_type {
836 /** TODO: Consider moving both these flags into the init()
837 * ramrod params.
839 BNX2X_Q_TYPE_HAS_RX,
840 BNX2X_Q_TYPE_HAS_TX,
843 #define BNX2X_PRIMARY_CID_INDEX 0
844 #define BNX2X_MULTI_TX_COS_E1X 3 /* QM only */
845 #define BNX2X_MULTI_TX_COS_E2_E3A0 2
846 #define BNX2X_MULTI_TX_COS_E3B0 3
847 #define BNX2X_MULTI_TX_COS 3 /* Maximum possible */
849 #define MAC_PAD (ALIGN(ETH_ALEN, sizeof(u32)) - ETH_ALEN)
851 struct bnx2x_queue_init_params {
852 struct {
853 unsigned long flags;
854 u16 hc_rate;
855 u8 fw_sb_id;
856 u8 sb_cq_index;
857 } tx;
859 struct {
860 unsigned long flags;
861 u16 hc_rate;
862 u8 fw_sb_id;
863 u8 sb_cq_index;
864 } rx;
866 /* CID context in the host memory */
867 struct eth_context *cxts[BNX2X_MULTI_TX_COS];
869 /* maximum number of cos supported by hardware */
870 u8 max_cos;
873 struct bnx2x_queue_terminate_params {
874 /* index within the tx_only cids of this queue object */
875 u8 cid_index;
878 struct bnx2x_queue_cfc_del_params {
879 /* index within the tx_only cids of this queue object */
880 u8 cid_index;
883 struct bnx2x_queue_update_params {
884 unsigned long update_flags; /* BNX2X_Q_UPDATE_XX bits */
885 u16 def_vlan;
886 u16 silent_removal_value;
887 u16 silent_removal_mask;
888 /* index within the tx_only cids of this queue object */
889 u8 cid_index;
892 struct rxq_pause_params {
893 u16 bd_th_lo;
894 u16 bd_th_hi;
895 u16 rcq_th_lo;
896 u16 rcq_th_hi;
897 u16 sge_th_lo; /* valid iff BNX2X_Q_FLG_TPA */
898 u16 sge_th_hi; /* valid iff BNX2X_Q_FLG_TPA */
899 u16 pri_map;
902 /* general */
903 struct bnx2x_general_setup_params {
904 /* valid iff BNX2X_Q_FLG_STATS */
905 u8 stat_id;
907 u8 spcl_id;
908 u16 mtu;
909 u8 cos;
912 struct bnx2x_rxq_setup_params {
913 /* dma */
914 dma_addr_t dscr_map;
915 dma_addr_t sge_map;
916 dma_addr_t rcq_map;
917 dma_addr_t rcq_np_map;
919 u16 drop_flags;
920 u16 buf_sz;
921 u8 fw_sb_id;
922 u8 cl_qzone_id;
924 /* valid iff BNX2X_Q_FLG_TPA */
925 u16 tpa_agg_sz;
926 u16 sge_buf_sz;
927 u8 max_sges_pkt;
928 u8 max_tpa_queues;
929 u8 rss_engine_id;
931 /* valid iff BNX2X_Q_FLG_MCAST */
932 u8 mcast_engine_id;
934 u8 cache_line_log;
936 u8 sb_cq_index;
938 /* valid iff BXN2X_Q_FLG_SILENT_VLAN_REM */
939 u16 silent_removal_value;
940 u16 silent_removal_mask;
943 struct bnx2x_txq_setup_params {
944 /* dma */
945 dma_addr_t dscr_map;
947 u8 fw_sb_id;
948 u8 sb_cq_index;
949 u8 cos; /* valid iff BNX2X_Q_FLG_COS */
950 u16 traffic_type;
951 /* equals to the leading rss client id, used for TX classification*/
952 u8 tss_leading_cl_id;
954 /* valid iff BNX2X_Q_FLG_DEF_VLAN */
955 u16 default_vlan;
958 struct bnx2x_queue_setup_params {
959 struct bnx2x_general_setup_params gen_params;
960 struct bnx2x_txq_setup_params txq_params;
961 struct bnx2x_rxq_setup_params rxq_params;
962 struct rxq_pause_params pause_params;
963 unsigned long flags;
966 struct bnx2x_queue_setup_tx_only_params {
967 struct bnx2x_general_setup_params gen_params;
968 struct bnx2x_txq_setup_params txq_params;
969 unsigned long flags;
970 /* index within the tx_only cids of this queue object */
971 u8 cid_index;
974 struct bnx2x_queue_state_params {
975 struct bnx2x_queue_sp_obj *q_obj;
977 /* Current command */
978 enum bnx2x_queue_cmd cmd;
980 /* may have RAMROD_COMP_WAIT set only */
981 unsigned long ramrod_flags;
983 /* Params according to the current command */
984 union {
985 struct bnx2x_queue_update_params update;
986 struct bnx2x_queue_setup_params setup;
987 struct bnx2x_queue_init_params init;
988 struct bnx2x_queue_setup_tx_only_params tx_only;
989 struct bnx2x_queue_terminate_params terminate;
990 struct bnx2x_queue_cfc_del_params cfc_del;
991 } params;
994 struct bnx2x_viflist_params {
995 u8 echo_res;
996 u8 func_bit_map_res;
999 struct bnx2x_queue_sp_obj {
1000 u32 cids[BNX2X_MULTI_TX_COS];
1001 u8 cl_id;
1002 u8 func_id;
1005 * number of traffic classes supported by queue.
1006 * The primary connection of the queue suppotrs the first traffic
1007 * class. Any further traffic class is suppoted by a tx-only
1008 * connection.
1010 * Therefore max_cos is also a number of valid entries in the cids
1011 * array.
1013 u8 max_cos;
1014 u8 num_tx_only, next_tx_only;
1016 enum bnx2x_q_state state, next_state;
1018 /* bits from enum bnx2x_q_type */
1019 unsigned long type;
1021 /* BNX2X_Q_CMD_XX bits. This object implements "one
1022 * pending" paradigm but for debug and tracing purposes it's
1023 * more convinient to have different bits for different
1024 * commands.
1026 unsigned long pending;
1028 /* Buffer to use as a ramrod data and its mapping */
1029 void *rdata;
1030 dma_addr_t rdata_mapping;
1033 * Performs one state change according to the given parameters.
1035 * @return 0 in case of success and negative value otherwise.
1037 int (*send_cmd)(struct bnx2x *bp,
1038 struct bnx2x_queue_state_params *params);
1041 * Sets the pending bit according to the requested transition.
1043 int (*set_pending)(struct bnx2x_queue_sp_obj *o,
1044 struct bnx2x_queue_state_params *params);
1047 * Checks that the requested state transition is legal.
1049 int (*check_transition)(struct bnx2x *bp,
1050 struct bnx2x_queue_sp_obj *o,
1051 struct bnx2x_queue_state_params *params);
1054 * Completes the pending command.
1056 int (*complete_cmd)(struct bnx2x *bp,
1057 struct bnx2x_queue_sp_obj *o,
1058 enum bnx2x_queue_cmd);
1060 int (*wait_comp)(struct bnx2x *bp,
1061 struct bnx2x_queue_sp_obj *o,
1062 enum bnx2x_queue_cmd cmd);
1065 /********************** Function state update *********************************/
1066 /* Allowed Function states */
1067 enum bnx2x_func_state {
1068 BNX2X_F_STATE_RESET,
1069 BNX2X_F_STATE_INITIALIZED,
1070 BNX2X_F_STATE_STARTED,
1071 BNX2X_F_STATE_TX_STOPPED,
1072 BNX2X_F_STATE_MAX,
1075 /* Allowed Function commands */
1076 enum bnx2x_func_cmd {
1077 BNX2X_F_CMD_HW_INIT,
1078 BNX2X_F_CMD_START,
1079 BNX2X_F_CMD_STOP,
1080 BNX2X_F_CMD_HW_RESET,
1081 BNX2X_F_CMD_AFEX_UPDATE,
1082 BNX2X_F_CMD_AFEX_VIFLISTS,
1083 BNX2X_F_CMD_TX_STOP,
1084 BNX2X_F_CMD_TX_START,
1085 BNX2X_F_CMD_SWITCH_UPDATE,
1086 BNX2X_F_CMD_MAX,
1089 struct bnx2x_func_hw_init_params {
1090 /* A load phase returned by MCP.
1092 * May be:
1093 * FW_MSG_CODE_DRV_LOAD_COMMON_CHIP
1094 * FW_MSG_CODE_DRV_LOAD_COMMON
1095 * FW_MSG_CODE_DRV_LOAD_PORT
1096 * FW_MSG_CODE_DRV_LOAD_FUNCTION
1098 u32 load_phase;
1101 struct bnx2x_func_hw_reset_params {
1102 /* A load phase returned by MCP.
1104 * May be:
1105 * FW_MSG_CODE_DRV_LOAD_COMMON_CHIP
1106 * FW_MSG_CODE_DRV_LOAD_COMMON
1107 * FW_MSG_CODE_DRV_LOAD_PORT
1108 * FW_MSG_CODE_DRV_LOAD_FUNCTION
1110 u32 reset_phase;
1113 struct bnx2x_func_start_params {
1114 /* Multi Function mode:
1115 * - Single Function
1116 * - Switch Dependent
1117 * - Switch Independent
1119 u16 mf_mode;
1121 /* Switch Dependent mode outer VLAN tag */
1122 u16 sd_vlan_tag;
1124 /* Function cos mode */
1125 u8 network_cos_mode;
1128 struct bnx2x_func_switch_update_params {
1129 u8 suspend;
1132 struct bnx2x_func_afex_update_params {
1133 u16 vif_id;
1134 u16 afex_default_vlan;
1135 u8 allowed_priorities;
1138 struct bnx2x_func_afex_viflists_params {
1139 u16 vif_list_index;
1140 u8 func_bit_map;
1141 u8 afex_vif_list_command;
1142 u8 func_to_clear;
1144 struct bnx2x_func_tx_start_params {
1145 struct priority_cos traffic_type_to_priority_cos[MAX_TRAFFIC_TYPES];
1146 u8 dcb_enabled;
1147 u8 dcb_version;
1148 u8 dont_add_pri_0_en;
1151 struct bnx2x_func_state_params {
1152 struct bnx2x_func_sp_obj *f_obj;
1154 /* Current command */
1155 enum bnx2x_func_cmd cmd;
1157 /* may have RAMROD_COMP_WAIT set only */
1158 unsigned long ramrod_flags;
1160 /* Params according to the current command */
1161 union {
1162 struct bnx2x_func_hw_init_params hw_init;
1163 struct bnx2x_func_hw_reset_params hw_reset;
1164 struct bnx2x_func_start_params start;
1165 struct bnx2x_func_switch_update_params switch_update;
1166 struct bnx2x_func_afex_update_params afex_update;
1167 struct bnx2x_func_afex_viflists_params afex_viflists;
1168 struct bnx2x_func_tx_start_params tx_start;
1169 } params;
1172 struct bnx2x_func_sp_drv_ops {
1173 /* Init tool + runtime initialization:
1174 * - Common Chip
1175 * - Common (per Path)
1176 * - Port
1177 * - Function phases
1179 int (*init_hw_cmn_chip)(struct bnx2x *bp);
1180 int (*init_hw_cmn)(struct bnx2x *bp);
1181 int (*init_hw_port)(struct bnx2x *bp);
1182 int (*init_hw_func)(struct bnx2x *bp);
1184 /* Reset Function HW: Common, Port, Function phases. */
1185 void (*reset_hw_cmn)(struct bnx2x *bp);
1186 void (*reset_hw_port)(struct bnx2x *bp);
1187 void (*reset_hw_func)(struct bnx2x *bp);
1189 /* Init/Free GUNZIP resources */
1190 int (*gunzip_init)(struct bnx2x *bp);
1191 void (*gunzip_end)(struct bnx2x *bp);
1193 /* Prepare/Release FW resources */
1194 int (*init_fw)(struct bnx2x *bp);
1195 void (*release_fw)(struct bnx2x *bp);
1198 struct bnx2x_func_sp_obj {
1199 enum bnx2x_func_state state, next_state;
1201 /* BNX2X_FUNC_CMD_XX bits. This object implements "one
1202 * pending" paradigm but for debug and tracing purposes it's
1203 * more convinient to have different bits for different
1204 * commands.
1206 unsigned long pending;
1208 /* Buffer to use as a ramrod data and its mapping */
1209 void *rdata;
1210 dma_addr_t rdata_mapping;
1212 /* Buffer to use as a afex ramrod data and its mapping.
1213 * This can't be same rdata as above because afex ramrod requests
1214 * can arrive to the object in parallel to other ramrod requests.
1216 void *afex_rdata;
1217 dma_addr_t afex_rdata_mapping;
1219 /* this mutex validates that when pending flag is taken, the next
1220 * ramrod to be sent will be the one set the pending bit
1222 struct mutex one_pending_mutex;
1224 /* Driver interface */
1225 struct bnx2x_func_sp_drv_ops *drv;
1228 * Performs one state change according to the given parameters.
1230 * @return 0 in case of success and negative value otherwise.
1232 int (*send_cmd)(struct bnx2x *bp,
1233 struct bnx2x_func_state_params *params);
1236 * Checks that the requested state transition is legal.
1238 int (*check_transition)(struct bnx2x *bp,
1239 struct bnx2x_func_sp_obj *o,
1240 struct bnx2x_func_state_params *params);
1243 * Completes the pending command.
1245 int (*complete_cmd)(struct bnx2x *bp,
1246 struct bnx2x_func_sp_obj *o,
1247 enum bnx2x_func_cmd cmd);
1249 int (*wait_comp)(struct bnx2x *bp, struct bnx2x_func_sp_obj *o,
1250 enum bnx2x_func_cmd cmd);
1253 /********************** Interfaces ********************************************/
1254 /* Queueable objects set */
1255 union bnx2x_qable_obj {
1256 struct bnx2x_vlan_mac_obj vlan_mac;
1258 /************** Function state update *********/
1259 void bnx2x_init_func_obj(struct bnx2x *bp,
1260 struct bnx2x_func_sp_obj *obj,
1261 void *rdata, dma_addr_t rdata_mapping,
1262 void *afex_rdata, dma_addr_t afex_rdata_mapping,
1263 struct bnx2x_func_sp_drv_ops *drv_iface);
1265 int bnx2x_func_state_change(struct bnx2x *bp,
1266 struct bnx2x_func_state_params *params);
1268 enum bnx2x_func_state bnx2x_func_get_state(struct bnx2x *bp,
1269 struct bnx2x_func_sp_obj *o);
1270 /******************* Queue State **************/
1271 void bnx2x_init_queue_obj(struct bnx2x *bp,
1272 struct bnx2x_queue_sp_obj *obj, u8 cl_id, u32 *cids,
1273 u8 cid_cnt, u8 func_id, void *rdata,
1274 dma_addr_t rdata_mapping, unsigned long type);
1276 int bnx2x_queue_state_change(struct bnx2x *bp,
1277 struct bnx2x_queue_state_params *params);
1279 int bnx2x_get_q_logical_state(struct bnx2x *bp,
1280 struct bnx2x_queue_sp_obj *obj);
1282 /********************* VLAN-MAC ****************/
1283 void bnx2x_init_mac_obj(struct bnx2x *bp,
1284 struct bnx2x_vlan_mac_obj *mac_obj,
1285 u8 cl_id, u32 cid, u8 func_id, void *rdata,
1286 dma_addr_t rdata_mapping, int state,
1287 unsigned long *pstate, bnx2x_obj_type type,
1288 struct bnx2x_credit_pool_obj *macs_pool);
1290 void bnx2x_init_vlan_obj(struct bnx2x *bp,
1291 struct bnx2x_vlan_mac_obj *vlan_obj,
1292 u8 cl_id, u32 cid, u8 func_id, void *rdata,
1293 dma_addr_t rdata_mapping, int state,
1294 unsigned long *pstate, bnx2x_obj_type type,
1295 struct bnx2x_credit_pool_obj *vlans_pool);
1297 void bnx2x_init_vlan_mac_obj(struct bnx2x *bp,
1298 struct bnx2x_vlan_mac_obj *vlan_mac_obj,
1299 u8 cl_id, u32 cid, u8 func_id, void *rdata,
1300 dma_addr_t rdata_mapping, int state,
1301 unsigned long *pstate, bnx2x_obj_type type,
1302 struct bnx2x_credit_pool_obj *macs_pool,
1303 struct bnx2x_credit_pool_obj *vlans_pool);
1305 int bnx2x_config_vlan_mac(struct bnx2x *bp,
1306 struct bnx2x_vlan_mac_ramrod_params *p);
1308 int bnx2x_vlan_mac_move(struct bnx2x *bp,
1309 struct bnx2x_vlan_mac_ramrod_params *p,
1310 struct bnx2x_vlan_mac_obj *dest_o);
1312 /********************* RX MODE ****************/
1314 void bnx2x_init_rx_mode_obj(struct bnx2x *bp,
1315 struct bnx2x_rx_mode_obj *o);
1318 * bnx2x_config_rx_mode - Send and RX_MODE ramrod according to the provided parameters.
1320 * @p: Command parameters
1322 * Return: 0 - if operation was successfull and there is no pending completions,
1323 * positive number - if there are pending completions,
1324 * negative - if there were errors
1326 int bnx2x_config_rx_mode(struct bnx2x *bp,
1327 struct bnx2x_rx_mode_ramrod_params *p);
1329 /****************** MULTICASTS ****************/
1331 void bnx2x_init_mcast_obj(struct bnx2x *bp,
1332 struct bnx2x_mcast_obj *mcast_obj,
1333 u8 mcast_cl_id, u32 mcast_cid, u8 func_id,
1334 u8 engine_id, void *rdata, dma_addr_t rdata_mapping,
1335 int state, unsigned long *pstate,
1336 bnx2x_obj_type type);
1339 * bnx2x_config_mcast - Configure multicast MACs list.
1341 * @cmd: command to execute: BNX2X_MCAST_CMD_X
1343 * May configure a new list
1344 * provided in p->mcast_list (BNX2X_MCAST_CMD_ADD), clean up
1345 * (BNX2X_MCAST_CMD_DEL) or restore (BNX2X_MCAST_CMD_RESTORE) a current
1346 * configuration, continue to execute the pending commands
1347 * (BNX2X_MCAST_CMD_CONT).
1349 * If previous command is still pending or if number of MACs to
1350 * configure is more that maximum number of MACs in one command,
1351 * the current command will be enqueued to the tail of the
1352 * pending commands list.
1354 * Return: 0 is operation was successfull and there are no pending completions,
1355 * negative if there were errors, positive if there are pending
1356 * completions.
1358 int bnx2x_config_mcast(struct bnx2x *bp,
1359 struct bnx2x_mcast_ramrod_params *p,
1360 enum bnx2x_mcast_cmd cmd);
1362 /****************** CREDIT POOL ****************/
1363 void bnx2x_init_mac_credit_pool(struct bnx2x *bp,
1364 struct bnx2x_credit_pool_obj *p, u8 func_id,
1365 u8 func_num);
1366 void bnx2x_init_vlan_credit_pool(struct bnx2x *bp,
1367 struct bnx2x_credit_pool_obj *p, u8 func_id,
1368 u8 func_num);
1371 /****************** RSS CONFIGURATION ****************/
1372 void bnx2x_init_rss_config_obj(struct bnx2x *bp,
1373 struct bnx2x_rss_config_obj *rss_obj,
1374 u8 cl_id, u32 cid, u8 func_id, u8 engine_id,
1375 void *rdata, dma_addr_t rdata_mapping,
1376 int state, unsigned long *pstate,
1377 bnx2x_obj_type type);
1380 * bnx2x_config_rss - Updates RSS configuration according to provided parameters
1382 * Return: 0 in case of success
1384 int bnx2x_config_rss(struct bnx2x *bp,
1385 struct bnx2x_config_rss_params *p);
1388 * bnx2x_get_rss_ind_table - Return the current ind_table configuration.
1390 * @ind_table: buffer to fill with the current indirection
1391 * table content. Should be at least
1392 * T_ETH_INDIRECTION_TABLE_SIZE bytes long.
1394 void bnx2x_get_rss_ind_table(struct bnx2x_rss_config_obj *rss_obj,
1395 u8 *ind_table);
1397 #endif /* BNX2X_SP_VERBS */