bnx2x: reduced sparse warnings
[linux-2.6.git] / drivers / net / ethernet / broadcom / bnx2x / bnx2x_cmn.h
blob04d78c02c8ccac7cbd1b8aab054d7cb71f1ebd48
1 /* bnx2x_cmn.h: Broadcom Everest network driver.
3 * Copyright (c) 2007-2012 Broadcom Corporation
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation.
9 * Maintained by: Eilon Greenstein <eilong@broadcom.com>
10 * Written by: Eliezer Tamir
11 * Based on code from Michael Chan's bnx2 driver
12 * UDP CSUM errata workaround by Arik Gendelman
13 * Slowpath and fastpath rework by Vladislav Zolotarov
14 * Statistics and Link management by Yitchak Gertner
17 #ifndef BNX2X_CMN_H
18 #define BNX2X_CMN_H
20 #include <linux/types.h>
21 #include <linux/pci.h>
22 #include <linux/netdevice.h>
23 #include <linux/etherdevice.h>
26 #include "bnx2x.h"
28 /* This is used as a replacement for an MCP if it's not present */
29 extern int load_count[2][3]; /* per-path: 0-common, 1-port0, 2-port1 */
31 extern int num_queues;
33 /************************ Macros ********************************/
34 #define BNX2X_PCI_FREE(x, y, size) \
35 do { \
36 if (x) { \
37 dma_free_coherent(&bp->pdev->dev, size, (void *)x, y); \
38 x = NULL; \
39 y = 0; \
40 } \
41 } while (0)
43 #define BNX2X_FREE(x) \
44 do { \
45 if (x) { \
46 kfree((void *)x); \
47 x = NULL; \
48 } \
49 } while (0)
51 #define BNX2X_PCI_ALLOC(x, y, size) \
52 do { \
53 x = dma_alloc_coherent(&bp->pdev->dev, size, y, GFP_KERNEL); \
54 if (x == NULL) \
55 goto alloc_mem_err; \
56 memset((void *)x, 0, size); \
57 } while (0)
59 #define BNX2X_ALLOC(x, size) \
60 do { \
61 x = kzalloc(size, GFP_KERNEL); \
62 if (x == NULL) \
63 goto alloc_mem_err; \
64 } while (0)
66 /*********************** Interfaces ****************************
67 * Functions that need to be implemented by each driver version
69 /* Init */
71 /**
72 * bnx2x_send_unload_req - request unload mode from the MCP.
74 * @bp: driver handle
75 * @unload_mode: requested function's unload mode
77 * Return unload mode returned by the MCP: COMMON, PORT or FUNC.
79 u32 bnx2x_send_unload_req(struct bnx2x *bp, int unload_mode);
81 /**
82 * bnx2x_send_unload_done - send UNLOAD_DONE command to the MCP.
84 * @bp: driver handle
86 void bnx2x_send_unload_done(struct bnx2x *bp);
88 /**
89 * bnx2x_config_rss_pf - configure RSS parameters.
91 * @bp: driver handle
92 * @ind_table: indirection table to configure
93 * @config_hash: re-configure RSS hash keys configuration
95 int bnx2x_config_rss_pf(struct bnx2x *bp, u8 *ind_table, bool config_hash);
97 /**
98 * bnx2x__init_func_obj - init function object
100 * @bp: driver handle
102 * Initializes the Function Object with the appropriate
103 * parameters which include a function slow path driver
104 * interface.
106 void bnx2x__init_func_obj(struct bnx2x *bp);
109 * bnx2x_setup_queue - setup eth queue.
111 * @bp: driver handle
112 * @fp: pointer to the fastpath structure
113 * @leading: boolean
116 int bnx2x_setup_queue(struct bnx2x *bp, struct bnx2x_fastpath *fp,
117 bool leading);
120 * bnx2x_setup_leading - bring up a leading eth queue.
122 * @bp: driver handle
124 int bnx2x_setup_leading(struct bnx2x *bp);
127 * bnx2x_fw_command - send the MCP a request
129 * @bp: driver handle
130 * @command: request
131 * @param: request's parameter
133 * block until there is a reply
135 u32 bnx2x_fw_command(struct bnx2x *bp, u32 command, u32 param);
138 * bnx2x_initial_phy_init - initialize link parameters structure variables.
140 * @bp: driver handle
141 * @load_mode: current mode
143 u8 bnx2x_initial_phy_init(struct bnx2x *bp, int load_mode);
146 * bnx2x_link_set - configure hw according to link parameters structure.
148 * @bp: driver handle
150 void bnx2x_link_set(struct bnx2x *bp);
153 * bnx2x_link_test - query link status.
155 * @bp: driver handle
156 * @is_serdes: bool
158 * Returns 0 if link is UP.
160 u8 bnx2x_link_test(struct bnx2x *bp, u8 is_serdes);
163 * bnx2x_drv_pulse - write driver pulse to shmem
165 * @bp: driver handle
167 * writes the value in bp->fw_drv_pulse_wr_seq to drv_pulse mbox
168 * in the shmem.
170 void bnx2x_drv_pulse(struct bnx2x *bp);
173 * bnx2x_igu_ack_sb - update IGU with current SB value
175 * @bp: driver handle
176 * @igu_sb_id: SB id
177 * @segment: SB segment
178 * @index: SB index
179 * @op: SB operation
180 * @update: is HW update required
182 void bnx2x_igu_ack_sb(struct bnx2x *bp, u8 igu_sb_id, u8 segment,
183 u16 index, u8 op, u8 update);
185 /* Disable transactions from chip to host */
186 void bnx2x_pf_disable(struct bnx2x *bp);
189 * bnx2x__link_status_update - handles link status change.
191 * @bp: driver handle
193 void bnx2x__link_status_update(struct bnx2x *bp);
196 * bnx2x_link_report - report link status to upper layer.
198 * @bp: driver handle
200 void bnx2x_link_report(struct bnx2x *bp);
202 /* None-atomic version of bnx2x_link_report() */
203 void __bnx2x_link_report(struct bnx2x *bp);
206 * bnx2x_get_mf_speed - calculate MF speed.
208 * @bp: driver handle
210 * Takes into account current linespeed and MF configuration.
212 u16 bnx2x_get_mf_speed(struct bnx2x *bp);
215 * bnx2x_msix_sp_int - MSI-X slowpath interrupt handler
217 * @irq: irq number
218 * @dev_instance: private instance
220 irqreturn_t bnx2x_msix_sp_int(int irq, void *dev_instance);
223 * bnx2x_interrupt - non MSI-X interrupt handler
225 * @irq: irq number
226 * @dev_instance: private instance
228 irqreturn_t bnx2x_interrupt(int irq, void *dev_instance);
229 #ifdef BCM_CNIC
232 * bnx2x_cnic_notify - send command to cnic driver
234 * @bp: driver handle
235 * @cmd: command
237 int bnx2x_cnic_notify(struct bnx2x *bp, int cmd);
240 * bnx2x_setup_cnic_irq_info - provides cnic with IRQ information
242 * @bp: driver handle
244 void bnx2x_setup_cnic_irq_info(struct bnx2x *bp);
245 #endif
248 * bnx2x_int_enable - enable HW interrupts.
250 * @bp: driver handle
252 void bnx2x_int_enable(struct bnx2x *bp);
255 * bnx2x_int_disable_sync - disable interrupts.
257 * @bp: driver handle
258 * @disable_hw: true, disable HW interrupts.
260 * This function ensures that there are no
261 * ISRs or SP DPCs (sp_task) are running after it returns.
263 void bnx2x_int_disable_sync(struct bnx2x *bp, int disable_hw);
266 * bnx2x_nic_init - init driver internals.
268 * @bp: driver handle
269 * @load_code: COMMON, PORT or FUNCTION
271 * Initializes:
272 * - rings
273 * - status blocks
274 * - etc.
276 void bnx2x_nic_init(struct bnx2x *bp, u32 load_code);
279 * bnx2x_alloc_mem - allocate driver's memory.
281 * @bp: driver handle
283 int bnx2x_alloc_mem(struct bnx2x *bp);
286 * bnx2x_free_mem - release driver's memory.
288 * @bp: driver handle
290 void bnx2x_free_mem(struct bnx2x *bp);
293 * bnx2x_set_num_queues - set number of queues according to mode.
295 * @bp: driver handle
297 void bnx2x_set_num_queues(struct bnx2x *bp);
300 * bnx2x_chip_cleanup - cleanup chip internals.
302 * @bp: driver handle
303 * @unload_mode: COMMON, PORT, FUNCTION
305 * - Cleanup MAC configuration.
306 * - Closes clients.
307 * - etc.
309 void bnx2x_chip_cleanup(struct bnx2x *bp, int unload_mode);
312 * bnx2x_acquire_hw_lock - acquire HW lock.
314 * @bp: driver handle
315 * @resource: resource bit which was locked
317 int bnx2x_acquire_hw_lock(struct bnx2x *bp, u32 resource);
320 * bnx2x_release_hw_lock - release HW lock.
322 * @bp: driver handle
323 * @resource: resource bit which was locked
325 int bnx2x_release_hw_lock(struct bnx2x *bp, u32 resource);
328 * bnx2x_release_leader_lock - release recovery leader lock
330 * @bp: driver handle
332 int bnx2x_release_leader_lock(struct bnx2x *bp);
335 * bnx2x_set_eth_mac - configure eth MAC address in the HW
337 * @bp: driver handle
338 * @set: set or clear
340 * Configures according to the value in netdev->dev_addr.
342 int bnx2x_set_eth_mac(struct bnx2x *bp, bool set);
345 * bnx2x_set_rx_mode - set MAC filtering configurations.
347 * @dev: netdevice
349 * called with netif_tx_lock from dev_mcast.c
350 * If bp->state is OPEN, should be called with
351 * netif_addr_lock_bh()
353 void bnx2x_set_rx_mode(struct net_device *dev);
356 * bnx2x_set_storm_rx_mode - configure MAC filtering rules in a FW.
358 * @bp: driver handle
360 * If bp->state is OPEN, should be called with
361 * netif_addr_lock_bh().
363 void bnx2x_set_storm_rx_mode(struct bnx2x *bp);
366 * bnx2x_set_q_rx_mode - configures rx_mode for a single queue.
368 * @bp: driver handle
369 * @cl_id: client id
370 * @rx_mode_flags: rx mode configuration
371 * @rx_accept_flags: rx accept configuration
372 * @tx_accept_flags: tx accept configuration (tx switch)
373 * @ramrod_flags: ramrod configuration
375 void bnx2x_set_q_rx_mode(struct bnx2x *bp, u8 cl_id,
376 unsigned long rx_mode_flags,
377 unsigned long rx_accept_flags,
378 unsigned long tx_accept_flags,
379 unsigned long ramrod_flags);
381 /* Parity errors related */
382 void bnx2x_set_pf_load(struct bnx2x *bp);
383 bool bnx2x_clear_pf_load(struct bnx2x *bp);
384 bool bnx2x_chk_parity_attn(struct bnx2x *bp, bool *global, bool print);
385 bool bnx2x_reset_is_done(struct bnx2x *bp, int engine);
386 void bnx2x_set_reset_in_progress(struct bnx2x *bp);
387 void bnx2x_set_reset_global(struct bnx2x *bp);
388 void bnx2x_disable_close_the_gate(struct bnx2x *bp);
391 * bnx2x_sp_event - handle ramrods completion.
393 * @fp: fastpath handle for the event
394 * @rr_cqe: eth_rx_cqe
396 void bnx2x_sp_event(struct bnx2x_fastpath *fp, union eth_rx_cqe *rr_cqe);
399 * bnx2x_ilt_set_info - prepare ILT configurations.
401 * @bp: driver handle
403 void bnx2x_ilt_set_info(struct bnx2x *bp);
406 * bnx2x_dcbx_init - initialize dcbx protocol.
408 * @bp: driver handle
410 void bnx2x_dcbx_init(struct bnx2x *bp);
413 * bnx2x_set_power_state - set power state to the requested value.
415 * @bp: driver handle
416 * @state: required state D0 or D3hot
418 * Currently only D0 and D3hot are supported.
420 int bnx2x_set_power_state(struct bnx2x *bp, pci_power_t state);
423 * bnx2x_update_max_mf_config - update MAX part of MF configuration in HW.
425 * @bp: driver handle
426 * @value: new value
428 void bnx2x_update_max_mf_config(struct bnx2x *bp, u32 value);
429 /* Error handling */
430 void bnx2x_panic_dump(struct bnx2x *bp);
432 void bnx2x_fw_dump_lvl(struct bnx2x *bp, const char *lvl);
434 /* dev_close main block */
435 int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode);
437 /* dev_open main block */
438 int bnx2x_nic_load(struct bnx2x *bp, int load_mode);
440 /* hard_xmit callback */
441 netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev);
443 /* setup_tc callback */
444 int bnx2x_setup_tc(struct net_device *dev, u8 num_tc);
446 /* select_queue callback */
447 u16 bnx2x_select_queue(struct net_device *dev, struct sk_buff *skb);
449 /* reload helper */
450 int bnx2x_reload_if_running(struct net_device *dev);
452 int bnx2x_change_mac_addr(struct net_device *dev, void *p);
454 /* NAPI poll Rx part */
455 int bnx2x_rx_int(struct bnx2x_fastpath *fp, int budget);
457 void bnx2x_update_rx_prod(struct bnx2x *bp, struct bnx2x_fastpath *fp,
458 u16 bd_prod, u16 rx_comp_prod, u16 rx_sge_prod);
460 /* NAPI poll Tx part */
461 int bnx2x_tx_int(struct bnx2x *bp, struct bnx2x_fp_txdata *txdata);
463 /* suspend/resume callbacks */
464 int bnx2x_suspend(struct pci_dev *pdev, pm_message_t state);
465 int bnx2x_resume(struct pci_dev *pdev);
467 /* Release IRQ vectors */
468 void bnx2x_free_irq(struct bnx2x *bp);
470 void bnx2x_free_fp_mem(struct bnx2x *bp);
471 int bnx2x_alloc_fp_mem(struct bnx2x *bp);
472 void bnx2x_init_rx_rings(struct bnx2x *bp);
473 void bnx2x_free_skbs(struct bnx2x *bp);
474 void bnx2x_netif_stop(struct bnx2x *bp, int disable_hw);
475 void bnx2x_netif_start(struct bnx2x *bp);
478 * bnx2x_enable_msix - set msix configuration.
480 * @bp: driver handle
482 * fills msix_table, requests vectors, updates num_queues
483 * according to number of available vectors.
485 int bnx2x_enable_msix(struct bnx2x *bp);
488 * bnx2x_enable_msi - request msi mode from OS, updated internals accordingly
490 * @bp: driver handle
492 int bnx2x_enable_msi(struct bnx2x *bp);
495 * bnx2x_poll - NAPI callback
497 * @napi: napi structure
498 * @budget:
501 int bnx2x_poll(struct napi_struct *napi, int budget);
504 * bnx2x_alloc_mem_bp - allocate memories outsize main driver structure
506 * @bp: driver handle
508 int __devinit bnx2x_alloc_mem_bp(struct bnx2x *bp);
511 * bnx2x_free_mem_bp - release memories outsize main driver structure
513 * @bp: driver handle
515 void bnx2x_free_mem_bp(struct bnx2x *bp);
518 * bnx2x_change_mtu - change mtu netdev callback
520 * @dev: net device
521 * @new_mtu: requested mtu
524 int bnx2x_change_mtu(struct net_device *dev, int new_mtu);
526 #if defined(NETDEV_FCOE_WWNN) && defined(BCM_CNIC)
528 * bnx2x_fcoe_get_wwn - return the requested WWN value for this port
530 * @dev: net_device
531 * @wwn: output buffer
532 * @type: WWN type: NETDEV_FCOE_WWNN (node) or NETDEV_FCOE_WWPN (port)
535 int bnx2x_fcoe_get_wwn(struct net_device *dev, u64 *wwn, int type);
536 #endif
538 netdev_features_t bnx2x_fix_features(struct net_device *dev,
539 netdev_features_t features);
540 int bnx2x_set_features(struct net_device *dev, netdev_features_t features);
543 * bnx2x_tx_timeout - tx timeout netdev callback
545 * @dev: net device
547 void bnx2x_tx_timeout(struct net_device *dev);
549 /*********************** Inlines **********************************/
550 /*********************** Fast path ********************************/
551 static inline void bnx2x_update_fpsb_idx(struct bnx2x_fastpath *fp)
553 barrier(); /* status block is written to by the chip */
554 fp->fp_hc_idx = fp->sb_running_index[SM_RX_ID];
557 static inline void bnx2x_update_rx_prod_gen(struct bnx2x *bp,
558 struct bnx2x_fastpath *fp, u16 bd_prod,
559 u16 rx_comp_prod, u16 rx_sge_prod, u32 start)
561 struct ustorm_eth_rx_producers rx_prods = {0};
562 u32 i;
564 /* Update producers */
565 rx_prods.bd_prod = bd_prod;
566 rx_prods.cqe_prod = rx_comp_prod;
567 rx_prods.sge_prod = rx_sge_prod;
570 * Make sure that the BD and SGE data is updated before updating the
571 * producers since FW might read the BD/SGE right after the producer
572 * is updated.
573 * This is only applicable for weak-ordered memory model archs such
574 * as IA-64. The following barrier is also mandatory since FW will
575 * assumes BDs must have buffers.
577 wmb();
579 for (i = 0; i < sizeof(rx_prods)/4; i++)
580 REG_WR(bp, start + i*4, ((u32 *)&rx_prods)[i]);
582 mmiowb(); /* keep prod updates ordered */
584 DP(NETIF_MSG_RX_STATUS,
585 "queue[%d]: wrote bd_prod %u cqe_prod %u sge_prod %u\n",
586 fp->index, bd_prod, rx_comp_prod, rx_sge_prod);
589 static inline void bnx2x_igu_ack_sb_gen(struct bnx2x *bp, u8 igu_sb_id,
590 u8 segment, u16 index, u8 op,
591 u8 update, u32 igu_addr)
593 struct igu_regular cmd_data = {0};
595 cmd_data.sb_id_and_flags =
596 ((index << IGU_REGULAR_SB_INDEX_SHIFT) |
597 (segment << IGU_REGULAR_SEGMENT_ACCESS_SHIFT) |
598 (update << IGU_REGULAR_BUPDATE_SHIFT) |
599 (op << IGU_REGULAR_ENABLE_INT_SHIFT));
601 DP(NETIF_MSG_INTR, "write 0x%08x to IGU addr 0x%x\n",
602 cmd_data.sb_id_and_flags, igu_addr);
603 REG_WR(bp, igu_addr, cmd_data.sb_id_and_flags);
605 /* Make sure that ACK is written */
606 mmiowb();
607 barrier();
610 static inline void bnx2x_igu_clear_sb_gen(struct bnx2x *bp, u8 func,
611 u8 idu_sb_id, bool is_Pf)
613 u32 data, ctl, cnt = 100;
614 u32 igu_addr_data = IGU_REG_COMMAND_REG_32LSB_DATA;
615 u32 igu_addr_ctl = IGU_REG_COMMAND_REG_CTRL;
616 u32 igu_addr_ack = IGU_REG_CSTORM_TYPE_0_SB_CLEANUP + (idu_sb_id/32)*4;
617 u32 sb_bit = 1 << (idu_sb_id%32);
618 u32 func_encode = func | (is_Pf ? 1 : 0) << IGU_FID_ENCODE_IS_PF_SHIFT;
619 u32 addr_encode = IGU_CMD_E2_PROD_UPD_BASE + idu_sb_id;
621 /* Not supported in BC mode */
622 if (CHIP_INT_MODE_IS_BC(bp))
623 return;
625 data = (IGU_USE_REGISTER_cstorm_type_0_sb_cleanup
626 << IGU_REGULAR_CLEANUP_TYPE_SHIFT) |
627 IGU_REGULAR_CLEANUP_SET |
628 IGU_REGULAR_BCLEANUP;
630 ctl = addr_encode << IGU_CTRL_REG_ADDRESS_SHIFT |
631 func_encode << IGU_CTRL_REG_FID_SHIFT |
632 IGU_CTRL_CMD_TYPE_WR << IGU_CTRL_REG_TYPE_SHIFT;
634 DP(NETIF_MSG_HW, "write 0x%08x to IGU(via GRC) addr 0x%x\n",
635 data, igu_addr_data);
636 REG_WR(bp, igu_addr_data, data);
637 mmiowb();
638 barrier();
639 DP(NETIF_MSG_HW, "write 0x%08x to IGU(via GRC) addr 0x%x\n",
640 ctl, igu_addr_ctl);
641 REG_WR(bp, igu_addr_ctl, ctl);
642 mmiowb();
643 barrier();
645 /* wait for clean up to finish */
646 while (!(REG_RD(bp, igu_addr_ack) & sb_bit) && --cnt)
647 msleep(20);
650 if (!(REG_RD(bp, igu_addr_ack) & sb_bit)) {
651 DP(NETIF_MSG_HW,
652 "Unable to finish IGU cleanup: idu_sb_id %d offset %d bit %d (cnt %d)\n",
653 idu_sb_id, idu_sb_id/32, idu_sb_id%32, cnt);
657 static inline void bnx2x_hc_ack_sb(struct bnx2x *bp, u8 sb_id,
658 u8 storm, u16 index, u8 op, u8 update)
660 u32 hc_addr = (HC_REG_COMMAND_REG + BP_PORT(bp)*32 +
661 COMMAND_REG_INT_ACK);
662 struct igu_ack_register igu_ack;
664 igu_ack.status_block_index = index;
665 igu_ack.sb_id_and_flags =
666 ((sb_id << IGU_ACK_REGISTER_STATUS_BLOCK_ID_SHIFT) |
667 (storm << IGU_ACK_REGISTER_STORM_ID_SHIFT) |
668 (update << IGU_ACK_REGISTER_UPDATE_INDEX_SHIFT) |
669 (op << IGU_ACK_REGISTER_INTERRUPT_MODE_SHIFT));
671 REG_WR(bp, hc_addr, (*(u32 *)&igu_ack));
673 /* Make sure that ACK is written */
674 mmiowb();
675 barrier();
678 static inline void bnx2x_ack_sb(struct bnx2x *bp, u8 igu_sb_id, u8 storm,
679 u16 index, u8 op, u8 update)
681 if (bp->common.int_block == INT_BLOCK_HC)
682 bnx2x_hc_ack_sb(bp, igu_sb_id, storm, index, op, update);
683 else {
684 u8 segment;
686 if (CHIP_INT_MODE_IS_BC(bp))
687 segment = storm;
688 else if (igu_sb_id != bp->igu_dsb_id)
689 segment = IGU_SEG_ACCESS_DEF;
690 else if (storm == ATTENTION_ID)
691 segment = IGU_SEG_ACCESS_ATTN;
692 else
693 segment = IGU_SEG_ACCESS_DEF;
694 bnx2x_igu_ack_sb(bp, igu_sb_id, segment, index, op, update);
698 static inline u16 bnx2x_hc_ack_int(struct bnx2x *bp)
700 u32 hc_addr = (HC_REG_COMMAND_REG + BP_PORT(bp)*32 +
701 COMMAND_REG_SIMD_MASK);
702 u32 result = REG_RD(bp, hc_addr);
704 barrier();
705 return result;
708 static inline u16 bnx2x_igu_ack_int(struct bnx2x *bp)
710 u32 igu_addr = (BAR_IGU_INTMEM + IGU_REG_SISR_MDPC_WMASK_LSB_UPPER*8);
711 u32 result = REG_RD(bp, igu_addr);
713 DP(NETIF_MSG_INTR, "read 0x%08x from IGU addr 0x%x\n",
714 result, igu_addr);
716 barrier();
717 return result;
720 static inline u16 bnx2x_ack_int(struct bnx2x *bp)
722 barrier();
723 if (bp->common.int_block == INT_BLOCK_HC)
724 return bnx2x_hc_ack_int(bp);
725 else
726 return bnx2x_igu_ack_int(bp);
729 static inline int bnx2x_has_tx_work_unload(struct bnx2x_fp_txdata *txdata)
731 /* Tell compiler that consumer and producer can change */
732 barrier();
733 return txdata->tx_pkt_prod != txdata->tx_pkt_cons;
736 static inline u16 bnx2x_tx_avail(struct bnx2x *bp,
737 struct bnx2x_fp_txdata *txdata)
739 s16 used;
740 u16 prod;
741 u16 cons;
743 prod = txdata->tx_bd_prod;
744 cons = txdata->tx_bd_cons;
746 /* NUM_TX_RINGS = number of "next-page" entries
747 It will be used as a threshold */
748 used = SUB_S16(prod, cons) + (s16)NUM_TX_RINGS;
750 #ifdef BNX2X_STOP_ON_ERROR
751 WARN_ON(used < 0);
752 WARN_ON(used > bp->tx_ring_size);
753 WARN_ON((bp->tx_ring_size - used) > MAX_TX_AVAIL);
754 #endif
756 return (s16)(bp->tx_ring_size) - used;
759 static inline int bnx2x_tx_queue_has_work(struct bnx2x_fp_txdata *txdata)
761 u16 hw_cons;
763 /* Tell compiler that status block fields can change */
764 barrier();
765 hw_cons = le16_to_cpu(*txdata->tx_cons_sb);
766 return hw_cons != txdata->tx_pkt_cons;
769 static inline bool bnx2x_has_tx_work(struct bnx2x_fastpath *fp)
771 u8 cos;
772 for_each_cos_in_tx_queue(fp, cos)
773 if (bnx2x_tx_queue_has_work(&fp->txdata[cos]))
774 return true;
775 return false;
778 static inline int bnx2x_has_rx_work(struct bnx2x_fastpath *fp)
780 u16 rx_cons_sb;
782 /* Tell compiler that status block fields can change */
783 barrier();
784 rx_cons_sb = le16_to_cpu(*fp->rx_cons_sb);
785 if ((rx_cons_sb & MAX_RCQ_DESC_CNT) == MAX_RCQ_DESC_CNT)
786 rx_cons_sb++;
787 return (fp->rx_comp_cons != rx_cons_sb);
791 * bnx2x_tx_disable - disables tx from stack point of view
793 * @bp: driver handle
795 static inline void bnx2x_tx_disable(struct bnx2x *bp)
797 netif_tx_disable(bp->dev);
798 netif_carrier_off(bp->dev);
801 static inline void bnx2x_free_rx_sge(struct bnx2x *bp,
802 struct bnx2x_fastpath *fp, u16 index)
804 struct sw_rx_page *sw_buf = &fp->rx_page_ring[index];
805 struct page *page = sw_buf->page;
806 struct eth_rx_sge *sge = &fp->rx_sge_ring[index];
808 /* Skip "next page" elements */
809 if (!page)
810 return;
812 dma_unmap_page(&bp->pdev->dev, dma_unmap_addr(sw_buf, mapping),
813 SGE_PAGE_SIZE*PAGES_PER_SGE, DMA_FROM_DEVICE);
814 __free_pages(page, PAGES_PER_SGE_SHIFT);
816 sw_buf->page = NULL;
817 sge->addr_hi = 0;
818 sge->addr_lo = 0;
821 static inline void bnx2x_add_all_napi(struct bnx2x *bp)
823 int i;
825 /* Add NAPI objects */
826 for_each_rx_queue(bp, i)
827 netif_napi_add(bp->dev, &bnx2x_fp(bp, i, napi),
828 bnx2x_poll, BNX2X_NAPI_WEIGHT);
831 static inline void bnx2x_del_all_napi(struct bnx2x *bp)
833 int i;
835 for_each_rx_queue(bp, i)
836 netif_napi_del(&bnx2x_fp(bp, i, napi));
839 static inline void bnx2x_disable_msi(struct bnx2x *bp)
841 if (bp->flags & USING_MSIX_FLAG) {
842 pci_disable_msix(bp->pdev);
843 bp->flags &= ~USING_MSIX_FLAG;
844 } else if (bp->flags & USING_MSI_FLAG) {
845 pci_disable_msi(bp->pdev);
846 bp->flags &= ~USING_MSI_FLAG;
850 static inline int bnx2x_calc_num_queues(struct bnx2x *bp)
852 return num_queues ?
853 min_t(int, num_queues, BNX2X_MAX_QUEUES(bp)) :
854 min_t(int, num_online_cpus(), BNX2X_MAX_QUEUES(bp));
857 static inline void bnx2x_clear_sge_mask_next_elems(struct bnx2x_fastpath *fp)
859 int i, j;
861 for (i = 1; i <= NUM_RX_SGE_PAGES; i++) {
862 int idx = RX_SGE_CNT * i - 1;
864 for (j = 0; j < 2; j++) {
865 BIT_VEC64_CLEAR_BIT(fp->sge_mask, idx);
866 idx--;
871 static inline void bnx2x_init_sge_ring_bit_mask(struct bnx2x_fastpath *fp)
873 /* Set the mask to all 1-s: it's faster to compare to 0 than to 0xf-s */
874 memset(fp->sge_mask, 0xff, sizeof(fp->sge_mask));
876 /* Clear the two last indices in the page to 1:
877 these are the indices that correspond to the "next" element,
878 hence will never be indicated and should be removed from
879 the calculations. */
880 bnx2x_clear_sge_mask_next_elems(fp);
883 static inline int bnx2x_alloc_rx_sge(struct bnx2x *bp,
884 struct bnx2x_fastpath *fp, u16 index)
886 struct page *page = alloc_pages(GFP_ATOMIC, PAGES_PER_SGE_SHIFT);
887 struct sw_rx_page *sw_buf = &fp->rx_page_ring[index];
888 struct eth_rx_sge *sge = &fp->rx_sge_ring[index];
889 dma_addr_t mapping;
891 if (unlikely(page == NULL)) {
892 BNX2X_ERR("Can't alloc sge\n");
893 return -ENOMEM;
896 mapping = dma_map_page(&bp->pdev->dev, page, 0,
897 SGE_PAGE_SIZE*PAGES_PER_SGE, DMA_FROM_DEVICE);
898 if (unlikely(dma_mapping_error(&bp->pdev->dev, mapping))) {
899 __free_pages(page, PAGES_PER_SGE_SHIFT);
900 BNX2X_ERR("Can't map sge\n");
901 return -ENOMEM;
904 sw_buf->page = page;
905 dma_unmap_addr_set(sw_buf, mapping, mapping);
907 sge->addr_hi = cpu_to_le32(U64_HI(mapping));
908 sge->addr_lo = cpu_to_le32(U64_LO(mapping));
910 return 0;
913 static inline int bnx2x_alloc_rx_data(struct bnx2x *bp,
914 struct bnx2x_fastpath *fp, u16 index)
916 u8 *data;
917 struct sw_rx_bd *rx_buf = &fp->rx_buf_ring[index];
918 struct eth_rx_bd *rx_bd = &fp->rx_desc_ring[index];
919 dma_addr_t mapping;
921 data = kmalloc(fp->rx_buf_size + NET_SKB_PAD, GFP_ATOMIC);
922 if (unlikely(data == NULL))
923 return -ENOMEM;
925 mapping = dma_map_single(&bp->pdev->dev, data + NET_SKB_PAD,
926 fp->rx_buf_size,
927 DMA_FROM_DEVICE);
928 if (unlikely(dma_mapping_error(&bp->pdev->dev, mapping))) {
929 kfree(data);
930 BNX2X_ERR("Can't map rx data\n");
931 return -ENOMEM;
934 rx_buf->data = data;
935 dma_unmap_addr_set(rx_buf, mapping, mapping);
937 rx_bd->addr_hi = cpu_to_le32(U64_HI(mapping));
938 rx_bd->addr_lo = cpu_to_le32(U64_LO(mapping));
940 return 0;
943 /* note that we are not allocating a new buffer,
944 * we are just moving one from cons to prod
945 * we are not creating a new mapping,
946 * so there is no need to check for dma_mapping_error().
948 static inline void bnx2x_reuse_rx_data(struct bnx2x_fastpath *fp,
949 u16 cons, u16 prod)
951 struct sw_rx_bd *cons_rx_buf = &fp->rx_buf_ring[cons];
952 struct sw_rx_bd *prod_rx_buf = &fp->rx_buf_ring[prod];
953 struct eth_rx_bd *cons_bd = &fp->rx_desc_ring[cons];
954 struct eth_rx_bd *prod_bd = &fp->rx_desc_ring[prod];
956 dma_unmap_addr_set(prod_rx_buf, mapping,
957 dma_unmap_addr(cons_rx_buf, mapping));
958 prod_rx_buf->data = cons_rx_buf->data;
959 *prod_bd = *cons_bd;
962 /************************* Init ******************************************/
965 * bnx2x_func_start - init function
967 * @bp: driver handle
969 * Must be called before sending CLIENT_SETUP for the first client.
971 static inline int bnx2x_func_start(struct bnx2x *bp)
973 struct bnx2x_func_state_params func_params = {NULL};
974 struct bnx2x_func_start_params *start_params =
975 &func_params.params.start;
977 /* Prepare parameters for function state transitions */
978 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
980 func_params.f_obj = &bp->func_obj;
981 func_params.cmd = BNX2X_F_CMD_START;
983 /* Function parameters */
984 start_params->mf_mode = bp->mf_mode;
985 start_params->sd_vlan_tag = bp->mf_ov;
987 if (CHIP_IS_E2(bp) || CHIP_IS_E3(bp))
988 start_params->network_cos_mode = STATIC_COS;
989 else /* CHIP_IS_E1X */
990 start_params->network_cos_mode = FW_WRR;
992 return bnx2x_func_state_change(bp, &func_params);
997 * bnx2x_set_fw_mac_addr - fill in a MAC address in FW format
999 * @fw_hi: pointer to upper part
1000 * @fw_mid: pointer to middle part
1001 * @fw_lo: pointer to lower part
1002 * @mac: pointer to MAC address
1004 static inline void bnx2x_set_fw_mac_addr(u16 *fw_hi, u16 *fw_mid, u16 *fw_lo,
1005 u8 *mac)
1007 ((u8 *)fw_hi)[0] = mac[1];
1008 ((u8 *)fw_hi)[1] = mac[0];
1009 ((u8 *)fw_mid)[0] = mac[3];
1010 ((u8 *)fw_mid)[1] = mac[2];
1011 ((u8 *)fw_lo)[0] = mac[5];
1012 ((u8 *)fw_lo)[1] = mac[4];
1015 static inline void bnx2x_free_rx_sge_range(struct bnx2x *bp,
1016 struct bnx2x_fastpath *fp, int last)
1018 int i;
1020 if (fp->disable_tpa)
1021 return;
1023 for (i = 0; i < last; i++)
1024 bnx2x_free_rx_sge(bp, fp, i);
1027 static inline void bnx2x_free_tpa_pool(struct bnx2x *bp,
1028 struct bnx2x_fastpath *fp, int last)
1030 int i;
1032 for (i = 0; i < last; i++) {
1033 struct bnx2x_agg_info *tpa_info = &fp->tpa_info[i];
1034 struct sw_rx_bd *first_buf = &tpa_info->first_buf;
1035 u8 *data = first_buf->data;
1037 if (data == NULL) {
1038 DP(NETIF_MSG_IFDOWN, "tpa bin %d empty on free\n", i);
1039 continue;
1041 if (tpa_info->tpa_state == BNX2X_TPA_START)
1042 dma_unmap_single(&bp->pdev->dev,
1043 dma_unmap_addr(first_buf, mapping),
1044 fp->rx_buf_size, DMA_FROM_DEVICE);
1045 kfree(data);
1046 first_buf->data = NULL;
1050 static inline void bnx2x_init_tx_ring_one(struct bnx2x_fp_txdata *txdata)
1052 int i;
1054 for (i = 1; i <= NUM_TX_RINGS; i++) {
1055 struct eth_tx_next_bd *tx_next_bd =
1056 &txdata->tx_desc_ring[TX_DESC_CNT * i - 1].next_bd;
1058 tx_next_bd->addr_hi =
1059 cpu_to_le32(U64_HI(txdata->tx_desc_mapping +
1060 BCM_PAGE_SIZE*(i % NUM_TX_RINGS)));
1061 tx_next_bd->addr_lo =
1062 cpu_to_le32(U64_LO(txdata->tx_desc_mapping +
1063 BCM_PAGE_SIZE*(i % NUM_TX_RINGS)));
1066 SET_FLAG(txdata->tx_db.data.header.header, DOORBELL_HDR_DB_TYPE, 1);
1067 txdata->tx_db.data.zero_fill1 = 0;
1068 txdata->tx_db.data.prod = 0;
1070 txdata->tx_pkt_prod = 0;
1071 txdata->tx_pkt_cons = 0;
1072 txdata->tx_bd_prod = 0;
1073 txdata->tx_bd_cons = 0;
1074 txdata->tx_pkt = 0;
1077 static inline void bnx2x_init_tx_rings(struct bnx2x *bp)
1079 int i;
1080 u8 cos;
1082 for_each_tx_queue(bp, i)
1083 for_each_cos_in_tx_queue(&bp->fp[i], cos)
1084 bnx2x_init_tx_ring_one(&bp->fp[i].txdata[cos]);
1087 static inline void bnx2x_set_next_page_rx_bd(struct bnx2x_fastpath *fp)
1089 int i;
1091 for (i = 1; i <= NUM_RX_RINGS; i++) {
1092 struct eth_rx_bd *rx_bd;
1094 rx_bd = &fp->rx_desc_ring[RX_DESC_CNT * i - 2];
1095 rx_bd->addr_hi =
1096 cpu_to_le32(U64_HI(fp->rx_desc_mapping +
1097 BCM_PAGE_SIZE*(i % NUM_RX_RINGS)));
1098 rx_bd->addr_lo =
1099 cpu_to_le32(U64_LO(fp->rx_desc_mapping +
1100 BCM_PAGE_SIZE*(i % NUM_RX_RINGS)));
1104 static inline void bnx2x_set_next_page_sgl(struct bnx2x_fastpath *fp)
1106 int i;
1108 for (i = 1; i <= NUM_RX_SGE_PAGES; i++) {
1109 struct eth_rx_sge *sge;
1111 sge = &fp->rx_sge_ring[RX_SGE_CNT * i - 2];
1112 sge->addr_hi =
1113 cpu_to_le32(U64_HI(fp->rx_sge_mapping +
1114 BCM_PAGE_SIZE*(i % NUM_RX_SGE_PAGES)));
1116 sge->addr_lo =
1117 cpu_to_le32(U64_LO(fp->rx_sge_mapping +
1118 BCM_PAGE_SIZE*(i % NUM_RX_SGE_PAGES)));
1122 static inline void bnx2x_set_next_page_rx_cq(struct bnx2x_fastpath *fp)
1124 int i;
1125 for (i = 1; i <= NUM_RCQ_RINGS; i++) {
1126 struct eth_rx_cqe_next_page *nextpg;
1128 nextpg = (struct eth_rx_cqe_next_page *)
1129 &fp->rx_comp_ring[RCQ_DESC_CNT * i - 1];
1130 nextpg->addr_hi =
1131 cpu_to_le32(U64_HI(fp->rx_comp_mapping +
1132 BCM_PAGE_SIZE*(i % NUM_RCQ_RINGS)));
1133 nextpg->addr_lo =
1134 cpu_to_le32(U64_LO(fp->rx_comp_mapping +
1135 BCM_PAGE_SIZE*(i % NUM_RCQ_RINGS)));
1139 /* Returns the number of actually allocated BDs */
1140 static inline int bnx2x_alloc_rx_bds(struct bnx2x_fastpath *fp,
1141 int rx_ring_size)
1143 struct bnx2x *bp = fp->bp;
1144 u16 ring_prod, cqe_ring_prod;
1145 int i, failure_cnt = 0;
1147 fp->rx_comp_cons = 0;
1148 cqe_ring_prod = ring_prod = 0;
1150 /* This routine is called only during fo init so
1151 * fp->eth_q_stats.rx_skb_alloc_failed = 0
1153 for (i = 0; i < rx_ring_size; i++) {
1154 if (bnx2x_alloc_rx_data(bp, fp, ring_prod) < 0) {
1155 failure_cnt++;
1156 continue;
1158 ring_prod = NEXT_RX_IDX(ring_prod);
1159 cqe_ring_prod = NEXT_RCQ_IDX(cqe_ring_prod);
1160 WARN_ON(ring_prod <= (i - failure_cnt));
1163 if (failure_cnt)
1164 BNX2X_ERR("was only able to allocate %d rx skbs on queue[%d]\n",
1165 i - failure_cnt, fp->index);
1167 fp->rx_bd_prod = ring_prod;
1168 /* Limit the CQE producer by the CQE ring size */
1169 fp->rx_comp_prod = min_t(u16, NUM_RCQ_RINGS*RCQ_DESC_CNT,
1170 cqe_ring_prod);
1171 fp->rx_pkt = fp->rx_calls = 0;
1173 fp->eth_q_stats.rx_skb_alloc_failed += failure_cnt;
1175 return i - failure_cnt;
1178 /* Statistics ID are global per chip/path, while Client IDs for E1x are per
1179 * port.
1181 static inline u8 bnx2x_stats_id(struct bnx2x_fastpath *fp)
1183 struct bnx2x *bp = fp->bp;
1184 if (!CHIP_IS_E1x(bp)) {
1185 #ifdef BCM_CNIC
1186 /* there are special statistics counters for FCoE 136..140 */
1187 if (IS_FCOE_FP(fp))
1188 return bp->cnic_base_cl_id + (bp->pf_num >> 1);
1189 #endif
1190 return fp->cl_id;
1192 return fp->cl_id + BP_PORT(bp) * FP_SB_MAX_E1x;
1195 static inline void bnx2x_init_vlan_mac_fp_objs(struct bnx2x_fastpath *fp,
1196 bnx2x_obj_type obj_type)
1198 struct bnx2x *bp = fp->bp;
1200 /* Configure classification DBs */
1201 bnx2x_init_mac_obj(bp, &fp->mac_obj, fp->cl_id, fp->cid,
1202 BP_FUNC(bp), bnx2x_sp(bp, mac_rdata),
1203 bnx2x_sp_mapping(bp, mac_rdata),
1204 BNX2X_FILTER_MAC_PENDING,
1205 &bp->sp_state, obj_type,
1206 &bp->macs_pool);
1210 * bnx2x_get_path_func_num - get number of active functions
1212 * @bp: driver handle
1214 * Calculates the number of active (not hidden) functions on the
1215 * current path.
1217 static inline u8 bnx2x_get_path_func_num(struct bnx2x *bp)
1219 u8 func_num = 0, i;
1221 /* 57710 has only one function per-port */
1222 if (CHIP_IS_E1(bp))
1223 return 1;
1225 /* Calculate a number of functions enabled on the current
1226 * PATH/PORT.
1228 if (CHIP_REV_IS_SLOW(bp)) {
1229 if (IS_MF(bp))
1230 func_num = 4;
1231 else
1232 func_num = 2;
1233 } else {
1234 for (i = 0; i < E1H_FUNC_MAX / 2; i++) {
1235 u32 func_config =
1236 MF_CFG_RD(bp,
1237 func_mf_config[BP_PORT(bp) + 2 * i].
1238 config);
1239 func_num +=
1240 ((func_config & FUNC_MF_CFG_FUNC_HIDE) ? 0 : 1);
1244 WARN_ON(!func_num);
1246 return func_num;
1249 static inline void bnx2x_init_bp_objs(struct bnx2x *bp)
1251 /* RX_MODE controlling object */
1252 bnx2x_init_rx_mode_obj(bp, &bp->rx_mode_obj);
1254 /* multicast configuration controlling object */
1255 bnx2x_init_mcast_obj(bp, &bp->mcast_obj, bp->fp->cl_id, bp->fp->cid,
1256 BP_FUNC(bp), BP_FUNC(bp),
1257 bnx2x_sp(bp, mcast_rdata),
1258 bnx2x_sp_mapping(bp, mcast_rdata),
1259 BNX2X_FILTER_MCAST_PENDING, &bp->sp_state,
1260 BNX2X_OBJ_TYPE_RX);
1262 /* Setup CAM credit pools */
1263 bnx2x_init_mac_credit_pool(bp, &bp->macs_pool, BP_FUNC(bp),
1264 bnx2x_get_path_func_num(bp));
1266 /* RSS configuration object */
1267 bnx2x_init_rss_config_obj(bp, &bp->rss_conf_obj, bp->fp->cl_id,
1268 bp->fp->cid, BP_FUNC(bp), BP_FUNC(bp),
1269 bnx2x_sp(bp, rss_rdata),
1270 bnx2x_sp_mapping(bp, rss_rdata),
1271 BNX2X_FILTER_RSS_CONF_PENDING, &bp->sp_state,
1272 BNX2X_OBJ_TYPE_RX);
1275 static inline u8 bnx2x_fp_qzone_id(struct bnx2x_fastpath *fp)
1277 if (CHIP_IS_E1x(fp->bp))
1278 return fp->cl_id + BP_PORT(fp->bp) * ETH_MAX_RX_CLIENTS_E1H;
1279 else
1280 return fp->cl_id;
1283 static inline u32 bnx2x_rx_ustorm_prods_offset(struct bnx2x_fastpath *fp)
1285 struct bnx2x *bp = fp->bp;
1287 if (!CHIP_IS_E1x(bp))
1288 return USTORM_RX_PRODS_E2_OFFSET(fp->cl_qzone_id);
1289 else
1290 return USTORM_RX_PRODS_E1X_OFFSET(BP_PORT(bp), fp->cl_id);
1293 static inline void bnx2x_init_txdata(struct bnx2x *bp,
1294 struct bnx2x_fp_txdata *txdata, u32 cid, int txq_index,
1295 __le16 *tx_cons_sb)
1297 txdata->cid = cid;
1298 txdata->txq_index = txq_index;
1299 txdata->tx_cons_sb = tx_cons_sb;
1301 DP(NETIF_MSG_IFUP, "created tx data cid %d, txq %d\n",
1302 txdata->cid, txdata->txq_index);
1305 #ifdef BCM_CNIC
1306 static inline u8 bnx2x_cnic_eth_cl_id(struct bnx2x *bp, u8 cl_idx)
1308 return bp->cnic_base_cl_id + cl_idx +
1309 (bp->pf_num >> 1) * BNX2X_MAX_CNIC_ETH_CL_ID_IDX;
1312 static inline u8 bnx2x_cnic_fw_sb_id(struct bnx2x *bp)
1315 /* the 'first' id is allocated for the cnic */
1316 return bp->base_fw_ndsb;
1319 static inline u8 bnx2x_cnic_igu_sb_id(struct bnx2x *bp)
1321 return bp->igu_base_sb;
1325 static inline void bnx2x_init_fcoe_fp(struct bnx2x *bp)
1327 struct bnx2x_fastpath *fp = bnx2x_fcoe_fp(bp);
1328 unsigned long q_type = 0;
1330 bnx2x_fcoe(bp, rx_queue) = BNX2X_NUM_ETH_QUEUES(bp);
1331 bnx2x_fcoe(bp, cl_id) = bnx2x_cnic_eth_cl_id(bp,
1332 BNX2X_FCOE_ETH_CL_ID_IDX);
1333 /** Current BNX2X_FCOE_ETH_CID deffinition implies not more than
1334 * 16 ETH clients per function when CNIC is enabled!
1336 * Fix it ASAP!!!
1338 bnx2x_fcoe(bp, cid) = BNX2X_FCOE_ETH_CID;
1339 bnx2x_fcoe(bp, fw_sb_id) = DEF_SB_ID;
1340 bnx2x_fcoe(bp, igu_sb_id) = bp->igu_dsb_id;
1341 bnx2x_fcoe(bp, rx_cons_sb) = BNX2X_FCOE_L2_RX_INDEX;
1343 bnx2x_init_txdata(bp, &bnx2x_fcoe(bp, txdata[0]),
1344 fp->cid, FCOE_TXQ_IDX(bp), BNX2X_FCOE_L2_TX_INDEX);
1346 DP(NETIF_MSG_IFUP, "created fcoe tx data (fp index %d)\n", fp->index);
1348 /* qZone id equals to FW (per path) client id */
1349 bnx2x_fcoe(bp, cl_qzone_id) = bnx2x_fp_qzone_id(fp);
1350 /* init shortcut */
1351 bnx2x_fcoe(bp, ustorm_rx_prods_offset) =
1352 bnx2x_rx_ustorm_prods_offset(fp);
1354 /* Configure Queue State object */
1355 __set_bit(BNX2X_Q_TYPE_HAS_RX, &q_type);
1356 __set_bit(BNX2X_Q_TYPE_HAS_TX, &q_type);
1358 /* No multi-CoS for FCoE L2 client */
1359 BUG_ON(fp->max_cos != 1);
1361 bnx2x_init_queue_obj(bp, &fp->q_obj, fp->cl_id, &fp->cid, 1,
1362 BP_FUNC(bp), bnx2x_sp(bp, q_rdata),
1363 bnx2x_sp_mapping(bp, q_rdata), q_type);
1365 DP(NETIF_MSG_IFUP,
1366 "queue[%d]: bnx2x_init_sb(%p,%p) cl_id %d fw_sb %d igu_sb %d\n",
1367 fp->index, bp, fp->status_blk.e2_sb, fp->cl_id, fp->fw_sb_id,
1368 fp->igu_sb_id);
1370 #endif
1372 static inline int bnx2x_clean_tx_queue(struct bnx2x *bp,
1373 struct bnx2x_fp_txdata *txdata)
1375 int cnt = 1000;
1377 while (bnx2x_has_tx_work_unload(txdata)) {
1378 if (!cnt) {
1379 BNX2X_ERR("timeout waiting for queue[%d]: txdata->tx_pkt_prod(%d) != txdata->tx_pkt_cons(%d)\n",
1380 txdata->txq_index, txdata->tx_pkt_prod,
1381 txdata->tx_pkt_cons);
1382 #ifdef BNX2X_STOP_ON_ERROR
1383 bnx2x_panic();
1384 return -EBUSY;
1385 #else
1386 break;
1387 #endif
1389 cnt--;
1390 usleep_range(1000, 1000);
1393 return 0;
1396 int bnx2x_get_link_cfg_idx(struct bnx2x *bp);
1398 static inline void __storm_memset_struct(struct bnx2x *bp,
1399 u32 addr, size_t size, u32 *data)
1401 int i;
1402 for (i = 0; i < size/4; i++)
1403 REG_WR(bp, addr + (i * 4), data[i]);
1406 static inline void storm_memset_func_cfg(struct bnx2x *bp,
1407 struct tstorm_eth_function_common_config *tcfg,
1408 u16 abs_fid)
1410 size_t size = sizeof(struct tstorm_eth_function_common_config);
1412 u32 addr = BAR_TSTRORM_INTMEM +
1413 TSTORM_FUNCTION_COMMON_CONFIG_OFFSET(abs_fid);
1415 __storm_memset_struct(bp, addr, size, (u32 *)tcfg);
1418 static inline void storm_memset_cmng(struct bnx2x *bp,
1419 struct cmng_struct_per_port *cmng,
1420 u8 port)
1422 size_t size = sizeof(struct cmng_struct_per_port);
1424 u32 addr = BAR_XSTRORM_INTMEM +
1425 XSTORM_CMNG_PER_PORT_VARS_OFFSET(port);
1427 __storm_memset_struct(bp, addr, size, (u32 *)cmng);
1431 * bnx2x_wait_sp_comp - wait for the outstanding SP commands.
1433 * @bp: driver handle
1434 * @mask: bits that need to be cleared
1436 static inline bool bnx2x_wait_sp_comp(struct bnx2x *bp, unsigned long mask)
1438 int tout = 5000; /* Wait for 5 secs tops */
1440 while (tout--) {
1441 smp_mb();
1442 netif_addr_lock_bh(bp->dev);
1443 if (!(bp->sp_state & mask)) {
1444 netif_addr_unlock_bh(bp->dev);
1445 return true;
1447 netif_addr_unlock_bh(bp->dev);
1449 usleep_range(1000, 1000);
1452 smp_mb();
1454 netif_addr_lock_bh(bp->dev);
1455 if (bp->sp_state & mask) {
1456 BNX2X_ERR("Filtering completion timed out. sp_state 0x%lx, mask 0x%lx\n",
1457 bp->sp_state, mask);
1458 netif_addr_unlock_bh(bp->dev);
1459 return false;
1461 netif_addr_unlock_bh(bp->dev);
1463 return true;
1467 * bnx2x_set_ctx_validation - set CDU context validation values
1469 * @bp: driver handle
1470 * @cxt: context of the connection on the host memory
1471 * @cid: SW CID of the connection to be configured
1473 void bnx2x_set_ctx_validation(struct bnx2x *bp, struct eth_context *cxt,
1474 u32 cid);
1476 void bnx2x_update_coalesce_sb_index(struct bnx2x *bp, u8 fw_sb_id,
1477 u8 sb_index, u8 disable, u16 usec);
1478 void bnx2x_acquire_phy_lock(struct bnx2x *bp);
1479 void bnx2x_release_phy_lock(struct bnx2x *bp);
1482 * bnx2x_extract_max_cfg - extract MAX BW part from MF configuration.
1484 * @bp: driver handle
1485 * @mf_cfg: MF configuration
1488 static inline u16 bnx2x_extract_max_cfg(struct bnx2x *bp, u32 mf_cfg)
1490 u16 max_cfg = (mf_cfg & FUNC_MF_CFG_MAX_BW_MASK) >>
1491 FUNC_MF_CFG_MAX_BW_SHIFT;
1492 if (!max_cfg) {
1493 DP(NETIF_MSG_IFUP | BNX2X_MSG_ETHTOOL,
1494 "Max BW configured to 0 - using 100 instead\n");
1495 max_cfg = 100;
1497 return max_cfg;
1500 /* checks if HW supports GRO for given MTU */
1501 static inline bool bnx2x_mtu_allows_gro(int mtu)
1503 /* gro frags per page */
1504 int fpp = SGE_PAGE_SIZE / (mtu - ETH_MAX_TPA_HEADER_SIZE);
1507 * 1. number of frags should not grow above MAX_SKB_FRAGS
1508 * 2. frag must fit the page
1510 return mtu <= SGE_PAGE_SIZE && (U_ETH_SGL_SIZE * fpp) <= MAX_SKB_FRAGS;
1513 static inline bool bnx2x_need_gro_check(int mtu)
1515 return (SGE_PAGES / (mtu - ETH_MAX_TPA_HEADER_SIZE - 1)) !=
1516 (SGE_PAGES / (mtu - ETH_MIN_TPA_HEADER_SIZE + 1));
1520 * bnx2x_bz_fp - zero content of the fastpath structure.
1522 * @bp: driver handle
1523 * @index: fastpath index to be zeroed
1525 * Makes sure the contents of the bp->fp[index].napi is kept
1526 * intact.
1528 static inline void bnx2x_bz_fp(struct bnx2x *bp, int index)
1530 struct bnx2x_fastpath *fp = &bp->fp[index];
1531 struct napi_struct orig_napi = fp->napi;
1532 /* bzero bnx2x_fastpath contents */
1533 if (bp->stats_init)
1534 memset(fp, 0, sizeof(*fp));
1535 else {
1536 /* Keep Queue statistics */
1537 struct bnx2x_eth_q_stats *tmp_eth_q_stats;
1538 struct bnx2x_eth_q_stats_old *tmp_eth_q_stats_old;
1540 tmp_eth_q_stats = kzalloc(sizeof(struct bnx2x_eth_q_stats),
1541 GFP_KERNEL);
1542 if (tmp_eth_q_stats)
1543 memcpy(tmp_eth_q_stats, &fp->eth_q_stats,
1544 sizeof(struct bnx2x_eth_q_stats));
1546 tmp_eth_q_stats_old =
1547 kzalloc(sizeof(struct bnx2x_eth_q_stats_old),
1548 GFP_KERNEL);
1549 if (tmp_eth_q_stats_old)
1550 memcpy(tmp_eth_q_stats_old, &fp->eth_q_stats_old,
1551 sizeof(struct bnx2x_eth_q_stats_old));
1553 memset(fp, 0, sizeof(*fp));
1555 if (tmp_eth_q_stats) {
1556 memcpy(&fp->eth_q_stats, tmp_eth_q_stats,
1557 sizeof(struct bnx2x_eth_q_stats));
1558 kfree(tmp_eth_q_stats);
1561 if (tmp_eth_q_stats_old) {
1562 memcpy(&fp->eth_q_stats_old, tmp_eth_q_stats_old,
1563 sizeof(struct bnx2x_eth_q_stats_old));
1564 kfree(tmp_eth_q_stats_old);
1569 /* Restore the NAPI object as it has been already initialized */
1570 fp->napi = orig_napi;
1572 fp->bp = bp;
1573 fp->index = index;
1574 if (IS_ETH_FP(fp))
1575 fp->max_cos = bp->max_cos;
1576 else
1577 /* Special queues support only one CoS */
1578 fp->max_cos = 1;
1581 * set the tpa flag for each queue. The tpa flag determines the queue
1582 * minimal size so it must be set prior to queue memory allocation
1584 fp->disable_tpa = !(bp->flags & TPA_ENABLE_FLAG ||
1585 (bp->flags & GRO_ENABLE_FLAG &&
1586 bnx2x_mtu_allows_gro(bp->dev->mtu)));
1587 if (bp->flags & TPA_ENABLE_FLAG)
1588 fp->mode = TPA_MODE_LRO;
1589 else if (bp->flags & GRO_ENABLE_FLAG)
1590 fp->mode = TPA_MODE_GRO;
1592 #ifdef BCM_CNIC
1593 /* We don't want TPA on an FCoE L2 ring */
1594 if (IS_FCOE_FP(fp))
1595 fp->disable_tpa = 1;
1596 #endif
1599 #ifdef BCM_CNIC
1601 * bnx2x_get_iscsi_info - update iSCSI params according to licensing info.
1603 * @bp: driver handle
1606 void bnx2x_get_iscsi_info(struct bnx2x *bp);
1607 #endif
1608 /* returns func by VN for current port */
1609 static inline int func_by_vn(struct bnx2x *bp, int vn)
1611 return 2 * vn + BP_PORT(bp);
1615 * bnx2x_link_sync_notify - send notification to other functions.
1617 * @bp: driver handle
1620 static inline void bnx2x_link_sync_notify(struct bnx2x *bp)
1622 int func;
1623 int vn;
1625 /* Set the attention towards other drivers on the same port */
1626 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++) {
1627 if (vn == BP_VN(bp))
1628 continue;
1630 func = func_by_vn(bp, vn);
1631 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_0 +
1632 (LINK_SYNC_ATTENTION_BIT_FUNC_0 + func)*4, 1);
1637 * bnx2x_update_drv_flags - update flags in shmem
1639 * @bp: driver handle
1640 * @flags: flags to update
1641 * @set: set or clear
1644 static inline void bnx2x_update_drv_flags(struct bnx2x *bp, u32 flags, u32 set)
1646 if (SHMEM2_HAS(bp, drv_flags)) {
1647 u32 drv_flags;
1648 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_DRV_FLAGS);
1649 drv_flags = SHMEM2_RD(bp, drv_flags);
1651 if (set)
1652 SET_FLAGS(drv_flags, flags);
1653 else
1654 RESET_FLAGS(drv_flags, flags);
1656 SHMEM2_WR(bp, drv_flags, drv_flags);
1657 DP(NETIF_MSG_IFUP, "drv_flags 0x%08x\n", drv_flags);
1658 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_DRV_FLAGS);
1662 static inline bool bnx2x_is_valid_ether_addr(struct bnx2x *bp, u8 *addr)
1664 if (is_valid_ether_addr(addr))
1665 return true;
1666 #ifdef BCM_CNIC
1667 if (is_zero_ether_addr(addr) && IS_MF_ISCSI_SD(bp))
1668 return true;
1669 #endif
1670 return false;
1673 #endif /* BNX2X_CMN_H */