blob: 6b0add22641d4ed22842ea3a114d29430783d82e [file] [log] [blame]
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001/* bnx2x_cmn.h: Broadcom Everest network driver.
2 *
Ariel Elior85b26ea2012-01-26 06:01:54 +00003 * Copyright (c) 2007-2012 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"
27
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
52#define BNX2X_PCI_ALLOC(x, y, size) \
53 do { \
54 x = dma_alloc_coherent(&bp->pdev->dev, size, y, GFP_KERNEL); \
55 if (x == NULL) \
56 goto alloc_mem_err; \
57 memset((void *)x, 0, size); \
58 } while (0)
59
60#define BNX2X_ALLOC(x, size) \
61 do { \
62 x = kzalloc(size, GFP_KERNEL); \
63 if (x == NULL) \
64 goto alloc_mem_err; \
65 } while (0)
66
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000067/*********************** Interfaces ****************************
68 * Functions that need to be implemented by each driver version
69 */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030070/* Init */
71
72/**
73 * bnx2x_send_unload_req - request unload mode from the MCP.
74 *
75 * @bp: driver handle
76 * @unload_mode: requested function's unload mode
77 *
78 * Return unload mode returned by the MCP: COMMON, PORT or FUNC.
79 */
80u32 bnx2x_send_unload_req(struct bnx2x *bp, int unload_mode);
81
82/**
83 * bnx2x_send_unload_done - send UNLOAD_DONE command to the MCP.
84 *
85 * @bp: driver handle
Yuval Mintz5d07d862012-09-13 02:56:21 +000086 * @keep_link: true iff link should be kept up
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030087 */
Yuval Mintz5d07d862012-09-13 02:56:21 +000088void bnx2x_send_unload_done(struct bnx2x *bp, bool keep_link);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030089
90/**
Dmitry Kravkov96305232012-04-03 18:41:30 +000091 * bnx2x_config_rss_pf - configure RSS parameters in a PF.
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030092 *
93 * @bp: driver handle
Ben Hutchings49ce9c22012-07-10 10:56:00 +000094 * @rss_obj: RSS object to use
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030095 * @ind_table: indirection table to configure
96 * @config_hash: re-configure RSS hash keys configuration
97 */
Dmitry Kravkov96305232012-04-03 18:41:30 +000098int bnx2x_config_rss_pf(struct bnx2x *bp, struct bnx2x_rss_config_obj *rss_obj,
Merav Sicron5d317c6a2012-06-19 07:48:24 +000099 bool config_hash);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300100
101/**
102 * bnx2x__init_func_obj - init function object
103 *
104 * @bp: driver handle
105 *
106 * Initializes the Function Object with the appropriate
107 * parameters which include a function slow path driver
108 * interface.
109 */
110void bnx2x__init_func_obj(struct bnx2x *bp);
111
112/**
113 * bnx2x_setup_queue - setup eth queue.
114 *
115 * @bp: driver handle
116 * @fp: pointer to the fastpath structure
117 * @leading: boolean
118 *
119 */
120int bnx2x_setup_queue(struct bnx2x *bp, struct bnx2x_fastpath *fp,
121 bool leading);
122
123/**
124 * bnx2x_setup_leading - bring up a leading eth queue.
125 *
126 * @bp: driver handle
127 */
128int bnx2x_setup_leading(struct bnx2x *bp);
129
130/**
131 * bnx2x_fw_command - send the MCP a request
132 *
133 * @bp: driver handle
134 * @command: request
135 * @param: request's parameter
136 *
137 * block until there is a reply
138 */
139u32 bnx2x_fw_command(struct bnx2x *bp, u32 command, u32 param);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000140
141/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000142 * bnx2x_initial_phy_init - initialize link parameters structure variables.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000143 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000144 * @bp: driver handle
145 * @load_mode: current mode
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000146 */
Yuval Mintzcd1dfce2012-12-02 04:05:56 +0000147int bnx2x_initial_phy_init(struct bnx2x *bp, int load_mode);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000148
149/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000150 * bnx2x_link_set - configure hw according to link parameters structure.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000151 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000152 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000153 */
154void bnx2x_link_set(struct bnx2x *bp);
155
156/**
Yuval Mintz5d07d862012-09-13 02:56:21 +0000157 * bnx2x_force_link_reset - Forces link reset, and put the PHY
158 * in reset as well.
159 *
160 * @bp: driver handle
161 */
162void bnx2x_force_link_reset(struct bnx2x *bp);
163
164/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000165 * bnx2x_link_test - query link status.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000166 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000167 * @bp: driver handle
168 * @is_serdes: bool
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000169 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000170 * Returns 0 if link is UP.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000171 */
Yaniv Rosnera22f0782010-09-07 11:41:20 +0000172u8 bnx2x_link_test(struct bnx2x *bp, u8 is_serdes);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000173
174/**
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300175 * bnx2x_drv_pulse - write driver pulse to shmem
176 *
177 * @bp: driver handle
178 *
179 * writes the value in bp->fw_drv_pulse_wr_seq to drv_pulse mbox
180 * in the shmem.
181 */
182void bnx2x_drv_pulse(struct bnx2x *bp);
183
184/**
185 * bnx2x_igu_ack_sb - update IGU with current SB value
186 *
187 * @bp: driver handle
188 * @igu_sb_id: SB id
189 * @segment: SB segment
190 * @index: SB index
191 * @op: SB operation
192 * @update: is HW update required
193 */
194void bnx2x_igu_ack_sb(struct bnx2x *bp, u8 igu_sb_id, u8 segment,
195 u16 index, u8 op, u8 update);
196
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +0000197/* Disable transactions from chip to host */
198void bnx2x_pf_disable(struct bnx2x *bp);
199
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300200/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000201 * bnx2x__link_status_update - handles link status change.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000202 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000203 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000204 */
205void bnx2x__link_status_update(struct bnx2x *bp);
206
207/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000208 * bnx2x_link_report - report link status to upper layer.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000209 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000210 * @bp: driver handle
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000211 */
212void bnx2x_link_report(struct bnx2x *bp);
213
Vladislav Zolotarov2ae17f62011-05-04 23:48:23 +0000214/* None-atomic version of bnx2x_link_report() */
215void __bnx2x_link_report(struct bnx2x *bp);
216
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000217/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000218 * bnx2x_get_mf_speed - calculate MF speed.
Dmitry Kravkov0793f83f2010-12-01 12:39:28 -0800219 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000220 * @bp: driver handle
Dmitry Kravkov0793f83f2010-12-01 12:39:28 -0800221 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000222 * Takes into account current linespeed and MF configuration.
Dmitry Kravkov0793f83f2010-12-01 12:39:28 -0800223 */
224u16 bnx2x_get_mf_speed(struct bnx2x *bp);
225
226/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000227 * bnx2x_msix_sp_int - MSI-X slowpath interrupt handler
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000228 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000229 * @irq: irq number
230 * @dev_instance: private instance
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000231 */
232irqreturn_t bnx2x_msix_sp_int(int irq, void *dev_instance);
233
234/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000235 * bnx2x_interrupt - non MSI-X interrupt handler
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000236 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000237 * @irq: irq number
238 * @dev_instance: private instance
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000239 */
240irqreturn_t bnx2x_interrupt(int irq, void *dev_instance);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000241
242/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000243 * bnx2x_cnic_notify - send command to cnic driver
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000244 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000245 * @bp: driver handle
246 * @cmd: command
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000247 */
248int bnx2x_cnic_notify(struct bnx2x *bp, int cmd);
249
250/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000251 * bnx2x_setup_cnic_irq_info - provides cnic with IRQ information
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000252 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000253 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000254 */
255void bnx2x_setup_cnic_irq_info(struct bnx2x *bp);
Merav Sicron37ae41a2012-06-19 07:48:27 +0000256
257/**
258 * bnx2x_setup_cnic_info - provides cnic with updated info
259 *
260 * @bp: driver handle
261 */
262void bnx2x_setup_cnic_info(struct bnx2x *bp);
263
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000264/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000265 * bnx2x_int_enable - enable HW interrupts.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000266 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000267 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000268 */
269void bnx2x_int_enable(struct bnx2x *bp);
270
271/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000272 * bnx2x_int_disable_sync - disable interrupts.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000273 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000274 * @bp: driver handle
275 * @disable_hw: true, disable HW interrupts.
276 *
277 * This function ensures that there are no
278 * ISRs or SP DPCs (sp_task) are running after it returns.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000279 */
280void bnx2x_int_disable_sync(struct bnx2x *bp, int disable_hw);
281
282/**
Merav Sicron55c11942012-11-07 00:45:48 +0000283 * bnx2x_nic_init_cnic - init driver internals for cnic.
Dmitry Kravkove8920672011-05-04 23:52:40 +0000284 *
285 * @bp: driver handle
286 * @load_code: COMMON, PORT or FUNCTION
287 *
288 * Initializes:
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000289 * - rings
290 * - status blocks
291 * - etc.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000292 */
Merav Sicron55c11942012-11-07 00:45:48 +0000293void bnx2x_nic_init_cnic(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000294
295/**
Merav Sicron55c11942012-11-07 00:45:48 +0000296 * bnx2x_nic_init - init driver internals.
297 *
298 * @bp: driver handle
299 *
300 * Initializes:
301 * - rings
302 * - status blocks
303 * - etc.
304 */
305void bnx2x_nic_init(struct bnx2x *bp, u32 load_code);
306/**
307 * bnx2x_alloc_mem_cnic - allocate driver's memory for cnic.
308 *
309 * @bp: driver handle
310 */
311int bnx2x_alloc_mem_cnic(struct bnx2x *bp);
312/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000313 * bnx2x_alloc_mem - allocate driver's memory.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000314 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000315 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000316 */
317int bnx2x_alloc_mem(struct bnx2x *bp);
318
319/**
Merav Sicron55c11942012-11-07 00:45:48 +0000320 * bnx2x_free_mem_cnic - release driver's memory for cnic.
321 *
322 * @bp: driver handle
323 */
324void bnx2x_free_mem_cnic(struct bnx2x *bp);
325/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000326 * bnx2x_free_mem - release driver's memory.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000327 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000328 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000329 */
330void bnx2x_free_mem(struct bnx2x *bp);
331
332/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000333 * bnx2x_set_num_queues - set number of queues according to mode.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000334 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000335 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000336 */
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000337void bnx2x_set_num_queues(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000338
339/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000340 * bnx2x_chip_cleanup - cleanup chip internals.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000341 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000342 * @bp: driver handle
343 * @unload_mode: COMMON, PORT, FUNCTION
Yuval Mintz5d07d862012-09-13 02:56:21 +0000344 * @keep_link: true iff link should be kept up.
Dmitry Kravkove8920672011-05-04 23:52:40 +0000345 *
346 * - Cleanup MAC configuration.
347 * - Closes clients.
348 * - etc.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000349 */
Yuval Mintz5d07d862012-09-13 02:56:21 +0000350void bnx2x_chip_cleanup(struct bnx2x *bp, int unload_mode, bool keep_link);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000351
352/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000353 * bnx2x_acquire_hw_lock - acquire HW lock.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000354 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000355 * @bp: driver handle
356 * @resource: resource bit which was locked
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000357 */
358int bnx2x_acquire_hw_lock(struct bnx2x *bp, u32 resource);
359
360/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000361 * bnx2x_release_hw_lock - release HW lock.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000362 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000363 * @bp: driver handle
364 * @resource: resource bit which was locked
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000365 */
366int bnx2x_release_hw_lock(struct bnx2x *bp, u32 resource);
367
368/**
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +0000369 * bnx2x_release_leader_lock - release recovery leader lock
370 *
371 * @bp: driver handle
372 */
373int bnx2x_release_leader_lock(struct bnx2x *bp);
374
375/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000376 * bnx2x_set_eth_mac - configure eth MAC address in the HW
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000377 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000378 * @bp: driver handle
379 * @set: set or clear
380 *
381 * Configures according to the value in netdev->dev_addr.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000382 */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300383int bnx2x_set_eth_mac(struct bnx2x *bp, bool set);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +0000384
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000385/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000386 * bnx2x_set_rx_mode - set MAC filtering configurations.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000387 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000388 * @dev: netdevice
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000389 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000390 * called with netif_tx_lock from dev_mcast.c
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300391 * If bp->state is OPEN, should be called with
392 * netif_addr_lock_bh()
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000393 */
394void bnx2x_set_rx_mode(struct net_device *dev);
395
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300396/**
397 * bnx2x_set_storm_rx_mode - configure MAC filtering rules in a FW.
398 *
399 * @bp: driver handle
400 *
401 * If bp->state is OPEN, should be called with
402 * netif_addr_lock_bh().
403 */
404void bnx2x_set_storm_rx_mode(struct bnx2x *bp);
405
406/**
407 * bnx2x_set_q_rx_mode - configures rx_mode for a single queue.
408 *
409 * @bp: driver handle
410 * @cl_id: client id
411 * @rx_mode_flags: rx mode configuration
412 * @rx_accept_flags: rx accept configuration
413 * @tx_accept_flags: tx accept configuration (tx switch)
414 * @ramrod_flags: ramrod configuration
415 */
416void bnx2x_set_q_rx_mode(struct bnx2x *bp, u8 cl_id,
417 unsigned long rx_mode_flags,
418 unsigned long rx_accept_flags,
419 unsigned long tx_accept_flags,
420 unsigned long ramrod_flags);
421
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000422/* Parity errors related */
Ariel Elior889b9af2012-01-26 06:01:51 +0000423void bnx2x_set_pf_load(struct bnx2x *bp);
424bool bnx2x_clear_pf_load(struct bnx2x *bp);
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +0000425bool bnx2x_chk_parity_attn(struct bnx2x *bp, bool *global, bool print);
426bool bnx2x_reset_is_done(struct bnx2x *bp, int engine);
427void bnx2x_set_reset_in_progress(struct bnx2x *bp);
428void bnx2x_set_reset_global(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000429void bnx2x_disable_close_the_gate(struct bnx2x *bp);
Merav Sicron55c11942012-11-07 00:45:48 +0000430int bnx2x_init_hw_func_cnic(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000431
432/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000433 * bnx2x_sp_event - handle ramrods completion.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000434 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000435 * @fp: fastpath handle for the event
436 * @rr_cqe: eth_rx_cqe
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000437 */
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000438void bnx2x_sp_event(struct bnx2x_fastpath *fp, union eth_rx_cqe *rr_cqe);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000439
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000440/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000441 * bnx2x_ilt_set_info - prepare ILT configurations.
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000442 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000443 * @bp: driver handle
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000444 */
445void bnx2x_ilt_set_info(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000446
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000447/**
Merav Sicron55c11942012-11-07 00:45:48 +0000448 * bnx2x_ilt_set_cnic_info - prepare ILT configurations for SRC
449 * and TM.
450 *
451 * @bp: driver handle
452 */
453void bnx2x_ilt_set_info_cnic(struct bnx2x *bp);
454
455/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000456 * bnx2x_dcbx_init - initialize dcbx protocol.
Vladislav Zolotarove4901dd2010-12-13 05:44:18 +0000457 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000458 * @bp: driver handle
Vladislav Zolotarove4901dd2010-12-13 05:44:18 +0000459 */
Barak Witkowski98768792012-06-19 07:48:31 +0000460void bnx2x_dcbx_init(struct bnx2x *bp, bool update_shmem);
Vladislav Zolotarove4901dd2010-12-13 05:44:18 +0000461
462/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000463 * bnx2x_set_power_state - set power state to the requested value.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000464 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000465 * @bp: driver handle
466 * @state: required state D0 or D3hot
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000467 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000468 * Currently only D0 and D3hot are supported.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000469 */
470int bnx2x_set_power_state(struct bnx2x *bp, pci_power_t state);
471
Dmitry Kravkove3835b92011-03-06 10:50:44 +0000472/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000473 * bnx2x_update_max_mf_config - update MAX part of MF configuration in HW.
Dmitry Kravkove3835b92011-03-06 10:50:44 +0000474 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000475 * @bp: driver handle
476 * @value: new value
Dmitry Kravkove3835b92011-03-06 10:50:44 +0000477 */
478void bnx2x_update_max_mf_config(struct bnx2x *bp, u32 value);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300479/* Error handling */
480void bnx2x_panic_dump(struct bnx2x *bp);
Dmitry Kravkove3835b92011-03-06 10:50:44 +0000481
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
Vladislav Zolotarov8307fa32010-12-13 05:44:09 +0000499/* select_queue callback */
500u16 bnx2x_select_queue(struct net_device *dev, struct sk_buff *skb);
501
Ariel Eliordc1ba592013-01-01 05:22:30 +0000502static inline void bnx2x_update_rx_prod(struct bnx2x *bp,
503 struct bnx2x_fastpath *fp,
504 u16 bd_prod, u16 rx_comp_prod,
505 u16 rx_sge_prod)
506{
507 struct ustorm_eth_rx_producers rx_prods = {0};
508 u32 i;
509
510 /* Update producers */
511 rx_prods.bd_prod = bd_prod;
512 rx_prods.cqe_prod = rx_comp_prod;
513 rx_prods.sge_prod = rx_sge_prod;
514
515 /* Make sure that the BD and SGE data is updated before updating the
516 * producers since FW might read the BD/SGE right after the producer
517 * is updated.
518 * This is only applicable for weak-ordered memory model archs such
519 * as IA-64. The following barrier is also mandatory since FW will
520 * assumes BDs must have buffers.
521 */
522 wmb();
523
524 for (i = 0; i < sizeof(rx_prods)/4; i++)
525 REG_WR(bp, fp->ustorm_rx_prods_offset + i*4,
526 ((u32 *)&rx_prods)[i]);
527
528 mmiowb(); /* keep prod updates ordered */
529
530 DP(NETIF_MSG_RX_STATUS,
531 "queue[%d]: wrote bd_prod %u cqe_prod %u sge_prod %u\n",
532 fp->index, bd_prod, rx_comp_prod, rx_sge_prod);
533}
534
Dmitry Kravkova9fccec2011-06-14 01:33:30 +0000535/* reload helper */
536int bnx2x_reload_if_running(struct net_device *dev);
537
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000538int bnx2x_change_mac_addr(struct net_device *dev, void *p);
539
540/* NAPI poll Rx part */
541int bnx2x_rx_int(struct bnx2x_fastpath *fp, int budget);
542
543/* NAPI poll Tx part */
Ariel Elior6383c0b2011-07-14 08:31:57 +0000544int bnx2x_tx_int(struct bnx2x *bp, struct bnx2x_fp_txdata *txdata);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000545
546/* suspend/resume callbacks */
547int bnx2x_suspend(struct pci_dev *pdev, pm_message_t state);
548int bnx2x_resume(struct pci_dev *pdev);
549
550/* Release IRQ vectors */
551void bnx2x_free_irq(struct bnx2x *bp);
552
Merav Sicron55c11942012-11-07 00:45:48 +0000553void bnx2x_free_fp_mem_cnic(struct bnx2x *bp);
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +0000554void bnx2x_free_fp_mem(struct bnx2x *bp);
Merav Sicron55c11942012-11-07 00:45:48 +0000555int bnx2x_alloc_fp_mem_cnic(struct bnx2x *bp);
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +0000556int bnx2x_alloc_fp_mem(struct bnx2x *bp);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000557void bnx2x_init_rx_rings(struct bnx2x *bp);
Merav Sicron55c11942012-11-07 00:45:48 +0000558void bnx2x_init_rx_rings_cnic(struct bnx2x *bp);
559void bnx2x_free_skbs_cnic(struct bnx2x *bp);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000560void bnx2x_free_skbs(struct bnx2x *bp);
561void bnx2x_netif_stop(struct bnx2x *bp, int disable_hw);
562void bnx2x_netif_start(struct bnx2x *bp);
Merav Sicron55c11942012-11-07 00:45:48 +0000563int bnx2x_load_cnic(struct bnx2x *bp);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000564
565/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000566 * bnx2x_enable_msix - set msix configuration.
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000567 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000568 * @bp: driver handle
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000569 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000570 * fills msix_table, requests vectors, updates num_queues
571 * according to number of available vectors.
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000572 */
Merav Sicron0e8d2ec2012-06-19 07:48:30 +0000573int bnx2x_enable_msix(struct bnx2x *bp);
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000574
575/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000576 * bnx2x_enable_msi - request msi mode from OS, updated internals accordingly
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000577 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000578 * @bp: driver handle
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000579 */
580int bnx2x_enable_msi(struct bnx2x *bp);
581
582/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000583 * bnx2x_poll - NAPI callback
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000584 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000585 * @napi: napi structure
586 * @budget:
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000587 *
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000588 */
589int bnx2x_poll(struct napi_struct *napi, int budget);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000590
591/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000592 * bnx2x_alloc_mem_bp - allocate memories outsize main driver structure
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000593 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000594 * @bp: driver handle
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000595 */
Bill Pemberton0329aba2012-12-03 09:24:24 -0500596int bnx2x_alloc_mem_bp(struct bnx2x *bp);
Dmitry Kravkove8920672011-05-04 23:52:40 +0000597
598/**
599 * bnx2x_free_mem_bp - release memories outsize main driver structure
600 *
601 * @bp: driver handle
602 */
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000603void bnx2x_free_mem_bp(struct bnx2x *bp);
604
605/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000606 * bnx2x_change_mtu - change mtu netdev callback
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000607 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000608 * @dev: net device
609 * @new_mtu: requested mtu
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000610 *
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000611 */
612int bnx2x_change_mtu(struct net_device *dev, int new_mtu);
613
Merav Sicron55c11942012-11-07 00:45:48 +0000614#ifdef NETDEV_FCOE_WWNN
Vladislav Zolotarovbf61ee12011-07-21 07:56:51 +0000615/**
616 * bnx2x_fcoe_get_wwn - return the requested WWN value for this port
617 *
618 * @dev: net_device
619 * @wwn: output buffer
620 * @type: WWN type: NETDEV_FCOE_WWNN (node) or NETDEV_FCOE_WWPN (port)
621 *
622 */
623int bnx2x_fcoe_get_wwn(struct net_device *dev, u64 *wwn, int type);
624#endif
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000625
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000626netdev_features_t bnx2x_fix_features(struct net_device *dev,
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000627 netdev_features_t features);
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000628int bnx2x_set_features(struct net_device *dev, netdev_features_t features);
Michał Mirosław66371c42011-04-12 09:38:23 +0000629
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000630/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000631 * bnx2x_tx_timeout - tx timeout netdev callback
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000632 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000633 * @dev: net device
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000634 */
635void bnx2x_tx_timeout(struct net_device *dev);
636
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300637/*********************** Inlines **********************************/
638/*********************** Fast path ********************************/
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000639static inline void bnx2x_update_fpsb_idx(struct bnx2x_fastpath *fp)
640{
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000641 barrier(); /* status block is written to by the chip */
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000642 fp->fp_hc_idx = fp->sb_running_index[SM_RX_ID];
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000643}
644
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000645static inline void bnx2x_igu_ack_sb_gen(struct bnx2x *bp, u8 igu_sb_id,
646 u8 segment, u16 index, u8 op,
647 u8 update, u32 igu_addr)
648{
649 struct igu_regular cmd_data = {0};
650
651 cmd_data.sb_id_and_flags =
652 ((index << IGU_REGULAR_SB_INDEX_SHIFT) |
653 (segment << IGU_REGULAR_SEGMENT_ACCESS_SHIFT) |
654 (update << IGU_REGULAR_BUPDATE_SHIFT) |
655 (op << IGU_REGULAR_ENABLE_INT_SHIFT));
656
Merav Sicron51c1a582012-03-18 10:33:38 +0000657 DP(NETIF_MSG_INTR, "write 0x%08x to IGU addr 0x%x\n",
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000658 cmd_data.sb_id_and_flags, igu_addr);
659 REG_WR(bp, igu_addr, cmd_data.sb_id_and_flags);
660
661 /* Make sure that ACK is written */
662 mmiowb();
663 barrier();
664}
665
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000666static inline void bnx2x_hc_ack_sb(struct bnx2x *bp, u8 sb_id,
667 u8 storm, u16 index, u8 op, u8 update)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000668{
669 u32 hc_addr = (HC_REG_COMMAND_REG + BP_PORT(bp)*32 +
670 COMMAND_REG_INT_ACK);
671 struct igu_ack_register igu_ack;
672
673 igu_ack.status_block_index = index;
674 igu_ack.sb_id_and_flags =
675 ((sb_id << IGU_ACK_REGISTER_STATUS_BLOCK_ID_SHIFT) |
676 (storm << IGU_ACK_REGISTER_STORM_ID_SHIFT) |
677 (update << IGU_ACK_REGISTER_UPDATE_INDEX_SHIFT) |
678 (op << IGU_ACK_REGISTER_INTERRUPT_MODE_SHIFT));
679
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000680 REG_WR(bp, hc_addr, (*(u32 *)&igu_ack));
681
682 /* Make sure that ACK is written */
683 mmiowb();
684 barrier();
685}
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000686
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000687static inline void bnx2x_ack_sb(struct bnx2x *bp, u8 igu_sb_id, u8 storm,
688 u16 index, u8 op, u8 update)
689{
690 if (bp->common.int_block == INT_BLOCK_HC)
691 bnx2x_hc_ack_sb(bp, igu_sb_id, storm, index, op, update);
692 else {
693 u8 segment;
694
695 if (CHIP_INT_MODE_IS_BC(bp))
696 segment = storm;
697 else if (igu_sb_id != bp->igu_dsb_id)
698 segment = IGU_SEG_ACCESS_DEF;
699 else if (storm == ATTENTION_ID)
700 segment = IGU_SEG_ACCESS_ATTN;
701 else
702 segment = IGU_SEG_ACCESS_DEF;
703 bnx2x_igu_ack_sb(bp, igu_sb_id, segment, index, op, update);
704 }
705}
706
707static inline u16 bnx2x_hc_ack_int(struct bnx2x *bp)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000708{
709 u32 hc_addr = (HC_REG_COMMAND_REG + BP_PORT(bp)*32 +
710 COMMAND_REG_SIMD_MASK);
711 u32 result = REG_RD(bp, hc_addr);
712
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000713 barrier();
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000714 return result;
715}
716
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000717static inline u16 bnx2x_igu_ack_int(struct bnx2x *bp)
718{
719 u32 igu_addr = (BAR_IGU_INTMEM + IGU_REG_SISR_MDPC_WMASK_LSB_UPPER*8);
720 u32 result = REG_RD(bp, igu_addr);
721
Merav Sicron51c1a582012-03-18 10:33:38 +0000722 DP(NETIF_MSG_INTR, "read 0x%08x from IGU addr 0x%x\n",
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000723 result, igu_addr);
724
725 barrier();
726 return result;
727}
728
729static inline u16 bnx2x_ack_int(struct bnx2x *bp)
730{
731 barrier();
732 if (bp->common.int_block == INT_BLOCK_HC)
733 return bnx2x_hc_ack_int(bp);
734 else
735 return bnx2x_igu_ack_int(bp);
736}
737
Ariel Elior6383c0b2011-07-14 08:31:57 +0000738static inline int bnx2x_has_tx_work_unload(struct bnx2x_fp_txdata *txdata)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000739{
740 /* Tell compiler that consumer and producer can change */
741 barrier();
Ariel Elior6383c0b2011-07-14 08:31:57 +0000742 return txdata->tx_pkt_prod != txdata->tx_pkt_cons;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000743}
744
Ariel Elior6383c0b2011-07-14 08:31:57 +0000745static inline u16 bnx2x_tx_avail(struct bnx2x *bp,
746 struct bnx2x_fp_txdata *txdata)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000747{
748 s16 used;
749 u16 prod;
750 u16 cons;
751
Ariel Elior6383c0b2011-07-14 08:31:57 +0000752 prod = txdata->tx_bd_prod;
753 cons = txdata->tx_bd_cons;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000754
Yuval Mintz7b5342d2012-09-11 04:34:14 +0000755 used = SUB_S16(prod, cons);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000756
757#ifdef BNX2X_STOP_ON_ERROR
758 WARN_ON(used < 0);
Yuval Mintz7b5342d2012-09-11 04:34:14 +0000759 WARN_ON(used > txdata->tx_ring_size);
760 WARN_ON((txdata->tx_ring_size - used) > MAX_TX_AVAIL);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000761#endif
762
Yuval Mintz7b5342d2012-09-11 04:34:14 +0000763 return (s16)(txdata->tx_ring_size) - used;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000764}
765
Ariel Elior6383c0b2011-07-14 08:31:57 +0000766static inline int bnx2x_tx_queue_has_work(struct bnx2x_fp_txdata *txdata)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000767{
768 u16 hw_cons;
769
770 /* Tell compiler that status block fields can change */
771 barrier();
Ariel Elior6383c0b2011-07-14 08:31:57 +0000772 hw_cons = le16_to_cpu(*txdata->tx_cons_sb);
773 return hw_cons != txdata->tx_pkt_cons;
774}
775
776static inline bool bnx2x_has_tx_work(struct bnx2x_fastpath *fp)
777{
778 u8 cos;
779 for_each_cos_in_tx_queue(fp, cos)
Merav Sicron65565882012-06-19 07:48:26 +0000780 if (bnx2x_tx_queue_has_work(fp->txdata_ptr[cos]))
Ariel Elior6383c0b2011-07-14 08:31:57 +0000781 return true;
782 return false;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000783}
784
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000785static inline int bnx2x_has_rx_work(struct bnx2x_fastpath *fp)
786{
787 u16 rx_cons_sb;
788
789 /* Tell compiler that status block fields can change */
790 barrier();
791 rx_cons_sb = le16_to_cpu(*fp->rx_cons_sb);
792 if ((rx_cons_sb & MAX_RCQ_DESC_CNT) == MAX_RCQ_DESC_CNT)
793 rx_cons_sb++;
794 return (fp->rx_comp_cons != rx_cons_sb);
795}
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000796
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000797/**
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300798 * bnx2x_tx_disable - disables tx from stack point of view
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000799 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000800 * @bp: driver handle
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000801 */
802static inline void bnx2x_tx_disable(struct bnx2x *bp)
803{
804 netif_tx_disable(bp->dev);
805 netif_carrier_off(bp->dev);
806}
807
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000808static inline void bnx2x_free_rx_sge(struct bnx2x *bp,
809 struct bnx2x_fastpath *fp, u16 index)
810{
811 struct sw_rx_page *sw_buf = &fp->rx_page_ring[index];
812 struct page *page = sw_buf->page;
813 struct eth_rx_sge *sge = &fp->rx_sge_ring[index];
814
815 /* Skip "next page" elements */
816 if (!page)
817 return;
818
819 dma_unmap_page(&bp->pdev->dev, dma_unmap_addr(sw_buf, mapping),
Dmitry Kravkov4bca60f2010-10-06 03:30:27 +0000820 SGE_PAGE_SIZE*PAGES_PER_SGE, DMA_FROM_DEVICE);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000821 __free_pages(page, PAGES_PER_SGE_SHIFT);
822
823 sw_buf->page = NULL;
824 sge->addr_hi = 0;
825 sge->addr_lo = 0;
826}
827
Merav Sicron55c11942012-11-07 00:45:48 +0000828static inline void bnx2x_add_all_napi_cnic(struct bnx2x *bp)
829{
830 int i;
831
832 /* Add NAPI objects */
833 for_each_rx_queue_cnic(bp, i)
834 netif_napi_add(bp->dev, &bnx2x_fp(bp, i, napi),
835 bnx2x_poll, BNX2X_NAPI_WEIGHT);
836}
837
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000838static inline void bnx2x_add_all_napi(struct bnx2x *bp)
839{
840 int i;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000841
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000842 /* Add NAPI objects */
Merav Sicron55c11942012-11-07 00:45:48 +0000843 for_each_eth_queue(bp, i)
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000844 netif_napi_add(bp->dev, &bnx2x_fp(bp, i, napi),
845 bnx2x_poll, BNX2X_NAPI_WEIGHT);
846}
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000847
Merav Sicron55c11942012-11-07 00:45:48 +0000848static inline void bnx2x_del_all_napi_cnic(struct bnx2x *bp)
849{
850 int i;
851
852 for_each_rx_queue_cnic(bp, i)
853 netif_napi_del(&bnx2x_fp(bp, i, napi));
854}
855
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000856static inline void bnx2x_del_all_napi(struct bnx2x *bp)
857{
858 int i;
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000859
Merav Sicron55c11942012-11-07 00:45:48 +0000860 for_each_eth_queue(bp, i)
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000861 netif_napi_del(&bnx2x_fp(bp, i, napi));
862}
863
Ariel Elior1ab44342013-01-01 05:22:23 +0000864int bnx2x_set_int_mode(struct bnx2x *bp);
Merav Sicron0e8d2ec2012-06-19 07:48:30 +0000865
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000866static inline void bnx2x_disable_msi(struct bnx2x *bp)
867{
868 if (bp->flags & USING_MSIX_FLAG) {
869 pci_disable_msix(bp->pdev);
Dmitry Kravkov30a5de72012-04-03 18:41:26 +0000870 bp->flags &= ~(USING_MSIX_FLAG | USING_SINGLE_MSIX_FLAG);
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000871 } else if (bp->flags & USING_MSI_FLAG) {
872 pci_disable_msi(bp->pdev);
873 bp->flags &= ~USING_MSI_FLAG;
874 }
875}
876
877static inline int bnx2x_calc_num_queues(struct bnx2x *bp)
878{
879 return num_queues ?
880 min_t(int, num_queues, BNX2X_MAX_QUEUES(bp)) :
Yuval Mintz7d515412012-07-01 03:18:59 +0000881 min_t(int, netif_get_num_default_rss_queues(),
882 BNX2X_MAX_QUEUES(bp));
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000883}
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000884
885static inline void bnx2x_clear_sge_mask_next_elems(struct bnx2x_fastpath *fp)
886{
887 int i, j;
888
889 for (i = 1; i <= NUM_RX_SGE_PAGES; i++) {
890 int idx = RX_SGE_CNT * i - 1;
891
892 for (j = 0; j < 2; j++) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300893 BIT_VEC64_CLEAR_BIT(fp->sge_mask, idx);
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000894 idx--;
895 }
896 }
897}
898
899static inline void bnx2x_init_sge_ring_bit_mask(struct bnx2x_fastpath *fp)
900{
901 /* 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 +0000902 memset(fp->sge_mask, 0xff, sizeof(fp->sge_mask));
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000903
904 /* Clear the two last indices in the page to 1:
905 these are the indices that correspond to the "next" element,
906 hence will never be indicated and should be removed from
907 the calculations. */
908 bnx2x_clear_sge_mask_next_elems(fp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000909}
910
Eric Dumazete52fcb22011-11-14 06:05:34 +0000911/* note that we are not allocating a new buffer,
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000912 * we are just moving one from cons to prod
913 * we are not creating a new mapping,
914 * so there is no need to check for dma_mapping_error().
915 */
Eric Dumazete52fcb22011-11-14 06:05:34 +0000916static inline void bnx2x_reuse_rx_data(struct bnx2x_fastpath *fp,
Dmitry Kravkov749a8502010-10-06 03:29:05 +0000917 u16 cons, u16 prod)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000918{
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000919 struct sw_rx_bd *cons_rx_buf = &fp->rx_buf_ring[cons];
920 struct sw_rx_bd *prod_rx_buf = &fp->rx_buf_ring[prod];
921 struct eth_rx_bd *cons_bd = &fp->rx_desc_ring[cons];
922 struct eth_rx_bd *prod_bd = &fp->rx_desc_ring[prod];
923
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000924 dma_unmap_addr_set(prod_rx_buf, mapping,
925 dma_unmap_addr(cons_rx_buf, mapping));
Eric Dumazete52fcb22011-11-14 06:05:34 +0000926 prod_rx_buf->data = cons_rx_buf->data;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000927 *prod_bd = *cons_bd;
928}
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000929
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300930/************************* Init ******************************************/
931
Yuval Mintzb475d782012-04-03 18:41:29 +0000932/* returns func by VN for current port */
933static inline int func_by_vn(struct bnx2x *bp, int vn)
934{
935 return 2 * vn + BP_PORT(bp);
936}
937
Merav Sicron5d317c6a2012-06-19 07:48:24 +0000938static inline int bnx2x_config_rss_eth(struct bnx2x *bp, bool config_hash)
Dmitry Kravkov96305232012-04-03 18:41:30 +0000939{
Merav Sicron5d317c6a2012-06-19 07:48:24 +0000940 return bnx2x_config_rss_pf(bp, &bp->rss_conf_obj, config_hash);
Dmitry Kravkov96305232012-04-03 18:41:30 +0000941}
942
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300943/**
944 * bnx2x_func_start - init function
945 *
946 * @bp: driver handle
947 *
948 * Must be called before sending CLIENT_SETUP for the first client.
949 */
950static inline int bnx2x_func_start(struct bnx2x *bp)
951{
Yuval Mintz3b603062012-03-18 10:33:39 +0000952 struct bnx2x_func_state_params func_params = {NULL};
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300953 struct bnx2x_func_start_params *start_params =
954 &func_params.params.start;
955
956 /* Prepare parameters for function state transitions */
957 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
958
959 func_params.f_obj = &bp->func_obj;
960 func_params.cmd = BNX2X_F_CMD_START;
961
962 /* Function parameters */
963 start_params->mf_mode = bp->mf_mode;
964 start_params->sd_vlan_tag = bp->mf_ov;
Ariel Elior8d7b0272012-01-26 06:01:45 +0000965
966 if (CHIP_IS_E2(bp) || CHIP_IS_E3(bp))
Ariel Elior6383c0b2011-07-14 08:31:57 +0000967 start_params->network_cos_mode = STATIC_COS;
Ariel Elior8d7b0272012-01-26 06:01:45 +0000968 else /* CHIP_IS_E1X */
969 start_params->network_cos_mode = FW_WRR;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300970
971 return bnx2x_func_state_change(bp, &func_params);
972}
973
974
975/**
976 * bnx2x_set_fw_mac_addr - fill in a MAC address in FW format
977 *
978 * @fw_hi: pointer to upper part
979 * @fw_mid: pointer to middle part
980 * @fw_lo: pointer to lower part
981 * @mac: pointer to MAC address
982 */
983static inline void bnx2x_set_fw_mac_addr(u16 *fw_hi, u16 *fw_mid, u16 *fw_lo,
984 u8 *mac)
985{
986 ((u8 *)fw_hi)[0] = mac[1];
987 ((u8 *)fw_hi)[1] = mac[0];
988 ((u8 *)fw_mid)[0] = mac[3];
989 ((u8 *)fw_mid)[1] = mac[2];
990 ((u8 *)fw_lo)[0] = mac[5];
991 ((u8 *)fw_lo)[1] = mac[4];
992}
993
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000994static inline void bnx2x_free_rx_sge_range(struct bnx2x *bp,
995 struct bnx2x_fastpath *fp, int last)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000996{
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000997 int i;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000998
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +0000999 if (fp->disable_tpa)
1000 return;
1001
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001002 for (i = 0; i < last; i++)
1003 bnx2x_free_rx_sge(bp, fp, i);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001004}
1005
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001006static inline void bnx2x_set_next_page_rx_bd(struct bnx2x_fastpath *fp)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001007{
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001008 int i;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001009
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001010 for (i = 1; i <= NUM_RX_RINGS; i++) {
1011 struct eth_rx_bd *rx_bd;
1012
1013 rx_bd = &fp->rx_desc_ring[RX_DESC_CNT * i - 2];
1014 rx_bd->addr_hi =
1015 cpu_to_le32(U64_HI(fp->rx_desc_mapping +
1016 BCM_PAGE_SIZE*(i % NUM_RX_RINGS)));
1017 rx_bd->addr_lo =
1018 cpu_to_le32(U64_LO(fp->rx_desc_mapping +
1019 BCM_PAGE_SIZE*(i % NUM_RX_RINGS)));
1020 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001021}
1022
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001023/* Statistics ID are global per chip/path, while Client IDs for E1x are per
1024 * port.
1025 */
1026static inline u8 bnx2x_stats_id(struct bnx2x_fastpath *fp)
1027{
Yuval Mintzde5c3742012-03-12 11:22:07 +00001028 struct bnx2x *bp = fp->bp;
1029 if (!CHIP_IS_E1x(bp)) {
Yuval Mintzde5c3742012-03-12 11:22:07 +00001030 /* there are special statistics counters for FCoE 136..140 */
1031 if (IS_FCOE_FP(fp))
1032 return bp->cnic_base_cl_id + (bp->pf_num >> 1);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001033 return fp->cl_id;
Yuval Mintzde5c3742012-03-12 11:22:07 +00001034 }
1035 return fp->cl_id + BP_PORT(bp) * FP_SB_MAX_E1x;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001036}
1037
1038static inline void bnx2x_init_vlan_mac_fp_objs(struct bnx2x_fastpath *fp,
1039 bnx2x_obj_type obj_type)
1040{
1041 struct bnx2x *bp = fp->bp;
1042
1043 /* Configure classification DBs */
Barak Witkowski15192a82012-06-19 07:48:28 +00001044 bnx2x_init_mac_obj(bp, &bnx2x_sp_obj(bp, fp).mac_obj, fp->cl_id,
1045 fp->cid, BP_FUNC(bp), bnx2x_sp(bp, mac_rdata),
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001046 bnx2x_sp_mapping(bp, mac_rdata),
1047 BNX2X_FILTER_MAC_PENDING,
1048 &bp->sp_state, obj_type,
1049 &bp->macs_pool);
1050}
1051
1052/**
1053 * bnx2x_get_path_func_num - get number of active functions
1054 *
1055 * @bp: driver handle
1056 *
1057 * Calculates the number of active (not hidden) functions on the
1058 * current path.
1059 */
1060static inline u8 bnx2x_get_path_func_num(struct bnx2x *bp)
1061{
1062 u8 func_num = 0, i;
1063
1064 /* 57710 has only one function per-port */
1065 if (CHIP_IS_E1(bp))
1066 return 1;
1067
1068 /* Calculate a number of functions enabled on the current
1069 * PATH/PORT.
1070 */
1071 if (CHIP_REV_IS_SLOW(bp)) {
1072 if (IS_MF(bp))
1073 func_num = 4;
1074 else
1075 func_num = 2;
1076 } else {
1077 for (i = 0; i < E1H_FUNC_MAX / 2; i++) {
1078 u32 func_config =
1079 MF_CFG_RD(bp,
1080 func_mf_config[BP_PORT(bp) + 2 * i].
1081 config);
1082 func_num +=
1083 ((func_config & FUNC_MF_CFG_FUNC_HIDE) ? 0 : 1);
1084 }
1085 }
1086
1087 WARN_ON(!func_num);
1088
1089 return func_num;
1090}
1091
1092static inline void bnx2x_init_bp_objs(struct bnx2x *bp)
1093{
1094 /* RX_MODE controlling object */
1095 bnx2x_init_rx_mode_obj(bp, &bp->rx_mode_obj);
1096
1097 /* multicast configuration controlling object */
1098 bnx2x_init_mcast_obj(bp, &bp->mcast_obj, bp->fp->cl_id, bp->fp->cid,
1099 BP_FUNC(bp), BP_FUNC(bp),
1100 bnx2x_sp(bp, mcast_rdata),
1101 bnx2x_sp_mapping(bp, mcast_rdata),
1102 BNX2X_FILTER_MCAST_PENDING, &bp->sp_state,
1103 BNX2X_OBJ_TYPE_RX);
1104
1105 /* Setup CAM credit pools */
1106 bnx2x_init_mac_credit_pool(bp, &bp->macs_pool, BP_FUNC(bp),
1107 bnx2x_get_path_func_num(bp));
1108
1109 /* RSS configuration object */
1110 bnx2x_init_rss_config_obj(bp, &bp->rss_conf_obj, bp->fp->cl_id,
1111 bp->fp->cid, BP_FUNC(bp), BP_FUNC(bp),
1112 bnx2x_sp(bp, rss_rdata),
1113 bnx2x_sp_mapping(bp, rss_rdata),
1114 BNX2X_FILTER_RSS_CONF_PENDING, &bp->sp_state,
1115 BNX2X_OBJ_TYPE_RX);
1116}
1117
1118static inline u8 bnx2x_fp_qzone_id(struct bnx2x_fastpath *fp)
1119{
1120 if (CHIP_IS_E1x(fp->bp))
1121 return fp->cl_id + BP_PORT(fp->bp) * ETH_MAX_RX_CLIENTS_E1H;
1122 else
1123 return fp->cl_id;
1124}
1125
1126static inline u32 bnx2x_rx_ustorm_prods_offset(struct bnx2x_fastpath *fp)
1127{
1128 struct bnx2x *bp = fp->bp;
Ariel Eliorad5afc82013-01-01 05:22:26 +00001129 u32 offset = BAR_USTRORM_INTMEM;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001130
Ariel Eliorad5afc82013-01-01 05:22:26 +00001131 if (IS_VF(bp))
1132 return PXP_VF_ADDR_USDM_QUEUES_START +
1133 bp->acquire_resp.resc.hw_qid[fp->index] *
1134 sizeof(struct ustorm_queue_zone_data);
1135 else if (!CHIP_IS_E1x(bp))
1136 offset += USTORM_RX_PRODS_E2_OFFSET(fp->cl_qzone_id);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001137 else
Ariel Eliorad5afc82013-01-01 05:22:26 +00001138 offset += USTORM_RX_PRODS_E1X_OFFSET(BP_PORT(bp), fp->cl_id);
1139
1140 return offset;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001141}
1142
Ariel Elior6383c0b2011-07-14 08:31:57 +00001143static inline void bnx2x_init_txdata(struct bnx2x *bp,
Merav Sicron65565882012-06-19 07:48:26 +00001144 struct bnx2x_fp_txdata *txdata, u32 cid,
1145 int txq_index, __le16 *tx_cons_sb,
1146 struct bnx2x_fastpath *fp)
Ariel Elior6383c0b2011-07-14 08:31:57 +00001147{
1148 txdata->cid = cid;
1149 txdata->txq_index = txq_index;
1150 txdata->tx_cons_sb = tx_cons_sb;
Merav Sicron65565882012-06-19 07:48:26 +00001151 txdata->parent_fp = fp;
Yuval Mintz7b5342d2012-09-11 04:34:14 +00001152 txdata->tx_ring_size = IS_FCOE_FP(fp) ? MAX_TX_AVAIL : bp->tx_ring_size;
Ariel Elior6383c0b2011-07-14 08:31:57 +00001153
Merav Sicron51c1a582012-03-18 10:33:38 +00001154 DP(NETIF_MSG_IFUP, "created tx data cid %d, txq %d\n",
Ariel Elior6383c0b2011-07-14 08:31:57 +00001155 txdata->cid, txdata->txq_index);
1156}
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001157
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001158static inline u8 bnx2x_cnic_eth_cl_id(struct bnx2x *bp, u8 cl_idx)
1159{
1160 return bp->cnic_base_cl_id + cl_idx +
David S. Miller1805b2f2011-10-24 18:18:09 -04001161 (bp->pf_num >> 1) * BNX2X_MAX_CNIC_ETH_CL_ID_IDX;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001162}
1163
1164static inline u8 bnx2x_cnic_fw_sb_id(struct bnx2x *bp)
1165{
1166
1167 /* the 'first' id is allocated for the cnic */
1168 return bp->base_fw_ndsb;
1169}
1170
1171static inline u8 bnx2x_cnic_igu_sb_id(struct bnx2x *bp)
1172{
1173 return bp->igu_base_sb;
1174}
1175
1176
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001177static inline void bnx2x_init_fcoe_fp(struct bnx2x *bp)
1178{
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001179 struct bnx2x_fastpath *fp = bnx2x_fcoe_fp(bp);
1180 unsigned long q_type = 0;
1181
Dmitry Kravkovf233caf2011-11-13 04:34:22 +00001182 bnx2x_fcoe(bp, rx_queue) = BNX2X_NUM_ETH_QUEUES(bp);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001183 bnx2x_fcoe(bp, cl_id) = bnx2x_cnic_eth_cl_id(bp,
1184 BNX2X_FCOE_ETH_CL_ID_IDX);
Merav Sicron37ae41a2012-06-19 07:48:27 +00001185 bnx2x_fcoe(bp, cid) = BNX2X_FCOE_ETH_CID(bp);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001186 bnx2x_fcoe(bp, fw_sb_id) = DEF_SB_ID;
1187 bnx2x_fcoe(bp, igu_sb_id) = bp->igu_dsb_id;
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001188 bnx2x_fcoe(bp, rx_cons_sb) = BNX2X_FCOE_L2_RX_INDEX;
Merav Sicron65565882012-06-19 07:48:26 +00001189 bnx2x_init_txdata(bp, bnx2x_fcoe(bp, txdata_ptr[0]),
1190 fp->cid, FCOE_TXQ_IDX(bp), BNX2X_FCOE_L2_TX_INDEX,
1191 fp);
Ariel Elior6383c0b2011-07-14 08:31:57 +00001192
Merav Sicron51c1a582012-03-18 10:33:38 +00001193 DP(NETIF_MSG_IFUP, "created fcoe tx data (fp index %d)\n", fp->index);
Ariel Elior6383c0b2011-07-14 08:31:57 +00001194
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001195 /* qZone id equals to FW (per path) client id */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001196 bnx2x_fcoe(bp, cl_qzone_id) = bnx2x_fp_qzone_id(fp);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001197 /* init shortcut */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001198 bnx2x_fcoe(bp, ustorm_rx_prods_offset) =
1199 bnx2x_rx_ustorm_prods_offset(fp);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001200
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001201 /* Configure Queue State object */
1202 __set_bit(BNX2X_Q_TYPE_HAS_RX, &q_type);
1203 __set_bit(BNX2X_Q_TYPE_HAS_TX, &q_type);
Ariel Elior6383c0b2011-07-14 08:31:57 +00001204
1205 /* No multi-CoS for FCoE L2 client */
1206 BUG_ON(fp->max_cos != 1);
1207
Barak Witkowski15192a82012-06-19 07:48:28 +00001208 bnx2x_init_queue_obj(bp, &bnx2x_sp_obj(bp, fp).q_obj, fp->cl_id,
1209 &fp->cid, 1, BP_FUNC(bp), bnx2x_sp(bp, q_rdata),
Ariel Elior6383c0b2011-07-14 08:31:57 +00001210 bnx2x_sp_mapping(bp, q_rdata), q_type);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001211
Merav Sicron51c1a582012-03-18 10:33:38 +00001212 DP(NETIF_MSG_IFUP,
1213 "queue[%d]: bnx2x_init_sb(%p,%p) cl_id %d fw_sb %d igu_sb %d\n",
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001214 fp->index, bp, fp->status_blk.e2_sb, fp->cl_id, fp->fw_sb_id,
1215 fp->igu_sb_id);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001216}
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001217
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001218static inline int bnx2x_clean_tx_queue(struct bnx2x *bp,
Ariel Elior6383c0b2011-07-14 08:31:57 +00001219 struct bnx2x_fp_txdata *txdata)
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001220{
1221 int cnt = 1000;
1222
Ariel Elior6383c0b2011-07-14 08:31:57 +00001223 while (bnx2x_has_tx_work_unload(txdata)) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001224 if (!cnt) {
Merav Sicron51c1a582012-03-18 10:33:38 +00001225 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 +00001226 txdata->txq_index, txdata->tx_pkt_prod,
1227 txdata->tx_pkt_cons);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001228#ifdef BNX2X_STOP_ON_ERROR
1229 bnx2x_panic();
1230 return -EBUSY;
1231#else
1232 break;
1233#endif
1234 }
1235 cnt--;
1236 usleep_range(1000, 1000);
1237 }
1238
1239 return 0;
1240}
1241
Yaniv Rosner1ac9e422011-05-31 21:26:11 +00001242int bnx2x_get_link_cfg_idx(struct bnx2x *bp);
1243
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001244static inline void __storm_memset_struct(struct bnx2x *bp,
1245 u32 addr, size_t size, u32 *data)
1246{
1247 int i;
1248 for (i = 0; i < size/4; i++)
1249 REG_WR(bp, addr + (i * 4), data[i]);
1250}
1251
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001252/**
1253 * bnx2x_wait_sp_comp - wait for the outstanding SP commands.
1254 *
1255 * @bp: driver handle
1256 * @mask: bits that need to be cleared
1257 */
1258static inline bool bnx2x_wait_sp_comp(struct bnx2x *bp, unsigned long mask)
1259{
1260 int tout = 5000; /* Wait for 5 secs tops */
1261
1262 while (tout--) {
1263 smp_mb();
1264 netif_addr_lock_bh(bp->dev);
1265 if (!(bp->sp_state & mask)) {
1266 netif_addr_unlock_bh(bp->dev);
1267 return true;
1268 }
1269 netif_addr_unlock_bh(bp->dev);
1270
1271 usleep_range(1000, 1000);
1272 }
1273
1274 smp_mb();
1275
1276 netif_addr_lock_bh(bp->dev);
1277 if (bp->sp_state & mask) {
Merav Sicron51c1a582012-03-18 10:33:38 +00001278 BNX2X_ERR("Filtering completion timed out. sp_state 0x%lx, mask 0x%lx\n",
1279 bp->sp_state, mask);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001280 netif_addr_unlock_bh(bp->dev);
1281 return false;
1282 }
1283 netif_addr_unlock_bh(bp->dev);
1284
1285 return true;
1286}
1287
1288/**
1289 * bnx2x_set_ctx_validation - set CDU context validation values
1290 *
1291 * @bp: driver handle
1292 * @cxt: context of the connection on the host memory
1293 * @cid: SW CID of the connection to be configured
1294 */
1295void bnx2x_set_ctx_validation(struct bnx2x *bp, struct eth_context *cxt,
1296 u32 cid);
1297
1298void bnx2x_update_coalesce_sb_index(struct bnx2x *bp, u8 fw_sb_id,
1299 u8 sb_index, u8 disable, u16 usec);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001300void bnx2x_acquire_phy_lock(struct bnx2x *bp);
1301void bnx2x_release_phy_lock(struct bnx2x *bp);
1302
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001303/**
Dmitry Kravkove8920672011-05-04 23:52:40 +00001304 * bnx2x_extract_max_cfg - extract MAX BW part from MF configuration.
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001305 *
Dmitry Kravkove8920672011-05-04 23:52:40 +00001306 * @bp: driver handle
1307 * @mf_cfg: MF configuration
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001308 *
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001309 */
1310static inline u16 bnx2x_extract_max_cfg(struct bnx2x *bp, u32 mf_cfg)
1311{
1312 u16 max_cfg = (mf_cfg & FUNC_MF_CFG_MAX_BW_MASK) >>
1313 FUNC_MF_CFG_MAX_BW_SHIFT;
1314 if (!max_cfg) {
Merav Sicron51c1a582012-03-18 10:33:38 +00001315 DP(NETIF_MSG_IFUP | BNX2X_MSG_ETHTOOL,
Michal Schmidt96b0acc2011-08-18 21:51:01 -07001316 "Max BW configured to 0 - using 100 instead\n");
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001317 max_cfg = 100;
1318 }
1319 return max_cfg;
1320}
1321
Dmitry Kravkov621b4d62012-02-20 09:59:08 +00001322/* checks if HW supports GRO for given MTU */
1323static inline bool bnx2x_mtu_allows_gro(int mtu)
1324{
1325 /* gro frags per page */
1326 int fpp = SGE_PAGE_SIZE / (mtu - ETH_MAX_TPA_HEADER_SIZE);
1327
1328 /*
1329 * 1. number of frags should not grow above MAX_SKB_FRAGS
1330 * 2. frag must fit the page
1331 */
1332 return mtu <= SGE_PAGE_SIZE && (U_ETH_SGL_SIZE * fpp) <= MAX_SKB_FRAGS;
1333}
Merav Sicron55c11942012-11-07 00:45:48 +00001334
Mintz Yuval1355b702012-02-15 02:10:22 +00001335/**
Dmitry Kravkovb306f5e2011-11-13 04:34:24 +00001336 * bnx2x_get_iscsi_info - update iSCSI params according to licensing info.
1337 *
1338 * @bp: driver handle
1339 *
1340 */
1341void bnx2x_get_iscsi_info(struct bnx2x *bp);
Dmitry Kravkov00253a82011-11-13 04:34:25 +00001342
1343/**
1344 * bnx2x_link_sync_notify - send notification to other functions.
1345 *
1346 * @bp: driver handle
1347 *
1348 */
1349static inline void bnx2x_link_sync_notify(struct bnx2x *bp)
1350{
1351 int func;
1352 int vn;
1353
1354 /* Set the attention towards other drivers on the same port */
1355 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++) {
1356 if (vn == BP_VN(bp))
1357 continue;
1358
1359 func = func_by_vn(bp, vn);
1360 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_0 +
1361 (LINK_SYNC_ATTENTION_BIT_FUNC_0 + func)*4, 1);
1362 }
1363}
1364
1365/**
1366 * bnx2x_update_drv_flags - update flags in shmem
1367 *
1368 * @bp: driver handle
1369 * @flags: flags to update
1370 * @set: set or clear
1371 *
1372 */
1373static inline void bnx2x_update_drv_flags(struct bnx2x *bp, u32 flags, u32 set)
1374{
1375 if (SHMEM2_HAS(bp, drv_flags)) {
1376 u32 drv_flags;
Ariel Eliorf16da432012-01-26 06:01:50 +00001377 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_DRV_FLAGS);
Dmitry Kravkov00253a82011-11-13 04:34:25 +00001378 drv_flags = SHMEM2_RD(bp, drv_flags);
1379
1380 if (set)
1381 SET_FLAGS(drv_flags, flags);
1382 else
1383 RESET_FLAGS(drv_flags, flags);
1384
1385 SHMEM2_WR(bp, drv_flags, drv_flags);
Merav Sicron51c1a582012-03-18 10:33:38 +00001386 DP(NETIF_MSG_IFUP, "drv_flags 0x%08x\n", drv_flags);
Ariel Eliorf16da432012-01-26 06:01:50 +00001387 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_DRV_FLAGS);
Dmitry Kravkov00253a82011-11-13 04:34:25 +00001388 }
1389}
1390
Dmitry Kravkov614c76d2011-11-28 12:31:49 +00001391static inline bool bnx2x_is_valid_ether_addr(struct bnx2x *bp, u8 *addr)
1392{
Merav Sicron55c11942012-11-07 00:45:48 +00001393 if (is_valid_ether_addr(addr) ||
1394 (is_zero_ether_addr(addr) &&
1395 (IS_MF_STORAGE_SD(bp) || IS_MF_FCOE_AFEX(bp))))
Dmitry Kravkov614c76d2011-11-28 12:31:49 +00001396 return true;
Merav Sicron55c11942012-11-07 00:45:48 +00001397
Dmitry Kravkov614c76d2011-11-28 12:31:49 +00001398 return false;
1399}
1400
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001401#endif /* BNX2X_CMN_H */