blob: 9dd28baba5a138047230f948225eed5b6bbbee68 [file] [log] [blame]
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001/* QLogic qed NIC Driver
Mintz, Yuvale8f1cb52017-01-01 13:57:00 +02002 * Copyright (c) 2015-2017 QLogic Corporation
Yuval Mintzfe56b9e2015-10-26 11:02:25 +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 Mintzfe56b9e2015-10-26 11:02:25 +020031 */
32
33#include <linux/types.h>
34#include <asm/byteorder.h>
35#include <linux/io.h>
36#include <linux/delay.h>
37#include <linux/dma-mapping.h>
38#include <linux/errno.h>
39#include <linux/kernel.h>
40#include <linux/mutex.h>
41#include <linux/pci.h>
42#include <linux/slab.h>
43#include <linux/string.h>
Yuval Mintza91eb522016-06-03 14:35:32 +030044#include <linux/vmalloc.h>
Yuval Mintzfe56b9e2015-10-26 11:02:25 +020045#include <linux/etherdevice.h>
46#include <linux/qed/qed_chain.h>
47#include <linux/qed/qed_if.h>
48#include "qed.h"
49#include "qed_cxt.h"
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -040050#include "qed_dcbx.h"
Yuval Mintzfe56b9e2015-10-26 11:02:25 +020051#include "qed_dev_api.h"
Arun Easi1e128c82017-02-15 06:28:22 -080052#include "qed_fcoe.h"
Yuval Mintzfe56b9e2015-10-26 11:02:25 +020053#include "qed_hsi.h"
54#include "qed_hw.h"
55#include "qed_init_ops.h"
56#include "qed_int.h"
Yuval Mintzfc831822016-12-01 00:21:06 -080057#include "qed_iscsi.h"
Yuval Mintz0a7fb112016-10-01 21:59:55 +030058#include "qed_ll2.h"
Yuval Mintzfe56b9e2015-10-26 11:02:25 +020059#include "qed_mcp.h"
Yuval Mintz1d6cff42016-12-01 00:21:07 -080060#include "qed_ooo.h"
Yuval Mintzfe56b9e2015-10-26 11:02:25 +020061#include "qed_reg_addr.h"
62#include "qed_sp.h"
Yuval Mintz32a47e72016-05-11 16:36:12 +030063#include "qed_sriov.h"
Yuval Mintz0b55e272016-05-11 16:36:15 +030064#include "qed_vf.h"
Ram Amrani51ff1722016-10-01 21:59:57 +030065#include "qed_roce.h"
Yuval Mintzfe56b9e2015-10-26 11:02:25 +020066
Wei Yongjun0caf5b22016-08-02 13:49:00 +000067static DEFINE_SPINLOCK(qm_lock);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -040068
Ram Amrani51ff1722016-10-01 21:59:57 +030069#define QED_MIN_DPIS (4)
70#define QED_MIN_PWM_REGION (QED_WID_SIZE * QED_MIN_DPIS)
71
Yuval Mintzfe56b9e2015-10-26 11:02:25 +020072/* API common to all protocols */
Ram Amranic2035ee2016-03-02 20:26:00 +020073enum BAR_ID {
74 BAR_ID_0, /* used for GRC */
75 BAR_ID_1 /* Used for doorbells */
76};
77
Rahul Verma15582962017-04-06 15:58:29 +030078static u32 qed_hw_bar_size(struct qed_hwfn *p_hwfn,
79 struct qed_ptt *p_ptt, enum BAR_ID bar_id)
Ram Amranic2035ee2016-03-02 20:26:00 +020080{
Yuval Mintz1408cc1f2016-05-11 16:36:14 +030081 u32 bar_reg = (bar_id == BAR_ID_0 ?
82 PGLUE_B_REG_PF_BAR0_SIZE : PGLUE_B_REG_PF_BAR1_SIZE);
83 u32 val;
Ram Amranic2035ee2016-03-02 20:26:00 +020084
Yuval Mintz1408cc1f2016-05-11 16:36:14 +030085 if (IS_VF(p_hwfn->cdev))
86 return 1 << 17;
87
Rahul Verma15582962017-04-06 15:58:29 +030088 val = qed_rd(p_hwfn, p_ptt, bar_reg);
Ram Amranic2035ee2016-03-02 20:26:00 +020089 if (val)
90 return 1 << (val + 15);
91
92 /* Old MFW initialized above registered only conditionally */
93 if (p_hwfn->cdev->num_hwfns > 1) {
94 DP_INFO(p_hwfn,
95 "BAR size not configured. Assuming BAR size of 256kB for GRC and 512kB for DB\n");
96 return BAR_ID_0 ? 256 * 1024 : 512 * 1024;
97 } else {
98 DP_INFO(p_hwfn,
99 "BAR size not configured. Assuming BAR size of 512kB for GRC and 512kB for DB\n");
100 return 512 * 1024;
101 }
102}
103
Yuval Mintz1a635e42016-08-15 10:42:43 +0300104void qed_init_dp(struct qed_dev *cdev, u32 dp_module, u8 dp_level)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200105{
106 u32 i;
107
108 cdev->dp_level = dp_level;
109 cdev->dp_module = dp_module;
110 for (i = 0; i < MAX_HWFNS_PER_DEVICE; i++) {
111 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
112
113 p_hwfn->dp_level = dp_level;
114 p_hwfn->dp_module = dp_module;
115 }
116}
117
118void qed_init_struct(struct qed_dev *cdev)
119{
120 u8 i;
121
122 for (i = 0; i < MAX_HWFNS_PER_DEVICE; i++) {
123 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
124
125 p_hwfn->cdev = cdev;
126 p_hwfn->my_id = i;
127 p_hwfn->b_active = false;
128
129 mutex_init(&p_hwfn->dmae_info.mutex);
130 }
131
132 /* hwfn 0 is always active */
133 cdev->hwfns[0].b_active = true;
134
135 /* set the default cache alignment to 128 */
136 cdev->cache_shift = 7;
137}
138
139static void qed_qm_info_free(struct qed_hwfn *p_hwfn)
140{
141 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
142
143 kfree(qm_info->qm_pq_params);
144 qm_info->qm_pq_params = NULL;
145 kfree(qm_info->qm_vport_params);
146 qm_info->qm_vport_params = NULL;
147 kfree(qm_info->qm_port_params);
148 qm_info->qm_port_params = NULL;
Manish Choprabcd197c2016-04-26 10:56:08 -0400149 kfree(qm_info->wfq_data);
150 qm_info->wfq_data = NULL;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200151}
152
153void qed_resc_free(struct qed_dev *cdev)
154{
155 int i;
156
Yuval Mintz1408cc1f2016-05-11 16:36:14 +0300157 if (IS_VF(cdev))
158 return;
159
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200160 kfree(cdev->fw_data);
161 cdev->fw_data = NULL;
162
163 kfree(cdev->reset_stats);
Tomer Tayar3587cb82017-05-21 12:10:56 +0300164 cdev->reset_stats = NULL;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200165
166 for_each_hwfn(cdev, i) {
167 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
168
169 qed_cxt_mngr_free(p_hwfn);
170 qed_qm_info_free(p_hwfn);
171 qed_spq_free(p_hwfn);
Tomer Tayar3587cb82017-05-21 12:10:56 +0300172 qed_eq_free(p_hwfn);
173 qed_consq_free(p_hwfn);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200174 qed_int_free(p_hwfn);
Yuval Mintz0a7fb112016-10-01 21:59:55 +0300175#ifdef CONFIG_QED_LL2
Tomer Tayar3587cb82017-05-21 12:10:56 +0300176 qed_ll2_free(p_hwfn);
Yuval Mintz0a7fb112016-10-01 21:59:55 +0300177#endif
Arun Easi1e128c82017-02-15 06:28:22 -0800178 if (p_hwfn->hw_info.personality == QED_PCI_FCOE)
Tomer Tayar3587cb82017-05-21 12:10:56 +0300179 qed_fcoe_free(p_hwfn);
Arun Easi1e128c82017-02-15 06:28:22 -0800180
Yuval Mintz1d6cff42016-12-01 00:21:07 -0800181 if (p_hwfn->hw_info.personality == QED_PCI_ISCSI) {
Tomer Tayar3587cb82017-05-21 12:10:56 +0300182 qed_iscsi_free(p_hwfn);
183 qed_ooo_free(p_hwfn);
Yuval Mintz1d6cff42016-12-01 00:21:07 -0800184 }
Yuval Mintz32a47e72016-05-11 16:36:12 +0300185 qed_iov_free(p_hwfn);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200186 qed_dmae_info_free(p_hwfn);
sudarsana.kalluru@cavium.com270837b2017-04-20 22:31:16 -0700187 qed_dcbx_info_free(p_hwfn);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200188 }
189}
190
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300191/******************** QM initialization *******************/
192#define ACTIVE_TCS_BMAP 0x9f
193#define ACTIVE_TCS_BMAP_4PORT_K2 0xf
194
195/* determines the physical queue flags for a given PF. */
196static u32 qed_get_pq_flags(struct qed_hwfn *p_hwfn)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200197{
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300198 u32 flags;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200199
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300200 /* common flags */
201 flags = PQ_FLAGS_LB;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200202
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300203 /* feature flags */
204 if (IS_QED_SRIOV(p_hwfn->cdev))
205 flags |= PQ_FLAGS_VFS;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200206
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300207 /* protocol flags */
208 switch (p_hwfn->hw_info.personality) {
209 case QED_PCI_ETH:
210 flags |= PQ_FLAGS_MCOS;
211 break;
212 case QED_PCI_FCOE:
213 flags |= PQ_FLAGS_OFLD;
214 break;
215 case QED_PCI_ISCSI:
216 flags |= PQ_FLAGS_ACK | PQ_FLAGS_OOO | PQ_FLAGS_OFLD;
217 break;
218 case QED_PCI_ETH_ROCE:
219 flags |= PQ_FLAGS_MCOS | PQ_FLAGS_OFLD | PQ_FLAGS_LLT;
220 break;
221 default:
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200222 DP_ERR(p_hwfn,
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300223 "unknown personality %d\n", p_hwfn->hw_info.personality);
224 return 0;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200225 }
226
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300227 return flags;
228}
229
230/* Getters for resource amounts necessary for qm initialization */
231u8 qed_init_qm_get_num_tcs(struct qed_hwfn *p_hwfn)
232{
233 return p_hwfn->hw_info.num_hw_tc;
234}
235
236u16 qed_init_qm_get_num_vfs(struct qed_hwfn *p_hwfn)
237{
238 return IS_QED_SRIOV(p_hwfn->cdev) ?
239 p_hwfn->cdev->p_iov_info->total_vfs : 0;
240}
241
242#define NUM_DEFAULT_RLS 1
243
244u16 qed_init_qm_get_num_pf_rls(struct qed_hwfn *p_hwfn)
245{
246 u16 num_pf_rls, num_vfs = qed_init_qm_get_num_vfs(p_hwfn);
247
248 /* num RLs can't exceed resource amount of rls or vports */
249 num_pf_rls = (u16) min_t(u32, RESC_NUM(p_hwfn, QED_RL),
250 RESC_NUM(p_hwfn, QED_VPORT));
251
252 /* Make sure after we reserve there's something left */
253 if (num_pf_rls < num_vfs + NUM_DEFAULT_RLS)
254 return 0;
255
256 /* subtract rls necessary for VFs and one default one for the PF */
257 num_pf_rls -= num_vfs + NUM_DEFAULT_RLS;
258
259 return num_pf_rls;
260}
261
262u16 qed_init_qm_get_num_vports(struct qed_hwfn *p_hwfn)
263{
264 u32 pq_flags = qed_get_pq_flags(p_hwfn);
265
266 /* all pqs share the same vport, except for vfs and pf_rl pqs */
267 return (!!(PQ_FLAGS_RLS & pq_flags)) *
268 qed_init_qm_get_num_pf_rls(p_hwfn) +
269 (!!(PQ_FLAGS_VFS & pq_flags)) *
270 qed_init_qm_get_num_vfs(p_hwfn) + 1;
271}
272
273/* calc amount of PQs according to the requested flags */
274u16 qed_init_qm_get_num_pqs(struct qed_hwfn *p_hwfn)
275{
276 u32 pq_flags = qed_get_pq_flags(p_hwfn);
277
278 return (!!(PQ_FLAGS_RLS & pq_flags)) *
279 qed_init_qm_get_num_pf_rls(p_hwfn) +
280 (!!(PQ_FLAGS_MCOS & pq_flags)) *
281 qed_init_qm_get_num_tcs(p_hwfn) +
282 (!!(PQ_FLAGS_LB & pq_flags)) + (!!(PQ_FLAGS_OOO & pq_flags)) +
283 (!!(PQ_FLAGS_ACK & pq_flags)) + (!!(PQ_FLAGS_OFLD & pq_flags)) +
284 (!!(PQ_FLAGS_LLT & pq_flags)) +
285 (!!(PQ_FLAGS_VFS & pq_flags)) * qed_init_qm_get_num_vfs(p_hwfn);
286}
287
288/* initialize the top level QM params */
289static void qed_init_qm_params(struct qed_hwfn *p_hwfn)
290{
291 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
292 bool four_port;
293
294 /* pq and vport bases for this PF */
295 qm_info->start_pq = (u16) RESC_START(p_hwfn, QED_PQ);
296 qm_info->start_vport = (u8) RESC_START(p_hwfn, QED_VPORT);
297
298 /* rate limiting and weighted fair queueing are always enabled */
299 qm_info->vport_rl_en = 1;
300 qm_info->vport_wfq_en = 1;
301
302 /* TC config is different for AH 4 port */
303 four_port = p_hwfn->cdev->num_ports_in_engines == MAX_NUM_PORTS_K2;
304
305 /* in AH 4 port we have fewer TCs per port */
306 qm_info->max_phys_tcs_per_port = four_port ? NUM_PHYS_TCS_4PORT_K2 :
307 NUM_OF_PHYS_TCS;
308
309 /* unless MFW indicated otherwise, ooo_tc == 3 for
310 * AH 4-port and 4 otherwise.
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200311 */
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300312 if (!qm_info->ooo_tc)
313 qm_info->ooo_tc = four_port ? DCBX_TCP_OOO_K2_4PORT_TC :
314 DCBX_TCP_OOO_TC;
315}
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200316
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300317/* initialize qm vport params */
318static void qed_init_qm_vport_params(struct qed_hwfn *p_hwfn)
319{
320 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
321 u8 i;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200322
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300323 /* all vports participate in weighted fair queueing */
324 for (i = 0; i < qed_init_qm_get_num_vports(p_hwfn); i++)
325 qm_info->qm_vport_params[i].vport_wfq = 1;
326}
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200327
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300328/* initialize qm port params */
329static void qed_init_qm_port_params(struct qed_hwfn *p_hwfn)
330{
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200331 /* Initialize qm port parameters */
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300332 u8 i, active_phys_tcs, num_ports = p_hwfn->cdev->num_ports_in_engines;
333
334 /* indicate how ooo and high pri traffic is dealt with */
335 active_phys_tcs = num_ports == MAX_NUM_PORTS_K2 ?
336 ACTIVE_TCS_BMAP_4PORT_K2 :
337 ACTIVE_TCS_BMAP;
338
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200339 for (i = 0; i < num_ports; i++) {
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300340 struct init_qm_port_params *p_qm_port =
341 &p_hwfn->qm_info.qm_port_params[i];
342
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200343 p_qm_port->active = 1;
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300344 p_qm_port->active_phys_tcs = active_phys_tcs;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200345 p_qm_port->num_pbf_cmd_lines = PBF_MAX_CMD_LINES / num_ports;
346 p_qm_port->num_btb_blocks = BTB_MAX_BLOCKS / num_ports;
347 }
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300348}
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200349
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300350/* Reset the params which must be reset for qm init. QM init may be called as
351 * a result of flows other than driver load (e.g. dcbx renegotiation). Other
352 * params may be affected by the init but would simply recalculate to the same
353 * values. The allocations made for QM init, ports, vports, pqs and vfqs are not
354 * affected as these amounts stay the same.
355 */
356static void qed_init_qm_reset_params(struct qed_hwfn *p_hwfn)
357{
358 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200359
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300360 qm_info->num_pqs = 0;
361 qm_info->num_vports = 0;
362 qm_info->num_pf_rls = 0;
363 qm_info->num_vf_pqs = 0;
364 qm_info->first_vf_pq = 0;
365 qm_info->first_mcos_pq = 0;
366 qm_info->first_rl_pq = 0;
367}
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200368
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300369static void qed_init_qm_advance_vport(struct qed_hwfn *p_hwfn)
370{
371 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
372
373 qm_info->num_vports++;
374
375 if (qm_info->num_vports > qed_init_qm_get_num_vports(p_hwfn))
376 DP_ERR(p_hwfn,
377 "vport overflow! qm_info->num_vports %d, qm_init_get_num_vports() %d\n",
378 qm_info->num_vports, qed_init_qm_get_num_vports(p_hwfn));
379}
380
381/* initialize a single pq and manage qm_info resources accounting.
382 * The pq_init_flags param determines whether the PQ is rate limited
383 * (for VF or PF) and whether a new vport is allocated to the pq or not
384 * (i.e. vport will be shared).
385 */
386
387/* flags for pq init */
388#define PQ_INIT_SHARE_VPORT (1 << 0)
389#define PQ_INIT_PF_RL (1 << 1)
390#define PQ_INIT_VF_RL (1 << 2)
391
392/* defines for pq init */
393#define PQ_INIT_DEFAULT_WRR_GROUP 1
394#define PQ_INIT_DEFAULT_TC 0
395#define PQ_INIT_OFLD_TC (p_hwfn->hw_info.offload_tc)
396
397static void qed_init_qm_pq(struct qed_hwfn *p_hwfn,
398 struct qed_qm_info *qm_info,
399 u8 tc, u32 pq_init_flags)
400{
401 u16 pq_idx = qm_info->num_pqs, max_pq = qed_init_qm_get_num_pqs(p_hwfn);
402
403 if (pq_idx > max_pq)
404 DP_ERR(p_hwfn,
405 "pq overflow! pq %d, max pq %d\n", pq_idx, max_pq);
406
407 /* init pq params */
408 qm_info->qm_pq_params[pq_idx].vport_id = qm_info->start_vport +
409 qm_info->num_vports;
410 qm_info->qm_pq_params[pq_idx].tc_id = tc;
411 qm_info->qm_pq_params[pq_idx].wrr_group = PQ_INIT_DEFAULT_WRR_GROUP;
412 qm_info->qm_pq_params[pq_idx].rl_valid =
413 (pq_init_flags & PQ_INIT_PF_RL || pq_init_flags & PQ_INIT_VF_RL);
414
415 /* qm params accounting */
416 qm_info->num_pqs++;
417 if (!(pq_init_flags & PQ_INIT_SHARE_VPORT))
418 qm_info->num_vports++;
419
420 if (pq_init_flags & PQ_INIT_PF_RL)
421 qm_info->num_pf_rls++;
422
423 if (qm_info->num_vports > qed_init_qm_get_num_vports(p_hwfn))
424 DP_ERR(p_hwfn,
425 "vport overflow! qm_info->num_vports %d, qm_init_get_num_vports() %d\n",
426 qm_info->num_vports, qed_init_qm_get_num_vports(p_hwfn));
427
428 if (qm_info->num_pf_rls > qed_init_qm_get_num_pf_rls(p_hwfn))
429 DP_ERR(p_hwfn,
430 "rl overflow! qm_info->num_pf_rls %d, qm_init_get_num_pf_rls() %d\n",
431 qm_info->num_pf_rls, qed_init_qm_get_num_pf_rls(p_hwfn));
432}
433
434/* get pq index according to PQ_FLAGS */
435static u16 *qed_init_qm_get_idx_from_flags(struct qed_hwfn *p_hwfn,
436 u32 pq_flags)
437{
438 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
439
440 /* Can't have multiple flags set here */
441 if (bitmap_weight((unsigned long *)&pq_flags, sizeof(pq_flags)) > 1)
442 goto err;
443
444 switch (pq_flags) {
445 case PQ_FLAGS_RLS:
446 return &qm_info->first_rl_pq;
447 case PQ_FLAGS_MCOS:
448 return &qm_info->first_mcos_pq;
449 case PQ_FLAGS_LB:
450 return &qm_info->pure_lb_pq;
451 case PQ_FLAGS_OOO:
452 return &qm_info->ooo_pq;
453 case PQ_FLAGS_ACK:
454 return &qm_info->pure_ack_pq;
455 case PQ_FLAGS_OFLD:
456 return &qm_info->offload_pq;
457 case PQ_FLAGS_LLT:
458 return &qm_info->low_latency_pq;
459 case PQ_FLAGS_VFS:
460 return &qm_info->first_vf_pq;
461 default:
462 goto err;
463 }
464
465err:
466 DP_ERR(p_hwfn, "BAD pq flags %d\n", pq_flags);
467 return NULL;
468}
469
470/* save pq index in qm info */
471static void qed_init_qm_set_idx(struct qed_hwfn *p_hwfn,
472 u32 pq_flags, u16 pq_val)
473{
474 u16 *base_pq_idx = qed_init_qm_get_idx_from_flags(p_hwfn, pq_flags);
475
476 *base_pq_idx = p_hwfn->qm_info.start_pq + pq_val;
477}
478
479/* get tx pq index, with the PQ TX base already set (ready for context init) */
480u16 qed_get_cm_pq_idx(struct qed_hwfn *p_hwfn, u32 pq_flags)
481{
482 u16 *base_pq_idx = qed_init_qm_get_idx_from_flags(p_hwfn, pq_flags);
483
484 return *base_pq_idx + CM_TX_PQ_BASE;
485}
486
487u16 qed_get_cm_pq_idx_mcos(struct qed_hwfn *p_hwfn, u8 tc)
488{
489 u8 max_tc = qed_init_qm_get_num_tcs(p_hwfn);
490
491 if (tc > max_tc)
492 DP_ERR(p_hwfn, "tc %d must be smaller than %d\n", tc, max_tc);
493
494 return qed_get_cm_pq_idx(p_hwfn, PQ_FLAGS_MCOS) + tc;
495}
496
497u16 qed_get_cm_pq_idx_vf(struct qed_hwfn *p_hwfn, u16 vf)
498{
499 u16 max_vf = qed_init_qm_get_num_vfs(p_hwfn);
500
501 if (vf > max_vf)
502 DP_ERR(p_hwfn, "vf %d must be smaller than %d\n", vf, max_vf);
503
504 return qed_get_cm_pq_idx(p_hwfn, PQ_FLAGS_VFS) + vf;
505}
506
507u16 qed_get_cm_pq_idx_rl(struct qed_hwfn *p_hwfn, u8 rl)
508{
509 u16 max_rl = qed_init_qm_get_num_pf_rls(p_hwfn);
510
511 if (rl > max_rl)
512 DP_ERR(p_hwfn, "rl %d must be smaller than %d\n", rl, max_rl);
513
514 return qed_get_cm_pq_idx(p_hwfn, PQ_FLAGS_RLS) + rl;
515}
516
517/* Functions for creating specific types of pqs */
518static void qed_init_qm_lb_pq(struct qed_hwfn *p_hwfn)
519{
520 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
521
522 if (!(qed_get_pq_flags(p_hwfn) & PQ_FLAGS_LB))
523 return;
524
525 qed_init_qm_set_idx(p_hwfn, PQ_FLAGS_LB, qm_info->num_pqs);
526 qed_init_qm_pq(p_hwfn, qm_info, PURE_LB_TC, PQ_INIT_SHARE_VPORT);
527}
528
529static void qed_init_qm_ooo_pq(struct qed_hwfn *p_hwfn)
530{
531 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
532
533 if (!(qed_get_pq_flags(p_hwfn) & PQ_FLAGS_OOO))
534 return;
535
536 qed_init_qm_set_idx(p_hwfn, PQ_FLAGS_OOO, qm_info->num_pqs);
537 qed_init_qm_pq(p_hwfn, qm_info, qm_info->ooo_tc, PQ_INIT_SHARE_VPORT);
538}
539
540static void qed_init_qm_pure_ack_pq(struct qed_hwfn *p_hwfn)
541{
542 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
543
544 if (!(qed_get_pq_flags(p_hwfn) & PQ_FLAGS_ACK))
545 return;
546
547 qed_init_qm_set_idx(p_hwfn, PQ_FLAGS_ACK, qm_info->num_pqs);
548 qed_init_qm_pq(p_hwfn, qm_info, PQ_INIT_OFLD_TC, PQ_INIT_SHARE_VPORT);
549}
550
551static void qed_init_qm_offload_pq(struct qed_hwfn *p_hwfn)
552{
553 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
554
555 if (!(qed_get_pq_flags(p_hwfn) & PQ_FLAGS_OFLD))
556 return;
557
558 qed_init_qm_set_idx(p_hwfn, PQ_FLAGS_OFLD, qm_info->num_pqs);
559 qed_init_qm_pq(p_hwfn, qm_info, PQ_INIT_OFLD_TC, PQ_INIT_SHARE_VPORT);
560}
561
562static void qed_init_qm_low_latency_pq(struct qed_hwfn *p_hwfn)
563{
564 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
565
566 if (!(qed_get_pq_flags(p_hwfn) & PQ_FLAGS_LLT))
567 return;
568
569 qed_init_qm_set_idx(p_hwfn, PQ_FLAGS_LLT, qm_info->num_pqs);
570 qed_init_qm_pq(p_hwfn, qm_info, PQ_INIT_OFLD_TC, PQ_INIT_SHARE_VPORT);
571}
572
573static void qed_init_qm_mcos_pqs(struct qed_hwfn *p_hwfn)
574{
575 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
576 u8 tc_idx;
577
578 if (!(qed_get_pq_flags(p_hwfn) & PQ_FLAGS_MCOS))
579 return;
580
581 qed_init_qm_set_idx(p_hwfn, PQ_FLAGS_MCOS, qm_info->num_pqs);
582 for (tc_idx = 0; tc_idx < qed_init_qm_get_num_tcs(p_hwfn); tc_idx++)
583 qed_init_qm_pq(p_hwfn, qm_info, tc_idx, PQ_INIT_SHARE_VPORT);
584}
585
586static void qed_init_qm_vf_pqs(struct qed_hwfn *p_hwfn)
587{
588 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
589 u16 vf_idx, num_vfs = qed_init_qm_get_num_vfs(p_hwfn);
590
591 if (!(qed_get_pq_flags(p_hwfn) & PQ_FLAGS_VFS))
592 return;
593
594 qed_init_qm_set_idx(p_hwfn, PQ_FLAGS_VFS, qm_info->num_pqs);
Yuval Mintz1408cc1f2016-05-11 16:36:14 +0300595 qm_info->num_vf_pqs = num_vfs;
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300596 for (vf_idx = 0; vf_idx < num_vfs; vf_idx++)
597 qed_init_qm_pq(p_hwfn,
598 qm_info, PQ_INIT_DEFAULT_TC, PQ_INIT_VF_RL);
599}
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200600
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300601static void qed_init_qm_rl_pqs(struct qed_hwfn *p_hwfn)
602{
603 u16 pf_rls_idx, num_pf_rls = qed_init_qm_get_num_pf_rls(p_hwfn);
604 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
Manish Chopraa64b02d2016-04-26 10:56:10 -0400605
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300606 if (!(qed_get_pq_flags(p_hwfn) & PQ_FLAGS_RLS))
607 return;
608
609 qed_init_qm_set_idx(p_hwfn, PQ_FLAGS_RLS, qm_info->num_pqs);
610 for (pf_rls_idx = 0; pf_rls_idx < num_pf_rls; pf_rls_idx++)
611 qed_init_qm_pq(p_hwfn, qm_info, PQ_INIT_OFLD_TC, PQ_INIT_PF_RL);
612}
613
614static void qed_init_qm_pq_params(struct qed_hwfn *p_hwfn)
615{
616 /* rate limited pqs, must come first (FW assumption) */
617 qed_init_qm_rl_pqs(p_hwfn);
618
619 /* pqs for multi cos */
620 qed_init_qm_mcos_pqs(p_hwfn);
621
622 /* pure loopback pq */
623 qed_init_qm_lb_pq(p_hwfn);
624
625 /* out of order pq */
626 qed_init_qm_ooo_pq(p_hwfn);
627
628 /* pure ack pq */
629 qed_init_qm_pure_ack_pq(p_hwfn);
630
631 /* pq for offloaded protocol */
632 qed_init_qm_offload_pq(p_hwfn);
633
634 /* low latency pq */
635 qed_init_qm_low_latency_pq(p_hwfn);
636
637 /* done sharing vports */
638 qed_init_qm_advance_vport(p_hwfn);
639
640 /* pqs for vfs */
641 qed_init_qm_vf_pqs(p_hwfn);
642}
643
644/* compare values of getters against resources amounts */
645static int qed_init_qm_sanity(struct qed_hwfn *p_hwfn)
646{
647 if (qed_init_qm_get_num_vports(p_hwfn) > RESC_NUM(p_hwfn, QED_VPORT)) {
648 DP_ERR(p_hwfn, "requested amount of vports exceeds resource\n");
649 return -EINVAL;
650 }
651
652 if (qed_init_qm_get_num_pqs(p_hwfn) > RESC_NUM(p_hwfn, QED_PQ)) {
653 DP_ERR(p_hwfn, "requested amount of pqs exceeds resource\n");
654 return -EINVAL;
655 }
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200656
657 return 0;
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300658}
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200659
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300660static void qed_dp_init_qm_params(struct qed_hwfn *p_hwfn)
661{
662 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
663 struct init_qm_vport_params *vport;
664 struct init_qm_port_params *port;
665 struct init_qm_pq_params *pq;
666 int i, tc;
667
668 /* top level params */
669 DP_VERBOSE(p_hwfn,
670 NETIF_MSG_HW,
671 "qm init top level params: start_pq %d, start_vport %d, pure_lb_pq %d, offload_pq %d, pure_ack_pq %d\n",
672 qm_info->start_pq,
673 qm_info->start_vport,
674 qm_info->pure_lb_pq,
675 qm_info->offload_pq, qm_info->pure_ack_pq);
676 DP_VERBOSE(p_hwfn,
677 NETIF_MSG_HW,
678 "ooo_pq %d, first_vf_pq %d, num_pqs %d, num_vf_pqs %d, num_vports %d, max_phys_tcs_per_port %d\n",
679 qm_info->ooo_pq,
680 qm_info->first_vf_pq,
681 qm_info->num_pqs,
682 qm_info->num_vf_pqs,
683 qm_info->num_vports, qm_info->max_phys_tcs_per_port);
684 DP_VERBOSE(p_hwfn,
685 NETIF_MSG_HW,
686 "pf_rl_en %d, pf_wfq_en %d, vport_rl_en %d, vport_wfq_en %d, pf_wfq %d, pf_rl %d, num_pf_rls %d, pq_flags %x\n",
687 qm_info->pf_rl_en,
688 qm_info->pf_wfq_en,
689 qm_info->vport_rl_en,
690 qm_info->vport_wfq_en,
691 qm_info->pf_wfq,
692 qm_info->pf_rl,
693 qm_info->num_pf_rls, qed_get_pq_flags(p_hwfn));
694
695 /* port table */
696 for (i = 0; i < p_hwfn->cdev->num_ports_in_engines; i++) {
697 port = &(qm_info->qm_port_params[i]);
698 DP_VERBOSE(p_hwfn,
699 NETIF_MSG_HW,
700 "port idx %d, active %d, active_phys_tcs %d, num_pbf_cmd_lines %d, num_btb_blocks %d, reserved %d\n",
701 i,
702 port->active,
703 port->active_phys_tcs,
704 port->num_pbf_cmd_lines,
705 port->num_btb_blocks, port->reserved);
706 }
707
708 /* vport table */
709 for (i = 0; i < qm_info->num_vports; i++) {
710 vport = &(qm_info->qm_vport_params[i]);
711 DP_VERBOSE(p_hwfn,
712 NETIF_MSG_HW,
713 "vport idx %d, vport_rl %d, wfq %d, first_tx_pq_id [ ",
714 qm_info->start_vport + i,
715 vport->vport_rl, vport->vport_wfq);
716 for (tc = 0; tc < NUM_OF_TCS; tc++)
717 DP_VERBOSE(p_hwfn,
718 NETIF_MSG_HW,
719 "%d ", vport->first_tx_pq_id[tc]);
720 DP_VERBOSE(p_hwfn, NETIF_MSG_HW, "]\n");
721 }
722
723 /* pq table */
724 for (i = 0; i < qm_info->num_pqs; i++) {
725 pq = &(qm_info->qm_pq_params[i]);
726 DP_VERBOSE(p_hwfn,
727 NETIF_MSG_HW,
728 "pq idx %d, vport_id %d, tc %d, wrr_grp %d, rl_valid %d\n",
729 qm_info->start_pq + i,
730 pq->vport_id,
731 pq->tc_id, pq->wrr_group, pq->rl_valid);
732 }
733}
734
735static void qed_init_qm_info(struct qed_hwfn *p_hwfn)
736{
737 /* reset params required for init run */
738 qed_init_qm_reset_params(p_hwfn);
739
740 /* init QM top level params */
741 qed_init_qm_params(p_hwfn);
742
743 /* init QM port params */
744 qed_init_qm_port_params(p_hwfn);
745
746 /* init QM vport params */
747 qed_init_qm_vport_params(p_hwfn);
748
749 /* init QM physical queue params */
750 qed_init_qm_pq_params(p_hwfn);
751
752 /* display all that init */
753 qed_dp_init_qm_params(p_hwfn);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200754}
755
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400756/* This function reconfigures the QM pf on the fly.
757 * For this purpose we:
758 * 1. reconfigure the QM database
759 * 2. set new values to runtime arrat
760 * 3. send an sdm_qm_cmd through the rbc interface to stop the QM
761 * 4. activate init tool in QM_PF stage
762 * 5. send an sdm_qm_cmd through rbc interface to release the QM
763 */
764int qed_qm_reconf(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
765{
766 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
767 bool b_rc;
768 int rc;
769
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400770 /* initialize qed's qm data structure */
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300771 qed_init_qm_info(p_hwfn);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400772
773 /* stop PF's qm queues */
774 spin_lock_bh(&qm_lock);
775 b_rc = qed_send_qm_stop_cmd(p_hwfn, p_ptt, false, true,
776 qm_info->start_pq, qm_info->num_pqs);
777 spin_unlock_bh(&qm_lock);
778 if (!b_rc)
779 return -EINVAL;
780
781 /* clear the QM_PF runtime phase leftovers from previous init */
782 qed_init_clear_rt_data(p_hwfn);
783
784 /* prepare QM portion of runtime array */
Rahul Verma15582962017-04-06 15:58:29 +0300785 qed_qm_init_pf(p_hwfn, p_ptt);
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400786
787 /* activate init tool on runtime array */
788 rc = qed_init_run(p_hwfn, p_ptt, PHASE_QM_PF, p_hwfn->rel_pf_id,
789 p_hwfn->hw_info.hw_mode);
790 if (rc)
791 return rc;
792
793 /* start PF's qm queues */
794 spin_lock_bh(&qm_lock);
795 b_rc = qed_send_qm_stop_cmd(p_hwfn, p_ptt, true, true,
796 qm_info->start_pq, qm_info->num_pqs);
797 spin_unlock_bh(&qm_lock);
798 if (!b_rc)
799 return -EINVAL;
800
801 return 0;
802}
803
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300804static int qed_alloc_qm_data(struct qed_hwfn *p_hwfn)
805{
806 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
807 int rc;
808
809 rc = qed_init_qm_sanity(p_hwfn);
810 if (rc)
811 goto alloc_err;
812
813 qm_info->qm_pq_params = kzalloc(sizeof(*qm_info->qm_pq_params) *
814 qed_init_qm_get_num_pqs(p_hwfn),
815 GFP_KERNEL);
816 if (!qm_info->qm_pq_params)
817 goto alloc_err;
818
819 qm_info->qm_vport_params = kzalloc(sizeof(*qm_info->qm_vport_params) *
820 qed_init_qm_get_num_vports(p_hwfn),
821 GFP_KERNEL);
822 if (!qm_info->qm_vport_params)
823 goto alloc_err;
824
Wei Yongjun2f7878c2017-04-25 07:07:18 +0000825 qm_info->qm_port_params = kzalloc(sizeof(*qm_info->qm_port_params) *
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300826 p_hwfn->cdev->num_ports_in_engines,
827 GFP_KERNEL);
828 if (!qm_info->qm_port_params)
829 goto alloc_err;
830
831 qm_info->wfq_data = kzalloc(sizeof(*qm_info->wfq_data) *
832 qed_init_qm_get_num_vports(p_hwfn),
833 GFP_KERNEL);
834 if (!qm_info->wfq_data)
835 goto alloc_err;
836
837 return 0;
838
839alloc_err:
840 DP_NOTICE(p_hwfn, "Failed to allocate memory for QM params\n");
841 qed_qm_info_free(p_hwfn);
842 return -ENOMEM;
843}
844
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200845int qed_resc_alloc(struct qed_dev *cdev)
846{
Ram Amranif9dc4d12017-04-03 12:21:13 +0300847 u32 rdma_tasks, excess_tasks;
Ram Amranif9dc4d12017-04-03 12:21:13 +0300848 u32 line_count;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200849 int i, rc = 0;
850
Yuval Mintz1408cc1f2016-05-11 16:36:14 +0300851 if (IS_VF(cdev))
852 return rc;
853
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200854 cdev->fw_data = kzalloc(sizeof(*cdev->fw_data), GFP_KERNEL);
855 if (!cdev->fw_data)
856 return -ENOMEM;
857
858 for_each_hwfn(cdev, i) {
859 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
Yuval Mintzdbb799c2016-06-03 14:35:35 +0300860 u32 n_eqes, num_cons;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200861
862 /* First allocate the context manager structure */
863 rc = qed_cxt_mngr_alloc(p_hwfn);
864 if (rc)
865 goto alloc_err;
866
867 /* Set the HW cid/tid numbers (in the contest manager)
868 * Must be done prior to any further computations.
869 */
Ram Amranif9dc4d12017-04-03 12:21:13 +0300870 rc = qed_cxt_set_pf_params(p_hwfn, RDMA_MAX_TIDS);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200871 if (rc)
872 goto alloc_err;
873
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300874 rc = qed_alloc_qm_data(p_hwfn);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200875 if (rc)
876 goto alloc_err;
877
Ariel Eliorb5a9ee72017-04-03 12:21:09 +0300878 /* init qm info */
879 qed_init_qm_info(p_hwfn);
880
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200881 /* Compute the ILT client partition */
Ram Amranif9dc4d12017-04-03 12:21:13 +0300882 rc = qed_cxt_cfg_ilt_compute(p_hwfn, &line_count);
883 if (rc) {
884 DP_NOTICE(p_hwfn,
885 "too many ILT lines; re-computing with less lines\n");
886 /* In case there are not enough ILT lines we reduce the
887 * number of RDMA tasks and re-compute.
888 */
889 excess_tasks =
890 qed_cxt_cfg_ilt_compute_excess(p_hwfn, line_count);
891 if (!excess_tasks)
892 goto alloc_err;
893
894 rdma_tasks = RDMA_MAX_TIDS - excess_tasks;
895 rc = qed_cxt_set_pf_params(p_hwfn, rdma_tasks);
896 if (rc)
897 goto alloc_err;
898
899 rc = qed_cxt_cfg_ilt_compute(p_hwfn, &line_count);
900 if (rc) {
901 DP_ERR(p_hwfn,
902 "failed ILT compute. Requested too many lines: %u\n",
903 line_count);
904
905 goto alloc_err;
906 }
907 }
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200908
909 /* CID map / ILT shadow table / T2
910 * The talbes sizes are determined by the computations above
911 */
912 rc = qed_cxt_tables_alloc(p_hwfn);
913 if (rc)
914 goto alloc_err;
915
916 /* SPQ, must follow ILT because initializes SPQ context */
917 rc = qed_spq_alloc(p_hwfn);
918 if (rc)
919 goto alloc_err;
920
921 /* SP status block allocation */
922 p_hwfn->p_dpc_ptt = qed_get_reserved_ptt(p_hwfn,
923 RESERVED_PTT_DPC);
924
925 rc = qed_int_alloc(p_hwfn, p_hwfn->p_main_ptt);
926 if (rc)
927 goto alloc_err;
928
Yuval Mintz32a47e72016-05-11 16:36:12 +0300929 rc = qed_iov_alloc(p_hwfn);
930 if (rc)
931 goto alloc_err;
932
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200933 /* EQ */
Yuval Mintzdbb799c2016-06-03 14:35:35 +0300934 n_eqes = qed_chain_get_capacity(&p_hwfn->p_spq->chain);
935 if (p_hwfn->hw_info.personality == QED_PCI_ETH_ROCE) {
936 num_cons = qed_cxt_get_proto_cid_count(p_hwfn,
937 PROTOCOLID_ROCE,
Yuval Mintz8c93bea2016-10-13 22:57:03 +0300938 NULL) * 2;
Yuval Mintzdbb799c2016-06-03 14:35:35 +0300939 n_eqes += num_cons + 2 * MAX_NUM_VFS_BB;
940 } else if (p_hwfn->hw_info.personality == QED_PCI_ISCSI) {
941 num_cons =
942 qed_cxt_get_proto_cid_count(p_hwfn,
Yuval Mintz8c93bea2016-10-13 22:57:03 +0300943 PROTOCOLID_ISCSI,
944 NULL);
Yuval Mintzdbb799c2016-06-03 14:35:35 +0300945 n_eqes += 2 * num_cons;
946 }
947
948 if (n_eqes > 0xFFFF) {
949 DP_ERR(p_hwfn,
950 "Cannot allocate 0x%x EQ elements. The maximum of a u16 chain is 0x%x\n",
951 n_eqes, 0xFFFF);
Tomer Tayar3587cb82017-05-21 12:10:56 +0300952 goto alloc_no_mem;
Dan Carpenter9b15acb2015-11-05 11:41:28 +0300953 }
Yuval Mintzdbb799c2016-06-03 14:35:35 +0300954
Tomer Tayar3587cb82017-05-21 12:10:56 +0300955 rc = qed_eq_alloc(p_hwfn, (u16) n_eqes);
956 if (rc)
957 goto alloc_err;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200958
Tomer Tayar3587cb82017-05-21 12:10:56 +0300959 rc = qed_consq_alloc(p_hwfn);
960 if (rc)
961 goto alloc_err;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200962
Yuval Mintz0a7fb112016-10-01 21:59:55 +0300963#ifdef CONFIG_QED_LL2
964 if (p_hwfn->using_ll2) {
Tomer Tayar3587cb82017-05-21 12:10:56 +0300965 rc = qed_ll2_alloc(p_hwfn);
966 if (rc)
967 goto alloc_err;
Yuval Mintz0a7fb112016-10-01 21:59:55 +0300968 }
969#endif
Arun Easi1e128c82017-02-15 06:28:22 -0800970
971 if (p_hwfn->hw_info.personality == QED_PCI_FCOE) {
Tomer Tayar3587cb82017-05-21 12:10:56 +0300972 rc = qed_fcoe_alloc(p_hwfn);
973 if (rc)
974 goto alloc_err;
Arun Easi1e128c82017-02-15 06:28:22 -0800975 }
976
Yuval Mintzfc831822016-12-01 00:21:06 -0800977 if (p_hwfn->hw_info.personality == QED_PCI_ISCSI) {
Tomer Tayar3587cb82017-05-21 12:10:56 +0300978 rc = qed_iscsi_alloc(p_hwfn);
979 if (rc)
980 goto alloc_err;
981 rc = qed_ooo_alloc(p_hwfn);
982 if (rc)
983 goto alloc_err;
Yuval Mintzfc831822016-12-01 00:21:06 -0800984 }
Yuval Mintz0a7fb112016-10-01 21:59:55 +0300985
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200986 /* DMA info initialization */
987 rc = qed_dmae_info_alloc(p_hwfn);
Joe Perches2591c282016-09-04 14:24:03 -0700988 if (rc)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200989 goto alloc_err;
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400990
991 /* DCBX initialization */
992 rc = qed_dcbx_info_alloc(p_hwfn);
Joe Perches2591c282016-09-04 14:24:03 -0700993 if (rc)
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -0400994 goto alloc_err;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200995 }
996
997 cdev->reset_stats = kzalloc(sizeof(*cdev->reset_stats), GFP_KERNEL);
Joe Perches2591c282016-09-04 14:24:03 -0700998 if (!cdev->reset_stats)
Yuval Mintz83aeb932016-08-15 10:42:44 +0300999 goto alloc_no_mem;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001000
1001 return 0;
1002
Yuval Mintzdbb799c2016-06-03 14:35:35 +03001003alloc_no_mem:
1004 rc = -ENOMEM;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001005alloc_err:
1006 qed_resc_free(cdev);
1007 return rc;
1008}
1009
1010void qed_resc_setup(struct qed_dev *cdev)
1011{
1012 int i;
1013
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001014 if (IS_VF(cdev))
1015 return;
1016
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001017 for_each_hwfn(cdev, i) {
1018 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
1019
1020 qed_cxt_mngr_setup(p_hwfn);
1021 qed_spq_setup(p_hwfn);
Tomer Tayar3587cb82017-05-21 12:10:56 +03001022 qed_eq_setup(p_hwfn);
1023 qed_consq_setup(p_hwfn);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001024
1025 /* Read shadow of current MFW mailbox */
1026 qed_mcp_read_mb(p_hwfn, p_hwfn->p_main_ptt);
1027 memcpy(p_hwfn->mcp_info->mfw_mb_shadow,
1028 p_hwfn->mcp_info->mfw_mb_cur,
1029 p_hwfn->mcp_info->mfw_mb_length);
1030
1031 qed_int_setup(p_hwfn, p_hwfn->p_main_ptt);
Yuval Mintz32a47e72016-05-11 16:36:12 +03001032
1033 qed_iov_setup(p_hwfn, p_hwfn->p_main_ptt);
Yuval Mintz0a7fb112016-10-01 21:59:55 +03001034#ifdef CONFIG_QED_LL2
1035 if (p_hwfn->using_ll2)
Tomer Tayar3587cb82017-05-21 12:10:56 +03001036 qed_ll2_setup(p_hwfn);
Yuval Mintz0a7fb112016-10-01 21:59:55 +03001037#endif
Arun Easi1e128c82017-02-15 06:28:22 -08001038 if (p_hwfn->hw_info.personality == QED_PCI_FCOE)
Tomer Tayar3587cb82017-05-21 12:10:56 +03001039 qed_fcoe_setup(p_hwfn);
Arun Easi1e128c82017-02-15 06:28:22 -08001040
Yuval Mintz1d6cff42016-12-01 00:21:07 -08001041 if (p_hwfn->hw_info.personality == QED_PCI_ISCSI) {
Tomer Tayar3587cb82017-05-21 12:10:56 +03001042 qed_iscsi_setup(p_hwfn);
1043 qed_ooo_setup(p_hwfn);
Yuval Mintz1d6cff42016-12-01 00:21:07 -08001044 }
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001045 }
1046}
1047
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001048#define FINAL_CLEANUP_POLL_CNT (100)
1049#define FINAL_CLEANUP_POLL_TIME (10)
1050int qed_final_cleanup(struct qed_hwfn *p_hwfn,
Yuval Mintz0b55e272016-05-11 16:36:15 +03001051 struct qed_ptt *p_ptt, u16 id, bool is_vf)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001052{
1053 u32 command = 0, addr, count = FINAL_CLEANUP_POLL_CNT;
1054 int rc = -EBUSY;
1055
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001056 addr = GTT_BAR0_MAP_REG_USDM_RAM +
1057 USTORM_FLR_FINAL_ACK_OFFSET(p_hwfn->rel_pf_id);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001058
Yuval Mintz0b55e272016-05-11 16:36:15 +03001059 if (is_vf)
1060 id += 0x10;
1061
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001062 command |= X_FINAL_CLEANUP_AGG_INT <<
1063 SDM_AGG_INT_COMP_PARAMS_AGG_INT_INDEX_SHIFT;
1064 command |= 1 << SDM_AGG_INT_COMP_PARAMS_AGG_VECTOR_ENABLE_SHIFT;
1065 command |= id << SDM_AGG_INT_COMP_PARAMS_AGG_VECTOR_BIT_SHIFT;
1066 command |= SDM_COMP_TYPE_AGG_INT << SDM_OP_GEN_COMP_TYPE_SHIFT;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001067
1068 /* Make sure notification is not set before initiating final cleanup */
1069 if (REG_RD(p_hwfn, addr)) {
Yuval Mintz1a635e42016-08-15 10:42:43 +03001070 DP_NOTICE(p_hwfn,
1071 "Unexpected; Found final cleanup notification before initiating final cleanup\n");
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001072 REG_WR(p_hwfn, addr, 0);
1073 }
1074
1075 DP_VERBOSE(p_hwfn, QED_MSG_IOV,
1076 "Sending final cleanup for PFVF[%d] [Command %08x\n]",
1077 id, command);
1078
1079 qed_wr(p_hwfn, p_ptt, XSDM_REG_OPERATION_GEN, command);
1080
1081 /* Poll until completion */
1082 while (!REG_RD(p_hwfn, addr) && count--)
1083 msleep(FINAL_CLEANUP_POLL_TIME);
1084
1085 if (REG_RD(p_hwfn, addr))
1086 rc = 0;
1087 else
1088 DP_NOTICE(p_hwfn,
1089 "Failed to receive FW final cleanup notification\n");
1090
1091 /* Cleanup afterwards */
1092 REG_WR(p_hwfn, addr, 0);
1093
1094 return rc;
1095}
1096
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02001097static int qed_calc_hw_mode(struct qed_hwfn *p_hwfn)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001098{
1099 int hw_mode = 0;
1100
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02001101 if (QED_IS_BB_B0(p_hwfn->cdev)) {
1102 hw_mode |= 1 << MODE_BB;
1103 } else if (QED_IS_AH(p_hwfn->cdev)) {
1104 hw_mode |= 1 << MODE_K2;
1105 } else {
1106 DP_NOTICE(p_hwfn, "Unknown chip type %#x\n",
1107 p_hwfn->cdev->type);
1108 return -EINVAL;
1109 }
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001110
1111 switch (p_hwfn->cdev->num_ports_in_engines) {
1112 case 1:
1113 hw_mode |= 1 << MODE_PORTS_PER_ENG_1;
1114 break;
1115 case 2:
1116 hw_mode |= 1 << MODE_PORTS_PER_ENG_2;
1117 break;
1118 case 4:
1119 hw_mode |= 1 << MODE_PORTS_PER_ENG_4;
1120 break;
1121 default:
1122 DP_NOTICE(p_hwfn, "num_ports_in_engine = %d not supported\n",
1123 p_hwfn->cdev->num_ports_in_engines);
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02001124 return -EINVAL;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001125 }
1126
1127 switch (p_hwfn->cdev->mf_mode) {
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001128 case QED_MF_DEFAULT:
1129 case QED_MF_NPAR:
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001130 hw_mode |= 1 << MODE_MF_SI;
1131 break;
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001132 case QED_MF_OVLAN:
1133 hw_mode |= 1 << MODE_MF_SD;
1134 break;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001135 default:
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001136 DP_NOTICE(p_hwfn, "Unsupported MF mode, init as DEFAULT\n");
1137 hw_mode |= 1 << MODE_MF_SI;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001138 }
1139
1140 hw_mode |= 1 << MODE_ASIC;
1141
Yuval Mintz1af9dcf2016-05-26 11:01:22 +03001142 if (p_hwfn->cdev->num_hwfns > 1)
1143 hw_mode |= 1 << MODE_100G;
1144
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001145 p_hwfn->hw_info.hw_mode = hw_mode;
Yuval Mintz1af9dcf2016-05-26 11:01:22 +03001146
1147 DP_VERBOSE(p_hwfn, (NETIF_MSG_PROBE | NETIF_MSG_IFUP),
1148 "Configuring function for hw_mode: 0x%08x\n",
1149 p_hwfn->hw_info.hw_mode);
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02001150
1151 return 0;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001152}
1153
1154/* Init run time data for all PFs on an engine. */
1155static void qed_init_cau_rt_data(struct qed_dev *cdev)
1156{
1157 u32 offset = CAU_REG_SB_VAR_MEMORY_RT_OFFSET;
1158 int i, sb_id;
1159
1160 for_each_hwfn(cdev, i) {
1161 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
1162 struct qed_igu_info *p_igu_info;
1163 struct qed_igu_block *p_block;
1164 struct cau_sb_entry sb_entry;
1165
1166 p_igu_info = p_hwfn->hw_info.p_igu_info;
1167
1168 for (sb_id = 0; sb_id < QED_MAPPING_MEMORY_SIZE(cdev);
1169 sb_id++) {
1170 p_block = &p_igu_info->igu_map.igu_blocks[sb_id];
1171 if (!p_block->is_pf)
1172 continue;
1173
1174 qed_init_cau_sb_entry(p_hwfn, &sb_entry,
Yuval Mintz1a635e42016-08-15 10:42:43 +03001175 p_block->function_id, 0, 0);
1176 STORE_RT_REG_AGG(p_hwfn, offset + sb_id * 2, sb_entry);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001177 }
1178 }
1179}
1180
Tomer Tayar60afed72017-04-06 15:58:30 +03001181static void qed_init_cache_line_size(struct qed_hwfn *p_hwfn,
1182 struct qed_ptt *p_ptt)
1183{
1184 u32 val, wr_mbs, cache_line_size;
1185
1186 val = qed_rd(p_hwfn, p_ptt, PSWRQ2_REG_WR_MBS0);
1187 switch (val) {
1188 case 0:
1189 wr_mbs = 128;
1190 break;
1191 case 1:
1192 wr_mbs = 256;
1193 break;
1194 case 2:
1195 wr_mbs = 512;
1196 break;
1197 default:
1198 DP_INFO(p_hwfn,
1199 "Unexpected value of PSWRQ2_REG_WR_MBS0 [0x%x]. Avoid configuring PGLUE_B_REG_CACHE_LINE_SIZE.\n",
1200 val);
1201 return;
1202 }
1203
1204 cache_line_size = min_t(u32, L1_CACHE_BYTES, wr_mbs);
1205 switch (cache_line_size) {
1206 case 32:
1207 val = 0;
1208 break;
1209 case 64:
1210 val = 1;
1211 break;
1212 case 128:
1213 val = 2;
1214 break;
1215 case 256:
1216 val = 3;
1217 break;
1218 default:
1219 DP_INFO(p_hwfn,
1220 "Unexpected value of cache line size [0x%x]. Avoid configuring PGLUE_B_REG_CACHE_LINE_SIZE.\n",
1221 cache_line_size);
1222 }
1223
1224 if (L1_CACHE_BYTES > wr_mbs)
1225 DP_INFO(p_hwfn,
1226 "The cache line size for padding is suboptimal for performance [OS cache line size 0x%x, wr mbs 0x%x]\n",
1227 L1_CACHE_BYTES, wr_mbs);
1228
1229 STORE_RT_REG(p_hwfn, PGLUE_REG_B_CACHE_LINE_SIZE_RT_OFFSET, val);
1230}
1231
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001232static int qed_hw_init_common(struct qed_hwfn *p_hwfn,
Yuval Mintz1a635e42016-08-15 10:42:43 +03001233 struct qed_ptt *p_ptt, int hw_mode)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001234{
1235 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
1236 struct qed_qm_common_rt_init_params params;
1237 struct qed_dev *cdev = p_hwfn->cdev;
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02001238 u8 vf_id, max_num_vfs;
Yuval Mintzdbb799c2016-06-03 14:35:35 +03001239 u16 num_pfs, pf_id;
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001240 u32 concrete_fid;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001241 int rc = 0;
1242
1243 qed_init_cau_rt_data(cdev);
1244
1245 /* Program GTT windows */
1246 qed_gtt_init(p_hwfn);
1247
1248 if (p_hwfn->mcp_info) {
1249 if (p_hwfn->mcp_info->func_info.bandwidth_max)
1250 qm_info->pf_rl_en = 1;
1251 if (p_hwfn->mcp_info->func_info.bandwidth_min)
1252 qm_info->pf_wfq_en = 1;
1253 }
1254
1255 memset(&params, 0, sizeof(params));
1256 params.max_ports_per_engine = p_hwfn->cdev->num_ports_in_engines;
1257 params.max_phys_tcs_per_port = qm_info->max_phys_tcs_per_port;
1258 params.pf_rl_en = qm_info->pf_rl_en;
1259 params.pf_wfq_en = qm_info->pf_wfq_en;
1260 params.vport_rl_en = qm_info->vport_rl_en;
1261 params.vport_wfq_en = qm_info->vport_wfq_en;
1262 params.port_params = qm_info->qm_port_params;
1263
1264 qed_qm_common_rt_init(p_hwfn, &params);
1265
1266 qed_cxt_hw_init_common(p_hwfn);
1267
Tomer Tayar60afed72017-04-06 15:58:30 +03001268 qed_init_cache_line_size(p_hwfn, p_ptt);
1269
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001270 rc = qed_init_run(p_hwfn, p_ptt, PHASE_ENGINE, ANY_PHASE_ID, hw_mode);
Yuval Mintz1a635e42016-08-15 10:42:43 +03001271 if (rc)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001272 return rc;
1273
1274 qed_wr(p_hwfn, p_ptt, PSWRQ2_REG_L2P_VALIDATE_VFID, 0);
1275 qed_wr(p_hwfn, p_ptt, PGLUE_B_REG_USE_CLIENTID_IN_TAG, 1);
1276
Yuval Mintzdbb799c2016-06-03 14:35:35 +03001277 if (QED_IS_BB(p_hwfn->cdev)) {
1278 num_pfs = NUM_OF_ENG_PFS(p_hwfn->cdev);
1279 for (pf_id = 0; pf_id < num_pfs; pf_id++) {
1280 qed_fid_pretend(p_hwfn, p_ptt, pf_id);
1281 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE, 0x0);
1282 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP, 0x0);
1283 }
1284 /* pretend to original PF */
1285 qed_fid_pretend(p_hwfn, p_ptt, p_hwfn->rel_pf_id);
1286 }
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001287
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02001288 max_num_vfs = QED_IS_AH(cdev) ? MAX_NUM_VFS_K2 : MAX_NUM_VFS_BB;
1289 for (vf_id = 0; vf_id < max_num_vfs; vf_id++) {
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001290 concrete_fid = qed_vfid_to_concrete(p_hwfn, vf_id);
1291 qed_fid_pretend(p_hwfn, p_ptt, (u16) concrete_fid);
1292 qed_wr(p_hwfn, p_ptt, CCFC_REG_STRONG_ENABLE_VF, 0x1);
Yuval Mintz05fafbf2016-08-19 09:33:31 +03001293 qed_wr(p_hwfn, p_ptt, CCFC_REG_WEAK_ENABLE_VF, 0x0);
1294 qed_wr(p_hwfn, p_ptt, TCFC_REG_STRONG_ENABLE_VF, 0x1);
1295 qed_wr(p_hwfn, p_ptt, TCFC_REG_WEAK_ENABLE_VF, 0x0);
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001296 }
1297 /* pretend to original PF */
1298 qed_fid_pretend(p_hwfn, p_ptt, p_hwfn->rel_pf_id);
1299
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001300 return rc;
1301}
1302
Ram Amrani51ff1722016-10-01 21:59:57 +03001303static int
1304qed_hw_init_dpi_size(struct qed_hwfn *p_hwfn,
1305 struct qed_ptt *p_ptt, u32 pwm_region_size, u32 n_cpus)
1306{
Ram Amrani107392b2017-04-30 11:49:09 +03001307 u32 dpi_bit_shift, dpi_count, dpi_page_size;
Ram Amrani51ff1722016-10-01 21:59:57 +03001308 u32 min_dpis;
Ram Amrani107392b2017-04-30 11:49:09 +03001309 u32 n_wids;
Ram Amrani51ff1722016-10-01 21:59:57 +03001310
1311 /* Calculate DPI size */
Ram Amrani107392b2017-04-30 11:49:09 +03001312 n_wids = max_t(u32, QED_MIN_WIDS, n_cpus);
1313 dpi_page_size = QED_WID_SIZE * roundup_pow_of_two(n_wids);
1314 dpi_page_size = (dpi_page_size + PAGE_SIZE - 1) & ~(PAGE_SIZE - 1);
Ram Amrani51ff1722016-10-01 21:59:57 +03001315 dpi_bit_shift = ilog2(dpi_page_size / 4096);
Ram Amrani51ff1722016-10-01 21:59:57 +03001316 dpi_count = pwm_region_size / dpi_page_size;
1317
1318 min_dpis = p_hwfn->pf_params.rdma_pf_params.min_dpis;
1319 min_dpis = max_t(u32, QED_MIN_DPIS, min_dpis);
1320
1321 p_hwfn->dpi_size = dpi_page_size;
1322 p_hwfn->dpi_count = dpi_count;
1323
1324 qed_wr(p_hwfn, p_ptt, DORQ_REG_PF_DPI_BIT_SHIFT, dpi_bit_shift);
1325
1326 if (dpi_count < min_dpis)
1327 return -EINVAL;
1328
1329 return 0;
1330}
1331
1332enum QED_ROCE_EDPM_MODE {
1333 QED_ROCE_EDPM_MODE_ENABLE = 0,
1334 QED_ROCE_EDPM_MODE_FORCE_ON = 1,
1335 QED_ROCE_EDPM_MODE_DISABLE = 2,
1336};
1337
1338static int
1339qed_hw_init_pf_doorbell_bar(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
1340{
1341 u32 pwm_regsize, norm_regsize;
1342 u32 non_pwm_conn, min_addr_reg1;
Ram Amrani20b1bd92017-04-30 11:49:10 +03001343 u32 db_bar_size, n_cpus = 1;
Ram Amrani51ff1722016-10-01 21:59:57 +03001344 u32 roce_edpm_mode;
1345 u32 pf_dems_shift;
1346 int rc = 0;
1347 u8 cond;
1348
Rahul Verma15582962017-04-06 15:58:29 +03001349 db_bar_size = qed_hw_bar_size(p_hwfn, p_ptt, BAR_ID_1);
Ram Amrani51ff1722016-10-01 21:59:57 +03001350 if (p_hwfn->cdev->num_hwfns > 1)
1351 db_bar_size /= 2;
1352
1353 /* Calculate doorbell regions */
1354 non_pwm_conn = qed_cxt_get_proto_cid_start(p_hwfn, PROTOCOLID_CORE) +
1355 qed_cxt_get_proto_cid_count(p_hwfn, PROTOCOLID_CORE,
1356 NULL) +
1357 qed_cxt_get_proto_cid_count(p_hwfn, PROTOCOLID_ETH,
1358 NULL);
Ram Amrania82dadb2017-05-09 15:07:50 +03001359 norm_regsize = roundup(QED_PF_DEMS_SIZE * non_pwm_conn, PAGE_SIZE);
Ram Amrani51ff1722016-10-01 21:59:57 +03001360 min_addr_reg1 = norm_regsize / 4096;
1361 pwm_regsize = db_bar_size - norm_regsize;
1362
1363 /* Check that the normal and PWM sizes are valid */
1364 if (db_bar_size < norm_regsize) {
1365 DP_ERR(p_hwfn->cdev,
1366 "Doorbell BAR size 0x%x is too small (normal region is 0x%0x )\n",
1367 db_bar_size, norm_regsize);
1368 return -EINVAL;
1369 }
1370
1371 if (pwm_regsize < QED_MIN_PWM_REGION) {
1372 DP_ERR(p_hwfn->cdev,
1373 "PWM region size 0x%0x is too small. Should be at least 0x%0x (Doorbell BAR size is 0x%x and normal region size is 0x%0x)\n",
1374 pwm_regsize,
1375 QED_MIN_PWM_REGION, db_bar_size, norm_regsize);
1376 return -EINVAL;
1377 }
1378
1379 /* Calculate number of DPIs */
1380 roce_edpm_mode = p_hwfn->pf_params.rdma_pf_params.roce_edpm_mode;
1381 if ((roce_edpm_mode == QED_ROCE_EDPM_MODE_ENABLE) ||
1382 ((roce_edpm_mode == QED_ROCE_EDPM_MODE_FORCE_ON))) {
1383 /* Either EDPM is mandatory, or we are attempting to allocate a
1384 * WID per CPU.
1385 */
Ram Amranic2dedf82017-02-20 22:43:33 +02001386 n_cpus = num_present_cpus();
Ram Amrani51ff1722016-10-01 21:59:57 +03001387 rc = qed_hw_init_dpi_size(p_hwfn, p_ptt, pwm_regsize, n_cpus);
1388 }
1389
1390 cond = (rc && (roce_edpm_mode == QED_ROCE_EDPM_MODE_ENABLE)) ||
1391 (roce_edpm_mode == QED_ROCE_EDPM_MODE_DISABLE);
1392 if (cond || p_hwfn->dcbx_no_edpm) {
1393 /* Either EDPM is disabled from user configuration, or it is
1394 * disabled via DCBx, or it is not mandatory and we failed to
1395 * allocated a WID per CPU.
1396 */
1397 n_cpus = 1;
1398 rc = qed_hw_init_dpi_size(p_hwfn, p_ptt, pwm_regsize, n_cpus);
1399
1400 if (cond)
1401 qed_rdma_dpm_bar(p_hwfn, p_ptt);
1402 }
1403
Ram Amrani20b1bd92017-04-30 11:49:10 +03001404 p_hwfn->wid_count = (u16) n_cpus;
1405
Ram Amrani51ff1722016-10-01 21:59:57 +03001406 DP_INFO(p_hwfn,
1407 "doorbell bar: normal_region_size=%d, pwm_region_size=%d, dpi_size=%d, dpi_count=%d, roce_edpm=%s\n",
1408 norm_regsize,
1409 pwm_regsize,
1410 p_hwfn->dpi_size,
1411 p_hwfn->dpi_count,
1412 ((p_hwfn->dcbx_no_edpm) || (p_hwfn->db_bar_no_edpm)) ?
1413 "disabled" : "enabled");
1414
1415 if (rc) {
1416 DP_ERR(p_hwfn,
1417 "Failed to allocate enough DPIs. Allocated %d but the current minimum is %d.\n",
1418 p_hwfn->dpi_count,
1419 p_hwfn->pf_params.rdma_pf_params.min_dpis);
1420 return -EINVAL;
1421 }
1422
1423 p_hwfn->dpi_start_offset = norm_regsize;
1424
1425 /* DEMS size is configured log2 of DWORDs, hence the division by 4 */
1426 pf_dems_shift = ilog2(QED_PF_DEMS_SIZE / 4);
1427 qed_wr(p_hwfn, p_ptt, DORQ_REG_PF_ICID_BIT_SHIFT_NORM, pf_dems_shift);
1428 qed_wr(p_hwfn, p_ptt, DORQ_REG_PF_MIN_ADDR_REG1, min_addr_reg1);
1429
1430 return 0;
1431}
1432
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001433static int qed_hw_init_port(struct qed_hwfn *p_hwfn,
Yuval Mintz1a635e42016-08-15 10:42:43 +03001434 struct qed_ptt *p_ptt, int hw_mode)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001435{
Yuval Mintz05fafbf2016-08-19 09:33:31 +03001436 return qed_init_run(p_hwfn, p_ptt, PHASE_PORT,
1437 p_hwfn->port_id, hw_mode);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001438}
1439
1440static int qed_hw_init_pf(struct qed_hwfn *p_hwfn,
1441 struct qed_ptt *p_ptt,
Chopra, Manish199684302017-04-24 10:00:44 -07001442 struct qed_tunnel_info *p_tunn,
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001443 int hw_mode,
1444 bool b_hw_start,
1445 enum qed_int_mode int_mode,
1446 bool allow_npar_tx_switch)
1447{
1448 u8 rel_pf_id = p_hwfn->rel_pf_id;
1449 int rc = 0;
1450
1451 if (p_hwfn->mcp_info) {
1452 struct qed_mcp_function_info *p_info;
1453
1454 p_info = &p_hwfn->mcp_info->func_info;
1455 if (p_info->bandwidth_min)
1456 p_hwfn->qm_info.pf_wfq = p_info->bandwidth_min;
1457
1458 /* Update rate limit once we'll actually have a link */
Manish Chopra4b01e512016-04-26 10:56:09 -04001459 p_hwfn->qm_info.pf_rl = 100000;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001460 }
1461
Rahul Verma15582962017-04-06 15:58:29 +03001462 qed_cxt_hw_init_pf(p_hwfn, p_ptt);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001463
1464 qed_int_igu_init_rt(p_hwfn);
1465
1466 /* Set VLAN in NIG if needed */
Yuval Mintz1a635e42016-08-15 10:42:43 +03001467 if (hw_mode & BIT(MODE_MF_SD)) {
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001468 DP_VERBOSE(p_hwfn, NETIF_MSG_HW, "Configuring LLH_FUNC_TAG\n");
1469 STORE_RT_REG(p_hwfn, NIG_REG_LLH_FUNC_TAG_EN_RT_OFFSET, 1);
1470 STORE_RT_REG(p_hwfn, NIG_REG_LLH_FUNC_TAG_VALUE_RT_OFFSET,
1471 p_hwfn->hw_info.ovlan);
1472 }
1473
1474 /* Enable classification by MAC if needed */
Yuval Mintz1a635e42016-08-15 10:42:43 +03001475 if (hw_mode & BIT(MODE_MF_SI)) {
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001476 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
1477 "Configuring TAGMAC_CLS_TYPE\n");
1478 STORE_RT_REG(p_hwfn,
1479 NIG_REG_LLH_FUNC_TAGMAC_CLS_TYPE_RT_OFFSET, 1);
1480 }
1481
1482 /* Protocl Configuration */
Yuval Mintzdbb799c2016-06-03 14:35:35 +03001483 STORE_RT_REG(p_hwfn, PRS_REG_SEARCH_TCP_RT_OFFSET,
1484 (p_hwfn->hw_info.personality == QED_PCI_ISCSI) ? 1 : 0);
Arun Easi1e128c82017-02-15 06:28:22 -08001485 STORE_RT_REG(p_hwfn, PRS_REG_SEARCH_FCOE_RT_OFFSET,
1486 (p_hwfn->hw_info.personality == QED_PCI_FCOE) ? 1 : 0);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001487 STORE_RT_REG(p_hwfn, PRS_REG_SEARCH_ROCE_RT_OFFSET, 0);
1488
1489 /* Cleanup chip from previous driver if such remains exist */
Yuval Mintz0b55e272016-05-11 16:36:15 +03001490 rc = qed_final_cleanup(p_hwfn, p_ptt, rel_pf_id, false);
Yuval Mintz1a635e42016-08-15 10:42:43 +03001491 if (rc)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001492 return rc;
1493
1494 /* PF Init sequence */
1495 rc = qed_init_run(p_hwfn, p_ptt, PHASE_PF, rel_pf_id, hw_mode);
1496 if (rc)
1497 return rc;
1498
1499 /* QM_PF Init sequence (may be invoked separately e.g. for DCB) */
1500 rc = qed_init_run(p_hwfn, p_ptt, PHASE_QM_PF, rel_pf_id, hw_mode);
1501 if (rc)
1502 return rc;
1503
1504 /* Pure runtime initializations - directly to the HW */
1505 qed_int_igu_init_pure_rt(p_hwfn, p_ptt, true, true);
1506
Ram Amrani51ff1722016-10-01 21:59:57 +03001507 rc = qed_hw_init_pf_doorbell_bar(p_hwfn, p_ptt);
1508 if (rc)
1509 return rc;
1510
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001511 if (b_hw_start) {
1512 /* enable interrupts */
1513 qed_int_igu_enable(p_hwfn, p_ptt, int_mode);
1514
1515 /* send function start command */
Manish Chopra4f646752017-05-23 09:41:20 +03001516 rc = qed_sp_pf_start(p_hwfn, p_ptt, p_tunn,
1517 p_hwfn->cdev->mf_mode,
Yuval Mintz831bfb0e2016-05-11 16:36:25 +03001518 allow_npar_tx_switch);
Arun Easi1e128c82017-02-15 06:28:22 -08001519 if (rc) {
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001520 DP_NOTICE(p_hwfn, "Function start ramrod failed\n");
Arun Easi1e128c82017-02-15 06:28:22 -08001521 return rc;
1522 }
1523 if (p_hwfn->hw_info.personality == QED_PCI_FCOE) {
1524 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TAG1, BIT(2));
1525 qed_wr(p_hwfn, p_ptt,
1526 PRS_REG_PKT_LEN_STAT_TAGS_NOT_COUNTED_FIRST,
1527 0x100);
1528 }
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001529 }
1530 return rc;
1531}
1532
1533static int qed_change_pci_hwfn(struct qed_hwfn *p_hwfn,
1534 struct qed_ptt *p_ptt,
1535 u8 enable)
1536{
1537 u32 delay_idx = 0, val, set_val = enable ? 1 : 0;
1538
1539 /* Change PF in PXP */
1540 qed_wr(p_hwfn, p_ptt,
1541 PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, set_val);
1542
1543 /* wait until value is set - try for 1 second every 50us */
1544 for (delay_idx = 0; delay_idx < 20000; delay_idx++) {
1545 val = qed_rd(p_hwfn, p_ptt,
1546 PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER);
1547 if (val == set_val)
1548 break;
1549
1550 usleep_range(50, 60);
1551 }
1552
1553 if (val != set_val) {
1554 DP_NOTICE(p_hwfn,
1555 "PFID_ENABLE_MASTER wasn't changed after a second\n");
1556 return -EAGAIN;
1557 }
1558
1559 return 0;
1560}
1561
1562static void qed_reset_mb_shadow(struct qed_hwfn *p_hwfn,
1563 struct qed_ptt *p_main_ptt)
1564{
1565 /* Read shadow of current MFW mailbox */
1566 qed_mcp_read_mb(p_hwfn, p_main_ptt);
1567 memcpy(p_hwfn->mcp_info->mfw_mb_shadow,
Yuval Mintz1a635e42016-08-15 10:42:43 +03001568 p_hwfn->mcp_info->mfw_mb_cur, p_hwfn->mcp_info->mfw_mb_length);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001569}
1570
Tomer Tayar5d24bcf2017-03-28 15:12:52 +03001571static void
1572qed_fill_load_req_params(struct qed_load_req_params *p_load_req,
1573 struct qed_drv_load_params *p_drv_load)
1574{
1575 memset(p_load_req, 0, sizeof(*p_load_req));
1576
1577 p_load_req->drv_role = p_drv_load->is_crash_kernel ?
1578 QED_DRV_ROLE_KDUMP : QED_DRV_ROLE_OS;
1579 p_load_req->timeout_val = p_drv_load->mfw_timeout_val;
1580 p_load_req->avoid_eng_reset = p_drv_load->avoid_eng_reset;
1581 p_load_req->override_force_load = p_drv_load->override_force_load;
1582}
1583
Chopra, Manisheaf3c0c2017-04-24 10:00:49 -07001584static int qed_vf_start(struct qed_hwfn *p_hwfn,
1585 struct qed_hw_init_params *p_params)
1586{
1587 if (p_params->p_tunn) {
1588 qed_vf_set_vf_start_tunn_update_param(p_params->p_tunn);
1589 qed_vf_pf_tunnel_param_update(p_hwfn, p_params->p_tunn);
1590 }
1591
1592 p_hwfn->b_int_enabled = 1;
1593
1594 return 0;
1595}
1596
Mintz, Yuvalc0c2d0b2017-03-28 15:12:51 +03001597int qed_hw_init(struct qed_dev *cdev, struct qed_hw_init_params *p_params)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001598{
Tomer Tayar5d24bcf2017-03-28 15:12:52 +03001599 struct qed_load_req_params load_req_params;
Sudarsana Kalluru0fefbfb2016-10-31 07:14:21 +02001600 u32 load_code, param, drv_mb_param;
1601 bool b_default_mtu = true;
1602 struct qed_hwfn *p_hwfn;
1603 int rc = 0, mfw_rc, i;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001604
Mintz, Yuvalc0c2d0b2017-03-28 15:12:51 +03001605 if ((p_params->int_mode == QED_INT_MODE_MSI) && (cdev->num_hwfns > 1)) {
Sudarsana Reddy Kallurubb13ace2016-05-26 11:01:23 +03001606 DP_NOTICE(cdev, "MSI mode is not supported for CMT devices\n");
1607 return -EINVAL;
1608 }
1609
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001610 if (IS_PF(cdev)) {
Mintz, Yuvalc0c2d0b2017-03-28 15:12:51 +03001611 rc = qed_init_fw_data(cdev, p_params->bin_fw_data);
Yuval Mintz1a635e42016-08-15 10:42:43 +03001612 if (rc)
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001613 return rc;
1614 }
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001615
1616 for_each_hwfn(cdev, i) {
1617 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
1618
Sudarsana Kalluru0fefbfb2016-10-31 07:14:21 +02001619 /* If management didn't provide a default, set one of our own */
1620 if (!p_hwfn->hw_info.mtu) {
1621 p_hwfn->hw_info.mtu = 1500;
1622 b_default_mtu = false;
1623 }
1624
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001625 if (IS_VF(cdev)) {
Chopra, Manisheaf3c0c2017-04-24 10:00:49 -07001626 qed_vf_start(p_hwfn, p_params);
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001627 continue;
1628 }
1629
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001630 /* Enable DMAE in PXP */
1631 rc = qed_change_pci_hwfn(p_hwfn, p_hwfn->p_main_ptt, true);
1632
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02001633 rc = qed_calc_hw_mode(p_hwfn);
1634 if (rc)
1635 return rc;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001636
Tomer Tayar5d24bcf2017-03-28 15:12:52 +03001637 qed_fill_load_req_params(&load_req_params,
1638 p_params->p_drv_load_params);
1639 rc = qed_mcp_load_req(p_hwfn, p_hwfn->p_main_ptt,
1640 &load_req_params);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001641 if (rc) {
Tomer Tayar5d24bcf2017-03-28 15:12:52 +03001642 DP_NOTICE(p_hwfn, "Failed sending a LOAD_REQ command\n");
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001643 return rc;
1644 }
1645
Tomer Tayar5d24bcf2017-03-28 15:12:52 +03001646 load_code = load_req_params.load_code;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001647 DP_VERBOSE(p_hwfn, QED_MSG_SP,
Tomer Tayar5d24bcf2017-03-28 15:12:52 +03001648 "Load request was sent. Load code: 0x%x\n",
1649 load_code);
1650
1651 qed_reset_mb_shadow(p_hwfn, p_hwfn->p_main_ptt);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001652
1653 p_hwfn->first_on_engine = (load_code ==
1654 FW_MSG_CODE_DRV_LOAD_ENGINE);
1655
1656 switch (load_code) {
1657 case FW_MSG_CODE_DRV_LOAD_ENGINE:
1658 rc = qed_hw_init_common(p_hwfn, p_hwfn->p_main_ptt,
1659 p_hwfn->hw_info.hw_mode);
1660 if (rc)
1661 break;
1662 /* Fall into */
1663 case FW_MSG_CODE_DRV_LOAD_PORT:
1664 rc = qed_hw_init_port(p_hwfn, p_hwfn->p_main_ptt,
1665 p_hwfn->hw_info.hw_mode);
1666 if (rc)
1667 break;
1668
1669 /* Fall into */
1670 case FW_MSG_CODE_DRV_LOAD_FUNCTION:
1671 rc = qed_hw_init_pf(p_hwfn, p_hwfn->p_main_ptt,
Mintz, Yuvalc0c2d0b2017-03-28 15:12:51 +03001672 p_params->p_tunn,
1673 p_hwfn->hw_info.hw_mode,
1674 p_params->b_hw_start,
1675 p_params->int_mode,
1676 p_params->allow_npar_tx_switch);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001677 break;
1678 default:
Mintz, Yuvalc0c2d0b2017-03-28 15:12:51 +03001679 DP_NOTICE(p_hwfn,
1680 "Unexpected load code [0x%08x]", load_code);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001681 rc = -EINVAL;
1682 break;
1683 }
1684
1685 if (rc)
1686 DP_NOTICE(p_hwfn,
1687 "init phase failed for loadcode 0x%x (rc %d)\n",
1688 load_code, rc);
1689
1690 /* ACK mfw regardless of success or failure of initialization */
1691 mfw_rc = qed_mcp_cmd(p_hwfn, p_hwfn->p_main_ptt,
1692 DRV_MSG_CODE_LOAD_DONE,
1693 0, &load_code, &param);
1694 if (rc)
1695 return rc;
1696 if (mfw_rc) {
1697 DP_NOTICE(p_hwfn, "Failed sending LOAD_DONE command\n");
1698 return mfw_rc;
1699 }
1700
Sudarsana Reddy Kalluru39651ab2016-05-17 06:44:26 -04001701 /* send DCBX attention request command */
1702 DP_VERBOSE(p_hwfn,
1703 QED_MSG_DCB,
1704 "sending phony dcbx set command to trigger DCBx attention handling\n");
1705 mfw_rc = qed_mcp_cmd(p_hwfn, p_hwfn->p_main_ptt,
1706 DRV_MSG_CODE_SET_DCBX,
1707 1 << DRV_MB_PARAM_DCBX_NOTIFY_SHIFT,
1708 &load_code, &param);
1709 if (mfw_rc) {
1710 DP_NOTICE(p_hwfn,
1711 "Failed to send DCBX attention request\n");
1712 return mfw_rc;
1713 }
1714
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001715 p_hwfn->hw_init_done = true;
1716 }
1717
Sudarsana Kalluru0fefbfb2016-10-31 07:14:21 +02001718 if (IS_PF(cdev)) {
1719 p_hwfn = QED_LEADING_HWFN(cdev);
Tomer Tayar5d24bcf2017-03-28 15:12:52 +03001720 drv_mb_param = STORM_FW_VERSION;
Sudarsana Kalluru0fefbfb2016-10-31 07:14:21 +02001721 rc = qed_mcp_cmd(p_hwfn, p_hwfn->p_main_ptt,
1722 DRV_MSG_CODE_OV_UPDATE_STORM_FW_VER,
1723 drv_mb_param, &load_code, &param);
1724 if (rc)
1725 DP_INFO(p_hwfn, "Failed to update firmware version\n");
1726
1727 if (!b_default_mtu) {
1728 rc = qed_mcp_ov_update_mtu(p_hwfn, p_hwfn->p_main_ptt,
1729 p_hwfn->hw_info.mtu);
1730 if (rc)
1731 DP_INFO(p_hwfn,
1732 "Failed to update default mtu\n");
1733 }
1734
1735 rc = qed_mcp_ov_update_driver_state(p_hwfn,
1736 p_hwfn->p_main_ptt,
1737 QED_OV_DRIVER_STATE_DISABLED);
1738 if (rc)
1739 DP_INFO(p_hwfn, "Failed to update driver state\n");
1740
1741 rc = qed_mcp_ov_update_eswitch(p_hwfn, p_hwfn->p_main_ptt,
1742 QED_OV_ESWITCH_VEB);
1743 if (rc)
1744 DP_INFO(p_hwfn, "Failed to update eswitch mode\n");
1745 }
1746
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001747 return 0;
1748}
1749
1750#define QED_HW_STOP_RETRY_LIMIT (10)
Yuval Mintz1a635e42016-08-15 10:42:43 +03001751static void qed_hw_timers_stop(struct qed_dev *cdev,
1752 struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
Yuval Mintz8c925c42016-03-02 20:26:03 +02001753{
1754 int i;
1755
1756 /* close timers */
1757 qed_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_CONN, 0x0);
1758 qed_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_TASK, 0x0);
1759
1760 for (i = 0; i < QED_HW_STOP_RETRY_LIMIT; i++) {
1761 if ((!qed_rd(p_hwfn, p_ptt,
1762 TM_REG_PF_SCAN_ACTIVE_CONN)) &&
Yuval Mintz1a635e42016-08-15 10:42:43 +03001763 (!qed_rd(p_hwfn, p_ptt, TM_REG_PF_SCAN_ACTIVE_TASK)))
Yuval Mintz8c925c42016-03-02 20:26:03 +02001764 break;
1765
1766 /* Dependent on number of connection/tasks, possibly
1767 * 1ms sleep is required between polls
1768 */
1769 usleep_range(1000, 2000);
1770 }
1771
1772 if (i < QED_HW_STOP_RETRY_LIMIT)
1773 return;
1774
1775 DP_NOTICE(p_hwfn,
1776 "Timers linear scans are not over [Connection %02x Tasks %02x]\n",
1777 (u8)qed_rd(p_hwfn, p_ptt, TM_REG_PF_SCAN_ACTIVE_CONN),
1778 (u8)qed_rd(p_hwfn, p_ptt, TM_REG_PF_SCAN_ACTIVE_TASK));
1779}
1780
1781void qed_hw_timers_stop_all(struct qed_dev *cdev)
1782{
1783 int j;
1784
1785 for_each_hwfn(cdev, j) {
1786 struct qed_hwfn *p_hwfn = &cdev->hwfns[j];
1787 struct qed_ptt *p_ptt = p_hwfn->p_main_ptt;
1788
1789 qed_hw_timers_stop(cdev, p_hwfn, p_ptt);
1790 }
1791}
1792
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001793int qed_hw_stop(struct qed_dev *cdev)
1794{
Tomer Tayar12263372017-03-28 15:12:50 +03001795 struct qed_hwfn *p_hwfn;
1796 struct qed_ptt *p_ptt;
1797 int rc, rc2 = 0;
Yuval Mintz8c925c42016-03-02 20:26:03 +02001798 int j;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001799
1800 for_each_hwfn(cdev, j) {
Tomer Tayar12263372017-03-28 15:12:50 +03001801 p_hwfn = &cdev->hwfns[j];
1802 p_ptt = p_hwfn->p_main_ptt;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001803
1804 DP_VERBOSE(p_hwfn, NETIF_MSG_IFDOWN, "Stopping hw/fw\n");
1805
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001806 if (IS_VF(cdev)) {
Yuval Mintz0b55e272016-05-11 16:36:15 +03001807 qed_vf_pf_int_cleanup(p_hwfn);
Tomer Tayar12263372017-03-28 15:12:50 +03001808 rc = qed_vf_pf_reset(p_hwfn);
1809 if (rc) {
1810 DP_NOTICE(p_hwfn,
1811 "qed_vf_pf_reset failed. rc = %d.\n",
1812 rc);
1813 rc2 = -EINVAL;
1814 }
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001815 continue;
1816 }
1817
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001818 /* mark the hw as uninitialized... */
1819 p_hwfn->hw_init_done = false;
1820
Tomer Tayar12263372017-03-28 15:12:50 +03001821 /* Send unload command to MCP */
1822 rc = qed_mcp_unload_req(p_hwfn, p_ptt);
1823 if (rc) {
Yuval Mintz8c925c42016-03-02 20:26:03 +02001824 DP_NOTICE(p_hwfn,
Tomer Tayar12263372017-03-28 15:12:50 +03001825 "Failed sending a UNLOAD_REQ command. rc = %d.\n",
1826 rc);
1827 rc2 = -EINVAL;
1828 }
1829
1830 qed_slowpath_irq_sync(p_hwfn);
1831
1832 /* After this point no MFW attentions are expected, e.g. prevent
1833 * race between pf stop and dcbx pf update.
1834 */
1835 rc = qed_sp_pf_stop(p_hwfn);
1836 if (rc) {
1837 DP_NOTICE(p_hwfn,
1838 "Failed to close PF against FW [rc = %d]. Continue to stop HW to prevent illegal host access by the device.\n",
1839 rc);
1840 rc2 = -EINVAL;
1841 }
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001842
1843 qed_wr(p_hwfn, p_ptt,
1844 NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x1);
1845
1846 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP, 0x0);
1847 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_UDP, 0x0);
1848 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_FCOE, 0x0);
1849 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE, 0x0);
1850 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_OPENFLOW, 0x0);
1851
Yuval Mintz8c925c42016-03-02 20:26:03 +02001852 qed_hw_timers_stop(cdev, p_hwfn, p_ptt);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001853
1854 /* Disable Attention Generation */
1855 qed_int_igu_disable_int(p_hwfn, p_ptt);
1856
1857 qed_wr(p_hwfn, p_ptt, IGU_REG_LEADING_EDGE_LATCH, 0);
1858 qed_wr(p_hwfn, p_ptt, IGU_REG_TRAILING_EDGE_LATCH, 0);
1859
1860 qed_int_igu_init_pure_rt(p_hwfn, p_ptt, false, true);
1861
1862 /* Need to wait 1ms to guarantee SBs are cleared */
1863 usleep_range(1000, 2000);
Tomer Tayar12263372017-03-28 15:12:50 +03001864
1865 /* Disable PF in HW blocks */
1866 qed_wr(p_hwfn, p_ptt, DORQ_REG_PF_DB_ENABLE, 0);
1867 qed_wr(p_hwfn, p_ptt, QM_REG_PF_EN, 0);
1868
1869 qed_mcp_unload_done(p_hwfn, p_ptt);
1870 if (rc) {
1871 DP_NOTICE(p_hwfn,
1872 "Failed sending a UNLOAD_DONE command. rc = %d.\n",
1873 rc);
1874 rc2 = -EINVAL;
1875 }
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001876 }
1877
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001878 if (IS_PF(cdev)) {
Tomer Tayar12263372017-03-28 15:12:50 +03001879 p_hwfn = QED_LEADING_HWFN(cdev);
1880 p_ptt = QED_LEADING_HWFN(cdev)->p_main_ptt;
1881
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001882 /* Disable DMAE in PXP - in CMT, this should only be done for
1883 * first hw-function, and only after all transactions have
1884 * stopped for all active hw-functions.
1885 */
Tomer Tayar12263372017-03-28 15:12:50 +03001886 rc = qed_change_pci_hwfn(p_hwfn, p_ptt, false);
1887 if (rc) {
1888 DP_NOTICE(p_hwfn,
1889 "qed_change_pci_hwfn failed. rc = %d.\n", rc);
1890 rc2 = -EINVAL;
1891 }
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03001892 }
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001893
Tomer Tayar12263372017-03-28 15:12:50 +03001894 return rc2;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001895}
1896
Rahul Verma15582962017-04-06 15:58:29 +03001897int qed_hw_stop_fastpath(struct qed_dev *cdev)
Manish Chopracee4d262015-10-26 11:02:28 +02001898{
Yuval Mintz8c925c42016-03-02 20:26:03 +02001899 int j;
Manish Chopracee4d262015-10-26 11:02:28 +02001900
1901 for_each_hwfn(cdev, j) {
1902 struct qed_hwfn *p_hwfn = &cdev->hwfns[j];
Rahul Verma15582962017-04-06 15:58:29 +03001903 struct qed_ptt *p_ptt;
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001904
1905 if (IS_VF(cdev)) {
1906 qed_vf_pf_int_cleanup(p_hwfn);
1907 continue;
1908 }
Rahul Verma15582962017-04-06 15:58:29 +03001909 p_ptt = qed_ptt_acquire(p_hwfn);
1910 if (!p_ptt)
1911 return -EAGAIN;
Manish Chopracee4d262015-10-26 11:02:28 +02001912
1913 DP_VERBOSE(p_hwfn,
Yuval Mintz1a635e42016-08-15 10:42:43 +03001914 NETIF_MSG_IFDOWN, "Shutting down the fastpath\n");
Manish Chopracee4d262015-10-26 11:02:28 +02001915
1916 qed_wr(p_hwfn, p_ptt,
1917 NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x1);
1918
1919 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP, 0x0);
1920 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_UDP, 0x0);
1921 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_FCOE, 0x0);
1922 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE, 0x0);
1923 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_OPENFLOW, 0x0);
1924
Manish Chopracee4d262015-10-26 11:02:28 +02001925 qed_int_igu_init_pure_rt(p_hwfn, p_ptt, false, false);
1926
1927 /* Need to wait 1ms to guarantee SBs are cleared */
1928 usleep_range(1000, 2000);
Rahul Verma15582962017-04-06 15:58:29 +03001929 qed_ptt_release(p_hwfn, p_ptt);
Manish Chopracee4d262015-10-26 11:02:28 +02001930 }
Rahul Verma15582962017-04-06 15:58:29 +03001931
1932 return 0;
Manish Chopracee4d262015-10-26 11:02:28 +02001933}
1934
Rahul Verma15582962017-04-06 15:58:29 +03001935int qed_hw_start_fastpath(struct qed_hwfn *p_hwfn)
Manish Chopracee4d262015-10-26 11:02:28 +02001936{
Rahul Verma15582962017-04-06 15:58:29 +03001937 struct qed_ptt *p_ptt;
1938
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001939 if (IS_VF(p_hwfn->cdev))
Rahul Verma15582962017-04-06 15:58:29 +03001940 return 0;
1941
1942 p_ptt = qed_ptt_acquire(p_hwfn);
1943 if (!p_ptt)
1944 return -EAGAIN;
Yuval Mintzdacd88d2016-05-11 16:36:16 +03001945
Manish Chopracee4d262015-10-26 11:02:28 +02001946 /* Re-open incoming traffic */
Rahul Verma15582962017-04-06 15:58:29 +03001947 qed_wr(p_hwfn, p_ptt, NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x0);
1948 qed_ptt_release(p_hwfn, p_ptt);
1949
1950 return 0;
Manish Chopracee4d262015-10-26 11:02:28 +02001951}
1952
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001953/* Free hwfn memory and resources acquired in hw_hwfn_prepare */
1954static void qed_hw_hwfn_free(struct qed_hwfn *p_hwfn)
1955{
1956 qed_ptt_pool_free(p_hwfn);
1957 kfree(p_hwfn->hw_info.p_igu_info);
Tomer Tayar3587cb82017-05-21 12:10:56 +03001958 p_hwfn->hw_info.p_igu_info = NULL;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001959}
1960
1961/* Setup bar access */
Yuval Mintz12e09c62016-03-02 20:26:01 +02001962static void qed_hw_hwfn_prepare(struct qed_hwfn *p_hwfn)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001963{
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001964 /* clear indirect access */
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02001965 if (QED_IS_AH(p_hwfn->cdev)) {
1966 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
1967 PGLUE_B_REG_PGL_ADDR_E8_F0_K2, 0);
1968 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
1969 PGLUE_B_REG_PGL_ADDR_EC_F0_K2, 0);
1970 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
1971 PGLUE_B_REG_PGL_ADDR_F0_F0_K2, 0);
1972 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
1973 PGLUE_B_REG_PGL_ADDR_F4_F0_K2, 0);
1974 } else {
1975 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
1976 PGLUE_B_REG_PGL_ADDR_88_F0_BB, 0);
1977 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
1978 PGLUE_B_REG_PGL_ADDR_8C_F0_BB, 0);
1979 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
1980 PGLUE_B_REG_PGL_ADDR_90_F0_BB, 0);
1981 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
1982 PGLUE_B_REG_PGL_ADDR_94_F0_BB, 0);
1983 }
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001984
1985 /* Clean Previous errors if such exist */
1986 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
Yuval Mintz1a635e42016-08-15 10:42:43 +03001987 PGLUE_B_REG_WAS_ERROR_PF_31_0_CLR, 1 << p_hwfn->abs_pf_id);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001988
1989 /* enable internal target-read */
1990 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
1991 PGLUE_B_REG_INTERNAL_PFID_ENABLE_TARGET_READ, 1);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001992}
1993
1994static void get_function_id(struct qed_hwfn *p_hwfn)
1995{
1996 /* ME Register */
Yuval Mintz1a635e42016-08-15 10:42:43 +03001997 p_hwfn->hw_info.opaque_fid = (u16) REG_RD(p_hwfn,
1998 PXP_PF_ME_OPAQUE_ADDR);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001999
2000 p_hwfn->hw_info.concrete_fid = REG_RD(p_hwfn, PXP_PF_ME_CONCRETE_ADDR);
2001
2002 p_hwfn->abs_pf_id = (p_hwfn->hw_info.concrete_fid >> 16) & 0xf;
2003 p_hwfn->rel_pf_id = GET_FIELD(p_hwfn->hw_info.concrete_fid,
2004 PXP_CONCRETE_FID_PFID);
2005 p_hwfn->port_id = GET_FIELD(p_hwfn->hw_info.concrete_fid,
2006 PXP_CONCRETE_FID_PORT);
Yuval Mintz525ef5c2016-08-15 10:42:45 +03002007
2008 DP_VERBOSE(p_hwfn, NETIF_MSG_PROBE,
2009 "Read ME register: Concrete 0x%08x Opaque 0x%04x\n",
2010 p_hwfn->hw_info.concrete_fid, p_hwfn->hw_info.opaque_fid);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002011}
2012
Yuval Mintz25c089d2015-10-26 11:02:26 +02002013static void qed_hw_set_feat(struct qed_hwfn *p_hwfn)
2014{
2015 u32 *feat_num = p_hwfn->hw_info.feat_num;
Mintz, Yuval5a1f9652016-10-31 07:14:26 +02002016 struct qed_sb_cnt_info sb_cnt_info;
Mintz, Yuval810bb1f2017-03-23 15:50:19 +02002017 u32 non_l2_sbs = 0;
Yuval Mintz25c089d2015-10-26 11:02:26 +02002018
Yuval Mintz0189efb2016-10-13 22:57:02 +03002019 if (IS_ENABLED(CONFIG_QED_RDMA) &&
2020 p_hwfn->hw_info.personality == QED_PCI_ETH_ROCE) {
2021 /* Roce CNQ each requires: 1 status block + 1 CNQ. We divide
2022 * the status blocks equally between L2 / RoCE but with
2023 * consideration as to how many l2 queues / cnqs we have.
2024 */
Ram Amrani51ff1722016-10-01 21:59:57 +03002025 feat_num[QED_RDMA_CNQ] =
Mintz, Yuval810bb1f2017-03-23 15:50:19 +02002026 min_t(u32, RESC_NUM(p_hwfn, QED_SB) / 2,
Ram Amrani51ff1722016-10-01 21:59:57 +03002027 RESC_NUM(p_hwfn, QED_RDMA_CNQ_RAM));
Mintz, Yuval810bb1f2017-03-23 15:50:19 +02002028
2029 non_l2_sbs = feat_num[QED_RDMA_CNQ];
Ram Amrani51ff1722016-10-01 21:59:57 +03002030 }
Yuval Mintz0189efb2016-10-13 22:57:02 +03002031
Mintz, Yuvaldec26532017-03-23 15:50:20 +02002032 if (p_hwfn->hw_info.personality == QED_PCI_ETH_ROCE ||
2033 p_hwfn->hw_info.personality == QED_PCI_ETH) {
2034 /* Start by allocating VF queues, then PF's */
2035 memset(&sb_cnt_info, 0, sizeof(sb_cnt_info));
2036 qed_int_get_num_sbs(p_hwfn, &sb_cnt_info);
2037 feat_num[QED_VF_L2_QUE] = min_t(u32,
2038 RESC_NUM(p_hwfn, QED_L2_QUEUE),
2039 sb_cnt_info.sb_iov_cnt);
2040 feat_num[QED_PF_L2_QUE] = min_t(u32,
2041 RESC_NUM(p_hwfn, QED_SB) -
2042 non_l2_sbs,
2043 RESC_NUM(p_hwfn,
2044 QED_L2_QUEUE) -
2045 FEAT_NUM(p_hwfn,
2046 QED_VF_L2_QUE));
2047 }
Mintz, Yuval5a1f9652016-10-31 07:14:26 +02002048
Mintz, Yuval08737a32017-04-06 15:58:33 +03002049 if (p_hwfn->hw_info.personality == QED_PCI_ISCSI)
2050 feat_num[QED_ISCSI_CQ] = min_t(u32, RESC_NUM(p_hwfn, QED_SB),
2051 RESC_NUM(p_hwfn,
2052 QED_CMDQS_CQS));
Mintz, Yuval5a1f9652016-10-31 07:14:26 +02002053 DP_VERBOSE(p_hwfn,
2054 NETIF_MSG_PROBE,
Mintz, Yuval08737a32017-04-06 15:58:33 +03002055 "#PF_L2_QUEUES=%d VF_L2_QUEUES=%d #ROCE_CNQ=%d ISCSI_CQ=%d #SBS=%d\n",
Mintz, Yuval5a1f9652016-10-31 07:14:26 +02002056 (int)FEAT_NUM(p_hwfn, QED_PF_L2_QUE),
2057 (int)FEAT_NUM(p_hwfn, QED_VF_L2_QUE),
2058 (int)FEAT_NUM(p_hwfn, QED_RDMA_CNQ),
Mintz, Yuval08737a32017-04-06 15:58:33 +03002059 (int)FEAT_NUM(p_hwfn, QED_ISCSI_CQ),
Mintz, Yuval810bb1f2017-03-23 15:50:19 +02002060 RESC_NUM(p_hwfn, QED_SB));
Yuval Mintz25c089d2015-10-26 11:02:26 +02002061}
2062
Tomer Tayar9c8517c2017-03-28 15:12:55 +03002063const char *qed_hw_get_resc_name(enum qed_resources res_id)
Tomer Tayar2edbff82016-10-31 07:14:27 +02002064{
2065 switch (res_id) {
Tomer Tayar2edbff82016-10-31 07:14:27 +02002066 case QED_L2_QUEUE:
2067 return "L2_QUEUE";
2068 case QED_VPORT:
2069 return "VPORT";
2070 case QED_RSS_ENG:
2071 return "RSS_ENG";
2072 case QED_PQ:
2073 return "PQ";
2074 case QED_RL:
2075 return "RL";
2076 case QED_MAC:
2077 return "MAC";
2078 case QED_VLAN:
2079 return "VLAN";
2080 case QED_RDMA_CNQ_RAM:
2081 return "RDMA_CNQ_RAM";
2082 case QED_ILT:
2083 return "ILT";
2084 case QED_LL2_QUEUE:
2085 return "LL2_QUEUE";
2086 case QED_CMDQS_CQS:
2087 return "CMDQS_CQS";
2088 case QED_RDMA_STATS_QUEUE:
2089 return "RDMA_STATS_QUEUE";
Tomer Tayar9c8517c2017-03-28 15:12:55 +03002090 case QED_BDQ:
2091 return "BDQ";
2092 case QED_SB:
2093 return "SB";
Tomer Tayar2edbff82016-10-31 07:14:27 +02002094 default:
2095 return "UNKNOWN_RESOURCE";
2096 }
2097}
2098
Tomer Tayar9c8517c2017-03-28 15:12:55 +03002099static int
2100__qed_hw_set_soft_resc_size(struct qed_hwfn *p_hwfn,
2101 struct qed_ptt *p_ptt,
2102 enum qed_resources res_id,
2103 u32 resc_max_val, u32 *p_mcp_resp)
Tomer Tayar2edbff82016-10-31 07:14:27 +02002104{
Tomer Tayar9c8517c2017-03-28 15:12:55 +03002105 int rc;
2106
2107 rc = qed_mcp_set_resc_max_val(p_hwfn, p_ptt, res_id,
2108 resc_max_val, p_mcp_resp);
2109 if (rc) {
2110 DP_NOTICE(p_hwfn,
2111 "MFW response failure for a max value setting of resource %d [%s]\n",
2112 res_id, qed_hw_get_resc_name(res_id));
2113 return rc;
2114 }
2115
2116 if (*p_mcp_resp != FW_MSG_CODE_RESOURCE_ALLOC_OK)
2117 DP_INFO(p_hwfn,
2118 "Failed to set the max value of resource %d [%s]. mcp_resp = 0x%08x.\n",
2119 res_id, qed_hw_get_resc_name(res_id), *p_mcp_resp);
2120
2121 return 0;
2122}
2123
2124static int
2125qed_hw_set_soft_resc_size(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
2126{
2127 bool b_ah = QED_IS_AH(p_hwfn->cdev);
2128 u32 resc_max_val, mcp_resp;
2129 u8 res_id;
2130 int rc;
2131
2132 for (res_id = 0; res_id < QED_MAX_RESC; res_id++) {
2133 switch (res_id) {
2134 case QED_LL2_QUEUE:
2135 resc_max_val = MAX_NUM_LL2_RX_QUEUES;
2136 break;
2137 case QED_RDMA_CNQ_RAM:
2138 /* No need for a case for QED_CMDQS_CQS since
2139 * CNQ/CMDQS are the same resource.
2140 */
2141 resc_max_val = NUM_OF_CMDQS_CQS;
2142 break;
2143 case QED_RDMA_STATS_QUEUE:
2144 resc_max_val = b_ah ? RDMA_NUM_STATISTIC_COUNTERS_K2
2145 : RDMA_NUM_STATISTIC_COUNTERS_BB;
2146 break;
2147 case QED_BDQ:
2148 resc_max_val = BDQ_NUM_RESOURCES;
2149 break;
2150 default:
2151 continue;
2152 }
2153
2154 rc = __qed_hw_set_soft_resc_size(p_hwfn, p_ptt, res_id,
2155 resc_max_val, &mcp_resp);
2156 if (rc)
2157 return rc;
2158
2159 /* There's no point to continue to the next resource if the
2160 * command is not supported by the MFW.
2161 * We do continue if the command is supported but the resource
2162 * is unknown to the MFW. Such a resource will be later
2163 * configured with the default allocation values.
2164 */
2165 if (mcp_resp == FW_MSG_CODE_UNSUPPORTED)
2166 return -EINVAL;
2167 }
2168
2169 return 0;
2170}
2171
2172static
2173int qed_hw_get_dflt_resc(struct qed_hwfn *p_hwfn,
2174 enum qed_resources res_id,
2175 u32 *p_resc_num, u32 *p_resc_start)
2176{
2177 u8 num_funcs = p_hwfn->num_funcs_on_engine;
2178 bool b_ah = QED_IS_AH(p_hwfn->cdev);
2179 struct qed_sb_cnt_info sb_cnt_info;
2180
2181 switch (res_id) {
2182 case QED_L2_QUEUE:
2183 *p_resc_num = (b_ah ? MAX_NUM_L2_QUEUES_K2 :
2184 MAX_NUM_L2_QUEUES_BB) / num_funcs;
2185 break;
2186 case QED_VPORT:
2187 *p_resc_num = (b_ah ? MAX_NUM_VPORTS_K2 :
2188 MAX_NUM_VPORTS_BB) / num_funcs;
2189 break;
2190 case QED_RSS_ENG:
2191 *p_resc_num = (b_ah ? ETH_RSS_ENGINE_NUM_K2 :
2192 ETH_RSS_ENGINE_NUM_BB) / num_funcs;
2193 break;
2194 case QED_PQ:
2195 *p_resc_num = (b_ah ? MAX_QM_TX_QUEUES_K2 :
2196 MAX_QM_TX_QUEUES_BB) / num_funcs;
2197 *p_resc_num &= ~0x7; /* The granularity of the PQs is 8 */
2198 break;
2199 case QED_RL:
2200 *p_resc_num = MAX_QM_GLOBAL_RLS / num_funcs;
2201 break;
2202 case QED_MAC:
2203 case QED_VLAN:
2204 /* Each VFC resource can accommodate both a MAC and a VLAN */
2205 *p_resc_num = ETH_NUM_MAC_FILTERS / num_funcs;
2206 break;
2207 case QED_ILT:
2208 *p_resc_num = (b_ah ? PXP_NUM_ILT_RECORDS_K2 :
2209 PXP_NUM_ILT_RECORDS_BB) / num_funcs;
2210 break;
2211 case QED_LL2_QUEUE:
2212 *p_resc_num = MAX_NUM_LL2_RX_QUEUES / num_funcs;
2213 break;
2214 case QED_RDMA_CNQ_RAM:
2215 case QED_CMDQS_CQS:
2216 /* CNQ/CMDQS are the same resource */
2217 *p_resc_num = NUM_OF_CMDQS_CQS / num_funcs;
2218 break;
2219 case QED_RDMA_STATS_QUEUE:
2220 *p_resc_num = (b_ah ? RDMA_NUM_STATISTIC_COUNTERS_K2 :
2221 RDMA_NUM_STATISTIC_COUNTERS_BB) / num_funcs;
2222 break;
2223 case QED_BDQ:
2224 if (p_hwfn->hw_info.personality != QED_PCI_ISCSI &&
2225 p_hwfn->hw_info.personality != QED_PCI_FCOE)
2226 *p_resc_num = 0;
2227 else
2228 *p_resc_num = 1;
2229 break;
2230 case QED_SB:
2231 memset(&sb_cnt_info, 0, sizeof(sb_cnt_info));
2232 qed_int_get_num_sbs(p_hwfn, &sb_cnt_info);
2233 *p_resc_num = sb_cnt_info.sb_cnt;
2234 break;
2235 default:
2236 return -EINVAL;
2237 }
2238
2239 switch (res_id) {
2240 case QED_BDQ:
2241 if (!*p_resc_num)
2242 *p_resc_start = 0;
2243 else if (p_hwfn->cdev->num_ports_in_engines == 4)
2244 *p_resc_start = p_hwfn->port_id;
2245 else if (p_hwfn->hw_info.personality == QED_PCI_ISCSI)
2246 *p_resc_start = p_hwfn->port_id;
2247 else if (p_hwfn->hw_info.personality == QED_PCI_FCOE)
2248 *p_resc_start = p_hwfn->port_id + 2;
2249 break;
2250 default:
2251 *p_resc_start = *p_resc_num * p_hwfn->enabled_func_idx;
2252 break;
2253 }
2254
2255 return 0;
2256}
2257
2258static int __qed_hw_set_resc_info(struct qed_hwfn *p_hwfn,
2259 enum qed_resources res_id)
2260{
2261 u32 dflt_resc_num = 0, dflt_resc_start = 0;
2262 u32 mcp_resp, *p_resc_num, *p_resc_start;
Tomer Tayar2edbff82016-10-31 07:14:27 +02002263 int rc;
2264
2265 p_resc_num = &RESC_NUM(p_hwfn, res_id);
2266 p_resc_start = &RESC_START(p_hwfn, res_id);
2267
Tomer Tayar9c8517c2017-03-28 15:12:55 +03002268 rc = qed_hw_get_dflt_resc(p_hwfn, res_id, &dflt_resc_num,
2269 &dflt_resc_start);
2270 if (rc) {
Tomer Tayar2edbff82016-10-31 07:14:27 +02002271 DP_ERR(p_hwfn,
2272 "Failed to get default amount for resource %d [%s]\n",
2273 res_id, qed_hw_get_resc_name(res_id));
Tomer Tayar9c8517c2017-03-28 15:12:55 +03002274 return rc;
Tomer Tayar2edbff82016-10-31 07:14:27 +02002275 }
2276
Tomer Tayar9c8517c2017-03-28 15:12:55 +03002277 rc = qed_mcp_get_resc_info(p_hwfn, p_hwfn->p_main_ptt, res_id,
2278 &mcp_resp, p_resc_num, p_resc_start);
Tomer Tayar2edbff82016-10-31 07:14:27 +02002279 if (rc) {
2280 DP_NOTICE(p_hwfn,
2281 "MFW response failure for an allocation request for resource %d [%s]\n",
2282 res_id, qed_hw_get_resc_name(res_id));
2283 return rc;
2284 }
2285
2286 /* Default driver values are applied in the following cases:
2287 * - The resource allocation MB command is not supported by the MFW
2288 * - There is an internal error in the MFW while processing the request
2289 * - The resource ID is unknown to the MFW
2290 */
Tomer Tayar9c8517c2017-03-28 15:12:55 +03002291 if (mcp_resp != FW_MSG_CODE_RESOURCE_ALLOC_OK) {
2292 DP_INFO(p_hwfn,
2293 "Failed to receive allocation info for resource %d [%s]. mcp_resp = 0x%x. Applying default values [%d,%d].\n",
2294 res_id,
2295 qed_hw_get_resc_name(res_id),
2296 mcp_resp, dflt_resc_num, dflt_resc_start);
Tomer Tayar2edbff82016-10-31 07:14:27 +02002297 *p_resc_num = dflt_resc_num;
2298 *p_resc_start = dflt_resc_start;
2299 goto out;
2300 }
2301
2302 /* Special handling for status blocks; Would be revised in future */
2303 if (res_id == QED_SB) {
Tomer Tayar9c8517c2017-03-28 15:12:55 +03002304 *p_resc_num -= 1;
2305 *p_resc_start -= p_hwfn->enabled_func_idx;
Tomer Tayar2edbff82016-10-31 07:14:27 +02002306 }
Tomer Tayar2edbff82016-10-31 07:14:27 +02002307out:
2308 /* PQs have to divide by 8 [that's the HW granularity].
2309 * Reduce number so it would fit.
2310 */
2311 if ((res_id == QED_PQ) && ((*p_resc_num % 8) || (*p_resc_start % 8))) {
2312 DP_INFO(p_hwfn,
2313 "PQs need to align by 8; Number %08x --> %08x, Start %08x --> %08x\n",
2314 *p_resc_num,
2315 (*p_resc_num) & ~0x7,
2316 *p_resc_start, (*p_resc_start) & ~0x7);
2317 *p_resc_num &= ~0x7;
2318 *p_resc_start &= ~0x7;
2319 }
2320
2321 return 0;
2322}
2323
Tomer Tayar9c8517c2017-03-28 15:12:55 +03002324static int qed_hw_set_resc_info(struct qed_hwfn *p_hwfn)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002325{
Tomer Tayar9c8517c2017-03-28 15:12:55 +03002326 int rc;
2327 u8 res_id;
2328
2329 for (res_id = 0; res_id < QED_MAX_RESC; res_id++) {
2330 rc = __qed_hw_set_resc_info(p_hwfn, res_id);
2331 if (rc)
2332 return rc;
2333 }
2334
2335 return 0;
2336}
2337
Tomer Tayar9c8517c2017-03-28 15:12:55 +03002338static int qed_hw_get_resc(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
2339{
2340 struct qed_resc_unlock_params resc_unlock_params;
2341 struct qed_resc_lock_params resc_lock_params;
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02002342 bool b_ah = QED_IS_AH(p_hwfn->cdev);
Tomer Tayar2edbff82016-10-31 07:14:27 +02002343 u8 res_id;
2344 int rc;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002345
Tomer Tayar9c8517c2017-03-28 15:12:55 +03002346 /* Setting the max values of the soft resources and the following
2347 * resources allocation queries should be atomic. Since several PFs can
2348 * run in parallel - a resource lock is needed.
2349 * If either the resource lock or resource set value commands are not
2350 * supported - skip the the max values setting, release the lock if
2351 * needed, and proceed to the queries. Other failures, including a
2352 * failure to acquire the lock, will cause this function to fail.
2353 */
sudarsana.kalluru@cavium.comf470f222017-04-26 09:00:49 -07002354 qed_mcp_resc_lock_default_init(&resc_lock_params, &resc_unlock_params,
2355 QED_RESC_LOCK_RESC_ALLOC, false);
Tomer Tayar9c8517c2017-03-28 15:12:55 +03002356
2357 rc = qed_mcp_resc_lock(p_hwfn, p_ptt, &resc_lock_params);
2358 if (rc && rc != -EINVAL) {
2359 return rc;
2360 } else if (rc == -EINVAL) {
2361 DP_INFO(p_hwfn,
2362 "Skip the max values setting of the soft resources since the resource lock is not supported by the MFW\n");
2363 } else if (!rc && !resc_lock_params.b_granted) {
2364 DP_NOTICE(p_hwfn,
2365 "Failed to acquire the resource lock for the resource allocation commands\n");
2366 return -EBUSY;
2367 } else {
2368 rc = qed_hw_set_soft_resc_size(p_hwfn, p_ptt);
2369 if (rc && rc != -EINVAL) {
2370 DP_NOTICE(p_hwfn,
2371 "Failed to set the max values of the soft resources\n");
2372 goto unlock_and_exit;
2373 } else if (rc == -EINVAL) {
2374 DP_INFO(p_hwfn,
2375 "Skip the max values setting of the soft resources since it is not supported by the MFW\n");
2376 rc = qed_mcp_resc_unlock(p_hwfn, p_ptt,
2377 &resc_unlock_params);
2378 if (rc)
2379 DP_INFO(p_hwfn,
2380 "Failed to release the resource lock for the resource allocation commands\n");
2381 }
2382 }
2383
2384 rc = qed_hw_set_resc_info(p_hwfn);
2385 if (rc)
2386 goto unlock_and_exit;
2387
2388 if (resc_lock_params.b_granted && !resc_unlock_params.b_released) {
2389 rc = qed_mcp_resc_unlock(p_hwfn, p_ptt, &resc_unlock_params);
Tomer Tayar2edbff82016-10-31 07:14:27 +02002390 if (rc)
Tomer Tayar9c8517c2017-03-28 15:12:55 +03002391 DP_INFO(p_hwfn,
2392 "Failed to release the resource lock for the resource allocation commands\n");
Tomer Tayar2edbff82016-10-31 07:14:27 +02002393 }
Yuval Mintzdbb799c2016-06-03 14:35:35 +03002394
2395 /* Sanity for ILT */
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02002396 if ((b_ah && (RESC_END(p_hwfn, QED_ILT) > PXP_NUM_ILT_RECORDS_K2)) ||
2397 (!b_ah && (RESC_END(p_hwfn, QED_ILT) > PXP_NUM_ILT_RECORDS_BB))) {
Yuval Mintzdbb799c2016-06-03 14:35:35 +03002398 DP_NOTICE(p_hwfn, "Can't assign ILT pages [%08x,...,%08x]\n",
2399 RESC_START(p_hwfn, QED_ILT),
2400 RESC_END(p_hwfn, QED_ILT) - 1);
2401 return -EINVAL;
2402 }
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002403
Yuval Mintz25c089d2015-10-26 11:02:26 +02002404 qed_hw_set_feat(p_hwfn);
2405
Tomer Tayar2edbff82016-10-31 07:14:27 +02002406 for (res_id = 0; res_id < QED_MAX_RESC; res_id++)
2407 DP_VERBOSE(p_hwfn, NETIF_MSG_PROBE, "%s = %d start = %d\n",
2408 qed_hw_get_resc_name(res_id),
2409 RESC_NUM(p_hwfn, res_id),
2410 RESC_START(p_hwfn, res_id));
Yuval Mintzdbb799c2016-06-03 14:35:35 +03002411
2412 return 0;
Tomer Tayar9c8517c2017-03-28 15:12:55 +03002413
2414unlock_and_exit:
2415 if (resc_lock_params.b_granted && !resc_unlock_params.b_released)
2416 qed_mcp_resc_unlock(p_hwfn, p_ptt, &resc_unlock_params);
2417 return rc;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002418}
2419
Yuval Mintz1a635e42016-08-15 10:42:43 +03002420static int qed_hw_get_nvm_info(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002421{
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05002422 u32 port_cfg_addr, link_temp, nvm_cfg_addr, device_capabilities;
Arun Easi1e128c82017-02-15 06:28:22 -08002423 u32 nvm_cfg1_offset, mf_mode, addr, generic_cont0, core_cfg;
Yuval Mintzcc875c22015-10-26 11:02:31 +02002424 struct qed_mcp_link_params *link;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002425
2426 /* Read global nvm_cfg address */
2427 nvm_cfg_addr = qed_rd(p_hwfn, p_ptt, MISC_REG_GEN_PURP_CR0);
2428
2429 /* Verify MCP has initialized it */
2430 if (!nvm_cfg_addr) {
2431 DP_NOTICE(p_hwfn, "Shared memory not initialized\n");
2432 return -EINVAL;
2433 }
2434
2435 /* Read nvm_cfg1 (Notice this is just offset, and not offsize (TBD) */
2436 nvm_cfg1_offset = qed_rd(p_hwfn, p_ptt, nvm_cfg_addr + 4);
2437
Yuval Mintzcc875c22015-10-26 11:02:31 +02002438 addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
2439 offsetof(struct nvm_cfg1, glob) +
2440 offsetof(struct nvm_cfg1_glob, core_cfg);
2441
2442 core_cfg = qed_rd(p_hwfn, p_ptt, addr);
2443
2444 switch ((core_cfg & NVM_CFG1_GLOB_NETWORK_PORT_MODE_MASK) >>
2445 NVM_CFG1_GLOB_NETWORK_PORT_MODE_OFFSET) {
Yuval Mintz351a4ded2016-06-02 10:23:29 +03002446 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_2X40G:
Yuval Mintzcc875c22015-10-26 11:02:31 +02002447 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_2X40G;
2448 break;
Yuval Mintz351a4ded2016-06-02 10:23:29 +03002449 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X50G:
Yuval Mintzcc875c22015-10-26 11:02:31 +02002450 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_2X50G;
2451 break;
Yuval Mintz351a4ded2016-06-02 10:23:29 +03002452 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_1X100G:
Yuval Mintzcc875c22015-10-26 11:02:31 +02002453 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_1X100G;
2454 break;
Yuval Mintz351a4ded2016-06-02 10:23:29 +03002455 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_4X10G_F:
Yuval Mintzcc875c22015-10-26 11:02:31 +02002456 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_4X10G_F;
2457 break;
Yuval Mintz351a4ded2016-06-02 10:23:29 +03002458 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_4X10G_E:
Yuval Mintzcc875c22015-10-26 11:02:31 +02002459 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_4X10G_E;
2460 break;
Yuval Mintz351a4ded2016-06-02 10:23:29 +03002461 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_4X20G:
Yuval Mintzcc875c22015-10-26 11:02:31 +02002462 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_4X20G;
2463 break;
Yuval Mintz351a4ded2016-06-02 10:23:29 +03002464 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_1X40G:
Yuval Mintzcc875c22015-10-26 11:02:31 +02002465 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_1X40G;
2466 break;
Yuval Mintz351a4ded2016-06-02 10:23:29 +03002467 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X25G:
Yuval Mintzcc875c22015-10-26 11:02:31 +02002468 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_2X25G;
2469 break;
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02002470 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X10G:
2471 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_2X10G;
2472 break;
Yuval Mintz351a4ded2016-06-02 10:23:29 +03002473 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_1X25G:
Yuval Mintzcc875c22015-10-26 11:02:31 +02002474 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_1X25G;
2475 break;
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02002476 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_4X25G:
2477 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_4X25G;
2478 break;
Yuval Mintzcc875c22015-10-26 11:02:31 +02002479 default:
Yuval Mintz1a635e42016-08-15 10:42:43 +03002480 DP_NOTICE(p_hwfn, "Unknown port mode in 0x%08x\n", core_cfg);
Yuval Mintzcc875c22015-10-26 11:02:31 +02002481 break;
2482 }
2483
Yuval Mintzcc875c22015-10-26 11:02:31 +02002484 /* Read default link configuration */
2485 link = &p_hwfn->mcp_info->link_input;
2486 port_cfg_addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
2487 offsetof(struct nvm_cfg1, port[MFW_PORT(p_hwfn)]);
2488 link_temp = qed_rd(p_hwfn, p_ptt,
2489 port_cfg_addr +
2490 offsetof(struct nvm_cfg1_port, speed_cap_mask));
Yuval Mintz83aeb932016-08-15 10:42:44 +03002491 link_temp &= NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_MASK;
2492 link->speed.advertised_speeds = link_temp;
Yuval Mintzcc875c22015-10-26 11:02:31 +02002493
Yuval Mintz83aeb932016-08-15 10:42:44 +03002494 link_temp = link->speed.advertised_speeds;
2495 p_hwfn->mcp_info->link_capabilities.speed_capabilities = link_temp;
Yuval Mintzcc875c22015-10-26 11:02:31 +02002496
2497 link_temp = qed_rd(p_hwfn, p_ptt,
2498 port_cfg_addr +
2499 offsetof(struct nvm_cfg1_port, link_settings));
2500 switch ((link_temp & NVM_CFG1_PORT_DRV_LINK_SPEED_MASK) >>
2501 NVM_CFG1_PORT_DRV_LINK_SPEED_OFFSET) {
2502 case NVM_CFG1_PORT_DRV_LINK_SPEED_AUTONEG:
2503 link->speed.autoneg = true;
2504 break;
2505 case NVM_CFG1_PORT_DRV_LINK_SPEED_1G:
2506 link->speed.forced_speed = 1000;
2507 break;
2508 case NVM_CFG1_PORT_DRV_LINK_SPEED_10G:
2509 link->speed.forced_speed = 10000;
2510 break;
2511 case NVM_CFG1_PORT_DRV_LINK_SPEED_25G:
2512 link->speed.forced_speed = 25000;
2513 break;
2514 case NVM_CFG1_PORT_DRV_LINK_SPEED_40G:
2515 link->speed.forced_speed = 40000;
2516 break;
2517 case NVM_CFG1_PORT_DRV_LINK_SPEED_50G:
2518 link->speed.forced_speed = 50000;
2519 break;
Yuval Mintz351a4ded2016-06-02 10:23:29 +03002520 case NVM_CFG1_PORT_DRV_LINK_SPEED_BB_100G:
Yuval Mintzcc875c22015-10-26 11:02:31 +02002521 link->speed.forced_speed = 100000;
2522 break;
2523 default:
Yuval Mintz1a635e42016-08-15 10:42:43 +03002524 DP_NOTICE(p_hwfn, "Unknown Speed in 0x%08x\n", link_temp);
Yuval Mintzcc875c22015-10-26 11:02:31 +02002525 }
2526
sudarsana.kalluru@cavium.com34f91992017-05-04 08:15:04 -07002527 p_hwfn->mcp_info->link_capabilities.default_speed_autoneg =
2528 link->speed.autoneg;
2529
Yuval Mintzcc875c22015-10-26 11:02:31 +02002530 link_temp &= NVM_CFG1_PORT_DRV_FLOW_CONTROL_MASK;
2531 link_temp >>= NVM_CFG1_PORT_DRV_FLOW_CONTROL_OFFSET;
2532 link->pause.autoneg = !!(link_temp &
2533 NVM_CFG1_PORT_DRV_FLOW_CONTROL_AUTONEG);
2534 link->pause.forced_rx = !!(link_temp &
2535 NVM_CFG1_PORT_DRV_FLOW_CONTROL_RX);
2536 link->pause.forced_tx = !!(link_temp &
2537 NVM_CFG1_PORT_DRV_FLOW_CONTROL_TX);
2538 link->loopback_mode = 0;
2539
2540 DP_VERBOSE(p_hwfn, NETIF_MSG_LINK,
2541 "Read default link: Speed 0x%08x, Adv. Speed 0x%08x, AN: 0x%02x, PAUSE AN: 0x%02x\n",
2542 link->speed.forced_speed, link->speed.advertised_speeds,
2543 link->speed.autoneg, link->pause.autoneg);
2544
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002545 /* Read Multi-function information from shmem */
2546 addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
2547 offsetof(struct nvm_cfg1, glob) +
2548 offsetof(struct nvm_cfg1_glob, generic_cont0);
2549
2550 generic_cont0 = qed_rd(p_hwfn, p_ptt, addr);
2551
2552 mf_mode = (generic_cont0 & NVM_CFG1_GLOB_MF_MODE_MASK) >>
2553 NVM_CFG1_GLOB_MF_MODE_OFFSET;
2554
2555 switch (mf_mode) {
2556 case NVM_CFG1_GLOB_MF_MODE_MF_ALLOWED:
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05002557 p_hwfn->cdev->mf_mode = QED_MF_OVLAN;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002558 break;
2559 case NVM_CFG1_GLOB_MF_MODE_NPAR1_0:
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05002560 p_hwfn->cdev->mf_mode = QED_MF_NPAR;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002561 break;
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05002562 case NVM_CFG1_GLOB_MF_MODE_DEFAULT:
2563 p_hwfn->cdev->mf_mode = QED_MF_DEFAULT;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002564 break;
2565 }
2566 DP_INFO(p_hwfn, "Multi function mode is %08x\n",
2567 p_hwfn->cdev->mf_mode);
2568
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05002569 /* Read Multi-function information from shmem */
2570 addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
2571 offsetof(struct nvm_cfg1, glob) +
2572 offsetof(struct nvm_cfg1_glob, device_capabilities);
2573
2574 device_capabilities = qed_rd(p_hwfn, p_ptt, addr);
2575 if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ETHERNET)
2576 __set_bit(QED_DEV_CAP_ETH,
2577 &p_hwfn->hw_info.device_capabilities);
Arun Easi1e128c82017-02-15 06:28:22 -08002578 if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_FCOE)
2579 __set_bit(QED_DEV_CAP_FCOE,
2580 &p_hwfn->hw_info.device_capabilities);
Yuval Mintzc5ac9312016-06-03 14:35:34 +03002581 if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ISCSI)
2582 __set_bit(QED_DEV_CAP_ISCSI,
2583 &p_hwfn->hw_info.device_capabilities);
2584 if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ROCE)
2585 __set_bit(QED_DEV_CAP_ROCE,
2586 &p_hwfn->hw_info.device_capabilities);
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05002587
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002588 return qed_mcp_fill_shmem_func_info(p_hwfn, p_ptt);
2589}
2590
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03002591static void qed_get_num_funcs(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
2592{
Yuval Mintzdbb799c2016-06-03 14:35:35 +03002593 u8 num_funcs, enabled_func_idx = p_hwfn->rel_pf_id;
2594 u32 reg_function_hide, tmp, eng_mask, low_pfs_mask;
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02002595 struct qed_dev *cdev = p_hwfn->cdev;
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03002596
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02002597 num_funcs = QED_IS_AH(cdev) ? MAX_NUM_PFS_K2 : MAX_NUM_PFS_BB;
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03002598
2599 /* Bit 0 of MISCS_REG_FUNCTION_HIDE indicates whether the bypass values
2600 * in the other bits are selected.
2601 * Bits 1-15 are for functions 1-15, respectively, and their value is
2602 * '0' only for enabled functions (function 0 always exists and
2603 * enabled).
2604 * In case of CMT, only the "even" functions are enabled, and thus the
2605 * number of functions for both hwfns is learnt from the same bits.
2606 */
2607 reg_function_hide = qed_rd(p_hwfn, p_ptt, MISCS_REG_FUNCTION_HIDE);
2608
2609 if (reg_function_hide & 0x1) {
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02002610 if (QED_IS_BB(cdev)) {
2611 if (QED_PATH_ID(p_hwfn) && cdev->num_hwfns == 1) {
2612 num_funcs = 0;
2613 eng_mask = 0xaaaa;
2614 } else {
2615 num_funcs = 1;
2616 eng_mask = 0x5554;
2617 }
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03002618 } else {
2619 num_funcs = 1;
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02002620 eng_mask = 0xfffe;
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03002621 }
2622
2623 /* Get the number of the enabled functions on the engine */
2624 tmp = (reg_function_hide ^ 0xffffffff) & eng_mask;
2625 while (tmp) {
2626 if (tmp & 0x1)
2627 num_funcs++;
2628 tmp >>= 0x1;
2629 }
Yuval Mintzdbb799c2016-06-03 14:35:35 +03002630
2631 /* Get the PF index within the enabled functions */
2632 low_pfs_mask = (0x1 << p_hwfn->abs_pf_id) - 1;
2633 tmp = reg_function_hide & eng_mask & low_pfs_mask;
2634 while (tmp) {
2635 if (tmp & 0x1)
2636 enabled_func_idx--;
2637 tmp >>= 0x1;
2638 }
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03002639 }
2640
2641 p_hwfn->num_funcs_on_engine = num_funcs;
Yuval Mintzdbb799c2016-06-03 14:35:35 +03002642 p_hwfn->enabled_func_idx = enabled_func_idx;
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03002643
2644 DP_VERBOSE(p_hwfn,
2645 NETIF_MSG_PROBE,
Yuval Mintz525ef5c2016-08-15 10:42:45 +03002646 "PF [rel_id %d, abs_id %d] occupies index %d within the %d enabled functions on the engine\n",
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03002647 p_hwfn->rel_pf_id,
2648 p_hwfn->abs_pf_id,
Yuval Mintz525ef5c2016-08-15 10:42:45 +03002649 p_hwfn->enabled_func_idx, p_hwfn->num_funcs_on_engine);
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03002650}
2651
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02002652static void qed_hw_info_port_num_bb(struct qed_hwfn *p_hwfn,
2653 struct qed_ptt *p_ptt)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002654{
2655 u32 port_mode;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002656
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02002657 port_mode = qed_rd(p_hwfn, p_ptt, CNIG_REG_NW_PORT_MODE_BB_B0);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002658
2659 if (port_mode < 3) {
2660 p_hwfn->cdev->num_ports_in_engines = 1;
2661 } else if (port_mode <= 5) {
2662 p_hwfn->cdev->num_ports_in_engines = 2;
2663 } else {
2664 DP_NOTICE(p_hwfn, "PORT MODE: %d not supported\n",
2665 p_hwfn->cdev->num_ports_in_engines);
2666
2667 /* Default num_ports_in_engines to something */
2668 p_hwfn->cdev->num_ports_in_engines = 1;
2669 }
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02002670}
2671
2672static void qed_hw_info_port_num_ah(struct qed_hwfn *p_hwfn,
2673 struct qed_ptt *p_ptt)
2674{
2675 u32 port;
2676 int i;
2677
2678 p_hwfn->cdev->num_ports_in_engines = 0;
2679
2680 for (i = 0; i < MAX_NUM_PORTS_K2; i++) {
2681 port = qed_rd(p_hwfn, p_ptt,
2682 CNIG_REG_NIG_PORT0_CONF_K2 + (i * 4));
2683 if (port & 1)
2684 p_hwfn->cdev->num_ports_in_engines++;
2685 }
2686
2687 if (!p_hwfn->cdev->num_ports_in_engines) {
2688 DP_NOTICE(p_hwfn, "All NIG ports are inactive\n");
2689
2690 /* Default num_ports_in_engine to something */
2691 p_hwfn->cdev->num_ports_in_engines = 1;
2692 }
2693}
2694
2695static void qed_hw_info_port_num(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
2696{
2697 if (QED_IS_BB(p_hwfn->cdev))
2698 qed_hw_info_port_num_bb(p_hwfn, p_ptt);
2699 else
2700 qed_hw_info_port_num_ah(p_hwfn, p_ptt);
2701}
2702
2703static int
2704qed_get_hw_info(struct qed_hwfn *p_hwfn,
2705 struct qed_ptt *p_ptt,
2706 enum qed_pci_personality personality)
2707{
2708 int rc;
2709
2710 /* Since all information is common, only first hwfns should do this */
2711 if (IS_LEAD_HWFN(p_hwfn)) {
2712 rc = qed_iov_hw_info(p_hwfn);
2713 if (rc)
2714 return rc;
2715 }
2716
2717 qed_hw_info_port_num(p_hwfn, p_ptt);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002718
2719 qed_hw_get_nvm_info(p_hwfn, p_ptt);
2720
2721 rc = qed_int_igu_read_cam(p_hwfn, p_ptt);
2722 if (rc)
2723 return rc;
2724
2725 if (qed_mcp_is_init(p_hwfn))
2726 ether_addr_copy(p_hwfn->hw_info.hw_mac_addr,
2727 p_hwfn->mcp_info->func_info.mac);
2728 else
2729 eth_random_addr(p_hwfn->hw_info.hw_mac_addr);
2730
2731 if (qed_mcp_is_init(p_hwfn)) {
2732 if (p_hwfn->mcp_info->func_info.ovlan != QED_MCP_VLAN_UNSET)
2733 p_hwfn->hw_info.ovlan =
2734 p_hwfn->mcp_info->func_info.ovlan;
2735
2736 qed_mcp_cmd_port_init(p_hwfn, p_ptt);
2737 }
2738
2739 if (qed_mcp_is_init(p_hwfn)) {
2740 enum qed_pci_personality protocol;
2741
2742 protocol = p_hwfn->mcp_info->func_info.protocol;
2743 p_hwfn->hw_info.personality = protocol;
2744 }
2745
Ariel Eliorb5a9ee72017-04-03 12:21:09 +03002746 p_hwfn->hw_info.num_hw_tc = NUM_PHYS_TCS_4PORT_K2;
2747 p_hwfn->hw_info.num_active_tc = 1;
2748
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03002749 qed_get_num_funcs(p_hwfn, p_ptt);
2750
Sudarsana Kalluru0fefbfb2016-10-31 07:14:21 +02002751 if (qed_mcp_is_init(p_hwfn))
2752 p_hwfn->hw_info.mtu = p_hwfn->mcp_info->func_info.mtu;
2753
Tomer Tayar9c8517c2017-03-28 15:12:55 +03002754 return qed_hw_get_resc(p_hwfn, p_ptt);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002755}
2756
Rahul Verma15582962017-04-06 15:58:29 +03002757static int qed_get_dev_info(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002758{
Rahul Verma15582962017-04-06 15:58:29 +03002759 struct qed_dev *cdev = p_hwfn->cdev;
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02002760 u16 device_id_mask;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002761 u32 tmp;
2762
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05002763 /* Read Vendor Id / Device Id */
Yuval Mintz1a635e42016-08-15 10:42:43 +03002764 pci_read_config_word(cdev->pdev, PCI_VENDOR_ID, &cdev->vendor_id);
2765 pci_read_config_word(cdev->pdev, PCI_DEVICE_ID, &cdev->device_id);
2766
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02002767 /* Determine type */
2768 device_id_mask = cdev->device_id & QED_DEV_ID_MASK;
2769 switch (device_id_mask) {
2770 case QED_DEV_ID_MASK_BB:
2771 cdev->type = QED_DEV_TYPE_BB;
2772 break;
2773 case QED_DEV_ID_MASK_AH:
2774 cdev->type = QED_DEV_TYPE_AH;
2775 break;
2776 default:
2777 DP_NOTICE(p_hwfn, "Unknown device id 0x%x\n", cdev->device_id);
2778 return -EBUSY;
2779 }
2780
Rahul Verma15582962017-04-06 15:58:29 +03002781 cdev->chip_num = (u16)qed_rd(p_hwfn, p_ptt, MISCS_REG_CHIP_NUM);
2782 cdev->chip_rev = (u16)qed_rd(p_hwfn, p_ptt, MISCS_REG_CHIP_REV);
2783
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002784 MASK_FIELD(CHIP_REV, cdev->chip_rev);
2785
2786 /* Learn number of HW-functions */
Rahul Verma15582962017-04-06 15:58:29 +03002787 tmp = qed_rd(p_hwfn, p_ptt, MISCS_REG_CMT_ENABLED_FOR_PAIR);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002788
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05002789 if (tmp & (1 << p_hwfn->rel_pf_id)) {
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002790 DP_NOTICE(cdev->hwfns, "device in CMT mode\n");
2791 cdev->num_hwfns = 2;
2792 } else {
2793 cdev->num_hwfns = 1;
2794 }
2795
Rahul Verma15582962017-04-06 15:58:29 +03002796 cdev->chip_bond_id = qed_rd(p_hwfn, p_ptt,
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002797 MISCS_REG_CHIP_TEST_REG) >> 4;
2798 MASK_FIELD(CHIP_BOND_ID, cdev->chip_bond_id);
Rahul Verma15582962017-04-06 15:58:29 +03002799 cdev->chip_metal = (u16)qed_rd(p_hwfn, p_ptt, MISCS_REG_CHIP_METAL);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002800 MASK_FIELD(CHIP_METAL, cdev->chip_metal);
2801
2802 DP_INFO(cdev->hwfns,
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02002803 "Chip details - %s %c%d, Num: %04x Rev: %04x Bond id: %04x Metal: %04x\n",
2804 QED_IS_BB(cdev) ? "BB" : "AH",
2805 'A' + cdev->chip_rev,
2806 (int)cdev->chip_metal,
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002807 cdev->chip_num, cdev->chip_rev,
2808 cdev->chip_bond_id, cdev->chip_metal);
Yuval Mintz12e09c62016-03-02 20:26:01 +02002809
2810 if (QED_IS_BB(cdev) && CHIP_REV_IS_A0(cdev)) {
2811 DP_NOTICE(cdev->hwfns,
2812 "The chip type/rev (BB A0) is not supported!\n");
2813 return -EINVAL;
2814 }
2815
2816 return 0;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002817}
2818
2819static int qed_hw_prepare_single(struct qed_hwfn *p_hwfn,
2820 void __iomem *p_regview,
2821 void __iomem *p_doorbells,
2822 enum qed_pci_personality personality)
2823{
2824 int rc = 0;
2825
2826 /* Split PCI bars evenly between hwfns */
2827 p_hwfn->regview = p_regview;
2828 p_hwfn->doorbells = p_doorbells;
2829
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03002830 if (IS_VF(p_hwfn->cdev))
2831 return qed_vf_hw_prepare(p_hwfn);
2832
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002833 /* Validate that chip access is feasible */
2834 if (REG_RD(p_hwfn, PXP_PF_ME_OPAQUE_ADDR) == 0xffffffff) {
2835 DP_ERR(p_hwfn,
2836 "Reading the ME register returns all Fs; Preventing further chip access\n");
2837 return -EINVAL;
2838 }
2839
2840 get_function_id(p_hwfn);
2841
Yuval Mintz12e09c62016-03-02 20:26:01 +02002842 /* Allocate PTT pool */
2843 rc = qed_ptt_pool_alloc(p_hwfn);
Joe Perches2591c282016-09-04 14:24:03 -07002844 if (rc)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002845 goto err0;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002846
Yuval Mintz12e09c62016-03-02 20:26:01 +02002847 /* Allocate the main PTT */
2848 p_hwfn->p_main_ptt = qed_get_reserved_ptt(p_hwfn, RESERVED_PTT_MAIN);
2849
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002850 /* First hwfn learns basic information, e.g., number of hwfns */
Yuval Mintz12e09c62016-03-02 20:26:01 +02002851 if (!p_hwfn->my_id) {
Rahul Verma15582962017-04-06 15:58:29 +03002852 rc = qed_get_dev_info(p_hwfn, p_hwfn->p_main_ptt);
Yuval Mintz1a635e42016-08-15 10:42:43 +03002853 if (rc)
Yuval Mintz12e09c62016-03-02 20:26:01 +02002854 goto err1;
2855 }
2856
2857 qed_hw_hwfn_prepare(p_hwfn);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002858
2859 /* Initialize MCP structure */
2860 rc = qed_mcp_cmd_init(p_hwfn, p_hwfn->p_main_ptt);
2861 if (rc) {
2862 DP_NOTICE(p_hwfn, "Failed initializing mcp command\n");
2863 goto err1;
2864 }
2865
2866 /* Read the device configuration information from the HW and SHMEM */
2867 rc = qed_get_hw_info(p_hwfn, p_hwfn->p_main_ptt, personality);
2868 if (rc) {
2869 DP_NOTICE(p_hwfn, "Failed to get HW information\n");
2870 goto err2;
2871 }
2872
Mintz, Yuval18a69e32017-03-28 15:12:53 +03002873 /* Sending a mailbox to the MFW should be done after qed_get_hw_info()
2874 * is called as it sets the ports number in an engine.
2875 */
2876 if (IS_LEAD_HWFN(p_hwfn)) {
2877 rc = qed_mcp_initiate_pf_flr(p_hwfn, p_hwfn->p_main_ptt);
2878 if (rc)
2879 DP_NOTICE(p_hwfn, "Failed to initiate PF FLR\n");
2880 }
2881
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002882 /* Allocate the init RT array and initialize the init-ops engine */
2883 rc = qed_init_alloc(p_hwfn);
Joe Perches2591c282016-09-04 14:24:03 -07002884 if (rc)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002885 goto err2;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002886
2887 return rc;
2888err2:
Yuval Mintz32a47e72016-05-11 16:36:12 +03002889 if (IS_LEAD_HWFN(p_hwfn))
2890 qed_iov_free_hw_info(p_hwfn->cdev);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002891 qed_mcp_free(p_hwfn);
2892err1:
2893 qed_hw_hwfn_free(p_hwfn);
2894err0:
2895 return rc;
2896}
2897
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002898int qed_hw_prepare(struct qed_dev *cdev,
2899 int personality)
2900{
Ariel Eliorc78df142015-12-07 06:25:58 -05002901 struct qed_hwfn *p_hwfn = QED_LEADING_HWFN(cdev);
2902 int rc;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002903
2904 /* Store the precompiled init data ptrs */
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03002905 if (IS_PF(cdev))
2906 qed_init_iro_array(cdev);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002907
2908 /* Initialize the first hwfn - will learn number of hwfns */
Ariel Eliorc78df142015-12-07 06:25:58 -05002909 rc = qed_hw_prepare_single(p_hwfn,
2910 cdev->regview,
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002911 cdev->doorbells, personality);
2912 if (rc)
2913 return rc;
2914
Ariel Eliorc78df142015-12-07 06:25:58 -05002915 personality = p_hwfn->hw_info.personality;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002916
2917 /* Initialize the rest of the hwfns */
Ariel Eliorc78df142015-12-07 06:25:58 -05002918 if (cdev->num_hwfns > 1) {
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002919 void __iomem *p_regview, *p_doorbell;
Ariel Eliorc78df142015-12-07 06:25:58 -05002920 u8 __iomem *addr;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002921
Ariel Eliorc78df142015-12-07 06:25:58 -05002922 /* adjust bar offset for second engine */
Rahul Verma15582962017-04-06 15:58:29 +03002923 addr = cdev->regview +
2924 qed_hw_bar_size(p_hwfn, p_hwfn->p_main_ptt,
2925 BAR_ID_0) / 2;
Ariel Eliorc78df142015-12-07 06:25:58 -05002926 p_regview = addr;
2927
Rahul Verma15582962017-04-06 15:58:29 +03002928 addr = cdev->doorbells +
2929 qed_hw_bar_size(p_hwfn, p_hwfn->p_main_ptt,
2930 BAR_ID_1) / 2;
Ariel Eliorc78df142015-12-07 06:25:58 -05002931 p_doorbell = addr;
2932
2933 /* prepare second hw function */
2934 rc = qed_hw_prepare_single(&cdev->hwfns[1], p_regview,
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002935 p_doorbell, personality);
Ariel Eliorc78df142015-12-07 06:25:58 -05002936
2937 /* in case of error, need to free the previously
2938 * initiliazed hwfn 0.
2939 */
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002940 if (rc) {
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03002941 if (IS_PF(cdev)) {
2942 qed_init_free(p_hwfn);
2943 qed_mcp_free(p_hwfn);
2944 qed_hw_hwfn_free(p_hwfn);
2945 }
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002946 }
2947 }
2948
Ariel Eliorc78df142015-12-07 06:25:58 -05002949 return rc;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002950}
2951
2952void qed_hw_remove(struct qed_dev *cdev)
2953{
Sudarsana Kalluru0fefbfb2016-10-31 07:14:21 +02002954 struct qed_hwfn *p_hwfn = QED_LEADING_HWFN(cdev);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002955 int i;
2956
Sudarsana Kalluru0fefbfb2016-10-31 07:14:21 +02002957 if (IS_PF(cdev))
2958 qed_mcp_ov_update_driver_state(p_hwfn, p_hwfn->p_main_ptt,
2959 QED_OV_DRIVER_STATE_NOT_LOADED);
2960
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002961 for_each_hwfn(cdev, i) {
2962 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
2963
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03002964 if (IS_VF(cdev)) {
Yuval Mintz0b55e272016-05-11 16:36:15 +03002965 qed_vf_pf_release(p_hwfn);
Yuval Mintz1408cc1f2016-05-11 16:36:14 +03002966 continue;
2967 }
2968
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002969 qed_init_free(p_hwfn);
2970 qed_hw_hwfn_free(p_hwfn);
2971 qed_mcp_free(p_hwfn);
2972 }
Yuval Mintz32a47e72016-05-11 16:36:12 +03002973
2974 qed_iov_free_hw_info(cdev);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02002975}
2976
Yuval Mintza91eb522016-06-03 14:35:32 +03002977static void qed_chain_free_next_ptr(struct qed_dev *cdev,
2978 struct qed_chain *p_chain)
2979{
2980 void *p_virt = p_chain->p_virt_addr, *p_virt_next = NULL;
2981 dma_addr_t p_phys = p_chain->p_phys_addr, p_phys_next = 0;
2982 struct qed_chain_next *p_next;
2983 u32 size, i;
2984
2985 if (!p_virt)
2986 return;
2987
2988 size = p_chain->elem_size * p_chain->usable_per_page;
2989
2990 for (i = 0; i < p_chain->page_cnt; i++) {
2991 if (!p_virt)
2992 break;
2993
2994 p_next = (struct qed_chain_next *)((u8 *)p_virt + size);
2995 p_virt_next = p_next->next_virt;
2996 p_phys_next = HILO_DMA_REGPAIR(p_next->next_phys);
2997
2998 dma_free_coherent(&cdev->pdev->dev,
2999 QED_CHAIN_PAGE_SIZE, p_virt, p_phys);
3000
3001 p_virt = p_virt_next;
3002 p_phys = p_phys_next;
3003 }
3004}
3005
3006static void qed_chain_free_single(struct qed_dev *cdev,
3007 struct qed_chain *p_chain)
3008{
3009 if (!p_chain->p_virt_addr)
3010 return;
3011
3012 dma_free_coherent(&cdev->pdev->dev,
3013 QED_CHAIN_PAGE_SIZE,
3014 p_chain->p_virt_addr, p_chain->p_phys_addr);
3015}
3016
3017static void qed_chain_free_pbl(struct qed_dev *cdev, struct qed_chain *p_chain)
3018{
3019 void **pp_virt_addr_tbl = p_chain->pbl.pp_virt_addr_tbl;
3020 u32 page_cnt = p_chain->page_cnt, i, pbl_size;
Mintz, Yuval6d937ac2016-11-29 16:47:01 +02003021 u8 *p_pbl_virt = p_chain->pbl_sp.p_virt_table;
Yuval Mintza91eb522016-06-03 14:35:32 +03003022
3023 if (!pp_virt_addr_tbl)
3024 return;
3025
Mintz, Yuval6d937ac2016-11-29 16:47:01 +02003026 if (!p_pbl_virt)
Yuval Mintza91eb522016-06-03 14:35:32 +03003027 goto out;
3028
3029 for (i = 0; i < page_cnt; i++) {
3030 if (!pp_virt_addr_tbl[i])
3031 break;
3032
3033 dma_free_coherent(&cdev->pdev->dev,
3034 QED_CHAIN_PAGE_SIZE,
3035 pp_virt_addr_tbl[i],
3036 *(dma_addr_t *)p_pbl_virt);
3037
3038 p_pbl_virt += QED_CHAIN_PBL_ENTRY_SIZE;
3039 }
3040
3041 pbl_size = page_cnt * QED_CHAIN_PBL_ENTRY_SIZE;
3042 dma_free_coherent(&cdev->pdev->dev,
3043 pbl_size,
Mintz, Yuval6d937ac2016-11-29 16:47:01 +02003044 p_chain->pbl_sp.p_virt_table,
3045 p_chain->pbl_sp.p_phys_table);
Yuval Mintza91eb522016-06-03 14:35:32 +03003046out:
3047 vfree(p_chain->pbl.pp_virt_addr_tbl);
3048}
3049
3050void qed_chain_free(struct qed_dev *cdev, struct qed_chain *p_chain)
3051{
3052 switch (p_chain->mode) {
3053 case QED_CHAIN_MODE_NEXT_PTR:
3054 qed_chain_free_next_ptr(cdev, p_chain);
3055 break;
3056 case QED_CHAIN_MODE_SINGLE:
3057 qed_chain_free_single(cdev, p_chain);
3058 break;
3059 case QED_CHAIN_MODE_PBL:
3060 qed_chain_free_pbl(cdev, p_chain);
3061 break;
3062 }
3063}
3064
3065static int
3066qed_chain_alloc_sanity_check(struct qed_dev *cdev,
3067 enum qed_chain_cnt_type cnt_type,
3068 size_t elem_size, u32 page_cnt)
3069{
3070 u64 chain_size = ELEMS_PER_PAGE(elem_size) * page_cnt;
3071
3072 /* The actual chain size can be larger than the maximal possible value
3073 * after rounding up the requested elements number to pages, and after
3074 * taking into acount the unusuable elements (next-ptr elements).
3075 * The size of a "u16" chain can be (U16_MAX + 1) since the chain
3076 * size/capacity fields are of a u32 type.
3077 */
3078 if ((cnt_type == QED_CHAIN_CNT_TYPE_U16 &&
Tomer Tayar3ef310a2017-03-14 15:25:59 +02003079 chain_size > ((u32)U16_MAX + 1)) ||
3080 (cnt_type == QED_CHAIN_CNT_TYPE_U32 && chain_size > U32_MAX)) {
Yuval Mintza91eb522016-06-03 14:35:32 +03003081 DP_NOTICE(cdev,
3082 "The actual chain size (0x%llx) is larger than the maximal possible value\n",
3083 chain_size);
3084 return -EINVAL;
3085 }
3086
3087 return 0;
3088}
3089
3090static int
3091qed_chain_alloc_next_ptr(struct qed_dev *cdev, struct qed_chain *p_chain)
3092{
3093 void *p_virt = NULL, *p_virt_prev = NULL;
3094 dma_addr_t p_phys = 0;
3095 u32 i;
3096
3097 for (i = 0; i < p_chain->page_cnt; i++) {
3098 p_virt = dma_alloc_coherent(&cdev->pdev->dev,
3099 QED_CHAIN_PAGE_SIZE,
3100 &p_phys, GFP_KERNEL);
Joe Perches2591c282016-09-04 14:24:03 -07003101 if (!p_virt)
Yuval Mintza91eb522016-06-03 14:35:32 +03003102 return -ENOMEM;
Yuval Mintza91eb522016-06-03 14:35:32 +03003103
3104 if (i == 0) {
3105 qed_chain_init_mem(p_chain, p_virt, p_phys);
3106 qed_chain_reset(p_chain);
3107 } else {
3108 qed_chain_init_next_ptr_elem(p_chain, p_virt_prev,
3109 p_virt, p_phys);
3110 }
3111
3112 p_virt_prev = p_virt;
3113 }
3114 /* Last page's next element should point to the beginning of the
3115 * chain.
3116 */
3117 qed_chain_init_next_ptr_elem(p_chain, p_virt_prev,
3118 p_chain->p_virt_addr,
3119 p_chain->p_phys_addr);
3120
3121 return 0;
3122}
3123
3124static int
3125qed_chain_alloc_single(struct qed_dev *cdev, struct qed_chain *p_chain)
3126{
3127 dma_addr_t p_phys = 0;
3128 void *p_virt = NULL;
3129
3130 p_virt = dma_alloc_coherent(&cdev->pdev->dev,
3131 QED_CHAIN_PAGE_SIZE, &p_phys, GFP_KERNEL);
Joe Perches2591c282016-09-04 14:24:03 -07003132 if (!p_virt)
Yuval Mintza91eb522016-06-03 14:35:32 +03003133 return -ENOMEM;
Yuval Mintza91eb522016-06-03 14:35:32 +03003134
3135 qed_chain_init_mem(p_chain, p_virt, p_phys);
3136 qed_chain_reset(p_chain);
3137
3138 return 0;
3139}
3140
3141static int qed_chain_alloc_pbl(struct qed_dev *cdev, struct qed_chain *p_chain)
3142{
3143 u32 page_cnt = p_chain->page_cnt, size, i;
3144 dma_addr_t p_phys = 0, p_pbl_phys = 0;
3145 void **pp_virt_addr_tbl = NULL;
3146 u8 *p_pbl_virt = NULL;
3147 void *p_virt = NULL;
3148
3149 size = page_cnt * sizeof(*pp_virt_addr_tbl);
Joe Perches2591c282016-09-04 14:24:03 -07003150 pp_virt_addr_tbl = vzalloc(size);
3151 if (!pp_virt_addr_tbl)
Yuval Mintza91eb522016-06-03 14:35:32 +03003152 return -ENOMEM;
Yuval Mintza91eb522016-06-03 14:35:32 +03003153
3154 /* The allocation of the PBL table is done with its full size, since it
3155 * is expected to be successive.
3156 * qed_chain_init_pbl_mem() is called even in a case of an allocation
3157 * failure, since pp_virt_addr_tbl was previously allocated, and it
3158 * should be saved to allow its freeing during the error flow.
3159 */
3160 size = page_cnt * QED_CHAIN_PBL_ENTRY_SIZE;
3161 p_pbl_virt = dma_alloc_coherent(&cdev->pdev->dev,
3162 size, &p_pbl_phys, GFP_KERNEL);
3163 qed_chain_init_pbl_mem(p_chain, p_pbl_virt, p_pbl_phys,
3164 pp_virt_addr_tbl);
Joe Perches2591c282016-09-04 14:24:03 -07003165 if (!p_pbl_virt)
Yuval Mintza91eb522016-06-03 14:35:32 +03003166 return -ENOMEM;
Yuval Mintza91eb522016-06-03 14:35:32 +03003167
3168 for (i = 0; i < page_cnt; i++) {
3169 p_virt = dma_alloc_coherent(&cdev->pdev->dev,
3170 QED_CHAIN_PAGE_SIZE,
3171 &p_phys, GFP_KERNEL);
Joe Perches2591c282016-09-04 14:24:03 -07003172 if (!p_virt)
Yuval Mintza91eb522016-06-03 14:35:32 +03003173 return -ENOMEM;
Yuval Mintza91eb522016-06-03 14:35:32 +03003174
3175 if (i == 0) {
3176 qed_chain_init_mem(p_chain, p_virt, p_phys);
3177 qed_chain_reset(p_chain);
3178 }
3179
3180 /* Fill the PBL table with the physical address of the page */
3181 *(dma_addr_t *)p_pbl_virt = p_phys;
3182 /* Keep the virtual address of the page */
3183 p_chain->pbl.pp_virt_addr_tbl[i] = p_virt;
3184
3185 p_pbl_virt += QED_CHAIN_PBL_ENTRY_SIZE;
3186 }
3187
3188 return 0;
3189}
3190
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02003191int qed_chain_alloc(struct qed_dev *cdev,
3192 enum qed_chain_use_mode intended_use,
3193 enum qed_chain_mode mode,
Yuval Mintza91eb522016-06-03 14:35:32 +03003194 enum qed_chain_cnt_type cnt_type,
3195 u32 num_elems, size_t elem_size, struct qed_chain *p_chain)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02003196{
Yuval Mintza91eb522016-06-03 14:35:32 +03003197 u32 page_cnt;
3198 int rc = 0;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02003199
3200 if (mode == QED_CHAIN_MODE_SINGLE)
3201 page_cnt = 1;
3202 else
3203 page_cnt = QED_CHAIN_PAGE_CNT(num_elems, elem_size, mode);
3204
Yuval Mintza91eb522016-06-03 14:35:32 +03003205 rc = qed_chain_alloc_sanity_check(cdev, cnt_type, elem_size, page_cnt);
3206 if (rc) {
3207 DP_NOTICE(cdev,
Joe Perches2591c282016-09-04 14:24:03 -07003208 "Cannot allocate a chain with the given arguments:\n");
3209 DP_NOTICE(cdev,
Yuval Mintza91eb522016-06-03 14:35:32 +03003210 "[use_mode %d, mode %d, cnt_type %d, num_elems %d, elem_size %zu]\n",
3211 intended_use, mode, cnt_type, num_elems, elem_size);
3212 return rc;
3213 }
3214
3215 qed_chain_init_params(p_chain, page_cnt, (u8) elem_size, intended_use,
3216 mode, cnt_type);
3217
3218 switch (mode) {
3219 case QED_CHAIN_MODE_NEXT_PTR:
3220 rc = qed_chain_alloc_next_ptr(cdev, p_chain);
3221 break;
3222 case QED_CHAIN_MODE_SINGLE:
3223 rc = qed_chain_alloc_single(cdev, p_chain);
3224 break;
3225 case QED_CHAIN_MODE_PBL:
3226 rc = qed_chain_alloc_pbl(cdev, p_chain);
3227 break;
3228 }
3229 if (rc)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02003230 goto nomem;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02003231
3232 return 0;
3233
3234nomem:
Yuval Mintza91eb522016-06-03 14:35:32 +03003235 qed_chain_free(cdev, p_chain);
3236 return rc;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02003237}
3238
Yuval Mintza91eb522016-06-03 14:35:32 +03003239int qed_fw_l2_queue(struct qed_hwfn *p_hwfn, u16 src_id, u16 *dst_id)
Manish Chopracee4d262015-10-26 11:02:28 +02003240{
3241 if (src_id >= RESC_NUM(p_hwfn, QED_L2_QUEUE)) {
3242 u16 min, max;
3243
Yuval Mintza91eb522016-06-03 14:35:32 +03003244 min = (u16) RESC_START(p_hwfn, QED_L2_QUEUE);
Manish Chopracee4d262015-10-26 11:02:28 +02003245 max = min + RESC_NUM(p_hwfn, QED_L2_QUEUE);
3246 DP_NOTICE(p_hwfn,
3247 "l2_queue id [%d] is not valid, available indices [%d - %d]\n",
3248 src_id, min, max);
3249
3250 return -EINVAL;
3251 }
3252
3253 *dst_id = RESC_START(p_hwfn, QED_L2_QUEUE) + src_id;
3254
3255 return 0;
3256}
3257
Yuval Mintz1a635e42016-08-15 10:42:43 +03003258int qed_fw_vport(struct qed_hwfn *p_hwfn, u8 src_id, u8 *dst_id)
Manish Chopracee4d262015-10-26 11:02:28 +02003259{
3260 if (src_id >= RESC_NUM(p_hwfn, QED_VPORT)) {
3261 u8 min, max;
3262
3263 min = (u8)RESC_START(p_hwfn, QED_VPORT);
3264 max = min + RESC_NUM(p_hwfn, QED_VPORT);
3265 DP_NOTICE(p_hwfn,
3266 "vport id [%d] is not valid, available indices [%d - %d]\n",
3267 src_id, min, max);
3268
3269 return -EINVAL;
3270 }
3271
3272 *dst_id = RESC_START(p_hwfn, QED_VPORT) + src_id;
3273
3274 return 0;
3275}
3276
Yuval Mintz1a635e42016-08-15 10:42:43 +03003277int qed_fw_rss_eng(struct qed_hwfn *p_hwfn, u8 src_id, u8 *dst_id)
Manish Chopracee4d262015-10-26 11:02:28 +02003278{
3279 if (src_id >= RESC_NUM(p_hwfn, QED_RSS_ENG)) {
3280 u8 min, max;
3281
3282 min = (u8)RESC_START(p_hwfn, QED_RSS_ENG);
3283 max = min + RESC_NUM(p_hwfn, QED_RSS_ENG);
3284 DP_NOTICE(p_hwfn,
3285 "rss_eng id [%d] is not valid, available indices [%d - %d]\n",
3286 src_id, min, max);
3287
3288 return -EINVAL;
3289 }
3290
3291 *dst_id = RESC_START(p_hwfn, QED_RSS_ENG) + src_id;
3292
3293 return 0;
3294}
Manish Choprabcd197c2016-04-26 10:56:08 -04003295
Yuval Mintz0a7fb112016-10-01 21:59:55 +03003296static void qed_llh_mac_to_filter(u32 *p_high, u32 *p_low,
3297 u8 *p_filter)
3298{
3299 *p_high = p_filter[1] | (p_filter[0] << 8);
3300 *p_low = p_filter[5] | (p_filter[4] << 8) |
3301 (p_filter[3] << 16) | (p_filter[2] << 24);
3302}
3303
3304int qed_llh_add_mac_filter(struct qed_hwfn *p_hwfn,
3305 struct qed_ptt *p_ptt, u8 *p_filter)
3306{
3307 u32 high = 0, low = 0, en;
3308 int i;
3309
3310 if (!(IS_MF_SI(p_hwfn) || IS_MF_DEFAULT(p_hwfn)))
3311 return 0;
3312
3313 qed_llh_mac_to_filter(&high, &low, p_filter);
3314
3315 /* Find a free entry and utilize it */
3316 for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
3317 en = qed_rd(p_hwfn, p_ptt,
3318 NIG_REG_LLH_FUNC_FILTER_EN + i * sizeof(u32));
3319 if (en)
3320 continue;
3321 qed_wr(p_hwfn, p_ptt,
3322 NIG_REG_LLH_FUNC_FILTER_VALUE +
3323 2 * i * sizeof(u32), low);
3324 qed_wr(p_hwfn, p_ptt,
3325 NIG_REG_LLH_FUNC_FILTER_VALUE +
3326 (2 * i + 1) * sizeof(u32), high);
3327 qed_wr(p_hwfn, p_ptt,
3328 NIG_REG_LLH_FUNC_FILTER_MODE + i * sizeof(u32), 0);
3329 qed_wr(p_hwfn, p_ptt,
3330 NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE +
3331 i * sizeof(u32), 0);
3332 qed_wr(p_hwfn, p_ptt,
3333 NIG_REG_LLH_FUNC_FILTER_EN + i * sizeof(u32), 1);
3334 break;
3335 }
3336 if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE) {
3337 DP_NOTICE(p_hwfn,
3338 "Failed to find an empty LLH filter to utilize\n");
3339 return -EINVAL;
3340 }
3341
3342 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
3343 "mac: %pM is added at %d\n",
3344 p_filter, i);
3345
3346 return 0;
3347}
3348
3349void qed_llh_remove_mac_filter(struct qed_hwfn *p_hwfn,
3350 struct qed_ptt *p_ptt, u8 *p_filter)
3351{
3352 u32 high = 0, low = 0;
3353 int i;
3354
3355 if (!(IS_MF_SI(p_hwfn) || IS_MF_DEFAULT(p_hwfn)))
3356 return;
3357
3358 qed_llh_mac_to_filter(&high, &low, p_filter);
3359
3360 /* Find the entry and clean it */
3361 for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
3362 if (qed_rd(p_hwfn, p_ptt,
3363 NIG_REG_LLH_FUNC_FILTER_VALUE +
3364 2 * i * sizeof(u32)) != low)
3365 continue;
3366 if (qed_rd(p_hwfn, p_ptt,
3367 NIG_REG_LLH_FUNC_FILTER_VALUE +
3368 (2 * i + 1) * sizeof(u32)) != high)
3369 continue;
3370
3371 qed_wr(p_hwfn, p_ptt,
3372 NIG_REG_LLH_FUNC_FILTER_EN + i * sizeof(u32), 0);
3373 qed_wr(p_hwfn, p_ptt,
3374 NIG_REG_LLH_FUNC_FILTER_VALUE + 2 * i * sizeof(u32), 0);
3375 qed_wr(p_hwfn, p_ptt,
3376 NIG_REG_LLH_FUNC_FILTER_VALUE +
3377 (2 * i + 1) * sizeof(u32), 0);
3378
3379 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
3380 "mac: %pM is removed from %d\n",
3381 p_filter, i);
3382 break;
3383 }
3384 if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE)
3385 DP_NOTICE(p_hwfn, "Tried to remove a non-configured filter\n");
3386}
3387
Arun Easi1e128c82017-02-15 06:28:22 -08003388int
3389qed_llh_add_protocol_filter(struct qed_hwfn *p_hwfn,
3390 struct qed_ptt *p_ptt,
3391 u16 source_port_or_eth_type,
3392 u16 dest_port, enum qed_llh_port_filter_type_t type)
3393{
3394 u32 high = 0, low = 0, en;
3395 int i;
3396
3397 if (!(IS_MF_SI(p_hwfn) || IS_MF_DEFAULT(p_hwfn)))
3398 return 0;
3399
3400 switch (type) {
3401 case QED_LLH_FILTER_ETHERTYPE:
3402 high = source_port_or_eth_type;
3403 break;
3404 case QED_LLH_FILTER_TCP_SRC_PORT:
3405 case QED_LLH_FILTER_UDP_SRC_PORT:
3406 low = source_port_or_eth_type << 16;
3407 break;
3408 case QED_LLH_FILTER_TCP_DEST_PORT:
3409 case QED_LLH_FILTER_UDP_DEST_PORT:
3410 low = dest_port;
3411 break;
3412 case QED_LLH_FILTER_TCP_SRC_AND_DEST_PORT:
3413 case QED_LLH_FILTER_UDP_SRC_AND_DEST_PORT:
3414 low = (source_port_or_eth_type << 16) | dest_port;
3415 break;
3416 default:
3417 DP_NOTICE(p_hwfn,
3418 "Non valid LLH protocol filter type %d\n", type);
3419 return -EINVAL;
3420 }
3421 /* Find a free entry and utilize it */
3422 for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
3423 en = qed_rd(p_hwfn, p_ptt,
3424 NIG_REG_LLH_FUNC_FILTER_EN + i * sizeof(u32));
3425 if (en)
3426 continue;
3427 qed_wr(p_hwfn, p_ptt,
3428 NIG_REG_LLH_FUNC_FILTER_VALUE +
3429 2 * i * sizeof(u32), low);
3430 qed_wr(p_hwfn, p_ptt,
3431 NIG_REG_LLH_FUNC_FILTER_VALUE +
3432 (2 * i + 1) * sizeof(u32), high);
3433 qed_wr(p_hwfn, p_ptt,
3434 NIG_REG_LLH_FUNC_FILTER_MODE + i * sizeof(u32), 1);
3435 qed_wr(p_hwfn, p_ptt,
3436 NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE +
3437 i * sizeof(u32), 1 << type);
3438 qed_wr(p_hwfn, p_ptt,
3439 NIG_REG_LLH_FUNC_FILTER_EN + i * sizeof(u32), 1);
3440 break;
3441 }
3442 if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE) {
3443 DP_NOTICE(p_hwfn,
3444 "Failed to find an empty LLH filter to utilize\n");
3445 return -EINVAL;
3446 }
3447 switch (type) {
3448 case QED_LLH_FILTER_ETHERTYPE:
3449 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
3450 "ETH type %x is added at %d\n",
3451 source_port_or_eth_type, i);
3452 break;
3453 case QED_LLH_FILTER_TCP_SRC_PORT:
3454 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
3455 "TCP src port %x is added at %d\n",
3456 source_port_or_eth_type, i);
3457 break;
3458 case QED_LLH_FILTER_UDP_SRC_PORT:
3459 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
3460 "UDP src port %x is added at %d\n",
3461 source_port_or_eth_type, i);
3462 break;
3463 case QED_LLH_FILTER_TCP_DEST_PORT:
3464 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
3465 "TCP dst port %x is added at %d\n", dest_port, i);
3466 break;
3467 case QED_LLH_FILTER_UDP_DEST_PORT:
3468 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
3469 "UDP dst port %x is added at %d\n", dest_port, i);
3470 break;
3471 case QED_LLH_FILTER_TCP_SRC_AND_DEST_PORT:
3472 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
3473 "TCP src/dst ports %x/%x are added at %d\n",
3474 source_port_or_eth_type, dest_port, i);
3475 break;
3476 case QED_LLH_FILTER_UDP_SRC_AND_DEST_PORT:
3477 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
3478 "UDP src/dst ports %x/%x are added at %d\n",
3479 source_port_or_eth_type, dest_port, i);
3480 break;
3481 }
3482 return 0;
3483}
3484
3485void
3486qed_llh_remove_protocol_filter(struct qed_hwfn *p_hwfn,
3487 struct qed_ptt *p_ptt,
3488 u16 source_port_or_eth_type,
3489 u16 dest_port,
3490 enum qed_llh_port_filter_type_t type)
3491{
3492 u32 high = 0, low = 0;
3493 int i;
3494
3495 if (!(IS_MF_SI(p_hwfn) || IS_MF_DEFAULT(p_hwfn)))
3496 return;
3497
3498 switch (type) {
3499 case QED_LLH_FILTER_ETHERTYPE:
3500 high = source_port_or_eth_type;
3501 break;
3502 case QED_LLH_FILTER_TCP_SRC_PORT:
3503 case QED_LLH_FILTER_UDP_SRC_PORT:
3504 low = source_port_or_eth_type << 16;
3505 break;
3506 case QED_LLH_FILTER_TCP_DEST_PORT:
3507 case QED_LLH_FILTER_UDP_DEST_PORT:
3508 low = dest_port;
3509 break;
3510 case QED_LLH_FILTER_TCP_SRC_AND_DEST_PORT:
3511 case QED_LLH_FILTER_UDP_SRC_AND_DEST_PORT:
3512 low = (source_port_or_eth_type << 16) | dest_port;
3513 break;
3514 default:
3515 DP_NOTICE(p_hwfn,
3516 "Non valid LLH protocol filter type %d\n", type);
3517 return;
3518 }
3519
3520 for (i = 0; i < NIG_REG_LLH_FUNC_FILTER_EN_SIZE; i++) {
3521 if (!qed_rd(p_hwfn, p_ptt,
3522 NIG_REG_LLH_FUNC_FILTER_EN + i * sizeof(u32)))
3523 continue;
3524 if (!qed_rd(p_hwfn, p_ptt,
3525 NIG_REG_LLH_FUNC_FILTER_MODE + i * sizeof(u32)))
3526 continue;
3527 if (!(qed_rd(p_hwfn, p_ptt,
3528 NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE +
3529 i * sizeof(u32)) & BIT(type)))
3530 continue;
3531 if (qed_rd(p_hwfn, p_ptt,
3532 NIG_REG_LLH_FUNC_FILTER_VALUE +
3533 2 * i * sizeof(u32)) != low)
3534 continue;
3535 if (qed_rd(p_hwfn, p_ptt,
3536 NIG_REG_LLH_FUNC_FILTER_VALUE +
3537 (2 * i + 1) * sizeof(u32)) != high)
3538 continue;
3539
3540 qed_wr(p_hwfn, p_ptt,
3541 NIG_REG_LLH_FUNC_FILTER_EN + i * sizeof(u32), 0);
3542 qed_wr(p_hwfn, p_ptt,
3543 NIG_REG_LLH_FUNC_FILTER_MODE + i * sizeof(u32), 0);
3544 qed_wr(p_hwfn, p_ptt,
3545 NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE +
3546 i * sizeof(u32), 0);
3547 qed_wr(p_hwfn, p_ptt,
3548 NIG_REG_LLH_FUNC_FILTER_VALUE + 2 * i * sizeof(u32), 0);
3549 qed_wr(p_hwfn, p_ptt,
3550 NIG_REG_LLH_FUNC_FILTER_VALUE +
3551 (2 * i + 1) * sizeof(u32), 0);
3552 break;
3553 }
3554
3555 if (i >= NIG_REG_LLH_FUNC_FILTER_EN_SIZE)
3556 DP_NOTICE(p_hwfn, "Tried to remove a non-configured filter\n");
3557}
3558
Sudarsana Reddy Kalluru722003a2016-06-21 09:36:21 -04003559static int qed_set_coalesce(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
3560 u32 hw_addr, void *p_eth_qzone,
3561 size_t eth_qzone_size, u8 timeset)
3562{
3563 struct coalescing_timeset *p_coal_timeset;
3564
3565 if (p_hwfn->cdev->int_coalescing_mode != QED_COAL_MODE_ENABLE) {
3566 DP_NOTICE(p_hwfn, "Coalescing configuration not enabled\n");
3567 return -EINVAL;
3568 }
3569
3570 p_coal_timeset = p_eth_qzone;
3571 memset(p_coal_timeset, 0, eth_qzone_size);
3572 SET_FIELD(p_coal_timeset->value, COALESCING_TIMESET_TIMESET, timeset);
3573 SET_FIELD(p_coal_timeset->value, COALESCING_TIMESET_VALID, 1);
3574 qed_memcpy_to(p_hwfn, p_ptt, hw_addr, p_eth_qzone, eth_qzone_size);
3575
3576 return 0;
3577}
3578
3579int qed_set_rxq_coalesce(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
sudarsana.kalluru@cavium.comf870a3c2017-05-04 08:15:03 -07003580 u16 coalesce, u16 qid, u16 sb_id)
Sudarsana Reddy Kalluru722003a2016-06-21 09:36:21 -04003581{
3582 struct ustorm_eth_queue_zone eth_qzone;
3583 u8 timeset, timer_res;
3584 u16 fw_qid = 0;
3585 u32 address;
3586 int rc;
3587
3588 /* Coalesce = (timeset << timer-resolution), timeset is 7bit wide */
3589 if (coalesce <= 0x7F) {
3590 timer_res = 0;
3591 } else if (coalesce <= 0xFF) {
3592 timer_res = 1;
3593 } else if (coalesce <= 0x1FF) {
3594 timer_res = 2;
3595 } else {
3596 DP_ERR(p_hwfn, "Invalid coalesce value - %d\n", coalesce);
3597 return -EINVAL;
3598 }
3599 timeset = (u8)(coalesce >> timer_res);
3600
sudarsana.kalluru@cavium.comf870a3c2017-05-04 08:15:03 -07003601 rc = qed_fw_l2_queue(p_hwfn, qid, &fw_qid);
Sudarsana Reddy Kalluru722003a2016-06-21 09:36:21 -04003602 if (rc)
3603 return rc;
3604
3605 rc = qed_int_set_timer_res(p_hwfn, p_ptt, timer_res, sb_id, false);
3606 if (rc)
3607 goto out;
3608
3609 address = BAR0_MAP_REG_USDM_RAM + USTORM_ETH_QUEUE_ZONE_OFFSET(fw_qid);
3610
3611 rc = qed_set_coalesce(p_hwfn, p_ptt, address, &eth_qzone,
3612 sizeof(struct ustorm_eth_queue_zone), timeset);
3613 if (rc)
3614 goto out;
3615
3616 p_hwfn->cdev->rx_coalesce_usecs = coalesce;
3617out:
3618 return rc;
3619}
3620
3621int qed_set_txq_coalesce(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
sudarsana.kalluru@cavium.comf870a3c2017-05-04 08:15:03 -07003622 u16 coalesce, u16 qid, u16 sb_id)
Sudarsana Reddy Kalluru722003a2016-06-21 09:36:21 -04003623{
3624 struct xstorm_eth_queue_zone eth_qzone;
3625 u8 timeset, timer_res;
3626 u16 fw_qid = 0;
3627 u32 address;
3628 int rc;
3629
3630 /* Coalesce = (timeset << timer-resolution), timeset is 7bit wide */
3631 if (coalesce <= 0x7F) {
3632 timer_res = 0;
3633 } else if (coalesce <= 0xFF) {
3634 timer_res = 1;
3635 } else if (coalesce <= 0x1FF) {
3636 timer_res = 2;
3637 } else {
3638 DP_ERR(p_hwfn, "Invalid coalesce value - %d\n", coalesce);
3639 return -EINVAL;
3640 }
3641 timeset = (u8)(coalesce >> timer_res);
3642
sudarsana.kalluru@cavium.comf870a3c2017-05-04 08:15:03 -07003643 rc = qed_fw_l2_queue(p_hwfn, qid, &fw_qid);
Sudarsana Reddy Kalluru722003a2016-06-21 09:36:21 -04003644 if (rc)
3645 return rc;
3646
3647 rc = qed_int_set_timer_res(p_hwfn, p_ptt, timer_res, sb_id, true);
3648 if (rc)
3649 goto out;
3650
3651 address = BAR0_MAP_REG_XSDM_RAM + XSTORM_ETH_QUEUE_ZONE_OFFSET(fw_qid);
3652
3653 rc = qed_set_coalesce(p_hwfn, p_ptt, address, &eth_qzone,
3654 sizeof(struct xstorm_eth_queue_zone), timeset);
3655 if (rc)
3656 goto out;
3657
3658 p_hwfn->cdev->tx_coalesce_usecs = coalesce;
3659out:
3660 return rc;
3661}
3662
Manish Choprabcd197c2016-04-26 10:56:08 -04003663/* Calculate final WFQ values for all vports and configure them.
3664 * After this configuration each vport will have
3665 * approx min rate = min_pf_rate * (vport_wfq / QED_WFQ_UNIT)
3666 */
3667static void qed_configure_wfq_for_all_vports(struct qed_hwfn *p_hwfn,
3668 struct qed_ptt *p_ptt,
3669 u32 min_pf_rate)
3670{
3671 struct init_qm_vport_params *vport_params;
3672 int i;
3673
3674 vport_params = p_hwfn->qm_info.qm_vport_params;
3675
3676 for (i = 0; i < p_hwfn->qm_info.num_vports; i++) {
3677 u32 wfq_speed = p_hwfn->qm_info.wfq_data[i].min_speed;
3678
3679 vport_params[i].vport_wfq = (wfq_speed * QED_WFQ_UNIT) /
3680 min_pf_rate;
3681 qed_init_vport_wfq(p_hwfn, p_ptt,
3682 vport_params[i].first_tx_pq_id,
3683 vport_params[i].vport_wfq);
3684 }
3685}
3686
3687static void qed_init_wfq_default_param(struct qed_hwfn *p_hwfn,
3688 u32 min_pf_rate)
3689
3690{
3691 int i;
3692
3693 for (i = 0; i < p_hwfn->qm_info.num_vports; i++)
3694 p_hwfn->qm_info.qm_vport_params[i].vport_wfq = 1;
3695}
3696
3697static void qed_disable_wfq_for_all_vports(struct qed_hwfn *p_hwfn,
3698 struct qed_ptt *p_ptt,
3699 u32 min_pf_rate)
3700{
3701 struct init_qm_vport_params *vport_params;
3702 int i;
3703
3704 vport_params = p_hwfn->qm_info.qm_vport_params;
3705
3706 for (i = 0; i < p_hwfn->qm_info.num_vports; i++) {
3707 qed_init_wfq_default_param(p_hwfn, min_pf_rate);
3708 qed_init_vport_wfq(p_hwfn, p_ptt,
3709 vport_params[i].first_tx_pq_id,
3710 vport_params[i].vport_wfq);
3711 }
3712}
3713
3714/* This function performs several validations for WFQ
3715 * configuration and required min rate for a given vport
3716 * 1. req_rate must be greater than one percent of min_pf_rate.
3717 * 2. req_rate should not cause other vports [not configured for WFQ explicitly]
3718 * rates to get less than one percent of min_pf_rate.
3719 * 3. total_req_min_rate [all vports min rate sum] shouldn't exceed min_pf_rate.
3720 */
3721static int qed_init_wfq_param(struct qed_hwfn *p_hwfn,
Yuval Mintz1a635e42016-08-15 10:42:43 +03003722 u16 vport_id, u32 req_rate, u32 min_pf_rate)
Manish Choprabcd197c2016-04-26 10:56:08 -04003723{
3724 u32 total_req_min_rate = 0, total_left_rate = 0, left_rate_per_vp = 0;
3725 int non_requested_count = 0, req_count = 0, i, num_vports;
3726
3727 num_vports = p_hwfn->qm_info.num_vports;
3728
3729 /* Accounting for the vports which are configured for WFQ explicitly */
3730 for (i = 0; i < num_vports; i++) {
3731 u32 tmp_speed;
3732
3733 if ((i != vport_id) &&
3734 p_hwfn->qm_info.wfq_data[i].configured) {
3735 req_count++;
3736 tmp_speed = p_hwfn->qm_info.wfq_data[i].min_speed;
3737 total_req_min_rate += tmp_speed;
3738 }
3739 }
3740
3741 /* Include current vport data as well */
3742 req_count++;
3743 total_req_min_rate += req_rate;
3744 non_requested_count = num_vports - req_count;
3745
3746 if (req_rate < min_pf_rate / QED_WFQ_UNIT) {
3747 DP_VERBOSE(p_hwfn, NETIF_MSG_LINK,
3748 "Vport [%d] - Requested rate[%d Mbps] is less than one percent of configured PF min rate[%d Mbps]\n",
3749 vport_id, req_rate, min_pf_rate);
3750 return -EINVAL;
3751 }
3752
3753 if (num_vports > QED_WFQ_UNIT) {
3754 DP_VERBOSE(p_hwfn, NETIF_MSG_LINK,
3755 "Number of vports is greater than %d\n",
3756 QED_WFQ_UNIT);
3757 return -EINVAL;
3758 }
3759
3760 if (total_req_min_rate > min_pf_rate) {
3761 DP_VERBOSE(p_hwfn, NETIF_MSG_LINK,
3762 "Total requested min rate for all vports[%d Mbps] is greater than configured PF min rate[%d Mbps]\n",
3763 total_req_min_rate, min_pf_rate);
3764 return -EINVAL;
3765 }
3766
3767 total_left_rate = min_pf_rate - total_req_min_rate;
3768
3769 left_rate_per_vp = total_left_rate / non_requested_count;
3770 if (left_rate_per_vp < min_pf_rate / QED_WFQ_UNIT) {
3771 DP_VERBOSE(p_hwfn, NETIF_MSG_LINK,
3772 "Non WFQ configured vports rate [%d Mbps] is less than one percent of configured PF min rate[%d Mbps]\n",
3773 left_rate_per_vp, min_pf_rate);
3774 return -EINVAL;
3775 }
3776
3777 p_hwfn->qm_info.wfq_data[vport_id].min_speed = req_rate;
3778 p_hwfn->qm_info.wfq_data[vport_id].configured = true;
3779
3780 for (i = 0; i < num_vports; i++) {
3781 if (p_hwfn->qm_info.wfq_data[i].configured)
3782 continue;
3783
3784 p_hwfn->qm_info.wfq_data[i].min_speed = left_rate_per_vp;
3785 }
3786
3787 return 0;
3788}
3789
Yuval Mintz733def62016-05-11 16:36:22 +03003790static int __qed_configure_vport_wfq(struct qed_hwfn *p_hwfn,
3791 struct qed_ptt *p_ptt, u16 vp_id, u32 rate)
3792{
3793 struct qed_mcp_link_state *p_link;
3794 int rc = 0;
3795
3796 p_link = &p_hwfn->cdev->hwfns[0].mcp_info->link_output;
3797
3798 if (!p_link->min_pf_rate) {
3799 p_hwfn->qm_info.wfq_data[vp_id].min_speed = rate;
3800 p_hwfn->qm_info.wfq_data[vp_id].configured = true;
3801 return rc;
3802 }
3803
3804 rc = qed_init_wfq_param(p_hwfn, vp_id, rate, p_link->min_pf_rate);
3805
Yuval Mintz1a635e42016-08-15 10:42:43 +03003806 if (!rc)
Yuval Mintz733def62016-05-11 16:36:22 +03003807 qed_configure_wfq_for_all_vports(p_hwfn, p_ptt,
3808 p_link->min_pf_rate);
3809 else
3810 DP_NOTICE(p_hwfn,
3811 "Validation failed while configuring min rate\n");
3812
3813 return rc;
3814}
3815
Manish Choprabcd197c2016-04-26 10:56:08 -04003816static int __qed_configure_vp_wfq_on_link_change(struct qed_hwfn *p_hwfn,
3817 struct qed_ptt *p_ptt,
3818 u32 min_pf_rate)
3819{
3820 bool use_wfq = false;
3821 int rc = 0;
3822 u16 i;
3823
3824 /* Validate all pre configured vports for wfq */
3825 for (i = 0; i < p_hwfn->qm_info.num_vports; i++) {
3826 u32 rate;
3827
3828 if (!p_hwfn->qm_info.wfq_data[i].configured)
3829 continue;
3830
3831 rate = p_hwfn->qm_info.wfq_data[i].min_speed;
3832 use_wfq = true;
3833
3834 rc = qed_init_wfq_param(p_hwfn, i, rate, min_pf_rate);
3835 if (rc) {
3836 DP_NOTICE(p_hwfn,
3837 "WFQ validation failed while configuring min rate\n");
3838 break;
3839 }
3840 }
3841
3842 if (!rc && use_wfq)
3843 qed_configure_wfq_for_all_vports(p_hwfn, p_ptt, min_pf_rate);
3844 else
3845 qed_disable_wfq_for_all_vports(p_hwfn, p_ptt, min_pf_rate);
3846
3847 return rc;
3848}
3849
Yuval Mintz733def62016-05-11 16:36:22 +03003850/* Main API for qed clients to configure vport min rate.
3851 * vp_id - vport id in PF Range[0 - (total_num_vports_per_pf - 1)]
3852 * rate - Speed in Mbps needs to be assigned to a given vport.
3853 */
3854int qed_configure_vport_wfq(struct qed_dev *cdev, u16 vp_id, u32 rate)
3855{
3856 int i, rc = -EINVAL;
3857
3858 /* Currently not supported; Might change in future */
3859 if (cdev->num_hwfns > 1) {
3860 DP_NOTICE(cdev,
3861 "WFQ configuration is not supported for this device\n");
3862 return rc;
3863 }
3864
3865 for_each_hwfn(cdev, i) {
3866 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
3867 struct qed_ptt *p_ptt;
3868
3869 p_ptt = qed_ptt_acquire(p_hwfn);
3870 if (!p_ptt)
3871 return -EBUSY;
3872
3873 rc = __qed_configure_vport_wfq(p_hwfn, p_ptt, vp_id, rate);
3874
Yuval Mintzd572c432016-07-27 14:45:23 +03003875 if (rc) {
Yuval Mintz733def62016-05-11 16:36:22 +03003876 qed_ptt_release(p_hwfn, p_ptt);
3877 return rc;
3878 }
3879
3880 qed_ptt_release(p_hwfn, p_ptt);
3881 }
3882
3883 return rc;
3884}
3885
Manish Choprabcd197c2016-04-26 10:56:08 -04003886/* API to configure WFQ from mcp link change */
Mintz, Yuval6f437d42017-02-27 11:06:33 +02003887void qed_configure_vp_wfq_on_link_change(struct qed_dev *cdev,
3888 struct qed_ptt *p_ptt, u32 min_pf_rate)
Manish Choprabcd197c2016-04-26 10:56:08 -04003889{
3890 int i;
3891
Yuval Mintz3e7cfce2016-05-26 11:01:24 +03003892 if (cdev->num_hwfns > 1) {
3893 DP_VERBOSE(cdev,
3894 NETIF_MSG_LINK,
3895 "WFQ configuration is not supported for this device\n");
3896 return;
3897 }
3898
Manish Choprabcd197c2016-04-26 10:56:08 -04003899 for_each_hwfn(cdev, i) {
3900 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
3901
Mintz, Yuval6f437d42017-02-27 11:06:33 +02003902 __qed_configure_vp_wfq_on_link_change(p_hwfn, p_ptt,
Manish Choprabcd197c2016-04-26 10:56:08 -04003903 min_pf_rate);
3904 }
3905}
Manish Chopra4b01e512016-04-26 10:56:09 -04003906
3907int __qed_configure_pf_max_bandwidth(struct qed_hwfn *p_hwfn,
3908 struct qed_ptt *p_ptt,
3909 struct qed_mcp_link_state *p_link,
3910 u8 max_bw)
3911{
3912 int rc = 0;
3913
3914 p_hwfn->mcp_info->func_info.bandwidth_max = max_bw;
3915
3916 if (!p_link->line_speed && (max_bw != 100))
3917 return rc;
3918
3919 p_link->speed = (p_link->line_speed * max_bw) / 100;
3920 p_hwfn->qm_info.pf_rl = p_link->speed;
3921
3922 /* Since the limiter also affects Tx-switched traffic, we don't want it
3923 * to limit such traffic in case there's no actual limit.
3924 * In that case, set limit to imaginary high boundary.
3925 */
3926 if (max_bw == 100)
3927 p_hwfn->qm_info.pf_rl = 100000;
3928
3929 rc = qed_init_pf_rl(p_hwfn, p_ptt, p_hwfn->rel_pf_id,
3930 p_hwfn->qm_info.pf_rl);
3931
3932 DP_VERBOSE(p_hwfn, NETIF_MSG_LINK,
3933 "Configured MAX bandwidth to be %08x Mb/sec\n",
3934 p_link->speed);
3935
3936 return rc;
3937}
3938
3939/* Main API to configure PF max bandwidth where bw range is [1 - 100] */
3940int qed_configure_pf_max_bandwidth(struct qed_dev *cdev, u8 max_bw)
3941{
3942 int i, rc = -EINVAL;
3943
3944 if (max_bw < 1 || max_bw > 100) {
3945 DP_NOTICE(cdev, "PF max bw valid range is [1-100]\n");
3946 return rc;
3947 }
3948
3949 for_each_hwfn(cdev, i) {
3950 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
3951 struct qed_hwfn *p_lead = QED_LEADING_HWFN(cdev);
3952 struct qed_mcp_link_state *p_link;
3953 struct qed_ptt *p_ptt;
3954
3955 p_link = &p_lead->mcp_info->link_output;
3956
3957 p_ptt = qed_ptt_acquire(p_hwfn);
3958 if (!p_ptt)
3959 return -EBUSY;
3960
3961 rc = __qed_configure_pf_max_bandwidth(p_hwfn, p_ptt,
3962 p_link, max_bw);
3963
3964 qed_ptt_release(p_hwfn, p_ptt);
3965
3966 if (rc)
3967 break;
3968 }
3969
3970 return rc;
3971}
Manish Chopraa64b02d2016-04-26 10:56:10 -04003972
3973int __qed_configure_pf_min_bandwidth(struct qed_hwfn *p_hwfn,
3974 struct qed_ptt *p_ptt,
3975 struct qed_mcp_link_state *p_link,
3976 u8 min_bw)
3977{
3978 int rc = 0;
3979
3980 p_hwfn->mcp_info->func_info.bandwidth_min = min_bw;
3981 p_hwfn->qm_info.pf_wfq = min_bw;
3982
3983 if (!p_link->line_speed)
3984 return rc;
3985
3986 p_link->min_pf_rate = (p_link->line_speed * min_bw) / 100;
3987
3988 rc = qed_init_pf_wfq(p_hwfn, p_ptt, p_hwfn->rel_pf_id, min_bw);
3989
3990 DP_VERBOSE(p_hwfn, NETIF_MSG_LINK,
3991 "Configured MIN bandwidth to be %d Mb/sec\n",
3992 p_link->min_pf_rate);
3993
3994 return rc;
3995}
3996
3997/* Main API to configure PF min bandwidth where bw range is [1-100] */
3998int qed_configure_pf_min_bandwidth(struct qed_dev *cdev, u8 min_bw)
3999{
4000 int i, rc = -EINVAL;
4001
4002 if (min_bw < 1 || min_bw > 100) {
4003 DP_NOTICE(cdev, "PF min bw valid range is [1-100]\n");
4004 return rc;
4005 }
4006
4007 for_each_hwfn(cdev, i) {
4008 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
4009 struct qed_hwfn *p_lead = QED_LEADING_HWFN(cdev);
4010 struct qed_mcp_link_state *p_link;
4011 struct qed_ptt *p_ptt;
4012
4013 p_link = &p_lead->mcp_info->link_output;
4014
4015 p_ptt = qed_ptt_acquire(p_hwfn);
4016 if (!p_ptt)
4017 return -EBUSY;
4018
4019 rc = __qed_configure_pf_min_bandwidth(p_hwfn, p_ptt,
4020 p_link, min_bw);
4021 if (rc) {
4022 qed_ptt_release(p_hwfn, p_ptt);
4023 return rc;
4024 }
4025
4026 if (p_link->min_pf_rate) {
4027 u32 min_rate = p_link->min_pf_rate;
4028
4029 rc = __qed_configure_vp_wfq_on_link_change(p_hwfn,
4030 p_ptt,
4031 min_rate);
4032 }
4033
4034 qed_ptt_release(p_hwfn, p_ptt);
4035 }
4036
4037 return rc;
4038}
Yuval Mintz733def62016-05-11 16:36:22 +03004039
4040void qed_clean_wfq_db(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
4041{
4042 struct qed_mcp_link_state *p_link;
4043
4044 p_link = &p_hwfn->mcp_info->link_output;
4045
4046 if (p_link->min_pf_rate)
4047 qed_disable_wfq_for_all_vports(p_hwfn, p_ptt,
4048 p_link->min_pf_rate);
4049
4050 memset(p_hwfn->qm_info.wfq_data, 0,
4051 sizeof(*p_hwfn->qm_info.wfq_data) * p_hwfn->qm_info.num_vports);
4052}
Mintz, Yuval9c79dda2017-03-14 16:23:54 +02004053
4054int qed_device_num_engines(struct qed_dev *cdev)
4055{
4056 return QED_IS_BB(cdev) ? 2 : 1;
4057}
sudarsana.kalluru@cavium.comdb82f702017-04-26 09:00:50 -07004058
4059static int qed_device_num_ports(struct qed_dev *cdev)
4060{
4061 /* in CMT always only one port */
4062 if (cdev->num_hwfns > 1)
4063 return 1;
4064
4065 return cdev->num_ports_in_engines * qed_device_num_engines(cdev);
4066}
4067
4068int qed_device_get_port_id(struct qed_dev *cdev)
4069{
4070 return (QED_LEADING_HWFN(cdev)->abs_pf_id) % qed_device_num_ports(cdev);
4071}