]> Pileus Git - ~andy/linux/blob - drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.h
650bb52155a84629659a34b5fa5e0759791acae7
[~andy/linux] / drivers / net / ethernet / broadcom / bnx2x / bnx2x_cmn.h
1 /* bnx2x_cmn.h: Broadcom Everest network driver.
2  *
3  * Copyright (c) 2007-2013 Broadcom Corporation
4  *
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.
8  *
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
15  *
16  */
17 #ifndef BNX2X_CMN_H
18 #define BNX2X_CMN_H
19
20 #include <linux/types.h>
21 #include <linux/pci.h>
22 #include <linux/netdevice.h>
23 #include <linux/etherdevice.h>
24
25 #include "bnx2x.h"
26 #include "bnx2x_sriov.h"
27
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 */
30
31 extern int num_queues;
32 extern int int_mode;
33
34 /************************ Macros ********************************/
35 #define BNX2X_PCI_FREE(x, y, size) \
36         do { \
37                 if (x) { \
38                         dma_free_coherent(&bp->pdev->dev, size, (void *)x, y); \
39                         x = NULL; \
40                         y = 0; \
41                 } \
42         } while (0)
43
44 #define BNX2X_FREE(x) \
45         do { \
46                 if (x) { \
47                         kfree((void *)x); \
48                         x = NULL; \
49                 } \
50         } while (0)
51
52 #define BNX2X_PCI_ALLOC(x, y, size) \
53         do { \
54                 x = dma_alloc_coherent(&bp->pdev->dev, size, y, \
55                                        GFP_KERNEL | __GFP_ZERO); \
56                 if (x == NULL) \
57                         goto alloc_mem_err; \
58                 DP(NETIF_MSG_HW, "BNX2X_PCI_ALLOC: Physical %Lx Virtual %p\n", \
59                    (unsigned long long)(*y), x); \
60         } while (0)
61
62 #define BNX2X_ALLOC(x, size) \
63         do { \
64                 x = kzalloc(size, GFP_KERNEL); \
65                 if (x == NULL) \
66                         goto alloc_mem_err; \
67         } while (0)
68
69 /*********************** Interfaces ****************************
70  *  Functions that need to be implemented by each driver version
71  */
72 /* Init */
73
74 /**
75  * bnx2x_send_unload_req - request unload mode from the MCP.
76  *
77  * @bp:                 driver handle
78  * @unload_mode:        requested function's unload mode
79  *
80  * Return unload mode returned by the MCP: COMMON, PORT or FUNC.
81  */
82 u32 bnx2x_send_unload_req(struct bnx2x *bp, int unload_mode);
83
84 /**
85  * bnx2x_send_unload_done - send UNLOAD_DONE command to the MCP.
86  *
87  * @bp:         driver handle
88  * @keep_link:          true iff link should be kept up
89  */
90 void bnx2x_send_unload_done(struct bnx2x *bp, bool keep_link);
91
92 /**
93  * bnx2x_config_rss_pf - configure RSS parameters in a PF.
94  *
95  * @bp:                 driver handle
96  * @rss_obj:            RSS object to use
97  * @ind_table:          indirection table to configure
98  * @config_hash:        re-configure RSS hash keys configuration
99  */
100 int bnx2x_config_rss_pf(struct bnx2x *bp, struct bnx2x_rss_config_obj *rss_obj,
101                         bool config_hash);
102
103 /**
104  * bnx2x__init_func_obj - init function object
105  *
106  * @bp:                 driver handle
107  *
108  * Initializes the Function Object with the appropriate
109  * parameters which include a function slow path driver
110  * interface.
111  */
112 void bnx2x__init_func_obj(struct bnx2x *bp);
113
114 /**
115  * bnx2x_setup_queue - setup eth queue.
116  *
117  * @bp:         driver handle
118  * @fp:         pointer to the fastpath structure
119  * @leading:    boolean
120  *
121  */
122 int bnx2x_setup_queue(struct bnx2x *bp, struct bnx2x_fastpath *fp,
123                        bool leading);
124
125 /**
126  * bnx2x_setup_leading - bring up a leading eth queue.
127  *
128  * @bp:         driver handle
129  */
130 int bnx2x_setup_leading(struct bnx2x *bp);
131
132 /**
133  * bnx2x_fw_command - send the MCP a request
134  *
135  * @bp:         driver handle
136  * @command:    request
137  * @param:      request's parameter
138  *
139  * block until there is a reply
140  */
141 u32 bnx2x_fw_command(struct bnx2x *bp, u32 command, u32 param);
142
143 /**
144  * bnx2x_initial_phy_init - initialize link parameters structure variables.
145  *
146  * @bp:         driver handle
147  * @load_mode:  current mode
148  */
149 int bnx2x_initial_phy_init(struct bnx2x *bp, int load_mode);
150
151 /**
152  * bnx2x_link_set - configure hw according to link parameters structure.
153  *
154  * @bp:         driver handle
155  */
156 void bnx2x_link_set(struct bnx2x *bp);
157
158 /**
159  * bnx2x_force_link_reset - Forces link reset, and put the PHY
160  * in reset as well.
161  *
162  * @bp:         driver handle
163  */
164 void bnx2x_force_link_reset(struct bnx2x *bp);
165
166 /**
167  * bnx2x_link_test - query link status.
168  *
169  * @bp:         driver handle
170  * @is_serdes:  bool
171  *
172  * Returns 0 if link is UP.
173  */
174 u8 bnx2x_link_test(struct bnx2x *bp, u8 is_serdes);
175
176 /**
177  * bnx2x_drv_pulse - write driver pulse to shmem
178  *
179  * @bp:         driver handle
180  *
181  * writes the value in bp->fw_drv_pulse_wr_seq to drv_pulse mbox
182  * in the shmem.
183  */
184 void bnx2x_drv_pulse(struct bnx2x *bp);
185
186 /**
187  * bnx2x_igu_ack_sb - update IGU with current SB value
188  *
189  * @bp:         driver handle
190  * @igu_sb_id:  SB id
191  * @segment:    SB segment
192  * @index:      SB index
193  * @op:         SB operation
194  * @update:     is HW update required
195  */
196 void bnx2x_igu_ack_sb(struct bnx2x *bp, u8 igu_sb_id, u8 segment,
197                       u16 index, u8 op, u8 update);
198
199 /* Disable transactions from chip to host */
200 void bnx2x_pf_disable(struct bnx2x *bp);
201 int bnx2x_pretend_func(struct bnx2x *bp, u16 pretend_func_val);
202
203 /**
204  * bnx2x__link_status_update - handles link status change.
205  *
206  * @bp:         driver handle
207  */
208 void bnx2x__link_status_update(struct bnx2x *bp);
209
210 /**
211  * bnx2x_link_report - report link status to upper layer.
212  *
213  * @bp:         driver handle
214  */
215 void bnx2x_link_report(struct bnx2x *bp);
216
217 /* None-atomic version of bnx2x_link_report() */
218 void __bnx2x_link_report(struct bnx2x *bp);
219
220 /**
221  * bnx2x_get_mf_speed - calculate MF speed.
222  *
223  * @bp:         driver handle
224  *
225  * Takes into account current linespeed and MF configuration.
226  */
227 u16 bnx2x_get_mf_speed(struct bnx2x *bp);
228
229 /**
230  * bnx2x_msix_sp_int - MSI-X slowpath interrupt handler
231  *
232  * @irq:                irq number
233  * @dev_instance:       private instance
234  */
235 irqreturn_t bnx2x_msix_sp_int(int irq, void *dev_instance);
236
237 /**
238  * bnx2x_interrupt - non MSI-X interrupt handler
239  *
240  * @irq:                irq number
241  * @dev_instance:       private instance
242  */
243 irqreturn_t bnx2x_interrupt(int irq, void *dev_instance);
244
245 /**
246  * bnx2x_cnic_notify - send command to cnic driver
247  *
248  * @bp:         driver handle
249  * @cmd:        command
250  */
251 int bnx2x_cnic_notify(struct bnx2x *bp, int cmd);
252
253 /**
254  * bnx2x_setup_cnic_irq_info - provides cnic with IRQ information
255  *
256  * @bp:         driver handle
257  */
258 void bnx2x_setup_cnic_irq_info(struct bnx2x *bp);
259
260 /**
261  * bnx2x_setup_cnic_info - provides cnic with updated info
262  *
263  * @bp:         driver handle
264  */
265 void bnx2x_setup_cnic_info(struct bnx2x *bp);
266
267 /**
268  * bnx2x_int_enable - enable HW interrupts.
269  *
270  * @bp:         driver handle
271  */
272 void bnx2x_int_enable(struct bnx2x *bp);
273
274 /**
275  * bnx2x_int_disable_sync - disable interrupts.
276  *
277  * @bp:         driver handle
278  * @disable_hw: true, disable HW interrupts.
279  *
280  * This function ensures that there are no
281  * ISRs or SP DPCs (sp_task) are running after it returns.
282  */
283 void bnx2x_int_disable_sync(struct bnx2x *bp, int disable_hw);
284
285 /**
286  * bnx2x_nic_init_cnic - init driver internals for cnic.
287  *
288  * @bp:         driver handle
289  * @load_code:  COMMON, PORT or FUNCTION
290  *
291  * Initializes:
292  *  - rings
293  *  - status blocks
294  *  - etc.
295  */
296 void bnx2x_nic_init_cnic(struct bnx2x *bp);
297
298 /**
299  * bnx2x_preirq_nic_init - init driver internals.
300  *
301  * @bp:         driver handle
302  *
303  * Initializes:
304  *  - fastpath object
305  *  - fastpath rings
306  *  etc.
307  */
308 void bnx2x_pre_irq_nic_init(struct bnx2x *bp);
309
310 /**
311  * bnx2x_postirq_nic_init - init driver internals.
312  *
313  * @bp:         driver handle
314  * @load_code:  COMMON, PORT or FUNCTION
315  *
316  * Initializes:
317  *  - status blocks
318  *  - slowpath rings
319  *  - etc.
320  */
321 void bnx2x_post_irq_nic_init(struct bnx2x *bp, u32 load_code);
322 /**
323  * bnx2x_alloc_mem_cnic - allocate driver's memory for cnic.
324  *
325  * @bp:         driver handle
326  */
327 int bnx2x_alloc_mem_cnic(struct bnx2x *bp);
328 /**
329  * bnx2x_alloc_mem - allocate driver's memory.
330  *
331  * @bp:         driver handle
332  */
333 int bnx2x_alloc_mem(struct bnx2x *bp);
334
335 /**
336  * bnx2x_free_mem_cnic - release driver's memory for cnic.
337  *
338  * @bp:         driver handle
339  */
340 void bnx2x_free_mem_cnic(struct bnx2x *bp);
341 /**
342  * bnx2x_free_mem - release driver's memory.
343  *
344  * @bp:         driver handle
345  */
346 void bnx2x_free_mem(struct bnx2x *bp);
347
348 /**
349  * bnx2x_set_num_queues - set number of queues according to mode.
350  *
351  * @bp:         driver handle
352  */
353 void bnx2x_set_num_queues(struct bnx2x *bp);
354
355 /**
356  * bnx2x_chip_cleanup - cleanup chip internals.
357  *
358  * @bp:                 driver handle
359  * @unload_mode:        COMMON, PORT, FUNCTION
360  * @keep_link:          true iff link should be kept up.
361  *
362  * - Cleanup MAC configuration.
363  * - Closes clients.
364  * - etc.
365  */
366 void bnx2x_chip_cleanup(struct bnx2x *bp, int unload_mode, bool keep_link);
367
368 /**
369  * bnx2x_acquire_hw_lock - acquire HW lock.
370  *
371  * @bp:         driver handle
372  * @resource:   resource bit which was locked
373  */
374 int bnx2x_acquire_hw_lock(struct bnx2x *bp, u32 resource);
375
376 /**
377  * bnx2x_release_hw_lock - release HW lock.
378  *
379  * @bp:         driver handle
380  * @resource:   resource bit which was locked
381  */
382 int bnx2x_release_hw_lock(struct bnx2x *bp, u32 resource);
383
384 /**
385  * bnx2x_release_leader_lock - release recovery leader lock
386  *
387  * @bp:         driver handle
388  */
389 int bnx2x_release_leader_lock(struct bnx2x *bp);
390
391 /**
392  * bnx2x_set_eth_mac - configure eth MAC address in the HW
393  *
394  * @bp:         driver handle
395  * @set:        set or clear
396  *
397  * Configures according to the value in netdev->dev_addr.
398  */
399 int bnx2x_set_eth_mac(struct bnx2x *bp, bool set);
400
401 /**
402  * bnx2x_set_rx_mode - set MAC filtering configurations.
403  *
404  * @dev:        netdevice
405  *
406  * called with netif_tx_lock from dev_mcast.c
407  * If bp->state is OPEN, should be called with
408  * netif_addr_lock_bh()
409  */
410 void bnx2x_set_rx_mode(struct net_device *dev);
411
412 /**
413  * bnx2x_set_storm_rx_mode - configure MAC filtering rules in a FW.
414  *
415  * @bp:         driver handle
416  *
417  * If bp->state is OPEN, should be called with
418  * netif_addr_lock_bh().
419  */
420 int bnx2x_set_storm_rx_mode(struct bnx2x *bp);
421
422 /**
423  * bnx2x_set_q_rx_mode - configures rx_mode for a single queue.
424  *
425  * @bp:                 driver handle
426  * @cl_id:              client id
427  * @rx_mode_flags:      rx mode configuration
428  * @rx_accept_flags:    rx accept configuration
429  * @tx_accept_flags:    tx accept configuration (tx switch)
430  * @ramrod_flags:       ramrod configuration
431  */
432 int bnx2x_set_q_rx_mode(struct bnx2x *bp, u8 cl_id,
433                         unsigned long rx_mode_flags,
434                         unsigned long rx_accept_flags,
435                         unsigned long tx_accept_flags,
436                         unsigned long ramrod_flags);
437
438 /* Parity errors related */
439 void bnx2x_set_pf_load(struct bnx2x *bp);
440 bool bnx2x_clear_pf_load(struct bnx2x *bp);
441 bool bnx2x_chk_parity_attn(struct bnx2x *bp, bool *global, bool print);
442 bool bnx2x_reset_is_done(struct bnx2x *bp, int engine);
443 void bnx2x_set_reset_in_progress(struct bnx2x *bp);
444 void bnx2x_set_reset_global(struct bnx2x *bp);
445 void bnx2x_disable_close_the_gate(struct bnx2x *bp);
446 int bnx2x_init_hw_func_cnic(struct bnx2x *bp);
447
448 /**
449  * bnx2x_sp_event - handle ramrods completion.
450  *
451  * @fp:         fastpath handle for the event
452  * @rr_cqe:     eth_rx_cqe
453  */
454 void bnx2x_sp_event(struct bnx2x_fastpath *fp, union eth_rx_cqe *rr_cqe);
455
456 /**
457  * bnx2x_ilt_set_info - prepare ILT configurations.
458  *
459  * @bp:         driver handle
460  */
461 void bnx2x_ilt_set_info(struct bnx2x *bp);
462
463 /**
464  * bnx2x_ilt_set_cnic_info - prepare ILT configurations for SRC
465  * and TM.
466  *
467  * @bp:         driver handle
468  */
469 void bnx2x_ilt_set_info_cnic(struct bnx2x *bp);
470
471 /**
472  * bnx2x_dcbx_init - initialize dcbx protocol.
473  *
474  * @bp:         driver handle
475  */
476 void bnx2x_dcbx_init(struct bnx2x *bp, bool update_shmem);
477
478 /**
479  * bnx2x_set_power_state - set power state to the requested value.
480  *
481  * @bp:         driver handle
482  * @state:      required state D0 or D3hot
483  *
484  * Currently only D0 and D3hot are supported.
485  */
486 int bnx2x_set_power_state(struct bnx2x *bp, pci_power_t state);
487
488 /**
489  * bnx2x_update_max_mf_config - update MAX part of MF configuration in HW.
490  *
491  * @bp:         driver handle
492  * @value:      new value
493  */
494 void bnx2x_update_max_mf_config(struct bnx2x *bp, u32 value);
495 /* Error handling */
496 void bnx2x_fw_dump_lvl(struct bnx2x *bp, const char *lvl);
497
498 /* dev_close main block */
499 int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode, bool keep_link);
500
501 /* dev_open main block */
502 int bnx2x_nic_load(struct bnx2x *bp, int load_mode);
503
504 /* hard_xmit callback */
505 netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev);
506
507 /* setup_tc callback */
508 int bnx2x_setup_tc(struct net_device *dev, u8 num_tc);
509
510 int bnx2x_get_vf_config(struct net_device *dev, int vf,
511                         struct ifla_vf_info *ivi);
512 int bnx2x_set_vf_mac(struct net_device *dev, int queue, u8 *mac);
513 int bnx2x_set_vf_vlan(struct net_device *netdev, int vf, u16 vlan, u8 qos);
514
515 /* select_queue callback */
516 u16 bnx2x_select_queue(struct net_device *dev, struct sk_buff *skb);
517
518 static inline void bnx2x_update_rx_prod(struct bnx2x *bp,
519                                         struct bnx2x_fastpath *fp,
520                                         u16 bd_prod, u16 rx_comp_prod,
521                                         u16 rx_sge_prod)
522 {
523         struct ustorm_eth_rx_producers rx_prods = {0};
524         u32 i;
525
526         /* Update producers */
527         rx_prods.bd_prod = bd_prod;
528         rx_prods.cqe_prod = rx_comp_prod;
529         rx_prods.sge_prod = rx_sge_prod;
530
531         /* Make sure that the BD and SGE data is updated before updating the
532          * producers since FW might read the BD/SGE right after the producer
533          * is updated.
534          * This is only applicable for weak-ordered memory model archs such
535          * as IA-64. The following barrier is also mandatory since FW will
536          * assumes BDs must have buffers.
537          */
538         wmb();
539
540         for (i = 0; i < sizeof(rx_prods)/4; i++)
541                 REG_WR(bp, fp->ustorm_rx_prods_offset + i*4,
542                        ((u32 *)&rx_prods)[i]);
543
544         mmiowb(); /* keep prod updates ordered */
545
546         DP(NETIF_MSG_RX_STATUS,
547            "queue[%d]:  wrote  bd_prod %u  cqe_prod %u  sge_prod %u\n",
548            fp->index, bd_prod, rx_comp_prod, rx_sge_prod);
549 }
550
551 /* reload helper */
552 int bnx2x_reload_if_running(struct net_device *dev);
553
554 int bnx2x_change_mac_addr(struct net_device *dev, void *p);
555
556 /* NAPI poll Rx part */
557 int bnx2x_rx_int(struct bnx2x_fastpath *fp, int budget);
558
559 /* NAPI poll Tx part */
560 int bnx2x_tx_int(struct bnx2x *bp, struct bnx2x_fp_txdata *txdata);
561
562 /* suspend/resume callbacks */
563 int bnx2x_suspend(struct pci_dev *pdev, pm_message_t state);
564 int bnx2x_resume(struct pci_dev *pdev);
565
566 /* Release IRQ vectors */
567 void bnx2x_free_irq(struct bnx2x *bp);
568
569 void bnx2x_free_fp_mem_cnic(struct bnx2x *bp);
570 void bnx2x_free_fp_mem(struct bnx2x *bp);
571 int bnx2x_alloc_fp_mem_cnic(struct bnx2x *bp);
572 int bnx2x_alloc_fp_mem(struct bnx2x *bp);
573 void bnx2x_init_rx_rings(struct bnx2x *bp);
574 void bnx2x_init_rx_rings_cnic(struct bnx2x *bp);
575 void bnx2x_free_skbs_cnic(struct bnx2x *bp);
576 void bnx2x_free_skbs(struct bnx2x *bp);
577 void bnx2x_netif_stop(struct bnx2x *bp, int disable_hw);
578 void bnx2x_netif_start(struct bnx2x *bp);
579 int bnx2x_load_cnic(struct bnx2x *bp);
580
581 /**
582  * bnx2x_enable_msix - set msix configuration.
583  *
584  * @bp:         driver handle
585  *
586  * fills msix_table, requests vectors, updates num_queues
587  * according to number of available vectors.
588  */
589 int bnx2x_enable_msix(struct bnx2x *bp);
590
591 /**
592  * bnx2x_enable_msi - request msi mode from OS, updated internals accordingly
593  *
594  * @bp:         driver handle
595  */
596 int bnx2x_enable_msi(struct bnx2x *bp);
597
598 /**
599  * bnx2x_poll - NAPI callback
600  *
601  * @napi:       napi structure
602  * @budget:
603  *
604  */
605 int bnx2x_poll(struct napi_struct *napi, int budget);
606
607 /**
608  * bnx2x_alloc_mem_bp - allocate memories outsize main driver structure
609  *
610  * @bp:         driver handle
611  */
612 int bnx2x_alloc_mem_bp(struct bnx2x *bp);
613
614 /**
615  * bnx2x_free_mem_bp - release memories outsize main driver structure
616  *
617  * @bp:         driver handle
618  */
619 void bnx2x_free_mem_bp(struct bnx2x *bp);
620
621 /**
622  * bnx2x_change_mtu - change mtu netdev callback
623  *
624  * @dev:        net device
625  * @new_mtu:    requested mtu
626  *
627  */
628 int bnx2x_change_mtu(struct net_device *dev, int new_mtu);
629
630 #ifdef NETDEV_FCOE_WWNN
631 /**
632  * bnx2x_fcoe_get_wwn - return the requested WWN value for this port
633  *
634  * @dev:        net_device
635  * @wwn:        output buffer
636  * @type:       WWN type: NETDEV_FCOE_WWNN (node) or NETDEV_FCOE_WWPN (port)
637  *
638  */
639 int bnx2x_fcoe_get_wwn(struct net_device *dev, u64 *wwn, int type);
640 #endif
641
642 netdev_features_t bnx2x_fix_features(struct net_device *dev,
643                                      netdev_features_t features);
644 int bnx2x_set_features(struct net_device *dev, netdev_features_t features);
645
646 /**
647  * bnx2x_tx_timeout - tx timeout netdev callback
648  *
649  * @dev:        net device
650  */
651 void bnx2x_tx_timeout(struct net_device *dev);
652
653 /*********************** Inlines **********************************/
654 /*********************** Fast path ********************************/
655 static inline void bnx2x_update_fpsb_idx(struct bnx2x_fastpath *fp)
656 {
657         barrier(); /* status block is written to by the chip */
658         fp->fp_hc_idx = fp->sb_running_index[SM_RX_ID];
659 }
660
661 static inline void bnx2x_igu_ack_sb_gen(struct bnx2x *bp, u8 igu_sb_id,
662                                         u8 segment, u16 index, u8 op,
663                                         u8 update, u32 igu_addr)
664 {
665         struct igu_regular cmd_data = {0};
666
667         cmd_data.sb_id_and_flags =
668                         ((index << IGU_REGULAR_SB_INDEX_SHIFT) |
669                          (segment << IGU_REGULAR_SEGMENT_ACCESS_SHIFT) |
670                          (update << IGU_REGULAR_BUPDATE_SHIFT) |
671                          (op << IGU_REGULAR_ENABLE_INT_SHIFT));
672
673         DP(NETIF_MSG_INTR, "write 0x%08x to IGU addr 0x%x\n",
674            cmd_data.sb_id_and_flags, igu_addr);
675         REG_WR(bp, igu_addr, cmd_data.sb_id_and_flags);
676
677         /* Make sure that ACK is written */
678         mmiowb();
679         barrier();
680 }
681
682 static inline void bnx2x_hc_ack_sb(struct bnx2x *bp, u8 sb_id,
683                                    u8 storm, u16 index, u8 op, u8 update)
684 {
685         u32 hc_addr = (HC_REG_COMMAND_REG + BP_PORT(bp)*32 +
686                        COMMAND_REG_INT_ACK);
687         struct igu_ack_register igu_ack;
688
689         igu_ack.status_block_index = index;
690         igu_ack.sb_id_and_flags =
691                         ((sb_id << IGU_ACK_REGISTER_STATUS_BLOCK_ID_SHIFT) |
692                          (storm << IGU_ACK_REGISTER_STORM_ID_SHIFT) |
693                          (update << IGU_ACK_REGISTER_UPDATE_INDEX_SHIFT) |
694                          (op << IGU_ACK_REGISTER_INTERRUPT_MODE_SHIFT));
695
696         REG_WR(bp, hc_addr, (*(u32 *)&igu_ack));
697
698         /* Make sure that ACK is written */
699         mmiowb();
700         barrier();
701 }
702
703 static inline void bnx2x_ack_sb(struct bnx2x *bp, u8 igu_sb_id, u8 storm,
704                                 u16 index, u8 op, u8 update)
705 {
706         if (bp->common.int_block == INT_BLOCK_HC)
707                 bnx2x_hc_ack_sb(bp, igu_sb_id, storm, index, op, update);
708         else {
709                 u8 segment;
710
711                 if (CHIP_INT_MODE_IS_BC(bp))
712                         segment = storm;
713                 else if (igu_sb_id != bp->igu_dsb_id)
714                         segment = IGU_SEG_ACCESS_DEF;
715                 else if (storm == ATTENTION_ID)
716                         segment = IGU_SEG_ACCESS_ATTN;
717                 else
718                         segment = IGU_SEG_ACCESS_DEF;
719                 bnx2x_igu_ack_sb(bp, igu_sb_id, segment, index, op, update);
720         }
721 }
722
723 static inline u16 bnx2x_hc_ack_int(struct bnx2x *bp)
724 {
725         u32 hc_addr = (HC_REG_COMMAND_REG + BP_PORT(bp)*32 +
726                        COMMAND_REG_SIMD_MASK);
727         u32 result = REG_RD(bp, hc_addr);
728
729         barrier();
730         return result;
731 }
732
733 static inline u16 bnx2x_igu_ack_int(struct bnx2x *bp)
734 {
735         u32 igu_addr = (BAR_IGU_INTMEM + IGU_REG_SISR_MDPC_WMASK_LSB_UPPER*8);
736         u32 result = REG_RD(bp, igu_addr);
737
738         DP(NETIF_MSG_INTR, "read 0x%08x from IGU addr 0x%x\n",
739            result, igu_addr);
740
741         barrier();
742         return result;
743 }
744
745 static inline u16 bnx2x_ack_int(struct bnx2x *bp)
746 {
747         barrier();
748         if (bp->common.int_block == INT_BLOCK_HC)
749                 return bnx2x_hc_ack_int(bp);
750         else
751                 return bnx2x_igu_ack_int(bp);
752 }
753
754 static inline int bnx2x_has_tx_work_unload(struct bnx2x_fp_txdata *txdata)
755 {
756         /* Tell compiler that consumer and producer can change */
757         barrier();
758         return txdata->tx_pkt_prod != txdata->tx_pkt_cons;
759 }
760
761 static inline u16 bnx2x_tx_avail(struct bnx2x *bp,
762                                  struct bnx2x_fp_txdata *txdata)
763 {
764         s16 used;
765         u16 prod;
766         u16 cons;
767
768         prod = txdata->tx_bd_prod;
769         cons = txdata->tx_bd_cons;
770
771         used = SUB_S16(prod, cons);
772
773 #ifdef BNX2X_STOP_ON_ERROR
774         WARN_ON(used < 0);
775         WARN_ON(used > txdata->tx_ring_size);
776         WARN_ON((txdata->tx_ring_size - used) > MAX_TX_AVAIL);
777 #endif
778
779         return (s16)(txdata->tx_ring_size) - used;
780 }
781
782 static inline int bnx2x_tx_queue_has_work(struct bnx2x_fp_txdata *txdata)
783 {
784         u16 hw_cons;
785
786         /* Tell compiler that status block fields can change */
787         barrier();
788         hw_cons = le16_to_cpu(*txdata->tx_cons_sb);
789         return hw_cons != txdata->tx_pkt_cons;
790 }
791
792 static inline bool bnx2x_has_tx_work(struct bnx2x_fastpath *fp)
793 {
794         u8 cos;
795         for_each_cos_in_tx_queue(fp, cos)
796                 if (bnx2x_tx_queue_has_work(fp->txdata_ptr[cos]))
797                         return true;
798         return false;
799 }
800
801 static inline int bnx2x_has_rx_work(struct bnx2x_fastpath *fp)
802 {
803         u16 rx_cons_sb;
804
805         /* Tell compiler that status block fields can change */
806         barrier();
807         rx_cons_sb = le16_to_cpu(*fp->rx_cons_sb);
808         if ((rx_cons_sb & MAX_RCQ_DESC_CNT) == MAX_RCQ_DESC_CNT)
809                 rx_cons_sb++;
810         return (fp->rx_comp_cons != rx_cons_sb);
811 }
812
813 /**
814  * bnx2x_tx_disable - disables tx from stack point of view
815  *
816  * @bp:         driver handle
817  */
818 static inline void bnx2x_tx_disable(struct bnx2x *bp)
819 {
820         netif_tx_disable(bp->dev);
821         netif_carrier_off(bp->dev);
822 }
823
824 static inline void bnx2x_free_rx_sge(struct bnx2x *bp,
825                                      struct bnx2x_fastpath *fp, u16 index)
826 {
827         struct sw_rx_page *sw_buf = &fp->rx_page_ring[index];
828         struct page *page = sw_buf->page;
829         struct eth_rx_sge *sge = &fp->rx_sge_ring[index];
830
831         /* Skip "next page" elements */
832         if (!page)
833                 return;
834
835         dma_unmap_page(&bp->pdev->dev, dma_unmap_addr(sw_buf, mapping),
836                        SGE_PAGES, DMA_FROM_DEVICE);
837         __free_pages(page, PAGES_PER_SGE_SHIFT);
838
839         sw_buf->page = NULL;
840         sge->addr_hi = 0;
841         sge->addr_lo = 0;
842 }
843
844 static inline void bnx2x_add_all_napi_cnic(struct bnx2x *bp)
845 {
846         int i;
847
848         /* Add NAPI objects */
849         for_each_rx_queue_cnic(bp, i)
850                 netif_napi_add(bp->dev, &bnx2x_fp(bp, i, napi),
851                                bnx2x_poll, NAPI_POLL_WEIGHT);
852 }
853
854 static inline void bnx2x_add_all_napi(struct bnx2x *bp)
855 {
856         int i;
857
858         /* Add NAPI objects */
859         for_each_eth_queue(bp, i)
860                 netif_napi_add(bp->dev, &bnx2x_fp(bp, i, napi),
861                                bnx2x_poll, NAPI_POLL_WEIGHT);
862 }
863
864 static inline void bnx2x_del_all_napi_cnic(struct bnx2x *bp)
865 {
866         int i;
867
868         for_each_rx_queue_cnic(bp, i)
869                 netif_napi_del(&bnx2x_fp(bp, i, napi));
870 }
871
872 static inline void bnx2x_del_all_napi(struct bnx2x *bp)
873 {
874         int i;
875
876         for_each_eth_queue(bp, i)
877                 netif_napi_del(&bnx2x_fp(bp, i, napi));
878 }
879
880 int bnx2x_set_int_mode(struct bnx2x *bp);
881
882 static inline void bnx2x_disable_msi(struct bnx2x *bp)
883 {
884         if (bp->flags & USING_MSIX_FLAG) {
885                 pci_disable_msix(bp->pdev);
886                 bp->flags &= ~(USING_MSIX_FLAG | USING_SINGLE_MSIX_FLAG);
887         } else if (bp->flags & USING_MSI_FLAG) {
888                 pci_disable_msi(bp->pdev);
889                 bp->flags &= ~USING_MSI_FLAG;
890         }
891 }
892
893 static inline int bnx2x_calc_num_queues(struct bnx2x *bp)
894 {
895         return  num_queues ?
896                  min_t(int, num_queues, BNX2X_MAX_QUEUES(bp)) :
897                  min_t(int, netif_get_num_default_rss_queues(),
898                        BNX2X_MAX_QUEUES(bp));
899 }
900
901 static inline void bnx2x_clear_sge_mask_next_elems(struct bnx2x_fastpath *fp)
902 {
903         int i, j;
904
905         for (i = 1; i <= NUM_RX_SGE_PAGES; i++) {
906                 int idx = RX_SGE_CNT * i - 1;
907
908                 for (j = 0; j < 2; j++) {
909                         BIT_VEC64_CLEAR_BIT(fp->sge_mask, idx);
910                         idx--;
911                 }
912         }
913 }
914
915 static inline void bnx2x_init_sge_ring_bit_mask(struct bnx2x_fastpath *fp)
916 {
917         /* Set the mask to all 1-s: it's faster to compare to 0 than to 0xf-s */
918         memset(fp->sge_mask, 0xff, sizeof(fp->sge_mask));
919
920         /* Clear the two last indices in the page to 1:
921            these are the indices that correspond to the "next" element,
922            hence will never be indicated and should be removed from
923            the calculations. */
924         bnx2x_clear_sge_mask_next_elems(fp);
925 }
926
927 /* note that we are not allocating a new buffer,
928  * we are just moving one from cons to prod
929  * we are not creating a new mapping,
930  * so there is no need to check for dma_mapping_error().
931  */
932 static inline void bnx2x_reuse_rx_data(struct bnx2x_fastpath *fp,
933                                       u16 cons, u16 prod)
934 {
935         struct sw_rx_bd *cons_rx_buf = &fp->rx_buf_ring[cons];
936         struct sw_rx_bd *prod_rx_buf = &fp->rx_buf_ring[prod];
937         struct eth_rx_bd *cons_bd = &fp->rx_desc_ring[cons];
938         struct eth_rx_bd *prod_bd = &fp->rx_desc_ring[prod];
939
940         dma_unmap_addr_set(prod_rx_buf, mapping,
941                            dma_unmap_addr(cons_rx_buf, mapping));
942         prod_rx_buf->data = cons_rx_buf->data;
943         *prod_bd = *cons_bd;
944 }
945
946 /************************* Init ******************************************/
947
948 /* returns func by VN for current port */
949 static inline int func_by_vn(struct bnx2x *bp, int vn)
950 {
951         return 2 * vn + BP_PORT(bp);
952 }
953
954 static inline int bnx2x_config_rss_eth(struct bnx2x *bp, bool config_hash)
955 {
956         return bnx2x_config_rss_pf(bp, &bp->rss_conf_obj, config_hash);
957 }
958
959 /**
960  * bnx2x_func_start - init function
961  *
962  * @bp:         driver handle
963  *
964  * Must be called before sending CLIENT_SETUP for the first client.
965  */
966 static inline int bnx2x_func_start(struct bnx2x *bp)
967 {
968         struct bnx2x_func_state_params func_params = {NULL};
969         struct bnx2x_func_start_params *start_params =
970                 &func_params.params.start;
971
972         /* Prepare parameters for function state transitions */
973         __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
974
975         func_params.f_obj = &bp->func_obj;
976         func_params.cmd = BNX2X_F_CMD_START;
977
978         /* Function parameters */
979         start_params->mf_mode = bp->mf_mode;
980         start_params->sd_vlan_tag = bp->mf_ov;
981
982         if (CHIP_IS_E2(bp) || CHIP_IS_E3(bp))
983                 start_params->network_cos_mode = STATIC_COS;
984         else /* CHIP_IS_E1X */
985                 start_params->network_cos_mode = FW_WRR;
986
987         start_params->gre_tunnel_mode = IPGRE_TUNNEL;
988         start_params->gre_tunnel_rss = GRE_INNER_HEADERS_RSS;
989
990         return bnx2x_func_state_change(bp, &func_params);
991 }
992
993 /**
994  * bnx2x_set_fw_mac_addr - fill in a MAC address in FW format
995  *
996  * @fw_hi:      pointer to upper part
997  * @fw_mid:     pointer to middle part
998  * @fw_lo:      pointer to lower part
999  * @mac:        pointer to MAC address
1000  */
1001 static inline void bnx2x_set_fw_mac_addr(__le16 *fw_hi, __le16 *fw_mid,
1002                                          __le16 *fw_lo, u8 *mac)
1003 {
1004         ((u8 *)fw_hi)[0]  = mac[1];
1005         ((u8 *)fw_hi)[1]  = mac[0];
1006         ((u8 *)fw_mid)[0] = mac[3];
1007         ((u8 *)fw_mid)[1] = mac[2];
1008         ((u8 *)fw_lo)[0]  = mac[5];
1009         ((u8 *)fw_lo)[1]  = mac[4];
1010 }
1011
1012 static inline void bnx2x_free_rx_sge_range(struct bnx2x *bp,
1013                                            struct bnx2x_fastpath *fp, int last)
1014 {
1015         int i;
1016
1017         if (fp->disable_tpa)
1018                 return;
1019
1020         for (i = 0; i < last; i++)
1021                 bnx2x_free_rx_sge(bp, fp, i);
1022 }
1023
1024 static inline void bnx2x_set_next_page_rx_bd(struct bnx2x_fastpath *fp)
1025 {
1026         int i;
1027
1028         for (i = 1; i <= NUM_RX_RINGS; i++) {
1029                 struct eth_rx_bd *rx_bd;
1030
1031                 rx_bd = &fp->rx_desc_ring[RX_DESC_CNT * i - 2];
1032                 rx_bd->addr_hi =
1033                         cpu_to_le32(U64_HI(fp->rx_desc_mapping +
1034                                     BCM_PAGE_SIZE*(i % NUM_RX_RINGS)));
1035                 rx_bd->addr_lo =
1036                         cpu_to_le32(U64_LO(fp->rx_desc_mapping +
1037                                     BCM_PAGE_SIZE*(i % NUM_RX_RINGS)));
1038         }
1039 }
1040
1041 /* Statistics ID are global per chip/path, while Client IDs for E1x are per
1042  * port.
1043  */
1044 static inline u8 bnx2x_stats_id(struct bnx2x_fastpath *fp)
1045 {
1046         struct bnx2x *bp = fp->bp;
1047         if (!CHIP_IS_E1x(bp)) {
1048                 /* there are special statistics counters for FCoE 136..140 */
1049                 if (IS_FCOE_FP(fp))
1050                         return bp->cnic_base_cl_id + (bp->pf_num >> 1);
1051                 return fp->cl_id;
1052         }
1053         return fp->cl_id + BP_PORT(bp) * FP_SB_MAX_E1x;
1054 }
1055
1056 static inline void bnx2x_init_vlan_mac_fp_objs(struct bnx2x_fastpath *fp,
1057                                                bnx2x_obj_type obj_type)
1058 {
1059         struct bnx2x *bp = fp->bp;
1060
1061         /* Configure classification DBs */
1062         bnx2x_init_mac_obj(bp, &bnx2x_sp_obj(bp, fp).mac_obj, fp->cl_id,
1063                            fp->cid, BP_FUNC(bp), bnx2x_sp(bp, mac_rdata),
1064                            bnx2x_sp_mapping(bp, mac_rdata),
1065                            BNX2X_FILTER_MAC_PENDING,
1066                            &bp->sp_state, obj_type,
1067                            &bp->macs_pool);
1068 }
1069
1070 /**
1071  * bnx2x_get_path_func_num - get number of active functions
1072  *
1073  * @bp:         driver handle
1074  *
1075  * Calculates the number of active (not hidden) functions on the
1076  * current path.
1077  */
1078 static inline u8 bnx2x_get_path_func_num(struct bnx2x *bp)
1079 {
1080         u8 func_num = 0, i;
1081
1082         /* 57710 has only one function per-port */
1083         if (CHIP_IS_E1(bp))
1084                 return 1;
1085
1086         /* Calculate a number of functions enabled on the current
1087          * PATH/PORT.
1088          */
1089         if (CHIP_REV_IS_SLOW(bp)) {
1090                 if (IS_MF(bp))
1091                         func_num = 4;
1092                 else
1093                         func_num = 2;
1094         } else {
1095                 for (i = 0; i < E1H_FUNC_MAX / 2; i++) {
1096                         u32 func_config =
1097                                 MF_CFG_RD(bp,
1098                                           func_mf_config[BP_PORT(bp) + 2 * i].
1099                                           config);
1100                         func_num +=
1101                                 ((func_config & FUNC_MF_CFG_FUNC_HIDE) ? 0 : 1);
1102                 }
1103         }
1104
1105         WARN_ON(!func_num);
1106
1107         return func_num;
1108 }
1109
1110 static inline void bnx2x_init_bp_objs(struct bnx2x *bp)
1111 {
1112         /* RX_MODE controlling object */
1113         bnx2x_init_rx_mode_obj(bp, &bp->rx_mode_obj);
1114
1115         /* multicast configuration controlling object */
1116         bnx2x_init_mcast_obj(bp, &bp->mcast_obj, bp->fp->cl_id, bp->fp->cid,
1117                              BP_FUNC(bp), BP_FUNC(bp),
1118                              bnx2x_sp(bp, mcast_rdata),
1119                              bnx2x_sp_mapping(bp, mcast_rdata),
1120                              BNX2X_FILTER_MCAST_PENDING, &bp->sp_state,
1121                              BNX2X_OBJ_TYPE_RX);
1122
1123         /* Setup CAM credit pools */
1124         bnx2x_init_mac_credit_pool(bp, &bp->macs_pool, BP_FUNC(bp),
1125                                    bnx2x_get_path_func_num(bp));
1126
1127         bnx2x_init_vlan_credit_pool(bp, &bp->vlans_pool, BP_ABS_FUNC(bp)>>1,
1128                                     bnx2x_get_path_func_num(bp));
1129
1130         /* RSS configuration object */
1131         bnx2x_init_rss_config_obj(bp, &bp->rss_conf_obj, bp->fp->cl_id,
1132                                   bp->fp->cid, BP_FUNC(bp), BP_FUNC(bp),
1133                                   bnx2x_sp(bp, rss_rdata),
1134                                   bnx2x_sp_mapping(bp, rss_rdata),
1135                                   BNX2X_FILTER_RSS_CONF_PENDING, &bp->sp_state,
1136                                   BNX2X_OBJ_TYPE_RX);
1137 }
1138
1139 static inline u8 bnx2x_fp_qzone_id(struct bnx2x_fastpath *fp)
1140 {
1141         if (CHIP_IS_E1x(fp->bp))
1142                 return fp->cl_id + BP_PORT(fp->bp) * ETH_MAX_RX_CLIENTS_E1H;
1143         else
1144                 return fp->cl_id;
1145 }
1146
1147 u32 bnx2x_rx_ustorm_prods_offset(struct bnx2x_fastpath *fp);
1148
1149 static inline void bnx2x_init_txdata(struct bnx2x *bp,
1150                                      struct bnx2x_fp_txdata *txdata, u32 cid,
1151                                      int txq_index, __le16 *tx_cons_sb,
1152                                      struct bnx2x_fastpath *fp)
1153 {
1154         txdata->cid = cid;
1155         txdata->txq_index = txq_index;
1156         txdata->tx_cons_sb = tx_cons_sb;
1157         txdata->parent_fp = fp;
1158         txdata->tx_ring_size = IS_FCOE_FP(fp) ? MAX_TX_AVAIL : bp->tx_ring_size;
1159
1160         DP(NETIF_MSG_IFUP, "created tx data cid %d, txq %d\n",
1161            txdata->cid, txdata->txq_index);
1162 }
1163
1164 static inline u8 bnx2x_cnic_eth_cl_id(struct bnx2x *bp, u8 cl_idx)
1165 {
1166         return bp->cnic_base_cl_id + cl_idx +
1167                 (bp->pf_num >> 1) * BNX2X_MAX_CNIC_ETH_CL_ID_IDX;
1168 }
1169
1170 static inline u8 bnx2x_cnic_fw_sb_id(struct bnx2x *bp)
1171 {
1172         /* the 'first' id is allocated for the cnic */
1173         return bp->base_fw_ndsb;
1174 }
1175
1176 static inline u8 bnx2x_cnic_igu_sb_id(struct bnx2x *bp)
1177 {
1178         return bp->igu_base_sb;
1179 }
1180
1181 static inline void bnx2x_init_fcoe_fp(struct bnx2x *bp)
1182 {
1183         struct bnx2x_fastpath *fp = bnx2x_fcoe_fp(bp);
1184         unsigned long q_type = 0;
1185
1186         bnx2x_fcoe(bp, rx_queue) = BNX2X_NUM_ETH_QUEUES(bp);
1187         bnx2x_fcoe(bp, cl_id) = bnx2x_cnic_eth_cl_id(bp,
1188                                                      BNX2X_FCOE_ETH_CL_ID_IDX);
1189         bnx2x_fcoe(bp, cid) = BNX2X_FCOE_ETH_CID(bp);
1190         bnx2x_fcoe(bp, fw_sb_id) = DEF_SB_ID;
1191         bnx2x_fcoe(bp, igu_sb_id) = bp->igu_dsb_id;
1192         bnx2x_fcoe(bp, rx_cons_sb) = BNX2X_FCOE_L2_RX_INDEX;
1193         bnx2x_init_txdata(bp, bnx2x_fcoe(bp, txdata_ptr[0]),
1194                           fp->cid, FCOE_TXQ_IDX(bp), BNX2X_FCOE_L2_TX_INDEX,
1195                           fp);
1196
1197         DP(NETIF_MSG_IFUP, "created fcoe tx data (fp index %d)\n", fp->index);
1198
1199         /* qZone id equals to FW (per path) client id */
1200         bnx2x_fcoe(bp, cl_qzone_id) = bnx2x_fp_qzone_id(fp);
1201         /* init shortcut */
1202         bnx2x_fcoe(bp, ustorm_rx_prods_offset) =
1203                 bnx2x_rx_ustorm_prods_offset(fp);
1204
1205         /* Configure Queue State object */
1206         __set_bit(BNX2X_Q_TYPE_HAS_RX, &q_type);
1207         __set_bit(BNX2X_Q_TYPE_HAS_TX, &q_type);
1208
1209         /* No multi-CoS for FCoE L2 client */
1210         BUG_ON(fp->max_cos != 1);
1211
1212         bnx2x_init_queue_obj(bp, &bnx2x_sp_obj(bp, fp).q_obj, fp->cl_id,
1213                              &fp->cid, 1, BP_FUNC(bp), bnx2x_sp(bp, q_rdata),
1214                              bnx2x_sp_mapping(bp, q_rdata), q_type);
1215
1216         DP(NETIF_MSG_IFUP,
1217            "queue[%d]: bnx2x_init_sb(%p,%p) cl_id %d fw_sb %d igu_sb %d\n",
1218            fp->index, bp, fp->status_blk.e2_sb, fp->cl_id, fp->fw_sb_id,
1219            fp->igu_sb_id);
1220 }
1221
1222 static inline int bnx2x_clean_tx_queue(struct bnx2x *bp,
1223                                        struct bnx2x_fp_txdata *txdata)
1224 {
1225         int cnt = 1000;
1226
1227         while (bnx2x_has_tx_work_unload(txdata)) {
1228                 if (!cnt) {
1229                         BNX2X_ERR("timeout waiting for queue[%d]: txdata->tx_pkt_prod(%d) != txdata->tx_pkt_cons(%d)\n",
1230                                   txdata->txq_index, txdata->tx_pkt_prod,
1231                                   txdata->tx_pkt_cons);
1232 #ifdef BNX2X_STOP_ON_ERROR
1233                         bnx2x_panic();
1234                         return -EBUSY;
1235 #else
1236                         break;
1237 #endif
1238                 }
1239                 cnt--;
1240                 usleep_range(1000, 2000);
1241         }
1242
1243         return 0;
1244 }
1245
1246 int bnx2x_get_link_cfg_idx(struct bnx2x *bp);
1247
1248 static inline void __storm_memset_struct(struct bnx2x *bp,
1249                                          u32 addr, size_t size, u32 *data)
1250 {
1251         int i;
1252         for (i = 0; i < size/4; i++)
1253                 REG_WR(bp, addr + (i * 4), data[i]);
1254 }
1255
1256 /**
1257  * bnx2x_wait_sp_comp - wait for the outstanding SP commands.
1258  *
1259  * @bp:         driver handle
1260  * @mask:       bits that need to be cleared
1261  */
1262 static inline bool bnx2x_wait_sp_comp(struct bnx2x *bp, unsigned long mask)
1263 {
1264         int tout = 5000; /* Wait for 5 secs tops */
1265
1266         while (tout--) {
1267                 smp_mb();
1268                 netif_addr_lock_bh(bp->dev);
1269                 if (!(bp->sp_state & mask)) {
1270                         netif_addr_unlock_bh(bp->dev);
1271                         return true;
1272                 }
1273                 netif_addr_unlock_bh(bp->dev);
1274
1275                 usleep_range(1000, 2000);
1276         }
1277
1278         smp_mb();
1279
1280         netif_addr_lock_bh(bp->dev);
1281         if (bp->sp_state & mask) {
1282                 BNX2X_ERR("Filtering completion timed out. sp_state 0x%lx, mask 0x%lx\n",
1283                           bp->sp_state, mask);
1284                 netif_addr_unlock_bh(bp->dev);
1285                 return false;
1286         }
1287         netif_addr_unlock_bh(bp->dev);
1288
1289         return true;
1290 }
1291
1292 /**
1293  * bnx2x_set_ctx_validation - set CDU context validation values
1294  *
1295  * @bp:         driver handle
1296  * @cxt:        context of the connection on the host memory
1297  * @cid:        SW CID of the connection to be configured
1298  */
1299 void bnx2x_set_ctx_validation(struct bnx2x *bp, struct eth_context *cxt,
1300                               u32 cid);
1301
1302 void bnx2x_update_coalesce_sb_index(struct bnx2x *bp, u8 fw_sb_id,
1303                                     u8 sb_index, u8 disable, u16 usec);
1304 void bnx2x_acquire_phy_lock(struct bnx2x *bp);
1305 void bnx2x_release_phy_lock(struct bnx2x *bp);
1306
1307 /**
1308  * bnx2x_extract_max_cfg - extract MAX BW part from MF configuration.
1309  *
1310  * @bp:         driver handle
1311  * @mf_cfg:     MF configuration
1312  *
1313  */
1314 static inline u16 bnx2x_extract_max_cfg(struct bnx2x *bp, u32 mf_cfg)
1315 {
1316         u16 max_cfg = (mf_cfg & FUNC_MF_CFG_MAX_BW_MASK) >>
1317                               FUNC_MF_CFG_MAX_BW_SHIFT;
1318         if (!max_cfg) {
1319                 DP(NETIF_MSG_IFUP | BNX2X_MSG_ETHTOOL,
1320                    "Max BW configured to 0 - using 100 instead\n");
1321                 max_cfg = 100;
1322         }
1323         return max_cfg;
1324 }
1325
1326 /* checks if HW supports GRO for given MTU */
1327 static inline bool bnx2x_mtu_allows_gro(int mtu)
1328 {
1329         /* gro frags per page */
1330         int fpp = SGE_PAGE_SIZE / (mtu - ETH_MAX_TPA_HEADER_SIZE);
1331
1332         /*
1333          * 1. Number of frags should not grow above MAX_SKB_FRAGS
1334          * 2. Frag must fit the page
1335          */
1336         return mtu <= SGE_PAGE_SIZE && (U_ETH_SGL_SIZE * fpp) <= MAX_SKB_FRAGS;
1337 }
1338
1339 /**
1340  * bnx2x_get_iscsi_info - update iSCSI params according to licensing info.
1341  *
1342  * @bp:         driver handle
1343  *
1344  */
1345 void bnx2x_get_iscsi_info(struct bnx2x *bp);
1346
1347 /**
1348  * bnx2x_link_sync_notify - send notification to other functions.
1349  *
1350  * @bp:         driver handle
1351  *
1352  */
1353 static inline void bnx2x_link_sync_notify(struct bnx2x *bp)
1354 {
1355         int func;
1356         int vn;
1357
1358         /* Set the attention towards other drivers on the same port */
1359         for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++) {
1360                 if (vn == BP_VN(bp))
1361                         continue;
1362
1363                 func = func_by_vn(bp, vn);
1364                 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_0 +
1365                        (LINK_SYNC_ATTENTION_BIT_FUNC_0 + func)*4, 1);
1366         }
1367 }
1368
1369 /**
1370  * bnx2x_update_drv_flags - update flags in shmem
1371  *
1372  * @bp:         driver handle
1373  * @flags:      flags to update
1374  * @set:        set or clear
1375  *
1376  */
1377 static inline void bnx2x_update_drv_flags(struct bnx2x *bp, u32 flags, u32 set)
1378 {
1379         if (SHMEM2_HAS(bp, drv_flags)) {
1380                 u32 drv_flags;
1381                 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_DRV_FLAGS);
1382                 drv_flags = SHMEM2_RD(bp, drv_flags);
1383
1384                 if (set)
1385                         SET_FLAGS(drv_flags, flags);
1386                 else
1387                         RESET_FLAGS(drv_flags, flags);
1388
1389                 SHMEM2_WR(bp, drv_flags, drv_flags);
1390                 DP(NETIF_MSG_IFUP, "drv_flags 0x%08x\n", drv_flags);
1391                 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_DRV_FLAGS);
1392         }
1393 }
1394
1395 static inline bool bnx2x_is_valid_ether_addr(struct bnx2x *bp, u8 *addr)
1396 {
1397         if (is_valid_ether_addr(addr) ||
1398             (is_zero_ether_addr(addr) &&
1399              (IS_MF_STORAGE_SD(bp) || IS_MF_FCOE_AFEX(bp))))
1400                 return true;
1401
1402         return false;
1403 }
1404
1405 /**
1406  * bnx2x_fill_fw_str - Fill buffer with FW version string
1407  *
1408  * @bp:        driver handle
1409  * @buf:       character buffer to fill with the fw name
1410  * @buf_len:   length of the above buffer
1411  *
1412  */
1413 void bnx2x_fill_fw_str(struct bnx2x *bp, char *buf, size_t buf_len);
1414
1415 int bnx2x_drain_tx_queues(struct bnx2x *bp);
1416 void bnx2x_squeeze_objects(struct bnx2x *bp);
1417
1418 #endif /* BNX2X_CMN_H */