blob: a89a40f88c25779ded7f3e9357f765f191dbd55f [file] [log] [blame]
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001/* bnx2x_cmn.h: Broadcom Everest network driver.
2 *
Yuval Mintz247fa822013-01-14 05:11:50 +00003 * Copyright (c) 2007-2013 Broadcom Corporation
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00004 *
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>
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030021#include <linux/pci.h>
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000022#include <linux/netdevice.h>
Dmitry Kravkov614c76d2011-11-28 12:31:49 +000023#include <linux/etherdevice.h>
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000024
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000025#include "bnx2x.h"
Ariel Elior64112802013-01-07 00:50:23 +000026#include "bnx2x_sriov.h"
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000027
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030028/* This is used as a replacement for an MCP if it's not present */
stephen hemmingera8f47eb2014-01-09 22:20:11 -080029extern int bnx2x_load_count[2][3]; /* per-path: 0-common, 1-port0, 2-port1 */
30extern int bnx2x_num_queues;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000031
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +000032/************************ 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
Yuval Mintz6bf07b82013-06-02 00:06:20 +000050#define BNX2X_PCI_ALLOC(x, y, size) \
51 do { \
Joe Perchesede23fa2013-08-26 22:45:23 -070052 x = dma_zalloc_coherent(&bp->pdev->dev, size, y, GFP_KERNEL); \
Yuval Mintz6bf07b82013-06-02 00:06:20 +000053 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)
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +000058
Dmitry Kravkov75b29452013-06-19 01:36:05 +030059#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
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +000069#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
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000076/*********************** Interfaces ****************************
77 * Functions that need to be implemented by each driver version
78 */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030079/* 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 */
89u32 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
Yuval Mintz5d07d862012-09-13 02:56:21 +000095 * @keep_link: true iff link should be kept up
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030096 */
Yuval Mintz5d07d862012-09-13 02:56:21 +000097void bnx2x_send_unload_done(struct bnx2x *bp, bool keep_link);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030098
99/**
Dmitry Kravkov96305232012-04-03 18:41:30 +0000100 * bnx2x_config_rss_pf - configure RSS parameters in a PF.
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300101 *
102 * @bp: driver handle
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000103 * @rss_obj: RSS object to use
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300104 * @ind_table: indirection table to configure
105 * @config_hash: re-configure RSS hash keys configuration
Ariel Elior60cad4e2013-09-04 14:09:22 +0300106 * @enable: enabled or disabled configuration
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300107 */
Ariel Elior60cad4e2013-09-04 14:09:22 +0300108int bnx2x_rss(struct bnx2x *bp, struct bnx2x_rss_config_obj *rss_obj,
109 bool config_hash, bool enable);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300110
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 */
120void 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 */
130int 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 */
138int 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 */
149u32 bnx2x_fw_command(struct bnx2x *bp, u32 command, u32 param);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000150
151/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000152 * bnx2x_initial_phy_init - initialize link parameters structure variables.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000153 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000154 * @bp: driver handle
155 * @load_mode: current mode
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000156 */
Yuval Mintzcd1dfce2012-12-02 04:05:56 +0000157int bnx2x_initial_phy_init(struct bnx2x *bp, int load_mode);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000158
159/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000160 * bnx2x_link_set - configure hw according to link parameters structure.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000161 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000162 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000163 */
164void bnx2x_link_set(struct bnx2x *bp);
165
166/**
Yuval Mintz5d07d862012-09-13 02:56:21 +0000167 * bnx2x_force_link_reset - Forces link reset, and put the PHY
168 * in reset as well.
169 *
170 * @bp: driver handle
171 */
172void bnx2x_force_link_reset(struct bnx2x *bp);
173
174/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000175 * bnx2x_link_test - query link status.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000176 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000177 * @bp: driver handle
178 * @is_serdes: bool
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000179 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000180 * Returns 0 if link is UP.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000181 */
Yaniv Rosnera22f0782010-09-07 11:41:20 +0000182u8 bnx2x_link_test(struct bnx2x *bp, u8 is_serdes);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000183
184/**
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300185 * 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 */
192void 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 */
204void bnx2x_igu_ack_sb(struct bnx2x *bp, u8 igu_sb_id, u8 segment,
205 u16 index, u8 op, u8 update);
206
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +0000207/* Disable transactions from chip to host */
208void bnx2x_pf_disable(struct bnx2x *bp);
Miriam Shitrit07ba6af2013-01-14 05:11:46 +0000209int bnx2x_pretend_func(struct bnx2x *bp, u16 pretend_func_val);
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +0000210
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300211/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000212 * bnx2x__link_status_update - handles link status change.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000213 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000214 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000215 */
216void bnx2x__link_status_update(struct bnx2x *bp);
217
218/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000219 * bnx2x_link_report - report link status to upper layer.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000220 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000221 * @bp: driver handle
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000222 */
223void bnx2x_link_report(struct bnx2x *bp);
224
Vladislav Zolotarov2ae17f62011-05-04 23:48:23 +0000225/* None-atomic version of bnx2x_link_report() */
226void __bnx2x_link_report(struct bnx2x *bp);
227
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000228/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000229 * bnx2x_get_mf_speed - calculate MF speed.
Dmitry Kravkov0793f83f2010-12-01 12:39:28 -0800230 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000231 * @bp: driver handle
Dmitry Kravkov0793f83f2010-12-01 12:39:28 -0800232 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000233 * Takes into account current linespeed and MF configuration.
Dmitry Kravkov0793f83f2010-12-01 12:39:28 -0800234 */
235u16 bnx2x_get_mf_speed(struct bnx2x *bp);
236
237/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000238 * bnx2x_msix_sp_int - MSI-X slowpath interrupt handler
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000239 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000240 * @irq: irq number
241 * @dev_instance: private instance
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000242 */
243irqreturn_t bnx2x_msix_sp_int(int irq, void *dev_instance);
244
245/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000246 * bnx2x_interrupt - non MSI-X interrupt handler
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000247 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000248 * @irq: irq number
249 * @dev_instance: private instance
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000250 */
251irqreturn_t bnx2x_interrupt(int irq, void *dev_instance);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000252
253/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000254 * bnx2x_cnic_notify - send command to cnic driver
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000255 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000256 * @bp: driver handle
257 * @cmd: command
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000258 */
259int bnx2x_cnic_notify(struct bnx2x *bp, int cmd);
260
261/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000262 * bnx2x_setup_cnic_irq_info - provides cnic with IRQ information
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000263 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000264 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000265 */
266void bnx2x_setup_cnic_irq_info(struct bnx2x *bp);
Merav Sicron37ae41a2012-06-19 07:48:27 +0000267
268/**
269 * bnx2x_setup_cnic_info - provides cnic with updated info
270 *
271 * @bp: driver handle
272 */
273void bnx2x_setup_cnic_info(struct bnx2x *bp);
274
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000275/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000276 * bnx2x_int_enable - enable HW interrupts.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000277 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000278 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000279 */
280void bnx2x_int_enable(struct bnx2x *bp);
281
282/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000283 * bnx2x_int_disable_sync - disable interrupts.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000284 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000285 * @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.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000290 */
291void bnx2x_int_disable_sync(struct bnx2x *bp, int disable_hw);
292
293/**
Merav Sicron55c11942012-11-07 00:45:48 +0000294 * bnx2x_nic_init_cnic - init driver internals for cnic.
Dmitry Kravkove8920672011-05-04 23:52:40 +0000295 *
296 * @bp: driver handle
297 * @load_code: COMMON, PORT or FUNCTION
298 *
299 * Initializes:
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000300 * - rings
301 * - status blocks
302 * - etc.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000303 */
Merav Sicron55c11942012-11-07 00:45:48 +0000304void bnx2x_nic_init_cnic(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000305
306/**
Yuval Mintzecf01c22013-04-22 02:53:03 +0000307 * bnx2x_preirq_nic_init - init driver internals.
Merav Sicron55c11942012-11-07 00:45:48 +0000308 *
309 * @bp: driver handle
310 *
311 * Initializes:
Yuval Mintzecf01c22013-04-22 02:53:03 +0000312 * - fastpath object
313 * - fastpath rings
314 * etc.
315 */
316void 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:
Merav Sicron55c11942012-11-07 00:45:48 +0000325 * - status blocks
Yuval Mintzecf01c22013-04-22 02:53:03 +0000326 * - slowpath rings
Merav Sicron55c11942012-11-07 00:45:48 +0000327 * - etc.
328 */
Yuval Mintzecf01c22013-04-22 02:53:03 +0000329void bnx2x_post_irq_nic_init(struct bnx2x *bp, u32 load_code);
Merav Sicron55c11942012-11-07 00:45:48 +0000330/**
331 * bnx2x_alloc_mem_cnic - allocate driver's memory for cnic.
332 *
333 * @bp: driver handle
334 */
335int bnx2x_alloc_mem_cnic(struct bnx2x *bp);
336/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000337 * bnx2x_alloc_mem - allocate driver's memory.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000338 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000339 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000340 */
341int bnx2x_alloc_mem(struct bnx2x *bp);
342
343/**
Merav Sicron55c11942012-11-07 00:45:48 +0000344 * bnx2x_free_mem_cnic - release driver's memory for cnic.
345 *
346 * @bp: driver handle
347 */
348void bnx2x_free_mem_cnic(struct bnx2x *bp);
349/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000350 * bnx2x_free_mem - release driver's memory.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000351 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000352 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000353 */
354void bnx2x_free_mem(struct bnx2x *bp);
355
356/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000357 * bnx2x_set_num_queues - set number of queues according to mode.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000358 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000359 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000360 */
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000361void bnx2x_set_num_queues(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000362
363/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000364 * bnx2x_chip_cleanup - cleanup chip internals.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000365 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000366 * @bp: driver handle
367 * @unload_mode: COMMON, PORT, FUNCTION
Yuval Mintz5d07d862012-09-13 02:56:21 +0000368 * @keep_link: true iff link should be kept up.
Dmitry Kravkove8920672011-05-04 23:52:40 +0000369 *
370 * - Cleanup MAC configuration.
371 * - Closes clients.
372 * - etc.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000373 */
Yuval Mintz5d07d862012-09-13 02:56:21 +0000374void bnx2x_chip_cleanup(struct bnx2x *bp, int unload_mode, bool keep_link);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000375
376/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000377 * bnx2x_acquire_hw_lock - acquire HW lock.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000378 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000379 * @bp: driver handle
380 * @resource: resource bit which was locked
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000381 */
382int bnx2x_acquire_hw_lock(struct bnx2x *bp, u32 resource);
383
384/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000385 * bnx2x_release_hw_lock - release HW lock.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000386 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000387 * @bp: driver handle
388 * @resource: resource bit which was locked
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000389 */
390int bnx2x_release_hw_lock(struct bnx2x *bp, u32 resource);
391
392/**
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +0000393 * bnx2x_release_leader_lock - release recovery leader lock
394 *
395 * @bp: driver handle
396 */
397int bnx2x_release_leader_lock(struct bnx2x *bp);
398
399/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000400 * bnx2x_set_eth_mac - configure eth MAC address in the HW
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000401 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000402 * @bp: driver handle
403 * @set: set or clear
404 *
405 * Configures according to the value in netdev->dev_addr.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000406 */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300407int bnx2x_set_eth_mac(struct bnx2x *bp, bool set);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +0000408
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000409/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000410 * bnx2x_set_rx_mode - set MAC filtering configurations.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000411 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000412 * @dev: netdevice
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000413 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000414 * called with netif_tx_lock from dev_mcast.c
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300415 * If bp->state is OPEN, should be called with
416 * netif_addr_lock_bh()
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000417 */
Yuval Mintz8b09be52013-08-01 17:30:59 +0300418void bnx2x_set_rx_mode_inner(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000419
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000420/* Parity errors related */
Ariel Elior889b9af2012-01-26 06:01:51 +0000421void bnx2x_set_pf_load(struct bnx2x *bp);
422bool bnx2x_clear_pf_load(struct bnx2x *bp);
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +0000423bool bnx2x_chk_parity_attn(struct bnx2x *bp, bool *global, bool print);
424bool bnx2x_reset_is_done(struct bnx2x *bp, int engine);
425void bnx2x_set_reset_in_progress(struct bnx2x *bp);
426void bnx2x_set_reset_global(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000427void bnx2x_disable_close_the_gate(struct bnx2x *bp);
Merav Sicron55c11942012-11-07 00:45:48 +0000428int bnx2x_init_hw_func_cnic(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000429
430/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000431 * bnx2x_sp_event - handle ramrods completion.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000432 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000433 * @fp: fastpath handle for the event
434 * @rr_cqe: eth_rx_cqe
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000435 */
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000436void bnx2x_sp_event(struct bnx2x_fastpath *fp, union eth_rx_cqe *rr_cqe);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000437
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000438/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000439 * bnx2x_ilt_set_info - prepare ILT configurations.
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000440 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000441 * @bp: driver handle
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000442 */
443void bnx2x_ilt_set_info(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000444
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000445/**
Merav Sicron55c11942012-11-07 00:45:48 +0000446 * bnx2x_ilt_set_cnic_info - prepare ILT configurations for SRC
447 * and TM.
448 *
449 * @bp: driver handle
450 */
451void bnx2x_ilt_set_info_cnic(struct bnx2x *bp);
452
453/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000454 * bnx2x_dcbx_init - initialize dcbx protocol.
Vladislav Zolotarove4901dd2010-12-13 05:44:18 +0000455 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000456 * @bp: driver handle
Vladislav Zolotarove4901dd2010-12-13 05:44:18 +0000457 */
Barak Witkowski98768792012-06-19 07:48:31 +0000458void bnx2x_dcbx_init(struct bnx2x *bp, bool update_shmem);
Vladislav Zolotarove4901dd2010-12-13 05:44:18 +0000459
460/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000461 * bnx2x_set_power_state - set power state to the requested value.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000462 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000463 * @bp: driver handle
464 * @state: required state D0 or D3hot
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000465 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000466 * Currently only D0 and D3hot are supported.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000467 */
468int bnx2x_set_power_state(struct bnx2x *bp, pci_power_t state);
469
Dmitry Kravkove3835b92011-03-06 10:50:44 +0000470/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000471 * bnx2x_update_max_mf_config - update MAX part of MF configuration in HW.
Dmitry Kravkove3835b92011-03-06 10:50:44 +0000472 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000473 * @bp: driver handle
474 * @value: new value
Dmitry Kravkove3835b92011-03-06 10:50:44 +0000475 */
476void bnx2x_update_max_mf_config(struct bnx2x *bp, u32 value);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300477/* Error handling */
Dmitry Kravkov7a25cc72011-06-14 01:33:25 +0000478void bnx2x_fw_dump_lvl(struct bnx2x *bp, const char *lvl);
479
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000480/* dev_close main block */
Yuval Mintz5d07d862012-09-13 02:56:21 +0000481int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode, bool keep_link);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000482
483/* dev_open main block */
484int bnx2x_nic_load(struct bnx2x *bp, int load_mode);
485
486/* hard_xmit callback */
487netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev);
488
Ariel Elior6383c0b2011-07-14 08:31:57 +0000489/* setup_tc callback */
490int bnx2x_setup_tc(struct net_device *dev, u8 num_tc);
491
Ariel Elior3ec9f9c2013-03-11 05:17:45 +0000492int bnx2x_get_vf_config(struct net_device *dev, int vf,
493 struct ifla_vf_info *ivi);
Ariel Eliorabc5a022013-01-01 05:22:43 +0000494int bnx2x_set_vf_mac(struct net_device *dev, int queue, u8 *mac);
Ariel Elior3ec9f9c2013-03-11 05:17:45 +0000495int bnx2x_set_vf_vlan(struct net_device *netdev, int vf, u16 vlan, u8 qos);
Ariel Eliorabc5a022013-01-01 05:22:43 +0000496
Vladislav Zolotarov8307fa32010-12-13 05:44:09 +0000497/* select_queue callback */
Jason Wangf663dd92014-01-10 16:18:26 +0800498u16 bnx2x_select_queue(struct net_device *dev, struct sk_buff *skb,
Daniel Borkmann99932d42014-02-16 15:55:20 +0100499 void *accel_priv, select_queue_fallback_t fallback);
Vladislav Zolotarov8307fa32010-12-13 05:44:09 +0000500
Ariel Eliordc1ba592013-01-01 05:22:30 +0000501static inline void bnx2x_update_rx_prod(struct bnx2x *bp,
502 struct bnx2x_fastpath *fp,
503 u16 bd_prod, u16 rx_comp_prod,
504 u16 rx_sge_prod)
505{
506 struct ustorm_eth_rx_producers rx_prods = {0};
507 u32 i;
508
509 /* Update producers */
510 rx_prods.bd_prod = bd_prod;
511 rx_prods.cqe_prod = rx_comp_prod;
512 rx_prods.sge_prod = rx_sge_prod;
513
514 /* Make sure that the BD and SGE data is updated before updating the
515 * producers since FW might read the BD/SGE right after the producer
516 * is updated.
517 * This is only applicable for weak-ordered memory model archs such
518 * as IA-64. The following barrier is also mandatory since FW will
519 * assumes BDs must have buffers.
520 */
521 wmb();
522
523 for (i = 0; i < sizeof(rx_prods)/4; i++)
524 REG_WR(bp, fp->ustorm_rx_prods_offset + i*4,
525 ((u32 *)&rx_prods)[i]);
526
527 mmiowb(); /* keep prod updates ordered */
528
529 DP(NETIF_MSG_RX_STATUS,
530 "queue[%d]: wrote bd_prod %u cqe_prod %u sge_prod %u\n",
531 fp->index, bd_prod, rx_comp_prod, rx_sge_prod);
532}
533
Dmitry Kravkova9fccec2011-06-14 01:33:30 +0000534/* reload helper */
535int bnx2x_reload_if_running(struct net_device *dev);
536
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000537int bnx2x_change_mac_addr(struct net_device *dev, void *p);
538
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000539/* NAPI poll Tx part */
Ariel Elior6383c0b2011-07-14 08:31:57 +0000540int bnx2x_tx_int(struct bnx2x *bp, struct bnx2x_fp_txdata *txdata);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000541
542/* suspend/resume callbacks */
543int bnx2x_suspend(struct pci_dev *pdev, pm_message_t state);
544int bnx2x_resume(struct pci_dev *pdev);
545
546/* Release IRQ vectors */
547void bnx2x_free_irq(struct bnx2x *bp);
548
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +0000549void bnx2x_free_fp_mem(struct bnx2x *bp);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000550void bnx2x_init_rx_rings(struct bnx2x *bp);
Merav Sicron55c11942012-11-07 00:45:48 +0000551void bnx2x_init_rx_rings_cnic(struct bnx2x *bp);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000552void bnx2x_free_skbs(struct bnx2x *bp);
553void bnx2x_netif_stop(struct bnx2x *bp, int disable_hw);
554void bnx2x_netif_start(struct bnx2x *bp);
Merav Sicron55c11942012-11-07 00:45:48 +0000555int bnx2x_load_cnic(struct bnx2x *bp);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000556
557/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000558 * bnx2x_enable_msix - set msix configuration.
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000559 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000560 * @bp: driver handle
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000561 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000562 * fills msix_table, requests vectors, updates num_queues
563 * according to number of available vectors.
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000564 */
Merav Sicron0e8d2ec2012-06-19 07:48:30 +0000565int bnx2x_enable_msix(struct bnx2x *bp);
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000566
567/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000568 * bnx2x_enable_msi - request msi mode from OS, updated internals accordingly
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000569 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000570 * @bp: driver handle
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000571 */
572int bnx2x_enable_msi(struct bnx2x *bp);
573
574/**
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300575 * bnx2x_low_latency_recv - LL callback
576 *
577 * @napi: napi structure
578 */
579int bnx2x_low_latency_recv(struct napi_struct *napi);
580
581/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000582 * bnx2x_alloc_mem_bp - allocate memories outsize main driver structure
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000583 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000584 * @bp: driver handle
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000585 */
Bill Pemberton0329aba2012-12-03 09:24:24 -0500586int bnx2x_alloc_mem_bp(struct bnx2x *bp);
Dmitry Kravkove8920672011-05-04 23:52:40 +0000587
588/**
589 * bnx2x_free_mem_bp - release memories outsize main driver structure
590 *
591 * @bp: driver handle
592 */
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000593void bnx2x_free_mem_bp(struct bnx2x *bp);
594
595/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000596 * bnx2x_change_mtu - change mtu netdev callback
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000597 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000598 * @dev: net device
599 * @new_mtu: requested mtu
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000600 *
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000601 */
602int bnx2x_change_mtu(struct net_device *dev, int new_mtu);
603
Merav Sicron55c11942012-11-07 00:45:48 +0000604#ifdef NETDEV_FCOE_WWNN
Vladislav Zolotarovbf61ee12011-07-21 07:56:51 +0000605/**
606 * bnx2x_fcoe_get_wwn - return the requested WWN value for this port
607 *
608 * @dev: net_device
609 * @wwn: output buffer
610 * @type: WWN type: NETDEV_FCOE_WWNN (node) or NETDEV_FCOE_WWPN (port)
611 *
612 */
613int bnx2x_fcoe_get_wwn(struct net_device *dev, u64 *wwn, int type);
614#endif
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000615
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000616netdev_features_t bnx2x_fix_features(struct net_device *dev,
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000617 netdev_features_t features);
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000618int bnx2x_set_features(struct net_device *dev, netdev_features_t features);
Michał Mirosław66371c42011-04-12 09:38:23 +0000619
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000620/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000621 * bnx2x_tx_timeout - tx timeout netdev callback
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000622 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000623 * @dev: net device
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000624 */
625void bnx2x_tx_timeout(struct net_device *dev);
626
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300627/*********************** Inlines **********************************/
628/*********************** Fast path ********************************/
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000629static inline void bnx2x_update_fpsb_idx(struct bnx2x_fastpath *fp)
630{
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000631 barrier(); /* status block is written to by the chip */
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000632 fp->fp_hc_idx = fp->sb_running_index[SM_RX_ID];
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000633}
634
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000635static inline void bnx2x_igu_ack_sb_gen(struct bnx2x *bp, u8 igu_sb_id,
636 u8 segment, u16 index, u8 op,
637 u8 update, u32 igu_addr)
638{
639 struct igu_regular cmd_data = {0};
640
641 cmd_data.sb_id_and_flags =
642 ((index << IGU_REGULAR_SB_INDEX_SHIFT) |
643 (segment << IGU_REGULAR_SEGMENT_ACCESS_SHIFT) |
644 (update << IGU_REGULAR_BUPDATE_SHIFT) |
645 (op << IGU_REGULAR_ENABLE_INT_SHIFT));
646
Merav Sicron51c1a582012-03-18 10:33:38 +0000647 DP(NETIF_MSG_INTR, "write 0x%08x to IGU addr 0x%x\n",
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000648 cmd_data.sb_id_and_flags, igu_addr);
649 REG_WR(bp, igu_addr, cmd_data.sb_id_and_flags);
650
651 /* Make sure that ACK is written */
652 mmiowb();
653 barrier();
654}
655
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000656static inline void bnx2x_hc_ack_sb(struct bnx2x *bp, u8 sb_id,
657 u8 storm, u16 index, u8 op, u8 update)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000658{
659 u32 hc_addr = (HC_REG_COMMAND_REG + BP_PORT(bp)*32 +
660 COMMAND_REG_INT_ACK);
661 struct igu_ack_register igu_ack;
662
663 igu_ack.status_block_index = index;
664 igu_ack.sb_id_and_flags =
665 ((sb_id << IGU_ACK_REGISTER_STATUS_BLOCK_ID_SHIFT) |
666 (storm << IGU_ACK_REGISTER_STORM_ID_SHIFT) |
667 (update << IGU_ACK_REGISTER_UPDATE_INDEX_SHIFT) |
668 (op << IGU_ACK_REGISTER_INTERRUPT_MODE_SHIFT));
669
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000670 REG_WR(bp, hc_addr, (*(u32 *)&igu_ack));
671
672 /* Make sure that ACK is written */
673 mmiowb();
674 barrier();
675}
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000676
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000677static inline void bnx2x_ack_sb(struct bnx2x *bp, u8 igu_sb_id, u8 storm,
678 u16 index, u8 op, u8 update)
679{
680 if (bp->common.int_block == INT_BLOCK_HC)
681 bnx2x_hc_ack_sb(bp, igu_sb_id, storm, index, op, update);
682 else {
683 u8 segment;
684
685 if (CHIP_INT_MODE_IS_BC(bp))
686 segment = storm;
687 else if (igu_sb_id != bp->igu_dsb_id)
688 segment = IGU_SEG_ACCESS_DEF;
689 else if (storm == ATTENTION_ID)
690 segment = IGU_SEG_ACCESS_ATTN;
691 else
692 segment = IGU_SEG_ACCESS_DEF;
693 bnx2x_igu_ack_sb(bp, igu_sb_id, segment, index, op, update);
694 }
695}
696
697static inline u16 bnx2x_hc_ack_int(struct bnx2x *bp)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000698{
699 u32 hc_addr = (HC_REG_COMMAND_REG + BP_PORT(bp)*32 +
700 COMMAND_REG_SIMD_MASK);
701 u32 result = REG_RD(bp, hc_addr);
702
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000703 barrier();
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000704 return result;
705}
706
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000707static inline u16 bnx2x_igu_ack_int(struct bnx2x *bp)
708{
709 u32 igu_addr = (BAR_IGU_INTMEM + IGU_REG_SISR_MDPC_WMASK_LSB_UPPER*8);
710 u32 result = REG_RD(bp, igu_addr);
711
Merav Sicron51c1a582012-03-18 10:33:38 +0000712 DP(NETIF_MSG_INTR, "read 0x%08x from IGU addr 0x%x\n",
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000713 result, igu_addr);
714
715 barrier();
716 return result;
717}
718
719static inline u16 bnx2x_ack_int(struct bnx2x *bp)
720{
721 barrier();
722 if (bp->common.int_block == INT_BLOCK_HC)
723 return bnx2x_hc_ack_int(bp);
724 else
725 return bnx2x_igu_ack_int(bp);
726}
727
Ariel Elior6383c0b2011-07-14 08:31:57 +0000728static inline int bnx2x_has_tx_work_unload(struct bnx2x_fp_txdata *txdata)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000729{
730 /* Tell compiler that consumer and producer can change */
731 barrier();
Ariel Elior6383c0b2011-07-14 08:31:57 +0000732 return txdata->tx_pkt_prod != txdata->tx_pkt_cons;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000733}
734
Ariel Elior6383c0b2011-07-14 08:31:57 +0000735static inline u16 bnx2x_tx_avail(struct bnx2x *bp,
736 struct bnx2x_fp_txdata *txdata)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000737{
738 s16 used;
739 u16 prod;
740 u16 cons;
741
Ariel Elior6383c0b2011-07-14 08:31:57 +0000742 prod = txdata->tx_bd_prod;
743 cons = txdata->tx_bd_cons;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000744
Yuval Mintz7b5342d2012-09-11 04:34:14 +0000745 used = SUB_S16(prod, cons);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000746
747#ifdef BNX2X_STOP_ON_ERROR
748 WARN_ON(used < 0);
Yuval Mintz7b5342d2012-09-11 04:34:14 +0000749 WARN_ON(used > txdata->tx_ring_size);
750 WARN_ON((txdata->tx_ring_size - used) > MAX_TX_AVAIL);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000751#endif
752
Yuval Mintz7b5342d2012-09-11 04:34:14 +0000753 return (s16)(txdata->tx_ring_size) - used;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000754}
755
Ariel Elior6383c0b2011-07-14 08:31:57 +0000756static inline int bnx2x_tx_queue_has_work(struct bnx2x_fp_txdata *txdata)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000757{
758 u16 hw_cons;
759
760 /* Tell compiler that status block fields can change */
761 barrier();
Ariel Elior6383c0b2011-07-14 08:31:57 +0000762 hw_cons = le16_to_cpu(*txdata->tx_cons_sb);
763 return hw_cons != txdata->tx_pkt_cons;
764}
765
766static inline bool bnx2x_has_tx_work(struct bnx2x_fastpath *fp)
767{
768 u8 cos;
769 for_each_cos_in_tx_queue(fp, cos)
Merav Sicron65565882012-06-19 07:48:26 +0000770 if (bnx2x_tx_queue_has_work(fp->txdata_ptr[cos]))
Ariel Elior6383c0b2011-07-14 08:31:57 +0000771 return true;
772 return false;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000773}
774
Dmitry Kravkov75b29452013-06-19 01:36:05 +0300775#define BNX2X_IS_CQE_COMPLETED(cqe_fp) (cqe_fp->marker == 0x0)
776#define BNX2X_SEED_CQE(cqe_fp) (cqe_fp->marker = 0xFFFFFFFF)
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000777static inline int bnx2x_has_rx_work(struct bnx2x_fastpath *fp)
778{
Dmitry Kravkov75b29452013-06-19 01:36:05 +0300779 u16 cons;
780 union eth_rx_cqe *cqe;
781 struct eth_fast_path_rx_cqe *cqe_fp;
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000782
Dmitry Kravkov75b29452013-06-19 01:36:05 +0300783 cons = RCQ_BD(fp->rx_comp_cons);
784 cqe = &fp->rx_comp_ring[cons];
785 cqe_fp = &cqe->fast_path_cqe;
786 return BNX2X_IS_CQE_COMPLETED(cqe_fp);
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000787}
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000788
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000789/**
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300790 * bnx2x_tx_disable - disables tx from stack point of view
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000791 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000792 * @bp: driver handle
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000793 */
794static inline void bnx2x_tx_disable(struct bnx2x *bp)
795{
796 netif_tx_disable(bp->dev);
797 netif_carrier_off(bp->dev);
798}
799
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000800static inline void bnx2x_free_rx_sge(struct bnx2x *bp,
801 struct bnx2x_fastpath *fp, u16 index)
802{
803 struct sw_rx_page *sw_buf = &fp->rx_page_ring[index];
804 struct page *page = sw_buf->page;
805 struct eth_rx_sge *sge = &fp->rx_sge_ring[index];
806
807 /* Skip "next page" elements */
808 if (!page)
809 return;
810
811 dma_unmap_page(&bp->pdev->dev, dma_unmap_addr(sw_buf, mapping),
Yuval Mintz924d75a2013-01-23 03:21:44 +0000812 SGE_PAGES, DMA_FROM_DEVICE);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000813 __free_pages(page, PAGES_PER_SGE_SHIFT);
814
815 sw_buf->page = NULL;
816 sge->addr_hi = 0;
817 sge->addr_lo = 0;
818}
819
Merav Sicron55c11942012-11-07 00:45:48 +0000820static inline void bnx2x_del_all_napi_cnic(struct bnx2x *bp)
821{
822 int i;
823
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300824 for_each_rx_queue_cnic(bp, i) {
825 napi_hash_del(&bnx2x_fp(bp, i, napi));
Merav Sicron55c11942012-11-07 00:45:48 +0000826 netif_napi_del(&bnx2x_fp(bp, i, napi));
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300827 }
Merav Sicron55c11942012-11-07 00:45:48 +0000828}
829
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000830static inline void bnx2x_del_all_napi(struct bnx2x *bp)
831{
832 int i;
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000833
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300834 for_each_eth_queue(bp, i) {
835 napi_hash_del(&bnx2x_fp(bp, i, napi));
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000836 netif_napi_del(&bnx2x_fp(bp, i, napi));
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300837 }
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000838}
839
Ariel Elior1ab44342013-01-01 05:22:23 +0000840int bnx2x_set_int_mode(struct bnx2x *bp);
Merav Sicron0e8d2ec2012-06-19 07:48:30 +0000841
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000842static inline void bnx2x_disable_msi(struct bnx2x *bp)
843{
844 if (bp->flags & USING_MSIX_FLAG) {
845 pci_disable_msix(bp->pdev);
Dmitry Kravkov30a5de72012-04-03 18:41:26 +0000846 bp->flags &= ~(USING_MSIX_FLAG | USING_SINGLE_MSIX_FLAG);
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000847 } else if (bp->flags & USING_MSI_FLAG) {
848 pci_disable_msi(bp->pdev);
849 bp->flags &= ~USING_MSI_FLAG;
850 }
851}
852
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000853static inline void bnx2x_clear_sge_mask_next_elems(struct bnx2x_fastpath *fp)
854{
855 int i, j;
856
857 for (i = 1; i <= NUM_RX_SGE_PAGES; i++) {
858 int idx = RX_SGE_CNT * i - 1;
859
860 for (j = 0; j < 2; j++) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300861 BIT_VEC64_CLEAR_BIT(fp->sge_mask, idx);
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000862 idx--;
863 }
864 }
865}
866
867static inline void bnx2x_init_sge_ring_bit_mask(struct bnx2x_fastpath *fp)
868{
869 /* Set the mask to all 1-s: it's faster to compare to 0 than to 0xf-s */
Dmitry Kravkovb3637822011-11-13 04:34:27 +0000870 memset(fp->sge_mask, 0xff, sizeof(fp->sge_mask));
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000871
872 /* Clear the two last indices in the page to 1:
873 these are the indices that correspond to the "next" element,
874 hence will never be indicated and should be removed from
875 the calculations. */
876 bnx2x_clear_sge_mask_next_elems(fp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000877}
878
Eric Dumazete52fcb22011-11-14 06:05:34 +0000879/* note that we are not allocating a new buffer,
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000880 * we are just moving one from cons to prod
881 * we are not creating a new mapping,
882 * so there is no need to check for dma_mapping_error().
883 */
Eric Dumazete52fcb22011-11-14 06:05:34 +0000884static inline void bnx2x_reuse_rx_data(struct bnx2x_fastpath *fp,
Dmitry Kravkov749a8502010-10-06 03:29:05 +0000885 u16 cons, u16 prod)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000886{
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000887 struct sw_rx_bd *cons_rx_buf = &fp->rx_buf_ring[cons];
888 struct sw_rx_bd *prod_rx_buf = &fp->rx_buf_ring[prod];
889 struct eth_rx_bd *cons_bd = &fp->rx_desc_ring[cons];
890 struct eth_rx_bd *prod_bd = &fp->rx_desc_ring[prod];
891
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000892 dma_unmap_addr_set(prod_rx_buf, mapping,
893 dma_unmap_addr(cons_rx_buf, mapping));
Eric Dumazete52fcb22011-11-14 06:05:34 +0000894 prod_rx_buf->data = cons_rx_buf->data;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000895 *prod_bd = *cons_bd;
896}
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000897
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300898/************************* Init ******************************************/
899
Yuval Mintzb475d782012-04-03 18:41:29 +0000900/* returns func by VN for current port */
901static inline int func_by_vn(struct bnx2x *bp, int vn)
902{
903 return 2 * vn + BP_PORT(bp);
904}
905
Merav Sicron5d317c6a2012-06-19 07:48:24 +0000906static inline int bnx2x_config_rss_eth(struct bnx2x *bp, bool config_hash)
Dmitry Kravkov96305232012-04-03 18:41:30 +0000907{
Ariel Elior60cad4e2013-09-04 14:09:22 +0300908 return bnx2x_rss(bp, &bp->rss_conf_obj, config_hash, true);
Dmitry Kravkov96305232012-04-03 18:41:30 +0000909}
910
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300911/**
912 * bnx2x_func_start - init function
913 *
914 * @bp: driver handle
915 *
916 * Must be called before sending CLIENT_SETUP for the first client.
917 */
918static inline int bnx2x_func_start(struct bnx2x *bp)
919{
Yuval Mintz3b603062012-03-18 10:33:39 +0000920 struct bnx2x_func_state_params func_params = {NULL};
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300921 struct bnx2x_func_start_params *start_params =
922 &func_params.params.start;
923
924 /* Prepare parameters for function state transitions */
925 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
926
927 func_params.f_obj = &bp->func_obj;
928 func_params.cmd = BNX2X_F_CMD_START;
929
930 /* Function parameters */
931 start_params->mf_mode = bp->mf_mode;
932 start_params->sd_vlan_tag = bp->mf_ov;
Ariel Elior8d7b0272012-01-26 06:01:45 +0000933
934 if (CHIP_IS_E2(bp) || CHIP_IS_E3(bp))
Ariel Elior6383c0b2011-07-14 08:31:57 +0000935 start_params->network_cos_mode = STATIC_COS;
Ariel Elior8d7b0272012-01-26 06:01:45 +0000936 else /* CHIP_IS_E1X */
937 start_params->network_cos_mode = FW_WRR;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300938
Dmitry Kravkove8c37aff2014-02-04 17:43:03 +0200939 start_params->gre_tunnel_mode = L2GRE_TUNNEL;
Dmitry Kravkov1bc277f2013-03-18 06:51:04 +0000940 start_params->gre_tunnel_rss = GRE_INNER_HEADERS_RSS;
941
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300942 return bnx2x_func_state_change(bp, &func_params);
943}
944
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300945/**
946 * bnx2x_set_fw_mac_addr - fill in a MAC address in FW format
947 *
948 * @fw_hi: pointer to upper part
949 * @fw_mid: pointer to middle part
950 * @fw_lo: pointer to lower part
951 * @mac: pointer to MAC address
952 */
Yuval Mintz86564c32013-01-23 03:21:50 +0000953static inline void bnx2x_set_fw_mac_addr(__le16 *fw_hi, __le16 *fw_mid,
954 __le16 *fw_lo, u8 *mac)
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300955{
956 ((u8 *)fw_hi)[0] = mac[1];
957 ((u8 *)fw_hi)[1] = mac[0];
958 ((u8 *)fw_mid)[0] = mac[3];
959 ((u8 *)fw_mid)[1] = mac[2];
960 ((u8 *)fw_lo)[0] = mac[5];
961 ((u8 *)fw_lo)[1] = mac[4];
962}
963
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000964static inline void bnx2x_free_rx_sge_range(struct bnx2x *bp,
965 struct bnx2x_fastpath *fp, int last)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000966{
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000967 int i;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000968
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +0000969 if (fp->disable_tpa)
970 return;
971
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000972 for (i = 0; i < last; i++)
973 bnx2x_free_rx_sge(bp, fp, i);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000974}
975
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000976static inline void bnx2x_set_next_page_rx_bd(struct bnx2x_fastpath *fp)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000977{
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000978 int i;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000979
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000980 for (i = 1; i <= NUM_RX_RINGS; i++) {
981 struct eth_rx_bd *rx_bd;
982
983 rx_bd = &fp->rx_desc_ring[RX_DESC_CNT * i - 2];
984 rx_bd->addr_hi =
985 cpu_to_le32(U64_HI(fp->rx_desc_mapping +
986 BCM_PAGE_SIZE*(i % NUM_RX_RINGS)));
987 rx_bd->addr_lo =
988 cpu_to_le32(U64_LO(fp->rx_desc_mapping +
989 BCM_PAGE_SIZE*(i % NUM_RX_RINGS)));
990 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000991}
992
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300993/* Statistics ID are global per chip/path, while Client IDs for E1x are per
994 * port.
995 */
996static inline u8 bnx2x_stats_id(struct bnx2x_fastpath *fp)
997{
Yuval Mintzde5c3742012-03-12 11:22:07 +0000998 struct bnx2x *bp = fp->bp;
999 if (!CHIP_IS_E1x(bp)) {
Yuval Mintzde5c3742012-03-12 11:22:07 +00001000 /* there are special statistics counters for FCoE 136..140 */
1001 if (IS_FCOE_FP(fp))
1002 return bp->cnic_base_cl_id + (bp->pf_num >> 1);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001003 return fp->cl_id;
Yuval Mintzde5c3742012-03-12 11:22:07 +00001004 }
1005 return fp->cl_id + BP_PORT(bp) * FP_SB_MAX_E1x;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001006}
1007
1008static inline void bnx2x_init_vlan_mac_fp_objs(struct bnx2x_fastpath *fp,
1009 bnx2x_obj_type obj_type)
1010{
1011 struct bnx2x *bp = fp->bp;
1012
1013 /* Configure classification DBs */
Barak Witkowski15192a82012-06-19 07:48:28 +00001014 bnx2x_init_mac_obj(bp, &bnx2x_sp_obj(bp, fp).mac_obj, fp->cl_id,
1015 fp->cid, BP_FUNC(bp), bnx2x_sp(bp, mac_rdata),
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001016 bnx2x_sp_mapping(bp, mac_rdata),
1017 BNX2X_FILTER_MAC_PENDING,
1018 &bp->sp_state, obj_type,
1019 &bp->macs_pool);
1020}
1021
1022/**
1023 * bnx2x_get_path_func_num - get number of active functions
1024 *
1025 * @bp: driver handle
1026 *
1027 * Calculates the number of active (not hidden) functions on the
1028 * current path.
1029 */
1030static inline u8 bnx2x_get_path_func_num(struct bnx2x *bp)
1031{
1032 u8 func_num = 0, i;
1033
1034 /* 57710 has only one function per-port */
1035 if (CHIP_IS_E1(bp))
1036 return 1;
1037
1038 /* Calculate a number of functions enabled on the current
1039 * PATH/PORT.
1040 */
1041 if (CHIP_REV_IS_SLOW(bp)) {
1042 if (IS_MF(bp))
1043 func_num = 4;
1044 else
1045 func_num = 2;
1046 } else {
1047 for (i = 0; i < E1H_FUNC_MAX / 2; i++) {
1048 u32 func_config =
1049 MF_CFG_RD(bp,
1050 func_mf_config[BP_PORT(bp) + 2 * i].
1051 config);
1052 func_num +=
1053 ((func_config & FUNC_MF_CFG_FUNC_HIDE) ? 0 : 1);
1054 }
1055 }
1056
1057 WARN_ON(!func_num);
1058
1059 return func_num;
1060}
1061
1062static inline void bnx2x_init_bp_objs(struct bnx2x *bp)
1063{
1064 /* RX_MODE controlling object */
1065 bnx2x_init_rx_mode_obj(bp, &bp->rx_mode_obj);
1066
1067 /* multicast configuration controlling object */
1068 bnx2x_init_mcast_obj(bp, &bp->mcast_obj, bp->fp->cl_id, bp->fp->cid,
1069 BP_FUNC(bp), BP_FUNC(bp),
1070 bnx2x_sp(bp, mcast_rdata),
1071 bnx2x_sp_mapping(bp, mcast_rdata),
1072 BNX2X_FILTER_MCAST_PENDING, &bp->sp_state,
1073 BNX2X_OBJ_TYPE_RX);
1074
1075 /* Setup CAM credit pools */
1076 bnx2x_init_mac_credit_pool(bp, &bp->macs_pool, BP_FUNC(bp),
1077 bnx2x_get_path_func_num(bp));
1078
Ariel Eliorb56e9672013-01-01 05:22:32 +00001079 bnx2x_init_vlan_credit_pool(bp, &bp->vlans_pool, BP_ABS_FUNC(bp)>>1,
1080 bnx2x_get_path_func_num(bp));
1081
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001082 /* RSS configuration object */
1083 bnx2x_init_rss_config_obj(bp, &bp->rss_conf_obj, bp->fp->cl_id,
1084 bp->fp->cid, BP_FUNC(bp), BP_FUNC(bp),
1085 bnx2x_sp(bp, rss_rdata),
1086 bnx2x_sp_mapping(bp, rss_rdata),
1087 BNX2X_FILTER_RSS_CONF_PENDING, &bp->sp_state,
1088 BNX2X_OBJ_TYPE_RX);
1089}
1090
1091static inline u8 bnx2x_fp_qzone_id(struct bnx2x_fastpath *fp)
1092{
1093 if (CHIP_IS_E1x(fp->bp))
1094 return fp->cl_id + BP_PORT(fp->bp) * ETH_MAX_RX_CLIENTS_E1H;
1095 else
1096 return fp->cl_id;
1097}
1098
Ariel Elior6383c0b2011-07-14 08:31:57 +00001099static inline void bnx2x_init_txdata(struct bnx2x *bp,
Merav Sicron65565882012-06-19 07:48:26 +00001100 struct bnx2x_fp_txdata *txdata, u32 cid,
1101 int txq_index, __le16 *tx_cons_sb,
1102 struct bnx2x_fastpath *fp)
Ariel Elior6383c0b2011-07-14 08:31:57 +00001103{
1104 txdata->cid = cid;
1105 txdata->txq_index = txq_index;
1106 txdata->tx_cons_sb = tx_cons_sb;
Merav Sicron65565882012-06-19 07:48:26 +00001107 txdata->parent_fp = fp;
Yuval Mintz7b5342d2012-09-11 04:34:14 +00001108 txdata->tx_ring_size = IS_FCOE_FP(fp) ? MAX_TX_AVAIL : bp->tx_ring_size;
Ariel Elior6383c0b2011-07-14 08:31:57 +00001109
Merav Sicron51c1a582012-03-18 10:33:38 +00001110 DP(NETIF_MSG_IFUP, "created tx data cid %d, txq %d\n",
Ariel Elior6383c0b2011-07-14 08:31:57 +00001111 txdata->cid, txdata->txq_index);
1112}
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001113
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001114static inline u8 bnx2x_cnic_eth_cl_id(struct bnx2x *bp, u8 cl_idx)
1115{
1116 return bp->cnic_base_cl_id + cl_idx +
David S. Miller1805b2f2011-10-24 18:18:09 -04001117 (bp->pf_num >> 1) * BNX2X_MAX_CNIC_ETH_CL_ID_IDX;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001118}
1119
1120static inline u8 bnx2x_cnic_fw_sb_id(struct bnx2x *bp)
1121{
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001122 /* the 'first' id is allocated for the cnic */
1123 return bp->base_fw_ndsb;
1124}
1125
1126static inline u8 bnx2x_cnic_igu_sb_id(struct bnx2x *bp)
1127{
1128 return bp->igu_base_sb;
1129}
1130
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001131static inline int bnx2x_clean_tx_queue(struct bnx2x *bp,
Ariel Elior6383c0b2011-07-14 08:31:57 +00001132 struct bnx2x_fp_txdata *txdata)
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001133{
1134 int cnt = 1000;
1135
Ariel Elior6383c0b2011-07-14 08:31:57 +00001136 while (bnx2x_has_tx_work_unload(txdata)) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001137 if (!cnt) {
Merav Sicron51c1a582012-03-18 10:33:38 +00001138 BNX2X_ERR("timeout waiting for queue[%d]: txdata->tx_pkt_prod(%d) != txdata->tx_pkt_cons(%d)\n",
Ariel Elior6383c0b2011-07-14 08:31:57 +00001139 txdata->txq_index, txdata->tx_pkt_prod,
1140 txdata->tx_pkt_cons);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001141#ifdef BNX2X_STOP_ON_ERROR
1142 bnx2x_panic();
1143 return -EBUSY;
1144#else
1145 break;
1146#endif
1147 }
1148 cnt--;
Yuval Mintz0926d492013-01-23 03:21:45 +00001149 usleep_range(1000, 2000);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001150 }
1151
1152 return 0;
1153}
1154
Yaniv Rosner1ac9e422011-05-31 21:26:11 +00001155int bnx2x_get_link_cfg_idx(struct bnx2x *bp);
1156
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001157static inline void __storm_memset_struct(struct bnx2x *bp,
1158 u32 addr, size_t size, u32 *data)
1159{
1160 int i;
1161 for (i = 0; i < size/4; i++)
1162 REG_WR(bp, addr + (i * 4), data[i]);
1163}
1164
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001165/**
1166 * bnx2x_wait_sp_comp - wait for the outstanding SP commands.
1167 *
1168 * @bp: driver handle
1169 * @mask: bits that need to be cleared
1170 */
1171static inline bool bnx2x_wait_sp_comp(struct bnx2x *bp, unsigned long mask)
1172{
1173 int tout = 5000; /* Wait for 5 secs tops */
1174
1175 while (tout--) {
1176 smp_mb();
1177 netif_addr_lock_bh(bp->dev);
1178 if (!(bp->sp_state & mask)) {
1179 netif_addr_unlock_bh(bp->dev);
1180 return true;
1181 }
1182 netif_addr_unlock_bh(bp->dev);
1183
Yuval Mintz0926d492013-01-23 03:21:45 +00001184 usleep_range(1000, 2000);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001185 }
1186
1187 smp_mb();
1188
1189 netif_addr_lock_bh(bp->dev);
1190 if (bp->sp_state & mask) {
Merav Sicron51c1a582012-03-18 10:33:38 +00001191 BNX2X_ERR("Filtering completion timed out. sp_state 0x%lx, mask 0x%lx\n",
1192 bp->sp_state, mask);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001193 netif_addr_unlock_bh(bp->dev);
1194 return false;
1195 }
1196 netif_addr_unlock_bh(bp->dev);
1197
1198 return true;
1199}
1200
1201/**
1202 * bnx2x_set_ctx_validation - set CDU context validation values
1203 *
1204 * @bp: driver handle
1205 * @cxt: context of the connection on the host memory
1206 * @cid: SW CID of the connection to be configured
1207 */
1208void bnx2x_set_ctx_validation(struct bnx2x *bp, struct eth_context *cxt,
1209 u32 cid);
1210
1211void bnx2x_update_coalesce_sb_index(struct bnx2x *bp, u8 fw_sb_id,
1212 u8 sb_index, u8 disable, u16 usec);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001213void bnx2x_acquire_phy_lock(struct bnx2x *bp);
1214void bnx2x_release_phy_lock(struct bnx2x *bp);
1215
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001216/**
Dmitry Kravkove8920672011-05-04 23:52:40 +00001217 * bnx2x_extract_max_cfg - extract MAX BW part from MF configuration.
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001218 *
Dmitry Kravkove8920672011-05-04 23:52:40 +00001219 * @bp: driver handle
1220 * @mf_cfg: MF configuration
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001221 *
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001222 */
1223static inline u16 bnx2x_extract_max_cfg(struct bnx2x *bp, u32 mf_cfg)
1224{
1225 u16 max_cfg = (mf_cfg & FUNC_MF_CFG_MAX_BW_MASK) >>
1226 FUNC_MF_CFG_MAX_BW_SHIFT;
1227 if (!max_cfg) {
Merav Sicron51c1a582012-03-18 10:33:38 +00001228 DP(NETIF_MSG_IFUP | BNX2X_MSG_ETHTOOL,
Michal Schmidt96b0acc2011-08-18 21:51:01 -07001229 "Max BW configured to 0 - using 100 instead\n");
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001230 max_cfg = 100;
1231 }
1232 return max_cfg;
1233}
1234
Dmitry Kravkov621b4d62012-02-20 09:59:08 +00001235/* checks if HW supports GRO for given MTU */
1236static inline bool bnx2x_mtu_allows_gro(int mtu)
1237{
1238 /* gro frags per page */
1239 int fpp = SGE_PAGE_SIZE / (mtu - ETH_MAX_TPA_HEADER_SIZE);
1240
1241 /*
Yuval Mintz16a5fd92013-06-02 00:06:18 +00001242 * 1. Number of frags should not grow above MAX_SKB_FRAGS
1243 * 2. Frag must fit the page
Dmitry Kravkov621b4d62012-02-20 09:59:08 +00001244 */
1245 return mtu <= SGE_PAGE_SIZE && (U_ETH_SGL_SIZE * fpp) <= MAX_SKB_FRAGS;
1246}
Merav Sicron55c11942012-11-07 00:45:48 +00001247
Mintz Yuval1355b702012-02-15 02:10:22 +00001248/**
Dmitry Kravkovb306f5e2011-11-13 04:34:24 +00001249 * bnx2x_get_iscsi_info - update iSCSI params according to licensing info.
1250 *
1251 * @bp: driver handle
1252 *
1253 */
1254void bnx2x_get_iscsi_info(struct bnx2x *bp);
Dmitry Kravkov00253a82011-11-13 04:34:25 +00001255
1256/**
1257 * bnx2x_link_sync_notify - send notification to other functions.
1258 *
1259 * @bp: driver handle
1260 *
1261 */
1262static inline void bnx2x_link_sync_notify(struct bnx2x *bp)
1263{
1264 int func;
1265 int vn;
1266
1267 /* Set the attention towards other drivers on the same port */
1268 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++) {
1269 if (vn == BP_VN(bp))
1270 continue;
1271
1272 func = func_by_vn(bp, vn);
1273 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_0 +
1274 (LINK_SYNC_ATTENTION_BIT_FUNC_0 + func)*4, 1);
1275 }
1276}
1277
1278/**
1279 * bnx2x_update_drv_flags - update flags in shmem
1280 *
1281 * @bp: driver handle
1282 * @flags: flags to update
1283 * @set: set or clear
1284 *
1285 */
1286static inline void bnx2x_update_drv_flags(struct bnx2x *bp, u32 flags, u32 set)
1287{
1288 if (SHMEM2_HAS(bp, drv_flags)) {
1289 u32 drv_flags;
Ariel Eliorf16da432012-01-26 06:01:50 +00001290 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_DRV_FLAGS);
Dmitry Kravkov00253a82011-11-13 04:34:25 +00001291 drv_flags = SHMEM2_RD(bp, drv_flags);
1292
1293 if (set)
1294 SET_FLAGS(drv_flags, flags);
1295 else
1296 RESET_FLAGS(drv_flags, flags);
1297
1298 SHMEM2_WR(bp, drv_flags, drv_flags);
Merav Sicron51c1a582012-03-18 10:33:38 +00001299 DP(NETIF_MSG_IFUP, "drv_flags 0x%08x\n", drv_flags);
Ariel Eliorf16da432012-01-26 06:01:50 +00001300 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_DRV_FLAGS);
Dmitry Kravkov00253a82011-11-13 04:34:25 +00001301 }
1302}
1303
Dmitry Kravkov614c76d2011-11-28 12:31:49 +00001304static inline bool bnx2x_is_valid_ether_addr(struct bnx2x *bp, u8 *addr)
1305{
Merav Sicron55c11942012-11-07 00:45:48 +00001306 if (is_valid_ether_addr(addr) ||
1307 (is_zero_ether_addr(addr) &&
1308 (IS_MF_STORAGE_SD(bp) || IS_MF_FCOE_AFEX(bp))))
Dmitry Kravkov614c76d2011-11-28 12:31:49 +00001309 return true;
Merav Sicron55c11942012-11-07 00:45:48 +00001310
Dmitry Kravkov614c76d2011-11-28 12:31:49 +00001311 return false;
1312}
1313
Ariel Elior8ca5e172013-01-01 05:22:34 +00001314/**
Yuval Mintz2de67432013-01-23 03:21:43 +00001315 * bnx2x_fill_fw_str - Fill buffer with FW version string
Ariel Elior8ca5e172013-01-01 05:22:34 +00001316 *
1317 * @bp: driver handle
1318 * @buf: character buffer to fill with the fw name
1319 * @buf_len: length of the above buffer
1320 *
1321 */
1322void bnx2x_fill_fw_str(struct bnx2x *bp, char *buf, size_t buf_len);
Yuval Mintz7fa6f3402013-03-20 05:21:28 +00001323
1324int bnx2x_drain_tx_queues(struct bnx2x *bp);
1325void bnx2x_squeeze_objects(struct bnx2x *bp);
1326
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001327#endif /* BNX2X_CMN_H */