blob: 41f3ca5ad972b396498cbe5b7d7ad72ea9bdb1a7 [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 */
29extern int load_count[2][3]; /* per-path: 0-common, 1-port0, 2-port1 */
30
Dmitry Kravkovd6214d72010-10-06 03:32:10 +000031extern int num_queues;
Merav Sicron0e8d2ec2012-06-19 07:48:30 +000032extern int int_mode;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000033
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +000034/************************ 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
Yuval Mintz6bf07b82013-06-02 00:06:20 +000052#define BNX2X_PCI_ALLOC(x, y, size) \
53 do { \
Joe Perchesede23fa2013-08-26 22:45:23 -070054 x = dma_zalloc_coherent(&bp->pdev->dev, size, y, GFP_KERNEL); \
Yuval Mintz6bf07b82013-06-02 00:06:20 +000055 if (x == NULL) \
56 goto alloc_mem_err; \
57 DP(NETIF_MSG_HW, "BNX2X_PCI_ALLOC: Physical %Lx Virtual %p\n", \
58 (unsigned long long)(*y), x); \
59 } while (0)
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +000060
Dmitry Kravkov75b29452013-06-19 01:36:05 +030061#define BNX2X_PCI_FALLOC(x, y, size) \
62 do { \
63 x = dma_alloc_coherent(&bp->pdev->dev, size, y, GFP_KERNEL); \
64 if (x == NULL) \
65 goto alloc_mem_err; \
66 memset((void *)x, 0xFFFFFFFF, size); \
67 DP(NETIF_MSG_HW, "BNX2X_PCI_FALLOC: Physical %Lx Virtual %p\n",\
68 (unsigned long long)(*y), x); \
69 } while (0)
70
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +000071#define BNX2X_ALLOC(x, size) \
72 do { \
73 x = kzalloc(size, GFP_KERNEL); \
74 if (x == NULL) \
75 goto alloc_mem_err; \
76 } while (0)
77
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000078/*********************** Interfaces ****************************
79 * Functions that need to be implemented by each driver version
80 */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030081/* Init */
82
83/**
84 * bnx2x_send_unload_req - request unload mode from the MCP.
85 *
86 * @bp: driver handle
87 * @unload_mode: requested function's unload mode
88 *
89 * Return unload mode returned by the MCP: COMMON, PORT or FUNC.
90 */
91u32 bnx2x_send_unload_req(struct bnx2x *bp, int unload_mode);
92
93/**
94 * bnx2x_send_unload_done - send UNLOAD_DONE command to the MCP.
95 *
96 * @bp: driver handle
Yuval Mintz5d07d862012-09-13 02:56:21 +000097 * @keep_link: true iff link should be kept up
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030098 */
Yuval Mintz5d07d862012-09-13 02:56:21 +000099void bnx2x_send_unload_done(struct bnx2x *bp, bool keep_link);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300100
101/**
Dmitry Kravkov96305232012-04-03 18:41:30 +0000102 * bnx2x_config_rss_pf - configure RSS parameters in a PF.
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300103 *
104 * @bp: driver handle
Ben Hutchings49ce9c22012-07-10 10:56:00 +0000105 * @rss_obj: RSS object to use
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300106 * @ind_table: indirection table to configure
107 * @config_hash: re-configure RSS hash keys configuration
Ariel Elior60cad4e2013-09-04 14:09:22 +0300108 * @enable: enabled or disabled configuration
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300109 */
Ariel Elior60cad4e2013-09-04 14:09:22 +0300110int bnx2x_rss(struct bnx2x *bp, struct bnx2x_rss_config_obj *rss_obj,
111 bool config_hash, bool enable);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300112
113/**
114 * bnx2x__init_func_obj - init function object
115 *
116 * @bp: driver handle
117 *
118 * Initializes the Function Object with the appropriate
119 * parameters which include a function slow path driver
120 * interface.
121 */
122void bnx2x__init_func_obj(struct bnx2x *bp);
123
124/**
125 * bnx2x_setup_queue - setup eth queue.
126 *
127 * @bp: driver handle
128 * @fp: pointer to the fastpath structure
129 * @leading: boolean
130 *
131 */
132int bnx2x_setup_queue(struct bnx2x *bp, struct bnx2x_fastpath *fp,
133 bool leading);
134
135/**
136 * bnx2x_setup_leading - bring up a leading eth queue.
137 *
138 * @bp: driver handle
139 */
140int bnx2x_setup_leading(struct bnx2x *bp);
141
142/**
143 * bnx2x_fw_command - send the MCP a request
144 *
145 * @bp: driver handle
146 * @command: request
147 * @param: request's parameter
148 *
149 * block until there is a reply
150 */
151u32 bnx2x_fw_command(struct bnx2x *bp, u32 command, u32 param);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000152
153/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000154 * bnx2x_initial_phy_init - initialize link parameters structure variables.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000155 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000156 * @bp: driver handle
157 * @load_mode: current mode
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000158 */
Yuval Mintzcd1dfce2012-12-02 04:05:56 +0000159int bnx2x_initial_phy_init(struct bnx2x *bp, int load_mode);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000160
161/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000162 * bnx2x_link_set - configure hw according to link parameters structure.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000163 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000164 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000165 */
166void bnx2x_link_set(struct bnx2x *bp);
167
168/**
Yuval Mintz5d07d862012-09-13 02:56:21 +0000169 * bnx2x_force_link_reset - Forces link reset, and put the PHY
170 * in reset as well.
171 *
172 * @bp: driver handle
173 */
174void bnx2x_force_link_reset(struct bnx2x *bp);
175
176/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000177 * bnx2x_link_test - query link status.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000178 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000179 * @bp: driver handle
180 * @is_serdes: bool
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000181 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000182 * Returns 0 if link is UP.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000183 */
Yaniv Rosnera22f0782010-09-07 11:41:20 +0000184u8 bnx2x_link_test(struct bnx2x *bp, u8 is_serdes);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000185
186/**
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300187 * bnx2x_drv_pulse - write driver pulse to shmem
188 *
189 * @bp: driver handle
190 *
191 * writes the value in bp->fw_drv_pulse_wr_seq to drv_pulse mbox
192 * in the shmem.
193 */
194void bnx2x_drv_pulse(struct bnx2x *bp);
195
196/**
197 * bnx2x_igu_ack_sb - update IGU with current SB value
198 *
199 * @bp: driver handle
200 * @igu_sb_id: SB id
201 * @segment: SB segment
202 * @index: SB index
203 * @op: SB operation
204 * @update: is HW update required
205 */
206void bnx2x_igu_ack_sb(struct bnx2x *bp, u8 igu_sb_id, u8 segment,
207 u16 index, u8 op, u8 update);
208
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +0000209/* Disable transactions from chip to host */
210void bnx2x_pf_disable(struct bnx2x *bp);
Miriam Shitrit07ba6af2013-01-14 05:11:46 +0000211int bnx2x_pretend_func(struct bnx2x *bp, u16 pretend_func_val);
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +0000212
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300213/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000214 * bnx2x__link_status_update - handles link status change.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000215 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000216 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000217 */
218void bnx2x__link_status_update(struct bnx2x *bp);
219
220/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000221 * bnx2x_link_report - report link status to upper layer.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000222 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000223 * @bp: driver handle
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000224 */
225void bnx2x_link_report(struct bnx2x *bp);
226
Vladislav Zolotarov2ae17f62011-05-04 23:48:23 +0000227/* None-atomic version of bnx2x_link_report() */
228void __bnx2x_link_report(struct bnx2x *bp);
229
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000230/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000231 * bnx2x_get_mf_speed - calculate MF speed.
Dmitry Kravkov0793f83f2010-12-01 12:39:28 -0800232 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000233 * @bp: driver handle
Dmitry Kravkov0793f83f2010-12-01 12:39:28 -0800234 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000235 * Takes into account current linespeed and MF configuration.
Dmitry Kravkov0793f83f2010-12-01 12:39:28 -0800236 */
237u16 bnx2x_get_mf_speed(struct bnx2x *bp);
238
239/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000240 * bnx2x_msix_sp_int - MSI-X slowpath interrupt handler
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000241 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000242 * @irq: irq number
243 * @dev_instance: private instance
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000244 */
245irqreturn_t bnx2x_msix_sp_int(int irq, void *dev_instance);
246
247/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000248 * bnx2x_interrupt - non MSI-X interrupt handler
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000249 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000250 * @irq: irq number
251 * @dev_instance: private instance
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000252 */
253irqreturn_t bnx2x_interrupt(int irq, void *dev_instance);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000254
255/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000256 * bnx2x_cnic_notify - send command to cnic driver
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000257 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000258 * @bp: driver handle
259 * @cmd: command
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000260 */
261int bnx2x_cnic_notify(struct bnx2x *bp, int cmd);
262
263/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000264 * bnx2x_setup_cnic_irq_info - provides cnic with IRQ information
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000265 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000266 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000267 */
268void bnx2x_setup_cnic_irq_info(struct bnx2x *bp);
Merav Sicron37ae41a2012-06-19 07:48:27 +0000269
270/**
271 * bnx2x_setup_cnic_info - provides cnic with updated info
272 *
273 * @bp: driver handle
274 */
275void bnx2x_setup_cnic_info(struct bnx2x *bp);
276
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000277/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000278 * bnx2x_int_enable - enable HW interrupts.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000279 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000280 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000281 */
282void bnx2x_int_enable(struct bnx2x *bp);
283
284/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000285 * bnx2x_int_disable_sync - disable interrupts.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000286 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000287 * @bp: driver handle
288 * @disable_hw: true, disable HW interrupts.
289 *
290 * This function ensures that there are no
291 * ISRs or SP DPCs (sp_task) are running after it returns.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000292 */
293void bnx2x_int_disable_sync(struct bnx2x *bp, int disable_hw);
294
295/**
Merav Sicron55c11942012-11-07 00:45:48 +0000296 * bnx2x_nic_init_cnic - init driver internals for cnic.
Dmitry Kravkove8920672011-05-04 23:52:40 +0000297 *
298 * @bp: driver handle
299 * @load_code: COMMON, PORT or FUNCTION
300 *
301 * Initializes:
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000302 * - rings
303 * - status blocks
304 * - etc.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000305 */
Merav Sicron55c11942012-11-07 00:45:48 +0000306void bnx2x_nic_init_cnic(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000307
308/**
Yuval Mintzecf01c22013-04-22 02:53:03 +0000309 * bnx2x_preirq_nic_init - init driver internals.
Merav Sicron55c11942012-11-07 00:45:48 +0000310 *
311 * @bp: driver handle
312 *
313 * Initializes:
Yuval Mintzecf01c22013-04-22 02:53:03 +0000314 * - fastpath object
315 * - fastpath rings
316 * etc.
317 */
318void bnx2x_pre_irq_nic_init(struct bnx2x *bp);
319
320/**
321 * bnx2x_postirq_nic_init - init driver internals.
322 *
323 * @bp: driver handle
324 * @load_code: COMMON, PORT or FUNCTION
325 *
326 * Initializes:
Merav Sicron55c11942012-11-07 00:45:48 +0000327 * - status blocks
Yuval Mintzecf01c22013-04-22 02:53:03 +0000328 * - slowpath rings
Merav Sicron55c11942012-11-07 00:45:48 +0000329 * - etc.
330 */
Yuval Mintzecf01c22013-04-22 02:53:03 +0000331void bnx2x_post_irq_nic_init(struct bnx2x *bp, u32 load_code);
Merav Sicron55c11942012-11-07 00:45:48 +0000332/**
333 * bnx2x_alloc_mem_cnic - allocate driver's memory for cnic.
334 *
335 * @bp: driver handle
336 */
337int bnx2x_alloc_mem_cnic(struct bnx2x *bp);
338/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000339 * bnx2x_alloc_mem - allocate driver's memory.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000340 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000341 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000342 */
343int bnx2x_alloc_mem(struct bnx2x *bp);
344
345/**
Merav Sicron55c11942012-11-07 00:45:48 +0000346 * bnx2x_free_mem_cnic - release driver's memory for cnic.
347 *
348 * @bp: driver handle
349 */
350void bnx2x_free_mem_cnic(struct bnx2x *bp);
351/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000352 * bnx2x_free_mem - release driver's memory.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000353 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000354 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000355 */
356void bnx2x_free_mem(struct bnx2x *bp);
357
358/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000359 * bnx2x_set_num_queues - set number of queues according to mode.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000360 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000361 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000362 */
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000363void bnx2x_set_num_queues(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000364
365/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000366 * bnx2x_chip_cleanup - cleanup chip internals.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000367 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000368 * @bp: driver handle
369 * @unload_mode: COMMON, PORT, FUNCTION
Yuval Mintz5d07d862012-09-13 02:56:21 +0000370 * @keep_link: true iff link should be kept up.
Dmitry Kravkove8920672011-05-04 23:52:40 +0000371 *
372 * - Cleanup MAC configuration.
373 * - Closes clients.
374 * - etc.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000375 */
Yuval Mintz5d07d862012-09-13 02:56:21 +0000376void bnx2x_chip_cleanup(struct bnx2x *bp, int unload_mode, bool keep_link);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000377
378/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000379 * bnx2x_acquire_hw_lock - acquire HW lock.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000380 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000381 * @bp: driver handle
382 * @resource: resource bit which was locked
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000383 */
384int bnx2x_acquire_hw_lock(struct bnx2x *bp, u32 resource);
385
386/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000387 * bnx2x_release_hw_lock - release HW lock.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000388 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000389 * @bp: driver handle
390 * @resource: resource bit which was locked
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000391 */
392int bnx2x_release_hw_lock(struct bnx2x *bp, u32 resource);
393
394/**
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +0000395 * bnx2x_release_leader_lock - release recovery leader lock
396 *
397 * @bp: driver handle
398 */
399int bnx2x_release_leader_lock(struct bnx2x *bp);
400
401/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000402 * bnx2x_set_eth_mac - configure eth MAC address in the HW
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000403 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000404 * @bp: driver handle
405 * @set: set or clear
406 *
407 * Configures according to the value in netdev->dev_addr.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000408 */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300409int bnx2x_set_eth_mac(struct bnx2x *bp, bool set);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +0000410
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000411/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000412 * bnx2x_set_rx_mode - set MAC filtering configurations.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000413 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000414 * @dev: netdevice
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000415 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000416 * called with netif_tx_lock from dev_mcast.c
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300417 * If bp->state is OPEN, should be called with
418 * netif_addr_lock_bh()
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000419 */
420void bnx2x_set_rx_mode(struct net_device *dev);
Yuval Mintz8b09be52013-08-01 17:30:59 +0300421void bnx2x_set_rx_mode_inner(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000422
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300423/**
424 * bnx2x_set_storm_rx_mode - configure MAC filtering rules in a FW.
425 *
426 * @bp: driver handle
427 *
428 * If bp->state is OPEN, should be called with
429 * netif_addr_lock_bh().
430 */
Yuval Mintz924d75a2013-01-23 03:21:44 +0000431int bnx2x_set_storm_rx_mode(struct bnx2x *bp);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300432
433/**
434 * bnx2x_set_q_rx_mode - configures rx_mode for a single queue.
435 *
436 * @bp: driver handle
437 * @cl_id: client id
438 * @rx_mode_flags: rx mode configuration
439 * @rx_accept_flags: rx accept configuration
440 * @tx_accept_flags: tx accept configuration (tx switch)
441 * @ramrod_flags: ramrod configuration
442 */
Yuval Mintz924d75a2013-01-23 03:21:44 +0000443int bnx2x_set_q_rx_mode(struct bnx2x *bp, u8 cl_id,
444 unsigned long rx_mode_flags,
445 unsigned long rx_accept_flags,
446 unsigned long tx_accept_flags,
447 unsigned long ramrod_flags);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300448
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000449/* Parity errors related */
Ariel Elior889b9af2012-01-26 06:01:51 +0000450void bnx2x_set_pf_load(struct bnx2x *bp);
451bool bnx2x_clear_pf_load(struct bnx2x *bp);
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +0000452bool bnx2x_chk_parity_attn(struct bnx2x *bp, bool *global, bool print);
453bool bnx2x_reset_is_done(struct bnx2x *bp, int engine);
454void bnx2x_set_reset_in_progress(struct bnx2x *bp);
455void bnx2x_set_reset_global(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000456void bnx2x_disable_close_the_gate(struct bnx2x *bp);
Merav Sicron55c11942012-11-07 00:45:48 +0000457int bnx2x_init_hw_func_cnic(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000458
459/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000460 * bnx2x_sp_event - handle ramrods completion.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000461 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000462 * @fp: fastpath handle for the event
463 * @rr_cqe: eth_rx_cqe
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000464 */
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000465void bnx2x_sp_event(struct bnx2x_fastpath *fp, union eth_rx_cqe *rr_cqe);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000466
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000467/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000468 * bnx2x_ilt_set_info - prepare ILT configurations.
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000469 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000470 * @bp: driver handle
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000471 */
472void bnx2x_ilt_set_info(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000473
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000474/**
Merav Sicron55c11942012-11-07 00:45:48 +0000475 * bnx2x_ilt_set_cnic_info - prepare ILT configurations for SRC
476 * and TM.
477 *
478 * @bp: driver handle
479 */
480void bnx2x_ilt_set_info_cnic(struct bnx2x *bp);
481
482/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000483 * bnx2x_dcbx_init - initialize dcbx protocol.
Vladislav Zolotarove4901dd2010-12-13 05:44:18 +0000484 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000485 * @bp: driver handle
Vladislav Zolotarove4901dd2010-12-13 05:44:18 +0000486 */
Barak Witkowski98768792012-06-19 07:48:31 +0000487void bnx2x_dcbx_init(struct bnx2x *bp, bool update_shmem);
Vladislav Zolotarove4901dd2010-12-13 05:44:18 +0000488
489/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000490 * bnx2x_set_power_state - set power state to the requested value.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000491 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000492 * @bp: driver handle
493 * @state: required state D0 or D3hot
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000494 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000495 * Currently only D0 and D3hot are supported.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000496 */
497int bnx2x_set_power_state(struct bnx2x *bp, pci_power_t state);
498
Dmitry Kravkove3835b92011-03-06 10:50:44 +0000499/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000500 * bnx2x_update_max_mf_config - update MAX part of MF configuration in HW.
Dmitry Kravkove3835b92011-03-06 10:50:44 +0000501 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000502 * @bp: driver handle
503 * @value: new value
Dmitry Kravkove3835b92011-03-06 10:50:44 +0000504 */
505void bnx2x_update_max_mf_config(struct bnx2x *bp, u32 value);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300506/* Error handling */
Dmitry Kravkov7a25cc72011-06-14 01:33:25 +0000507void bnx2x_fw_dump_lvl(struct bnx2x *bp, const char *lvl);
508
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000509/* dev_close main block */
Yuval Mintz5d07d862012-09-13 02:56:21 +0000510int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode, bool keep_link);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000511
512/* dev_open main block */
513int bnx2x_nic_load(struct bnx2x *bp, int load_mode);
514
515/* hard_xmit callback */
516netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev);
517
Ariel Elior6383c0b2011-07-14 08:31:57 +0000518/* setup_tc callback */
519int bnx2x_setup_tc(struct net_device *dev, u8 num_tc);
520
Ariel Elior3ec9f9c2013-03-11 05:17:45 +0000521int bnx2x_get_vf_config(struct net_device *dev, int vf,
522 struct ifla_vf_info *ivi);
Ariel Eliorabc5a022013-01-01 05:22:43 +0000523int bnx2x_set_vf_mac(struct net_device *dev, int queue, u8 *mac);
Ariel Elior3ec9f9c2013-03-11 05:17:45 +0000524int bnx2x_set_vf_vlan(struct net_device *netdev, int vf, u16 vlan, u8 qos);
Ariel Eliorabc5a022013-01-01 05:22:43 +0000525
Vladislav Zolotarov8307fa32010-12-13 05:44:09 +0000526/* select_queue callback */
Jason Wangf663dd92014-01-10 16:18:26 +0800527u16 bnx2x_select_queue(struct net_device *dev, struct sk_buff *skb,
528 void *accel_priv);
Vladislav Zolotarov8307fa32010-12-13 05:44:09 +0000529
Ariel Eliordc1ba592013-01-01 05:22:30 +0000530static inline void bnx2x_update_rx_prod(struct bnx2x *bp,
531 struct bnx2x_fastpath *fp,
532 u16 bd_prod, u16 rx_comp_prod,
533 u16 rx_sge_prod)
534{
535 struct ustorm_eth_rx_producers rx_prods = {0};
536 u32 i;
537
538 /* Update producers */
539 rx_prods.bd_prod = bd_prod;
540 rx_prods.cqe_prod = rx_comp_prod;
541 rx_prods.sge_prod = rx_sge_prod;
542
543 /* Make sure that the BD and SGE data is updated before updating the
544 * producers since FW might read the BD/SGE right after the producer
545 * is updated.
546 * This is only applicable for weak-ordered memory model archs such
547 * as IA-64. The following barrier is also mandatory since FW will
548 * assumes BDs must have buffers.
549 */
550 wmb();
551
552 for (i = 0; i < sizeof(rx_prods)/4; i++)
553 REG_WR(bp, fp->ustorm_rx_prods_offset + i*4,
554 ((u32 *)&rx_prods)[i]);
555
556 mmiowb(); /* keep prod updates ordered */
557
558 DP(NETIF_MSG_RX_STATUS,
559 "queue[%d]: wrote bd_prod %u cqe_prod %u sge_prod %u\n",
560 fp->index, bd_prod, rx_comp_prod, rx_sge_prod);
561}
562
Dmitry Kravkova9fccec2011-06-14 01:33:30 +0000563/* reload helper */
564int bnx2x_reload_if_running(struct net_device *dev);
565
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000566int bnx2x_change_mac_addr(struct net_device *dev, void *p);
567
568/* NAPI poll Rx part */
569int bnx2x_rx_int(struct bnx2x_fastpath *fp, int budget);
570
571/* NAPI poll Tx part */
Ariel Elior6383c0b2011-07-14 08:31:57 +0000572int bnx2x_tx_int(struct bnx2x *bp, struct bnx2x_fp_txdata *txdata);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000573
574/* suspend/resume callbacks */
575int bnx2x_suspend(struct pci_dev *pdev, pm_message_t state);
576int bnx2x_resume(struct pci_dev *pdev);
577
578/* Release IRQ vectors */
579void bnx2x_free_irq(struct bnx2x *bp);
580
Merav Sicron55c11942012-11-07 00:45:48 +0000581void bnx2x_free_fp_mem_cnic(struct bnx2x *bp);
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +0000582void bnx2x_free_fp_mem(struct bnx2x *bp);
Merav Sicron55c11942012-11-07 00:45:48 +0000583int bnx2x_alloc_fp_mem_cnic(struct bnx2x *bp);
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +0000584int bnx2x_alloc_fp_mem(struct bnx2x *bp);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000585void bnx2x_init_rx_rings(struct bnx2x *bp);
Merav Sicron55c11942012-11-07 00:45:48 +0000586void bnx2x_init_rx_rings_cnic(struct bnx2x *bp);
587void bnx2x_free_skbs_cnic(struct bnx2x *bp);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000588void bnx2x_free_skbs(struct bnx2x *bp);
589void bnx2x_netif_stop(struct bnx2x *bp, int disable_hw);
590void bnx2x_netif_start(struct bnx2x *bp);
Merav Sicron55c11942012-11-07 00:45:48 +0000591int bnx2x_load_cnic(struct bnx2x *bp);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000592
593/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000594 * bnx2x_enable_msix - set msix configuration.
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000595 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000596 * @bp: driver handle
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000597 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000598 * fills msix_table, requests vectors, updates num_queues
599 * according to number of available vectors.
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000600 */
Merav Sicron0e8d2ec2012-06-19 07:48:30 +0000601int bnx2x_enable_msix(struct bnx2x *bp);
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000602
603/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000604 * bnx2x_enable_msi - request msi mode from OS, updated internals accordingly
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000605 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000606 * @bp: driver handle
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000607 */
608int bnx2x_enable_msi(struct bnx2x *bp);
609
610/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000611 * bnx2x_poll - NAPI callback
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000612 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000613 * @napi: napi structure
614 * @budget:
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000615 *
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000616 */
617int bnx2x_poll(struct napi_struct *napi, int budget);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000618
619/**
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300620 * bnx2x_low_latency_recv - LL callback
621 *
622 * @napi: napi structure
623 */
624int bnx2x_low_latency_recv(struct napi_struct *napi);
625
626/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000627 * bnx2x_alloc_mem_bp - allocate memories outsize main driver structure
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000628 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000629 * @bp: driver handle
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000630 */
Bill Pemberton0329aba2012-12-03 09:24:24 -0500631int bnx2x_alloc_mem_bp(struct bnx2x *bp);
Dmitry Kravkove8920672011-05-04 23:52:40 +0000632
633/**
634 * bnx2x_free_mem_bp - release memories outsize main driver structure
635 *
636 * @bp: driver handle
637 */
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000638void bnx2x_free_mem_bp(struct bnx2x *bp);
639
640/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000641 * bnx2x_change_mtu - change mtu netdev callback
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000642 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000643 * @dev: net device
644 * @new_mtu: requested mtu
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000645 *
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000646 */
647int bnx2x_change_mtu(struct net_device *dev, int new_mtu);
648
Merav Sicron55c11942012-11-07 00:45:48 +0000649#ifdef NETDEV_FCOE_WWNN
Vladislav Zolotarovbf61ee12011-07-21 07:56:51 +0000650/**
651 * bnx2x_fcoe_get_wwn - return the requested WWN value for this port
652 *
653 * @dev: net_device
654 * @wwn: output buffer
655 * @type: WWN type: NETDEV_FCOE_WWNN (node) or NETDEV_FCOE_WWPN (port)
656 *
657 */
658int bnx2x_fcoe_get_wwn(struct net_device *dev, u64 *wwn, int type);
659#endif
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000660
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000661netdev_features_t bnx2x_fix_features(struct net_device *dev,
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000662 netdev_features_t features);
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000663int bnx2x_set_features(struct net_device *dev, netdev_features_t features);
Michał Mirosław66371c42011-04-12 09:38:23 +0000664
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000665/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000666 * bnx2x_tx_timeout - tx timeout netdev callback
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000667 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000668 * @dev: net device
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000669 */
670void bnx2x_tx_timeout(struct net_device *dev);
671
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300672/*********************** Inlines **********************************/
673/*********************** Fast path ********************************/
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000674static inline void bnx2x_update_fpsb_idx(struct bnx2x_fastpath *fp)
675{
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000676 barrier(); /* status block is written to by the chip */
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000677 fp->fp_hc_idx = fp->sb_running_index[SM_RX_ID];
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000678}
679
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000680static inline void bnx2x_igu_ack_sb_gen(struct bnx2x *bp, u8 igu_sb_id,
681 u8 segment, u16 index, u8 op,
682 u8 update, u32 igu_addr)
683{
684 struct igu_regular cmd_data = {0};
685
686 cmd_data.sb_id_and_flags =
687 ((index << IGU_REGULAR_SB_INDEX_SHIFT) |
688 (segment << IGU_REGULAR_SEGMENT_ACCESS_SHIFT) |
689 (update << IGU_REGULAR_BUPDATE_SHIFT) |
690 (op << IGU_REGULAR_ENABLE_INT_SHIFT));
691
Merav Sicron51c1a582012-03-18 10:33:38 +0000692 DP(NETIF_MSG_INTR, "write 0x%08x to IGU addr 0x%x\n",
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000693 cmd_data.sb_id_and_flags, igu_addr);
694 REG_WR(bp, igu_addr, cmd_data.sb_id_and_flags);
695
696 /* Make sure that ACK is written */
697 mmiowb();
698 barrier();
699}
700
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000701static inline void bnx2x_hc_ack_sb(struct bnx2x *bp, u8 sb_id,
702 u8 storm, u16 index, u8 op, u8 update)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000703{
704 u32 hc_addr = (HC_REG_COMMAND_REG + BP_PORT(bp)*32 +
705 COMMAND_REG_INT_ACK);
706 struct igu_ack_register igu_ack;
707
708 igu_ack.status_block_index = index;
709 igu_ack.sb_id_and_flags =
710 ((sb_id << IGU_ACK_REGISTER_STATUS_BLOCK_ID_SHIFT) |
711 (storm << IGU_ACK_REGISTER_STORM_ID_SHIFT) |
712 (update << IGU_ACK_REGISTER_UPDATE_INDEX_SHIFT) |
713 (op << IGU_ACK_REGISTER_INTERRUPT_MODE_SHIFT));
714
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000715 REG_WR(bp, hc_addr, (*(u32 *)&igu_ack));
716
717 /* Make sure that ACK is written */
718 mmiowb();
719 barrier();
720}
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000721
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000722static inline void bnx2x_ack_sb(struct bnx2x *bp, u8 igu_sb_id, u8 storm,
723 u16 index, u8 op, u8 update)
724{
725 if (bp->common.int_block == INT_BLOCK_HC)
726 bnx2x_hc_ack_sb(bp, igu_sb_id, storm, index, op, update);
727 else {
728 u8 segment;
729
730 if (CHIP_INT_MODE_IS_BC(bp))
731 segment = storm;
732 else if (igu_sb_id != bp->igu_dsb_id)
733 segment = IGU_SEG_ACCESS_DEF;
734 else if (storm == ATTENTION_ID)
735 segment = IGU_SEG_ACCESS_ATTN;
736 else
737 segment = IGU_SEG_ACCESS_DEF;
738 bnx2x_igu_ack_sb(bp, igu_sb_id, segment, index, op, update);
739 }
740}
741
742static inline u16 bnx2x_hc_ack_int(struct bnx2x *bp)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000743{
744 u32 hc_addr = (HC_REG_COMMAND_REG + BP_PORT(bp)*32 +
745 COMMAND_REG_SIMD_MASK);
746 u32 result = REG_RD(bp, hc_addr);
747
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000748 barrier();
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000749 return result;
750}
751
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000752static inline u16 bnx2x_igu_ack_int(struct bnx2x *bp)
753{
754 u32 igu_addr = (BAR_IGU_INTMEM + IGU_REG_SISR_MDPC_WMASK_LSB_UPPER*8);
755 u32 result = REG_RD(bp, igu_addr);
756
Merav Sicron51c1a582012-03-18 10:33:38 +0000757 DP(NETIF_MSG_INTR, "read 0x%08x from IGU addr 0x%x\n",
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000758 result, igu_addr);
759
760 barrier();
761 return result;
762}
763
764static inline u16 bnx2x_ack_int(struct bnx2x *bp)
765{
766 barrier();
767 if (bp->common.int_block == INT_BLOCK_HC)
768 return bnx2x_hc_ack_int(bp);
769 else
770 return bnx2x_igu_ack_int(bp);
771}
772
Ariel Elior6383c0b2011-07-14 08:31:57 +0000773static inline int bnx2x_has_tx_work_unload(struct bnx2x_fp_txdata *txdata)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000774{
775 /* Tell compiler that consumer and producer can change */
776 barrier();
Ariel Elior6383c0b2011-07-14 08:31:57 +0000777 return txdata->tx_pkt_prod != txdata->tx_pkt_cons;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000778}
779
Ariel Elior6383c0b2011-07-14 08:31:57 +0000780static inline u16 bnx2x_tx_avail(struct bnx2x *bp,
781 struct bnx2x_fp_txdata *txdata)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000782{
783 s16 used;
784 u16 prod;
785 u16 cons;
786
Ariel Elior6383c0b2011-07-14 08:31:57 +0000787 prod = txdata->tx_bd_prod;
788 cons = txdata->tx_bd_cons;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000789
Yuval Mintz7b5342d2012-09-11 04:34:14 +0000790 used = SUB_S16(prod, cons);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000791
792#ifdef BNX2X_STOP_ON_ERROR
793 WARN_ON(used < 0);
Yuval Mintz7b5342d2012-09-11 04:34:14 +0000794 WARN_ON(used > txdata->tx_ring_size);
795 WARN_ON((txdata->tx_ring_size - used) > MAX_TX_AVAIL);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000796#endif
797
Yuval Mintz7b5342d2012-09-11 04:34:14 +0000798 return (s16)(txdata->tx_ring_size) - used;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000799}
800
Ariel Elior6383c0b2011-07-14 08:31:57 +0000801static inline int bnx2x_tx_queue_has_work(struct bnx2x_fp_txdata *txdata)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000802{
803 u16 hw_cons;
804
805 /* Tell compiler that status block fields can change */
806 barrier();
Ariel Elior6383c0b2011-07-14 08:31:57 +0000807 hw_cons = le16_to_cpu(*txdata->tx_cons_sb);
808 return hw_cons != txdata->tx_pkt_cons;
809}
810
811static inline bool bnx2x_has_tx_work(struct bnx2x_fastpath *fp)
812{
813 u8 cos;
814 for_each_cos_in_tx_queue(fp, cos)
Merav Sicron65565882012-06-19 07:48:26 +0000815 if (bnx2x_tx_queue_has_work(fp->txdata_ptr[cos]))
Ariel Elior6383c0b2011-07-14 08:31:57 +0000816 return true;
817 return false;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000818}
819
Dmitry Kravkov75b29452013-06-19 01:36:05 +0300820#define BNX2X_IS_CQE_COMPLETED(cqe_fp) (cqe_fp->marker == 0x0)
821#define BNX2X_SEED_CQE(cqe_fp) (cqe_fp->marker = 0xFFFFFFFF)
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000822static inline int bnx2x_has_rx_work(struct bnx2x_fastpath *fp)
823{
Dmitry Kravkov75b29452013-06-19 01:36:05 +0300824 u16 cons;
825 union eth_rx_cqe *cqe;
826 struct eth_fast_path_rx_cqe *cqe_fp;
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000827
Dmitry Kravkov75b29452013-06-19 01:36:05 +0300828 cons = RCQ_BD(fp->rx_comp_cons);
829 cqe = &fp->rx_comp_ring[cons];
830 cqe_fp = &cqe->fast_path_cqe;
831 return BNX2X_IS_CQE_COMPLETED(cqe_fp);
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000832}
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000833
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000834/**
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300835 * bnx2x_tx_disable - disables tx from stack point of view
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000836 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000837 * @bp: driver handle
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000838 */
839static inline void bnx2x_tx_disable(struct bnx2x *bp)
840{
841 netif_tx_disable(bp->dev);
842 netif_carrier_off(bp->dev);
843}
844
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000845static inline void bnx2x_free_rx_sge(struct bnx2x *bp,
846 struct bnx2x_fastpath *fp, u16 index)
847{
848 struct sw_rx_page *sw_buf = &fp->rx_page_ring[index];
849 struct page *page = sw_buf->page;
850 struct eth_rx_sge *sge = &fp->rx_sge_ring[index];
851
852 /* Skip "next page" elements */
853 if (!page)
854 return;
855
856 dma_unmap_page(&bp->pdev->dev, dma_unmap_addr(sw_buf, mapping),
Yuval Mintz924d75a2013-01-23 03:21:44 +0000857 SGE_PAGES, DMA_FROM_DEVICE);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000858 __free_pages(page, PAGES_PER_SGE_SHIFT);
859
860 sw_buf->page = NULL;
861 sge->addr_hi = 0;
862 sge->addr_lo = 0;
863}
864
Merav Sicron55c11942012-11-07 00:45:48 +0000865static inline void bnx2x_add_all_napi_cnic(struct bnx2x *bp)
866{
867 int i;
868
869 /* Add NAPI objects */
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300870 for_each_rx_queue_cnic(bp, i) {
Merav Sicron55c11942012-11-07 00:45:48 +0000871 netif_napi_add(bp->dev, &bnx2x_fp(bp, i, napi),
Eric Dumazet6fac4112013-03-05 15:57:47 +0000872 bnx2x_poll, NAPI_POLL_WEIGHT);
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300873 napi_hash_add(&bnx2x_fp(bp, i, napi));
874 }
Merav Sicron55c11942012-11-07 00:45:48 +0000875}
876
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000877static inline void bnx2x_add_all_napi(struct bnx2x *bp)
878{
879 int i;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000880
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000881 /* Add NAPI objects */
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300882 for_each_eth_queue(bp, i) {
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000883 netif_napi_add(bp->dev, &bnx2x_fp(bp, i, napi),
Eric Dumazet6fac4112013-03-05 15:57:47 +0000884 bnx2x_poll, NAPI_POLL_WEIGHT);
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300885 napi_hash_add(&bnx2x_fp(bp, i, napi));
886 }
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000887}
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000888
Merav Sicron55c11942012-11-07 00:45:48 +0000889static inline void bnx2x_del_all_napi_cnic(struct bnx2x *bp)
890{
891 int i;
892
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300893 for_each_rx_queue_cnic(bp, i) {
894 napi_hash_del(&bnx2x_fp(bp, i, napi));
Merav Sicron55c11942012-11-07 00:45:48 +0000895 netif_napi_del(&bnx2x_fp(bp, i, napi));
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300896 }
Merav Sicron55c11942012-11-07 00:45:48 +0000897}
898
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000899static inline void bnx2x_del_all_napi(struct bnx2x *bp)
900{
901 int i;
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000902
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300903 for_each_eth_queue(bp, i) {
904 napi_hash_del(&bnx2x_fp(bp, i, napi));
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000905 netif_napi_del(&bnx2x_fp(bp, i, napi));
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300906 }
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000907}
908
Ariel Elior1ab44342013-01-01 05:22:23 +0000909int bnx2x_set_int_mode(struct bnx2x *bp);
Merav Sicron0e8d2ec2012-06-19 07:48:30 +0000910
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000911static inline void bnx2x_disable_msi(struct bnx2x *bp)
912{
913 if (bp->flags & USING_MSIX_FLAG) {
914 pci_disable_msix(bp->pdev);
Dmitry Kravkov30a5de72012-04-03 18:41:26 +0000915 bp->flags &= ~(USING_MSIX_FLAG | USING_SINGLE_MSIX_FLAG);
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000916 } else if (bp->flags & USING_MSI_FLAG) {
917 pci_disable_msi(bp->pdev);
918 bp->flags &= ~USING_MSI_FLAG;
919 }
920}
921
922static inline int bnx2x_calc_num_queues(struct bnx2x *bp)
923{
924 return num_queues ?
925 min_t(int, num_queues, BNX2X_MAX_QUEUES(bp)) :
Yuval Mintz7d515412012-07-01 03:18:59 +0000926 min_t(int, netif_get_num_default_rss_queues(),
927 BNX2X_MAX_QUEUES(bp));
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000928}
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000929
930static inline void bnx2x_clear_sge_mask_next_elems(struct bnx2x_fastpath *fp)
931{
932 int i, j;
933
934 for (i = 1; i <= NUM_RX_SGE_PAGES; i++) {
935 int idx = RX_SGE_CNT * i - 1;
936
937 for (j = 0; j < 2; j++) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300938 BIT_VEC64_CLEAR_BIT(fp->sge_mask, idx);
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000939 idx--;
940 }
941 }
942}
943
944static inline void bnx2x_init_sge_ring_bit_mask(struct bnx2x_fastpath *fp)
945{
946 /* 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 +0000947 memset(fp->sge_mask, 0xff, sizeof(fp->sge_mask));
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000948
949 /* Clear the two last indices in the page to 1:
950 these are the indices that correspond to the "next" element,
951 hence will never be indicated and should be removed from
952 the calculations. */
953 bnx2x_clear_sge_mask_next_elems(fp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000954}
955
Eric Dumazete52fcb22011-11-14 06:05:34 +0000956/* note that we are not allocating a new buffer,
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000957 * we are just moving one from cons to prod
958 * we are not creating a new mapping,
959 * so there is no need to check for dma_mapping_error().
960 */
Eric Dumazete52fcb22011-11-14 06:05:34 +0000961static inline void bnx2x_reuse_rx_data(struct bnx2x_fastpath *fp,
Dmitry Kravkov749a8502010-10-06 03:29:05 +0000962 u16 cons, u16 prod)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000963{
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000964 struct sw_rx_bd *cons_rx_buf = &fp->rx_buf_ring[cons];
965 struct sw_rx_bd *prod_rx_buf = &fp->rx_buf_ring[prod];
966 struct eth_rx_bd *cons_bd = &fp->rx_desc_ring[cons];
967 struct eth_rx_bd *prod_bd = &fp->rx_desc_ring[prod];
968
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000969 dma_unmap_addr_set(prod_rx_buf, mapping,
970 dma_unmap_addr(cons_rx_buf, mapping));
Eric Dumazete52fcb22011-11-14 06:05:34 +0000971 prod_rx_buf->data = cons_rx_buf->data;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000972 *prod_bd = *cons_bd;
973}
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000974
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300975/************************* Init ******************************************/
976
Yuval Mintzb475d782012-04-03 18:41:29 +0000977/* returns func by VN for current port */
978static inline int func_by_vn(struct bnx2x *bp, int vn)
979{
980 return 2 * vn + BP_PORT(bp);
981}
982
Merav Sicron5d317c6a2012-06-19 07:48:24 +0000983static inline int bnx2x_config_rss_eth(struct bnx2x *bp, bool config_hash)
Dmitry Kravkov96305232012-04-03 18:41:30 +0000984{
Ariel Elior60cad4e2013-09-04 14:09:22 +0300985 return bnx2x_rss(bp, &bp->rss_conf_obj, config_hash, true);
Dmitry Kravkov96305232012-04-03 18:41:30 +0000986}
987
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300988/**
989 * bnx2x_func_start - init function
990 *
991 * @bp: driver handle
992 *
993 * Must be called before sending CLIENT_SETUP for the first client.
994 */
995static inline int bnx2x_func_start(struct bnx2x *bp)
996{
Yuval Mintz3b603062012-03-18 10:33:39 +0000997 struct bnx2x_func_state_params func_params = {NULL};
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300998 struct bnx2x_func_start_params *start_params =
999 &func_params.params.start;
1000
1001 /* Prepare parameters for function state transitions */
1002 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
1003
1004 func_params.f_obj = &bp->func_obj;
1005 func_params.cmd = BNX2X_F_CMD_START;
1006
1007 /* Function parameters */
1008 start_params->mf_mode = bp->mf_mode;
1009 start_params->sd_vlan_tag = bp->mf_ov;
Ariel Elior8d7b0272012-01-26 06:01:45 +00001010
1011 if (CHIP_IS_E2(bp) || CHIP_IS_E3(bp))
Ariel Elior6383c0b2011-07-14 08:31:57 +00001012 start_params->network_cos_mode = STATIC_COS;
Ariel Elior8d7b0272012-01-26 06:01:45 +00001013 else /* CHIP_IS_E1X */
1014 start_params->network_cos_mode = FW_WRR;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001015
Dmitry Kravkov1bc277f2013-03-18 06:51:04 +00001016 start_params->gre_tunnel_mode = IPGRE_TUNNEL;
1017 start_params->gre_tunnel_rss = GRE_INNER_HEADERS_RSS;
1018
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001019 return bnx2x_func_state_change(bp, &func_params);
1020}
1021
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001022/**
1023 * bnx2x_set_fw_mac_addr - fill in a MAC address in FW format
1024 *
1025 * @fw_hi: pointer to upper part
1026 * @fw_mid: pointer to middle part
1027 * @fw_lo: pointer to lower part
1028 * @mac: pointer to MAC address
1029 */
Yuval Mintz86564c32013-01-23 03:21:50 +00001030static inline void bnx2x_set_fw_mac_addr(__le16 *fw_hi, __le16 *fw_mid,
1031 __le16 *fw_lo, u8 *mac)
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001032{
1033 ((u8 *)fw_hi)[0] = mac[1];
1034 ((u8 *)fw_hi)[1] = mac[0];
1035 ((u8 *)fw_mid)[0] = mac[3];
1036 ((u8 *)fw_mid)[1] = mac[2];
1037 ((u8 *)fw_lo)[0] = mac[5];
1038 ((u8 *)fw_lo)[1] = mac[4];
1039}
1040
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001041static inline void bnx2x_free_rx_sge_range(struct bnx2x *bp,
1042 struct bnx2x_fastpath *fp, int last)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001043{
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001044 int i;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001045
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00001046 if (fp->disable_tpa)
1047 return;
1048
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001049 for (i = 0; i < last; i++)
1050 bnx2x_free_rx_sge(bp, fp, i);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001051}
1052
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001053static inline void bnx2x_set_next_page_rx_bd(struct bnx2x_fastpath *fp)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001054{
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001055 int i;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001056
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001057 for (i = 1; i <= NUM_RX_RINGS; i++) {
1058 struct eth_rx_bd *rx_bd;
1059
1060 rx_bd = &fp->rx_desc_ring[RX_DESC_CNT * i - 2];
1061 rx_bd->addr_hi =
1062 cpu_to_le32(U64_HI(fp->rx_desc_mapping +
1063 BCM_PAGE_SIZE*(i % NUM_RX_RINGS)));
1064 rx_bd->addr_lo =
1065 cpu_to_le32(U64_LO(fp->rx_desc_mapping +
1066 BCM_PAGE_SIZE*(i % NUM_RX_RINGS)));
1067 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001068}
1069
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001070/* Statistics ID are global per chip/path, while Client IDs for E1x are per
1071 * port.
1072 */
1073static inline u8 bnx2x_stats_id(struct bnx2x_fastpath *fp)
1074{
Yuval Mintzde5c3742012-03-12 11:22:07 +00001075 struct bnx2x *bp = fp->bp;
1076 if (!CHIP_IS_E1x(bp)) {
Yuval Mintzde5c3742012-03-12 11:22:07 +00001077 /* there are special statistics counters for FCoE 136..140 */
1078 if (IS_FCOE_FP(fp))
1079 return bp->cnic_base_cl_id + (bp->pf_num >> 1);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001080 return fp->cl_id;
Yuval Mintzde5c3742012-03-12 11:22:07 +00001081 }
1082 return fp->cl_id + BP_PORT(bp) * FP_SB_MAX_E1x;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001083}
1084
1085static inline void bnx2x_init_vlan_mac_fp_objs(struct bnx2x_fastpath *fp,
1086 bnx2x_obj_type obj_type)
1087{
1088 struct bnx2x *bp = fp->bp;
1089
1090 /* Configure classification DBs */
Barak Witkowski15192a82012-06-19 07:48:28 +00001091 bnx2x_init_mac_obj(bp, &bnx2x_sp_obj(bp, fp).mac_obj, fp->cl_id,
1092 fp->cid, BP_FUNC(bp), bnx2x_sp(bp, mac_rdata),
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001093 bnx2x_sp_mapping(bp, mac_rdata),
1094 BNX2X_FILTER_MAC_PENDING,
1095 &bp->sp_state, obj_type,
1096 &bp->macs_pool);
1097}
1098
1099/**
1100 * bnx2x_get_path_func_num - get number of active functions
1101 *
1102 * @bp: driver handle
1103 *
1104 * Calculates the number of active (not hidden) functions on the
1105 * current path.
1106 */
1107static inline u8 bnx2x_get_path_func_num(struct bnx2x *bp)
1108{
1109 u8 func_num = 0, i;
1110
1111 /* 57710 has only one function per-port */
1112 if (CHIP_IS_E1(bp))
1113 return 1;
1114
1115 /* Calculate a number of functions enabled on the current
1116 * PATH/PORT.
1117 */
1118 if (CHIP_REV_IS_SLOW(bp)) {
1119 if (IS_MF(bp))
1120 func_num = 4;
1121 else
1122 func_num = 2;
1123 } else {
1124 for (i = 0; i < E1H_FUNC_MAX / 2; i++) {
1125 u32 func_config =
1126 MF_CFG_RD(bp,
1127 func_mf_config[BP_PORT(bp) + 2 * i].
1128 config);
1129 func_num +=
1130 ((func_config & FUNC_MF_CFG_FUNC_HIDE) ? 0 : 1);
1131 }
1132 }
1133
1134 WARN_ON(!func_num);
1135
1136 return func_num;
1137}
1138
1139static inline void bnx2x_init_bp_objs(struct bnx2x *bp)
1140{
1141 /* RX_MODE controlling object */
1142 bnx2x_init_rx_mode_obj(bp, &bp->rx_mode_obj);
1143
1144 /* multicast configuration controlling object */
1145 bnx2x_init_mcast_obj(bp, &bp->mcast_obj, bp->fp->cl_id, bp->fp->cid,
1146 BP_FUNC(bp), BP_FUNC(bp),
1147 bnx2x_sp(bp, mcast_rdata),
1148 bnx2x_sp_mapping(bp, mcast_rdata),
1149 BNX2X_FILTER_MCAST_PENDING, &bp->sp_state,
1150 BNX2X_OBJ_TYPE_RX);
1151
1152 /* Setup CAM credit pools */
1153 bnx2x_init_mac_credit_pool(bp, &bp->macs_pool, BP_FUNC(bp),
1154 bnx2x_get_path_func_num(bp));
1155
Ariel Eliorb56e9672013-01-01 05:22:32 +00001156 bnx2x_init_vlan_credit_pool(bp, &bp->vlans_pool, BP_ABS_FUNC(bp)>>1,
1157 bnx2x_get_path_func_num(bp));
1158
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001159 /* RSS configuration object */
1160 bnx2x_init_rss_config_obj(bp, &bp->rss_conf_obj, bp->fp->cl_id,
1161 bp->fp->cid, BP_FUNC(bp), BP_FUNC(bp),
1162 bnx2x_sp(bp, rss_rdata),
1163 bnx2x_sp_mapping(bp, rss_rdata),
1164 BNX2X_FILTER_RSS_CONF_PENDING, &bp->sp_state,
1165 BNX2X_OBJ_TYPE_RX);
1166}
1167
1168static inline u8 bnx2x_fp_qzone_id(struct bnx2x_fastpath *fp)
1169{
1170 if (CHIP_IS_E1x(fp->bp))
1171 return fp->cl_id + BP_PORT(fp->bp) * ETH_MAX_RX_CLIENTS_E1H;
1172 else
1173 return fp->cl_id;
1174}
1175
Ariel Elior64112802013-01-07 00:50:23 +00001176u32 bnx2x_rx_ustorm_prods_offset(struct bnx2x_fastpath *fp);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001177
Ariel Elior6383c0b2011-07-14 08:31:57 +00001178static inline void bnx2x_init_txdata(struct bnx2x *bp,
Merav Sicron65565882012-06-19 07:48:26 +00001179 struct bnx2x_fp_txdata *txdata, u32 cid,
1180 int txq_index, __le16 *tx_cons_sb,
1181 struct bnx2x_fastpath *fp)
Ariel Elior6383c0b2011-07-14 08:31:57 +00001182{
1183 txdata->cid = cid;
1184 txdata->txq_index = txq_index;
1185 txdata->tx_cons_sb = tx_cons_sb;
Merav Sicron65565882012-06-19 07:48:26 +00001186 txdata->parent_fp = fp;
Yuval Mintz7b5342d2012-09-11 04:34:14 +00001187 txdata->tx_ring_size = IS_FCOE_FP(fp) ? MAX_TX_AVAIL : bp->tx_ring_size;
Ariel Elior6383c0b2011-07-14 08:31:57 +00001188
Merav Sicron51c1a582012-03-18 10:33:38 +00001189 DP(NETIF_MSG_IFUP, "created tx data cid %d, txq %d\n",
Ariel Elior6383c0b2011-07-14 08:31:57 +00001190 txdata->cid, txdata->txq_index);
1191}
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001192
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001193static inline u8 bnx2x_cnic_eth_cl_id(struct bnx2x *bp, u8 cl_idx)
1194{
1195 return bp->cnic_base_cl_id + cl_idx +
David S. Miller1805b2f2011-10-24 18:18:09 -04001196 (bp->pf_num >> 1) * BNX2X_MAX_CNIC_ETH_CL_ID_IDX;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001197}
1198
1199static inline u8 bnx2x_cnic_fw_sb_id(struct bnx2x *bp)
1200{
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001201 /* the 'first' id is allocated for the cnic */
1202 return bp->base_fw_ndsb;
1203}
1204
1205static inline u8 bnx2x_cnic_igu_sb_id(struct bnx2x *bp)
1206{
1207 return bp->igu_base_sb;
1208}
1209
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001210static inline void bnx2x_init_fcoe_fp(struct bnx2x *bp)
1211{
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001212 struct bnx2x_fastpath *fp = bnx2x_fcoe_fp(bp);
1213 unsigned long q_type = 0;
1214
Dmitry Kravkovf233caf2011-11-13 04:34:22 +00001215 bnx2x_fcoe(bp, rx_queue) = BNX2X_NUM_ETH_QUEUES(bp);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001216 bnx2x_fcoe(bp, cl_id) = bnx2x_cnic_eth_cl_id(bp,
1217 BNX2X_FCOE_ETH_CL_ID_IDX);
Merav Sicron37ae41a2012-06-19 07:48:27 +00001218 bnx2x_fcoe(bp, cid) = BNX2X_FCOE_ETH_CID(bp);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001219 bnx2x_fcoe(bp, fw_sb_id) = DEF_SB_ID;
1220 bnx2x_fcoe(bp, igu_sb_id) = bp->igu_dsb_id;
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001221 bnx2x_fcoe(bp, rx_cons_sb) = BNX2X_FCOE_L2_RX_INDEX;
Merav Sicron65565882012-06-19 07:48:26 +00001222 bnx2x_init_txdata(bp, bnx2x_fcoe(bp, txdata_ptr[0]),
1223 fp->cid, FCOE_TXQ_IDX(bp), BNX2X_FCOE_L2_TX_INDEX,
1224 fp);
Ariel Elior6383c0b2011-07-14 08:31:57 +00001225
Merav Sicron51c1a582012-03-18 10:33:38 +00001226 DP(NETIF_MSG_IFUP, "created fcoe tx data (fp index %d)\n", fp->index);
Ariel Elior6383c0b2011-07-14 08:31:57 +00001227
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001228 /* qZone id equals to FW (per path) client id */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001229 bnx2x_fcoe(bp, cl_qzone_id) = bnx2x_fp_qzone_id(fp);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001230 /* init shortcut */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001231 bnx2x_fcoe(bp, ustorm_rx_prods_offset) =
1232 bnx2x_rx_ustorm_prods_offset(fp);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001233
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001234 /* Configure Queue State object */
1235 __set_bit(BNX2X_Q_TYPE_HAS_RX, &q_type);
1236 __set_bit(BNX2X_Q_TYPE_HAS_TX, &q_type);
Ariel Elior6383c0b2011-07-14 08:31:57 +00001237
1238 /* No multi-CoS for FCoE L2 client */
1239 BUG_ON(fp->max_cos != 1);
1240
Barak Witkowski15192a82012-06-19 07:48:28 +00001241 bnx2x_init_queue_obj(bp, &bnx2x_sp_obj(bp, fp).q_obj, fp->cl_id,
1242 &fp->cid, 1, BP_FUNC(bp), bnx2x_sp(bp, q_rdata),
Ariel Elior6383c0b2011-07-14 08:31:57 +00001243 bnx2x_sp_mapping(bp, q_rdata), q_type);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001244
Merav Sicron51c1a582012-03-18 10:33:38 +00001245 DP(NETIF_MSG_IFUP,
1246 "queue[%d]: bnx2x_init_sb(%p,%p) cl_id %d fw_sb %d igu_sb %d\n",
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001247 fp->index, bp, fp->status_blk.e2_sb, fp->cl_id, fp->fw_sb_id,
1248 fp->igu_sb_id);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001249}
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001250
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001251static inline int bnx2x_clean_tx_queue(struct bnx2x *bp,
Ariel Elior6383c0b2011-07-14 08:31:57 +00001252 struct bnx2x_fp_txdata *txdata)
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001253{
1254 int cnt = 1000;
1255
Ariel Elior6383c0b2011-07-14 08:31:57 +00001256 while (bnx2x_has_tx_work_unload(txdata)) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001257 if (!cnt) {
Merav Sicron51c1a582012-03-18 10:33:38 +00001258 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 +00001259 txdata->txq_index, txdata->tx_pkt_prod,
1260 txdata->tx_pkt_cons);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001261#ifdef BNX2X_STOP_ON_ERROR
1262 bnx2x_panic();
1263 return -EBUSY;
1264#else
1265 break;
1266#endif
1267 }
1268 cnt--;
Yuval Mintz0926d492013-01-23 03:21:45 +00001269 usleep_range(1000, 2000);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001270 }
1271
1272 return 0;
1273}
1274
Yaniv Rosner1ac9e422011-05-31 21:26:11 +00001275int bnx2x_get_link_cfg_idx(struct bnx2x *bp);
1276
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001277static inline void __storm_memset_struct(struct bnx2x *bp,
1278 u32 addr, size_t size, u32 *data)
1279{
1280 int i;
1281 for (i = 0; i < size/4; i++)
1282 REG_WR(bp, addr + (i * 4), data[i]);
1283}
1284
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001285/**
1286 * bnx2x_wait_sp_comp - wait for the outstanding SP commands.
1287 *
1288 * @bp: driver handle
1289 * @mask: bits that need to be cleared
1290 */
1291static inline bool bnx2x_wait_sp_comp(struct bnx2x *bp, unsigned long mask)
1292{
1293 int tout = 5000; /* Wait for 5 secs tops */
1294
1295 while (tout--) {
1296 smp_mb();
1297 netif_addr_lock_bh(bp->dev);
1298 if (!(bp->sp_state & mask)) {
1299 netif_addr_unlock_bh(bp->dev);
1300 return true;
1301 }
1302 netif_addr_unlock_bh(bp->dev);
1303
Yuval Mintz0926d492013-01-23 03:21:45 +00001304 usleep_range(1000, 2000);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001305 }
1306
1307 smp_mb();
1308
1309 netif_addr_lock_bh(bp->dev);
1310 if (bp->sp_state & mask) {
Merav Sicron51c1a582012-03-18 10:33:38 +00001311 BNX2X_ERR("Filtering completion timed out. sp_state 0x%lx, mask 0x%lx\n",
1312 bp->sp_state, mask);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001313 netif_addr_unlock_bh(bp->dev);
1314 return false;
1315 }
1316 netif_addr_unlock_bh(bp->dev);
1317
1318 return true;
1319}
1320
1321/**
1322 * bnx2x_set_ctx_validation - set CDU context validation values
1323 *
1324 * @bp: driver handle
1325 * @cxt: context of the connection on the host memory
1326 * @cid: SW CID of the connection to be configured
1327 */
1328void bnx2x_set_ctx_validation(struct bnx2x *bp, struct eth_context *cxt,
1329 u32 cid);
1330
1331void bnx2x_update_coalesce_sb_index(struct bnx2x *bp, u8 fw_sb_id,
1332 u8 sb_index, u8 disable, u16 usec);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001333void bnx2x_acquire_phy_lock(struct bnx2x *bp);
1334void bnx2x_release_phy_lock(struct bnx2x *bp);
1335
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001336/**
Dmitry Kravkove8920672011-05-04 23:52:40 +00001337 * bnx2x_extract_max_cfg - extract MAX BW part from MF configuration.
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001338 *
Dmitry Kravkove8920672011-05-04 23:52:40 +00001339 * @bp: driver handle
1340 * @mf_cfg: MF configuration
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001341 *
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001342 */
1343static inline u16 bnx2x_extract_max_cfg(struct bnx2x *bp, u32 mf_cfg)
1344{
1345 u16 max_cfg = (mf_cfg & FUNC_MF_CFG_MAX_BW_MASK) >>
1346 FUNC_MF_CFG_MAX_BW_SHIFT;
1347 if (!max_cfg) {
Merav Sicron51c1a582012-03-18 10:33:38 +00001348 DP(NETIF_MSG_IFUP | BNX2X_MSG_ETHTOOL,
Michal Schmidt96b0acc2011-08-18 21:51:01 -07001349 "Max BW configured to 0 - using 100 instead\n");
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001350 max_cfg = 100;
1351 }
1352 return max_cfg;
1353}
1354
Dmitry Kravkov621b4d62012-02-20 09:59:08 +00001355/* checks if HW supports GRO for given MTU */
1356static inline bool bnx2x_mtu_allows_gro(int mtu)
1357{
1358 /* gro frags per page */
1359 int fpp = SGE_PAGE_SIZE / (mtu - ETH_MAX_TPA_HEADER_SIZE);
1360
1361 /*
Yuval Mintz16a5fd92013-06-02 00:06:18 +00001362 * 1. Number of frags should not grow above MAX_SKB_FRAGS
1363 * 2. Frag must fit the page
Dmitry Kravkov621b4d62012-02-20 09:59:08 +00001364 */
1365 return mtu <= SGE_PAGE_SIZE && (U_ETH_SGL_SIZE * fpp) <= MAX_SKB_FRAGS;
1366}
Merav Sicron55c11942012-11-07 00:45:48 +00001367
Mintz Yuval1355b702012-02-15 02:10:22 +00001368/**
Dmitry Kravkovb306f5e2011-11-13 04:34:24 +00001369 * bnx2x_get_iscsi_info - update iSCSI params according to licensing info.
1370 *
1371 * @bp: driver handle
1372 *
1373 */
1374void bnx2x_get_iscsi_info(struct bnx2x *bp);
Dmitry Kravkov00253a82011-11-13 04:34:25 +00001375
1376/**
1377 * bnx2x_link_sync_notify - send notification to other functions.
1378 *
1379 * @bp: driver handle
1380 *
1381 */
1382static inline void bnx2x_link_sync_notify(struct bnx2x *bp)
1383{
1384 int func;
1385 int vn;
1386
1387 /* Set the attention towards other drivers on the same port */
1388 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++) {
1389 if (vn == BP_VN(bp))
1390 continue;
1391
1392 func = func_by_vn(bp, vn);
1393 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_0 +
1394 (LINK_SYNC_ATTENTION_BIT_FUNC_0 + func)*4, 1);
1395 }
1396}
1397
1398/**
1399 * bnx2x_update_drv_flags - update flags in shmem
1400 *
1401 * @bp: driver handle
1402 * @flags: flags to update
1403 * @set: set or clear
1404 *
1405 */
1406static inline void bnx2x_update_drv_flags(struct bnx2x *bp, u32 flags, u32 set)
1407{
1408 if (SHMEM2_HAS(bp, drv_flags)) {
1409 u32 drv_flags;
Ariel Eliorf16da432012-01-26 06:01:50 +00001410 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_DRV_FLAGS);
Dmitry Kravkov00253a82011-11-13 04:34:25 +00001411 drv_flags = SHMEM2_RD(bp, drv_flags);
1412
1413 if (set)
1414 SET_FLAGS(drv_flags, flags);
1415 else
1416 RESET_FLAGS(drv_flags, flags);
1417
1418 SHMEM2_WR(bp, drv_flags, drv_flags);
Merav Sicron51c1a582012-03-18 10:33:38 +00001419 DP(NETIF_MSG_IFUP, "drv_flags 0x%08x\n", drv_flags);
Ariel Eliorf16da432012-01-26 06:01:50 +00001420 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_DRV_FLAGS);
Dmitry Kravkov00253a82011-11-13 04:34:25 +00001421 }
1422}
1423
Dmitry Kravkov614c76d2011-11-28 12:31:49 +00001424static inline bool bnx2x_is_valid_ether_addr(struct bnx2x *bp, u8 *addr)
1425{
Merav Sicron55c11942012-11-07 00:45:48 +00001426 if (is_valid_ether_addr(addr) ||
1427 (is_zero_ether_addr(addr) &&
1428 (IS_MF_STORAGE_SD(bp) || IS_MF_FCOE_AFEX(bp))))
Dmitry Kravkov614c76d2011-11-28 12:31:49 +00001429 return true;
Merav Sicron55c11942012-11-07 00:45:48 +00001430
Dmitry Kravkov614c76d2011-11-28 12:31:49 +00001431 return false;
1432}
1433
Ariel Elior8ca5e172013-01-01 05:22:34 +00001434/**
Yuval Mintz2de67432013-01-23 03:21:43 +00001435 * bnx2x_fill_fw_str - Fill buffer with FW version string
Ariel Elior8ca5e172013-01-01 05:22:34 +00001436 *
1437 * @bp: driver handle
1438 * @buf: character buffer to fill with the fw name
1439 * @buf_len: length of the above buffer
1440 *
1441 */
1442void bnx2x_fill_fw_str(struct bnx2x *bp, char *buf, size_t buf_len);
Yuval Mintz7fa6f3402013-03-20 05:21:28 +00001443
1444int bnx2x_drain_tx_queues(struct bnx2x *bp);
1445void bnx2x_squeeze_objects(struct bnx2x *bp);
1446
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001447#endif /* BNX2X_CMN_H */