blob: 4620fa5666e5b30bfcdca2c17d85831151991bbf [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
25
26#include "bnx2x.h"
Ariel Elior64112802013-01-07 00:50:23 +000027#include "bnx2x_sriov.h"
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000028
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030029/* This is used as a replacement for an MCP if it's not present */
30extern int load_count[2][3]; /* per-path: 0-common, 1-port0, 2-port1 */
31
Dmitry Kravkovd6214d72010-10-06 03:32:10 +000032extern int num_queues;
Merav Sicron0e8d2ec2012-06-19 07:48:30 +000033extern int int_mode;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000034
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +000035/************************ Macros ********************************/
36#define BNX2X_PCI_FREE(x, y, size) \
37 do { \
38 if (x) { \
39 dma_free_coherent(&bp->pdev->dev, size, (void *)x, y); \
40 x = NULL; \
41 y = 0; \
42 } \
43 } while (0)
44
45#define BNX2X_FREE(x) \
46 do { \
47 if (x) { \
48 kfree((void *)x); \
49 x = NULL; \
50 } \
51 } while (0)
52
53#define BNX2X_PCI_ALLOC(x, y, size) \
54 do { \
55 x = dma_alloc_coherent(&bp->pdev->dev, size, y, GFP_KERNEL); \
56 if (x == NULL) \
57 goto alloc_mem_err; \
58 memset((void *)x, 0, size); \
59 } while (0)
60
61#define BNX2X_ALLOC(x, size) \
62 do { \
63 x = kzalloc(size, GFP_KERNEL); \
64 if (x == NULL) \
65 goto alloc_mem_err; \
66 } while (0)
67
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000068/*********************** Interfaces ****************************
69 * Functions that need to be implemented by each driver version
70 */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030071/* Init */
72
73/**
74 * bnx2x_send_unload_req - request unload mode from the MCP.
75 *
76 * @bp: driver handle
77 * @unload_mode: requested function's unload mode
78 *
79 * Return unload mode returned by the MCP: COMMON, PORT or FUNC.
80 */
81u32 bnx2x_send_unload_req(struct bnx2x *bp, int unload_mode);
82
83/**
84 * bnx2x_send_unload_done - send UNLOAD_DONE command to the MCP.
85 *
86 * @bp: driver handle
Yuval Mintz5d07d862012-09-13 02:56:21 +000087 * @keep_link: true iff link should be kept up
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030088 */
Yuval Mintz5d07d862012-09-13 02:56:21 +000089void bnx2x_send_unload_done(struct bnx2x *bp, bool keep_link);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030090
91/**
Dmitry Kravkov96305232012-04-03 18:41:30 +000092 * bnx2x_config_rss_pf - configure RSS parameters in a PF.
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030093 *
94 * @bp: driver handle
Ben Hutchings49ce9c22012-07-10 10:56:00 +000095 * @rss_obj: RSS object to use
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030096 * @ind_table: indirection table to configure
97 * @config_hash: re-configure RSS hash keys configuration
98 */
Dmitry Kravkov96305232012-04-03 18:41:30 +000099int bnx2x_config_rss_pf(struct bnx2x *bp, struct bnx2x_rss_config_obj *rss_obj,
Merav Sicron5d317c6a2012-06-19 07:48:24 +0000100 bool config_hash);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300101
102/**
103 * bnx2x__init_func_obj - init function object
104 *
105 * @bp: driver handle
106 *
107 * Initializes the Function Object with the appropriate
108 * parameters which include a function slow path driver
109 * interface.
110 */
111void bnx2x__init_func_obj(struct bnx2x *bp);
112
113/**
114 * bnx2x_setup_queue - setup eth queue.
115 *
116 * @bp: driver handle
117 * @fp: pointer to the fastpath structure
118 * @leading: boolean
119 *
120 */
121int bnx2x_setup_queue(struct bnx2x *bp, struct bnx2x_fastpath *fp,
122 bool leading);
123
124/**
125 * bnx2x_setup_leading - bring up a leading eth queue.
126 *
127 * @bp: driver handle
128 */
129int bnx2x_setup_leading(struct bnx2x *bp);
130
131/**
132 * bnx2x_fw_command - send the MCP a request
133 *
134 * @bp: driver handle
135 * @command: request
136 * @param: request's parameter
137 *
138 * block until there is a reply
139 */
140u32 bnx2x_fw_command(struct bnx2x *bp, u32 command, u32 param);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000141
142/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000143 * bnx2x_initial_phy_init - initialize link parameters structure variables.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000144 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000145 * @bp: driver handle
146 * @load_mode: current mode
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000147 */
Yuval Mintzcd1dfce2012-12-02 04:05:56 +0000148int bnx2x_initial_phy_init(struct bnx2x *bp, int load_mode);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000149
150/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000151 * bnx2x_link_set - configure hw according to link parameters structure.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000152 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000153 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000154 */
155void bnx2x_link_set(struct bnx2x *bp);
156
157/**
Yuval Mintz5d07d862012-09-13 02:56:21 +0000158 * bnx2x_force_link_reset - Forces link reset, and put the PHY
159 * in reset as well.
160 *
161 * @bp: driver handle
162 */
163void bnx2x_force_link_reset(struct bnx2x *bp);
164
165/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000166 * bnx2x_link_test - query link status.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000167 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000168 * @bp: driver handle
169 * @is_serdes: bool
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000170 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000171 * Returns 0 if link is UP.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000172 */
Yaniv Rosnera22f0782010-09-07 11:41:20 +0000173u8 bnx2x_link_test(struct bnx2x *bp, u8 is_serdes);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000174
175/**
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300176 * bnx2x_drv_pulse - write driver pulse to shmem
177 *
178 * @bp: driver handle
179 *
180 * writes the value in bp->fw_drv_pulse_wr_seq to drv_pulse mbox
181 * in the shmem.
182 */
183void bnx2x_drv_pulse(struct bnx2x *bp);
184
185/**
186 * bnx2x_igu_ack_sb - update IGU with current SB value
187 *
188 * @bp: driver handle
189 * @igu_sb_id: SB id
190 * @segment: SB segment
191 * @index: SB index
192 * @op: SB operation
193 * @update: is HW update required
194 */
195void bnx2x_igu_ack_sb(struct bnx2x *bp, u8 igu_sb_id, u8 segment,
196 u16 index, u8 op, u8 update);
197
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +0000198/* Disable transactions from chip to host */
199void bnx2x_pf_disable(struct bnx2x *bp);
Miriam Shitrit07ba6af2013-01-14 05:11:46 +0000200int bnx2x_pretend_func(struct bnx2x *bp, u16 pretend_func_val);
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +0000201
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300202/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000203 * bnx2x__link_status_update - handles link status change.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000204 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000205 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000206 */
207void bnx2x__link_status_update(struct bnx2x *bp);
208
209/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000210 * bnx2x_link_report - report link status to upper layer.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000211 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000212 * @bp: driver handle
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000213 */
214void bnx2x_link_report(struct bnx2x *bp);
215
Vladislav Zolotarov2ae17f62011-05-04 23:48:23 +0000216/* None-atomic version of bnx2x_link_report() */
217void __bnx2x_link_report(struct bnx2x *bp);
218
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000219/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000220 * bnx2x_get_mf_speed - calculate MF speed.
Dmitry Kravkov0793f83f2010-12-01 12:39:28 -0800221 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000222 * @bp: driver handle
Dmitry Kravkov0793f83f2010-12-01 12:39:28 -0800223 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000224 * Takes into account current linespeed and MF configuration.
Dmitry Kravkov0793f83f2010-12-01 12:39:28 -0800225 */
226u16 bnx2x_get_mf_speed(struct bnx2x *bp);
227
228/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000229 * bnx2x_msix_sp_int - MSI-X slowpath interrupt handler
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000230 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000231 * @irq: irq number
232 * @dev_instance: private instance
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000233 */
234irqreturn_t bnx2x_msix_sp_int(int irq, void *dev_instance);
235
236/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000237 * bnx2x_interrupt - non MSI-X interrupt handler
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000238 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000239 * @irq: irq number
240 * @dev_instance: private instance
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000241 */
242irqreturn_t bnx2x_interrupt(int irq, void *dev_instance);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000243
244/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000245 * bnx2x_cnic_notify - send command to cnic driver
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000246 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000247 * @bp: driver handle
248 * @cmd: command
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000249 */
250int bnx2x_cnic_notify(struct bnx2x *bp, int cmd);
251
252/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000253 * bnx2x_setup_cnic_irq_info - provides cnic with IRQ information
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000254 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000255 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000256 */
257void bnx2x_setup_cnic_irq_info(struct bnx2x *bp);
Merav Sicron37ae41a2012-06-19 07:48:27 +0000258
259/**
260 * bnx2x_setup_cnic_info - provides cnic with updated info
261 *
262 * @bp: driver handle
263 */
264void bnx2x_setup_cnic_info(struct bnx2x *bp);
265
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000266/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000267 * bnx2x_int_enable - enable HW interrupts.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000268 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000269 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000270 */
271void bnx2x_int_enable(struct bnx2x *bp);
272
273/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000274 * bnx2x_int_disable_sync - disable interrupts.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000275 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000276 * @bp: driver handle
277 * @disable_hw: true, disable HW interrupts.
278 *
279 * This function ensures that there are no
280 * ISRs or SP DPCs (sp_task) are running after it returns.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000281 */
282void bnx2x_int_disable_sync(struct bnx2x *bp, int disable_hw);
283
284/**
Merav Sicron55c11942012-11-07 00:45:48 +0000285 * bnx2x_nic_init_cnic - init driver internals for cnic.
Dmitry Kravkove8920672011-05-04 23:52:40 +0000286 *
287 * @bp: driver handle
288 * @load_code: COMMON, PORT or FUNCTION
289 *
290 * Initializes:
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000291 * - rings
292 * - status blocks
293 * - etc.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000294 */
Merav Sicron55c11942012-11-07 00:45:48 +0000295void bnx2x_nic_init_cnic(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000296
297/**
Merav Sicron55c11942012-11-07 00:45:48 +0000298 * bnx2x_nic_init - init driver internals.
299 *
300 * @bp: driver handle
301 *
302 * Initializes:
303 * - rings
304 * - status blocks
305 * - etc.
306 */
307void bnx2x_nic_init(struct bnx2x *bp, u32 load_code);
308/**
309 * bnx2x_alloc_mem_cnic - allocate driver's memory for cnic.
310 *
311 * @bp: driver handle
312 */
313int bnx2x_alloc_mem_cnic(struct bnx2x *bp);
314/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000315 * bnx2x_alloc_mem - allocate driver's memory.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000316 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000317 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000318 */
319int bnx2x_alloc_mem(struct bnx2x *bp);
320
321/**
Merav Sicron55c11942012-11-07 00:45:48 +0000322 * bnx2x_free_mem_cnic - release driver's memory for cnic.
323 *
324 * @bp: driver handle
325 */
326void bnx2x_free_mem_cnic(struct bnx2x *bp);
327/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000328 * bnx2x_free_mem - release driver's memory.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000329 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000330 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000331 */
332void bnx2x_free_mem(struct bnx2x *bp);
333
334/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000335 * bnx2x_set_num_queues - set number of queues according to mode.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000336 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000337 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000338 */
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000339void bnx2x_set_num_queues(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000340
341/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000342 * bnx2x_chip_cleanup - cleanup chip internals.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000343 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000344 * @bp: driver handle
345 * @unload_mode: COMMON, PORT, FUNCTION
Yuval Mintz5d07d862012-09-13 02:56:21 +0000346 * @keep_link: true iff link should be kept up.
Dmitry Kravkove8920672011-05-04 23:52:40 +0000347 *
348 * - Cleanup MAC configuration.
349 * - Closes clients.
350 * - etc.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000351 */
Yuval Mintz5d07d862012-09-13 02:56:21 +0000352void bnx2x_chip_cleanup(struct bnx2x *bp, int unload_mode, bool keep_link);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000353
354/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000355 * bnx2x_acquire_hw_lock - acquire HW lock.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000356 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000357 * @bp: driver handle
358 * @resource: resource bit which was locked
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000359 */
360int bnx2x_acquire_hw_lock(struct bnx2x *bp, u32 resource);
361
362/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000363 * bnx2x_release_hw_lock - release HW lock.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000364 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000365 * @bp: driver handle
366 * @resource: resource bit which was locked
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000367 */
368int bnx2x_release_hw_lock(struct bnx2x *bp, u32 resource);
369
370/**
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +0000371 * bnx2x_release_leader_lock - release recovery leader lock
372 *
373 * @bp: driver handle
374 */
375int bnx2x_release_leader_lock(struct bnx2x *bp);
376
377/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000378 * bnx2x_set_eth_mac - configure eth MAC address in the HW
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000379 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000380 * @bp: driver handle
381 * @set: set or clear
382 *
383 * Configures according to the value in netdev->dev_addr.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000384 */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300385int bnx2x_set_eth_mac(struct bnx2x *bp, bool set);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +0000386
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000387/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000388 * bnx2x_set_rx_mode - set MAC filtering configurations.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000389 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000390 * @dev: netdevice
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000391 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000392 * called with netif_tx_lock from dev_mcast.c
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300393 * If bp->state is OPEN, should be called with
394 * netif_addr_lock_bh()
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000395 */
396void bnx2x_set_rx_mode(struct net_device *dev);
397
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300398/**
399 * bnx2x_set_storm_rx_mode - configure MAC filtering rules in a FW.
400 *
401 * @bp: driver handle
402 *
403 * If bp->state is OPEN, should be called with
404 * netif_addr_lock_bh().
405 */
Yuval Mintz924d75a2013-01-23 03:21:44 +0000406int bnx2x_set_storm_rx_mode(struct bnx2x *bp);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300407
408/**
409 * bnx2x_set_q_rx_mode - configures rx_mode for a single queue.
410 *
411 * @bp: driver handle
412 * @cl_id: client id
413 * @rx_mode_flags: rx mode configuration
414 * @rx_accept_flags: rx accept configuration
415 * @tx_accept_flags: tx accept configuration (tx switch)
416 * @ramrod_flags: ramrod configuration
417 */
Yuval Mintz924d75a2013-01-23 03:21:44 +0000418int bnx2x_set_q_rx_mode(struct bnx2x *bp, u8 cl_id,
419 unsigned long rx_mode_flags,
420 unsigned long rx_accept_flags,
421 unsigned long tx_accept_flags,
422 unsigned long ramrod_flags);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300423
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000424/* Parity errors related */
Ariel Elior889b9af2012-01-26 06:01:51 +0000425void bnx2x_set_pf_load(struct bnx2x *bp);
426bool bnx2x_clear_pf_load(struct bnx2x *bp);
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +0000427bool bnx2x_chk_parity_attn(struct bnx2x *bp, bool *global, bool print);
428bool bnx2x_reset_is_done(struct bnx2x *bp, int engine);
429void bnx2x_set_reset_in_progress(struct bnx2x *bp);
430void bnx2x_set_reset_global(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000431void bnx2x_disable_close_the_gate(struct bnx2x *bp);
Merav Sicron55c11942012-11-07 00:45:48 +0000432int bnx2x_init_hw_func_cnic(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000433
434/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000435 * bnx2x_sp_event - handle ramrods completion.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000436 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000437 * @fp: fastpath handle for the event
438 * @rr_cqe: eth_rx_cqe
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000439 */
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000440void bnx2x_sp_event(struct bnx2x_fastpath *fp, union eth_rx_cqe *rr_cqe);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000441
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000442/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000443 * bnx2x_ilt_set_info - prepare ILT configurations.
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000444 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000445 * @bp: driver handle
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000446 */
447void bnx2x_ilt_set_info(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000448
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000449/**
Merav Sicron55c11942012-11-07 00:45:48 +0000450 * bnx2x_ilt_set_cnic_info - prepare ILT configurations for SRC
451 * and TM.
452 *
453 * @bp: driver handle
454 */
455void bnx2x_ilt_set_info_cnic(struct bnx2x *bp);
456
457/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000458 * bnx2x_dcbx_init - initialize dcbx protocol.
Vladislav Zolotarove4901dd2010-12-13 05:44:18 +0000459 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000460 * @bp: driver handle
Vladislav Zolotarove4901dd2010-12-13 05:44:18 +0000461 */
Barak Witkowski98768792012-06-19 07:48:31 +0000462void bnx2x_dcbx_init(struct bnx2x *bp, bool update_shmem);
Vladislav Zolotarove4901dd2010-12-13 05:44:18 +0000463
464/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000465 * bnx2x_set_power_state - set power state to the requested value.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000466 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000467 * @bp: driver handle
468 * @state: required state D0 or D3hot
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000469 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000470 * Currently only D0 and D3hot are supported.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000471 */
472int bnx2x_set_power_state(struct bnx2x *bp, pci_power_t state);
473
Dmitry Kravkove3835b92011-03-06 10:50:44 +0000474/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000475 * bnx2x_update_max_mf_config - update MAX part of MF configuration in HW.
Dmitry Kravkove3835b92011-03-06 10:50:44 +0000476 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000477 * @bp: driver handle
478 * @value: new value
Dmitry Kravkove3835b92011-03-06 10:50:44 +0000479 */
480void bnx2x_update_max_mf_config(struct bnx2x *bp, u32 value);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300481/* Error handling */
Dmitry Kravkov7a25cc72011-06-14 01:33:25 +0000482void bnx2x_fw_dump_lvl(struct bnx2x *bp, const char *lvl);
483
Yuval Mintz452427b2012-03-26 20:47:07 +0000484/* validate currect fw is loaded */
485bool bnx2x_test_firmware_version(struct bnx2x *bp, bool is_err);
486
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000487/* dev_close main block */
Yuval Mintz5d07d862012-09-13 02:56:21 +0000488int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode, bool keep_link);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000489
490/* dev_open main block */
491int bnx2x_nic_load(struct bnx2x *bp, int load_mode);
492
493/* hard_xmit callback */
494netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev);
495
Ariel Elior6383c0b2011-07-14 08:31:57 +0000496/* setup_tc callback */
497int bnx2x_setup_tc(struct net_device *dev, u8 num_tc);
498
Ariel Elior3ec9f9c2013-03-11 05:17:45 +0000499int bnx2x_get_vf_config(struct net_device *dev, int vf,
500 struct ifla_vf_info *ivi);
Ariel Eliorabc5a022013-01-01 05:22:43 +0000501int bnx2x_set_vf_mac(struct net_device *dev, int queue, u8 *mac);
Ariel Elior3ec9f9c2013-03-11 05:17:45 +0000502int bnx2x_set_vf_vlan(struct net_device *netdev, int vf, u16 vlan, u8 qos);
Ariel Eliorabc5a022013-01-01 05:22:43 +0000503
Vladislav Zolotarov8307fa32010-12-13 05:44:09 +0000504/* select_queue callback */
505u16 bnx2x_select_queue(struct net_device *dev, struct sk_buff *skb);
506
Ariel Eliordc1ba592013-01-01 05:22:30 +0000507static inline void bnx2x_update_rx_prod(struct bnx2x *bp,
508 struct bnx2x_fastpath *fp,
509 u16 bd_prod, u16 rx_comp_prod,
510 u16 rx_sge_prod)
511{
512 struct ustorm_eth_rx_producers rx_prods = {0};
513 u32 i;
514
515 /* Update producers */
516 rx_prods.bd_prod = bd_prod;
517 rx_prods.cqe_prod = rx_comp_prod;
518 rx_prods.sge_prod = rx_sge_prod;
519
520 /* Make sure that the BD and SGE data is updated before updating the
521 * producers since FW might read the BD/SGE right after the producer
522 * is updated.
523 * This is only applicable for weak-ordered memory model archs such
524 * as IA-64. The following barrier is also mandatory since FW will
525 * assumes BDs must have buffers.
526 */
527 wmb();
528
529 for (i = 0; i < sizeof(rx_prods)/4; i++)
530 REG_WR(bp, fp->ustorm_rx_prods_offset + i*4,
531 ((u32 *)&rx_prods)[i]);
532
533 mmiowb(); /* keep prod updates ordered */
534
535 DP(NETIF_MSG_RX_STATUS,
536 "queue[%d]: wrote bd_prod %u cqe_prod %u sge_prod %u\n",
537 fp->index, bd_prod, rx_comp_prod, rx_sge_prod);
538}
539
Dmitry Kravkova9fccec2011-06-14 01:33:30 +0000540/* reload helper */
541int bnx2x_reload_if_running(struct net_device *dev);
542
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000543int bnx2x_change_mac_addr(struct net_device *dev, void *p);
544
545/* NAPI poll Rx part */
546int bnx2x_rx_int(struct bnx2x_fastpath *fp, int budget);
547
548/* NAPI poll Tx part */
Ariel Elior6383c0b2011-07-14 08:31:57 +0000549int bnx2x_tx_int(struct bnx2x *bp, struct bnx2x_fp_txdata *txdata);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000550
551/* suspend/resume callbacks */
552int bnx2x_suspend(struct pci_dev *pdev, pm_message_t state);
553int bnx2x_resume(struct pci_dev *pdev);
554
555/* Release IRQ vectors */
556void bnx2x_free_irq(struct bnx2x *bp);
557
Merav Sicron55c11942012-11-07 00:45:48 +0000558void bnx2x_free_fp_mem_cnic(struct bnx2x *bp);
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +0000559void bnx2x_free_fp_mem(struct bnx2x *bp);
Merav Sicron55c11942012-11-07 00:45:48 +0000560int bnx2x_alloc_fp_mem_cnic(struct bnx2x *bp);
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +0000561int bnx2x_alloc_fp_mem(struct bnx2x *bp);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000562void bnx2x_init_rx_rings(struct bnx2x *bp);
Merav Sicron55c11942012-11-07 00:45:48 +0000563void bnx2x_init_rx_rings_cnic(struct bnx2x *bp);
564void bnx2x_free_skbs_cnic(struct bnx2x *bp);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000565void bnx2x_free_skbs(struct bnx2x *bp);
566void bnx2x_netif_stop(struct bnx2x *bp, int disable_hw);
567void bnx2x_netif_start(struct bnx2x *bp);
Merav Sicron55c11942012-11-07 00:45:48 +0000568int bnx2x_load_cnic(struct bnx2x *bp);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000569
570/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000571 * bnx2x_enable_msix - set msix configuration.
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000572 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000573 * @bp: driver handle
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000574 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000575 * fills msix_table, requests vectors, updates num_queues
576 * according to number of available vectors.
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000577 */
Merav Sicron0e8d2ec2012-06-19 07:48:30 +0000578int bnx2x_enable_msix(struct bnx2x *bp);
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000579
580/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000581 * bnx2x_enable_msi - request msi mode from OS, updated internals accordingly
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000582 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000583 * @bp: driver handle
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000584 */
585int bnx2x_enable_msi(struct bnx2x *bp);
586
587/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000588 * bnx2x_poll - NAPI callback
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000589 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000590 * @napi: napi structure
591 * @budget:
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000592 *
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000593 */
594int bnx2x_poll(struct napi_struct *napi, int budget);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000595
596/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000597 * bnx2x_alloc_mem_bp - allocate memories outsize main driver structure
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000598 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000599 * @bp: driver handle
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000600 */
Bill Pemberton0329aba2012-12-03 09:24:24 -0500601int bnx2x_alloc_mem_bp(struct bnx2x *bp);
Dmitry Kravkove8920672011-05-04 23:52:40 +0000602
603/**
604 * bnx2x_free_mem_bp - release memories outsize main driver structure
605 *
606 * @bp: driver handle
607 */
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000608void bnx2x_free_mem_bp(struct bnx2x *bp);
609
610/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000611 * bnx2x_change_mtu - change mtu netdev callback
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000612 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000613 * @dev: net device
614 * @new_mtu: requested mtu
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000615 *
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000616 */
617int bnx2x_change_mtu(struct net_device *dev, int new_mtu);
618
Merav Sicron55c11942012-11-07 00:45:48 +0000619#ifdef NETDEV_FCOE_WWNN
Vladislav Zolotarovbf61ee12011-07-21 07:56:51 +0000620/**
621 * bnx2x_fcoe_get_wwn - return the requested WWN value for this port
622 *
623 * @dev: net_device
624 * @wwn: output buffer
625 * @type: WWN type: NETDEV_FCOE_WWNN (node) or NETDEV_FCOE_WWPN (port)
626 *
627 */
628int bnx2x_fcoe_get_wwn(struct net_device *dev, u64 *wwn, int type);
629#endif
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000630
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000631netdev_features_t bnx2x_fix_features(struct net_device *dev,
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000632 netdev_features_t features);
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000633int bnx2x_set_features(struct net_device *dev, netdev_features_t features);
Michał Mirosław66371c42011-04-12 09:38:23 +0000634
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000635/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000636 * bnx2x_tx_timeout - tx timeout netdev callback
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000637 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000638 * @dev: net device
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000639 */
640void bnx2x_tx_timeout(struct net_device *dev);
641
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300642/*********************** Inlines **********************************/
643/*********************** Fast path ********************************/
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000644static inline void bnx2x_update_fpsb_idx(struct bnx2x_fastpath *fp)
645{
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000646 barrier(); /* status block is written to by the chip */
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000647 fp->fp_hc_idx = fp->sb_running_index[SM_RX_ID];
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000648}
649
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000650static inline void bnx2x_igu_ack_sb_gen(struct bnx2x *bp, u8 igu_sb_id,
651 u8 segment, u16 index, u8 op,
652 u8 update, u32 igu_addr)
653{
654 struct igu_regular cmd_data = {0};
655
656 cmd_data.sb_id_and_flags =
657 ((index << IGU_REGULAR_SB_INDEX_SHIFT) |
658 (segment << IGU_REGULAR_SEGMENT_ACCESS_SHIFT) |
659 (update << IGU_REGULAR_BUPDATE_SHIFT) |
660 (op << IGU_REGULAR_ENABLE_INT_SHIFT));
661
Merav Sicron51c1a582012-03-18 10:33:38 +0000662 DP(NETIF_MSG_INTR, "write 0x%08x to IGU addr 0x%x\n",
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000663 cmd_data.sb_id_and_flags, igu_addr);
664 REG_WR(bp, igu_addr, cmd_data.sb_id_and_flags);
665
666 /* Make sure that ACK is written */
667 mmiowb();
668 barrier();
669}
670
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000671static inline void bnx2x_hc_ack_sb(struct bnx2x *bp, u8 sb_id,
672 u8 storm, u16 index, u8 op, u8 update)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000673{
674 u32 hc_addr = (HC_REG_COMMAND_REG + BP_PORT(bp)*32 +
675 COMMAND_REG_INT_ACK);
676 struct igu_ack_register igu_ack;
677
678 igu_ack.status_block_index = index;
679 igu_ack.sb_id_and_flags =
680 ((sb_id << IGU_ACK_REGISTER_STATUS_BLOCK_ID_SHIFT) |
681 (storm << IGU_ACK_REGISTER_STORM_ID_SHIFT) |
682 (update << IGU_ACK_REGISTER_UPDATE_INDEX_SHIFT) |
683 (op << IGU_ACK_REGISTER_INTERRUPT_MODE_SHIFT));
684
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000685 REG_WR(bp, hc_addr, (*(u32 *)&igu_ack));
686
687 /* Make sure that ACK is written */
688 mmiowb();
689 barrier();
690}
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000691
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000692static inline void bnx2x_ack_sb(struct bnx2x *bp, u8 igu_sb_id, u8 storm,
693 u16 index, u8 op, u8 update)
694{
695 if (bp->common.int_block == INT_BLOCK_HC)
696 bnx2x_hc_ack_sb(bp, igu_sb_id, storm, index, op, update);
697 else {
698 u8 segment;
699
700 if (CHIP_INT_MODE_IS_BC(bp))
701 segment = storm;
702 else if (igu_sb_id != bp->igu_dsb_id)
703 segment = IGU_SEG_ACCESS_DEF;
704 else if (storm == ATTENTION_ID)
705 segment = IGU_SEG_ACCESS_ATTN;
706 else
707 segment = IGU_SEG_ACCESS_DEF;
708 bnx2x_igu_ack_sb(bp, igu_sb_id, segment, index, op, update);
709 }
710}
711
712static inline u16 bnx2x_hc_ack_int(struct bnx2x *bp)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000713{
714 u32 hc_addr = (HC_REG_COMMAND_REG + BP_PORT(bp)*32 +
715 COMMAND_REG_SIMD_MASK);
716 u32 result = REG_RD(bp, hc_addr);
717
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000718 barrier();
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000719 return result;
720}
721
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000722static inline u16 bnx2x_igu_ack_int(struct bnx2x *bp)
723{
724 u32 igu_addr = (BAR_IGU_INTMEM + IGU_REG_SISR_MDPC_WMASK_LSB_UPPER*8);
725 u32 result = REG_RD(bp, igu_addr);
726
Merav Sicron51c1a582012-03-18 10:33:38 +0000727 DP(NETIF_MSG_INTR, "read 0x%08x from IGU addr 0x%x\n",
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000728 result, igu_addr);
729
730 barrier();
731 return result;
732}
733
734static inline u16 bnx2x_ack_int(struct bnx2x *bp)
735{
736 barrier();
737 if (bp->common.int_block == INT_BLOCK_HC)
738 return bnx2x_hc_ack_int(bp);
739 else
740 return bnx2x_igu_ack_int(bp);
741}
742
Ariel Elior6383c0b2011-07-14 08:31:57 +0000743static inline int bnx2x_has_tx_work_unload(struct bnx2x_fp_txdata *txdata)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000744{
745 /* Tell compiler that consumer and producer can change */
746 barrier();
Ariel Elior6383c0b2011-07-14 08:31:57 +0000747 return txdata->tx_pkt_prod != txdata->tx_pkt_cons;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000748}
749
Ariel Elior6383c0b2011-07-14 08:31:57 +0000750static inline u16 bnx2x_tx_avail(struct bnx2x *bp,
751 struct bnx2x_fp_txdata *txdata)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000752{
753 s16 used;
754 u16 prod;
755 u16 cons;
756
Ariel Elior6383c0b2011-07-14 08:31:57 +0000757 prod = txdata->tx_bd_prod;
758 cons = txdata->tx_bd_cons;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000759
Yuval Mintz7b5342d2012-09-11 04:34:14 +0000760 used = SUB_S16(prod, cons);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000761
762#ifdef BNX2X_STOP_ON_ERROR
763 WARN_ON(used < 0);
Yuval Mintz7b5342d2012-09-11 04:34:14 +0000764 WARN_ON(used > txdata->tx_ring_size);
765 WARN_ON((txdata->tx_ring_size - used) > MAX_TX_AVAIL);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000766#endif
767
Yuval Mintz7b5342d2012-09-11 04:34:14 +0000768 return (s16)(txdata->tx_ring_size) - used;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000769}
770
Ariel Elior6383c0b2011-07-14 08:31:57 +0000771static inline int bnx2x_tx_queue_has_work(struct bnx2x_fp_txdata *txdata)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000772{
773 u16 hw_cons;
774
775 /* Tell compiler that status block fields can change */
776 barrier();
Ariel Elior6383c0b2011-07-14 08:31:57 +0000777 hw_cons = le16_to_cpu(*txdata->tx_cons_sb);
778 return hw_cons != txdata->tx_pkt_cons;
779}
780
781static inline bool bnx2x_has_tx_work(struct bnx2x_fastpath *fp)
782{
783 u8 cos;
784 for_each_cos_in_tx_queue(fp, cos)
Merav Sicron65565882012-06-19 07:48:26 +0000785 if (bnx2x_tx_queue_has_work(fp->txdata_ptr[cos]))
Ariel Elior6383c0b2011-07-14 08:31:57 +0000786 return true;
787 return false;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000788}
789
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000790static inline int bnx2x_has_rx_work(struct bnx2x_fastpath *fp)
791{
792 u16 rx_cons_sb;
793
794 /* Tell compiler that status block fields can change */
795 barrier();
796 rx_cons_sb = le16_to_cpu(*fp->rx_cons_sb);
797 if ((rx_cons_sb & MAX_RCQ_DESC_CNT) == MAX_RCQ_DESC_CNT)
798 rx_cons_sb++;
799 return (fp->rx_comp_cons != rx_cons_sb);
800}
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000801
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000802/**
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300803 * bnx2x_tx_disable - disables tx from stack point of view
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000804 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000805 * @bp: driver handle
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000806 */
807static inline void bnx2x_tx_disable(struct bnx2x *bp)
808{
809 netif_tx_disable(bp->dev);
810 netif_carrier_off(bp->dev);
811}
812
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000813static inline void bnx2x_free_rx_sge(struct bnx2x *bp,
814 struct bnx2x_fastpath *fp, u16 index)
815{
816 struct sw_rx_page *sw_buf = &fp->rx_page_ring[index];
817 struct page *page = sw_buf->page;
818 struct eth_rx_sge *sge = &fp->rx_sge_ring[index];
819
820 /* Skip "next page" elements */
821 if (!page)
822 return;
823
824 dma_unmap_page(&bp->pdev->dev, dma_unmap_addr(sw_buf, mapping),
Yuval Mintz924d75a2013-01-23 03:21:44 +0000825 SGE_PAGES, DMA_FROM_DEVICE);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000826 __free_pages(page, PAGES_PER_SGE_SHIFT);
827
828 sw_buf->page = NULL;
829 sge->addr_hi = 0;
830 sge->addr_lo = 0;
831}
832
Merav Sicron55c11942012-11-07 00:45:48 +0000833static inline void bnx2x_add_all_napi_cnic(struct bnx2x *bp)
834{
835 int i;
836
837 /* Add NAPI objects */
838 for_each_rx_queue_cnic(bp, i)
839 netif_napi_add(bp->dev, &bnx2x_fp(bp, i, napi),
Eric Dumazet6fac4112013-03-05 15:57:47 +0000840 bnx2x_poll, NAPI_POLL_WEIGHT);
Merav Sicron55c11942012-11-07 00:45:48 +0000841}
842
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000843static inline void bnx2x_add_all_napi(struct bnx2x *bp)
844{
845 int i;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000846
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000847 /* Add NAPI objects */
Merav Sicron55c11942012-11-07 00:45:48 +0000848 for_each_eth_queue(bp, i)
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000849 netif_napi_add(bp->dev, &bnx2x_fp(bp, i, napi),
Eric Dumazet6fac4112013-03-05 15:57:47 +0000850 bnx2x_poll, NAPI_POLL_WEIGHT);
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000851}
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000852
Merav Sicron55c11942012-11-07 00:45:48 +0000853static inline void bnx2x_del_all_napi_cnic(struct bnx2x *bp)
854{
855 int i;
856
857 for_each_rx_queue_cnic(bp, i)
858 netif_napi_del(&bnx2x_fp(bp, i, napi));
859}
860
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000861static inline void bnx2x_del_all_napi(struct bnx2x *bp)
862{
863 int i;
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000864
Merav Sicron55c11942012-11-07 00:45:48 +0000865 for_each_eth_queue(bp, i)
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000866 netif_napi_del(&bnx2x_fp(bp, i, napi));
867}
868
Ariel Elior1ab44342013-01-01 05:22:23 +0000869int bnx2x_set_int_mode(struct bnx2x *bp);
Merav Sicron0e8d2ec2012-06-19 07:48:30 +0000870
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000871static inline void bnx2x_disable_msi(struct bnx2x *bp)
872{
873 if (bp->flags & USING_MSIX_FLAG) {
874 pci_disable_msix(bp->pdev);
Dmitry Kravkov30a5de72012-04-03 18:41:26 +0000875 bp->flags &= ~(USING_MSIX_FLAG | USING_SINGLE_MSIX_FLAG);
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000876 } else if (bp->flags & USING_MSI_FLAG) {
877 pci_disable_msi(bp->pdev);
878 bp->flags &= ~USING_MSI_FLAG;
879 }
880}
881
882static inline int bnx2x_calc_num_queues(struct bnx2x *bp)
883{
884 return num_queues ?
885 min_t(int, num_queues, BNX2X_MAX_QUEUES(bp)) :
Yuval Mintz7d515412012-07-01 03:18:59 +0000886 min_t(int, netif_get_num_default_rss_queues(),
887 BNX2X_MAX_QUEUES(bp));
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000888}
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000889
890static inline void bnx2x_clear_sge_mask_next_elems(struct bnx2x_fastpath *fp)
891{
892 int i, j;
893
894 for (i = 1; i <= NUM_RX_SGE_PAGES; i++) {
895 int idx = RX_SGE_CNT * i - 1;
896
897 for (j = 0; j < 2; j++) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300898 BIT_VEC64_CLEAR_BIT(fp->sge_mask, idx);
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000899 idx--;
900 }
901 }
902}
903
904static inline void bnx2x_init_sge_ring_bit_mask(struct bnx2x_fastpath *fp)
905{
906 /* 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 +0000907 memset(fp->sge_mask, 0xff, sizeof(fp->sge_mask));
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000908
909 /* Clear the two last indices in the page to 1:
910 these are the indices that correspond to the "next" element,
911 hence will never be indicated and should be removed from
912 the calculations. */
913 bnx2x_clear_sge_mask_next_elems(fp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000914}
915
Eric Dumazete52fcb22011-11-14 06:05:34 +0000916/* note that we are not allocating a new buffer,
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000917 * we are just moving one from cons to prod
918 * we are not creating a new mapping,
919 * so there is no need to check for dma_mapping_error().
920 */
Eric Dumazete52fcb22011-11-14 06:05:34 +0000921static inline void bnx2x_reuse_rx_data(struct bnx2x_fastpath *fp,
Dmitry Kravkov749a8502010-10-06 03:29:05 +0000922 u16 cons, u16 prod)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000923{
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000924 struct sw_rx_bd *cons_rx_buf = &fp->rx_buf_ring[cons];
925 struct sw_rx_bd *prod_rx_buf = &fp->rx_buf_ring[prod];
926 struct eth_rx_bd *cons_bd = &fp->rx_desc_ring[cons];
927 struct eth_rx_bd *prod_bd = &fp->rx_desc_ring[prod];
928
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000929 dma_unmap_addr_set(prod_rx_buf, mapping,
930 dma_unmap_addr(cons_rx_buf, mapping));
Eric Dumazete52fcb22011-11-14 06:05:34 +0000931 prod_rx_buf->data = cons_rx_buf->data;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000932 *prod_bd = *cons_bd;
933}
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000934
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300935/************************* Init ******************************************/
936
Yuval Mintzb475d782012-04-03 18:41:29 +0000937/* returns func by VN for current port */
938static inline int func_by_vn(struct bnx2x *bp, int vn)
939{
940 return 2 * vn + BP_PORT(bp);
941}
942
Merav Sicron5d317c6a2012-06-19 07:48:24 +0000943static inline int bnx2x_config_rss_eth(struct bnx2x *bp, bool config_hash)
Dmitry Kravkov96305232012-04-03 18:41:30 +0000944{
Merav Sicron5d317c6a2012-06-19 07:48:24 +0000945 return bnx2x_config_rss_pf(bp, &bp->rss_conf_obj, config_hash);
Dmitry Kravkov96305232012-04-03 18:41:30 +0000946}
947
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300948/**
949 * bnx2x_func_start - init function
950 *
951 * @bp: driver handle
952 *
953 * Must be called before sending CLIENT_SETUP for the first client.
954 */
955static inline int bnx2x_func_start(struct bnx2x *bp)
956{
Yuval Mintz3b603062012-03-18 10:33:39 +0000957 struct bnx2x_func_state_params func_params = {NULL};
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300958 struct bnx2x_func_start_params *start_params =
959 &func_params.params.start;
960
961 /* Prepare parameters for function state transitions */
962 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
963
964 func_params.f_obj = &bp->func_obj;
965 func_params.cmd = BNX2X_F_CMD_START;
966
967 /* Function parameters */
968 start_params->mf_mode = bp->mf_mode;
969 start_params->sd_vlan_tag = bp->mf_ov;
Ariel Elior8d7b0272012-01-26 06:01:45 +0000970
971 if (CHIP_IS_E2(bp) || CHIP_IS_E3(bp))
Ariel Elior6383c0b2011-07-14 08:31:57 +0000972 start_params->network_cos_mode = STATIC_COS;
Ariel Elior8d7b0272012-01-26 06:01:45 +0000973 else /* CHIP_IS_E1X */
974 start_params->network_cos_mode = FW_WRR;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300975
976 return bnx2x_func_state_change(bp, &func_params);
977}
978
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300979/**
980 * bnx2x_set_fw_mac_addr - fill in a MAC address in FW format
981 *
982 * @fw_hi: pointer to upper part
983 * @fw_mid: pointer to middle part
984 * @fw_lo: pointer to lower part
985 * @mac: pointer to MAC address
986 */
Yuval Mintz86564c32013-01-23 03:21:50 +0000987static inline void bnx2x_set_fw_mac_addr(__le16 *fw_hi, __le16 *fw_mid,
988 __le16 *fw_lo, u8 *mac)
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300989{
990 ((u8 *)fw_hi)[0] = mac[1];
991 ((u8 *)fw_hi)[1] = mac[0];
992 ((u8 *)fw_mid)[0] = mac[3];
993 ((u8 *)fw_mid)[1] = mac[2];
994 ((u8 *)fw_lo)[0] = mac[5];
995 ((u8 *)fw_lo)[1] = mac[4];
996}
997
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000998static inline void bnx2x_free_rx_sge_range(struct bnx2x *bp,
999 struct bnx2x_fastpath *fp, int last)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001000{
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001001 int i;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001002
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00001003 if (fp->disable_tpa)
1004 return;
1005
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001006 for (i = 0; i < last; i++)
1007 bnx2x_free_rx_sge(bp, fp, i);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001008}
1009
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001010static inline void bnx2x_set_next_page_rx_bd(struct bnx2x_fastpath *fp)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001011{
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001012 int i;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001013
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001014 for (i = 1; i <= NUM_RX_RINGS; i++) {
1015 struct eth_rx_bd *rx_bd;
1016
1017 rx_bd = &fp->rx_desc_ring[RX_DESC_CNT * i - 2];
1018 rx_bd->addr_hi =
1019 cpu_to_le32(U64_HI(fp->rx_desc_mapping +
1020 BCM_PAGE_SIZE*(i % NUM_RX_RINGS)));
1021 rx_bd->addr_lo =
1022 cpu_to_le32(U64_LO(fp->rx_desc_mapping +
1023 BCM_PAGE_SIZE*(i % NUM_RX_RINGS)));
1024 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001025}
1026
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001027/* Statistics ID are global per chip/path, while Client IDs for E1x are per
1028 * port.
1029 */
1030static inline u8 bnx2x_stats_id(struct bnx2x_fastpath *fp)
1031{
Yuval Mintzde5c3742012-03-12 11:22:07 +00001032 struct bnx2x *bp = fp->bp;
1033 if (!CHIP_IS_E1x(bp)) {
Yuval Mintzde5c3742012-03-12 11:22:07 +00001034 /* there are special statistics counters for FCoE 136..140 */
1035 if (IS_FCOE_FP(fp))
1036 return bp->cnic_base_cl_id + (bp->pf_num >> 1);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001037 return fp->cl_id;
Yuval Mintzde5c3742012-03-12 11:22:07 +00001038 }
1039 return fp->cl_id + BP_PORT(bp) * FP_SB_MAX_E1x;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001040}
1041
1042static inline void bnx2x_init_vlan_mac_fp_objs(struct bnx2x_fastpath *fp,
1043 bnx2x_obj_type obj_type)
1044{
1045 struct bnx2x *bp = fp->bp;
1046
1047 /* Configure classification DBs */
Barak Witkowski15192a82012-06-19 07:48:28 +00001048 bnx2x_init_mac_obj(bp, &bnx2x_sp_obj(bp, fp).mac_obj, fp->cl_id,
1049 fp->cid, BP_FUNC(bp), bnx2x_sp(bp, mac_rdata),
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001050 bnx2x_sp_mapping(bp, mac_rdata),
1051 BNX2X_FILTER_MAC_PENDING,
1052 &bp->sp_state, obj_type,
1053 &bp->macs_pool);
1054}
1055
1056/**
1057 * bnx2x_get_path_func_num - get number of active functions
1058 *
1059 * @bp: driver handle
1060 *
1061 * Calculates the number of active (not hidden) functions on the
1062 * current path.
1063 */
1064static inline u8 bnx2x_get_path_func_num(struct bnx2x *bp)
1065{
1066 u8 func_num = 0, i;
1067
1068 /* 57710 has only one function per-port */
1069 if (CHIP_IS_E1(bp))
1070 return 1;
1071
1072 /* Calculate a number of functions enabled on the current
1073 * PATH/PORT.
1074 */
1075 if (CHIP_REV_IS_SLOW(bp)) {
1076 if (IS_MF(bp))
1077 func_num = 4;
1078 else
1079 func_num = 2;
1080 } else {
1081 for (i = 0; i < E1H_FUNC_MAX / 2; i++) {
1082 u32 func_config =
1083 MF_CFG_RD(bp,
1084 func_mf_config[BP_PORT(bp) + 2 * i].
1085 config);
1086 func_num +=
1087 ((func_config & FUNC_MF_CFG_FUNC_HIDE) ? 0 : 1);
1088 }
1089 }
1090
1091 WARN_ON(!func_num);
1092
1093 return func_num;
1094}
1095
1096static inline void bnx2x_init_bp_objs(struct bnx2x *bp)
1097{
1098 /* RX_MODE controlling object */
1099 bnx2x_init_rx_mode_obj(bp, &bp->rx_mode_obj);
1100
1101 /* multicast configuration controlling object */
1102 bnx2x_init_mcast_obj(bp, &bp->mcast_obj, bp->fp->cl_id, bp->fp->cid,
1103 BP_FUNC(bp), BP_FUNC(bp),
1104 bnx2x_sp(bp, mcast_rdata),
1105 bnx2x_sp_mapping(bp, mcast_rdata),
1106 BNX2X_FILTER_MCAST_PENDING, &bp->sp_state,
1107 BNX2X_OBJ_TYPE_RX);
1108
1109 /* Setup CAM credit pools */
1110 bnx2x_init_mac_credit_pool(bp, &bp->macs_pool, BP_FUNC(bp),
1111 bnx2x_get_path_func_num(bp));
1112
Ariel Eliorb56e9672013-01-01 05:22:32 +00001113 bnx2x_init_vlan_credit_pool(bp, &bp->vlans_pool, BP_ABS_FUNC(bp)>>1,
1114 bnx2x_get_path_func_num(bp));
1115
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001116 /* RSS configuration object */
1117 bnx2x_init_rss_config_obj(bp, &bp->rss_conf_obj, bp->fp->cl_id,
1118 bp->fp->cid, BP_FUNC(bp), BP_FUNC(bp),
1119 bnx2x_sp(bp, rss_rdata),
1120 bnx2x_sp_mapping(bp, rss_rdata),
1121 BNX2X_FILTER_RSS_CONF_PENDING, &bp->sp_state,
1122 BNX2X_OBJ_TYPE_RX);
1123}
1124
1125static inline u8 bnx2x_fp_qzone_id(struct bnx2x_fastpath *fp)
1126{
1127 if (CHIP_IS_E1x(fp->bp))
1128 return fp->cl_id + BP_PORT(fp->bp) * ETH_MAX_RX_CLIENTS_E1H;
1129 else
1130 return fp->cl_id;
1131}
1132
Ariel Elior64112802013-01-07 00:50:23 +00001133u32 bnx2x_rx_ustorm_prods_offset(struct bnx2x_fastpath *fp);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001134
Ariel Elior6383c0b2011-07-14 08:31:57 +00001135static inline void bnx2x_init_txdata(struct bnx2x *bp,
Merav Sicron65565882012-06-19 07:48:26 +00001136 struct bnx2x_fp_txdata *txdata, u32 cid,
1137 int txq_index, __le16 *tx_cons_sb,
1138 struct bnx2x_fastpath *fp)
Ariel Elior6383c0b2011-07-14 08:31:57 +00001139{
1140 txdata->cid = cid;
1141 txdata->txq_index = txq_index;
1142 txdata->tx_cons_sb = tx_cons_sb;
Merav Sicron65565882012-06-19 07:48:26 +00001143 txdata->parent_fp = fp;
Yuval Mintz7b5342d2012-09-11 04:34:14 +00001144 txdata->tx_ring_size = IS_FCOE_FP(fp) ? MAX_TX_AVAIL : bp->tx_ring_size;
Ariel Elior6383c0b2011-07-14 08:31:57 +00001145
Merav Sicron51c1a582012-03-18 10:33:38 +00001146 DP(NETIF_MSG_IFUP, "created tx data cid %d, txq %d\n",
Ariel Elior6383c0b2011-07-14 08:31:57 +00001147 txdata->cid, txdata->txq_index);
1148}
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001149
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001150static inline u8 bnx2x_cnic_eth_cl_id(struct bnx2x *bp, u8 cl_idx)
1151{
1152 return bp->cnic_base_cl_id + cl_idx +
David S. Miller1805b2f2011-10-24 18:18:09 -04001153 (bp->pf_num >> 1) * BNX2X_MAX_CNIC_ETH_CL_ID_IDX;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001154}
1155
1156static inline u8 bnx2x_cnic_fw_sb_id(struct bnx2x *bp)
1157{
1158
1159 /* the 'first' id is allocated for the cnic */
1160 return bp->base_fw_ndsb;
1161}
1162
1163static inline u8 bnx2x_cnic_igu_sb_id(struct bnx2x *bp)
1164{
1165 return bp->igu_base_sb;
1166}
1167
1168
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001169static inline void bnx2x_init_fcoe_fp(struct bnx2x *bp)
1170{
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001171 struct bnx2x_fastpath *fp = bnx2x_fcoe_fp(bp);
1172 unsigned long q_type = 0;
1173
Dmitry Kravkovf233caf2011-11-13 04:34:22 +00001174 bnx2x_fcoe(bp, rx_queue) = BNX2X_NUM_ETH_QUEUES(bp);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001175 bnx2x_fcoe(bp, cl_id) = bnx2x_cnic_eth_cl_id(bp,
1176 BNX2X_FCOE_ETH_CL_ID_IDX);
Merav Sicron37ae41a2012-06-19 07:48:27 +00001177 bnx2x_fcoe(bp, cid) = BNX2X_FCOE_ETH_CID(bp);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001178 bnx2x_fcoe(bp, fw_sb_id) = DEF_SB_ID;
1179 bnx2x_fcoe(bp, igu_sb_id) = bp->igu_dsb_id;
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001180 bnx2x_fcoe(bp, rx_cons_sb) = BNX2X_FCOE_L2_RX_INDEX;
Merav Sicron65565882012-06-19 07:48:26 +00001181 bnx2x_init_txdata(bp, bnx2x_fcoe(bp, txdata_ptr[0]),
1182 fp->cid, FCOE_TXQ_IDX(bp), BNX2X_FCOE_L2_TX_INDEX,
1183 fp);
Ariel Elior6383c0b2011-07-14 08:31:57 +00001184
Merav Sicron51c1a582012-03-18 10:33:38 +00001185 DP(NETIF_MSG_IFUP, "created fcoe tx data (fp index %d)\n", fp->index);
Ariel Elior6383c0b2011-07-14 08:31:57 +00001186
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001187 /* qZone id equals to FW (per path) client id */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001188 bnx2x_fcoe(bp, cl_qzone_id) = bnx2x_fp_qzone_id(fp);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001189 /* init shortcut */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001190 bnx2x_fcoe(bp, ustorm_rx_prods_offset) =
1191 bnx2x_rx_ustorm_prods_offset(fp);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001192
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001193 /* Configure Queue State object */
1194 __set_bit(BNX2X_Q_TYPE_HAS_RX, &q_type);
1195 __set_bit(BNX2X_Q_TYPE_HAS_TX, &q_type);
Ariel Elior6383c0b2011-07-14 08:31:57 +00001196
1197 /* No multi-CoS for FCoE L2 client */
1198 BUG_ON(fp->max_cos != 1);
1199
Barak Witkowski15192a82012-06-19 07:48:28 +00001200 bnx2x_init_queue_obj(bp, &bnx2x_sp_obj(bp, fp).q_obj, fp->cl_id,
1201 &fp->cid, 1, BP_FUNC(bp), bnx2x_sp(bp, q_rdata),
Ariel Elior6383c0b2011-07-14 08:31:57 +00001202 bnx2x_sp_mapping(bp, q_rdata), q_type);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001203
Merav Sicron51c1a582012-03-18 10:33:38 +00001204 DP(NETIF_MSG_IFUP,
1205 "queue[%d]: bnx2x_init_sb(%p,%p) cl_id %d fw_sb %d igu_sb %d\n",
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001206 fp->index, bp, fp->status_blk.e2_sb, fp->cl_id, fp->fw_sb_id,
1207 fp->igu_sb_id);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001208}
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001209
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001210static inline int bnx2x_clean_tx_queue(struct bnx2x *bp,
Ariel Elior6383c0b2011-07-14 08:31:57 +00001211 struct bnx2x_fp_txdata *txdata)
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001212{
1213 int cnt = 1000;
1214
Ariel Elior6383c0b2011-07-14 08:31:57 +00001215 while (bnx2x_has_tx_work_unload(txdata)) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001216 if (!cnt) {
Merav Sicron51c1a582012-03-18 10:33:38 +00001217 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 +00001218 txdata->txq_index, txdata->tx_pkt_prod,
1219 txdata->tx_pkt_cons);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001220#ifdef BNX2X_STOP_ON_ERROR
1221 bnx2x_panic();
1222 return -EBUSY;
1223#else
1224 break;
1225#endif
1226 }
1227 cnt--;
Yuval Mintz0926d492013-01-23 03:21:45 +00001228 usleep_range(1000, 2000);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001229 }
1230
1231 return 0;
1232}
1233
Yaniv Rosner1ac9e422011-05-31 21:26:11 +00001234int bnx2x_get_link_cfg_idx(struct bnx2x *bp);
1235
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001236static inline void __storm_memset_struct(struct bnx2x *bp,
1237 u32 addr, size_t size, u32 *data)
1238{
1239 int i;
1240 for (i = 0; i < size/4; i++)
1241 REG_WR(bp, addr + (i * 4), data[i]);
1242}
1243
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001244/**
1245 * bnx2x_wait_sp_comp - wait for the outstanding SP commands.
1246 *
1247 * @bp: driver handle
1248 * @mask: bits that need to be cleared
1249 */
1250static inline bool bnx2x_wait_sp_comp(struct bnx2x *bp, unsigned long mask)
1251{
1252 int tout = 5000; /* Wait for 5 secs tops */
1253
1254 while (tout--) {
1255 smp_mb();
1256 netif_addr_lock_bh(bp->dev);
1257 if (!(bp->sp_state & mask)) {
1258 netif_addr_unlock_bh(bp->dev);
1259 return true;
1260 }
1261 netif_addr_unlock_bh(bp->dev);
1262
Yuval Mintz0926d492013-01-23 03:21:45 +00001263 usleep_range(1000, 2000);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001264 }
1265
1266 smp_mb();
1267
1268 netif_addr_lock_bh(bp->dev);
1269 if (bp->sp_state & mask) {
Merav Sicron51c1a582012-03-18 10:33:38 +00001270 BNX2X_ERR("Filtering completion timed out. sp_state 0x%lx, mask 0x%lx\n",
1271 bp->sp_state, mask);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001272 netif_addr_unlock_bh(bp->dev);
1273 return false;
1274 }
1275 netif_addr_unlock_bh(bp->dev);
1276
1277 return true;
1278}
1279
1280/**
1281 * bnx2x_set_ctx_validation - set CDU context validation values
1282 *
1283 * @bp: driver handle
1284 * @cxt: context of the connection on the host memory
1285 * @cid: SW CID of the connection to be configured
1286 */
1287void bnx2x_set_ctx_validation(struct bnx2x *bp, struct eth_context *cxt,
1288 u32 cid);
1289
1290void bnx2x_update_coalesce_sb_index(struct bnx2x *bp, u8 fw_sb_id,
1291 u8 sb_index, u8 disable, u16 usec);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001292void bnx2x_acquire_phy_lock(struct bnx2x *bp);
1293void bnx2x_release_phy_lock(struct bnx2x *bp);
1294
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001295/**
Dmitry Kravkove8920672011-05-04 23:52:40 +00001296 * bnx2x_extract_max_cfg - extract MAX BW part from MF configuration.
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001297 *
Dmitry Kravkove8920672011-05-04 23:52:40 +00001298 * @bp: driver handle
1299 * @mf_cfg: MF configuration
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001300 *
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001301 */
1302static inline u16 bnx2x_extract_max_cfg(struct bnx2x *bp, u32 mf_cfg)
1303{
1304 u16 max_cfg = (mf_cfg & FUNC_MF_CFG_MAX_BW_MASK) >>
1305 FUNC_MF_CFG_MAX_BW_SHIFT;
1306 if (!max_cfg) {
Merav Sicron51c1a582012-03-18 10:33:38 +00001307 DP(NETIF_MSG_IFUP | BNX2X_MSG_ETHTOOL,
Michal Schmidt96b0acc2011-08-18 21:51:01 -07001308 "Max BW configured to 0 - using 100 instead\n");
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001309 max_cfg = 100;
1310 }
1311 return max_cfg;
1312}
1313
Dmitry Kravkov621b4d62012-02-20 09:59:08 +00001314/* checks if HW supports GRO for given MTU */
1315static inline bool bnx2x_mtu_allows_gro(int mtu)
1316{
1317 /* gro frags per page */
1318 int fpp = SGE_PAGE_SIZE / (mtu - ETH_MAX_TPA_HEADER_SIZE);
1319
1320 /*
1321 * 1. number of frags should not grow above MAX_SKB_FRAGS
1322 * 2. frag must fit the page
1323 */
1324 return mtu <= SGE_PAGE_SIZE && (U_ETH_SGL_SIZE * fpp) <= MAX_SKB_FRAGS;
1325}
Merav Sicron55c11942012-11-07 00:45:48 +00001326
Mintz Yuval1355b702012-02-15 02:10:22 +00001327/**
Dmitry Kravkovb306f5e2011-11-13 04:34:24 +00001328 * bnx2x_get_iscsi_info - update iSCSI params according to licensing info.
1329 *
1330 * @bp: driver handle
1331 *
1332 */
1333void bnx2x_get_iscsi_info(struct bnx2x *bp);
Dmitry Kravkov00253a82011-11-13 04:34:25 +00001334
1335/**
1336 * bnx2x_link_sync_notify - send notification to other functions.
1337 *
1338 * @bp: driver handle
1339 *
1340 */
1341static inline void bnx2x_link_sync_notify(struct bnx2x *bp)
1342{
1343 int func;
1344 int vn;
1345
1346 /* Set the attention towards other drivers on the same port */
1347 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++) {
1348 if (vn == BP_VN(bp))
1349 continue;
1350
1351 func = func_by_vn(bp, vn);
1352 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_0 +
1353 (LINK_SYNC_ATTENTION_BIT_FUNC_0 + func)*4, 1);
1354 }
1355}
1356
1357/**
1358 * bnx2x_update_drv_flags - update flags in shmem
1359 *
1360 * @bp: driver handle
1361 * @flags: flags to update
1362 * @set: set or clear
1363 *
1364 */
1365static inline void bnx2x_update_drv_flags(struct bnx2x *bp, u32 flags, u32 set)
1366{
1367 if (SHMEM2_HAS(bp, drv_flags)) {
1368 u32 drv_flags;
Ariel Eliorf16da432012-01-26 06:01:50 +00001369 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_DRV_FLAGS);
Dmitry Kravkov00253a82011-11-13 04:34:25 +00001370 drv_flags = SHMEM2_RD(bp, drv_flags);
1371
1372 if (set)
1373 SET_FLAGS(drv_flags, flags);
1374 else
1375 RESET_FLAGS(drv_flags, flags);
1376
1377 SHMEM2_WR(bp, drv_flags, drv_flags);
Merav Sicron51c1a582012-03-18 10:33:38 +00001378 DP(NETIF_MSG_IFUP, "drv_flags 0x%08x\n", drv_flags);
Ariel Eliorf16da432012-01-26 06:01:50 +00001379 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_DRV_FLAGS);
Dmitry Kravkov00253a82011-11-13 04:34:25 +00001380 }
1381}
1382
Dmitry Kravkov614c76d2011-11-28 12:31:49 +00001383static inline bool bnx2x_is_valid_ether_addr(struct bnx2x *bp, u8 *addr)
1384{
Merav Sicron55c11942012-11-07 00:45:48 +00001385 if (is_valid_ether_addr(addr) ||
1386 (is_zero_ether_addr(addr) &&
1387 (IS_MF_STORAGE_SD(bp) || IS_MF_FCOE_AFEX(bp))))
Dmitry Kravkov614c76d2011-11-28 12:31:49 +00001388 return true;
Merav Sicron55c11942012-11-07 00:45:48 +00001389
Dmitry Kravkov614c76d2011-11-28 12:31:49 +00001390 return false;
1391}
1392
Ariel Elior8ca5e172013-01-01 05:22:34 +00001393/**
Yuval Mintz2de67432013-01-23 03:21:43 +00001394 * bnx2x_fill_fw_str - Fill buffer with FW version string
Ariel Elior8ca5e172013-01-01 05:22:34 +00001395 *
1396 * @bp: driver handle
1397 * @buf: character buffer to fill with the fw name
1398 * @buf_len: length of the above buffer
1399 *
1400 */
1401void bnx2x_fill_fw_str(struct bnx2x *bp, char *buf, size_t buf_len);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001402#endif /* BNX2X_CMN_H */