blob: 746fed4099c8881ec839772be8a61bde12349d00 [file] [log] [blame]
Yuval Mintz25c089d2015-10-26 11:02:26 +02001/* QLogic qed NIC Driver
Mintz, Yuvale8f1cb52017-01-01 13:57:00 +02002 * Copyright (c) 2015-2017 QLogic Corporation
Yuval Mintz25c089d2015-10-26 11:02:26 +02003 *
Mintz, Yuvale8f1cb52017-01-01 13:57:00 +02004 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and /or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
Yuval Mintz25c089d2015-10-26 11:02:26 +020031 */
32
33#include <linux/types.h>
34#include <asm/byteorder.h>
35#include <asm/param.h>
36#include <linux/delay.h>
37#include <linux/dma-mapping.h>
38#include <linux/etherdevice.h>
39#include <linux/interrupt.h>
40#include <linux/kernel.h>
41#include <linux/module.h>
42#include <linux/pci.h>
43#include <linux/slab.h>
44#include <linux/stddef.h>
45#include <linux/string.h>
46#include <linux/version.h>
47#include <linux/workqueue.h>
48#include <linux/bitops.h>
49#include <linux/bug.h>
Mintz, Yuval3da7a372016-11-29 16:47:06 +020050#include <linux/vmalloc.h>
Yuval Mintz25c089d2015-10-26 11:02:26 +020051#include "qed.h"
52#include <linux/qed/qed_chain.h>
53#include "qed_cxt.h"
54#include "qed_dev_api.h"
55#include <linux/qed/qed_eth_if.h>
56#include "qed_hsi.h"
57#include "qed_hw.h"
58#include "qed_int.h"
Yuval Mintzdacd88d2016-05-11 16:36:16 +030059#include "qed_l2.h"
Yuval Mintz86622ee2016-03-02 20:26:02 +020060#include "qed_mcp.h"
Yuval Mintz25c089d2015-10-26 11:02:26 +020061#include "qed_reg_addr.h"
62#include "qed_sp.h"
Yuval Mintz1408cc1f2016-05-11 16:36:14 +030063#include "qed_sriov.h"
Yuval Mintz25c089d2015-10-26 11:02:26 +020064
Manish Chopra088c8612016-03-04 12:35:05 -050065
Manish Chopracee4d262015-10-26 11:02:28 +020066#define QED_MAX_SGES_NUM 16
67#define CRC32_POLY 0x1edc6f41
68
Mintz, Yuval3da7a372016-11-29 16:47:06 +020069void qed_eth_queue_cid_release(struct qed_hwfn *p_hwfn,
70 struct qed_queue_cid *p_cid)
71{
72 /* VFs' CIDs are 0-based in PF-view, and uninitialized on VF */
73 if (!p_cid->is_vf && IS_PF(p_hwfn->cdev))
74 qed_cxt_release_cid(p_hwfn, p_cid->cid);
75 vfree(p_cid);
76}
77
78/* The internal is only meant to be directly called by PFs initializeing CIDs
79 * for their VFs.
80 */
81struct qed_queue_cid *
82_qed_eth_queue_to_cid(struct qed_hwfn *p_hwfn,
83 u16 opaque_fid,
84 u32 cid,
85 u8 vf_qid,
86 struct qed_queue_start_common_params *p_params)
87{
88 bool b_is_same = (p_hwfn->hw_info.opaque_fid == opaque_fid);
89 struct qed_queue_cid *p_cid;
90 int rc;
91
92 p_cid = vmalloc(sizeof(*p_cid));
93 if (!p_cid)
94 return NULL;
95 memset(p_cid, 0, sizeof(*p_cid));
96
97 p_cid->opaque_fid = opaque_fid;
98 p_cid->cid = cid;
99 p_cid->vf_qid = vf_qid;
100 p_cid->rel = *p_params;
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200101 p_cid->p_owner = p_hwfn;
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200102
103 /* Don't try calculating the absolute indices for VFs */
104 if (IS_VF(p_hwfn->cdev)) {
105 p_cid->abs = p_cid->rel;
106 goto out;
107 }
108
109 /* Calculate the engine-absolute indices of the resources.
110 * This would guarantee they're valid later on.
111 * In some cases [SBs] we already have the right values.
112 */
113 rc = qed_fw_vport(p_hwfn, p_cid->rel.vport_id, &p_cid->abs.vport_id);
114 if (rc)
115 goto fail;
116
117 rc = qed_fw_l2_queue(p_hwfn, p_cid->rel.queue_id, &p_cid->abs.queue_id);
118 if (rc)
119 goto fail;
120
121 /* In case of a PF configuring its VF's queues, the stats-id is already
122 * absolute [since there's a single index that's suitable per-VF].
123 */
124 if (b_is_same) {
125 rc = qed_fw_vport(p_hwfn, p_cid->rel.stats_id,
126 &p_cid->abs.stats_id);
127 if (rc)
128 goto fail;
129 } else {
130 p_cid->abs.stats_id = p_cid->rel.stats_id;
131 }
132
133 /* SBs relevant information was already provided as absolute */
134 p_cid->abs.sb = p_cid->rel.sb;
135 p_cid->abs.sb_idx = p_cid->rel.sb_idx;
136
137 /* This is tricky - we're actually interested in whehter this is a PF
138 * entry meant for the VF.
139 */
140 if (!b_is_same)
141 p_cid->is_vf = true;
142out:
143 DP_VERBOSE(p_hwfn,
144 QED_MSG_SP,
145 "opaque_fid: %04x CID %08x vport %02x [%02x] qzone %04x [%04x] stats %02x [%02x] SB %04x PI %02x\n",
146 p_cid->opaque_fid,
147 p_cid->cid,
148 p_cid->rel.vport_id,
149 p_cid->abs.vport_id,
150 p_cid->rel.queue_id,
151 p_cid->abs.queue_id,
152 p_cid->rel.stats_id,
153 p_cid->abs.stats_id, p_cid->abs.sb, p_cid->abs.sb_idx);
154
155 return p_cid;
156
157fail:
158 vfree(p_cid);
159 return NULL;
160}
161
162static struct qed_queue_cid *qed_eth_queue_to_cid(struct qed_hwfn *p_hwfn,
163 u16 opaque_fid, struct
164 qed_queue_start_common_params
165 *p_params)
166{
167 struct qed_queue_cid *p_cid;
168 u32 cid = 0;
169
170 /* Get a unique firmware CID for this queue, in case it's a PF.
171 * VF's don't need a CID as the queue configuration will be done
172 * by PF.
173 */
174 if (IS_PF(p_hwfn->cdev)) {
175 if (qed_cxt_acquire_cid(p_hwfn, PROTOCOLID_ETH, &cid)) {
176 DP_NOTICE(p_hwfn, "Failed to acquire cid\n");
177 return NULL;
178 }
179 }
180
181 p_cid = _qed_eth_queue_to_cid(p_hwfn, opaque_fid, cid, 0, p_params);
182 if (!p_cid && IS_PF(p_hwfn->cdev))
183 qed_cxt_release_cid(p_hwfn, cid);
184
185 return p_cid;
186}
187
Yuval Mintzdacd88d2016-05-11 16:36:16 +0300188int qed_sp_eth_vport_start(struct qed_hwfn *p_hwfn,
189 struct qed_sp_vport_start_params *p_params)
Manish Chopracee4d262015-10-26 11:02:28 +0200190{
Manish Chopracee4d262015-10-26 11:02:28 +0200191 struct vport_start_ramrod_data *p_ramrod = NULL;
192 struct qed_spq_entry *p_ent = NULL;
Yuval Mintz06f56b82016-02-21 11:40:09 +0200193 struct qed_sp_init_data init_data;
Yuval Mintzdacd88d2016-05-11 16:36:16 +0300194 u8 abs_vport_id = 0;
Manish Chopracee4d262015-10-26 11:02:28 +0200195 int rc = -EINVAL;
196 u16 rx_mode = 0;
Manish Chopracee4d262015-10-26 11:02:28 +0200197
Manish Chopra088c8612016-03-04 12:35:05 -0500198 rc = qed_fw_vport(p_hwfn, p_params->vport_id, &abs_vport_id);
Yuval Mintz1a635e42016-08-15 10:42:43 +0300199 if (rc)
Manish Chopracee4d262015-10-26 11:02:28 +0200200 return rc;
201
Yuval Mintz06f56b82016-02-21 11:40:09 +0200202 memset(&init_data, 0, sizeof(init_data));
203 init_data.cid = qed_spq_get_cid(p_hwfn);
Manish Chopra088c8612016-03-04 12:35:05 -0500204 init_data.opaque_fid = p_params->opaque_fid;
Yuval Mintz06f56b82016-02-21 11:40:09 +0200205 init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
Manish Chopracee4d262015-10-26 11:02:28 +0200206
207 rc = qed_sp_init_request(p_hwfn, &p_ent,
Manish Chopracee4d262015-10-26 11:02:28 +0200208 ETH_RAMROD_VPORT_START,
Yuval Mintz06f56b82016-02-21 11:40:09 +0200209 PROTOCOLID_ETH, &init_data);
Manish Chopracee4d262015-10-26 11:02:28 +0200210 if (rc)
211 return rc;
212
213 p_ramrod = &p_ent->ramrod.vport_start;
214 p_ramrod->vport_id = abs_vport_id;
215
Manish Chopra088c8612016-03-04 12:35:05 -0500216 p_ramrod->mtu = cpu_to_le16(p_params->mtu);
Sudarsana Reddy Kalluruc78c70f2017-02-15 10:24:10 +0200217 p_ramrod->handle_ptp_pkts = p_params->handle_ptp_pkts;
Manish Chopra088c8612016-03-04 12:35:05 -0500218 p_ramrod->inner_vlan_removal_en = p_params->remove_inner_vlan;
219 p_ramrod->drop_ttl0_en = p_params->drop_ttl0;
Yuval Mintze6bd8922016-06-19 15:18:11 +0300220 p_ramrod->untagged = p_params->only_untagged;
Manish Chopracee4d262015-10-26 11:02:28 +0200221
222 SET_FIELD(rx_mode, ETH_VPORT_RX_MODE_UCAST_DROP_ALL, 1);
223 SET_FIELD(rx_mode, ETH_VPORT_RX_MODE_MCAST_DROP_ALL, 1);
224
225 p_ramrod->rx_mode.state = cpu_to_le16(rx_mode);
226
227 /* TPA related fields */
Yuval Mintz1a635e42016-08-15 10:42:43 +0300228 memset(&p_ramrod->tpa_param, 0, sizeof(struct eth_vport_tpa_param));
Manish Chopracee4d262015-10-26 11:02:28 +0200229
Manish Chopra088c8612016-03-04 12:35:05 -0500230 p_ramrod->tpa_param.max_buff_num = p_params->max_buffers_per_cqe;
231
232 switch (p_params->tpa_mode) {
233 case QED_TPA_MODE_GRO:
234 p_ramrod->tpa_param.tpa_max_aggs_num = ETH_TPA_MAX_AGGS_NUM;
235 p_ramrod->tpa_param.tpa_max_size = (u16)-1;
236 p_ramrod->tpa_param.tpa_min_size_to_cont = p_params->mtu / 2;
237 p_ramrod->tpa_param.tpa_min_size_to_start = p_params->mtu / 2;
238 p_ramrod->tpa_param.tpa_ipv4_en_flg = 1;
239 p_ramrod->tpa_param.tpa_ipv6_en_flg = 1;
240 p_ramrod->tpa_param.tpa_pkt_split_flg = 1;
241 p_ramrod->tpa_param.tpa_gro_consistent_flg = 1;
242 break;
243 default:
244 break;
245 }
246
Yuval Mintz831bfb0e2016-05-11 16:36:25 +0300247 p_ramrod->tx_switching_en = p_params->tx_switching;
248
Yuval Mintz11a85d72016-08-22 13:25:10 +0300249 p_ramrod->ctl_frame_mac_check_en = !!p_params->check_mac;
250 p_ramrod->ctl_frame_ethtype_check_en = !!p_params->check_ethtype;
251
Manish Chopracee4d262015-10-26 11:02:28 +0200252 /* Software Function ID in hwfn (PFs are 0 - 15, VFs are 16 - 135) */
253 p_ramrod->sw_fid = qed_concrete_to_sw_fid(p_hwfn->cdev,
Manish Chopra088c8612016-03-04 12:35:05 -0500254 p_params->concrete_fid);
Manish Chopracee4d262015-10-26 11:02:28 +0200255
256 return qed_spq_post(p_hwfn, p_ent, NULL);
257}
258
Baoyou Xieba569472016-09-09 09:21:15 +0800259static int qed_sp_vport_start(struct qed_hwfn *p_hwfn,
260 struct qed_sp_vport_start_params *p_params)
Yuval Mintzdacd88d2016-05-11 16:36:16 +0300261{
262 if (IS_VF(p_hwfn->cdev)) {
263 return qed_vf_pf_vport_start(p_hwfn, p_params->vport_id,
264 p_params->mtu,
265 p_params->remove_inner_vlan,
266 p_params->tpa_mode,
Yuval Mintz08feecd2016-05-11 16:36:20 +0300267 p_params->max_buffers_per_cqe,
268 p_params->only_untagged);
Yuval Mintzdacd88d2016-05-11 16:36:16 +0300269 }
270
271 return qed_sp_eth_vport_start(p_hwfn, p_params);
272}
273
Manish Chopracee4d262015-10-26 11:02:28 +0200274static int
275qed_sp_vport_update_rss(struct qed_hwfn *p_hwfn,
276 struct vport_update_ramrod_data *p_ramrod,
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200277 struct qed_rss_params *p_rss)
Manish Chopracee4d262015-10-26 11:02:28 +0200278{
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200279 struct eth_vport_rss_config *p_config;
280 u16 capabilities = 0;
281 int i, table_size;
282 int rc = 0;
Manish Chopracee4d262015-10-26 11:02:28 +0200283
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200284 if (!p_rss) {
Manish Chopracee4d262015-10-26 11:02:28 +0200285 p_ramrod->common.update_rss_flg = 0;
286 return rc;
287 }
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200288 p_config = &p_ramrod->rss_config;
Manish Chopracee4d262015-10-26 11:02:28 +0200289
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200290 BUILD_BUG_ON(QED_RSS_IND_TABLE_SIZE != ETH_RSS_IND_TABLE_ENTRIES_NUM);
Manish Chopracee4d262015-10-26 11:02:28 +0200291
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200292 rc = qed_fw_rss_eng(p_hwfn, p_rss->rss_eng_id, &p_config->rss_id);
Manish Chopracee4d262015-10-26 11:02:28 +0200293 if (rc)
294 return rc;
295
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200296 p_ramrod->common.update_rss_flg = p_rss->update_rss_config;
297 p_config->update_rss_capabilities = p_rss->update_rss_capabilities;
298 p_config->update_rss_ind_table = p_rss->update_rss_ind_table;
299 p_config->update_rss_key = p_rss->update_rss_key;
Manish Chopracee4d262015-10-26 11:02:28 +0200300
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200301 p_config->rss_mode = p_rss->rss_enable ?
302 ETH_VPORT_RSS_MODE_REGULAR :
303 ETH_VPORT_RSS_MODE_DISABLED;
Manish Chopracee4d262015-10-26 11:02:28 +0200304
305 SET_FIELD(capabilities,
306 ETH_VPORT_RSS_CONFIG_IPV4_CAPABILITY,
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200307 !!(p_rss->rss_caps & QED_RSS_IPV4));
Manish Chopracee4d262015-10-26 11:02:28 +0200308 SET_FIELD(capabilities,
309 ETH_VPORT_RSS_CONFIG_IPV6_CAPABILITY,
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200310 !!(p_rss->rss_caps & QED_RSS_IPV6));
Manish Chopracee4d262015-10-26 11:02:28 +0200311 SET_FIELD(capabilities,
312 ETH_VPORT_RSS_CONFIG_IPV4_TCP_CAPABILITY,
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200313 !!(p_rss->rss_caps & QED_RSS_IPV4_TCP));
Manish Chopracee4d262015-10-26 11:02:28 +0200314 SET_FIELD(capabilities,
315 ETH_VPORT_RSS_CONFIG_IPV6_TCP_CAPABILITY,
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200316 !!(p_rss->rss_caps & QED_RSS_IPV6_TCP));
Manish Chopracee4d262015-10-26 11:02:28 +0200317 SET_FIELD(capabilities,
318 ETH_VPORT_RSS_CONFIG_IPV4_UDP_CAPABILITY,
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200319 !!(p_rss->rss_caps & QED_RSS_IPV4_UDP));
Manish Chopracee4d262015-10-26 11:02:28 +0200320 SET_FIELD(capabilities,
321 ETH_VPORT_RSS_CONFIG_IPV6_UDP_CAPABILITY,
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200322 !!(p_rss->rss_caps & QED_RSS_IPV6_UDP));
323 p_config->tbl_size = p_rss->rss_table_size_log;
Manish Chopracee4d262015-10-26 11:02:28 +0200324
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200325 p_config->capabilities = cpu_to_le16(capabilities);
Manish Chopracee4d262015-10-26 11:02:28 +0200326
327 DP_VERBOSE(p_hwfn, NETIF_MSG_IFUP,
328 "update rss flag %d, rss_mode = %d, update_caps = %d, capabilities = %d, update_ind = %d, update_rss_key = %d\n",
329 p_ramrod->common.update_rss_flg,
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200330 p_config->rss_mode,
331 p_config->update_rss_capabilities,
332 p_config->capabilities,
333 p_config->update_rss_ind_table, p_config->update_rss_key);
Manish Chopracee4d262015-10-26 11:02:28 +0200334
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200335 table_size = min_t(int, QED_RSS_IND_TABLE_SIZE,
336 1 << p_config->tbl_size);
337 for (i = 0; i < table_size; i++) {
338 struct qed_queue_cid *p_queue = p_rss->rss_ind_table[i];
Manish Chopracee4d262015-10-26 11:02:28 +0200339
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200340 if (!p_queue)
341 return -EINVAL;
342
343 p_config->indirection_table[i] =
344 cpu_to_le16(p_queue->abs.queue_id);
345 }
346
347 DP_VERBOSE(p_hwfn, NETIF_MSG_IFUP,
348 "Configured RSS indirection table [%d entries]:\n",
349 table_size);
350 for (i = 0; i < QED_RSS_IND_TABLE_SIZE; i += 0x10) {
351 DP_VERBOSE(p_hwfn,
352 NETIF_MSG_IFUP,
353 "%04x %04x %04x %04x %04x %04x %04x %04x %04x %04x %04x %04x %04x %04x %04x %04x\n",
354 le16_to_cpu(p_config->indirection_table[i]),
355 le16_to_cpu(p_config->indirection_table[i + 1]),
356 le16_to_cpu(p_config->indirection_table[i + 2]),
357 le16_to_cpu(p_config->indirection_table[i + 3]),
358 le16_to_cpu(p_config->indirection_table[i + 4]),
359 le16_to_cpu(p_config->indirection_table[i + 5]),
360 le16_to_cpu(p_config->indirection_table[i + 6]),
361 le16_to_cpu(p_config->indirection_table[i + 7]),
362 le16_to_cpu(p_config->indirection_table[i + 8]),
363 le16_to_cpu(p_config->indirection_table[i + 9]),
364 le16_to_cpu(p_config->indirection_table[i + 10]),
365 le16_to_cpu(p_config->indirection_table[i + 11]),
366 le16_to_cpu(p_config->indirection_table[i + 12]),
367 le16_to_cpu(p_config->indirection_table[i + 13]),
368 le16_to_cpu(p_config->indirection_table[i + 14]),
369 le16_to_cpu(p_config->indirection_table[i + 15]));
Manish Chopracee4d262015-10-26 11:02:28 +0200370 }
371
372 for (i = 0; i < 10; i++)
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +0200373 p_config->rss_key[i] = cpu_to_le32(p_rss->rss_key[i]);
Manish Chopracee4d262015-10-26 11:02:28 +0200374
375 return rc;
376}
377
378static void
379qed_sp_update_accept_mode(struct qed_hwfn *p_hwfn,
380 struct vport_update_ramrod_data *p_ramrod,
381 struct qed_filter_accept_flags accept_flags)
382{
383 p_ramrod->common.update_rx_mode_flg =
384 accept_flags.update_rx_mode_config;
385
386 p_ramrod->common.update_tx_mode_flg =
387 accept_flags.update_tx_mode_config;
388
389 /* Set Rx mode accept flags */
390 if (p_ramrod->common.update_rx_mode_flg) {
391 u8 accept_filter = accept_flags.rx_accept_filter;
392 u16 state = 0;
393
394 SET_FIELD(state, ETH_VPORT_RX_MODE_UCAST_DROP_ALL,
395 !(!!(accept_filter & QED_ACCEPT_UCAST_MATCHED) ||
396 !!(accept_filter & QED_ACCEPT_UCAST_UNMATCHED)));
397
398 SET_FIELD(state, ETH_VPORT_RX_MODE_UCAST_ACCEPT_UNMATCHED,
399 !!(accept_filter & QED_ACCEPT_UCAST_UNMATCHED));
400
401 SET_FIELD(state, ETH_VPORT_RX_MODE_MCAST_DROP_ALL,
402 !(!!(accept_filter & QED_ACCEPT_MCAST_MATCHED) ||
403 !!(accept_filter & QED_ACCEPT_MCAST_UNMATCHED)));
404
405 SET_FIELD(state, ETH_VPORT_RX_MODE_MCAST_ACCEPT_ALL,
406 (!!(accept_filter & QED_ACCEPT_MCAST_MATCHED) &&
407 !!(accept_filter & QED_ACCEPT_MCAST_UNMATCHED)));
408
409 SET_FIELD(state, ETH_VPORT_RX_MODE_BCAST_ACCEPT_ALL,
410 !!(accept_filter & QED_ACCEPT_BCAST));
411
412 p_ramrod->rx_mode.state = cpu_to_le16(state);
413 DP_VERBOSE(p_hwfn, QED_MSG_SP,
414 "p_ramrod->rx_mode.state = 0x%x\n", state);
415 }
416
417 /* Set Tx mode accept flags */
418 if (p_ramrod->common.update_tx_mode_flg) {
419 u8 accept_filter = accept_flags.tx_accept_filter;
420 u16 state = 0;
421
422 SET_FIELD(state, ETH_VPORT_TX_MODE_UCAST_DROP_ALL,
423 !!(accept_filter & QED_ACCEPT_NONE));
424
Manish Chopracee4d262015-10-26 11:02:28 +0200425 SET_FIELD(state, ETH_VPORT_TX_MODE_MCAST_DROP_ALL,
426 !!(accept_filter & QED_ACCEPT_NONE));
427
428 SET_FIELD(state, ETH_VPORT_TX_MODE_MCAST_ACCEPT_ALL,
429 (!!(accept_filter & QED_ACCEPT_MCAST_MATCHED) &&
430 !!(accept_filter & QED_ACCEPT_MCAST_UNMATCHED)));
431
432 SET_FIELD(state, ETH_VPORT_TX_MODE_BCAST_ACCEPT_ALL,
433 !!(accept_filter & QED_ACCEPT_BCAST));
434
435 p_ramrod->tx_mode.state = cpu_to_le16(state);
436 DP_VERBOSE(p_hwfn, QED_MSG_SP,
437 "p_ramrod->tx_mode.state = 0x%x\n", state);
438 }
439}
440
441static void
Yuval Mintz17b235c2016-05-11 16:36:18 +0300442qed_sp_vport_update_sge_tpa(struct qed_hwfn *p_hwfn,
443 struct vport_update_ramrod_data *p_ramrod,
444 struct qed_sge_tpa_params *p_params)
445{
446 struct eth_vport_tpa_param *p_tpa;
447
448 if (!p_params) {
449 p_ramrod->common.update_tpa_param_flg = 0;
450 p_ramrod->common.update_tpa_en_flg = 0;
451 p_ramrod->common.update_tpa_param_flg = 0;
452 return;
453 }
454
455 p_ramrod->common.update_tpa_en_flg = p_params->update_tpa_en_flg;
456 p_tpa = &p_ramrod->tpa_param;
457 p_tpa->tpa_ipv4_en_flg = p_params->tpa_ipv4_en_flg;
458 p_tpa->tpa_ipv6_en_flg = p_params->tpa_ipv6_en_flg;
459 p_tpa->tpa_ipv4_tunn_en_flg = p_params->tpa_ipv4_tunn_en_flg;
460 p_tpa->tpa_ipv6_tunn_en_flg = p_params->tpa_ipv6_tunn_en_flg;
461
462 p_ramrod->common.update_tpa_param_flg = p_params->update_tpa_param_flg;
463 p_tpa->max_buff_num = p_params->max_buffers_per_cqe;
464 p_tpa->tpa_pkt_split_flg = p_params->tpa_pkt_split_flg;
465 p_tpa->tpa_hdr_data_split_flg = p_params->tpa_hdr_data_split_flg;
466 p_tpa->tpa_gro_consistent_flg = p_params->tpa_gro_consistent_flg;
467 p_tpa->tpa_max_aggs_num = p_params->tpa_max_aggs_num;
468 p_tpa->tpa_max_size = p_params->tpa_max_size;
469 p_tpa->tpa_min_size_to_start = p_params->tpa_min_size_to_start;
470 p_tpa->tpa_min_size_to_cont = p_params->tpa_min_size_to_cont;
471}
472
473static void
Manish Chopracee4d262015-10-26 11:02:28 +0200474qed_sp_update_mcast_bin(struct qed_hwfn *p_hwfn,
475 struct vport_update_ramrod_data *p_ramrod,
476 struct qed_sp_vport_update_params *p_params)
477{
478 int i;
479
480 memset(&p_ramrod->approx_mcast.bins, 0,
481 sizeof(p_ramrod->approx_mcast.bins));
482
Yuval Mintz83aeb932016-08-15 10:42:44 +0300483 if (!p_params->update_approx_mcast_flg)
484 return;
Manish Chopracee4d262015-10-26 11:02:28 +0200485
Yuval Mintz83aeb932016-08-15 10:42:44 +0300486 p_ramrod->common.update_approx_mcast_flg = 1;
487 for (i = 0; i < ETH_MULTICAST_MAC_BINS_IN_REGS; i++) {
488 u32 *p_bins = (u32 *)p_params->bins;
489
490 p_ramrod->approx_mcast.bins[i] = cpu_to_le32(p_bins[i]);
Manish Chopracee4d262015-10-26 11:02:28 +0200491 }
492}
493
Yuval Mintzdacd88d2016-05-11 16:36:16 +0300494int qed_sp_vport_update(struct qed_hwfn *p_hwfn,
495 struct qed_sp_vport_update_params *p_params,
496 enum spq_mode comp_mode,
497 struct qed_spq_comp_cb *p_comp_data)
Manish Chopracee4d262015-10-26 11:02:28 +0200498{
499 struct qed_rss_params *p_rss_params = p_params->rss_params;
500 struct vport_update_ramrod_data_cmn *p_cmn;
Yuval Mintz06f56b82016-02-21 11:40:09 +0200501 struct qed_sp_init_data init_data;
Manish Chopracee4d262015-10-26 11:02:28 +0200502 struct vport_update_ramrod_data *p_ramrod = NULL;
503 struct qed_spq_entry *p_ent = NULL;
Yuval Mintz17b235c2016-05-11 16:36:18 +0300504 u8 abs_vport_id = 0, val;
Manish Chopracee4d262015-10-26 11:02:28 +0200505 int rc = -EINVAL;
506
Yuval Mintzdacd88d2016-05-11 16:36:16 +0300507 if (IS_VF(p_hwfn->cdev)) {
508 rc = qed_vf_pf_vport_update(p_hwfn, p_params);
509 return rc;
510 }
511
Manish Chopracee4d262015-10-26 11:02:28 +0200512 rc = qed_fw_vport(p_hwfn, p_params->vport_id, &abs_vport_id);
Yuval Mintz1a635e42016-08-15 10:42:43 +0300513 if (rc)
Manish Chopracee4d262015-10-26 11:02:28 +0200514 return rc;
515
Yuval Mintz06f56b82016-02-21 11:40:09 +0200516 memset(&init_data, 0, sizeof(init_data));
517 init_data.cid = qed_spq_get_cid(p_hwfn);
518 init_data.opaque_fid = p_params->opaque_fid;
519 init_data.comp_mode = comp_mode;
520 init_data.p_comp_data = p_comp_data;
Manish Chopracee4d262015-10-26 11:02:28 +0200521
522 rc = qed_sp_init_request(p_hwfn, &p_ent,
Manish Chopracee4d262015-10-26 11:02:28 +0200523 ETH_RAMROD_VPORT_UPDATE,
Yuval Mintz06f56b82016-02-21 11:40:09 +0200524 PROTOCOLID_ETH, &init_data);
Manish Chopracee4d262015-10-26 11:02:28 +0200525 if (rc)
526 return rc;
527
528 /* Copy input params to ramrod according to FW struct */
529 p_ramrod = &p_ent->ramrod.vport_update;
530 p_cmn = &p_ramrod->common;
531
532 p_cmn->vport_id = abs_vport_id;
533 p_cmn->rx_active_flg = p_params->vport_active_rx_flg;
534 p_cmn->update_rx_active_flg = p_params->update_vport_active_rx_flg;
535 p_cmn->tx_active_flg = p_params->vport_active_tx_flg;
536 p_cmn->update_tx_active_flg = p_params->update_vport_active_tx_flg;
Yuval Mintz3f9b4a62016-02-18 17:00:39 +0200537 p_cmn->accept_any_vlan = p_params->accept_any_vlan;
Yuval Mintz83aeb932016-08-15 10:42:44 +0300538 val = p_params->update_accept_any_vlan_flg;
539 p_cmn->update_accept_any_vlan_flg = val;
Yuval Mintz17b235c2016-05-11 16:36:18 +0300540
541 p_cmn->inner_vlan_removal_en = p_params->inner_vlan_removal_flg;
542 val = p_params->update_inner_vlan_removal_flg;
543 p_cmn->update_inner_vlan_removal_en_flg = val;
Yuval Mintz08feecd2016-05-11 16:36:20 +0300544
545 p_cmn->default_vlan_en = p_params->default_vlan_enable_flg;
546 val = p_params->update_default_vlan_enable_flg;
547 p_cmn->update_default_vlan_en_flg = val;
548
549 p_cmn->default_vlan = cpu_to_le16(p_params->default_vlan);
550 p_cmn->update_default_vlan_flg = p_params->update_default_vlan_flg;
551
552 p_cmn->silent_vlan_removal_en = p_params->silent_vlan_removal_flg;
553
Yuval Mintz17b235c2016-05-11 16:36:18 +0300554 p_ramrod->common.tx_switching_en = p_params->tx_switching_flg;
555 p_cmn->update_tx_switching_en_flg = p_params->update_tx_switching_flg;
556
Yuval Mintz6ddc7602016-05-11 16:36:23 +0300557 p_cmn->anti_spoofing_en = p_params->anti_spoofing_en;
558 val = p_params->update_anti_spoofing_en_flg;
559 p_ramrod->common.update_anti_spoofing_en_flg = val;
560
Manish Chopracee4d262015-10-26 11:02:28 +0200561 rc = qed_sp_vport_update_rss(p_hwfn, p_ramrod, p_rss_params);
562 if (rc) {
563 /* Return spq entry which is taken in qed_sp_init_request()*/
564 qed_spq_return_entry(p_hwfn, p_ent);
565 return rc;
566 }
567
568 /* Update mcast bins for VFs, PF doesn't use this functionality */
569 qed_sp_update_mcast_bin(p_hwfn, p_ramrod, p_params);
570
571 qed_sp_update_accept_mode(p_hwfn, p_ramrod, p_params->accept_flags);
Yuval Mintz17b235c2016-05-11 16:36:18 +0300572 qed_sp_vport_update_sge_tpa(p_hwfn, p_ramrod, p_params->sge_tpa_params);
Manish Chopracee4d262015-10-26 11:02:28 +0200573 return qed_spq_post(p_hwfn, p_ent, NULL);
574}
575
Yuval Mintzdacd88d2016-05-11 16:36:16 +0300576int qed_sp_vport_stop(struct qed_hwfn *p_hwfn, u16 opaque_fid, u8 vport_id)
Manish Chopracee4d262015-10-26 11:02:28 +0200577{
Manish Chopracee4d262015-10-26 11:02:28 +0200578 struct vport_stop_ramrod_data *p_ramrod;
Yuval Mintz06f56b82016-02-21 11:40:09 +0200579 struct qed_sp_init_data init_data;
Manish Chopracee4d262015-10-26 11:02:28 +0200580 struct qed_spq_entry *p_ent;
581 u8 abs_vport_id = 0;
582 int rc;
583
Yuval Mintzdacd88d2016-05-11 16:36:16 +0300584 if (IS_VF(p_hwfn->cdev))
585 return qed_vf_pf_vport_stop(p_hwfn);
586
Manish Chopracee4d262015-10-26 11:02:28 +0200587 rc = qed_fw_vport(p_hwfn, vport_id, &abs_vport_id);
Yuval Mintz1a635e42016-08-15 10:42:43 +0300588 if (rc)
Manish Chopracee4d262015-10-26 11:02:28 +0200589 return rc;
590
Yuval Mintz06f56b82016-02-21 11:40:09 +0200591 memset(&init_data, 0, sizeof(init_data));
592 init_data.cid = qed_spq_get_cid(p_hwfn);
593 init_data.opaque_fid = opaque_fid;
594 init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
Manish Chopracee4d262015-10-26 11:02:28 +0200595
596 rc = qed_sp_init_request(p_hwfn, &p_ent,
Manish Chopracee4d262015-10-26 11:02:28 +0200597 ETH_RAMROD_VPORT_STOP,
Yuval Mintz06f56b82016-02-21 11:40:09 +0200598 PROTOCOLID_ETH, &init_data);
Manish Chopracee4d262015-10-26 11:02:28 +0200599 if (rc)
600 return rc;
601
602 p_ramrod = &p_ent->ramrod.vport_stop;
603 p_ramrod->vport_id = abs_vport_id;
604
605 return qed_spq_post(p_hwfn, p_ent, NULL);
606}
607
Yuval Mintzdacd88d2016-05-11 16:36:16 +0300608static int
609qed_vf_pf_accept_flags(struct qed_hwfn *p_hwfn,
610 struct qed_filter_accept_flags *p_accept_flags)
611{
612 struct qed_sp_vport_update_params s_params;
613
614 memset(&s_params, 0, sizeof(s_params));
615 memcpy(&s_params.accept_flags, p_accept_flags,
616 sizeof(struct qed_filter_accept_flags));
617
618 return qed_vf_pf_vport_update(p_hwfn, &s_params);
619}
620
Manish Chopracee4d262015-10-26 11:02:28 +0200621static int qed_filter_accept_cmd(struct qed_dev *cdev,
622 u8 vport,
623 struct qed_filter_accept_flags accept_flags,
Yuval Mintz3f9b4a62016-02-18 17:00:39 +0200624 u8 update_accept_any_vlan,
625 u8 accept_any_vlan,
Yuval Mintzdacd88d2016-05-11 16:36:16 +0300626 enum spq_mode comp_mode,
627 struct qed_spq_comp_cb *p_comp_data)
Manish Chopracee4d262015-10-26 11:02:28 +0200628{
629 struct qed_sp_vport_update_params vport_update_params;
630 int i, rc;
631
632 /* Prepare and send the vport rx_mode change */
633 memset(&vport_update_params, 0, sizeof(vport_update_params));
634 vport_update_params.vport_id = vport;
635 vport_update_params.accept_flags = accept_flags;
Yuval Mintz3f9b4a62016-02-18 17:00:39 +0200636 vport_update_params.update_accept_any_vlan_flg = update_accept_any_vlan;
637 vport_update_params.accept_any_vlan = accept_any_vlan;
Manish Chopracee4d262015-10-26 11:02:28 +0200638
639 for_each_hwfn(cdev, i) {
640 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
641
642 vport_update_params.opaque_fid = p_hwfn->hw_info.opaque_fid;
643
Yuval Mintzdacd88d2016-05-11 16:36:16 +0300644 if (IS_VF(cdev)) {
645 rc = qed_vf_pf_accept_flags(p_hwfn, &accept_flags);
646 if (rc)
647 return rc;
648 continue;
649 }
650
Manish Chopracee4d262015-10-26 11:02:28 +0200651 rc = qed_sp_vport_update(p_hwfn, &vport_update_params,
652 comp_mode, p_comp_data);
Yuval Mintz1a635e42016-08-15 10:42:43 +0300653 if (rc) {
Manish Chopracee4d262015-10-26 11:02:28 +0200654 DP_ERR(cdev, "Update rx_mode failed %d\n", rc);
655 return rc;
656 }
657
658 DP_VERBOSE(p_hwfn, QED_MSG_SP,
659 "Accept filter configured, flags = [Rx]%x [Tx]%x\n",
660 accept_flags.rx_accept_filter,
661 accept_flags.tx_accept_filter);
Yuval Mintz3f9b4a62016-02-18 17:00:39 +0200662 if (update_accept_any_vlan)
663 DP_VERBOSE(p_hwfn, QED_MSG_SP,
664 "accept_any_vlan=%d configured\n",
665 accept_any_vlan);
Manish Chopracee4d262015-10-26 11:02:28 +0200666 }
667
668 return 0;
669}
670
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200671int qed_eth_rxq_start_ramrod(struct qed_hwfn *p_hwfn,
672 struct qed_queue_cid *p_cid,
673 u16 bd_max_bytes,
674 dma_addr_t bd_chain_phys_addr,
675 dma_addr_t cqe_pbl_addr, u16 cqe_pbl_size)
Manish Chopracee4d262015-10-26 11:02:28 +0200676{
677 struct rx_queue_start_ramrod_data *p_ramrod = NULL;
Manish Chopracee4d262015-10-26 11:02:28 +0200678 struct qed_spq_entry *p_ent = NULL;
Yuval Mintz06f56b82016-02-21 11:40:09 +0200679 struct qed_sp_init_data init_data;
Manish Chopracee4d262015-10-26 11:02:28 +0200680 int rc = -EINVAL;
681
Manish Chopracee4d262015-10-26 11:02:28 +0200682 DP_VERBOSE(p_hwfn, QED_MSG_SP,
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200683 "opaque_fid=0x%x, cid=0x%x, rx_qzone=0x%x, vport_id=0x%x, sb_id=0x%x\n",
684 p_cid->opaque_fid, p_cid->cid,
685 p_cid->abs.queue_id, p_cid->abs.vport_id, p_cid->abs.sb);
Manish Chopracee4d262015-10-26 11:02:28 +0200686
Yuval Mintz06f56b82016-02-21 11:40:09 +0200687 /* Get SPQ entry */
688 memset(&init_data, 0, sizeof(init_data));
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200689 init_data.cid = p_cid->cid;
690 init_data.opaque_fid = p_cid->opaque_fid;
Yuval Mintz06f56b82016-02-21 11:40:09 +0200691 init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
Manish Chopracee4d262015-10-26 11:02:28 +0200692
693 rc = qed_sp_init_request(p_hwfn, &p_ent,
Manish Chopracee4d262015-10-26 11:02:28 +0200694 ETH_RAMROD_RX_QUEUE_START,
Yuval Mintz06f56b82016-02-21 11:40:09 +0200695 PROTOCOLID_ETH, &init_data);
Manish Chopracee4d262015-10-26 11:02:28 +0200696 if (rc)
697 return rc;
698
699 p_ramrod = &p_ent->ramrod.rx_queue_start;
700
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200701 p_ramrod->sb_id = cpu_to_le16(p_cid->abs.sb);
702 p_ramrod->sb_index = p_cid->abs.sb_idx;
703 p_ramrod->vport_id = p_cid->abs.vport_id;
704 p_ramrod->stats_counter_id = p_cid->abs.stats_id;
705 p_ramrod->rx_queue_id = cpu_to_le16(p_cid->abs.queue_id);
Yuval Mintz1a635e42016-08-15 10:42:43 +0300706 p_ramrod->complete_cqe_flg = 0;
707 p_ramrod->complete_event_flg = 1;
Manish Chopracee4d262015-10-26 11:02:28 +0200708
Yuval Mintz1a635e42016-08-15 10:42:43 +0300709 p_ramrod->bd_max_bytes = cpu_to_le16(bd_max_bytes);
Yuval Mintz94494592016-02-21 11:40:10 +0200710 DMA_REGPAIR_LE(p_ramrod->bd_base, bd_chain_phys_addr);
Manish Chopracee4d262015-10-26 11:02:28 +0200711
Yuval Mintz1a635e42016-08-15 10:42:43 +0300712 p_ramrod->num_of_pbl_pages = cpu_to_le16(cqe_pbl_size);
Yuval Mintz94494592016-02-21 11:40:10 +0200713 DMA_REGPAIR_LE(p_ramrod->cqe_pbl_addr, cqe_pbl_addr);
Manish Chopracee4d262015-10-26 11:02:28 +0200714
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200715 if (p_cid->is_vf) {
716 p_ramrod->vf_rx_prod_index = p_cid->vf_qid;
Yuval Mintz351a4ded2016-06-02 10:23:29 +0300717 DP_VERBOSE(p_hwfn, QED_MSG_SP,
Yuval Mintza044df82016-08-22 13:25:09 +0300718 "Queue%s is meant for VF rxq[%02x]\n",
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200719 !!p_cid->b_legacy_vf ? " [legacy]" : "",
720 p_cid->vf_qid);
721 p_ramrod->vf_rx_prod_use_zone_a = !!p_cid->b_legacy_vf;
Yuval Mintza044df82016-08-22 13:25:09 +0300722 }
Manish Chopracee4d262015-10-26 11:02:28 +0200723
Yuval Mintz351a4ded2016-06-02 10:23:29 +0300724 return qed_spq_post(p_hwfn, p_ent, NULL);
Manish Chopracee4d262015-10-26 11:02:28 +0200725}
726
727static int
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200728qed_eth_pf_rx_queue_start(struct qed_hwfn *p_hwfn,
729 struct qed_queue_cid *p_cid,
Manish Chopracee4d262015-10-26 11:02:28 +0200730 u16 bd_max_bytes,
731 dma_addr_t bd_chain_phys_addr,
732 dma_addr_t cqe_pbl_addr,
Yuval Mintzdacd88d2016-05-11 16:36:16 +0300733 u16 cqe_pbl_size, void __iomem **pp_prod)
Manish Chopracee4d262015-10-26 11:02:28 +0200734{
Yuval Mintzb21290b2016-07-27 14:45:21 +0300735 u32 init_prod_val = 0;
Manish Chopracee4d262015-10-26 11:02:28 +0200736
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200737 *pp_prod = p_hwfn->regview +
738 GTT_BAR0_MAP_REG_MSDM_RAM +
739 MSTORM_ETH_PF_PRODS_OFFSET(p_cid->abs.queue_id);
Manish Chopracee4d262015-10-26 11:02:28 +0200740
741 /* Init the rcq, rx bd and rx sge (if valid) producers to 0 */
Yuval Mintzb21290b2016-07-27 14:45:21 +0300742 __internal_ram_wr(p_hwfn, *pp_prod, sizeof(u32),
Manish Chopracee4d262015-10-26 11:02:28 +0200743 (u32 *)(&init_prod_val));
744
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200745 return qed_eth_rxq_start_ramrod(p_hwfn, p_cid,
746 bd_max_bytes,
747 bd_chain_phys_addr,
748 cqe_pbl_addr, cqe_pbl_size);
749}
Manish Chopracee4d262015-10-26 11:02:28 +0200750
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200751static int
752qed_eth_rx_queue_start(struct qed_hwfn *p_hwfn,
753 u16 opaque_fid,
754 struct qed_queue_start_common_params *p_params,
755 u16 bd_max_bytes,
756 dma_addr_t bd_chain_phys_addr,
757 dma_addr_t cqe_pbl_addr,
758 u16 cqe_pbl_size,
759 struct qed_rxq_start_ret_params *p_ret_params)
760{
761 struct qed_queue_cid *p_cid;
762 int rc;
763
764 /* Allocate a CID for the queue */
765 p_cid = qed_eth_queue_to_cid(p_hwfn, opaque_fid, p_params);
766 if (!p_cid)
767 return -ENOMEM;
768
769 if (IS_PF(p_hwfn->cdev)) {
770 rc = qed_eth_pf_rx_queue_start(p_hwfn, p_cid,
771 bd_max_bytes,
772 bd_chain_phys_addr,
773 cqe_pbl_addr, cqe_pbl_size,
774 &p_ret_params->p_prod);
775 } else {
776 rc = qed_vf_pf_rxq_start(p_hwfn, p_cid,
Manish Chopracee4d262015-10-26 11:02:28 +0200777 bd_max_bytes,
778 bd_chain_phys_addr,
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200779 cqe_pbl_addr,
780 cqe_pbl_size, &p_ret_params->p_prod);
781 }
Manish Chopracee4d262015-10-26 11:02:28 +0200782
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200783 /* Provide the caller with a reference to as handler */
Yuval Mintz1a635e42016-08-15 10:42:43 +0300784 if (rc)
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200785 qed_eth_queue_cid_release(p_hwfn, p_cid);
786 else
787 p_ret_params->p_handle = (void *)p_cid;
Manish Chopracee4d262015-10-26 11:02:28 +0200788
789 return rc;
790}
791
Yuval Mintz17b235c2016-05-11 16:36:18 +0300792int qed_sp_eth_rx_queues_update(struct qed_hwfn *p_hwfn,
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200793 void **pp_rxq_handles,
Yuval Mintz17b235c2016-05-11 16:36:18 +0300794 u8 num_rxqs,
795 u8 complete_cqe_flg,
796 u8 complete_event_flg,
797 enum spq_mode comp_mode,
798 struct qed_spq_comp_cb *p_comp_data)
799{
800 struct rx_queue_update_ramrod_data *p_ramrod = NULL;
801 struct qed_spq_entry *p_ent = NULL;
802 struct qed_sp_init_data init_data;
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200803 struct qed_queue_cid *p_cid;
Yuval Mintz17b235c2016-05-11 16:36:18 +0300804 int rc = -EINVAL;
805 u8 i;
806
807 memset(&init_data, 0, sizeof(init_data));
808 init_data.comp_mode = comp_mode;
809 init_data.p_comp_data = p_comp_data;
810
811 for (i = 0; i < num_rxqs; i++) {
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200812 p_cid = ((struct qed_queue_cid **)pp_rxq_handles)[i];
Yuval Mintz17b235c2016-05-11 16:36:18 +0300813
814 /* Get SPQ entry */
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200815 init_data.cid = p_cid->cid;
816 init_data.opaque_fid = p_cid->opaque_fid;
Yuval Mintz17b235c2016-05-11 16:36:18 +0300817
818 rc = qed_sp_init_request(p_hwfn, &p_ent,
819 ETH_RAMROD_RX_QUEUE_UPDATE,
820 PROTOCOLID_ETH, &init_data);
821 if (rc)
822 return rc;
823
824 p_ramrod = &p_ent->ramrod.rx_queue_update;
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200825 p_ramrod->vport_id = p_cid->abs.vport_id;
Yuval Mintz17b235c2016-05-11 16:36:18 +0300826
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200827 p_ramrod->rx_queue_id = cpu_to_le16(p_cid->abs.queue_id);
Yuval Mintz17b235c2016-05-11 16:36:18 +0300828 p_ramrod->complete_cqe_flg = complete_cqe_flg;
829 p_ramrod->complete_event_flg = complete_event_flg;
830
831 rc = qed_spq_post(p_hwfn, p_ent, NULL);
832 if (rc)
833 return rc;
834 }
835
836 return rc;
837}
838
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200839static int
840qed_eth_pf_rx_queue_stop(struct qed_hwfn *p_hwfn,
841 struct qed_queue_cid *p_cid,
842 bool b_eq_completion_only, bool b_cqe_completion)
Manish Chopracee4d262015-10-26 11:02:28 +0200843{
Manish Chopracee4d262015-10-26 11:02:28 +0200844 struct rx_queue_stop_ramrod_data *p_ramrod = NULL;
Manish Chopracee4d262015-10-26 11:02:28 +0200845 struct qed_spq_entry *p_ent = NULL;
Yuval Mintz06f56b82016-02-21 11:40:09 +0200846 struct qed_sp_init_data init_data;
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200847 int rc;
Manish Chopracee4d262015-10-26 11:02:28 +0200848
Yuval Mintz06f56b82016-02-21 11:40:09 +0200849 memset(&init_data, 0, sizeof(init_data));
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200850 init_data.cid = p_cid->cid;
851 init_data.opaque_fid = p_cid->opaque_fid;
Yuval Mintz06f56b82016-02-21 11:40:09 +0200852 init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
Manish Chopracee4d262015-10-26 11:02:28 +0200853
854 rc = qed_sp_init_request(p_hwfn, &p_ent,
Manish Chopracee4d262015-10-26 11:02:28 +0200855 ETH_RAMROD_RX_QUEUE_STOP,
Yuval Mintz06f56b82016-02-21 11:40:09 +0200856 PROTOCOLID_ETH, &init_data);
Manish Chopracee4d262015-10-26 11:02:28 +0200857 if (rc)
858 return rc;
859
860 p_ramrod = &p_ent->ramrod.rx_queue_stop;
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200861 p_ramrod->vport_id = p_cid->abs.vport_id;
862 p_ramrod->rx_queue_id = cpu_to_le16(p_cid->abs.queue_id);
Manish Chopracee4d262015-10-26 11:02:28 +0200863
864 /* Cleaning the queue requires the completion to arrive there.
865 * In addition, VFs require the answer to come as eqe to PF.
866 */
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200867 p_ramrod->complete_cqe_flg = (!p_cid->is_vf &&
868 !b_eq_completion_only) ||
869 b_cqe_completion;
870 p_ramrod->complete_event_flg = p_cid->is_vf || b_eq_completion_only;
Manish Chopracee4d262015-10-26 11:02:28 +0200871
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200872 return qed_spq_post(p_hwfn, p_ent, NULL);
Manish Chopracee4d262015-10-26 11:02:28 +0200873}
874
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200875int qed_eth_rx_queue_stop(struct qed_hwfn *p_hwfn,
876 void *p_rxq,
877 bool eq_completion_only, bool cqe_completion)
878{
879 struct qed_queue_cid *p_cid = (struct qed_queue_cid *)p_rxq;
880 int rc = -EINVAL;
881
882 if (IS_PF(p_hwfn->cdev))
883 rc = qed_eth_pf_rx_queue_stop(p_hwfn, p_cid,
884 eq_completion_only,
885 cqe_completion);
886 else
887 rc = qed_vf_pf_rxq_stop(p_hwfn, p_cid, cqe_completion);
888
889 if (!rc)
890 qed_eth_queue_cid_release(p_hwfn, p_cid);
891 return rc;
892}
893
894int
895qed_eth_txq_start_ramrod(struct qed_hwfn *p_hwfn,
896 struct qed_queue_cid *p_cid,
897 dma_addr_t pbl_addr, u16 pbl_size, u16 pq_id)
Manish Chopracee4d262015-10-26 11:02:28 +0200898{
899 struct tx_queue_start_ramrod_data *p_ramrod = NULL;
Manish Chopracee4d262015-10-26 11:02:28 +0200900 struct qed_spq_entry *p_ent = NULL;
Yuval Mintz06f56b82016-02-21 11:40:09 +0200901 struct qed_sp_init_data init_data;
Manish Chopracee4d262015-10-26 11:02:28 +0200902 int rc = -EINVAL;
Yuval Mintz351a4ded2016-06-02 10:23:29 +0300903
Yuval Mintz06f56b82016-02-21 11:40:09 +0200904 /* Get SPQ entry */
905 memset(&init_data, 0, sizeof(init_data));
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200906 init_data.cid = p_cid->cid;
907 init_data.opaque_fid = p_cid->opaque_fid;
Yuval Mintz06f56b82016-02-21 11:40:09 +0200908 init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
Manish Chopracee4d262015-10-26 11:02:28 +0200909
Yuval Mintz06f56b82016-02-21 11:40:09 +0200910 rc = qed_sp_init_request(p_hwfn, &p_ent,
Manish Chopracee4d262015-10-26 11:02:28 +0200911 ETH_RAMROD_TX_QUEUE_START,
Yuval Mintz06f56b82016-02-21 11:40:09 +0200912 PROTOCOLID_ETH, &init_data);
Manish Chopracee4d262015-10-26 11:02:28 +0200913 if (rc)
914 return rc;
915
Yuval Mintz1a635e42016-08-15 10:42:43 +0300916 p_ramrod = &p_ent->ramrod.tx_queue_start;
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200917 p_ramrod->vport_id = p_cid->abs.vport_id;
Manish Chopracee4d262015-10-26 11:02:28 +0200918
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200919 p_ramrod->sb_id = cpu_to_le16(p_cid->abs.sb);
920 p_ramrod->sb_index = p_cid->abs.sb_idx;
921 p_ramrod->stats_counter_id = p_cid->abs.stats_id;
Manish Chopracee4d262015-10-26 11:02:28 +0200922
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200923 p_ramrod->queue_zone_id = cpu_to_le16(p_cid->abs.queue_id);
924 p_ramrod->same_as_last_id = cpu_to_le16(p_cid->abs.queue_id);
Yuval Mintz1a635e42016-08-15 10:42:43 +0300925
926 p_ramrod->pbl_size = cpu_to_le16(pbl_size);
Yuval Mintz94494592016-02-21 11:40:10 +0200927 DMA_REGPAIR_LE(p_ramrod->pbl_base_addr, pbl_addr);
Manish Chopracee4d262015-10-26 11:02:28 +0200928
Yuval Mintz1a635e42016-08-15 10:42:43 +0300929 p_ramrod->qm_pq_id = cpu_to_le16(pq_id);
Manish Chopracee4d262015-10-26 11:02:28 +0200930
931 return qed_spq_post(p_hwfn, p_ent, NULL);
932}
933
934static int
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200935qed_eth_pf_tx_queue_start(struct qed_hwfn *p_hwfn,
936 struct qed_queue_cid *p_cid,
937 u8 tc,
Manish Chopracee4d262015-10-26 11:02:28 +0200938 dma_addr_t pbl_addr,
Yuval Mintzdacd88d2016-05-11 16:36:16 +0300939 u16 pbl_size, void __iomem **pp_doorbell)
Manish Chopracee4d262015-10-26 11:02:28 +0200940{
Manish Chopracee4d262015-10-26 11:02:28 +0200941 int rc;
942
Manish Chopracee4d262015-10-26 11:02:28 +0200943
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200944 rc = qed_eth_txq_start_ramrod(p_hwfn, p_cid,
945 pbl_addr, pbl_size,
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300946 qed_get_cm_pq_idx_mcos(p_hwfn, tc));
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200947 if (rc)
Manish Chopracee4d262015-10-26 11:02:28 +0200948 return rc;
Manish Chopracee4d262015-10-26 11:02:28 +0200949
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200950 /* Provide the caller with the necessary return values */
951 *pp_doorbell = p_hwfn->doorbells +
952 qed_db_addr(p_cid->cid, DQ_DEMS_LEGACY);
Manish Chopracee4d262015-10-26 11:02:28 +0200953
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200954 return 0;
955}
Manish Chopracee4d262015-10-26 11:02:28 +0200956
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200957static int
958qed_eth_tx_queue_start(struct qed_hwfn *p_hwfn,
959 u16 opaque_fid,
960 struct qed_queue_start_common_params *p_params,
961 u8 tc,
962 dma_addr_t pbl_addr,
963 u16 pbl_size,
964 struct qed_txq_start_ret_params *p_ret_params)
965{
966 struct qed_queue_cid *p_cid;
967 int rc;
968
969 p_cid = qed_eth_queue_to_cid(p_hwfn, opaque_fid, p_params);
970 if (!p_cid)
971 return -EINVAL;
972
973 if (IS_PF(p_hwfn->cdev))
974 rc = qed_eth_pf_tx_queue_start(p_hwfn, p_cid, tc,
975 pbl_addr, pbl_size,
976 &p_ret_params->p_doorbell);
977 else
978 rc = qed_vf_pf_txq_start(p_hwfn, p_cid,
979 pbl_addr, pbl_size,
980 &p_ret_params->p_doorbell);
Manish Chopracee4d262015-10-26 11:02:28 +0200981
982 if (rc)
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200983 qed_eth_queue_cid_release(p_hwfn, p_cid);
984 else
985 p_ret_params->p_handle = (void *)p_cid;
Manish Chopracee4d262015-10-26 11:02:28 +0200986
987 return rc;
988}
989
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200990static int
991qed_eth_pf_tx_queue_stop(struct qed_hwfn *p_hwfn, struct qed_queue_cid *p_cid)
Manish Chopracee4d262015-10-26 11:02:28 +0200992{
Manish Chopracee4d262015-10-26 11:02:28 +0200993 struct qed_spq_entry *p_ent = NULL;
Yuval Mintz06f56b82016-02-21 11:40:09 +0200994 struct qed_sp_init_data init_data;
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200995 int rc;
Manish Chopracee4d262015-10-26 11:02:28 +0200996
Yuval Mintz06f56b82016-02-21 11:40:09 +0200997 memset(&init_data, 0, sizeof(init_data));
Mintz, Yuval3da7a372016-11-29 16:47:06 +0200998 init_data.cid = p_cid->cid;
999 init_data.opaque_fid = p_cid->opaque_fid;
Yuval Mintz06f56b82016-02-21 11:40:09 +02001000 init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
Manish Chopracee4d262015-10-26 11:02:28 +02001001
1002 rc = qed_sp_init_request(p_hwfn, &p_ent,
Manish Chopracee4d262015-10-26 11:02:28 +02001003 ETH_RAMROD_TX_QUEUE_STOP,
Yuval Mintz06f56b82016-02-21 11:40:09 +02001004 PROTOCOLID_ETH, &init_data);
Manish Chopracee4d262015-10-26 11:02:28 +02001005 if (rc)
1006 return rc;
1007
Mintz, Yuval3da7a372016-11-29 16:47:06 +02001008 return qed_spq_post(p_hwfn, p_ent, NULL);
1009}
Manish Chopracee4d262015-10-26 11:02:28 +02001010
Mintz, Yuval3da7a372016-11-29 16:47:06 +02001011int qed_eth_tx_queue_stop(struct qed_hwfn *p_hwfn, void *p_handle)
1012{
1013 struct qed_queue_cid *p_cid = (struct qed_queue_cid *)p_handle;
1014 int rc;
1015
1016 if (IS_PF(p_hwfn->cdev))
1017 rc = qed_eth_pf_tx_queue_stop(p_hwfn, p_cid);
1018 else
1019 rc = qed_vf_pf_txq_stop(p_hwfn, p_cid);
1020
1021 if (!rc)
1022 qed_eth_queue_cid_release(p_hwfn, p_cid);
1023 return rc;
Manish Chopracee4d262015-10-26 11:02:28 +02001024}
1025
Yuval Mintz1a635e42016-08-15 10:42:43 +03001026static enum eth_filter_action qed_filter_action(enum qed_filter_opcode opcode)
Manish Chopracee4d262015-10-26 11:02:28 +02001027{
1028 enum eth_filter_action action = MAX_ETH_FILTER_ACTION;
1029
1030 switch (opcode) {
1031 case QED_FILTER_ADD:
1032 action = ETH_FILTER_ACTION_ADD;
1033 break;
1034 case QED_FILTER_REMOVE:
1035 action = ETH_FILTER_ACTION_REMOVE;
1036 break;
Manish Chopracee4d262015-10-26 11:02:28 +02001037 case QED_FILTER_FLUSH:
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001038 action = ETH_FILTER_ACTION_REMOVE_ALL;
Manish Chopracee4d262015-10-26 11:02:28 +02001039 break;
1040 default:
1041 action = MAX_ETH_FILTER_ACTION;
1042 }
1043
1044 return action;
1045}
1046
1047static void qed_set_fw_mac_addr(__le16 *fw_msb,
1048 __le16 *fw_mid,
1049 __le16 *fw_lsb,
1050 u8 *mac)
1051{
1052 ((u8 *)fw_msb)[0] = mac[1];
1053 ((u8 *)fw_msb)[1] = mac[0];
1054 ((u8 *)fw_mid)[0] = mac[3];
1055 ((u8 *)fw_mid)[1] = mac[2];
1056 ((u8 *)fw_lsb)[0] = mac[5];
1057 ((u8 *)fw_lsb)[1] = mac[4];
1058}
1059
1060static int
1061qed_filter_ucast_common(struct qed_hwfn *p_hwfn,
1062 u16 opaque_fid,
1063 struct qed_filter_ucast *p_filter_cmd,
1064 struct vport_filter_update_ramrod_data **pp_ramrod,
1065 struct qed_spq_entry **pp_ent,
1066 enum spq_mode comp_mode,
1067 struct qed_spq_comp_cb *p_comp_data)
1068{
1069 u8 vport_to_add_to = 0, vport_to_remove_from = 0;
1070 struct vport_filter_update_ramrod_data *p_ramrod;
Manish Chopracee4d262015-10-26 11:02:28 +02001071 struct eth_filter_cmd *p_first_filter;
1072 struct eth_filter_cmd *p_second_filter;
Yuval Mintz06f56b82016-02-21 11:40:09 +02001073 struct qed_sp_init_data init_data;
Manish Chopracee4d262015-10-26 11:02:28 +02001074 enum eth_filter_action action;
1075 int rc;
1076
1077 rc = qed_fw_vport(p_hwfn, p_filter_cmd->vport_to_remove_from,
1078 &vport_to_remove_from);
1079 if (rc)
1080 return rc;
1081
1082 rc = qed_fw_vport(p_hwfn, p_filter_cmd->vport_to_add_to,
1083 &vport_to_add_to);
1084 if (rc)
1085 return rc;
1086
Yuval Mintz06f56b82016-02-21 11:40:09 +02001087 /* Get SPQ entry */
1088 memset(&init_data, 0, sizeof(init_data));
1089 init_data.cid = qed_spq_get_cid(p_hwfn);
1090 init_data.opaque_fid = opaque_fid;
1091 init_data.comp_mode = comp_mode;
1092 init_data.p_comp_data = p_comp_data;
Manish Chopracee4d262015-10-26 11:02:28 +02001093
1094 rc = qed_sp_init_request(p_hwfn, pp_ent,
Manish Chopracee4d262015-10-26 11:02:28 +02001095 ETH_RAMROD_FILTERS_UPDATE,
Yuval Mintz06f56b82016-02-21 11:40:09 +02001096 PROTOCOLID_ETH, &init_data);
Manish Chopracee4d262015-10-26 11:02:28 +02001097 if (rc)
1098 return rc;
1099
1100 *pp_ramrod = &(*pp_ent)->ramrod.vport_filter_update;
1101 p_ramrod = *pp_ramrod;
1102 p_ramrod->filter_cmd_hdr.rx = p_filter_cmd->is_rx_filter ? 1 : 0;
1103 p_ramrod->filter_cmd_hdr.tx = p_filter_cmd->is_tx_filter ? 1 : 0;
1104
1105 switch (p_filter_cmd->opcode) {
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001106 case QED_FILTER_REPLACE:
Manish Chopracee4d262015-10-26 11:02:28 +02001107 case QED_FILTER_MOVE:
1108 p_ramrod->filter_cmd_hdr.cmd_cnt = 2; break;
1109 default:
1110 p_ramrod->filter_cmd_hdr.cmd_cnt = 1; break;
1111 }
1112
1113 p_first_filter = &p_ramrod->filter_cmds[0];
1114 p_second_filter = &p_ramrod->filter_cmds[1];
1115
1116 switch (p_filter_cmd->type) {
1117 case QED_FILTER_MAC:
1118 p_first_filter->type = ETH_FILTER_TYPE_MAC; break;
1119 case QED_FILTER_VLAN:
1120 p_first_filter->type = ETH_FILTER_TYPE_VLAN; break;
1121 case QED_FILTER_MAC_VLAN:
1122 p_first_filter->type = ETH_FILTER_TYPE_PAIR; break;
1123 case QED_FILTER_INNER_MAC:
1124 p_first_filter->type = ETH_FILTER_TYPE_INNER_MAC; break;
1125 case QED_FILTER_INNER_VLAN:
1126 p_first_filter->type = ETH_FILTER_TYPE_INNER_VLAN; break;
1127 case QED_FILTER_INNER_PAIR:
1128 p_first_filter->type = ETH_FILTER_TYPE_INNER_PAIR; break;
1129 case QED_FILTER_INNER_MAC_VNI_PAIR:
1130 p_first_filter->type = ETH_FILTER_TYPE_INNER_MAC_VNI_PAIR;
1131 break;
1132 case QED_FILTER_MAC_VNI_PAIR:
1133 p_first_filter->type = ETH_FILTER_TYPE_MAC_VNI_PAIR; break;
1134 case QED_FILTER_VNI:
1135 p_first_filter->type = ETH_FILTER_TYPE_VNI; break;
1136 }
1137
1138 if ((p_first_filter->type == ETH_FILTER_TYPE_MAC) ||
1139 (p_first_filter->type == ETH_FILTER_TYPE_PAIR) ||
1140 (p_first_filter->type == ETH_FILTER_TYPE_INNER_MAC) ||
1141 (p_first_filter->type == ETH_FILTER_TYPE_INNER_PAIR) ||
1142 (p_first_filter->type == ETH_FILTER_TYPE_INNER_MAC_VNI_PAIR) ||
1143 (p_first_filter->type == ETH_FILTER_TYPE_MAC_VNI_PAIR)) {
1144 qed_set_fw_mac_addr(&p_first_filter->mac_msb,
1145 &p_first_filter->mac_mid,
1146 &p_first_filter->mac_lsb,
1147 (u8 *)p_filter_cmd->mac);
1148 }
1149
1150 if ((p_first_filter->type == ETH_FILTER_TYPE_VLAN) ||
1151 (p_first_filter->type == ETH_FILTER_TYPE_PAIR) ||
1152 (p_first_filter->type == ETH_FILTER_TYPE_INNER_VLAN) ||
1153 (p_first_filter->type == ETH_FILTER_TYPE_INNER_PAIR))
1154 p_first_filter->vlan_id = cpu_to_le16(p_filter_cmd->vlan);
1155
1156 if ((p_first_filter->type == ETH_FILTER_TYPE_INNER_MAC_VNI_PAIR) ||
1157 (p_first_filter->type == ETH_FILTER_TYPE_MAC_VNI_PAIR) ||
1158 (p_first_filter->type == ETH_FILTER_TYPE_VNI))
1159 p_first_filter->vni = cpu_to_le32(p_filter_cmd->vni);
1160
1161 if (p_filter_cmd->opcode == QED_FILTER_MOVE) {
Yuval Mintz1a635e42016-08-15 10:42:43 +03001162 p_second_filter->type = p_first_filter->type;
1163 p_second_filter->mac_msb = p_first_filter->mac_msb;
1164 p_second_filter->mac_mid = p_first_filter->mac_mid;
1165 p_second_filter->mac_lsb = p_first_filter->mac_lsb;
1166 p_second_filter->vlan_id = p_first_filter->vlan_id;
1167 p_second_filter->vni = p_first_filter->vni;
Manish Chopracee4d262015-10-26 11:02:28 +02001168
1169 p_first_filter->action = ETH_FILTER_ACTION_REMOVE;
1170
1171 p_first_filter->vport_id = vport_to_remove_from;
1172
Yuval Mintz1a635e42016-08-15 10:42:43 +03001173 p_second_filter->action = ETH_FILTER_ACTION_ADD;
1174 p_second_filter->vport_id = vport_to_add_to;
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001175 } else if (p_filter_cmd->opcode == QED_FILTER_REPLACE) {
1176 p_first_filter->vport_id = vport_to_add_to;
1177 memcpy(p_second_filter, p_first_filter,
1178 sizeof(*p_second_filter));
1179 p_first_filter->action = ETH_FILTER_ACTION_REMOVE_ALL;
1180 p_second_filter->action = ETH_FILTER_ACTION_ADD;
Manish Chopracee4d262015-10-26 11:02:28 +02001181 } else {
1182 action = qed_filter_action(p_filter_cmd->opcode);
1183
1184 if (action == MAX_ETH_FILTER_ACTION) {
1185 DP_NOTICE(p_hwfn,
1186 "%d is not supported yet\n",
1187 p_filter_cmd->opcode);
1188 return -EINVAL;
1189 }
1190
1191 p_first_filter->action = action;
1192 p_first_filter->vport_id = (p_filter_cmd->opcode ==
1193 QED_FILTER_REMOVE) ?
1194 vport_to_remove_from :
1195 vport_to_add_to;
1196 }
1197
1198 return 0;
1199}
1200
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001201int qed_sp_eth_filter_ucast(struct qed_hwfn *p_hwfn,
1202 u16 opaque_fid,
1203 struct qed_filter_ucast *p_filter_cmd,
1204 enum spq_mode comp_mode,
1205 struct qed_spq_comp_cb *p_comp_data)
Manish Chopracee4d262015-10-26 11:02:28 +02001206{
1207 struct vport_filter_update_ramrod_data *p_ramrod = NULL;
1208 struct qed_spq_entry *p_ent = NULL;
1209 struct eth_filter_cmd_header *p_header;
1210 int rc;
1211
1212 rc = qed_filter_ucast_common(p_hwfn, opaque_fid, p_filter_cmd,
1213 &p_ramrod, &p_ent,
1214 comp_mode, p_comp_data);
Yuval Mintz1a635e42016-08-15 10:42:43 +03001215 if (rc) {
Manish Chopracee4d262015-10-26 11:02:28 +02001216 DP_ERR(p_hwfn, "Uni. filter command failed %d\n", rc);
1217 return rc;
1218 }
1219 p_header = &p_ramrod->filter_cmd_hdr;
1220 p_header->assert_on_error = p_filter_cmd->assert_on_error;
1221
1222 rc = qed_spq_post(p_hwfn, p_ent, NULL);
Yuval Mintz1a635e42016-08-15 10:42:43 +03001223 if (rc) {
1224 DP_ERR(p_hwfn, "Unicast filter ADD command failed %d\n", rc);
Manish Chopracee4d262015-10-26 11:02:28 +02001225 return rc;
1226 }
1227
1228 DP_VERBOSE(p_hwfn, QED_MSG_SP,
1229 "Unicast filter configured, opcode = %s, type = %s, cmd_cnt = %d, is_rx_filter = %d, is_tx_filter = %d\n",
1230 (p_filter_cmd->opcode == QED_FILTER_ADD) ? "ADD" :
1231 ((p_filter_cmd->opcode == QED_FILTER_REMOVE) ?
1232 "REMOVE" :
1233 ((p_filter_cmd->opcode == QED_FILTER_MOVE) ?
1234 "MOVE" : "REPLACE")),
1235 (p_filter_cmd->type == QED_FILTER_MAC) ? "MAC" :
1236 ((p_filter_cmd->type == QED_FILTER_VLAN) ?
1237 "VLAN" : "MAC & VLAN"),
1238 p_ramrod->filter_cmd_hdr.cmd_cnt,
1239 p_filter_cmd->is_rx_filter,
1240 p_filter_cmd->is_tx_filter);
1241 DP_VERBOSE(p_hwfn, QED_MSG_SP,
1242 "vport_to_add_to = %d, vport_to_remove_from = %d, mac = %2x:%2x:%2x:%2x:%2x:%2x, vlan = %d\n",
1243 p_filter_cmd->vport_to_add_to,
1244 p_filter_cmd->vport_to_remove_from,
1245 p_filter_cmd->mac[0],
1246 p_filter_cmd->mac[1],
1247 p_filter_cmd->mac[2],
1248 p_filter_cmd->mac[3],
1249 p_filter_cmd->mac[4],
1250 p_filter_cmd->mac[5],
1251 p_filter_cmd->vlan);
1252
1253 return 0;
1254}
1255
1256/*******************************************************************************
1257 * Description:
1258 * Calculates crc 32 on a buffer
1259 * Note: crc32_length MUST be aligned to 8
1260 * Return:
1261 ******************************************************************************/
1262static u32 qed_calc_crc32c(u8 *crc32_packet,
Yuval Mintz1a635e42016-08-15 10:42:43 +03001263 u32 crc32_length, u32 crc32_seed, u8 complement)
Manish Chopracee4d262015-10-26 11:02:28 +02001264{
Yuval Mintz1a635e42016-08-15 10:42:43 +03001265 u32 byte = 0, bit = 0, crc32_result = crc32_seed;
1266 u8 msb = 0, current_byte = 0;
Manish Chopracee4d262015-10-26 11:02:28 +02001267
1268 if ((!crc32_packet) ||
1269 (crc32_length == 0) ||
1270 ((crc32_length % 8) != 0))
1271 return crc32_result;
1272 for (byte = 0; byte < crc32_length; byte++) {
1273 current_byte = crc32_packet[byte];
1274 for (bit = 0; bit < 8; bit++) {
1275 msb = (u8)(crc32_result >> 31);
1276 crc32_result = crc32_result << 1;
1277 if (msb != (0x1 & (current_byte >> bit))) {
1278 crc32_result = crc32_result ^ CRC32_POLY;
1279 crc32_result |= 1; /*crc32_result[0] = 1;*/
1280 }
1281 }
1282 }
1283 return crc32_result;
1284}
1285
Yuval Mintz1a635e42016-08-15 10:42:43 +03001286static u32 qed_crc32c_le(u32 seed, u8 *mac, u32 len)
Manish Chopracee4d262015-10-26 11:02:28 +02001287{
1288 u32 packet_buf[2] = { 0 };
1289
1290 memcpy((u8 *)(&packet_buf[0]), &mac[0], 6);
1291 return qed_calc_crc32c((u8 *)packet_buf, 8, seed, 0);
1292}
1293
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001294u8 qed_mcast_bin_from_mac(u8 *mac)
Manish Chopracee4d262015-10-26 11:02:28 +02001295{
1296 u32 crc = qed_crc32c_le(ETH_MULTICAST_BIN_FROM_MAC_SEED,
1297 mac, ETH_ALEN);
1298
1299 return crc & 0xff;
1300}
1301
1302static int
1303qed_sp_eth_filter_mcast(struct qed_hwfn *p_hwfn,
1304 u16 opaque_fid,
1305 struct qed_filter_mcast *p_filter_cmd,
1306 enum spq_mode comp_mode,
1307 struct qed_spq_comp_cb *p_comp_data)
1308{
1309 unsigned long bins[ETH_MULTICAST_MAC_BINS_IN_REGS];
1310 struct vport_update_ramrod_data *p_ramrod = NULL;
Manish Chopracee4d262015-10-26 11:02:28 +02001311 struct qed_spq_entry *p_ent = NULL;
Yuval Mintz06f56b82016-02-21 11:40:09 +02001312 struct qed_sp_init_data init_data;
Manish Chopracee4d262015-10-26 11:02:28 +02001313 u8 abs_vport_id = 0;
1314 int rc, i;
1315
Yuval Mintz83aeb932016-08-15 10:42:44 +03001316 if (p_filter_cmd->opcode == QED_FILTER_ADD)
Manish Chopracee4d262015-10-26 11:02:28 +02001317 rc = qed_fw_vport(p_hwfn, p_filter_cmd->vport_to_add_to,
1318 &abs_vport_id);
Yuval Mintz83aeb932016-08-15 10:42:44 +03001319 else
Manish Chopracee4d262015-10-26 11:02:28 +02001320 rc = qed_fw_vport(p_hwfn, p_filter_cmd->vport_to_remove_from,
1321 &abs_vport_id);
Yuval Mintz83aeb932016-08-15 10:42:44 +03001322 if (rc)
1323 return rc;
Manish Chopracee4d262015-10-26 11:02:28 +02001324
Yuval Mintz06f56b82016-02-21 11:40:09 +02001325 /* Get SPQ entry */
1326 memset(&init_data, 0, sizeof(init_data));
1327 init_data.cid = qed_spq_get_cid(p_hwfn);
1328 init_data.opaque_fid = p_hwfn->hw_info.opaque_fid;
1329 init_data.comp_mode = comp_mode;
1330 init_data.p_comp_data = p_comp_data;
Manish Chopracee4d262015-10-26 11:02:28 +02001331
1332 rc = qed_sp_init_request(p_hwfn, &p_ent,
Manish Chopracee4d262015-10-26 11:02:28 +02001333 ETH_RAMROD_VPORT_UPDATE,
Yuval Mintz06f56b82016-02-21 11:40:09 +02001334 PROTOCOLID_ETH, &init_data);
Manish Chopracee4d262015-10-26 11:02:28 +02001335 if (rc) {
1336 DP_ERR(p_hwfn, "Multi-cast command failed %d\n", rc);
1337 return rc;
1338 }
1339
1340 p_ramrod = &p_ent->ramrod.vport_update;
1341 p_ramrod->common.update_approx_mcast_flg = 1;
1342
1343 /* explicitly clear out the entire vector */
1344 memset(&p_ramrod->approx_mcast.bins, 0,
1345 sizeof(p_ramrod->approx_mcast.bins));
1346 memset(bins, 0, sizeof(unsigned long) *
1347 ETH_MULTICAST_MAC_BINS_IN_REGS);
1348 /* filter ADD op is explicit set op and it removes
1349 * any existing filters for the vport
1350 */
1351 if (p_filter_cmd->opcode == QED_FILTER_ADD) {
1352 for (i = 0; i < p_filter_cmd->num_mc_addrs; i++) {
1353 u32 bit;
1354
1355 bit = qed_mcast_bin_from_mac(p_filter_cmd->mac[i]);
1356 __set_bit(bit, bins);
1357 }
1358
1359 /* Convert to correct endianity */
1360 for (i = 0; i < ETH_MULTICAST_MAC_BINS_IN_REGS; i++) {
Yuval Mintz1a635e42016-08-15 10:42:43 +03001361 struct vport_update_ramrod_mcast *p_ramrod_bins;
Manish Chopracee4d262015-10-26 11:02:28 +02001362 u32 *p_bins = (u32 *)bins;
Manish Chopracee4d262015-10-26 11:02:28 +02001363
Yuval Mintz1a635e42016-08-15 10:42:43 +03001364 p_ramrod_bins = &p_ramrod->approx_mcast;
1365 p_ramrod_bins->bins[i] = cpu_to_le32(p_bins[i]);
Manish Chopracee4d262015-10-26 11:02:28 +02001366 }
1367 }
1368
1369 p_ramrod->common.vport_id = abs_vport_id;
1370
1371 return qed_spq_post(p_hwfn, p_ent, NULL);
1372}
1373
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001374static int qed_filter_mcast_cmd(struct qed_dev *cdev,
1375 struct qed_filter_mcast *p_filter_cmd,
1376 enum spq_mode comp_mode,
1377 struct qed_spq_comp_cb *p_comp_data)
Manish Chopracee4d262015-10-26 11:02:28 +02001378{
1379 int rc = 0;
1380 int i;
1381
1382 /* only ADD and REMOVE operations are supported for multi-cast */
1383 if ((p_filter_cmd->opcode != QED_FILTER_ADD &&
1384 (p_filter_cmd->opcode != QED_FILTER_REMOVE)) ||
1385 (p_filter_cmd->num_mc_addrs > QED_MAX_MC_ADDRS))
1386 return -EINVAL;
1387
1388 for_each_hwfn(cdev, i) {
1389 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
1390
1391 u16 opaque_fid;
1392
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001393 if (IS_VF(cdev)) {
1394 qed_vf_pf_filter_mcast(p_hwfn, p_filter_cmd);
1395 continue;
1396 }
Manish Chopracee4d262015-10-26 11:02:28 +02001397
1398 opaque_fid = p_hwfn->hw_info.opaque_fid;
1399
1400 rc = qed_sp_eth_filter_mcast(p_hwfn,
1401 opaque_fid,
1402 p_filter_cmd,
Yuval Mintz1a635e42016-08-15 10:42:43 +03001403 comp_mode, p_comp_data);
Manish Chopracee4d262015-10-26 11:02:28 +02001404 }
1405 return rc;
1406}
1407
1408static int qed_filter_ucast_cmd(struct qed_dev *cdev,
1409 struct qed_filter_ucast *p_filter_cmd,
1410 enum spq_mode comp_mode,
1411 struct qed_spq_comp_cb *p_comp_data)
1412{
1413 int rc = 0;
1414 int i;
1415
1416 for_each_hwfn(cdev, i) {
1417 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
1418 u16 opaque_fid;
1419
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001420 if (IS_VF(cdev)) {
1421 rc = qed_vf_pf_filter_ucast(p_hwfn, p_filter_cmd);
1422 continue;
1423 }
Manish Chopracee4d262015-10-26 11:02:28 +02001424
1425 opaque_fid = p_hwfn->hw_info.opaque_fid;
1426
1427 rc = qed_sp_eth_filter_ucast(p_hwfn,
1428 opaque_fid,
1429 p_filter_cmd,
Yuval Mintz1a635e42016-08-15 10:42:43 +03001430 comp_mode, p_comp_data);
1431 if (rc)
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001432 break;
Manish Chopracee4d262015-10-26 11:02:28 +02001433 }
1434
1435 return rc;
1436}
1437
Yuval Mintz86622ee2016-03-02 20:26:02 +02001438/* Statistics related code */
1439static void __qed_get_vport_pstats_addrlen(struct qed_hwfn *p_hwfn,
1440 u32 *p_addr,
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001441 u32 *p_len, u16 statistics_bin)
Yuval Mintz86622ee2016-03-02 20:26:02 +02001442{
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001443 if (IS_PF(p_hwfn->cdev)) {
1444 *p_addr = BAR0_MAP_REG_PSDM_RAM +
1445 PSTORM_QUEUE_STAT_OFFSET(statistics_bin);
1446 *p_len = sizeof(struct eth_pstorm_per_queue_stat);
1447 } else {
1448 struct qed_vf_iov *p_iov = p_hwfn->vf_iov_info;
1449 struct pfvf_acquire_resp_tlv *p_resp = &p_iov->acquire_resp;
1450
1451 *p_addr = p_resp->pfdev_info.stats_info.pstats.address;
1452 *p_len = p_resp->pfdev_info.stats_info.pstats.len;
1453 }
Yuval Mintz86622ee2016-03-02 20:26:02 +02001454}
1455
1456static void __qed_get_vport_pstats(struct qed_hwfn *p_hwfn,
1457 struct qed_ptt *p_ptt,
1458 struct qed_eth_stats *p_stats,
1459 u16 statistics_bin)
1460{
1461 struct eth_pstorm_per_queue_stat pstats;
1462 u32 pstats_addr = 0, pstats_len = 0;
1463
1464 __qed_get_vport_pstats_addrlen(p_hwfn, &pstats_addr, &pstats_len,
1465 statistics_bin);
1466
1467 memset(&pstats, 0, sizeof(pstats));
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001468 qed_memcpy_from(p_hwfn, p_ptt, &pstats, pstats_addr, pstats_len);
Yuval Mintz86622ee2016-03-02 20:26:02 +02001469
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02001470 p_stats->common.tx_ucast_bytes +=
1471 HILO_64_REGPAIR(pstats.sent_ucast_bytes);
1472 p_stats->common.tx_mcast_bytes +=
1473 HILO_64_REGPAIR(pstats.sent_mcast_bytes);
1474 p_stats->common.tx_bcast_bytes +=
1475 HILO_64_REGPAIR(pstats.sent_bcast_bytes);
1476 p_stats->common.tx_ucast_pkts +=
1477 HILO_64_REGPAIR(pstats.sent_ucast_pkts);
1478 p_stats->common.tx_mcast_pkts +=
1479 HILO_64_REGPAIR(pstats.sent_mcast_pkts);
1480 p_stats->common.tx_bcast_pkts +=
1481 HILO_64_REGPAIR(pstats.sent_bcast_pkts);
1482 p_stats->common.tx_err_drop_pkts +=
1483 HILO_64_REGPAIR(pstats.error_drop_pkts);
Yuval Mintz86622ee2016-03-02 20:26:02 +02001484}
1485
1486static void __qed_get_vport_tstats(struct qed_hwfn *p_hwfn,
1487 struct qed_ptt *p_ptt,
1488 struct qed_eth_stats *p_stats,
1489 u16 statistics_bin)
1490{
Yuval Mintz86622ee2016-03-02 20:26:02 +02001491 struct tstorm_per_port_stat tstats;
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001492 u32 tstats_addr, tstats_len;
Yuval Mintz86622ee2016-03-02 20:26:02 +02001493
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001494 if (IS_PF(p_hwfn->cdev)) {
1495 tstats_addr = BAR0_MAP_REG_TSDM_RAM +
1496 TSTORM_PORT_STAT_OFFSET(MFW_PORT(p_hwfn));
1497 tstats_len = sizeof(struct tstorm_per_port_stat);
1498 } else {
1499 struct qed_vf_iov *p_iov = p_hwfn->vf_iov_info;
1500 struct pfvf_acquire_resp_tlv *p_resp = &p_iov->acquire_resp;
1501
1502 tstats_addr = p_resp->pfdev_info.stats_info.tstats.address;
1503 tstats_len = p_resp->pfdev_info.stats_info.tstats.len;
1504 }
Yuval Mintz86622ee2016-03-02 20:26:02 +02001505
1506 memset(&tstats, 0, sizeof(tstats));
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001507 qed_memcpy_from(p_hwfn, p_ptt, &tstats, tstats_addr, tstats_len);
Yuval Mintz86622ee2016-03-02 20:26:02 +02001508
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02001509 p_stats->common.mftag_filter_discards +=
1510 HILO_64_REGPAIR(tstats.mftag_filter_discard);
1511 p_stats->common.mac_filter_discards +=
1512 HILO_64_REGPAIR(tstats.eth_mac_filter_discard);
Yuval Mintz86622ee2016-03-02 20:26:02 +02001513}
1514
1515static void __qed_get_vport_ustats_addrlen(struct qed_hwfn *p_hwfn,
1516 u32 *p_addr,
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001517 u32 *p_len, u16 statistics_bin)
Yuval Mintz86622ee2016-03-02 20:26:02 +02001518{
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001519 if (IS_PF(p_hwfn->cdev)) {
1520 *p_addr = BAR0_MAP_REG_USDM_RAM +
1521 USTORM_QUEUE_STAT_OFFSET(statistics_bin);
1522 *p_len = sizeof(struct eth_ustorm_per_queue_stat);
1523 } else {
1524 struct qed_vf_iov *p_iov = p_hwfn->vf_iov_info;
1525 struct pfvf_acquire_resp_tlv *p_resp = &p_iov->acquire_resp;
1526
1527 *p_addr = p_resp->pfdev_info.stats_info.ustats.address;
1528 *p_len = p_resp->pfdev_info.stats_info.ustats.len;
1529 }
Yuval Mintz86622ee2016-03-02 20:26:02 +02001530}
1531
1532static void __qed_get_vport_ustats(struct qed_hwfn *p_hwfn,
1533 struct qed_ptt *p_ptt,
1534 struct qed_eth_stats *p_stats,
1535 u16 statistics_bin)
1536{
1537 struct eth_ustorm_per_queue_stat ustats;
1538 u32 ustats_addr = 0, ustats_len = 0;
1539
1540 __qed_get_vport_ustats_addrlen(p_hwfn, &ustats_addr, &ustats_len,
1541 statistics_bin);
1542
1543 memset(&ustats, 0, sizeof(ustats));
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001544 qed_memcpy_from(p_hwfn, p_ptt, &ustats, ustats_addr, ustats_len);
Yuval Mintz86622ee2016-03-02 20:26:02 +02001545
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02001546 p_stats->common.rx_ucast_bytes +=
1547 HILO_64_REGPAIR(ustats.rcv_ucast_bytes);
1548 p_stats->common.rx_mcast_bytes +=
1549 HILO_64_REGPAIR(ustats.rcv_mcast_bytes);
1550 p_stats->common.rx_bcast_bytes +=
1551 HILO_64_REGPAIR(ustats.rcv_bcast_bytes);
1552 p_stats->common.rx_ucast_pkts += HILO_64_REGPAIR(ustats.rcv_ucast_pkts);
1553 p_stats->common.rx_mcast_pkts += HILO_64_REGPAIR(ustats.rcv_mcast_pkts);
1554 p_stats->common.rx_bcast_pkts += HILO_64_REGPAIR(ustats.rcv_bcast_pkts);
Yuval Mintz86622ee2016-03-02 20:26:02 +02001555}
1556
1557static void __qed_get_vport_mstats_addrlen(struct qed_hwfn *p_hwfn,
1558 u32 *p_addr,
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001559 u32 *p_len, u16 statistics_bin)
Yuval Mintz86622ee2016-03-02 20:26:02 +02001560{
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001561 if (IS_PF(p_hwfn->cdev)) {
1562 *p_addr = BAR0_MAP_REG_MSDM_RAM +
1563 MSTORM_QUEUE_STAT_OFFSET(statistics_bin);
1564 *p_len = sizeof(struct eth_mstorm_per_queue_stat);
1565 } else {
1566 struct qed_vf_iov *p_iov = p_hwfn->vf_iov_info;
1567 struct pfvf_acquire_resp_tlv *p_resp = &p_iov->acquire_resp;
1568
1569 *p_addr = p_resp->pfdev_info.stats_info.mstats.address;
1570 *p_len = p_resp->pfdev_info.stats_info.mstats.len;
1571 }
Yuval Mintz86622ee2016-03-02 20:26:02 +02001572}
1573
1574static void __qed_get_vport_mstats(struct qed_hwfn *p_hwfn,
1575 struct qed_ptt *p_ptt,
1576 struct qed_eth_stats *p_stats,
1577 u16 statistics_bin)
1578{
1579 struct eth_mstorm_per_queue_stat mstats;
1580 u32 mstats_addr = 0, mstats_len = 0;
1581
1582 __qed_get_vport_mstats_addrlen(p_hwfn, &mstats_addr, &mstats_len,
1583 statistics_bin);
1584
1585 memset(&mstats, 0, sizeof(mstats));
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001586 qed_memcpy_from(p_hwfn, p_ptt, &mstats, mstats_addr, mstats_len);
Yuval Mintz86622ee2016-03-02 20:26:02 +02001587
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02001588 p_stats->common.no_buff_discards +=
1589 HILO_64_REGPAIR(mstats.no_buff_discard);
1590 p_stats->common.packet_too_big_discard +=
1591 HILO_64_REGPAIR(mstats.packet_too_big_discard);
1592 p_stats->common.ttl0_discard += HILO_64_REGPAIR(mstats.ttl0_discard);
1593 p_stats->common.tpa_coalesced_pkts +=
1594 HILO_64_REGPAIR(mstats.tpa_coalesced_pkts);
1595 p_stats->common.tpa_coalesced_events +=
1596 HILO_64_REGPAIR(mstats.tpa_coalesced_events);
1597 p_stats->common.tpa_aborts_num +=
1598 HILO_64_REGPAIR(mstats.tpa_aborts_num);
1599 p_stats->common.tpa_coalesced_bytes +=
1600 HILO_64_REGPAIR(mstats.tpa_coalesced_bytes);
Yuval Mintz86622ee2016-03-02 20:26:02 +02001601}
1602
1603static void __qed_get_vport_port_stats(struct qed_hwfn *p_hwfn,
1604 struct qed_ptt *p_ptt,
1605 struct qed_eth_stats *p_stats)
1606{
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02001607 struct qed_eth_stats_common *p_common = &p_stats->common;
Yuval Mintz86622ee2016-03-02 20:26:02 +02001608 struct port_stats port_stats;
1609 int j;
1610
1611 memset(&port_stats, 0, sizeof(port_stats));
1612
1613 qed_memcpy_from(p_hwfn, p_ptt, &port_stats,
1614 p_hwfn->mcp_info->port_addr +
1615 offsetof(struct public_port, stats),
1616 sizeof(port_stats));
1617
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02001618 p_common->rx_64_byte_packets += port_stats.eth.r64;
1619 p_common->rx_65_to_127_byte_packets += port_stats.eth.r127;
1620 p_common->rx_128_to_255_byte_packets += port_stats.eth.r255;
1621 p_common->rx_256_to_511_byte_packets += port_stats.eth.r511;
1622 p_common->rx_512_to_1023_byte_packets += port_stats.eth.r1023;
1623 p_common->rx_1024_to_1518_byte_packets += port_stats.eth.r1518;
1624 p_common->rx_crc_errors += port_stats.eth.rfcs;
1625 p_common->rx_mac_crtl_frames += port_stats.eth.rxcf;
1626 p_common->rx_pause_frames += port_stats.eth.rxpf;
1627 p_common->rx_pfc_frames += port_stats.eth.rxpp;
1628 p_common->rx_align_errors += port_stats.eth.raln;
1629 p_common->rx_carrier_errors += port_stats.eth.rfcr;
1630 p_common->rx_oversize_packets += port_stats.eth.rovr;
1631 p_common->rx_jabbers += port_stats.eth.rjbr;
1632 p_common->rx_undersize_packets += port_stats.eth.rund;
1633 p_common->rx_fragments += port_stats.eth.rfrg;
1634 p_common->tx_64_byte_packets += port_stats.eth.t64;
1635 p_common->tx_65_to_127_byte_packets += port_stats.eth.t127;
1636 p_common->tx_128_to_255_byte_packets += port_stats.eth.t255;
1637 p_common->tx_256_to_511_byte_packets += port_stats.eth.t511;
1638 p_common->tx_512_to_1023_byte_packets += port_stats.eth.t1023;
1639 p_common->tx_1024_to_1518_byte_packets += port_stats.eth.t1518;
1640 p_common->tx_pause_frames += port_stats.eth.txpf;
1641 p_common->tx_pfc_frames += port_stats.eth.txpp;
1642 p_common->rx_mac_bytes += port_stats.eth.rbyte;
1643 p_common->rx_mac_uc_packets += port_stats.eth.rxuca;
1644 p_common->rx_mac_mc_packets += port_stats.eth.rxmca;
1645 p_common->rx_mac_bc_packets += port_stats.eth.rxbca;
1646 p_common->rx_mac_frames_ok += port_stats.eth.rxpok;
1647 p_common->tx_mac_bytes += port_stats.eth.tbyte;
1648 p_common->tx_mac_uc_packets += port_stats.eth.txuca;
1649 p_common->tx_mac_mc_packets += port_stats.eth.txmca;
1650 p_common->tx_mac_bc_packets += port_stats.eth.txbca;
1651 p_common->tx_mac_ctrl_frames += port_stats.eth.txcf;
Yuval Mintz86622ee2016-03-02 20:26:02 +02001652 for (j = 0; j < 8; j++) {
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02001653 p_common->brb_truncates += port_stats.brb.brb_truncate[j];
1654 p_common->brb_discards += port_stats.brb.brb_discard[j];
1655 }
1656
1657 if (QED_IS_BB(p_hwfn->cdev)) {
1658 struct qed_eth_stats_bb *p_bb = &p_stats->bb;
1659
1660 p_bb->rx_1519_to_1522_byte_packets +=
1661 port_stats.eth.u0.bb0.r1522;
1662 p_bb->rx_1519_to_2047_byte_packets +=
1663 port_stats.eth.u0.bb0.r2047;
1664 p_bb->rx_2048_to_4095_byte_packets +=
1665 port_stats.eth.u0.bb0.r4095;
1666 p_bb->rx_4096_to_9216_byte_packets +=
1667 port_stats.eth.u0.bb0.r9216;
1668 p_bb->rx_9217_to_16383_byte_packets +=
1669 port_stats.eth.u0.bb0.r16383;
1670 p_bb->tx_1519_to_2047_byte_packets +=
1671 port_stats.eth.u1.bb1.t2047;
1672 p_bb->tx_2048_to_4095_byte_packets +=
1673 port_stats.eth.u1.bb1.t4095;
1674 p_bb->tx_4096_to_9216_byte_packets +=
1675 port_stats.eth.u1.bb1.t9216;
1676 p_bb->tx_9217_to_16383_byte_packets +=
1677 port_stats.eth.u1.bb1.t16383;
1678 p_bb->tx_lpi_entry_count += port_stats.eth.u2.bb2.tlpiec;
1679 p_bb->tx_total_collisions += port_stats.eth.u2.bb2.tncl;
1680 } else {
1681 struct qed_eth_stats_ah *p_ah = &p_stats->ah;
1682
1683 p_ah->rx_1519_to_max_byte_packets +=
1684 port_stats.eth.u0.ah0.r1519_to_max;
1685 p_ah->tx_1519_to_max_byte_packets =
1686 port_stats.eth.u1.ah1.t1519_to_max;
Yuval Mintz86622ee2016-03-02 20:26:02 +02001687 }
1688}
1689
1690static void __qed_get_vport_stats(struct qed_hwfn *p_hwfn,
1691 struct qed_ptt *p_ptt,
1692 struct qed_eth_stats *stats,
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001693 u16 statistics_bin, bool b_get_port_stats)
Yuval Mintz86622ee2016-03-02 20:26:02 +02001694{
1695 __qed_get_vport_mstats(p_hwfn, p_ptt, stats, statistics_bin);
1696 __qed_get_vport_ustats(p_hwfn, p_ptt, stats, statistics_bin);
1697 __qed_get_vport_tstats(p_hwfn, p_ptt, stats, statistics_bin);
1698 __qed_get_vport_pstats(p_hwfn, p_ptt, stats, statistics_bin);
1699
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001700 if (b_get_port_stats && p_hwfn->mcp_info)
Yuval Mintz86622ee2016-03-02 20:26:02 +02001701 __qed_get_vport_port_stats(p_hwfn, p_ptt, stats);
1702}
1703
1704static void _qed_get_vport_stats(struct qed_dev *cdev,
1705 struct qed_eth_stats *stats)
1706{
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001707 u8 fw_vport = 0;
1708 int i;
Yuval Mintz86622ee2016-03-02 20:26:02 +02001709
1710 memset(stats, 0, sizeof(*stats));
1711
1712 for_each_hwfn(cdev, i) {
1713 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001714 struct qed_ptt *p_ptt = IS_PF(cdev) ? qed_ptt_acquire(p_hwfn)
1715 : NULL;
Yuval Mintz86622ee2016-03-02 20:26:02 +02001716
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001717 if (IS_PF(cdev)) {
1718 /* The main vport index is relative first */
1719 if (qed_fw_vport(p_hwfn, 0, &fw_vport)) {
1720 DP_ERR(p_hwfn, "No vport available!\n");
1721 goto out;
1722 }
Yuval Mintz86622ee2016-03-02 20:26:02 +02001723 }
1724
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001725 if (IS_PF(cdev) && !p_ptt) {
Yuval Mintz86622ee2016-03-02 20:26:02 +02001726 DP_ERR(p_hwfn, "Failed to acquire ptt\n");
1727 continue;
1728 }
1729
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001730 __qed_get_vport_stats(p_hwfn, p_ptt, stats, fw_vport,
1731 IS_PF(cdev) ? true : false);
Yuval Mintz86622ee2016-03-02 20:26:02 +02001732
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001733out:
1734 if (IS_PF(cdev) && p_ptt)
1735 qed_ptt_release(p_hwfn, p_ptt);
Yuval Mintz86622ee2016-03-02 20:26:02 +02001736 }
1737}
1738
Yuval Mintz1a635e42016-08-15 10:42:43 +03001739void qed_get_vport_stats(struct qed_dev *cdev, struct qed_eth_stats *stats)
Yuval Mintz86622ee2016-03-02 20:26:02 +02001740{
1741 u32 i;
1742
1743 if (!cdev) {
1744 memset(stats, 0, sizeof(*stats));
1745 return;
1746 }
1747
1748 _qed_get_vport_stats(cdev, stats);
1749
1750 if (!cdev->reset_stats)
1751 return;
1752
1753 /* Reduce the statistics baseline */
1754 for (i = 0; i < sizeof(struct qed_eth_stats) / sizeof(u64); i++)
1755 ((u64 *)stats)[i] -= ((u64 *)cdev->reset_stats)[i];
1756}
1757
1758/* zeroes V-PORT specific portion of stats (Port stats remains untouched) */
1759void qed_reset_vport_stats(struct qed_dev *cdev)
1760{
1761 int i;
1762
1763 for_each_hwfn(cdev, i) {
1764 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
1765 struct eth_mstorm_per_queue_stat mstats;
1766 struct eth_ustorm_per_queue_stat ustats;
1767 struct eth_pstorm_per_queue_stat pstats;
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001768 struct qed_ptt *p_ptt = IS_PF(cdev) ? qed_ptt_acquire(p_hwfn)
1769 : NULL;
Yuval Mintz86622ee2016-03-02 20:26:02 +02001770 u32 addr = 0, len = 0;
1771
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001772 if (IS_PF(cdev) && !p_ptt) {
Yuval Mintz86622ee2016-03-02 20:26:02 +02001773 DP_ERR(p_hwfn, "Failed to acquire ptt\n");
1774 continue;
1775 }
1776
1777 memset(&mstats, 0, sizeof(mstats));
1778 __qed_get_vport_mstats_addrlen(p_hwfn, &addr, &len, 0);
1779 qed_memcpy_to(p_hwfn, p_ptt, addr, &mstats, len);
1780
1781 memset(&ustats, 0, sizeof(ustats));
1782 __qed_get_vport_ustats_addrlen(p_hwfn, &addr, &len, 0);
1783 qed_memcpy_to(p_hwfn, p_ptt, addr, &ustats, len);
1784
1785 memset(&pstats, 0, sizeof(pstats));
1786 __qed_get_vport_pstats_addrlen(p_hwfn, &addr, &len, 0);
1787 qed_memcpy_to(p_hwfn, p_ptt, addr, &pstats, len);
1788
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001789 if (IS_PF(cdev))
1790 qed_ptt_release(p_hwfn, p_ptt);
Yuval Mintz86622ee2016-03-02 20:26:02 +02001791 }
1792
1793 /* PORT statistics are not necessarily reset, so we need to
1794 * read and create a baseline for future statistics.
1795 */
1796 if (!cdev->reset_stats)
1797 DP_INFO(cdev, "Reset stats not allocated\n");
1798 else
1799 _qed_get_vport_stats(cdev, cdev->reset_stats);
1800}
1801
Chopra, Manishd51e4af2017-04-13 04:54:44 -07001802static void
1803qed_arfs_mode_configure(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
1804 struct qed_arfs_config_params *p_cfg_params)
1805{
1806 if (p_cfg_params->arfs_enable) {
1807 qed_set_rfs_mode_enable(p_hwfn, p_ptt, p_hwfn->rel_pf_id,
1808 p_cfg_params->tcp, p_cfg_params->udp,
1809 p_cfg_params->ipv4, p_cfg_params->ipv6);
1810 DP_VERBOSE(p_hwfn, QED_MSG_SP,
1811 "tcp = %s, udp = %s, ipv4 = %s, ipv6 =%s\n",
1812 p_cfg_params->tcp ? "Enable" : "Disable",
1813 p_cfg_params->udp ? "Enable" : "Disable",
1814 p_cfg_params->ipv4 ? "Enable" : "Disable",
1815 p_cfg_params->ipv6 ? "Enable" : "Disable");
1816 } else {
1817 qed_set_rfs_mode_disable(p_hwfn, p_ptt, p_hwfn->rel_pf_id);
1818 }
1819
1820 DP_VERBOSE(p_hwfn, QED_MSG_SP, "Configured ARFS mode : %s\n",
1821 p_cfg_params->arfs_enable ? "Enable" : "Disable");
1822}
1823
1824static int
1825qed_configure_rfs_ntuple_filter(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
1826 struct qed_spq_comp_cb *p_cb,
1827 dma_addr_t p_addr, u16 length, u16 qid,
1828 u8 vport_id, bool b_is_add)
1829{
1830 struct rx_update_gft_filter_data *p_ramrod = NULL;
1831 struct qed_spq_entry *p_ent = NULL;
1832 struct qed_sp_init_data init_data;
1833 u16 abs_rx_q_id = 0;
1834 u8 abs_vport_id = 0;
1835 int rc = -EINVAL;
1836
1837 rc = qed_fw_vport(p_hwfn, vport_id, &abs_vport_id);
1838 if (rc)
1839 return rc;
1840
1841 rc = qed_fw_l2_queue(p_hwfn, qid, &abs_rx_q_id);
1842 if (rc)
1843 return rc;
1844
1845 /* Get SPQ entry */
1846 memset(&init_data, 0, sizeof(init_data));
1847 init_data.cid = qed_spq_get_cid(p_hwfn);
1848
1849 init_data.opaque_fid = p_hwfn->hw_info.opaque_fid;
1850
1851 if (p_cb) {
1852 init_data.comp_mode = QED_SPQ_MODE_CB;
1853 init_data.p_comp_data = p_cb;
1854 } else {
1855 init_data.comp_mode = QED_SPQ_MODE_EBLOCK;
1856 }
1857
1858 rc = qed_sp_init_request(p_hwfn, &p_ent,
1859 ETH_RAMROD_GFT_UPDATE_FILTER,
1860 PROTOCOLID_ETH, &init_data);
1861 if (rc)
1862 return rc;
1863
1864 p_ramrod = &p_ent->ramrod.rx_update_gft;
1865 DMA_REGPAIR_LE(p_ramrod->pkt_hdr_addr, p_addr);
1866 p_ramrod->pkt_hdr_length = cpu_to_le16(length);
1867 p_ramrod->rx_qid_or_action_icid = cpu_to_le16(abs_rx_q_id);
1868 p_ramrod->vport_id = abs_vport_id;
1869 p_ramrod->filter_type = RFS_FILTER_TYPE;
1870 p_ramrod->filter_action = b_is_add ? GFT_ADD_FILTER : GFT_DELETE_FILTER;
1871
1872 DP_VERBOSE(p_hwfn, QED_MSG_SP,
1873 "V[%0x], Q[%04x] - %s filter from 0x%llx [length %04xb]\n",
1874 abs_vport_id, abs_rx_q_id,
1875 b_is_add ? "Adding" : "Removing", (u64)p_addr, length);
1876
1877 return qed_spq_post(p_hwfn, p_ent, NULL);
1878}
1879
Yuval Mintz25c089d2015-10-26 11:02:26 +02001880static int qed_fill_eth_dev_info(struct qed_dev *cdev,
1881 struct qed_dev_eth_info *info)
1882{
1883 int i;
1884
1885 memset(info, 0, sizeof(*info));
1886
1887 info->num_tc = 1;
1888
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001889 if (IS_PF(cdev)) {
Yuval Mintz25eb8d42016-07-27 14:45:24 +03001890 int max_vf_vlan_filters = 0;
Yuval Mintz7b7e70f2016-10-14 05:19:20 -04001891 int max_vf_mac_filters = 0;
Yuval Mintz25eb8d42016-07-27 14:45:24 +03001892
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001893 if (cdev->int_params.out.int_mode == QED_INT_MODE_MSIX) {
Mintz, Yuvale1d32ac2017-01-01 13:57:03 +02001894 u16 num_queues = 0;
1895
1896 /* Since the feature controls only queue-zones,
1897 * make sure we have the contexts [rx, tx, xdp] to
1898 * match.
1899 */
1900 for_each_hwfn(cdev, i) {
1901 struct qed_hwfn *hwfn = &cdev->hwfns[i];
1902 u16 l2_queues = (u16)FEAT_NUM(hwfn,
1903 QED_PF_L2_QUE);
1904 u16 cids;
1905
1906 cids = hwfn->pf_params.eth_pf_params.num_cons;
1907 num_queues += min_t(u16, l2_queues, cids / 3);
1908 }
1909
1910 /* queues might theoretically be >256, but interrupts'
1911 * upper-limit guarantes that it would fit in a u8.
1912 */
1913 if (cdev->int_params.fp_msix_cnt) {
1914 u8 irqs = cdev->int_params.fp_msix_cnt;
1915
1916 info->num_queues = (u8)min_t(u16,
1917 num_queues, irqs);
1918 }
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001919 } else {
1920 info->num_queues = cdev->num_hwfns;
1921 }
1922
Yuval Mintz7b7e70f2016-10-14 05:19:20 -04001923 if (IS_QED_SRIOV(cdev)) {
Yuval Mintz25eb8d42016-07-27 14:45:24 +03001924 max_vf_vlan_filters = cdev->p_iov_info->total_vfs *
1925 QED_ETH_VF_NUM_VLAN_FILTERS;
Yuval Mintz7b7e70f2016-10-14 05:19:20 -04001926 max_vf_mac_filters = cdev->p_iov_info->total_vfs *
1927 QED_ETH_VF_NUM_MAC_FILTERS;
1928 }
1929 info->num_vlan_filters = RESC_NUM(QED_LEADING_HWFN(cdev),
1930 QED_VLAN) -
Yuval Mintz25eb8d42016-07-27 14:45:24 +03001931 max_vf_vlan_filters;
Yuval Mintz7b7e70f2016-10-14 05:19:20 -04001932 info->num_mac_filters = RESC_NUM(QED_LEADING_HWFN(cdev),
1933 QED_MAC) -
1934 max_vf_mac_filters;
Yuval Mintz25eb8d42016-07-27 14:45:24 +03001935
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001936 ether_addr_copy(info->port_mac,
1937 cdev->hwfns[0].hw_info.hw_mac_addr);
Yuval Mintz25c089d2015-10-26 11:02:26 +02001938 } else {
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001939 qed_vf_get_num_rxqs(QED_LEADING_HWFN(cdev), &info->num_queues);
1940 if (cdev->num_hwfns > 1) {
1941 u8 queues = 0;
1942
1943 qed_vf_get_num_rxqs(&cdev->hwfns[1], &queues);
1944 info->num_queues += queues;
1945 }
1946
1947 qed_vf_get_num_vlan_filters(&cdev->hwfns[0],
Tomer Tayar2edbff82016-10-31 07:14:27 +02001948 (u8 *)&info->num_vlan_filters);
Mintz, Yuvalb0fca312016-10-31 22:26:54 +02001949 qed_vf_get_num_mac_filters(&cdev->hwfns[0],
1950 (u8 *)&info->num_mac_filters);
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001951 qed_vf_get_port_mac(&cdev->hwfns[0], info->port_mac);
Yuval Mintzd8c2c7e2016-08-22 13:25:11 +03001952
1953 info->is_legacy = !!cdev->hwfns[0].vf_iov_info->b_pre_fp_hsi;
Yuval Mintz25c089d2015-10-26 11:02:26 +02001954 }
1955
Yuval Mintz25c089d2015-10-26 11:02:26 +02001956 qed_fill_dev_info(cdev, &info->common);
1957
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001958 if (IS_VF(cdev))
Shyam Saini0ee28e32017-01-17 07:35:04 +05301959 eth_zero_addr(info->common.hw_mac);
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001960
Yuval Mintz25c089d2015-10-26 11:02:26 +02001961 return 0;
1962}
1963
Yuval Mintzcc875c22015-10-26 11:02:31 +02001964static void qed_register_eth_ops(struct qed_dev *cdev,
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001965 struct qed_eth_cb_ops *ops, void *cookie)
Yuval Mintzcc875c22015-10-26 11:02:31 +02001966{
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001967 cdev->protocol_ops.eth = ops;
1968 cdev->ops_cookie = cookie;
1969
1970 /* For VF, we start bulletin reading */
1971 if (IS_VF(cdev))
1972 qed_vf_start_iov_wq(cdev);
Yuval Mintzcc875c22015-10-26 11:02:31 +02001973}
1974
Yuval Mintzeff16962016-05-11 16:36:21 +03001975static bool qed_check_mac(struct qed_dev *cdev, u8 *mac)
1976{
1977 if (IS_PF(cdev))
1978 return true;
1979
1980 return qed_vf_check_mac(&cdev->hwfns[0], mac);
1981}
1982
Manish Chopracee4d262015-10-26 11:02:28 +02001983static int qed_start_vport(struct qed_dev *cdev,
Manish Chopra088c8612016-03-04 12:35:05 -05001984 struct qed_start_vport_params *params)
Manish Chopracee4d262015-10-26 11:02:28 +02001985{
1986 int rc, i;
1987
1988 for_each_hwfn(cdev, i) {
Manish Chopra088c8612016-03-04 12:35:05 -05001989 struct qed_sp_vport_start_params start = { 0 };
Manish Chopracee4d262015-10-26 11:02:28 +02001990 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
1991
Manish Chopra088c8612016-03-04 12:35:05 -05001992 start.tpa_mode = params->gro_enable ? QED_TPA_MODE_GRO :
1993 QED_TPA_MODE_NONE;
1994 start.remove_inner_vlan = params->remove_inner_vlan;
Yuval Mintz08feecd2016-05-11 16:36:20 +03001995 start.only_untagged = true; /* untagged only */
Manish Chopra088c8612016-03-04 12:35:05 -05001996 start.drop_ttl0 = params->drop_ttl0;
1997 start.opaque_fid = p_hwfn->hw_info.opaque_fid;
1998 start.concrete_fid = p_hwfn->hw_info.concrete_fid;
Sudarsana Reddy Kalluruc78c70f2017-02-15 10:24:10 +02001999 start.handle_ptp_pkts = params->handle_ptp_pkts;
Manish Chopra088c8612016-03-04 12:35:05 -05002000 start.vport_id = params->vport_id;
2001 start.max_buffers_per_cqe = 16;
2002 start.mtu = params->mtu;
Manish Chopracee4d262015-10-26 11:02:28 +02002003
Manish Chopra088c8612016-03-04 12:35:05 -05002004 rc = qed_sp_vport_start(p_hwfn, &start);
Manish Chopracee4d262015-10-26 11:02:28 +02002005 if (rc) {
2006 DP_ERR(cdev, "Failed to start VPORT\n");
2007 return rc;
2008 }
2009
Rahul Verma15582962017-04-06 15:58:29 +03002010 rc = qed_hw_start_fastpath(p_hwfn);
2011 if (rc) {
2012 DP_ERR(cdev, "Failed to start VPORT fastpath\n");
2013 return rc;
2014 }
Manish Chopracee4d262015-10-26 11:02:28 +02002015
2016 DP_VERBOSE(cdev, (QED_MSG_SPQ | NETIF_MSG_IFUP),
2017 "Started V-PORT %d with MTU %d\n",
Manish Chopra088c8612016-03-04 12:35:05 -05002018 start.vport_id, start.mtu);
Manish Chopracee4d262015-10-26 11:02:28 +02002019 }
2020
Yuval Mintza0d26d52016-06-19 15:18:13 +03002021 if (params->clear_stats)
2022 qed_reset_vport_stats(cdev);
Manish Chopra9df2ed02015-10-26 11:02:33 +02002023
Manish Chopracee4d262015-10-26 11:02:28 +02002024 return 0;
2025}
2026
Yuval Mintz1a635e42016-08-15 10:42:43 +03002027static int qed_stop_vport(struct qed_dev *cdev, u8 vport_id)
Manish Chopracee4d262015-10-26 11:02:28 +02002028{
2029 int rc, i;
2030
2031 for_each_hwfn(cdev, i) {
2032 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
2033
2034 rc = qed_sp_vport_stop(p_hwfn,
Yuval Mintz1a635e42016-08-15 10:42:43 +03002035 p_hwfn->hw_info.opaque_fid, vport_id);
Manish Chopracee4d262015-10-26 11:02:28 +02002036
2037 if (rc) {
2038 DP_ERR(cdev, "Failed to stop VPORT\n");
2039 return rc;
2040 }
2041 }
2042 return 0;
2043}
2044
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02002045static int qed_update_vport_rss(struct qed_dev *cdev,
2046 struct qed_update_vport_rss_params *input,
2047 struct qed_rss_params *rss)
2048{
2049 int i, fn;
2050
2051 /* Update configuration with what's correct regardless of CMT */
2052 rss->update_rss_config = 1;
2053 rss->rss_enable = 1;
2054 rss->update_rss_capabilities = 1;
2055 rss->update_rss_ind_table = 1;
2056 rss->update_rss_key = 1;
2057 rss->rss_caps = input->rss_caps;
2058 memcpy(rss->rss_key, input->rss_key, QED_RSS_KEY_SIZE * sizeof(u32));
2059
2060 /* In regular scenario, we'd simply need to take input handlers.
2061 * But in CMT, we'd have to split the handlers according to the
2062 * engine they were configured on. We'd then have to understand
2063 * whether RSS is really required, since 2-queues on CMT doesn't
2064 * require RSS.
2065 */
2066 if (cdev->num_hwfns == 1) {
2067 memcpy(rss->rss_ind_table,
2068 input->rss_ind_table,
2069 QED_RSS_IND_TABLE_SIZE * sizeof(void *));
2070 rss->rss_table_size_log = 7;
2071 return 0;
2072 }
2073
2074 /* Start by copying the non-spcific information to the 2nd copy */
2075 memcpy(&rss[1], &rss[0], sizeof(struct qed_rss_params));
2076
2077 /* CMT should be round-robin */
2078 for (i = 0; i < QED_RSS_IND_TABLE_SIZE; i++) {
2079 struct qed_queue_cid *cid = input->rss_ind_table[i];
2080 struct qed_rss_params *t_rss;
2081
2082 if (cid->p_owner == QED_LEADING_HWFN(cdev))
2083 t_rss = &rss[0];
2084 else
2085 t_rss = &rss[1];
2086
2087 t_rss->rss_ind_table[i / cdev->num_hwfns] = cid;
2088 }
2089
2090 /* Make sure RSS is actually required */
2091 for_each_hwfn(cdev, fn) {
2092 for (i = 1; i < QED_RSS_IND_TABLE_SIZE / cdev->num_hwfns; i++) {
2093 if (rss[fn].rss_ind_table[i] !=
2094 rss[fn].rss_ind_table[0])
2095 break;
2096 }
2097 if (i == QED_RSS_IND_TABLE_SIZE / cdev->num_hwfns) {
2098 DP_VERBOSE(cdev, NETIF_MSG_IFUP,
2099 "CMT - 1 queue per-hwfn; Disabling RSS\n");
2100 return -EINVAL;
2101 }
2102 rss[fn].rss_table_size_log = 6;
2103 }
2104
2105 return 0;
2106}
2107
Manish Chopracee4d262015-10-26 11:02:28 +02002108static int qed_update_vport(struct qed_dev *cdev,
2109 struct qed_update_vport_params *params)
2110{
2111 struct qed_sp_vport_update_params sp_params;
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02002112 struct qed_rss_params *rss;
2113 int rc = 0, i;
Manish Chopracee4d262015-10-26 11:02:28 +02002114
2115 if (!cdev)
2116 return -ENODEV;
2117
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02002118 rss = vzalloc(sizeof(*rss) * cdev->num_hwfns);
2119 if (!rss)
2120 return -ENOMEM;
2121
Manish Chopracee4d262015-10-26 11:02:28 +02002122 memset(&sp_params, 0, sizeof(sp_params));
Manish Chopracee4d262015-10-26 11:02:28 +02002123
2124 /* Translate protocol params into sp params */
2125 sp_params.vport_id = params->vport_id;
Yuval Mintz1a635e42016-08-15 10:42:43 +03002126 sp_params.update_vport_active_rx_flg = params->update_vport_active_flg;
2127 sp_params.update_vport_active_tx_flg = params->update_vport_active_flg;
Manish Chopracee4d262015-10-26 11:02:28 +02002128 sp_params.vport_active_rx_flg = params->vport_active_flg;
2129 sp_params.vport_active_tx_flg = params->vport_active_flg;
Yuval Mintz831bfb0e2016-05-11 16:36:25 +03002130 sp_params.update_tx_switching_flg = params->update_tx_switching_flg;
2131 sp_params.tx_switching_flg = params->tx_switching_flg;
Yuval Mintz3f9b4a62016-02-18 17:00:39 +02002132 sp_params.accept_any_vlan = params->accept_any_vlan;
2133 sp_params.update_accept_any_vlan_flg =
2134 params->update_accept_any_vlan_flg;
Manish Chopracee4d262015-10-26 11:02:28 +02002135
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02002136 /* Prepare the RSS configuration */
2137 if (params->update_rss_flg)
2138 if (qed_update_vport_rss(cdev, &params->rss_params, rss))
Manish Chopracee4d262015-10-26 11:02:28 +02002139 params->update_rss_flg = 0;
Manish Chopracee4d262015-10-26 11:02:28 +02002140
2141 for_each_hwfn(cdev, i) {
2142 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
2143
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02002144 if (params->update_rss_flg)
2145 sp_params.rss_params = &rss[i];
2146
Manish Chopracee4d262015-10-26 11:02:28 +02002147 sp_params.opaque_fid = p_hwfn->hw_info.opaque_fid;
2148 rc = qed_sp_vport_update(p_hwfn, &sp_params,
2149 QED_SPQ_MODE_EBLOCK,
2150 NULL);
2151 if (rc) {
2152 DP_ERR(cdev, "Failed to update VPORT\n");
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02002153 goto out;
Manish Chopracee4d262015-10-26 11:02:28 +02002154 }
2155
2156 DP_VERBOSE(cdev, (QED_MSG_SPQ | NETIF_MSG_IFUP),
2157 "Updated V-PORT %d: active_flag %d [update %d]\n",
2158 params->vport_id, params->vport_active_flg,
2159 params->update_vport_active_flg);
2160 }
2161
Mintz, Yuvalf29ffdb2017-01-01 13:57:07 +02002162out:
2163 vfree(rss);
2164 return rc;
Manish Chopracee4d262015-10-26 11:02:28 +02002165}
2166
2167static int qed_start_rxq(struct qed_dev *cdev,
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002168 u8 rss_num,
2169 struct qed_queue_start_common_params *p_params,
Manish Chopracee4d262015-10-26 11:02:28 +02002170 u16 bd_max_bytes,
2171 dma_addr_t bd_chain_phys_addr,
2172 dma_addr_t cqe_pbl_addr,
2173 u16 cqe_pbl_size,
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002174 struct qed_rxq_start_ret_params *ret_params)
Manish Chopracee4d262015-10-26 11:02:28 +02002175{
Manish Chopracee4d262015-10-26 11:02:28 +02002176 struct qed_hwfn *p_hwfn;
Yuval Mintz1a635e42016-08-15 10:42:43 +03002177 int rc, hwfn_index;
Manish Chopracee4d262015-10-26 11:02:28 +02002178
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002179 hwfn_index = rss_num % cdev->num_hwfns;
Manish Chopracee4d262015-10-26 11:02:28 +02002180 p_hwfn = &cdev->hwfns[hwfn_index];
2181
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002182 p_params->queue_id = p_params->queue_id / cdev->num_hwfns;
2183 p_params->stats_id = p_params->vport_id;
Manish Chopracee4d262015-10-26 11:02:28 +02002184
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002185 rc = qed_eth_rx_queue_start(p_hwfn,
2186 p_hwfn->hw_info.opaque_fid,
2187 p_params,
2188 bd_max_bytes,
2189 bd_chain_phys_addr,
2190 cqe_pbl_addr, cqe_pbl_size, ret_params);
Manish Chopracee4d262015-10-26 11:02:28 +02002191 if (rc) {
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002192 DP_ERR(cdev, "Failed to start RXQ#%d\n", p_params->queue_id);
Manish Chopracee4d262015-10-26 11:02:28 +02002193 return rc;
2194 }
2195
2196 DP_VERBOSE(cdev, (QED_MSG_SPQ | NETIF_MSG_IFUP),
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002197 "Started RX-Q %d [rss_num %d] on V-PORT %d and SB %d\n",
2198 p_params->queue_id, rss_num, p_params->vport_id,
2199 p_params->sb);
Manish Chopracee4d262015-10-26 11:02:28 +02002200
2201 return 0;
2202}
2203
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002204static int qed_stop_rxq(struct qed_dev *cdev, u8 rss_id, void *handle)
Manish Chopracee4d262015-10-26 11:02:28 +02002205{
2206 int rc, hwfn_index;
2207 struct qed_hwfn *p_hwfn;
2208
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002209 hwfn_index = rss_id % cdev->num_hwfns;
2210 p_hwfn = &cdev->hwfns[hwfn_index];
Manish Chopracee4d262015-10-26 11:02:28 +02002211
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002212 rc = qed_eth_rx_queue_stop(p_hwfn, handle, false, false);
Manish Chopracee4d262015-10-26 11:02:28 +02002213 if (rc) {
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002214 DP_ERR(cdev, "Failed to stop RXQ#%02x\n", rss_id);
Manish Chopracee4d262015-10-26 11:02:28 +02002215 return rc;
2216 }
2217
2218 return 0;
2219}
2220
2221static int qed_start_txq(struct qed_dev *cdev,
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002222 u8 rss_num,
Manish Chopracee4d262015-10-26 11:02:28 +02002223 struct qed_queue_start_common_params *p_params,
2224 dma_addr_t pbl_addr,
2225 u16 pbl_size,
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002226 struct qed_txq_start_ret_params *ret_params)
Manish Chopracee4d262015-10-26 11:02:28 +02002227{
2228 struct qed_hwfn *p_hwfn;
2229 int rc, hwfn_index;
2230
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002231 hwfn_index = rss_num % cdev->num_hwfns;
2232 p_hwfn = &cdev->hwfns[hwfn_index];
2233 p_params->queue_id = p_params->queue_id / cdev->num_hwfns;
2234 p_params->stats_id = p_params->vport_id;
Manish Chopracee4d262015-10-26 11:02:28 +02002235
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002236 rc = qed_eth_tx_queue_start(p_hwfn,
2237 p_hwfn->hw_info.opaque_fid,
2238 p_params, 0,
2239 pbl_addr, pbl_size, ret_params);
Manish Chopracee4d262015-10-26 11:02:28 +02002240
2241 if (rc) {
2242 DP_ERR(cdev, "Failed to start TXQ#%d\n", p_params->queue_id);
2243 return rc;
2244 }
2245
2246 DP_VERBOSE(cdev, (QED_MSG_SPQ | NETIF_MSG_IFUP),
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002247 "Started TX-Q %d [rss_num %d] on V-PORT %d and SB %d\n",
2248 p_params->queue_id, rss_num, p_params->vport_id,
Manish Chopracee4d262015-10-26 11:02:28 +02002249 p_params->sb);
2250
2251 return 0;
2252}
2253
2254#define QED_HW_STOP_RETRY_LIMIT (10)
2255static int qed_fastpath_stop(struct qed_dev *cdev)
2256{
Rahul Verma15582962017-04-06 15:58:29 +03002257 int rc;
2258
2259 rc = qed_hw_stop_fastpath(cdev);
2260 if (rc) {
2261 DP_ERR(cdev, "Failed to stop Fastpath\n");
2262 return rc;
2263 }
Manish Chopracee4d262015-10-26 11:02:28 +02002264
2265 return 0;
2266}
2267
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002268static int qed_stop_txq(struct qed_dev *cdev, u8 rss_id, void *handle)
Manish Chopracee4d262015-10-26 11:02:28 +02002269{
2270 struct qed_hwfn *p_hwfn;
2271 int rc, hwfn_index;
2272
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002273 hwfn_index = rss_id % cdev->num_hwfns;
2274 p_hwfn = &cdev->hwfns[hwfn_index];
Manish Chopracee4d262015-10-26 11:02:28 +02002275
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002276 rc = qed_eth_tx_queue_stop(p_hwfn, handle);
Manish Chopracee4d262015-10-26 11:02:28 +02002277 if (rc) {
Mintz, Yuval3da7a372016-11-29 16:47:06 +02002278 DP_ERR(cdev, "Failed to stop TXQ#%02x\n", rss_id);
Manish Chopracee4d262015-10-26 11:02:28 +02002279 return rc;
2280 }
2281
2282 return 0;
2283}
2284
Manish Chopra464f6642016-04-14 01:38:29 -04002285static int qed_tunn_configure(struct qed_dev *cdev,
2286 struct qed_tunn_params *tunn_params)
2287{
Chopra, Manish199684302017-04-24 10:00:44 -07002288 struct qed_tunnel_info tunn_info;
Manish Chopra464f6642016-04-14 01:38:29 -04002289 int i, rc;
2290
2291 memset(&tunn_info, 0, sizeof(tunn_info));
Chopra, Manish199684302017-04-24 10:00:44 -07002292 if (tunn_params->update_vxlan_port) {
2293 tunn_info.vxlan_port.b_update_port = true;
2294 tunn_info.vxlan_port.port = tunn_params->vxlan_port;
Manish Chopra464f6642016-04-14 01:38:29 -04002295 }
2296
Chopra, Manish199684302017-04-24 10:00:44 -07002297 if (tunn_params->update_geneve_port) {
2298 tunn_info.geneve_port.b_update_port = true;
2299 tunn_info.geneve_port.port = tunn_params->geneve_port;
Manish Chopra464f6642016-04-14 01:38:29 -04002300 }
2301
2302 for_each_hwfn(cdev, i) {
2303 struct qed_hwfn *hwfn = &cdev->hwfns[i];
Chopra, Manish97379f12017-04-24 10:00:48 -07002304 struct qed_tunnel_info *tun;
2305
2306 tun = &hwfn->cdev->tunnel;
Manish Chopra464f6642016-04-14 01:38:29 -04002307
2308 rc = qed_sp_pf_update_tunn_cfg(hwfn, &tunn_info,
2309 QED_SPQ_MODE_EBLOCK, NULL);
Manish Chopra464f6642016-04-14 01:38:29 -04002310 if (rc)
2311 return rc;
Chopra, Manish97379f12017-04-24 10:00:48 -07002312
2313 if (IS_PF_SRIOV(hwfn)) {
2314 u16 vxlan_port, geneve_port;
2315 int j;
2316
2317 vxlan_port = tun->vxlan_port.port;
2318 geneve_port = tun->geneve_port.port;
2319
2320 qed_for_each_vf(hwfn, j) {
2321 qed_iov_bulletin_set_udp_ports(hwfn, j,
2322 vxlan_port,
2323 geneve_port);
2324 }
2325
2326 qed_schedule_iov(hwfn, QED_IOV_WQ_BULLETIN_UPDATE_FLAG);
2327 }
Manish Chopra464f6642016-04-14 01:38:29 -04002328 }
2329
2330 return 0;
2331}
2332
Manish Chopracee4d262015-10-26 11:02:28 +02002333static int qed_configure_filter_rx_mode(struct qed_dev *cdev,
2334 enum qed_filter_rx_mode_type type)
2335{
2336 struct qed_filter_accept_flags accept_flags;
2337
2338 memset(&accept_flags, 0, sizeof(accept_flags));
2339
Yuval Mintz1a635e42016-08-15 10:42:43 +03002340 accept_flags.update_rx_mode_config = 1;
2341 accept_flags.update_tx_mode_config = 1;
2342 accept_flags.rx_accept_filter = QED_ACCEPT_UCAST_MATCHED |
2343 QED_ACCEPT_MCAST_MATCHED |
2344 QED_ACCEPT_BCAST;
Manish Chopracee4d262015-10-26 11:02:28 +02002345 accept_flags.tx_accept_filter = QED_ACCEPT_UCAST_MATCHED |
2346 QED_ACCEPT_MCAST_MATCHED |
2347 QED_ACCEPT_BCAST;
2348
Mintz, Yuval88067872017-01-01 13:57:09 +02002349 if (type == QED_FILTER_RX_MODE_TYPE_PROMISC) {
Manish Chopracee4d262015-10-26 11:02:28 +02002350 accept_flags.rx_accept_filter |= QED_ACCEPT_UCAST_UNMATCHED |
2351 QED_ACCEPT_MCAST_UNMATCHED;
Mintz, Yuval88067872017-01-01 13:57:09 +02002352 accept_flags.tx_accept_filter |= QED_ACCEPT_MCAST_UNMATCHED;
2353 } else if (type == QED_FILTER_RX_MODE_TYPE_MULTI_PROMISC) {
Manish Chopracee4d262015-10-26 11:02:28 +02002354 accept_flags.rx_accept_filter |= QED_ACCEPT_MCAST_UNMATCHED;
Mintz, Yuval88067872017-01-01 13:57:09 +02002355 accept_flags.tx_accept_filter |= QED_ACCEPT_MCAST_UNMATCHED;
2356 }
Manish Chopracee4d262015-10-26 11:02:28 +02002357
Yuval Mintz3f9b4a62016-02-18 17:00:39 +02002358 return qed_filter_accept_cmd(cdev, 0, accept_flags, false, false,
Manish Chopracee4d262015-10-26 11:02:28 +02002359 QED_SPQ_MODE_CB, NULL);
2360}
2361
2362static int qed_configure_filter_ucast(struct qed_dev *cdev,
2363 struct qed_filter_ucast_params *params)
2364{
2365 struct qed_filter_ucast ucast;
2366
2367 if (!params->vlan_valid && !params->mac_valid) {
Yuval Mintz1a635e42016-08-15 10:42:43 +03002368 DP_NOTICE(cdev,
2369 "Tried configuring a unicast filter, but both MAC and VLAN are not set\n");
Manish Chopracee4d262015-10-26 11:02:28 +02002370 return -EINVAL;
2371 }
2372
2373 memset(&ucast, 0, sizeof(ucast));
2374 switch (params->type) {
2375 case QED_FILTER_XCAST_TYPE_ADD:
2376 ucast.opcode = QED_FILTER_ADD;
2377 break;
2378 case QED_FILTER_XCAST_TYPE_DEL:
2379 ucast.opcode = QED_FILTER_REMOVE;
2380 break;
2381 case QED_FILTER_XCAST_TYPE_REPLACE:
2382 ucast.opcode = QED_FILTER_REPLACE;
2383 break;
2384 default:
2385 DP_NOTICE(cdev, "Unknown unicast filter type %d\n",
2386 params->type);
2387 }
2388
2389 if (params->vlan_valid && params->mac_valid) {
2390 ucast.type = QED_FILTER_MAC_VLAN;
2391 ether_addr_copy(ucast.mac, params->mac);
2392 ucast.vlan = params->vlan;
2393 } else if (params->mac_valid) {
2394 ucast.type = QED_FILTER_MAC;
2395 ether_addr_copy(ucast.mac, params->mac);
2396 } else {
2397 ucast.type = QED_FILTER_VLAN;
2398 ucast.vlan = params->vlan;
2399 }
2400
2401 ucast.is_rx_filter = true;
2402 ucast.is_tx_filter = true;
2403
2404 return qed_filter_ucast_cmd(cdev, &ucast, QED_SPQ_MODE_CB, NULL);
2405}
2406
2407static int qed_configure_filter_mcast(struct qed_dev *cdev,
2408 struct qed_filter_mcast_params *params)
2409{
2410 struct qed_filter_mcast mcast;
2411 int i;
2412
2413 memset(&mcast, 0, sizeof(mcast));
2414 switch (params->type) {
2415 case QED_FILTER_XCAST_TYPE_ADD:
2416 mcast.opcode = QED_FILTER_ADD;
2417 break;
2418 case QED_FILTER_XCAST_TYPE_DEL:
2419 mcast.opcode = QED_FILTER_REMOVE;
2420 break;
2421 default:
2422 DP_NOTICE(cdev, "Unknown multicast filter type %d\n",
2423 params->type);
2424 }
2425
2426 mcast.num_mc_addrs = params->num;
2427 for (i = 0; i < mcast.num_mc_addrs; i++)
2428 ether_addr_copy(mcast.mac[i], params->mac[i]);
2429
Yuval Mintz1a635e42016-08-15 10:42:43 +03002430 return qed_filter_mcast_cmd(cdev, &mcast, QED_SPQ_MODE_CB, NULL);
Manish Chopracee4d262015-10-26 11:02:28 +02002431}
2432
2433static int qed_configure_filter(struct qed_dev *cdev,
2434 struct qed_filter_params *params)
2435{
2436 enum qed_filter_rx_mode_type accept_flags;
2437
2438 switch (params->type) {
2439 case QED_FILTER_TYPE_UCAST:
2440 return qed_configure_filter_ucast(cdev, &params->filter.ucast);
2441 case QED_FILTER_TYPE_MCAST:
2442 return qed_configure_filter_mcast(cdev, &params->filter.mcast);
2443 case QED_FILTER_TYPE_RX_MODE:
2444 accept_flags = params->filter.accept_flags;
2445 return qed_configure_filter_rx_mode(cdev, accept_flags);
2446 default:
Yuval Mintz1a635e42016-08-15 10:42:43 +03002447 DP_NOTICE(cdev, "Unknown filter type %d\n", (int)params->type);
Manish Chopracee4d262015-10-26 11:02:28 +02002448 return -EINVAL;
2449 }
2450}
2451
Chopra, Manishd51e4af2017-04-13 04:54:44 -07002452static int qed_configure_arfs_searcher(struct qed_dev *cdev, bool en_searcher)
2453{
2454 struct qed_hwfn *p_hwfn = QED_LEADING_HWFN(cdev);
2455 struct qed_arfs_config_params arfs_config_params;
2456
2457 memset(&arfs_config_params, 0, sizeof(arfs_config_params));
2458 arfs_config_params.tcp = true;
2459 arfs_config_params.udp = true;
2460 arfs_config_params.ipv4 = true;
2461 arfs_config_params.ipv6 = true;
2462 arfs_config_params.arfs_enable = en_searcher;
2463
2464 qed_arfs_mode_configure(p_hwfn, p_hwfn->p_arfs_ptt,
2465 &arfs_config_params);
2466 return 0;
2467}
2468
2469static void
2470qed_arfs_sp_response_handler(struct qed_hwfn *p_hwfn,
2471 void *cookie, union event_ring_data *data,
2472 u8 fw_return_code)
2473{
2474 struct qed_common_cb_ops *op = p_hwfn->cdev->protocol_ops.common;
2475 void *dev = p_hwfn->cdev->ops_cookie;
2476
2477 op->arfs_filter_op(dev, cookie, fw_return_code);
2478}
2479
2480static int qed_ntuple_arfs_filter_config(struct qed_dev *cdev, void *cookie,
2481 dma_addr_t mapping, u16 length,
2482 u16 vport_id, u16 rx_queue_id,
2483 bool add_filter)
2484{
2485 struct qed_hwfn *p_hwfn = QED_LEADING_HWFN(cdev);
2486 struct qed_spq_comp_cb cb;
2487 int rc = -EINVAL;
2488
2489 cb.function = qed_arfs_sp_response_handler;
2490 cb.cookie = cookie;
2491
2492 rc = qed_configure_rfs_ntuple_filter(p_hwfn, p_hwfn->p_arfs_ptt,
2493 &cb, mapping, length, rx_queue_id,
2494 vport_id, add_filter);
2495 if (rc)
2496 DP_NOTICE(p_hwfn,
2497 "Failed to issue a-RFS filter configuration\n");
2498 else
2499 DP_VERBOSE(p_hwfn, NETIF_MSG_DRV,
2500 "Successfully issued a-RFS filter configuration\n");
2501
2502 return rc;
2503}
2504
Manish Chopracee4d262015-10-26 11:02:28 +02002505static int qed_fp_cqe_completion(struct qed_dev *dev,
Yuval Mintz1a635e42016-08-15 10:42:43 +03002506 u8 rss_id, struct eth_slow_path_rx_cqe *cqe)
Manish Chopracee4d262015-10-26 11:02:28 +02002507{
2508 return qed_eth_cqe_completion(&dev->hwfns[rss_id % dev->num_hwfns],
2509 cqe);
2510}
2511
Yuval Mintz0b55e272016-05-11 16:36:15 +03002512#ifdef CONFIG_QED_SRIOV
2513extern const struct qed_iov_hv_ops qed_iov_ops_pass;
2514#endif
2515
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002516#ifdef CONFIG_DCB
2517extern const struct qed_eth_dcbnl_ops qed_dcbnl_ops_pass;
2518#endif
2519
Sudarsana Reddy Kalluruc78c70f2017-02-15 10:24:10 +02002520extern const struct qed_eth_ptp_ops qed_ptp_ops_pass;
2521
Yuval Mintz25c089d2015-10-26 11:02:26 +02002522static const struct qed_eth_ops qed_eth_ops_pass = {
2523 .common = &qed_common_ops_pass,
Yuval Mintz0b55e272016-05-11 16:36:15 +03002524#ifdef CONFIG_QED_SRIOV
2525 .iov = &qed_iov_ops_pass,
2526#endif
Sudarsana Reddy Kallurua1d8d8a2016-06-08 06:22:11 -04002527#ifdef CONFIG_DCB
2528 .dcb = &qed_dcbnl_ops_pass,
2529#endif
Sudarsana Reddy Kalluruc78c70f2017-02-15 10:24:10 +02002530 .ptp = &qed_ptp_ops_pass,
Yuval Mintz25c089d2015-10-26 11:02:26 +02002531 .fill_dev_info = &qed_fill_eth_dev_info,
Yuval Mintzcc875c22015-10-26 11:02:31 +02002532 .register_ops = &qed_register_eth_ops,
Yuval Mintzeff16962016-05-11 16:36:21 +03002533 .check_mac = &qed_check_mac,
Manish Chopracee4d262015-10-26 11:02:28 +02002534 .vport_start = &qed_start_vport,
2535 .vport_stop = &qed_stop_vport,
2536 .vport_update = &qed_update_vport,
2537 .q_rx_start = &qed_start_rxq,
2538 .q_rx_stop = &qed_stop_rxq,
2539 .q_tx_start = &qed_start_txq,
2540 .q_tx_stop = &qed_stop_txq,
2541 .filter_config = &qed_configure_filter,
2542 .fastpath_stop = &qed_fastpath_stop,
2543 .eth_cqe_completion = &qed_fp_cqe_completion,
Manish Chopra9df2ed02015-10-26 11:02:33 +02002544 .get_vport_stats = &qed_get_vport_stats,
Manish Chopra464f6642016-04-14 01:38:29 -04002545 .tunn_config = &qed_tunn_configure,
Chopra, Manishd51e4af2017-04-13 04:54:44 -07002546 .ntuple_filter_config = &qed_ntuple_arfs_filter_config,
2547 .configure_arfs_searcher = &qed_configure_arfs_searcher,
Yuval Mintz25c089d2015-10-26 11:02:26 +02002548};
2549
Rahul Verma95114342016-04-10 12:42:59 +03002550const struct qed_eth_ops *qed_get_eth_ops(void)
Yuval Mintz25c089d2015-10-26 11:02:26 +02002551{
Yuval Mintz25c089d2015-10-26 11:02:26 +02002552 return &qed_eth_ops_pass;
2553}
2554EXPORT_SYMBOL(qed_get_eth_ops);
2555
2556void qed_put_eth_ops(void)
2557{
2558 /* TODO - reference count for module? */
2559}
2560EXPORT_SYMBOL(qed_put_eth_ops);