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