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