blob: d9a5175ebd04a7dc46a3dbbfa3ef4aede7ac548a [file] [log] [blame]
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001/* QLogic qed NIC Driver
2 * Copyright (c) 2015 QLogic Corporation
3 *
4 * This software is available under the terms of the GNU General Public License
5 * (GPL) Version 2, available from the file COPYING in the main directory of
6 * this source tree.
7 */
8
9#include <linux/types.h>
10#include <asm/byteorder.h>
11#include <linux/io.h>
12#include <linux/delay.h>
13#include <linux/dma-mapping.h>
14#include <linux/errno.h>
15#include <linux/kernel.h>
16#include <linux/mutex.h>
17#include <linux/pci.h>
18#include <linux/slab.h>
19#include <linux/string.h>
20#include <linux/etherdevice.h>
21#include <linux/qed/qed_chain.h>
22#include <linux/qed/qed_if.h>
23#include "qed.h"
24#include "qed_cxt.h"
25#include "qed_dev_api.h"
26#include "qed_hsi.h"
27#include "qed_hw.h"
28#include "qed_init_ops.h"
29#include "qed_int.h"
30#include "qed_mcp.h"
31#include "qed_reg_addr.h"
32#include "qed_sp.h"
33
34/* API common to all protocols */
35void qed_init_dp(struct qed_dev *cdev,
36 u32 dp_module, u8 dp_level)
37{
38 u32 i;
39
40 cdev->dp_level = dp_level;
41 cdev->dp_module = dp_module;
42 for (i = 0; i < MAX_HWFNS_PER_DEVICE; i++) {
43 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
44
45 p_hwfn->dp_level = dp_level;
46 p_hwfn->dp_module = dp_module;
47 }
48}
49
50void qed_init_struct(struct qed_dev *cdev)
51{
52 u8 i;
53
54 for (i = 0; i < MAX_HWFNS_PER_DEVICE; i++) {
55 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
56
57 p_hwfn->cdev = cdev;
58 p_hwfn->my_id = i;
59 p_hwfn->b_active = false;
60
61 mutex_init(&p_hwfn->dmae_info.mutex);
62 }
63
64 /* hwfn 0 is always active */
65 cdev->hwfns[0].b_active = true;
66
67 /* set the default cache alignment to 128 */
68 cdev->cache_shift = 7;
69}
70
71static void qed_qm_info_free(struct qed_hwfn *p_hwfn)
72{
73 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
74
75 kfree(qm_info->qm_pq_params);
76 qm_info->qm_pq_params = NULL;
77 kfree(qm_info->qm_vport_params);
78 qm_info->qm_vport_params = NULL;
79 kfree(qm_info->qm_port_params);
80 qm_info->qm_port_params = NULL;
81}
82
83void qed_resc_free(struct qed_dev *cdev)
84{
85 int i;
86
87 kfree(cdev->fw_data);
88 cdev->fw_data = NULL;
89
90 kfree(cdev->reset_stats);
91
92 for_each_hwfn(cdev, i) {
93 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
94
Yuval Mintz25c089d2015-10-26 11:02:26 +020095 kfree(p_hwfn->p_tx_cids);
96 p_hwfn->p_tx_cids = NULL;
97 kfree(p_hwfn->p_rx_cids);
98 p_hwfn->p_rx_cids = NULL;
99 }
100
101 for_each_hwfn(cdev, i) {
102 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
103
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200104 qed_cxt_mngr_free(p_hwfn);
105 qed_qm_info_free(p_hwfn);
106 qed_spq_free(p_hwfn);
107 qed_eq_free(p_hwfn, p_hwfn->p_eq);
108 qed_consq_free(p_hwfn, p_hwfn->p_consq);
109 qed_int_free(p_hwfn);
110 qed_dmae_info_free(p_hwfn);
111 }
112}
113
114static int qed_init_qm_info(struct qed_hwfn *p_hwfn)
115{
116 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
117 struct init_qm_port_params *p_qm_port;
118 u8 num_vports, i, vport_id, num_ports;
119 u16 num_pqs, multi_cos_tcs = 1;
120
121 memset(qm_info, 0, sizeof(*qm_info));
122
123 num_pqs = multi_cos_tcs + 1; /* The '1' is for pure-LB */
124 num_vports = (u8)RESC_NUM(p_hwfn, QED_VPORT);
125
126 /* Sanity checking that setup requires legal number of resources */
127 if (num_pqs > RESC_NUM(p_hwfn, QED_PQ)) {
128 DP_ERR(p_hwfn,
129 "Need too many Physical queues - 0x%04x when only %04x are available\n",
130 num_pqs, RESC_NUM(p_hwfn, QED_PQ));
131 return -EINVAL;
132 }
133
134 /* PQs will be arranged as follows: First per-TC PQ then pure-LB quete.
135 */
136 qm_info->qm_pq_params = kzalloc(sizeof(*qm_info->qm_pq_params) *
Yuval Mintz60fffb32016-02-21 11:40:07 +0200137 num_pqs, GFP_KERNEL);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200138 if (!qm_info->qm_pq_params)
139 goto alloc_err;
140
141 qm_info->qm_vport_params = kzalloc(sizeof(*qm_info->qm_vport_params) *
Yuval Mintz60fffb32016-02-21 11:40:07 +0200142 num_vports, GFP_KERNEL);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200143 if (!qm_info->qm_vport_params)
144 goto alloc_err;
145
146 qm_info->qm_port_params = kzalloc(sizeof(*qm_info->qm_port_params) *
Yuval Mintz60fffb32016-02-21 11:40:07 +0200147 MAX_NUM_PORTS, GFP_KERNEL);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200148 if (!qm_info->qm_port_params)
149 goto alloc_err;
150
151 vport_id = (u8)RESC_START(p_hwfn, QED_VPORT);
152
153 /* First init per-TC PQs */
154 for (i = 0; i < multi_cos_tcs; i++) {
155 struct init_qm_pq_params *params = &qm_info->qm_pq_params[i];
156
157 params->vport_id = vport_id;
158 params->tc_id = p_hwfn->hw_info.non_offload_tc;
159 params->wrr_group = 1;
160 }
161
162 /* Then init pure-LB PQ */
163 qm_info->pure_lb_pq = i;
164 qm_info->qm_pq_params[i].vport_id = (u8)RESC_START(p_hwfn, QED_VPORT);
165 qm_info->qm_pq_params[i].tc_id = PURE_LB_TC;
166 qm_info->qm_pq_params[i].wrr_group = 1;
167 i++;
168
169 qm_info->offload_pq = 0;
170 qm_info->num_pqs = num_pqs;
171 qm_info->num_vports = num_vports;
172
173 /* Initialize qm port parameters */
174 num_ports = p_hwfn->cdev->num_ports_in_engines;
175 for (i = 0; i < num_ports; i++) {
176 p_qm_port = &qm_info->qm_port_params[i];
177 p_qm_port->active = 1;
178 p_qm_port->num_active_phys_tcs = 4;
179 p_qm_port->num_pbf_cmd_lines = PBF_MAX_CMD_LINES / num_ports;
180 p_qm_port->num_btb_blocks = BTB_MAX_BLOCKS / num_ports;
181 }
182
183 qm_info->max_phys_tcs_per_port = NUM_OF_PHYS_TCS;
184
185 qm_info->start_pq = (u16)RESC_START(p_hwfn, QED_PQ);
186
187 qm_info->start_vport = (u8)RESC_START(p_hwfn, QED_VPORT);
188
189 qm_info->pf_wfq = 0;
190 qm_info->pf_rl = 0;
191 qm_info->vport_rl_en = 1;
192
193 return 0;
194
195alloc_err:
196 DP_NOTICE(p_hwfn, "Failed to allocate memory for QM params\n");
197 kfree(qm_info->qm_pq_params);
198 kfree(qm_info->qm_vport_params);
199 kfree(qm_info->qm_port_params);
200
201 return -ENOMEM;
202}
203
204int qed_resc_alloc(struct qed_dev *cdev)
205{
206 struct qed_consq *p_consq;
207 struct qed_eq *p_eq;
208 int i, rc = 0;
209
210 cdev->fw_data = kzalloc(sizeof(*cdev->fw_data), GFP_KERNEL);
211 if (!cdev->fw_data)
212 return -ENOMEM;
213
Yuval Mintz25c089d2015-10-26 11:02:26 +0200214 /* Allocate Memory for the Queue->CID mapping */
215 for_each_hwfn(cdev, i) {
216 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
217 int tx_size = sizeof(struct qed_hw_cid_data) *
218 RESC_NUM(p_hwfn, QED_L2_QUEUE);
219 int rx_size = sizeof(struct qed_hw_cid_data) *
220 RESC_NUM(p_hwfn, QED_L2_QUEUE);
221
222 p_hwfn->p_tx_cids = kzalloc(tx_size, GFP_KERNEL);
223 if (!p_hwfn->p_tx_cids) {
224 DP_NOTICE(p_hwfn,
225 "Failed to allocate memory for Tx Cids\n");
Dan Carpenter9b15acb2015-11-05 11:41:28 +0300226 rc = -ENOMEM;
Yuval Mintz25c089d2015-10-26 11:02:26 +0200227 goto alloc_err;
228 }
229
230 p_hwfn->p_rx_cids = kzalloc(rx_size, GFP_KERNEL);
231 if (!p_hwfn->p_rx_cids) {
232 DP_NOTICE(p_hwfn,
233 "Failed to allocate memory for Rx Cids\n");
Dan Carpenter9b15acb2015-11-05 11:41:28 +0300234 rc = -ENOMEM;
Yuval Mintz25c089d2015-10-26 11:02:26 +0200235 goto alloc_err;
236 }
237 }
238
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200239 for_each_hwfn(cdev, i) {
240 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
241
242 /* First allocate the context manager structure */
243 rc = qed_cxt_mngr_alloc(p_hwfn);
244 if (rc)
245 goto alloc_err;
246
247 /* Set the HW cid/tid numbers (in the contest manager)
248 * Must be done prior to any further computations.
249 */
250 rc = qed_cxt_set_pf_params(p_hwfn);
251 if (rc)
252 goto alloc_err;
253
254 /* Prepare and process QM requirements */
255 rc = qed_init_qm_info(p_hwfn);
256 if (rc)
257 goto alloc_err;
258
259 /* Compute the ILT client partition */
260 rc = qed_cxt_cfg_ilt_compute(p_hwfn);
261 if (rc)
262 goto alloc_err;
263
264 /* CID map / ILT shadow table / T2
265 * The talbes sizes are determined by the computations above
266 */
267 rc = qed_cxt_tables_alloc(p_hwfn);
268 if (rc)
269 goto alloc_err;
270
271 /* SPQ, must follow ILT because initializes SPQ context */
272 rc = qed_spq_alloc(p_hwfn);
273 if (rc)
274 goto alloc_err;
275
276 /* SP status block allocation */
277 p_hwfn->p_dpc_ptt = qed_get_reserved_ptt(p_hwfn,
278 RESERVED_PTT_DPC);
279
280 rc = qed_int_alloc(p_hwfn, p_hwfn->p_main_ptt);
281 if (rc)
282 goto alloc_err;
283
284 /* EQ */
285 p_eq = qed_eq_alloc(p_hwfn, 256);
Dan Carpenter9b15acb2015-11-05 11:41:28 +0300286 if (!p_eq) {
287 rc = -ENOMEM;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200288 goto alloc_err;
Dan Carpenter9b15acb2015-11-05 11:41:28 +0300289 }
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200290 p_hwfn->p_eq = p_eq;
291
292 p_consq = qed_consq_alloc(p_hwfn);
Dan Carpenter9b15acb2015-11-05 11:41:28 +0300293 if (!p_consq) {
294 rc = -ENOMEM;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200295 goto alloc_err;
Dan Carpenter9b15acb2015-11-05 11:41:28 +0300296 }
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200297 p_hwfn->p_consq = p_consq;
298
299 /* DMA info initialization */
300 rc = qed_dmae_info_alloc(p_hwfn);
301 if (rc) {
302 DP_NOTICE(p_hwfn,
303 "Failed to allocate memory for dmae_info structure\n");
304 goto alloc_err;
305 }
306 }
307
308 cdev->reset_stats = kzalloc(sizeof(*cdev->reset_stats), GFP_KERNEL);
309 if (!cdev->reset_stats) {
310 DP_NOTICE(cdev, "Failed to allocate reset statistics\n");
Dan Carpenter9b15acb2015-11-05 11:41:28 +0300311 rc = -ENOMEM;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200312 goto alloc_err;
313 }
314
315 return 0;
316
317alloc_err:
318 qed_resc_free(cdev);
319 return rc;
320}
321
322void qed_resc_setup(struct qed_dev *cdev)
323{
324 int i;
325
326 for_each_hwfn(cdev, i) {
327 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
328
329 qed_cxt_mngr_setup(p_hwfn);
330 qed_spq_setup(p_hwfn);
331 qed_eq_setup(p_hwfn, p_hwfn->p_eq);
332 qed_consq_setup(p_hwfn, p_hwfn->p_consq);
333
334 /* Read shadow of current MFW mailbox */
335 qed_mcp_read_mb(p_hwfn, p_hwfn->p_main_ptt);
336 memcpy(p_hwfn->mcp_info->mfw_mb_shadow,
337 p_hwfn->mcp_info->mfw_mb_cur,
338 p_hwfn->mcp_info->mfw_mb_length);
339
340 qed_int_setup(p_hwfn, p_hwfn->p_main_ptt);
341 }
342}
343
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200344#define FINAL_CLEANUP_POLL_CNT (100)
345#define FINAL_CLEANUP_POLL_TIME (10)
346int qed_final_cleanup(struct qed_hwfn *p_hwfn,
347 struct qed_ptt *p_ptt,
348 u16 id)
349{
350 u32 command = 0, addr, count = FINAL_CLEANUP_POLL_CNT;
351 int rc = -EBUSY;
352
Yuval Mintzfc48b7a2016-02-15 13:22:35 -0500353 addr = GTT_BAR0_MAP_REG_USDM_RAM +
354 USTORM_FLR_FINAL_ACK_OFFSET(p_hwfn->rel_pf_id);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200355
Yuval Mintzfc48b7a2016-02-15 13:22:35 -0500356 command |= X_FINAL_CLEANUP_AGG_INT <<
357 SDM_AGG_INT_COMP_PARAMS_AGG_INT_INDEX_SHIFT;
358 command |= 1 << SDM_AGG_INT_COMP_PARAMS_AGG_VECTOR_ENABLE_SHIFT;
359 command |= id << SDM_AGG_INT_COMP_PARAMS_AGG_VECTOR_BIT_SHIFT;
360 command |= SDM_COMP_TYPE_AGG_INT << SDM_OP_GEN_COMP_TYPE_SHIFT;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200361
362 /* Make sure notification is not set before initiating final cleanup */
363 if (REG_RD(p_hwfn, addr)) {
364 DP_NOTICE(
365 p_hwfn,
366 "Unexpected; Found final cleanup notification before initiating final cleanup\n");
367 REG_WR(p_hwfn, addr, 0);
368 }
369
370 DP_VERBOSE(p_hwfn, QED_MSG_IOV,
371 "Sending final cleanup for PFVF[%d] [Command %08x\n]",
372 id, command);
373
374 qed_wr(p_hwfn, p_ptt, XSDM_REG_OPERATION_GEN, command);
375
376 /* Poll until completion */
377 while (!REG_RD(p_hwfn, addr) && count--)
378 msleep(FINAL_CLEANUP_POLL_TIME);
379
380 if (REG_RD(p_hwfn, addr))
381 rc = 0;
382 else
383 DP_NOTICE(p_hwfn,
384 "Failed to receive FW final cleanup notification\n");
385
386 /* Cleanup afterwards */
387 REG_WR(p_hwfn, addr, 0);
388
389 return rc;
390}
391
392static void qed_calc_hw_mode(struct qed_hwfn *p_hwfn)
393{
394 int hw_mode = 0;
395
396 hw_mode = (1 << MODE_BB_A0);
397
398 switch (p_hwfn->cdev->num_ports_in_engines) {
399 case 1:
400 hw_mode |= 1 << MODE_PORTS_PER_ENG_1;
401 break;
402 case 2:
403 hw_mode |= 1 << MODE_PORTS_PER_ENG_2;
404 break;
405 case 4:
406 hw_mode |= 1 << MODE_PORTS_PER_ENG_4;
407 break;
408 default:
409 DP_NOTICE(p_hwfn, "num_ports_in_engine = %d not supported\n",
410 p_hwfn->cdev->num_ports_in_engines);
411 return;
412 }
413
414 switch (p_hwfn->cdev->mf_mode) {
Yuval Mintzfc48b7a2016-02-15 13:22:35 -0500415 case QED_MF_DEFAULT:
416 case QED_MF_NPAR:
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200417 hw_mode |= 1 << MODE_MF_SI;
418 break;
Yuval Mintzfc48b7a2016-02-15 13:22:35 -0500419 case QED_MF_OVLAN:
420 hw_mode |= 1 << MODE_MF_SD;
421 break;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200422 default:
Yuval Mintzfc48b7a2016-02-15 13:22:35 -0500423 DP_NOTICE(p_hwfn, "Unsupported MF mode, init as DEFAULT\n");
424 hw_mode |= 1 << MODE_MF_SI;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200425 }
426
427 hw_mode |= 1 << MODE_ASIC;
428
429 p_hwfn->hw_info.hw_mode = hw_mode;
430}
431
432/* Init run time data for all PFs on an engine. */
433static void qed_init_cau_rt_data(struct qed_dev *cdev)
434{
435 u32 offset = CAU_REG_SB_VAR_MEMORY_RT_OFFSET;
436 int i, sb_id;
437
438 for_each_hwfn(cdev, i) {
439 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
440 struct qed_igu_info *p_igu_info;
441 struct qed_igu_block *p_block;
442 struct cau_sb_entry sb_entry;
443
444 p_igu_info = p_hwfn->hw_info.p_igu_info;
445
446 for (sb_id = 0; sb_id < QED_MAPPING_MEMORY_SIZE(cdev);
447 sb_id++) {
448 p_block = &p_igu_info->igu_map.igu_blocks[sb_id];
449 if (!p_block->is_pf)
450 continue;
451
452 qed_init_cau_sb_entry(p_hwfn, &sb_entry,
453 p_block->function_id,
454 0, 0);
455 STORE_RT_REG_AGG(p_hwfn, offset + sb_id * 2,
456 sb_entry);
457 }
458 }
459}
460
461static int qed_hw_init_common(struct qed_hwfn *p_hwfn,
462 struct qed_ptt *p_ptt,
463 int hw_mode)
464{
465 struct qed_qm_info *qm_info = &p_hwfn->qm_info;
466 struct qed_qm_common_rt_init_params params;
467 struct qed_dev *cdev = p_hwfn->cdev;
468 int rc = 0;
469
470 qed_init_cau_rt_data(cdev);
471
472 /* Program GTT windows */
473 qed_gtt_init(p_hwfn);
474
475 if (p_hwfn->mcp_info) {
476 if (p_hwfn->mcp_info->func_info.bandwidth_max)
477 qm_info->pf_rl_en = 1;
478 if (p_hwfn->mcp_info->func_info.bandwidth_min)
479 qm_info->pf_wfq_en = 1;
480 }
481
482 memset(&params, 0, sizeof(params));
483 params.max_ports_per_engine = p_hwfn->cdev->num_ports_in_engines;
484 params.max_phys_tcs_per_port = qm_info->max_phys_tcs_per_port;
485 params.pf_rl_en = qm_info->pf_rl_en;
486 params.pf_wfq_en = qm_info->pf_wfq_en;
487 params.vport_rl_en = qm_info->vport_rl_en;
488 params.vport_wfq_en = qm_info->vport_wfq_en;
489 params.port_params = qm_info->qm_port_params;
490
491 qed_qm_common_rt_init(p_hwfn, &params);
492
493 qed_cxt_hw_init_common(p_hwfn);
494
495 /* Close gate from NIG to BRB/Storm; By default they are open, but
496 * we close them to prevent NIG from passing data to reset blocks.
497 * Should have been done in the ENGINE phase, but init-tool lacks
498 * proper port-pretend capabilities.
499 */
500 qed_wr(p_hwfn, p_ptt, NIG_REG_RX_BRB_OUT_EN, 0);
501 qed_wr(p_hwfn, p_ptt, NIG_REG_STORM_OUT_EN, 0);
502 qed_port_pretend(p_hwfn, p_ptt, p_hwfn->port_id ^ 1);
503 qed_wr(p_hwfn, p_ptt, NIG_REG_RX_BRB_OUT_EN, 0);
504 qed_wr(p_hwfn, p_ptt, NIG_REG_STORM_OUT_EN, 0);
505 qed_port_unpretend(p_hwfn, p_ptt);
506
507 rc = qed_init_run(p_hwfn, p_ptt, PHASE_ENGINE, ANY_PHASE_ID, hw_mode);
508 if (rc != 0)
509 return rc;
510
511 qed_wr(p_hwfn, p_ptt, PSWRQ2_REG_L2P_VALIDATE_VFID, 0);
512 qed_wr(p_hwfn, p_ptt, PGLUE_B_REG_USE_CLIENTID_IN_TAG, 1);
513
514 /* Disable relaxed ordering in the PCI config space */
515 qed_wr(p_hwfn, p_ptt, 0x20b4,
516 qed_rd(p_hwfn, p_ptt, 0x20b4) & ~0x10);
517
518 return rc;
519}
520
521static int qed_hw_init_port(struct qed_hwfn *p_hwfn,
522 struct qed_ptt *p_ptt,
523 int hw_mode)
524{
525 int rc = 0;
526
527 rc = qed_init_run(p_hwfn, p_ptt, PHASE_PORT, p_hwfn->port_id,
528 hw_mode);
529 return rc;
530}
531
532static int qed_hw_init_pf(struct qed_hwfn *p_hwfn,
533 struct qed_ptt *p_ptt,
534 int hw_mode,
535 bool b_hw_start,
536 enum qed_int_mode int_mode,
537 bool allow_npar_tx_switch)
538{
539 u8 rel_pf_id = p_hwfn->rel_pf_id;
540 int rc = 0;
541
542 if (p_hwfn->mcp_info) {
543 struct qed_mcp_function_info *p_info;
544
545 p_info = &p_hwfn->mcp_info->func_info;
546 if (p_info->bandwidth_min)
547 p_hwfn->qm_info.pf_wfq = p_info->bandwidth_min;
548
549 /* Update rate limit once we'll actually have a link */
550 p_hwfn->qm_info.pf_rl = 100;
551 }
552
553 qed_cxt_hw_init_pf(p_hwfn);
554
555 qed_int_igu_init_rt(p_hwfn);
556
557 /* Set VLAN in NIG if needed */
558 if (hw_mode & (1 << MODE_MF_SD)) {
559 DP_VERBOSE(p_hwfn, NETIF_MSG_HW, "Configuring LLH_FUNC_TAG\n");
560 STORE_RT_REG(p_hwfn, NIG_REG_LLH_FUNC_TAG_EN_RT_OFFSET, 1);
561 STORE_RT_REG(p_hwfn, NIG_REG_LLH_FUNC_TAG_VALUE_RT_OFFSET,
562 p_hwfn->hw_info.ovlan);
563 }
564
565 /* Enable classification by MAC if needed */
Dan Carpenter87aec472015-11-04 16:29:11 +0300566 if (hw_mode & (1 << MODE_MF_SI)) {
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200567 DP_VERBOSE(p_hwfn, NETIF_MSG_HW,
568 "Configuring TAGMAC_CLS_TYPE\n");
569 STORE_RT_REG(p_hwfn,
570 NIG_REG_LLH_FUNC_TAGMAC_CLS_TYPE_RT_OFFSET, 1);
571 }
572
573 /* Protocl Configuration */
574 STORE_RT_REG(p_hwfn, PRS_REG_SEARCH_TCP_RT_OFFSET, 0);
575 STORE_RT_REG(p_hwfn, PRS_REG_SEARCH_FCOE_RT_OFFSET, 0);
576 STORE_RT_REG(p_hwfn, PRS_REG_SEARCH_ROCE_RT_OFFSET, 0);
577
578 /* Cleanup chip from previous driver if such remains exist */
579 rc = qed_final_cleanup(p_hwfn, p_ptt, rel_pf_id);
580 if (rc != 0)
581 return rc;
582
583 /* PF Init sequence */
584 rc = qed_init_run(p_hwfn, p_ptt, PHASE_PF, rel_pf_id, hw_mode);
585 if (rc)
586 return rc;
587
588 /* QM_PF Init sequence (may be invoked separately e.g. for DCB) */
589 rc = qed_init_run(p_hwfn, p_ptt, PHASE_QM_PF, rel_pf_id, hw_mode);
590 if (rc)
591 return rc;
592
593 /* Pure runtime initializations - directly to the HW */
594 qed_int_igu_init_pure_rt(p_hwfn, p_ptt, true, true);
595
596 if (b_hw_start) {
597 /* enable interrupts */
598 qed_int_igu_enable(p_hwfn, p_ptt, int_mode);
599
600 /* send function start command */
601 rc = qed_sp_pf_start(p_hwfn, p_hwfn->cdev->mf_mode);
602 if (rc)
603 DP_NOTICE(p_hwfn, "Function start ramrod failed\n");
604 }
605 return rc;
606}
607
608static int qed_change_pci_hwfn(struct qed_hwfn *p_hwfn,
609 struct qed_ptt *p_ptt,
610 u8 enable)
611{
612 u32 delay_idx = 0, val, set_val = enable ? 1 : 0;
613
614 /* Change PF in PXP */
615 qed_wr(p_hwfn, p_ptt,
616 PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER, set_val);
617
618 /* wait until value is set - try for 1 second every 50us */
619 for (delay_idx = 0; delay_idx < 20000; delay_idx++) {
620 val = qed_rd(p_hwfn, p_ptt,
621 PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER);
622 if (val == set_val)
623 break;
624
625 usleep_range(50, 60);
626 }
627
628 if (val != set_val) {
629 DP_NOTICE(p_hwfn,
630 "PFID_ENABLE_MASTER wasn't changed after a second\n");
631 return -EAGAIN;
632 }
633
634 return 0;
635}
636
637static void qed_reset_mb_shadow(struct qed_hwfn *p_hwfn,
638 struct qed_ptt *p_main_ptt)
639{
640 /* Read shadow of current MFW mailbox */
641 qed_mcp_read_mb(p_hwfn, p_main_ptt);
642 memcpy(p_hwfn->mcp_info->mfw_mb_shadow,
643 p_hwfn->mcp_info->mfw_mb_cur,
644 p_hwfn->mcp_info->mfw_mb_length);
645}
646
647int qed_hw_init(struct qed_dev *cdev,
648 bool b_hw_start,
649 enum qed_int_mode int_mode,
650 bool allow_npar_tx_switch,
651 const u8 *bin_fw_data)
652{
Manish Chopra9df2ed02015-10-26 11:02:33 +0200653 struct qed_storm_stats *p_stat;
654 u32 load_code, param, *p_address;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200655 int rc, mfw_rc, i;
Manish Chopra9df2ed02015-10-26 11:02:33 +0200656 u8 fw_vport = 0;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200657
658 rc = qed_init_fw_data(cdev, bin_fw_data);
659 if (rc != 0)
660 return rc;
661
662 for_each_hwfn(cdev, i) {
663 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
664
Manish Chopra9df2ed02015-10-26 11:02:33 +0200665 rc = qed_fw_vport(p_hwfn, 0, &fw_vport);
666 if (rc != 0)
667 return rc;
668
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200669 /* Enable DMAE in PXP */
670 rc = qed_change_pci_hwfn(p_hwfn, p_hwfn->p_main_ptt, true);
671
672 qed_calc_hw_mode(p_hwfn);
673
674 rc = qed_mcp_load_req(p_hwfn, p_hwfn->p_main_ptt,
675 &load_code);
676 if (rc) {
677 DP_NOTICE(p_hwfn, "Failed sending LOAD_REQ command\n");
678 return rc;
679 }
680
681 qed_reset_mb_shadow(p_hwfn, p_hwfn->p_main_ptt);
682
683 DP_VERBOSE(p_hwfn, QED_MSG_SP,
684 "Load request was sent. Resp:0x%x, Load code: 0x%x\n",
685 rc, load_code);
686
687 p_hwfn->first_on_engine = (load_code ==
688 FW_MSG_CODE_DRV_LOAD_ENGINE);
689
690 switch (load_code) {
691 case FW_MSG_CODE_DRV_LOAD_ENGINE:
692 rc = qed_hw_init_common(p_hwfn, p_hwfn->p_main_ptt,
693 p_hwfn->hw_info.hw_mode);
694 if (rc)
695 break;
696 /* Fall into */
697 case FW_MSG_CODE_DRV_LOAD_PORT:
698 rc = qed_hw_init_port(p_hwfn, p_hwfn->p_main_ptt,
699 p_hwfn->hw_info.hw_mode);
700 if (rc)
701 break;
702
703 /* Fall into */
704 case FW_MSG_CODE_DRV_LOAD_FUNCTION:
705 rc = qed_hw_init_pf(p_hwfn, p_hwfn->p_main_ptt,
706 p_hwfn->hw_info.hw_mode,
707 b_hw_start, int_mode,
708 allow_npar_tx_switch);
709 break;
710 default:
711 rc = -EINVAL;
712 break;
713 }
714
715 if (rc)
716 DP_NOTICE(p_hwfn,
717 "init phase failed for loadcode 0x%x (rc %d)\n",
718 load_code, rc);
719
720 /* ACK mfw regardless of success or failure of initialization */
721 mfw_rc = qed_mcp_cmd(p_hwfn, p_hwfn->p_main_ptt,
722 DRV_MSG_CODE_LOAD_DONE,
723 0, &load_code, &param);
724 if (rc)
725 return rc;
726 if (mfw_rc) {
727 DP_NOTICE(p_hwfn, "Failed sending LOAD_DONE command\n");
728 return mfw_rc;
729 }
730
731 p_hwfn->hw_init_done = true;
Manish Chopra9df2ed02015-10-26 11:02:33 +0200732
733 /* init PF stats */
734 p_stat = &p_hwfn->storm_stats;
735 p_stat->mstats.address = BAR0_MAP_REG_MSDM_RAM +
736 MSTORM_QUEUE_STAT_OFFSET(fw_vport);
737 p_stat->mstats.len = sizeof(struct eth_mstorm_per_queue_stat);
738
739 p_stat->ustats.address = BAR0_MAP_REG_USDM_RAM +
740 USTORM_QUEUE_STAT_OFFSET(fw_vport);
741 p_stat->ustats.len = sizeof(struct eth_ustorm_per_queue_stat);
742
743 p_stat->pstats.address = BAR0_MAP_REG_PSDM_RAM +
744 PSTORM_QUEUE_STAT_OFFSET(fw_vport);
745 p_stat->pstats.len = sizeof(struct eth_pstorm_per_queue_stat);
746
747 p_address = &p_stat->tstats.address;
748 *p_address = BAR0_MAP_REG_TSDM_RAM +
749 TSTORM_PORT_STAT_OFFSET(MFW_PORT(p_hwfn));
750 p_stat->tstats.len = sizeof(struct tstorm_per_port_stat);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200751 }
752
753 return 0;
754}
755
756#define QED_HW_STOP_RETRY_LIMIT (10)
757int qed_hw_stop(struct qed_dev *cdev)
758{
759 int rc = 0, t_rc;
760 int i, j;
761
762 for_each_hwfn(cdev, j) {
763 struct qed_hwfn *p_hwfn = &cdev->hwfns[j];
764 struct qed_ptt *p_ptt = p_hwfn->p_main_ptt;
765
766 DP_VERBOSE(p_hwfn, NETIF_MSG_IFDOWN, "Stopping hw/fw\n");
767
768 /* mark the hw as uninitialized... */
769 p_hwfn->hw_init_done = false;
770
771 rc = qed_sp_pf_stop(p_hwfn);
772 if (rc)
773 return rc;
774
775 qed_wr(p_hwfn, p_ptt,
776 NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x1);
777
778 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP, 0x0);
779 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_UDP, 0x0);
780 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_FCOE, 0x0);
781 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE, 0x0);
782 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_OPENFLOW, 0x0);
783
784 qed_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_CONN, 0x0);
785 qed_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_TASK, 0x0);
786 for (i = 0; i < QED_HW_STOP_RETRY_LIMIT; i++) {
787 if ((!qed_rd(p_hwfn, p_ptt,
788 TM_REG_PF_SCAN_ACTIVE_CONN)) &&
789 (!qed_rd(p_hwfn, p_ptt,
790 TM_REG_PF_SCAN_ACTIVE_TASK)))
791 break;
792
793 usleep_range(1000, 2000);
794 }
795 if (i == QED_HW_STOP_RETRY_LIMIT)
796 DP_NOTICE(p_hwfn,
797 "Timers linear scans are not over [Connection %02x Tasks %02x]\n",
798 (u8)qed_rd(p_hwfn, p_ptt,
799 TM_REG_PF_SCAN_ACTIVE_CONN),
800 (u8)qed_rd(p_hwfn, p_ptt,
801 TM_REG_PF_SCAN_ACTIVE_TASK));
802
803 /* Disable Attention Generation */
804 qed_int_igu_disable_int(p_hwfn, p_ptt);
805
806 qed_wr(p_hwfn, p_ptt, IGU_REG_LEADING_EDGE_LATCH, 0);
807 qed_wr(p_hwfn, p_ptt, IGU_REG_TRAILING_EDGE_LATCH, 0);
808
809 qed_int_igu_init_pure_rt(p_hwfn, p_ptt, false, true);
810
811 /* Need to wait 1ms to guarantee SBs are cleared */
812 usleep_range(1000, 2000);
813 }
814
815 /* Disable DMAE in PXP - in CMT, this should only be done for
816 * first hw-function, and only after all transactions have
817 * stopped for all active hw-functions.
818 */
819 t_rc = qed_change_pci_hwfn(&cdev->hwfns[0],
820 cdev->hwfns[0].p_main_ptt,
821 false);
822 if (t_rc != 0)
823 rc = t_rc;
824
825 return rc;
826}
827
Manish Chopracee4d262015-10-26 11:02:28 +0200828void qed_hw_stop_fastpath(struct qed_dev *cdev)
829{
830 int i, j;
831
832 for_each_hwfn(cdev, j) {
833 struct qed_hwfn *p_hwfn = &cdev->hwfns[j];
834 struct qed_ptt *p_ptt = p_hwfn->p_main_ptt;
835
836 DP_VERBOSE(p_hwfn,
837 NETIF_MSG_IFDOWN,
838 "Shutting down the fastpath\n");
839
840 qed_wr(p_hwfn, p_ptt,
841 NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x1);
842
843 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_TCP, 0x0);
844 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_UDP, 0x0);
845 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_FCOE, 0x0);
846 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_ROCE, 0x0);
847 qed_wr(p_hwfn, p_ptt, PRS_REG_SEARCH_OPENFLOW, 0x0);
848
849 qed_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_CONN, 0x0);
850 qed_wr(p_hwfn, p_ptt, TM_REG_PF_ENABLE_TASK, 0x0);
851 for (i = 0; i < QED_HW_STOP_RETRY_LIMIT; i++) {
852 if ((!qed_rd(p_hwfn, p_ptt,
853 TM_REG_PF_SCAN_ACTIVE_CONN)) &&
854 (!qed_rd(p_hwfn, p_ptt,
855 TM_REG_PF_SCAN_ACTIVE_TASK)))
856 break;
857
858 usleep_range(1000, 2000);
859 }
860 if (i == QED_HW_STOP_RETRY_LIMIT)
861 DP_NOTICE(p_hwfn,
862 "Timers linear scans are not over [Connection %02x Tasks %02x]\n",
863 (u8)qed_rd(p_hwfn, p_ptt,
864 TM_REG_PF_SCAN_ACTIVE_CONN),
865 (u8)qed_rd(p_hwfn, p_ptt,
866 TM_REG_PF_SCAN_ACTIVE_TASK));
867
868 qed_int_igu_init_pure_rt(p_hwfn, p_ptt, false, false);
869
870 /* Need to wait 1ms to guarantee SBs are cleared */
871 usleep_range(1000, 2000);
872 }
873}
874
875void qed_hw_start_fastpath(struct qed_hwfn *p_hwfn)
876{
877 /* Re-open incoming traffic */
878 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
879 NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF, 0x0);
880}
881
Yuval Mintzfe56b9e2015-10-26 11:02:25 +0200882static int qed_reg_assert(struct qed_hwfn *hwfn,
883 struct qed_ptt *ptt, u32 reg,
884 bool expected)
885{
886 u32 assert_val = qed_rd(hwfn, ptt, reg);
887
888 if (assert_val != expected) {
889 DP_NOTICE(hwfn, "Value at address 0x%x != 0x%08x\n",
890 reg, expected);
891 return -EINVAL;
892 }
893
894 return 0;
895}
896
897int qed_hw_reset(struct qed_dev *cdev)
898{
899 int rc = 0;
900 u32 unload_resp, unload_param;
901 int i;
902
903 for_each_hwfn(cdev, i) {
904 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
905
906 DP_VERBOSE(p_hwfn, NETIF_MSG_IFDOWN, "Resetting hw/fw\n");
907
908 /* Check for incorrect states */
909 qed_reg_assert(p_hwfn, p_hwfn->p_main_ptt,
910 QM_REG_USG_CNT_PF_TX, 0);
911 qed_reg_assert(p_hwfn, p_hwfn->p_main_ptt,
912 QM_REG_USG_CNT_PF_OTHER, 0);
913
914 /* Disable PF in HW blocks */
915 qed_wr(p_hwfn, p_hwfn->p_main_ptt, DORQ_REG_PF_DB_ENABLE, 0);
916 qed_wr(p_hwfn, p_hwfn->p_main_ptt, QM_REG_PF_EN, 0);
917 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
918 TCFC_REG_STRONG_ENABLE_PF, 0);
919 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
920 CCFC_REG_STRONG_ENABLE_PF, 0);
921
922 /* Send unload command to MCP */
923 rc = qed_mcp_cmd(p_hwfn, p_hwfn->p_main_ptt,
924 DRV_MSG_CODE_UNLOAD_REQ,
925 DRV_MB_PARAM_UNLOAD_WOL_MCP,
926 &unload_resp, &unload_param);
927 if (rc) {
928 DP_NOTICE(p_hwfn, "qed_hw_reset: UNLOAD_REQ failed\n");
929 unload_resp = FW_MSG_CODE_DRV_UNLOAD_ENGINE;
930 }
931
932 rc = qed_mcp_cmd(p_hwfn, p_hwfn->p_main_ptt,
933 DRV_MSG_CODE_UNLOAD_DONE,
934 0, &unload_resp, &unload_param);
935 if (rc) {
936 DP_NOTICE(p_hwfn, "qed_hw_reset: UNLOAD_DONE failed\n");
937 return rc;
938 }
939 }
940
941 return rc;
942}
943
944/* Free hwfn memory and resources acquired in hw_hwfn_prepare */
945static void qed_hw_hwfn_free(struct qed_hwfn *p_hwfn)
946{
947 qed_ptt_pool_free(p_hwfn);
948 kfree(p_hwfn->hw_info.p_igu_info);
949}
950
951/* Setup bar access */
952static int qed_hw_hwfn_prepare(struct qed_hwfn *p_hwfn)
953{
954 int rc;
955
956 /* Allocate PTT pool */
957 rc = qed_ptt_pool_alloc(p_hwfn);
958 if (rc)
959 return rc;
960
961 /* Allocate the main PTT */
962 p_hwfn->p_main_ptt = qed_get_reserved_ptt(p_hwfn, RESERVED_PTT_MAIN);
963
964 /* clear indirect access */
965 qed_wr(p_hwfn, p_hwfn->p_main_ptt, PGLUE_B_REG_PGL_ADDR_88_F0, 0);
966 qed_wr(p_hwfn, p_hwfn->p_main_ptt, PGLUE_B_REG_PGL_ADDR_8C_F0, 0);
967 qed_wr(p_hwfn, p_hwfn->p_main_ptt, PGLUE_B_REG_PGL_ADDR_90_F0, 0);
968 qed_wr(p_hwfn, p_hwfn->p_main_ptt, PGLUE_B_REG_PGL_ADDR_94_F0, 0);
969
970 /* Clean Previous errors if such exist */
971 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
972 PGLUE_B_REG_WAS_ERROR_PF_31_0_CLR,
973 1 << p_hwfn->abs_pf_id);
974
975 /* enable internal target-read */
976 qed_wr(p_hwfn, p_hwfn->p_main_ptt,
977 PGLUE_B_REG_INTERNAL_PFID_ENABLE_TARGET_READ, 1);
978
979 return 0;
980}
981
982static void get_function_id(struct qed_hwfn *p_hwfn)
983{
984 /* ME Register */
985 p_hwfn->hw_info.opaque_fid = (u16)REG_RD(p_hwfn, PXP_PF_ME_OPAQUE_ADDR);
986
987 p_hwfn->hw_info.concrete_fid = REG_RD(p_hwfn, PXP_PF_ME_CONCRETE_ADDR);
988
989 p_hwfn->abs_pf_id = (p_hwfn->hw_info.concrete_fid >> 16) & 0xf;
990 p_hwfn->rel_pf_id = GET_FIELD(p_hwfn->hw_info.concrete_fid,
991 PXP_CONCRETE_FID_PFID);
992 p_hwfn->port_id = GET_FIELD(p_hwfn->hw_info.concrete_fid,
993 PXP_CONCRETE_FID_PORT);
994}
995
Yuval Mintz25c089d2015-10-26 11:02:26 +0200996static void qed_hw_set_feat(struct qed_hwfn *p_hwfn)
997{
998 u32 *feat_num = p_hwfn->hw_info.feat_num;
999 int num_features = 1;
1000
1001 feat_num[QED_PF_L2_QUE] = min_t(u32, RESC_NUM(p_hwfn, QED_SB) /
1002 num_features,
1003 RESC_NUM(p_hwfn, QED_L2_QUEUE));
1004 DP_VERBOSE(p_hwfn, NETIF_MSG_PROBE,
1005 "#PF_L2_QUEUES=%d #SBS=%d num_features=%d\n",
1006 feat_num[QED_PF_L2_QUE], RESC_NUM(p_hwfn, QED_SB),
1007 num_features);
1008}
1009
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001010static void qed_hw_get_resc(struct qed_hwfn *p_hwfn)
1011{
1012 u32 *resc_start = p_hwfn->hw_info.resc_start;
1013 u32 *resc_num = p_hwfn->hw_info.resc_num;
Yuval Mintz4ac801b2016-02-28 12:26:52 +02001014 struct qed_sb_cnt_info sb_cnt_info;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001015 int num_funcs, i;
1016
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001017 num_funcs = MAX_NUM_PFS_BB;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001018
Yuval Mintz4ac801b2016-02-28 12:26:52 +02001019 memset(&sb_cnt_info, 0, sizeof(sb_cnt_info));
1020 qed_int_get_num_sbs(p_hwfn, &sb_cnt_info);
1021
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001022 resc_num[QED_SB] = min_t(u32,
1023 (MAX_SB_PER_PATH_BB / num_funcs),
Yuval Mintz4ac801b2016-02-28 12:26:52 +02001024 sb_cnt_info.sb_cnt);
Yuval Mintz25c089d2015-10-26 11:02:26 +02001025 resc_num[QED_L2_QUEUE] = MAX_NUM_L2_QUEUES_BB / num_funcs;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001026 resc_num[QED_VPORT] = MAX_NUM_VPORTS_BB / num_funcs;
Yuval Mintz25c089d2015-10-26 11:02:26 +02001027 resc_num[QED_RSS_ENG] = ETH_RSS_ENGINE_NUM_BB / num_funcs;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001028 resc_num[QED_PQ] = MAX_QM_TX_QUEUES_BB / num_funcs;
1029 resc_num[QED_RL] = 8;
Yuval Mintz25c089d2015-10-26 11:02:26 +02001030 resc_num[QED_MAC] = ETH_NUM_MAC_FILTERS / num_funcs;
1031 resc_num[QED_VLAN] = (ETH_NUM_VLAN_FILTERS - 1 /*For vlan0*/) /
1032 num_funcs;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001033 resc_num[QED_ILT] = 950;
1034
1035 for (i = 0; i < QED_MAX_RESC; i++)
1036 resc_start[i] = resc_num[i] * p_hwfn->rel_pf_id;
1037
Yuval Mintz25c089d2015-10-26 11:02:26 +02001038 qed_hw_set_feat(p_hwfn);
1039
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001040 DP_VERBOSE(p_hwfn, NETIF_MSG_PROBE,
1041 "The numbers for each resource are:\n"
1042 "SB = %d start = %d\n"
Yuval Mintz25c089d2015-10-26 11:02:26 +02001043 "L2_QUEUE = %d start = %d\n"
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001044 "VPORT = %d start = %d\n"
1045 "PQ = %d start = %d\n"
1046 "RL = %d start = %d\n"
Yuval Mintz25c089d2015-10-26 11:02:26 +02001047 "MAC = %d start = %d\n"
1048 "VLAN = %d start = %d\n"
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001049 "ILT = %d start = %d\n",
1050 p_hwfn->hw_info.resc_num[QED_SB],
1051 p_hwfn->hw_info.resc_start[QED_SB],
Yuval Mintz25c089d2015-10-26 11:02:26 +02001052 p_hwfn->hw_info.resc_num[QED_L2_QUEUE],
1053 p_hwfn->hw_info.resc_start[QED_L2_QUEUE],
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001054 p_hwfn->hw_info.resc_num[QED_VPORT],
1055 p_hwfn->hw_info.resc_start[QED_VPORT],
1056 p_hwfn->hw_info.resc_num[QED_PQ],
1057 p_hwfn->hw_info.resc_start[QED_PQ],
1058 p_hwfn->hw_info.resc_num[QED_RL],
1059 p_hwfn->hw_info.resc_start[QED_RL],
Yuval Mintz25c089d2015-10-26 11:02:26 +02001060 p_hwfn->hw_info.resc_num[QED_MAC],
1061 p_hwfn->hw_info.resc_start[QED_MAC],
1062 p_hwfn->hw_info.resc_num[QED_VLAN],
1063 p_hwfn->hw_info.resc_start[QED_VLAN],
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001064 p_hwfn->hw_info.resc_num[QED_ILT],
1065 p_hwfn->hw_info.resc_start[QED_ILT]);
1066}
1067
1068static int qed_hw_get_nvm_info(struct qed_hwfn *p_hwfn,
1069 struct qed_ptt *p_ptt)
1070{
Yuval Mintzcc875c22015-10-26 11:02:31 +02001071 u32 nvm_cfg1_offset, mf_mode, addr, generic_cont0, core_cfg;
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001072 u32 port_cfg_addr, link_temp, nvm_cfg_addr, device_capabilities;
Yuval Mintzcc875c22015-10-26 11:02:31 +02001073 struct qed_mcp_link_params *link;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001074
1075 /* Read global nvm_cfg address */
1076 nvm_cfg_addr = qed_rd(p_hwfn, p_ptt, MISC_REG_GEN_PURP_CR0);
1077
1078 /* Verify MCP has initialized it */
1079 if (!nvm_cfg_addr) {
1080 DP_NOTICE(p_hwfn, "Shared memory not initialized\n");
1081 return -EINVAL;
1082 }
1083
1084 /* Read nvm_cfg1 (Notice this is just offset, and not offsize (TBD) */
1085 nvm_cfg1_offset = qed_rd(p_hwfn, p_ptt, nvm_cfg_addr + 4);
1086
1087 /* Read Vendor Id / Device Id */
1088 addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
1089 offsetof(struct nvm_cfg1, glob) +
1090 offsetof(struct nvm_cfg1_glob, pci_id);
1091 p_hwfn->hw_info.vendor_id = qed_rd(p_hwfn, p_ptt, addr) &
1092 NVM_CFG1_GLOB_VENDOR_ID_MASK;
Yuval Mintzcc875c22015-10-26 11:02:31 +02001093
1094 addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
1095 offsetof(struct nvm_cfg1, glob) +
1096 offsetof(struct nvm_cfg1_glob, core_cfg);
1097
1098 core_cfg = qed_rd(p_hwfn, p_ptt, addr);
1099
1100 switch ((core_cfg & NVM_CFG1_GLOB_NETWORK_PORT_MODE_MASK) >>
1101 NVM_CFG1_GLOB_NETWORK_PORT_MODE_OFFSET) {
1102 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_DE_2X40G:
1103 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_2X40G;
1104 break;
1105 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_DE_2X50G:
1106 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_2X50G;
1107 break;
1108 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_DE_1X100G:
1109 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_1X100G;
1110 break;
1111 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_DE_4X10G_F:
1112 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_4X10G_F;
1113 break;
1114 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_DE_4X10G_E:
1115 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_4X10G_E;
1116 break;
1117 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_DE_4X20G:
1118 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_4X20G;
1119 break;
1120 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_DE_1X40G:
1121 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_1X40G;
1122 break;
1123 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_DE_2X25G:
1124 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_2X25G;
1125 break;
1126 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_DE_1X25G:
1127 p_hwfn->hw_info.port_mode = QED_PORT_MODE_DE_1X25G;
1128 break;
1129 default:
1130 DP_NOTICE(p_hwfn, "Unknown port mode in 0x%08x\n",
1131 core_cfg);
1132 break;
1133 }
1134
Yuval Mintzcc875c22015-10-26 11:02:31 +02001135 /* Read default link configuration */
1136 link = &p_hwfn->mcp_info->link_input;
1137 port_cfg_addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
1138 offsetof(struct nvm_cfg1, port[MFW_PORT(p_hwfn)]);
1139 link_temp = qed_rd(p_hwfn, p_ptt,
1140 port_cfg_addr +
1141 offsetof(struct nvm_cfg1_port, speed_cap_mask));
1142 link->speed.advertised_speeds =
1143 link_temp & NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_MASK;
1144
1145 p_hwfn->mcp_info->link_capabilities.speed_capabilities =
1146 link->speed.advertised_speeds;
1147
1148 link_temp = qed_rd(p_hwfn, p_ptt,
1149 port_cfg_addr +
1150 offsetof(struct nvm_cfg1_port, link_settings));
1151 switch ((link_temp & NVM_CFG1_PORT_DRV_LINK_SPEED_MASK) >>
1152 NVM_CFG1_PORT_DRV_LINK_SPEED_OFFSET) {
1153 case NVM_CFG1_PORT_DRV_LINK_SPEED_AUTONEG:
1154 link->speed.autoneg = true;
1155 break;
1156 case NVM_CFG1_PORT_DRV_LINK_SPEED_1G:
1157 link->speed.forced_speed = 1000;
1158 break;
1159 case NVM_CFG1_PORT_DRV_LINK_SPEED_10G:
1160 link->speed.forced_speed = 10000;
1161 break;
1162 case NVM_CFG1_PORT_DRV_LINK_SPEED_25G:
1163 link->speed.forced_speed = 25000;
1164 break;
1165 case NVM_CFG1_PORT_DRV_LINK_SPEED_40G:
1166 link->speed.forced_speed = 40000;
1167 break;
1168 case NVM_CFG1_PORT_DRV_LINK_SPEED_50G:
1169 link->speed.forced_speed = 50000;
1170 break;
1171 case NVM_CFG1_PORT_DRV_LINK_SPEED_100G:
1172 link->speed.forced_speed = 100000;
1173 break;
1174 default:
1175 DP_NOTICE(p_hwfn, "Unknown Speed in 0x%08x\n",
1176 link_temp);
1177 }
1178
1179 link_temp &= NVM_CFG1_PORT_DRV_FLOW_CONTROL_MASK;
1180 link_temp >>= NVM_CFG1_PORT_DRV_FLOW_CONTROL_OFFSET;
1181 link->pause.autoneg = !!(link_temp &
1182 NVM_CFG1_PORT_DRV_FLOW_CONTROL_AUTONEG);
1183 link->pause.forced_rx = !!(link_temp &
1184 NVM_CFG1_PORT_DRV_FLOW_CONTROL_RX);
1185 link->pause.forced_tx = !!(link_temp &
1186 NVM_CFG1_PORT_DRV_FLOW_CONTROL_TX);
1187 link->loopback_mode = 0;
1188
1189 DP_VERBOSE(p_hwfn, NETIF_MSG_LINK,
1190 "Read default link: Speed 0x%08x, Adv. Speed 0x%08x, AN: 0x%02x, PAUSE AN: 0x%02x\n",
1191 link->speed.forced_speed, link->speed.advertised_speeds,
1192 link->speed.autoneg, link->pause.autoneg);
1193
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001194 /* Read Multi-function information from shmem */
1195 addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
1196 offsetof(struct nvm_cfg1, glob) +
1197 offsetof(struct nvm_cfg1_glob, generic_cont0);
1198
1199 generic_cont0 = qed_rd(p_hwfn, p_ptt, addr);
1200
1201 mf_mode = (generic_cont0 & NVM_CFG1_GLOB_MF_MODE_MASK) >>
1202 NVM_CFG1_GLOB_MF_MODE_OFFSET;
1203
1204 switch (mf_mode) {
1205 case NVM_CFG1_GLOB_MF_MODE_MF_ALLOWED:
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001206 p_hwfn->cdev->mf_mode = QED_MF_OVLAN;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001207 break;
1208 case NVM_CFG1_GLOB_MF_MODE_NPAR1_0:
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001209 p_hwfn->cdev->mf_mode = QED_MF_NPAR;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001210 break;
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001211 case NVM_CFG1_GLOB_MF_MODE_DEFAULT:
1212 p_hwfn->cdev->mf_mode = QED_MF_DEFAULT;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001213 break;
1214 }
1215 DP_INFO(p_hwfn, "Multi function mode is %08x\n",
1216 p_hwfn->cdev->mf_mode);
1217
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001218 /* Read Multi-function information from shmem */
1219 addr = MCP_REG_SCRATCH + nvm_cfg1_offset +
1220 offsetof(struct nvm_cfg1, glob) +
1221 offsetof(struct nvm_cfg1_glob, device_capabilities);
1222
1223 device_capabilities = qed_rd(p_hwfn, p_ptt, addr);
1224 if (device_capabilities & NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ETHERNET)
1225 __set_bit(QED_DEV_CAP_ETH,
1226 &p_hwfn->hw_info.device_capabilities);
1227
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001228 return qed_mcp_fill_shmem_func_info(p_hwfn, p_ptt);
1229}
1230
1231static int
1232qed_get_hw_info(struct qed_hwfn *p_hwfn,
1233 struct qed_ptt *p_ptt,
1234 enum qed_pci_personality personality)
1235{
1236 u32 port_mode;
1237 int rc;
1238
1239 /* Read the port mode */
1240 port_mode = qed_rd(p_hwfn, p_ptt,
1241 CNIG_REG_NW_PORT_MODE_BB_B0);
1242
1243 if (port_mode < 3) {
1244 p_hwfn->cdev->num_ports_in_engines = 1;
1245 } else if (port_mode <= 5) {
1246 p_hwfn->cdev->num_ports_in_engines = 2;
1247 } else {
1248 DP_NOTICE(p_hwfn, "PORT MODE: %d not supported\n",
1249 p_hwfn->cdev->num_ports_in_engines);
1250
1251 /* Default num_ports_in_engines to something */
1252 p_hwfn->cdev->num_ports_in_engines = 1;
1253 }
1254
1255 qed_hw_get_nvm_info(p_hwfn, p_ptt);
1256
1257 rc = qed_int_igu_read_cam(p_hwfn, p_ptt);
1258 if (rc)
1259 return rc;
1260
1261 if (qed_mcp_is_init(p_hwfn))
1262 ether_addr_copy(p_hwfn->hw_info.hw_mac_addr,
1263 p_hwfn->mcp_info->func_info.mac);
1264 else
1265 eth_random_addr(p_hwfn->hw_info.hw_mac_addr);
1266
1267 if (qed_mcp_is_init(p_hwfn)) {
1268 if (p_hwfn->mcp_info->func_info.ovlan != QED_MCP_VLAN_UNSET)
1269 p_hwfn->hw_info.ovlan =
1270 p_hwfn->mcp_info->func_info.ovlan;
1271
1272 qed_mcp_cmd_port_init(p_hwfn, p_ptt);
1273 }
1274
1275 if (qed_mcp_is_init(p_hwfn)) {
1276 enum qed_pci_personality protocol;
1277
1278 protocol = p_hwfn->mcp_info->func_info.protocol;
1279 p_hwfn->hw_info.personality = protocol;
1280 }
1281
1282 qed_hw_get_resc(p_hwfn);
1283
1284 return rc;
1285}
1286
1287static void qed_get_dev_info(struct qed_dev *cdev)
1288{
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001289 struct qed_hwfn *p_hwfn = QED_LEADING_HWFN(cdev);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001290 u32 tmp;
1291
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001292 /* Read Vendor Id / Device Id */
1293 pci_read_config_word(cdev->pdev, PCI_VENDOR_ID,
1294 &cdev->vendor_id);
1295 pci_read_config_word(cdev->pdev, PCI_DEVICE_ID,
1296 &cdev->device_id);
1297 cdev->chip_num = (u16)qed_rd(p_hwfn, p_hwfn->p_main_ptt,
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001298 MISCS_REG_CHIP_NUM);
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001299 cdev->chip_rev = (u16)qed_rd(p_hwfn, p_hwfn->p_main_ptt,
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001300 MISCS_REG_CHIP_REV);
1301 MASK_FIELD(CHIP_REV, cdev->chip_rev);
1302
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001303 cdev->type = QED_DEV_TYPE_BB;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001304 /* Learn number of HW-functions */
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001305 tmp = qed_rd(p_hwfn, p_hwfn->p_main_ptt,
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001306 MISCS_REG_CMT_ENABLED_FOR_PAIR);
1307
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001308 if (tmp & (1 << p_hwfn->rel_pf_id)) {
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001309 DP_NOTICE(cdev->hwfns, "device in CMT mode\n");
1310 cdev->num_hwfns = 2;
1311 } else {
1312 cdev->num_hwfns = 1;
1313 }
1314
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001315 cdev->chip_bond_id = qed_rd(p_hwfn, p_hwfn->p_main_ptt,
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001316 MISCS_REG_CHIP_TEST_REG) >> 4;
1317 MASK_FIELD(CHIP_BOND_ID, cdev->chip_bond_id);
Yuval Mintzfc48b7a2016-02-15 13:22:35 -05001318 cdev->chip_metal = (u16)qed_rd(p_hwfn, p_hwfn->p_main_ptt,
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001319 MISCS_REG_CHIP_METAL);
1320 MASK_FIELD(CHIP_METAL, cdev->chip_metal);
1321
1322 DP_INFO(cdev->hwfns,
1323 "Chip details - Num: %04x Rev: %04x Bond id: %04x Metal: %04x\n",
1324 cdev->chip_num, cdev->chip_rev,
1325 cdev->chip_bond_id, cdev->chip_metal);
1326}
1327
1328static int qed_hw_prepare_single(struct qed_hwfn *p_hwfn,
1329 void __iomem *p_regview,
1330 void __iomem *p_doorbells,
1331 enum qed_pci_personality personality)
1332{
1333 int rc = 0;
1334
1335 /* Split PCI bars evenly between hwfns */
1336 p_hwfn->regview = p_regview;
1337 p_hwfn->doorbells = p_doorbells;
1338
1339 /* Validate that chip access is feasible */
1340 if (REG_RD(p_hwfn, PXP_PF_ME_OPAQUE_ADDR) == 0xffffffff) {
1341 DP_ERR(p_hwfn,
1342 "Reading the ME register returns all Fs; Preventing further chip access\n");
1343 return -EINVAL;
1344 }
1345
1346 get_function_id(p_hwfn);
1347
1348 rc = qed_hw_hwfn_prepare(p_hwfn);
1349 if (rc) {
1350 DP_NOTICE(p_hwfn, "Failed to prepare hwfn's hw\n");
1351 goto err0;
1352 }
1353
1354 /* First hwfn learns basic information, e.g., number of hwfns */
1355 if (!p_hwfn->my_id)
1356 qed_get_dev_info(p_hwfn->cdev);
1357
1358 /* Initialize MCP structure */
1359 rc = qed_mcp_cmd_init(p_hwfn, p_hwfn->p_main_ptt);
1360 if (rc) {
1361 DP_NOTICE(p_hwfn, "Failed initializing mcp command\n");
1362 goto err1;
1363 }
1364
1365 /* Read the device configuration information from the HW and SHMEM */
1366 rc = qed_get_hw_info(p_hwfn, p_hwfn->p_main_ptt, personality);
1367 if (rc) {
1368 DP_NOTICE(p_hwfn, "Failed to get HW information\n");
1369 goto err2;
1370 }
1371
1372 /* Allocate the init RT array and initialize the init-ops engine */
1373 rc = qed_init_alloc(p_hwfn);
1374 if (rc) {
1375 DP_NOTICE(p_hwfn, "Failed to allocate the init array\n");
1376 goto err2;
1377 }
1378
1379 return rc;
1380err2:
1381 qed_mcp_free(p_hwfn);
1382err1:
1383 qed_hw_hwfn_free(p_hwfn);
1384err0:
1385 return rc;
1386}
1387
Ariel Eliorc78df142015-12-07 06:25:58 -05001388static u32 qed_hw_bar_size(struct qed_hwfn *p_hwfn,
1389 u8 bar_id)
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001390{
Ariel Eliorc78df142015-12-07 06:25:58 -05001391 u32 bar_reg = (bar_id == 0 ? PGLUE_B_REG_PF_BAR0_SIZE
1392 : PGLUE_B_REG_PF_BAR1_SIZE);
1393 u32 val = qed_rd(p_hwfn, p_hwfn->p_main_ptt, bar_reg);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001394
Ariel Eliorc78df142015-12-07 06:25:58 -05001395 /* Get the BAR size(in KB) from hardware given val */
1396 return 1 << (val + 15);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001397}
1398
1399int qed_hw_prepare(struct qed_dev *cdev,
1400 int personality)
1401{
Ariel Eliorc78df142015-12-07 06:25:58 -05001402 struct qed_hwfn *p_hwfn = QED_LEADING_HWFN(cdev);
1403 int rc;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001404
1405 /* Store the precompiled init data ptrs */
1406 qed_init_iro_array(cdev);
1407
1408 /* Initialize the first hwfn - will learn number of hwfns */
Ariel Eliorc78df142015-12-07 06:25:58 -05001409 rc = qed_hw_prepare_single(p_hwfn,
1410 cdev->regview,
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001411 cdev->doorbells, personality);
1412 if (rc)
1413 return rc;
1414
Ariel Eliorc78df142015-12-07 06:25:58 -05001415 personality = p_hwfn->hw_info.personality;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001416
1417 /* Initialize the rest of the hwfns */
Ariel Eliorc78df142015-12-07 06:25:58 -05001418 if (cdev->num_hwfns > 1) {
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001419 void __iomem *p_regview, *p_doorbell;
Ariel Eliorc78df142015-12-07 06:25:58 -05001420 u8 __iomem *addr;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001421
Ariel Eliorc78df142015-12-07 06:25:58 -05001422 /* adjust bar offset for second engine */
1423 addr = cdev->regview + qed_hw_bar_size(p_hwfn, 0) / 2;
1424 p_regview = addr;
1425
1426 /* adjust doorbell bar offset for second engine */
1427 addr = cdev->doorbells + qed_hw_bar_size(p_hwfn, 1) / 2;
1428 p_doorbell = addr;
1429
1430 /* prepare second hw function */
1431 rc = qed_hw_prepare_single(&cdev->hwfns[1], p_regview,
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001432 p_doorbell, personality);
Ariel Eliorc78df142015-12-07 06:25:58 -05001433
1434 /* in case of error, need to free the previously
1435 * initiliazed hwfn 0.
1436 */
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001437 if (rc) {
Ariel Eliorc78df142015-12-07 06:25:58 -05001438 qed_init_free(p_hwfn);
1439 qed_mcp_free(p_hwfn);
1440 qed_hw_hwfn_free(p_hwfn);
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001441 }
1442 }
1443
Ariel Eliorc78df142015-12-07 06:25:58 -05001444 return rc;
Yuval Mintzfe56b9e2015-10-26 11:02:25 +02001445}
1446
1447void qed_hw_remove(struct qed_dev *cdev)
1448{
1449 int i;
1450
1451 for_each_hwfn(cdev, i) {
1452 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
1453
1454 qed_init_free(p_hwfn);
1455 qed_hw_hwfn_free(p_hwfn);
1456 qed_mcp_free(p_hwfn);
1457 }
1458}
1459
1460int qed_chain_alloc(struct qed_dev *cdev,
1461 enum qed_chain_use_mode intended_use,
1462 enum qed_chain_mode mode,
1463 u16 num_elems,
1464 size_t elem_size,
1465 struct qed_chain *p_chain)
1466{
1467 dma_addr_t p_pbl_phys = 0;
1468 void *p_pbl_virt = NULL;
1469 dma_addr_t p_phys = 0;
1470 void *p_virt = NULL;
1471 u16 page_cnt = 0;
1472 size_t size;
1473
1474 if (mode == QED_CHAIN_MODE_SINGLE)
1475 page_cnt = 1;
1476 else
1477 page_cnt = QED_CHAIN_PAGE_CNT(num_elems, elem_size, mode);
1478
1479 size = page_cnt * QED_CHAIN_PAGE_SIZE;
1480 p_virt = dma_alloc_coherent(&cdev->pdev->dev,
1481 size, &p_phys, GFP_KERNEL);
1482 if (!p_virt) {
1483 DP_NOTICE(cdev, "Failed to allocate chain mem\n");
1484 goto nomem;
1485 }
1486
1487 if (mode == QED_CHAIN_MODE_PBL) {
1488 size = page_cnt * QED_CHAIN_PBL_ENTRY_SIZE;
1489 p_pbl_virt = dma_alloc_coherent(&cdev->pdev->dev,
1490 size, &p_pbl_phys,
1491 GFP_KERNEL);
1492 if (!p_pbl_virt) {
1493 DP_NOTICE(cdev, "Failed to allocate chain pbl mem\n");
1494 goto nomem;
1495 }
1496
1497 qed_chain_pbl_init(p_chain, p_virt, p_phys, page_cnt,
1498 (u8)elem_size, intended_use,
1499 p_pbl_phys, p_pbl_virt);
1500 } else {
1501 qed_chain_init(p_chain, p_virt, p_phys, page_cnt,
1502 (u8)elem_size, intended_use, mode);
1503 }
1504
1505 return 0;
1506
1507nomem:
1508 dma_free_coherent(&cdev->pdev->dev,
1509 page_cnt * QED_CHAIN_PAGE_SIZE,
1510 p_virt, p_phys);
1511 dma_free_coherent(&cdev->pdev->dev,
1512 page_cnt * QED_CHAIN_PBL_ENTRY_SIZE,
1513 p_pbl_virt, p_pbl_phys);
1514
1515 return -ENOMEM;
1516}
1517
1518void qed_chain_free(struct qed_dev *cdev,
1519 struct qed_chain *p_chain)
1520{
1521 size_t size;
1522
1523 if (!p_chain->p_virt_addr)
1524 return;
1525
1526 if (p_chain->mode == QED_CHAIN_MODE_PBL) {
1527 size = p_chain->page_cnt * QED_CHAIN_PBL_ENTRY_SIZE;
1528 dma_free_coherent(&cdev->pdev->dev, size,
1529 p_chain->pbl.p_virt_table,
1530 p_chain->pbl.p_phys_table);
1531 }
1532
1533 size = p_chain->page_cnt * QED_CHAIN_PAGE_SIZE;
1534 dma_free_coherent(&cdev->pdev->dev, size,
1535 p_chain->p_virt_addr,
1536 p_chain->p_phys_addr);
1537}
Manish Chopracee4d262015-10-26 11:02:28 +02001538
Manish Chopra9df2ed02015-10-26 11:02:33 +02001539static void __qed_get_vport_stats(struct qed_dev *cdev,
1540 struct qed_eth_stats *stats)
1541{
1542 int i, j;
1543
1544 memset(stats, 0, sizeof(*stats));
1545
1546 for_each_hwfn(cdev, i) {
1547 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
1548 struct eth_mstorm_per_queue_stat mstats;
1549 struct eth_ustorm_per_queue_stat ustats;
1550 struct eth_pstorm_per_queue_stat pstats;
1551 struct tstorm_per_port_stat tstats;
1552 struct port_stats port_stats;
1553 struct qed_ptt *p_ptt = qed_ptt_acquire(p_hwfn);
1554
1555 if (!p_ptt) {
1556 DP_ERR(p_hwfn, "Failed to acquire ptt\n");
1557 continue;
1558 }
1559
1560 memset(&mstats, 0, sizeof(mstats));
1561 qed_memcpy_from(p_hwfn, p_ptt, &mstats,
1562 p_hwfn->storm_stats.mstats.address,
1563 p_hwfn->storm_stats.mstats.len);
1564
1565 memset(&ustats, 0, sizeof(ustats));
1566 qed_memcpy_from(p_hwfn, p_ptt, &ustats,
1567 p_hwfn->storm_stats.ustats.address,
1568 p_hwfn->storm_stats.ustats.len);
1569
1570 memset(&pstats, 0, sizeof(pstats));
1571 qed_memcpy_from(p_hwfn, p_ptt, &pstats,
1572 p_hwfn->storm_stats.pstats.address,
1573 p_hwfn->storm_stats.pstats.len);
1574
1575 memset(&tstats, 0, sizeof(tstats));
1576 qed_memcpy_from(p_hwfn, p_ptt, &tstats,
1577 p_hwfn->storm_stats.tstats.address,
1578 p_hwfn->storm_stats.tstats.len);
1579
1580 memset(&port_stats, 0, sizeof(port_stats));
1581
1582 if (p_hwfn->mcp_info)
1583 qed_memcpy_from(p_hwfn, p_ptt, &port_stats,
1584 p_hwfn->mcp_info->port_addr +
1585 offsetof(struct public_port, stats),
1586 sizeof(port_stats));
1587 qed_ptt_release(p_hwfn, p_ptt);
1588
1589 stats->no_buff_discards +=
1590 HILO_64_REGPAIR(mstats.no_buff_discard);
1591 stats->packet_too_big_discard +=
1592 HILO_64_REGPAIR(mstats.packet_too_big_discard);
1593 stats->ttl0_discard +=
1594 HILO_64_REGPAIR(mstats.ttl0_discard);
1595 stats->tpa_coalesced_pkts +=
1596 HILO_64_REGPAIR(mstats.tpa_coalesced_pkts);
1597 stats->tpa_coalesced_events +=
1598 HILO_64_REGPAIR(mstats.tpa_coalesced_events);
1599 stats->tpa_aborts_num +=
1600 HILO_64_REGPAIR(mstats.tpa_aborts_num);
1601 stats->tpa_coalesced_bytes +=
1602 HILO_64_REGPAIR(mstats.tpa_coalesced_bytes);
1603
1604 stats->rx_ucast_bytes +=
1605 HILO_64_REGPAIR(ustats.rcv_ucast_bytes);
1606 stats->rx_mcast_bytes +=
1607 HILO_64_REGPAIR(ustats.rcv_mcast_bytes);
1608 stats->rx_bcast_bytes +=
1609 HILO_64_REGPAIR(ustats.rcv_bcast_bytes);
1610 stats->rx_ucast_pkts +=
1611 HILO_64_REGPAIR(ustats.rcv_ucast_pkts);
1612 stats->rx_mcast_pkts +=
1613 HILO_64_REGPAIR(ustats.rcv_mcast_pkts);
1614 stats->rx_bcast_pkts +=
1615 HILO_64_REGPAIR(ustats.rcv_bcast_pkts);
1616
1617 stats->mftag_filter_discards +=
1618 HILO_64_REGPAIR(tstats.mftag_filter_discard);
1619 stats->mac_filter_discards +=
1620 HILO_64_REGPAIR(tstats.eth_mac_filter_discard);
1621
1622 stats->tx_ucast_bytes +=
1623 HILO_64_REGPAIR(pstats.sent_ucast_bytes);
1624 stats->tx_mcast_bytes +=
1625 HILO_64_REGPAIR(pstats.sent_mcast_bytes);
1626 stats->tx_bcast_bytes +=
1627 HILO_64_REGPAIR(pstats.sent_bcast_bytes);
1628 stats->tx_ucast_pkts +=
1629 HILO_64_REGPAIR(pstats.sent_ucast_pkts);
1630 stats->tx_mcast_pkts +=
1631 HILO_64_REGPAIR(pstats.sent_mcast_pkts);
1632 stats->tx_bcast_pkts +=
1633 HILO_64_REGPAIR(pstats.sent_bcast_pkts);
1634 stats->tx_err_drop_pkts +=
1635 HILO_64_REGPAIR(pstats.error_drop_pkts);
1636 stats->rx_64_byte_packets += port_stats.pmm.r64;
1637 stats->rx_127_byte_packets += port_stats.pmm.r127;
1638 stats->rx_255_byte_packets += port_stats.pmm.r255;
1639 stats->rx_511_byte_packets += port_stats.pmm.r511;
1640 stats->rx_1023_byte_packets += port_stats.pmm.r1023;
1641 stats->rx_1518_byte_packets += port_stats.pmm.r1518;
1642 stats->rx_1522_byte_packets += port_stats.pmm.r1522;
1643 stats->rx_2047_byte_packets += port_stats.pmm.r2047;
1644 stats->rx_4095_byte_packets += port_stats.pmm.r4095;
1645 stats->rx_9216_byte_packets += port_stats.pmm.r9216;
1646 stats->rx_16383_byte_packets += port_stats.pmm.r16383;
1647 stats->rx_crc_errors += port_stats.pmm.rfcs;
1648 stats->rx_mac_crtl_frames += port_stats.pmm.rxcf;
1649 stats->rx_pause_frames += port_stats.pmm.rxpf;
1650 stats->rx_pfc_frames += port_stats.pmm.rxpp;
1651 stats->rx_align_errors += port_stats.pmm.raln;
1652 stats->rx_carrier_errors += port_stats.pmm.rfcr;
1653 stats->rx_oversize_packets += port_stats.pmm.rovr;
1654 stats->rx_jabbers += port_stats.pmm.rjbr;
1655 stats->rx_undersize_packets += port_stats.pmm.rund;
1656 stats->rx_fragments += port_stats.pmm.rfrg;
1657 stats->tx_64_byte_packets += port_stats.pmm.t64;
1658 stats->tx_65_to_127_byte_packets += port_stats.pmm.t127;
1659 stats->tx_128_to_255_byte_packets += port_stats.pmm.t255;
1660 stats->tx_256_to_511_byte_packets += port_stats.pmm.t511;
1661 stats->tx_512_to_1023_byte_packets += port_stats.pmm.t1023;
1662 stats->tx_1024_to_1518_byte_packets += port_stats.pmm.t1518;
1663 stats->tx_1519_to_2047_byte_packets += port_stats.pmm.t2047;
1664 stats->tx_2048_to_4095_byte_packets += port_stats.pmm.t4095;
1665 stats->tx_4096_to_9216_byte_packets += port_stats.pmm.t9216;
1666 stats->tx_9217_to_16383_byte_packets += port_stats.pmm.t16383;
1667 stats->tx_pause_frames += port_stats.pmm.txpf;
1668 stats->tx_pfc_frames += port_stats.pmm.txpp;
1669 stats->tx_lpi_entry_count += port_stats.pmm.tlpiec;
1670 stats->tx_total_collisions += port_stats.pmm.tncl;
1671 stats->rx_mac_bytes += port_stats.pmm.rbyte;
1672 stats->rx_mac_uc_packets += port_stats.pmm.rxuca;
1673 stats->rx_mac_mc_packets += port_stats.pmm.rxmca;
1674 stats->rx_mac_bc_packets += port_stats.pmm.rxbca;
1675 stats->rx_mac_frames_ok += port_stats.pmm.rxpok;
1676 stats->tx_mac_bytes += port_stats.pmm.tbyte;
1677 stats->tx_mac_uc_packets += port_stats.pmm.txuca;
1678 stats->tx_mac_mc_packets += port_stats.pmm.txmca;
1679 stats->tx_mac_bc_packets += port_stats.pmm.txbca;
1680 stats->tx_mac_ctrl_frames += port_stats.pmm.txcf;
1681
1682 for (j = 0; j < 8; j++) {
1683 stats->brb_truncates += port_stats.brb.brb_truncate[j];
1684 stats->brb_discards += port_stats.brb.brb_discard[j];
1685 }
1686 }
1687}
1688
1689void qed_get_vport_stats(struct qed_dev *cdev,
1690 struct qed_eth_stats *stats)
1691{
1692 u32 i;
1693
1694 if (!cdev) {
1695 memset(stats, 0, sizeof(*stats));
1696 return;
1697 }
1698
1699 __qed_get_vport_stats(cdev, stats);
1700
1701 if (!cdev->reset_stats)
1702 return;
1703
1704 /* Reduce the statistics baseline */
1705 for (i = 0; i < sizeof(struct qed_eth_stats) / sizeof(u64); i++)
1706 ((u64 *)stats)[i] -= ((u64 *)cdev->reset_stats)[i];
1707}
1708
1709/* zeroes V-PORT specific portion of stats (Port stats remains untouched) */
1710void qed_reset_vport_stats(struct qed_dev *cdev)
1711{
1712 int i;
1713
1714 for_each_hwfn(cdev, i) {
1715 struct qed_hwfn *p_hwfn = &cdev->hwfns[i];
1716 struct eth_mstorm_per_queue_stat mstats;
1717 struct eth_ustorm_per_queue_stat ustats;
1718 struct eth_pstorm_per_queue_stat pstats;
1719 struct qed_ptt *p_ptt = qed_ptt_acquire(p_hwfn);
1720
1721 if (!p_ptt) {
1722 DP_ERR(p_hwfn, "Failed to acquire ptt\n");
1723 continue;
1724 }
1725
1726 memset(&mstats, 0, sizeof(mstats));
1727 qed_memcpy_to(p_hwfn, p_ptt,
1728 p_hwfn->storm_stats.mstats.address,
1729 &mstats,
1730 p_hwfn->storm_stats.mstats.len);
1731
1732 memset(&ustats, 0, sizeof(ustats));
1733 qed_memcpy_to(p_hwfn, p_ptt,
1734 p_hwfn->storm_stats.ustats.address,
1735 &ustats,
1736 p_hwfn->storm_stats.ustats.len);
1737
1738 memset(&pstats, 0, sizeof(pstats));
1739 qed_memcpy_to(p_hwfn, p_ptt,
1740 p_hwfn->storm_stats.pstats.address,
1741 &pstats,
1742 p_hwfn->storm_stats.pstats.len);
1743
1744 qed_ptt_release(p_hwfn, p_ptt);
1745 }
1746
1747 /* PORT statistics are not necessarily reset, so we need to
1748 * read and create a baseline for future statistics.
1749 */
1750 if (!cdev->reset_stats)
1751 DP_INFO(cdev, "Reset stats not allocated\n");
1752 else
1753 __qed_get_vport_stats(cdev, cdev->reset_stats);
1754}
1755
Manish Chopracee4d262015-10-26 11:02:28 +02001756int qed_fw_l2_queue(struct qed_hwfn *p_hwfn,
1757 u16 src_id, u16 *dst_id)
1758{
1759 if (src_id >= RESC_NUM(p_hwfn, QED_L2_QUEUE)) {
1760 u16 min, max;
1761
1762 min = (u16)RESC_START(p_hwfn, QED_L2_QUEUE);
1763 max = min + RESC_NUM(p_hwfn, QED_L2_QUEUE);
1764 DP_NOTICE(p_hwfn,
1765 "l2_queue id [%d] is not valid, available indices [%d - %d]\n",
1766 src_id, min, max);
1767
1768 return -EINVAL;
1769 }
1770
1771 *dst_id = RESC_START(p_hwfn, QED_L2_QUEUE) + src_id;
1772
1773 return 0;
1774}
1775
1776int qed_fw_vport(struct qed_hwfn *p_hwfn,
1777 u8 src_id, u8 *dst_id)
1778{
1779 if (src_id >= RESC_NUM(p_hwfn, QED_VPORT)) {
1780 u8 min, max;
1781
1782 min = (u8)RESC_START(p_hwfn, QED_VPORT);
1783 max = min + RESC_NUM(p_hwfn, QED_VPORT);
1784 DP_NOTICE(p_hwfn,
1785 "vport id [%d] is not valid, available indices [%d - %d]\n",
1786 src_id, min, max);
1787
1788 return -EINVAL;
1789 }
1790
1791 *dst_id = RESC_START(p_hwfn, QED_VPORT) + src_id;
1792
1793 return 0;
1794}
1795
1796int qed_fw_rss_eng(struct qed_hwfn *p_hwfn,
1797 u8 src_id, u8 *dst_id)
1798{
1799 if (src_id >= RESC_NUM(p_hwfn, QED_RSS_ENG)) {
1800 u8 min, max;
1801
1802 min = (u8)RESC_START(p_hwfn, QED_RSS_ENG);
1803 max = min + RESC_NUM(p_hwfn, QED_RSS_ENG);
1804 DP_NOTICE(p_hwfn,
1805 "rss_eng id [%d] is not valid, available indices [%d - %d]\n",
1806 src_id, min, max);
1807
1808 return -EINVAL;
1809 }
1810
1811 *dst_id = RESC_START(p_hwfn, QED_RSS_ENG) + src_id;
1812
1813 return 0;
1814}