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