blob: a1a5cdca114c0244ba64a38d53529d2c027b5a85 [file] [log] [blame]
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001/* bnx2x_cmn.h: Broadcom Everest network driver.
2 *
Yuval Mintz247fa822013-01-14 05:11:50 +00003 * Copyright (c) 2007-2013 Broadcom Corporation
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation.
8 *
9 * Maintained by: Eilon Greenstein <eilong@broadcom.com>
10 * Written by: Eliezer Tamir
11 * Based on code from Michael Chan's bnx2 driver
12 * UDP CSUM errata workaround by Arik Gendelman
13 * Slowpath and fastpath rework by Vladislav Zolotarov
14 * Statistics and Link management by Yitchak Gertner
15 *
16 */
17#ifndef BNX2X_CMN_H
18#define BNX2X_CMN_H
19
20#include <linux/types.h>
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030021#include <linux/pci.h>
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000022#include <linux/netdevice.h>
Dmitry Kravkov614c76d2011-11-28 12:31:49 +000023#include <linux/etherdevice.h>
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000024
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000025#include "bnx2x.h"
Ariel Elior64112802013-01-07 00:50:23 +000026#include "bnx2x_sriov.h"
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000027
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030028/* This is used as a replacement for an MCP if it's not present */
29extern int load_count[2][3]; /* per-path: 0-common, 1-port0, 2-port1 */
30
Dmitry Kravkovd6214d72010-10-06 03:32:10 +000031extern int num_queues;
Merav Sicron0e8d2ec2012-06-19 07:48:30 +000032extern int int_mode;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000033
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +000034/************************ Macros ********************************/
35#define BNX2X_PCI_FREE(x, y, size) \
36 do { \
37 if (x) { \
38 dma_free_coherent(&bp->pdev->dev, size, (void *)x, y); \
39 x = NULL; \
40 y = 0; \
41 } \
42 } while (0)
43
44#define BNX2X_FREE(x) \
45 do { \
46 if (x) { \
47 kfree((void *)x); \
48 x = NULL; \
49 } \
50 } while (0)
51
Yuval Mintz6bf07b82013-06-02 00:06:20 +000052#define BNX2X_PCI_ALLOC(x, y, size) \
53 do { \
54 x = dma_alloc_coherent(&bp->pdev->dev, size, y, \
55 GFP_KERNEL | __GFP_ZERO); \
56 if (x == NULL) \
57 goto alloc_mem_err; \
58 DP(NETIF_MSG_HW, "BNX2X_PCI_ALLOC: Physical %Lx Virtual %p\n", \
59 (unsigned long long)(*y), x); \
60 } while (0)
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +000061
62#define BNX2X_ALLOC(x, size) \
63 do { \
64 x = kzalloc(size, GFP_KERNEL); \
65 if (x == NULL) \
66 goto alloc_mem_err; \
67 } while (0)
68
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +000069/*********************** Interfaces ****************************
70 * Functions that need to be implemented by each driver version
71 */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030072/* Init */
73
74/**
75 * bnx2x_send_unload_req - request unload mode from the MCP.
76 *
77 * @bp: driver handle
78 * @unload_mode: requested function's unload mode
79 *
80 * Return unload mode returned by the MCP: COMMON, PORT or FUNC.
81 */
82u32 bnx2x_send_unload_req(struct bnx2x *bp, int unload_mode);
83
84/**
85 * bnx2x_send_unload_done - send UNLOAD_DONE command to the MCP.
86 *
87 * @bp: driver handle
Yuval Mintz5d07d862012-09-13 02:56:21 +000088 * @keep_link: true iff link should be kept up
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030089 */
Yuval Mintz5d07d862012-09-13 02:56:21 +000090void bnx2x_send_unload_done(struct bnx2x *bp, bool keep_link);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030091
92/**
Dmitry Kravkov96305232012-04-03 18:41:30 +000093 * bnx2x_config_rss_pf - configure RSS parameters in a PF.
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030094 *
95 * @bp: driver handle
Ben Hutchings49ce9c22012-07-10 10:56:00 +000096 * @rss_obj: RSS object to use
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +030097 * @ind_table: indirection table to configure
98 * @config_hash: re-configure RSS hash keys configuration
99 */
Dmitry Kravkov96305232012-04-03 18:41:30 +0000100int bnx2x_config_rss_pf(struct bnx2x *bp, struct bnx2x_rss_config_obj *rss_obj,
Merav Sicron5d317c6a2012-06-19 07:48:24 +0000101 bool config_hash);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300102
103/**
104 * bnx2x__init_func_obj - init function object
105 *
106 * @bp: driver handle
107 *
108 * Initializes the Function Object with the appropriate
109 * parameters which include a function slow path driver
110 * interface.
111 */
112void bnx2x__init_func_obj(struct bnx2x *bp);
113
114/**
115 * bnx2x_setup_queue - setup eth queue.
116 *
117 * @bp: driver handle
118 * @fp: pointer to the fastpath structure
119 * @leading: boolean
120 *
121 */
122int bnx2x_setup_queue(struct bnx2x *bp, struct bnx2x_fastpath *fp,
123 bool leading);
124
125/**
126 * bnx2x_setup_leading - bring up a leading eth queue.
127 *
128 * @bp: driver handle
129 */
130int bnx2x_setup_leading(struct bnx2x *bp);
131
132/**
133 * bnx2x_fw_command - send the MCP a request
134 *
135 * @bp: driver handle
136 * @command: request
137 * @param: request's parameter
138 *
139 * block until there is a reply
140 */
141u32 bnx2x_fw_command(struct bnx2x *bp, u32 command, u32 param);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000142
143/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000144 * bnx2x_initial_phy_init - initialize link parameters structure variables.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000145 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000146 * @bp: driver handle
147 * @load_mode: current mode
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000148 */
Yuval Mintzcd1dfce2012-12-02 04:05:56 +0000149int bnx2x_initial_phy_init(struct bnx2x *bp, int load_mode);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000150
151/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000152 * bnx2x_link_set - configure hw according to link parameters structure.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000153 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000154 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000155 */
156void bnx2x_link_set(struct bnx2x *bp);
157
158/**
Yuval Mintz5d07d862012-09-13 02:56:21 +0000159 * bnx2x_force_link_reset - Forces link reset, and put the PHY
160 * in reset as well.
161 *
162 * @bp: driver handle
163 */
164void bnx2x_force_link_reset(struct bnx2x *bp);
165
166/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000167 * bnx2x_link_test - query link status.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000168 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000169 * @bp: driver handle
170 * @is_serdes: bool
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000171 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000172 * Returns 0 if link is UP.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000173 */
Yaniv Rosnera22f0782010-09-07 11:41:20 +0000174u8 bnx2x_link_test(struct bnx2x *bp, u8 is_serdes);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000175
176/**
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300177 * bnx2x_drv_pulse - write driver pulse to shmem
178 *
179 * @bp: driver handle
180 *
181 * writes the value in bp->fw_drv_pulse_wr_seq to drv_pulse mbox
182 * in the shmem.
183 */
184void bnx2x_drv_pulse(struct bnx2x *bp);
185
186/**
187 * bnx2x_igu_ack_sb - update IGU with current SB value
188 *
189 * @bp: driver handle
190 * @igu_sb_id: SB id
191 * @segment: SB segment
192 * @index: SB index
193 * @op: SB operation
194 * @update: is HW update required
195 */
196void bnx2x_igu_ack_sb(struct bnx2x *bp, u8 igu_sb_id, u8 segment,
197 u16 index, u8 op, u8 update);
198
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +0000199/* Disable transactions from chip to host */
200void bnx2x_pf_disable(struct bnx2x *bp);
Miriam Shitrit07ba6af2013-01-14 05:11:46 +0000201int bnx2x_pretend_func(struct bnx2x *bp, u16 pretend_func_val);
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +0000202
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300203/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000204 * bnx2x__link_status_update - handles link status change.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000205 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000206 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000207 */
208void bnx2x__link_status_update(struct bnx2x *bp);
209
210/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000211 * bnx2x_link_report - report link status to upper layer.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000212 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000213 * @bp: driver handle
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000214 */
215void bnx2x_link_report(struct bnx2x *bp);
216
Vladislav Zolotarov2ae17f62011-05-04 23:48:23 +0000217/* None-atomic version of bnx2x_link_report() */
218void __bnx2x_link_report(struct bnx2x *bp);
219
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000220/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000221 * bnx2x_get_mf_speed - calculate MF speed.
Dmitry Kravkov0793f83f2010-12-01 12:39:28 -0800222 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000223 * @bp: driver handle
Dmitry Kravkov0793f83f2010-12-01 12:39:28 -0800224 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000225 * Takes into account current linespeed and MF configuration.
Dmitry Kravkov0793f83f2010-12-01 12:39:28 -0800226 */
227u16 bnx2x_get_mf_speed(struct bnx2x *bp);
228
229/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000230 * bnx2x_msix_sp_int - MSI-X slowpath interrupt handler
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000231 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000232 * @irq: irq number
233 * @dev_instance: private instance
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000234 */
235irqreturn_t bnx2x_msix_sp_int(int irq, void *dev_instance);
236
237/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000238 * bnx2x_interrupt - non MSI-X interrupt handler
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000239 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000240 * @irq: irq number
241 * @dev_instance: private instance
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000242 */
243irqreturn_t bnx2x_interrupt(int irq, void *dev_instance);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000244
245/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000246 * bnx2x_cnic_notify - send command to cnic driver
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000247 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000248 * @bp: driver handle
249 * @cmd: command
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000250 */
251int bnx2x_cnic_notify(struct bnx2x *bp, int cmd);
252
253/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000254 * bnx2x_setup_cnic_irq_info - provides cnic with IRQ information
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000255 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000256 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000257 */
258void bnx2x_setup_cnic_irq_info(struct bnx2x *bp);
Merav Sicron37ae41a2012-06-19 07:48:27 +0000259
260/**
261 * bnx2x_setup_cnic_info - provides cnic with updated info
262 *
263 * @bp: driver handle
264 */
265void bnx2x_setup_cnic_info(struct bnx2x *bp);
266
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000267/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000268 * bnx2x_int_enable - enable HW interrupts.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000269 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000270 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000271 */
272void bnx2x_int_enable(struct bnx2x *bp);
273
274/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000275 * bnx2x_int_disable_sync - disable interrupts.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000276 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000277 * @bp: driver handle
278 * @disable_hw: true, disable HW interrupts.
279 *
280 * This function ensures that there are no
281 * ISRs or SP DPCs (sp_task) are running after it returns.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000282 */
283void bnx2x_int_disable_sync(struct bnx2x *bp, int disable_hw);
284
285/**
Merav Sicron55c11942012-11-07 00:45:48 +0000286 * bnx2x_nic_init_cnic - init driver internals for cnic.
Dmitry Kravkove8920672011-05-04 23:52:40 +0000287 *
288 * @bp: driver handle
289 * @load_code: COMMON, PORT or FUNCTION
290 *
291 * Initializes:
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000292 * - rings
293 * - status blocks
294 * - etc.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000295 */
Merav Sicron55c11942012-11-07 00:45:48 +0000296void bnx2x_nic_init_cnic(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000297
298/**
Yuval Mintzecf01c22013-04-22 02:53:03 +0000299 * bnx2x_preirq_nic_init - init driver internals.
Merav Sicron55c11942012-11-07 00:45:48 +0000300 *
301 * @bp: driver handle
302 *
303 * Initializes:
Yuval Mintzecf01c22013-04-22 02:53:03 +0000304 * - fastpath object
305 * - fastpath rings
306 * etc.
307 */
308void bnx2x_pre_irq_nic_init(struct bnx2x *bp);
309
310/**
311 * bnx2x_postirq_nic_init - init driver internals.
312 *
313 * @bp: driver handle
314 * @load_code: COMMON, PORT or FUNCTION
315 *
316 * Initializes:
Merav Sicron55c11942012-11-07 00:45:48 +0000317 * - status blocks
Yuval Mintzecf01c22013-04-22 02:53:03 +0000318 * - slowpath rings
Merav Sicron55c11942012-11-07 00:45:48 +0000319 * - etc.
320 */
Yuval Mintzecf01c22013-04-22 02:53:03 +0000321void bnx2x_post_irq_nic_init(struct bnx2x *bp, u32 load_code);
Merav Sicron55c11942012-11-07 00:45:48 +0000322/**
323 * bnx2x_alloc_mem_cnic - allocate driver's memory for cnic.
324 *
325 * @bp: driver handle
326 */
327int bnx2x_alloc_mem_cnic(struct bnx2x *bp);
328/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000329 * bnx2x_alloc_mem - allocate driver's memory.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000330 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000331 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000332 */
333int bnx2x_alloc_mem(struct bnx2x *bp);
334
335/**
Merav Sicron55c11942012-11-07 00:45:48 +0000336 * bnx2x_free_mem_cnic - release driver's memory for cnic.
337 *
338 * @bp: driver handle
339 */
340void bnx2x_free_mem_cnic(struct bnx2x *bp);
341/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000342 * bnx2x_free_mem - release driver's memory.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000343 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000344 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000345 */
346void bnx2x_free_mem(struct bnx2x *bp);
347
348/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000349 * bnx2x_set_num_queues - set number of queues according to mode.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000350 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000351 * @bp: driver handle
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000352 */
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000353void bnx2x_set_num_queues(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000354
355/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000356 * bnx2x_chip_cleanup - cleanup chip internals.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000357 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000358 * @bp: driver handle
359 * @unload_mode: COMMON, PORT, FUNCTION
Yuval Mintz5d07d862012-09-13 02:56:21 +0000360 * @keep_link: true iff link should be kept up.
Dmitry Kravkove8920672011-05-04 23:52:40 +0000361 *
362 * - Cleanup MAC configuration.
363 * - Closes clients.
364 * - etc.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000365 */
Yuval Mintz5d07d862012-09-13 02:56:21 +0000366void bnx2x_chip_cleanup(struct bnx2x *bp, int unload_mode, bool keep_link);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000367
368/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000369 * bnx2x_acquire_hw_lock - acquire HW lock.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000370 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000371 * @bp: driver handle
372 * @resource: resource bit which was locked
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000373 */
374int bnx2x_acquire_hw_lock(struct bnx2x *bp, u32 resource);
375
376/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000377 * bnx2x_release_hw_lock - release HW lock.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000378 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000379 * @bp: driver handle
380 * @resource: resource bit which was locked
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000381 */
382int bnx2x_release_hw_lock(struct bnx2x *bp, u32 resource);
383
384/**
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +0000385 * bnx2x_release_leader_lock - release recovery leader lock
386 *
387 * @bp: driver handle
388 */
389int bnx2x_release_leader_lock(struct bnx2x *bp);
390
391/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000392 * bnx2x_set_eth_mac - configure eth MAC address in the HW
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000393 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000394 * @bp: driver handle
395 * @set: set or clear
396 *
397 * Configures according to the value in netdev->dev_addr.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000398 */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300399int bnx2x_set_eth_mac(struct bnx2x *bp, bool set);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +0000400
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000401/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000402 * bnx2x_set_rx_mode - set MAC filtering configurations.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000403 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000404 * @dev: netdevice
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000405 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000406 * called with netif_tx_lock from dev_mcast.c
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300407 * If bp->state is OPEN, should be called with
408 * netif_addr_lock_bh()
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000409 */
410void bnx2x_set_rx_mode(struct net_device *dev);
411
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300412/**
413 * bnx2x_set_storm_rx_mode - configure MAC filtering rules in a FW.
414 *
415 * @bp: driver handle
416 *
417 * If bp->state is OPEN, should be called with
418 * netif_addr_lock_bh().
419 */
Yuval Mintz924d75a2013-01-23 03:21:44 +0000420int bnx2x_set_storm_rx_mode(struct bnx2x *bp);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300421
422/**
423 * bnx2x_set_q_rx_mode - configures rx_mode for a single queue.
424 *
425 * @bp: driver handle
426 * @cl_id: client id
427 * @rx_mode_flags: rx mode configuration
428 * @rx_accept_flags: rx accept configuration
429 * @tx_accept_flags: tx accept configuration (tx switch)
430 * @ramrod_flags: ramrod configuration
431 */
Yuval Mintz924d75a2013-01-23 03:21:44 +0000432int bnx2x_set_q_rx_mode(struct bnx2x *bp, u8 cl_id,
433 unsigned long rx_mode_flags,
434 unsigned long rx_accept_flags,
435 unsigned long tx_accept_flags,
436 unsigned long ramrod_flags);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300437
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000438/* Parity errors related */
Ariel Elior889b9af2012-01-26 06:01:51 +0000439void bnx2x_set_pf_load(struct bnx2x *bp);
440bool bnx2x_clear_pf_load(struct bnx2x *bp);
Vladislav Zolotarovc9ee9202011-06-14 01:33:51 +0000441bool bnx2x_chk_parity_attn(struct bnx2x *bp, bool *global, bool print);
442bool bnx2x_reset_is_done(struct bnx2x *bp, int engine);
443void bnx2x_set_reset_in_progress(struct bnx2x *bp);
444void bnx2x_set_reset_global(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000445void bnx2x_disable_close_the_gate(struct bnx2x *bp);
Merav Sicron55c11942012-11-07 00:45:48 +0000446int bnx2x_init_hw_func_cnic(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000447
448/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000449 * bnx2x_sp_event - handle ramrods completion.
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000450 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000451 * @fp: fastpath handle for the event
452 * @rr_cqe: eth_rx_cqe
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000453 */
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000454void bnx2x_sp_event(struct bnx2x_fastpath *fp, union eth_rx_cqe *rr_cqe);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000455
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000456/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000457 * bnx2x_ilt_set_info - prepare ILT configurations.
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000458 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000459 * @bp: driver handle
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000460 */
461void bnx2x_ilt_set_info(struct bnx2x *bp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000462
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000463/**
Merav Sicron55c11942012-11-07 00:45:48 +0000464 * bnx2x_ilt_set_cnic_info - prepare ILT configurations for SRC
465 * and TM.
466 *
467 * @bp: driver handle
468 */
469void bnx2x_ilt_set_info_cnic(struct bnx2x *bp);
470
471/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000472 * bnx2x_dcbx_init - initialize dcbx protocol.
Vladislav Zolotarove4901dd2010-12-13 05:44:18 +0000473 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000474 * @bp: driver handle
Vladislav Zolotarove4901dd2010-12-13 05:44:18 +0000475 */
Barak Witkowski98768792012-06-19 07:48:31 +0000476void bnx2x_dcbx_init(struct bnx2x *bp, bool update_shmem);
Vladislav Zolotarove4901dd2010-12-13 05:44:18 +0000477
478/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000479 * bnx2x_set_power_state - set power state to the requested value.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000480 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000481 * @bp: driver handle
482 * @state: required state D0 or D3hot
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000483 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000484 * Currently only D0 and D3hot are supported.
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000485 */
486int bnx2x_set_power_state(struct bnx2x *bp, pci_power_t state);
487
Dmitry Kravkove3835b92011-03-06 10:50:44 +0000488/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000489 * bnx2x_update_max_mf_config - update MAX part of MF configuration in HW.
Dmitry Kravkove3835b92011-03-06 10:50:44 +0000490 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000491 * @bp: driver handle
492 * @value: new value
Dmitry Kravkove3835b92011-03-06 10:50:44 +0000493 */
494void bnx2x_update_max_mf_config(struct bnx2x *bp, u32 value);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300495/* Error handling */
Dmitry Kravkov7a25cc72011-06-14 01:33:25 +0000496void bnx2x_fw_dump_lvl(struct bnx2x *bp, const char *lvl);
497
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000498/* dev_close main block */
Yuval Mintz5d07d862012-09-13 02:56:21 +0000499int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode, bool keep_link);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000500
501/* dev_open main block */
502int bnx2x_nic_load(struct bnx2x *bp, int load_mode);
503
504/* hard_xmit callback */
505netdev_tx_t bnx2x_start_xmit(struct sk_buff *skb, struct net_device *dev);
506
Ariel Elior6383c0b2011-07-14 08:31:57 +0000507/* setup_tc callback */
508int bnx2x_setup_tc(struct net_device *dev, u8 num_tc);
509
Ariel Elior3ec9f9c2013-03-11 05:17:45 +0000510int bnx2x_get_vf_config(struct net_device *dev, int vf,
511 struct ifla_vf_info *ivi);
Ariel Eliorabc5a022013-01-01 05:22:43 +0000512int bnx2x_set_vf_mac(struct net_device *dev, int queue, u8 *mac);
Ariel Elior3ec9f9c2013-03-11 05:17:45 +0000513int bnx2x_set_vf_vlan(struct net_device *netdev, int vf, u16 vlan, u8 qos);
Ariel Eliorabc5a022013-01-01 05:22:43 +0000514
Vladislav Zolotarov8307fa32010-12-13 05:44:09 +0000515/* select_queue callback */
516u16 bnx2x_select_queue(struct net_device *dev, struct sk_buff *skb);
517
Ariel Eliordc1ba592013-01-01 05:22:30 +0000518static inline void bnx2x_update_rx_prod(struct bnx2x *bp,
519 struct bnx2x_fastpath *fp,
520 u16 bd_prod, u16 rx_comp_prod,
521 u16 rx_sge_prod)
522{
523 struct ustorm_eth_rx_producers rx_prods = {0};
524 u32 i;
525
526 /* Update producers */
527 rx_prods.bd_prod = bd_prod;
528 rx_prods.cqe_prod = rx_comp_prod;
529 rx_prods.sge_prod = rx_sge_prod;
530
531 /* Make sure that the BD and SGE data is updated before updating the
532 * producers since FW might read the BD/SGE right after the producer
533 * is updated.
534 * This is only applicable for weak-ordered memory model archs such
535 * as IA-64. The following barrier is also mandatory since FW will
536 * assumes BDs must have buffers.
537 */
538 wmb();
539
540 for (i = 0; i < sizeof(rx_prods)/4; i++)
541 REG_WR(bp, fp->ustorm_rx_prods_offset + i*4,
542 ((u32 *)&rx_prods)[i]);
543
544 mmiowb(); /* keep prod updates ordered */
545
546 DP(NETIF_MSG_RX_STATUS,
547 "queue[%d]: wrote bd_prod %u cqe_prod %u sge_prod %u\n",
548 fp->index, bd_prod, rx_comp_prod, rx_sge_prod);
549}
550
Dmitry Kravkova9fccec2011-06-14 01:33:30 +0000551/* reload helper */
552int bnx2x_reload_if_running(struct net_device *dev);
553
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000554int bnx2x_change_mac_addr(struct net_device *dev, void *p);
555
556/* NAPI poll Rx part */
557int bnx2x_rx_int(struct bnx2x_fastpath *fp, int budget);
558
559/* NAPI poll Tx part */
Ariel Elior6383c0b2011-07-14 08:31:57 +0000560int bnx2x_tx_int(struct bnx2x *bp, struct bnx2x_fp_txdata *txdata);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000561
562/* suspend/resume callbacks */
563int bnx2x_suspend(struct pci_dev *pdev, pm_message_t state);
564int bnx2x_resume(struct pci_dev *pdev);
565
566/* Release IRQ vectors */
567void bnx2x_free_irq(struct bnx2x *bp);
568
Merav Sicron55c11942012-11-07 00:45:48 +0000569void bnx2x_free_fp_mem_cnic(struct bnx2x *bp);
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +0000570void bnx2x_free_fp_mem(struct bnx2x *bp);
Merav Sicron55c11942012-11-07 00:45:48 +0000571int bnx2x_alloc_fp_mem_cnic(struct bnx2x *bp);
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +0000572int bnx2x_alloc_fp_mem(struct bnx2x *bp);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000573void bnx2x_init_rx_rings(struct bnx2x *bp);
Merav Sicron55c11942012-11-07 00:45:48 +0000574void bnx2x_init_rx_rings_cnic(struct bnx2x *bp);
575void bnx2x_free_skbs_cnic(struct bnx2x *bp);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000576void bnx2x_free_skbs(struct bnx2x *bp);
577void bnx2x_netif_stop(struct bnx2x *bp, int disable_hw);
578void bnx2x_netif_start(struct bnx2x *bp);
Merav Sicron55c11942012-11-07 00:45:48 +0000579int bnx2x_load_cnic(struct bnx2x *bp);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000580
581/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000582 * bnx2x_enable_msix - set msix configuration.
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000583 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000584 * @bp: driver handle
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000585 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000586 * fills msix_table, requests vectors, updates num_queues
587 * according to number of available vectors.
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000588 */
Merav Sicron0e8d2ec2012-06-19 07:48:30 +0000589int bnx2x_enable_msix(struct bnx2x *bp);
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000590
591/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000592 * bnx2x_enable_msi - request msi mode from OS, updated internals accordingly
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000593 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000594 * @bp: driver handle
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000595 */
596int bnx2x_enable_msi(struct bnx2x *bp);
597
598/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000599 * bnx2x_poll - NAPI callback
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000600 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000601 * @napi: napi structure
602 * @budget:
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000603 *
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000604 */
605int bnx2x_poll(struct napi_struct *napi, int budget);
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000606
607/**
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300608 * bnx2x_low_latency_recv - LL callback
609 *
610 * @napi: napi structure
611 */
612int bnx2x_low_latency_recv(struct napi_struct *napi);
613
614/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000615 * bnx2x_alloc_mem_bp - allocate memories outsize main driver structure
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000616 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000617 * @bp: driver handle
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000618 */
Bill Pemberton0329aba2012-12-03 09:24:24 -0500619int bnx2x_alloc_mem_bp(struct bnx2x *bp);
Dmitry Kravkove8920672011-05-04 23:52:40 +0000620
621/**
622 * bnx2x_free_mem_bp - release memories outsize main driver structure
623 *
624 * @bp: driver handle
625 */
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000626void bnx2x_free_mem_bp(struct bnx2x *bp);
627
628/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000629 * bnx2x_change_mtu - change mtu netdev callback
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000630 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000631 * @dev: net device
632 * @new_mtu: requested mtu
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000633 *
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000634 */
635int bnx2x_change_mtu(struct net_device *dev, int new_mtu);
636
Merav Sicron55c11942012-11-07 00:45:48 +0000637#ifdef NETDEV_FCOE_WWNN
Vladislav Zolotarovbf61ee12011-07-21 07:56:51 +0000638/**
639 * bnx2x_fcoe_get_wwn - return the requested WWN value for this port
640 *
641 * @dev: net_device
642 * @wwn: output buffer
643 * @type: WWN type: NETDEV_FCOE_WWNN (node) or NETDEV_FCOE_WWPN (port)
644 *
645 */
646int bnx2x_fcoe_get_wwn(struct net_device *dev, u64 *wwn, int type);
647#endif
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000648
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000649netdev_features_t bnx2x_fix_features(struct net_device *dev,
Dmitry Kravkov621b4d62012-02-20 09:59:08 +0000650 netdev_features_t features);
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000651int bnx2x_set_features(struct net_device *dev, netdev_features_t features);
Michał Mirosław66371c42011-04-12 09:38:23 +0000652
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000653/**
Dmitry Kravkove8920672011-05-04 23:52:40 +0000654 * bnx2x_tx_timeout - tx timeout netdev callback
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000655 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000656 * @dev: net device
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000657 */
658void bnx2x_tx_timeout(struct net_device *dev);
659
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300660/*********************** Inlines **********************************/
661/*********************** Fast path ********************************/
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000662static inline void bnx2x_update_fpsb_idx(struct bnx2x_fastpath *fp)
663{
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000664 barrier(); /* status block is written to by the chip */
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000665 fp->fp_hc_idx = fp->sb_running_index[SM_RX_ID];
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000666}
667
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000668static inline void bnx2x_igu_ack_sb_gen(struct bnx2x *bp, u8 igu_sb_id,
669 u8 segment, u16 index, u8 op,
670 u8 update, u32 igu_addr)
671{
672 struct igu_regular cmd_data = {0};
673
674 cmd_data.sb_id_and_flags =
675 ((index << IGU_REGULAR_SB_INDEX_SHIFT) |
676 (segment << IGU_REGULAR_SEGMENT_ACCESS_SHIFT) |
677 (update << IGU_REGULAR_BUPDATE_SHIFT) |
678 (op << IGU_REGULAR_ENABLE_INT_SHIFT));
679
Merav Sicron51c1a582012-03-18 10:33:38 +0000680 DP(NETIF_MSG_INTR, "write 0x%08x to IGU addr 0x%x\n",
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000681 cmd_data.sb_id_and_flags, igu_addr);
682 REG_WR(bp, igu_addr, cmd_data.sb_id_and_flags);
683
684 /* Make sure that ACK is written */
685 mmiowb();
686 barrier();
687}
688
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000689static inline void bnx2x_hc_ack_sb(struct bnx2x *bp, u8 sb_id,
690 u8 storm, u16 index, u8 op, u8 update)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000691{
692 u32 hc_addr = (HC_REG_COMMAND_REG + BP_PORT(bp)*32 +
693 COMMAND_REG_INT_ACK);
694 struct igu_ack_register igu_ack;
695
696 igu_ack.status_block_index = index;
697 igu_ack.sb_id_and_flags =
698 ((sb_id << IGU_ACK_REGISTER_STATUS_BLOCK_ID_SHIFT) |
699 (storm << IGU_ACK_REGISTER_STORM_ID_SHIFT) |
700 (update << IGU_ACK_REGISTER_UPDATE_INDEX_SHIFT) |
701 (op << IGU_ACK_REGISTER_INTERRUPT_MODE_SHIFT));
702
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000703 REG_WR(bp, hc_addr, (*(u32 *)&igu_ack));
704
705 /* Make sure that ACK is written */
706 mmiowb();
707 barrier();
708}
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000709
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000710static inline void bnx2x_ack_sb(struct bnx2x *bp, u8 igu_sb_id, u8 storm,
711 u16 index, u8 op, u8 update)
712{
713 if (bp->common.int_block == INT_BLOCK_HC)
714 bnx2x_hc_ack_sb(bp, igu_sb_id, storm, index, op, update);
715 else {
716 u8 segment;
717
718 if (CHIP_INT_MODE_IS_BC(bp))
719 segment = storm;
720 else if (igu_sb_id != bp->igu_dsb_id)
721 segment = IGU_SEG_ACCESS_DEF;
722 else if (storm == ATTENTION_ID)
723 segment = IGU_SEG_ACCESS_ATTN;
724 else
725 segment = IGU_SEG_ACCESS_DEF;
726 bnx2x_igu_ack_sb(bp, igu_sb_id, segment, index, op, update);
727 }
728}
729
730static inline u16 bnx2x_hc_ack_int(struct bnx2x *bp)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000731{
732 u32 hc_addr = (HC_REG_COMMAND_REG + BP_PORT(bp)*32 +
733 COMMAND_REG_SIMD_MASK);
734 u32 result = REG_RD(bp, hc_addr);
735
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000736 barrier();
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000737 return result;
738}
739
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000740static inline u16 bnx2x_igu_ack_int(struct bnx2x *bp)
741{
742 u32 igu_addr = (BAR_IGU_INTMEM + IGU_REG_SISR_MDPC_WMASK_LSB_UPPER*8);
743 u32 result = REG_RD(bp, igu_addr);
744
Merav Sicron51c1a582012-03-18 10:33:38 +0000745 DP(NETIF_MSG_INTR, "read 0x%08x from IGU addr 0x%x\n",
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000746 result, igu_addr);
747
748 barrier();
749 return result;
750}
751
752static inline u16 bnx2x_ack_int(struct bnx2x *bp)
753{
754 barrier();
755 if (bp->common.int_block == INT_BLOCK_HC)
756 return bnx2x_hc_ack_int(bp);
757 else
758 return bnx2x_igu_ack_int(bp);
759}
760
Ariel Elior6383c0b2011-07-14 08:31:57 +0000761static inline int bnx2x_has_tx_work_unload(struct bnx2x_fp_txdata *txdata)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000762{
763 /* Tell compiler that consumer and producer can change */
764 barrier();
Ariel Elior6383c0b2011-07-14 08:31:57 +0000765 return txdata->tx_pkt_prod != txdata->tx_pkt_cons;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000766}
767
Ariel Elior6383c0b2011-07-14 08:31:57 +0000768static inline u16 bnx2x_tx_avail(struct bnx2x *bp,
769 struct bnx2x_fp_txdata *txdata)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000770{
771 s16 used;
772 u16 prod;
773 u16 cons;
774
Ariel Elior6383c0b2011-07-14 08:31:57 +0000775 prod = txdata->tx_bd_prod;
776 cons = txdata->tx_bd_cons;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000777
Yuval Mintz7b5342d2012-09-11 04:34:14 +0000778 used = SUB_S16(prod, cons);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000779
780#ifdef BNX2X_STOP_ON_ERROR
781 WARN_ON(used < 0);
Yuval Mintz7b5342d2012-09-11 04:34:14 +0000782 WARN_ON(used > txdata->tx_ring_size);
783 WARN_ON((txdata->tx_ring_size - used) > MAX_TX_AVAIL);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000784#endif
785
Yuval Mintz7b5342d2012-09-11 04:34:14 +0000786 return (s16)(txdata->tx_ring_size) - used;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000787}
788
Ariel Elior6383c0b2011-07-14 08:31:57 +0000789static inline int bnx2x_tx_queue_has_work(struct bnx2x_fp_txdata *txdata)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000790{
791 u16 hw_cons;
792
793 /* Tell compiler that status block fields can change */
794 barrier();
Ariel Elior6383c0b2011-07-14 08:31:57 +0000795 hw_cons = le16_to_cpu(*txdata->tx_cons_sb);
796 return hw_cons != txdata->tx_pkt_cons;
797}
798
799static inline bool bnx2x_has_tx_work(struct bnx2x_fastpath *fp)
800{
801 u8 cos;
802 for_each_cos_in_tx_queue(fp, cos)
Merav Sicron65565882012-06-19 07:48:26 +0000803 if (bnx2x_tx_queue_has_work(fp->txdata_ptr[cos]))
Ariel Elior6383c0b2011-07-14 08:31:57 +0000804 return true;
805 return false;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000806}
807
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000808static inline int bnx2x_has_rx_work(struct bnx2x_fastpath *fp)
809{
810 u16 rx_cons_sb;
811
812 /* Tell compiler that status block fields can change */
813 barrier();
814 rx_cons_sb = le16_to_cpu(*fp->rx_cons_sb);
815 if ((rx_cons_sb & MAX_RCQ_DESC_CNT) == MAX_RCQ_DESC_CNT)
816 rx_cons_sb++;
817 return (fp->rx_comp_cons != rx_cons_sb);
818}
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000819
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000820/**
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300821 * bnx2x_tx_disable - disables tx from stack point of view
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000822 *
Dmitry Kravkove8920672011-05-04 23:52:40 +0000823 * @bp: driver handle
Dmitry Kravkovf2e08992010-10-06 03:28:26 +0000824 */
825static inline void bnx2x_tx_disable(struct bnx2x *bp)
826{
827 netif_tx_disable(bp->dev);
828 netif_carrier_off(bp->dev);
829}
830
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000831static inline void bnx2x_free_rx_sge(struct bnx2x *bp,
832 struct bnx2x_fastpath *fp, u16 index)
833{
834 struct sw_rx_page *sw_buf = &fp->rx_page_ring[index];
835 struct page *page = sw_buf->page;
836 struct eth_rx_sge *sge = &fp->rx_sge_ring[index];
837
838 /* Skip "next page" elements */
839 if (!page)
840 return;
841
842 dma_unmap_page(&bp->pdev->dev, dma_unmap_addr(sw_buf, mapping),
Yuval Mintz924d75a2013-01-23 03:21:44 +0000843 SGE_PAGES, DMA_FROM_DEVICE);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000844 __free_pages(page, PAGES_PER_SGE_SHIFT);
845
846 sw_buf->page = NULL;
847 sge->addr_hi = 0;
848 sge->addr_lo = 0;
849}
850
Merav Sicron55c11942012-11-07 00:45:48 +0000851static inline void bnx2x_add_all_napi_cnic(struct bnx2x *bp)
852{
853 int i;
854
855 /* Add NAPI objects */
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300856 for_each_rx_queue_cnic(bp, i) {
Merav Sicron55c11942012-11-07 00:45:48 +0000857 netif_napi_add(bp->dev, &bnx2x_fp(bp, i, napi),
Eric Dumazet6fac4112013-03-05 15:57:47 +0000858 bnx2x_poll, NAPI_POLL_WEIGHT);
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300859 napi_hash_add(&bnx2x_fp(bp, i, napi));
860 }
Merav Sicron55c11942012-11-07 00:45:48 +0000861}
862
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000863static inline void bnx2x_add_all_napi(struct bnx2x *bp)
864{
865 int i;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000866
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000867 /* Add NAPI objects */
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300868 for_each_eth_queue(bp, i) {
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000869 netif_napi_add(bp->dev, &bnx2x_fp(bp, i, napi),
Eric Dumazet6fac4112013-03-05 15:57:47 +0000870 bnx2x_poll, NAPI_POLL_WEIGHT);
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300871 napi_hash_add(&bnx2x_fp(bp, i, napi));
872 }
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000873}
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000874
Merav Sicron55c11942012-11-07 00:45:48 +0000875static inline void bnx2x_del_all_napi_cnic(struct bnx2x *bp)
876{
877 int i;
878
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300879 for_each_rx_queue_cnic(bp, i) {
880 napi_hash_del(&bnx2x_fp(bp, i, napi));
Merav Sicron55c11942012-11-07 00:45:48 +0000881 netif_napi_del(&bnx2x_fp(bp, i, napi));
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300882 }
Merav Sicron55c11942012-11-07 00:45:48 +0000883}
884
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000885static inline void bnx2x_del_all_napi(struct bnx2x *bp)
886{
887 int i;
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000888
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300889 for_each_eth_queue(bp, i) {
890 napi_hash_del(&bnx2x_fp(bp, i, napi));
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000891 netif_napi_del(&bnx2x_fp(bp, i, napi));
Dmitry Kravkov8f20aa52013-06-19 01:36:04 +0300892 }
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000893}
894
Ariel Elior1ab44342013-01-01 05:22:23 +0000895int bnx2x_set_int_mode(struct bnx2x *bp);
Merav Sicron0e8d2ec2012-06-19 07:48:30 +0000896
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000897static inline void bnx2x_disable_msi(struct bnx2x *bp)
898{
899 if (bp->flags & USING_MSIX_FLAG) {
900 pci_disable_msix(bp->pdev);
Dmitry Kravkov30a5de72012-04-03 18:41:26 +0000901 bp->flags &= ~(USING_MSIX_FLAG | USING_SINGLE_MSIX_FLAG);
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000902 } else if (bp->flags & USING_MSI_FLAG) {
903 pci_disable_msi(bp->pdev);
904 bp->flags &= ~USING_MSI_FLAG;
905 }
906}
907
908static inline int bnx2x_calc_num_queues(struct bnx2x *bp)
909{
910 return num_queues ?
911 min_t(int, num_queues, BNX2X_MAX_QUEUES(bp)) :
Yuval Mintz7d515412012-07-01 03:18:59 +0000912 min_t(int, netif_get_num_default_rss_queues(),
913 BNX2X_MAX_QUEUES(bp));
Dmitry Kravkovd6214d72010-10-06 03:32:10 +0000914}
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000915
916static inline void bnx2x_clear_sge_mask_next_elems(struct bnx2x_fastpath *fp)
917{
918 int i, j;
919
920 for (i = 1; i <= NUM_RX_SGE_PAGES; i++) {
921 int idx = RX_SGE_CNT * i - 1;
922
923 for (j = 0; j < 2; j++) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300924 BIT_VEC64_CLEAR_BIT(fp->sge_mask, idx);
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000925 idx--;
926 }
927 }
928}
929
930static inline void bnx2x_init_sge_ring_bit_mask(struct bnx2x_fastpath *fp)
931{
932 /* 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 +0000933 memset(fp->sge_mask, 0xff, sizeof(fp->sge_mask));
Dmitry Kravkov523224a2010-10-06 03:23:26 +0000934
935 /* Clear the two last indices in the page to 1:
936 these are the indices that correspond to the "next" element,
937 hence will never be indicated and should be removed from
938 the calculations. */
939 bnx2x_clear_sge_mask_next_elems(fp);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000940}
941
Eric Dumazete52fcb22011-11-14 06:05:34 +0000942/* note that we are not allocating a new buffer,
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000943 * we are just moving one from cons to prod
944 * we are not creating a new mapping,
945 * so there is no need to check for dma_mapping_error().
946 */
Eric Dumazete52fcb22011-11-14 06:05:34 +0000947static inline void bnx2x_reuse_rx_data(struct bnx2x_fastpath *fp,
Dmitry Kravkov749a8502010-10-06 03:29:05 +0000948 u16 cons, u16 prod)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000949{
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000950 struct sw_rx_bd *cons_rx_buf = &fp->rx_buf_ring[cons];
951 struct sw_rx_bd *prod_rx_buf = &fp->rx_buf_ring[prod];
952 struct eth_rx_bd *cons_bd = &fp->rx_desc_ring[cons];
953 struct eth_rx_bd *prod_bd = &fp->rx_desc_ring[prod];
954
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000955 dma_unmap_addr_set(prod_rx_buf, mapping,
956 dma_unmap_addr(cons_rx_buf, mapping));
Eric Dumazete52fcb22011-11-14 06:05:34 +0000957 prod_rx_buf->data = cons_rx_buf->data;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +0000958 *prod_bd = *cons_bd;
959}
Dmitry Kravkovf85582f2010-10-06 03:34:21 +0000960
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300961/************************* Init ******************************************/
962
Yuval Mintzb475d782012-04-03 18:41:29 +0000963/* returns func by VN for current port */
964static inline int func_by_vn(struct bnx2x *bp, int vn)
965{
966 return 2 * vn + BP_PORT(bp);
967}
968
Merav Sicron5d317c6a2012-06-19 07:48:24 +0000969static inline int bnx2x_config_rss_eth(struct bnx2x *bp, bool config_hash)
Dmitry Kravkov96305232012-04-03 18:41:30 +0000970{
Merav Sicron5d317c6a2012-06-19 07:48:24 +0000971 return bnx2x_config_rss_pf(bp, &bp->rss_conf_obj, config_hash);
Dmitry Kravkov96305232012-04-03 18:41:30 +0000972}
973
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300974/**
975 * bnx2x_func_start - init function
976 *
977 * @bp: driver handle
978 *
979 * Must be called before sending CLIENT_SETUP for the first client.
980 */
981static inline int bnx2x_func_start(struct bnx2x *bp)
982{
Yuval Mintz3b603062012-03-18 10:33:39 +0000983 struct bnx2x_func_state_params func_params = {NULL};
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +0300984 struct bnx2x_func_start_params *start_params =
985 &func_params.params.start;
986
987 /* Prepare parameters for function state transitions */
988 __set_bit(RAMROD_COMP_WAIT, &func_params.ramrod_flags);
989
990 func_params.f_obj = &bp->func_obj;
991 func_params.cmd = BNX2X_F_CMD_START;
992
993 /* Function parameters */
994 start_params->mf_mode = bp->mf_mode;
995 start_params->sd_vlan_tag = bp->mf_ov;
Ariel Elior8d7b0272012-01-26 06:01:45 +0000996
997 if (CHIP_IS_E2(bp) || CHIP_IS_E3(bp))
Ariel Elior6383c0b2011-07-14 08:31:57 +0000998 start_params->network_cos_mode = STATIC_COS;
Ariel Elior8d7b0272012-01-26 06:01:45 +0000999 else /* CHIP_IS_E1X */
1000 start_params->network_cos_mode = FW_WRR;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001001
Dmitry Kravkov1bc277f2013-03-18 06:51:04 +00001002 start_params->gre_tunnel_mode = IPGRE_TUNNEL;
1003 start_params->gre_tunnel_rss = GRE_INNER_HEADERS_RSS;
1004
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001005 return bnx2x_func_state_change(bp, &func_params);
1006}
1007
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001008/**
1009 * bnx2x_set_fw_mac_addr - fill in a MAC address in FW format
1010 *
1011 * @fw_hi: pointer to upper part
1012 * @fw_mid: pointer to middle part
1013 * @fw_lo: pointer to lower part
1014 * @mac: pointer to MAC address
1015 */
Yuval Mintz86564c32013-01-23 03:21:50 +00001016static inline void bnx2x_set_fw_mac_addr(__le16 *fw_hi, __le16 *fw_mid,
1017 __le16 *fw_lo, u8 *mac)
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001018{
1019 ((u8 *)fw_hi)[0] = mac[1];
1020 ((u8 *)fw_hi)[1] = mac[0];
1021 ((u8 *)fw_mid)[0] = mac[3];
1022 ((u8 *)fw_mid)[1] = mac[2];
1023 ((u8 *)fw_lo)[0] = mac[5];
1024 ((u8 *)fw_lo)[1] = mac[4];
1025}
1026
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001027static inline void bnx2x_free_rx_sge_range(struct bnx2x *bp,
1028 struct bnx2x_fastpath *fp, int last)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001029{
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001030 int i;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001031
Dmitry Kravkovb3b83c32011-05-04 23:50:33 +00001032 if (fp->disable_tpa)
1033 return;
1034
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001035 for (i = 0; i < last; i++)
1036 bnx2x_free_rx_sge(bp, fp, i);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001037}
1038
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001039static inline void bnx2x_set_next_page_rx_bd(struct bnx2x_fastpath *fp)
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001040{
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001041 int i;
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001042
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001043 for (i = 1; i <= NUM_RX_RINGS; i++) {
1044 struct eth_rx_bd *rx_bd;
1045
1046 rx_bd = &fp->rx_desc_ring[RX_DESC_CNT * i - 2];
1047 rx_bd->addr_hi =
1048 cpu_to_le32(U64_HI(fp->rx_desc_mapping +
1049 BCM_PAGE_SIZE*(i % NUM_RX_RINGS)));
1050 rx_bd->addr_lo =
1051 cpu_to_le32(U64_LO(fp->rx_desc_mapping +
1052 BCM_PAGE_SIZE*(i % NUM_RX_RINGS)));
1053 }
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001054}
1055
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001056/* Statistics ID are global per chip/path, while Client IDs for E1x are per
1057 * port.
1058 */
1059static inline u8 bnx2x_stats_id(struct bnx2x_fastpath *fp)
1060{
Yuval Mintzde5c3742012-03-12 11:22:07 +00001061 struct bnx2x *bp = fp->bp;
1062 if (!CHIP_IS_E1x(bp)) {
Yuval Mintzde5c3742012-03-12 11:22:07 +00001063 /* there are special statistics counters for FCoE 136..140 */
1064 if (IS_FCOE_FP(fp))
1065 return bp->cnic_base_cl_id + (bp->pf_num >> 1);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001066 return fp->cl_id;
Yuval Mintzde5c3742012-03-12 11:22:07 +00001067 }
1068 return fp->cl_id + BP_PORT(bp) * FP_SB_MAX_E1x;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001069}
1070
1071static inline void bnx2x_init_vlan_mac_fp_objs(struct bnx2x_fastpath *fp,
1072 bnx2x_obj_type obj_type)
1073{
1074 struct bnx2x *bp = fp->bp;
1075
1076 /* Configure classification DBs */
Barak Witkowski15192a82012-06-19 07:48:28 +00001077 bnx2x_init_mac_obj(bp, &bnx2x_sp_obj(bp, fp).mac_obj, fp->cl_id,
1078 fp->cid, BP_FUNC(bp), bnx2x_sp(bp, mac_rdata),
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001079 bnx2x_sp_mapping(bp, mac_rdata),
1080 BNX2X_FILTER_MAC_PENDING,
1081 &bp->sp_state, obj_type,
1082 &bp->macs_pool);
1083}
1084
1085/**
1086 * bnx2x_get_path_func_num - get number of active functions
1087 *
1088 * @bp: driver handle
1089 *
1090 * Calculates the number of active (not hidden) functions on the
1091 * current path.
1092 */
1093static inline u8 bnx2x_get_path_func_num(struct bnx2x *bp)
1094{
1095 u8 func_num = 0, i;
1096
1097 /* 57710 has only one function per-port */
1098 if (CHIP_IS_E1(bp))
1099 return 1;
1100
1101 /* Calculate a number of functions enabled on the current
1102 * PATH/PORT.
1103 */
1104 if (CHIP_REV_IS_SLOW(bp)) {
1105 if (IS_MF(bp))
1106 func_num = 4;
1107 else
1108 func_num = 2;
1109 } else {
1110 for (i = 0; i < E1H_FUNC_MAX / 2; i++) {
1111 u32 func_config =
1112 MF_CFG_RD(bp,
1113 func_mf_config[BP_PORT(bp) + 2 * i].
1114 config);
1115 func_num +=
1116 ((func_config & FUNC_MF_CFG_FUNC_HIDE) ? 0 : 1);
1117 }
1118 }
1119
1120 WARN_ON(!func_num);
1121
1122 return func_num;
1123}
1124
1125static inline void bnx2x_init_bp_objs(struct bnx2x *bp)
1126{
1127 /* RX_MODE controlling object */
1128 bnx2x_init_rx_mode_obj(bp, &bp->rx_mode_obj);
1129
1130 /* multicast configuration controlling object */
1131 bnx2x_init_mcast_obj(bp, &bp->mcast_obj, bp->fp->cl_id, bp->fp->cid,
1132 BP_FUNC(bp), BP_FUNC(bp),
1133 bnx2x_sp(bp, mcast_rdata),
1134 bnx2x_sp_mapping(bp, mcast_rdata),
1135 BNX2X_FILTER_MCAST_PENDING, &bp->sp_state,
1136 BNX2X_OBJ_TYPE_RX);
1137
1138 /* Setup CAM credit pools */
1139 bnx2x_init_mac_credit_pool(bp, &bp->macs_pool, BP_FUNC(bp),
1140 bnx2x_get_path_func_num(bp));
1141
Ariel Eliorb56e9672013-01-01 05:22:32 +00001142 bnx2x_init_vlan_credit_pool(bp, &bp->vlans_pool, BP_ABS_FUNC(bp)>>1,
1143 bnx2x_get_path_func_num(bp));
1144
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001145 /* RSS configuration object */
1146 bnx2x_init_rss_config_obj(bp, &bp->rss_conf_obj, bp->fp->cl_id,
1147 bp->fp->cid, BP_FUNC(bp), BP_FUNC(bp),
1148 bnx2x_sp(bp, rss_rdata),
1149 bnx2x_sp_mapping(bp, rss_rdata),
1150 BNX2X_FILTER_RSS_CONF_PENDING, &bp->sp_state,
1151 BNX2X_OBJ_TYPE_RX);
1152}
1153
1154static inline u8 bnx2x_fp_qzone_id(struct bnx2x_fastpath *fp)
1155{
1156 if (CHIP_IS_E1x(fp->bp))
1157 return fp->cl_id + BP_PORT(fp->bp) * ETH_MAX_RX_CLIENTS_E1H;
1158 else
1159 return fp->cl_id;
1160}
1161
Ariel Elior64112802013-01-07 00:50:23 +00001162u32 bnx2x_rx_ustorm_prods_offset(struct bnx2x_fastpath *fp);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001163
Ariel Elior6383c0b2011-07-14 08:31:57 +00001164static inline void bnx2x_init_txdata(struct bnx2x *bp,
Merav Sicron65565882012-06-19 07:48:26 +00001165 struct bnx2x_fp_txdata *txdata, u32 cid,
1166 int txq_index, __le16 *tx_cons_sb,
1167 struct bnx2x_fastpath *fp)
Ariel Elior6383c0b2011-07-14 08:31:57 +00001168{
1169 txdata->cid = cid;
1170 txdata->txq_index = txq_index;
1171 txdata->tx_cons_sb = tx_cons_sb;
Merav Sicron65565882012-06-19 07:48:26 +00001172 txdata->parent_fp = fp;
Yuval Mintz7b5342d2012-09-11 04:34:14 +00001173 txdata->tx_ring_size = IS_FCOE_FP(fp) ? MAX_TX_AVAIL : bp->tx_ring_size;
Ariel Elior6383c0b2011-07-14 08:31:57 +00001174
Merav Sicron51c1a582012-03-18 10:33:38 +00001175 DP(NETIF_MSG_IFUP, "created tx data cid %d, txq %d\n",
Ariel Elior6383c0b2011-07-14 08:31:57 +00001176 txdata->cid, txdata->txq_index);
1177}
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001178
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001179static inline u8 bnx2x_cnic_eth_cl_id(struct bnx2x *bp, u8 cl_idx)
1180{
1181 return bp->cnic_base_cl_id + cl_idx +
David S. Miller1805b2f2011-10-24 18:18:09 -04001182 (bp->pf_num >> 1) * BNX2X_MAX_CNIC_ETH_CL_ID_IDX;
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001183}
1184
1185static inline u8 bnx2x_cnic_fw_sb_id(struct bnx2x *bp)
1186{
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001187 /* the 'first' id is allocated for the cnic */
1188 return bp->base_fw_ndsb;
1189}
1190
1191static inline u8 bnx2x_cnic_igu_sb_id(struct bnx2x *bp)
1192{
1193 return bp->igu_base_sb;
1194}
1195
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001196static inline void bnx2x_init_fcoe_fp(struct bnx2x *bp)
1197{
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001198 struct bnx2x_fastpath *fp = bnx2x_fcoe_fp(bp);
1199 unsigned long q_type = 0;
1200
Dmitry Kravkovf233caf2011-11-13 04:34:22 +00001201 bnx2x_fcoe(bp, rx_queue) = BNX2X_NUM_ETH_QUEUES(bp);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001202 bnx2x_fcoe(bp, cl_id) = bnx2x_cnic_eth_cl_id(bp,
1203 BNX2X_FCOE_ETH_CL_ID_IDX);
Merav Sicron37ae41a2012-06-19 07:48:27 +00001204 bnx2x_fcoe(bp, cid) = BNX2X_FCOE_ETH_CID(bp);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001205 bnx2x_fcoe(bp, fw_sb_id) = DEF_SB_ID;
1206 bnx2x_fcoe(bp, igu_sb_id) = bp->igu_dsb_id;
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001207 bnx2x_fcoe(bp, rx_cons_sb) = BNX2X_FCOE_L2_RX_INDEX;
Merav Sicron65565882012-06-19 07:48:26 +00001208 bnx2x_init_txdata(bp, bnx2x_fcoe(bp, txdata_ptr[0]),
1209 fp->cid, FCOE_TXQ_IDX(bp), BNX2X_FCOE_L2_TX_INDEX,
1210 fp);
Ariel Elior6383c0b2011-07-14 08:31:57 +00001211
Merav Sicron51c1a582012-03-18 10:33:38 +00001212 DP(NETIF_MSG_IFUP, "created fcoe tx data (fp index %d)\n", fp->index);
Ariel Elior6383c0b2011-07-14 08:31:57 +00001213
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001214 /* qZone id equals to FW (per path) client id */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001215 bnx2x_fcoe(bp, cl_qzone_id) = bnx2x_fp_qzone_id(fp);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001216 /* init shortcut */
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001217 bnx2x_fcoe(bp, ustorm_rx_prods_offset) =
1218 bnx2x_rx_ustorm_prods_offset(fp);
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001219
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001220 /* Configure Queue State object */
1221 __set_bit(BNX2X_Q_TYPE_HAS_RX, &q_type);
1222 __set_bit(BNX2X_Q_TYPE_HAS_TX, &q_type);
Ariel Elior6383c0b2011-07-14 08:31:57 +00001223
1224 /* No multi-CoS for FCoE L2 client */
1225 BUG_ON(fp->max_cos != 1);
1226
Barak Witkowski15192a82012-06-19 07:48:28 +00001227 bnx2x_init_queue_obj(bp, &bnx2x_sp_obj(bp, fp).q_obj, fp->cl_id,
1228 &fp->cid, 1, BP_FUNC(bp), bnx2x_sp(bp, q_rdata),
Ariel Elior6383c0b2011-07-14 08:31:57 +00001229 bnx2x_sp_mapping(bp, q_rdata), q_type);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001230
Merav Sicron51c1a582012-03-18 10:33:38 +00001231 DP(NETIF_MSG_IFUP,
1232 "queue[%d]: bnx2x_init_sb(%p,%p) cl_id %d fw_sb %d igu_sb %d\n",
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001233 fp->index, bp, fp->status_blk.e2_sb, fp->cl_id, fp->fw_sb_id,
1234 fp->igu_sb_id);
Vladislav Zolotarovec6ba942010-12-13 05:44:01 +00001235}
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001236
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001237static inline int bnx2x_clean_tx_queue(struct bnx2x *bp,
Ariel Elior6383c0b2011-07-14 08:31:57 +00001238 struct bnx2x_fp_txdata *txdata)
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001239{
1240 int cnt = 1000;
1241
Ariel Elior6383c0b2011-07-14 08:31:57 +00001242 while (bnx2x_has_tx_work_unload(txdata)) {
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001243 if (!cnt) {
Merav Sicron51c1a582012-03-18 10:33:38 +00001244 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 +00001245 txdata->txq_index, txdata->tx_pkt_prod,
1246 txdata->tx_pkt_cons);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001247#ifdef BNX2X_STOP_ON_ERROR
1248 bnx2x_panic();
1249 return -EBUSY;
1250#else
1251 break;
1252#endif
1253 }
1254 cnt--;
Yuval Mintz0926d492013-01-23 03:21:45 +00001255 usleep_range(1000, 2000);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001256 }
1257
1258 return 0;
1259}
1260
Yaniv Rosner1ac9e422011-05-31 21:26:11 +00001261int bnx2x_get_link_cfg_idx(struct bnx2x *bp);
1262
Dmitry Kravkov523224a2010-10-06 03:23:26 +00001263static inline void __storm_memset_struct(struct bnx2x *bp,
1264 u32 addr, size_t size, u32 *data)
1265{
1266 int i;
1267 for (i = 0; i < size/4; i++)
1268 REG_WR(bp, addr + (i * 4), data[i]);
1269}
1270
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001271/**
1272 * bnx2x_wait_sp_comp - wait for the outstanding SP commands.
1273 *
1274 * @bp: driver handle
1275 * @mask: bits that need to be cleared
1276 */
1277static inline bool bnx2x_wait_sp_comp(struct bnx2x *bp, unsigned long mask)
1278{
1279 int tout = 5000; /* Wait for 5 secs tops */
1280
1281 while (tout--) {
1282 smp_mb();
1283 netif_addr_lock_bh(bp->dev);
1284 if (!(bp->sp_state & mask)) {
1285 netif_addr_unlock_bh(bp->dev);
1286 return true;
1287 }
1288 netif_addr_unlock_bh(bp->dev);
1289
Yuval Mintz0926d492013-01-23 03:21:45 +00001290 usleep_range(1000, 2000);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001291 }
1292
1293 smp_mb();
1294
1295 netif_addr_lock_bh(bp->dev);
1296 if (bp->sp_state & mask) {
Merav Sicron51c1a582012-03-18 10:33:38 +00001297 BNX2X_ERR("Filtering completion timed out. sp_state 0x%lx, mask 0x%lx\n",
1298 bp->sp_state, mask);
Vlad Zolotarov619c5cb2011-06-14 14:33:44 +03001299 netif_addr_unlock_bh(bp->dev);
1300 return false;
1301 }
1302 netif_addr_unlock_bh(bp->dev);
1303
1304 return true;
1305}
1306
1307/**
1308 * bnx2x_set_ctx_validation - set CDU context validation values
1309 *
1310 * @bp: driver handle
1311 * @cxt: context of the connection on the host memory
1312 * @cid: SW CID of the connection to be configured
1313 */
1314void bnx2x_set_ctx_validation(struct bnx2x *bp, struct eth_context *cxt,
1315 u32 cid);
1316
1317void bnx2x_update_coalesce_sb_index(struct bnx2x *bp, u8 fw_sb_id,
1318 u8 sb_index, u8 disable, u16 usec);
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001319void bnx2x_acquire_phy_lock(struct bnx2x *bp);
1320void bnx2x_release_phy_lock(struct bnx2x *bp);
1321
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001322/**
Dmitry Kravkove8920672011-05-04 23:52:40 +00001323 * bnx2x_extract_max_cfg - extract MAX BW part from MF configuration.
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001324 *
Dmitry Kravkove8920672011-05-04 23:52:40 +00001325 * @bp: driver handle
1326 * @mf_cfg: MF configuration
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001327 *
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001328 */
1329static inline u16 bnx2x_extract_max_cfg(struct bnx2x *bp, u32 mf_cfg)
1330{
1331 u16 max_cfg = (mf_cfg & FUNC_MF_CFG_MAX_BW_MASK) >>
1332 FUNC_MF_CFG_MAX_BW_SHIFT;
1333 if (!max_cfg) {
Merav Sicron51c1a582012-03-18 10:33:38 +00001334 DP(NETIF_MSG_IFUP | BNX2X_MSG_ETHTOOL,
Michal Schmidt96b0acc2011-08-18 21:51:01 -07001335 "Max BW configured to 0 - using 100 instead\n");
Dmitry Kravkovfaa6fcb2011-02-28 03:37:20 +00001336 max_cfg = 100;
1337 }
1338 return max_cfg;
1339}
1340
Dmitry Kravkov621b4d62012-02-20 09:59:08 +00001341/* checks if HW supports GRO for given MTU */
1342static inline bool bnx2x_mtu_allows_gro(int mtu)
1343{
1344 /* gro frags per page */
1345 int fpp = SGE_PAGE_SIZE / (mtu - ETH_MAX_TPA_HEADER_SIZE);
1346
1347 /*
Yuval Mintz16a5fd92013-06-02 00:06:18 +00001348 * 1. Number of frags should not grow above MAX_SKB_FRAGS
1349 * 2. Frag must fit the page
Dmitry Kravkov621b4d62012-02-20 09:59:08 +00001350 */
1351 return mtu <= SGE_PAGE_SIZE && (U_ETH_SGL_SIZE * fpp) <= MAX_SKB_FRAGS;
1352}
Merav Sicron55c11942012-11-07 00:45:48 +00001353
Mintz Yuval1355b702012-02-15 02:10:22 +00001354/**
Dmitry Kravkovb306f5e2011-11-13 04:34:24 +00001355 * bnx2x_get_iscsi_info - update iSCSI params according to licensing info.
1356 *
1357 * @bp: driver handle
1358 *
1359 */
1360void bnx2x_get_iscsi_info(struct bnx2x *bp);
Dmitry Kravkov00253a82011-11-13 04:34:25 +00001361
1362/**
1363 * bnx2x_link_sync_notify - send notification to other functions.
1364 *
1365 * @bp: driver handle
1366 *
1367 */
1368static inline void bnx2x_link_sync_notify(struct bnx2x *bp)
1369{
1370 int func;
1371 int vn;
1372
1373 /* Set the attention towards other drivers on the same port */
1374 for (vn = VN_0; vn < BP_MAX_VN_NUM(bp); vn++) {
1375 if (vn == BP_VN(bp))
1376 continue;
1377
1378 func = func_by_vn(bp, vn);
1379 REG_WR(bp, MISC_REG_AEU_GENERAL_ATTN_0 +
1380 (LINK_SYNC_ATTENTION_BIT_FUNC_0 + func)*4, 1);
1381 }
1382}
1383
1384/**
1385 * bnx2x_update_drv_flags - update flags in shmem
1386 *
1387 * @bp: driver handle
1388 * @flags: flags to update
1389 * @set: set or clear
1390 *
1391 */
1392static inline void bnx2x_update_drv_flags(struct bnx2x *bp, u32 flags, u32 set)
1393{
1394 if (SHMEM2_HAS(bp, drv_flags)) {
1395 u32 drv_flags;
Ariel Eliorf16da432012-01-26 06:01:50 +00001396 bnx2x_acquire_hw_lock(bp, HW_LOCK_RESOURCE_DRV_FLAGS);
Dmitry Kravkov00253a82011-11-13 04:34:25 +00001397 drv_flags = SHMEM2_RD(bp, drv_flags);
1398
1399 if (set)
1400 SET_FLAGS(drv_flags, flags);
1401 else
1402 RESET_FLAGS(drv_flags, flags);
1403
1404 SHMEM2_WR(bp, drv_flags, drv_flags);
Merav Sicron51c1a582012-03-18 10:33:38 +00001405 DP(NETIF_MSG_IFUP, "drv_flags 0x%08x\n", drv_flags);
Ariel Eliorf16da432012-01-26 06:01:50 +00001406 bnx2x_release_hw_lock(bp, HW_LOCK_RESOURCE_DRV_FLAGS);
Dmitry Kravkov00253a82011-11-13 04:34:25 +00001407 }
1408}
1409
Dmitry Kravkov614c76d2011-11-28 12:31:49 +00001410static inline bool bnx2x_is_valid_ether_addr(struct bnx2x *bp, u8 *addr)
1411{
Merav Sicron55c11942012-11-07 00:45:48 +00001412 if (is_valid_ether_addr(addr) ||
1413 (is_zero_ether_addr(addr) &&
1414 (IS_MF_STORAGE_SD(bp) || IS_MF_FCOE_AFEX(bp))))
Dmitry Kravkov614c76d2011-11-28 12:31:49 +00001415 return true;
Merav Sicron55c11942012-11-07 00:45:48 +00001416
Dmitry Kravkov614c76d2011-11-28 12:31:49 +00001417 return false;
1418}
1419
Ariel Elior8ca5e172013-01-01 05:22:34 +00001420/**
Yuval Mintz2de67432013-01-23 03:21:43 +00001421 * bnx2x_fill_fw_str - Fill buffer with FW version string
Ariel Elior8ca5e172013-01-01 05:22:34 +00001422 *
1423 * @bp: driver handle
1424 * @buf: character buffer to fill with the fw name
1425 * @buf_len: length of the above buffer
1426 *
1427 */
1428void bnx2x_fill_fw_str(struct bnx2x *bp, char *buf, size_t buf_len);
Yuval Mintz7fa6f3402013-03-20 05:21:28 +00001429
1430int bnx2x_drain_tx_queues(struct bnx2x *bp);
1431void bnx2x_squeeze_objects(struct bnx2x *bp);
1432
Dmitry Kravkov9f6c9252010-07-27 12:34:34 +00001433#endif /* BNX2X_CMN_H */