1 /* QLogic qed NIC Driver
2 * Copyright (c) 2015-2017 QLogic Corporation
4 * 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:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
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.
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
33 #include <linux/types.h>
34 #include <asm/byteorder.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>
44 #include <linux/vmalloc.h>
45 #include <linux/etherdevice.h>
46 #include <linux/qed/qed_chain.h>
47 #include <linux/qed/qed_if.h>
51 #include "qed_dev_api.h"
55 #include "qed_init_ops.h"
57 #include "qed_iscsi.h"
61 #include "qed_reg_addr.h"
63 #include "qed_sriov.h"
67 static DEFINE_SPINLOCK(qm_lock
);
69 #define QED_MIN_DPIS (4)
70 #define QED_MIN_PWM_REGION (QED_WID_SIZE * QED_MIN_DPIS)
72 static u32
qed_hw_bar_size(struct qed_hwfn
*p_hwfn
,
73 struct qed_ptt
*p_ptt
, enum BAR_ID bar_id
)
75 u32 bar_reg
= (bar_id
== BAR_ID_0
?
76 PGLUE_B_REG_PF_BAR0_SIZE
: PGLUE_B_REG_PF_BAR1_SIZE
);
79 if (IS_VF(p_hwfn
->cdev
))
80 return qed_vf_hw_bar_size(p_hwfn
, bar_id
);
82 val
= qed_rd(p_hwfn
, p_ptt
, bar_reg
);
84 return 1 << (val
+ 15);
86 /* Old MFW initialized above registered only conditionally */
87 if (p_hwfn
->cdev
->num_hwfns
> 1) {
89 "BAR size not configured. Assuming BAR size of 256kB for GRC and 512kB for DB\n");
90 return BAR_ID_0
? 256 * 1024 : 512 * 1024;
93 "BAR size not configured. Assuming BAR size of 512kB for GRC and 512kB for DB\n");
98 void qed_init_dp(struct qed_dev
*cdev
, u32 dp_module
, u8 dp_level
)
102 cdev
->dp_level
= dp_level
;
103 cdev
->dp_module
= dp_module
;
104 for (i
= 0; i
< MAX_HWFNS_PER_DEVICE
; i
++) {
105 struct qed_hwfn
*p_hwfn
= &cdev
->hwfns
[i
];
107 p_hwfn
->dp_level
= dp_level
;
108 p_hwfn
->dp_module
= dp_module
;
112 void qed_init_struct(struct qed_dev
*cdev
)
116 for (i
= 0; i
< MAX_HWFNS_PER_DEVICE
; i
++) {
117 struct qed_hwfn
*p_hwfn
= &cdev
->hwfns
[i
];
121 p_hwfn
->b_active
= false;
123 mutex_init(&p_hwfn
->dmae_info
.mutex
);
126 /* hwfn 0 is always active */
127 cdev
->hwfns
[0].b_active
= true;
129 /* set the default cache alignment to 128 */
130 cdev
->cache_shift
= 7;
133 static void qed_qm_info_free(struct qed_hwfn
*p_hwfn
)
135 struct qed_qm_info
*qm_info
= &p_hwfn
->qm_info
;
137 kfree(qm_info
->qm_pq_params
);
138 qm_info
->qm_pq_params
= NULL
;
139 kfree(qm_info
->qm_vport_params
);
140 qm_info
->qm_vport_params
= NULL
;
141 kfree(qm_info
->qm_port_params
);
142 qm_info
->qm_port_params
= NULL
;
143 kfree(qm_info
->wfq_data
);
144 qm_info
->wfq_data
= NULL
;
147 void qed_resc_free(struct qed_dev
*cdev
)
152 for_each_hwfn(cdev
, i
)
153 qed_l2_free(&cdev
->hwfns
[i
]);
157 kfree(cdev
->fw_data
);
158 cdev
->fw_data
= NULL
;
160 kfree(cdev
->reset_stats
);
161 cdev
->reset_stats
= NULL
;
163 for_each_hwfn(cdev
, i
) {
164 struct qed_hwfn
*p_hwfn
= &cdev
->hwfns
[i
];
166 qed_cxt_mngr_free(p_hwfn
);
167 qed_qm_info_free(p_hwfn
);
168 qed_spq_free(p_hwfn
);
170 qed_consq_free(p_hwfn
);
171 qed_int_free(p_hwfn
);
172 #ifdef CONFIG_QED_LL2
173 qed_ll2_free(p_hwfn
);
175 if (p_hwfn
->hw_info
.personality
== QED_PCI_FCOE
)
176 qed_fcoe_free(p_hwfn
);
178 if (p_hwfn
->hw_info
.personality
== QED_PCI_ISCSI
) {
179 qed_iscsi_free(p_hwfn
);
180 qed_ooo_free(p_hwfn
);
182 qed_iov_free(p_hwfn
);
184 qed_dmae_info_free(p_hwfn
);
185 qed_dcbx_info_free(p_hwfn
);
189 /******************** QM initialization *******************/
190 #define ACTIVE_TCS_BMAP 0x9f
191 #define ACTIVE_TCS_BMAP_4PORT_K2 0xf
193 /* determines the physical queue flags for a given PF. */
194 static u32
qed_get_pq_flags(struct qed_hwfn
*p_hwfn
)
202 if (IS_QED_SRIOV(p_hwfn
->cdev
))
203 flags
|= PQ_FLAGS_VFS
;
206 switch (p_hwfn
->hw_info
.personality
) {
208 flags
|= PQ_FLAGS_MCOS
;
211 flags
|= PQ_FLAGS_OFLD
;
214 flags
|= PQ_FLAGS_ACK
| PQ_FLAGS_OOO
| PQ_FLAGS_OFLD
;
216 case QED_PCI_ETH_ROCE
:
217 flags
|= PQ_FLAGS_MCOS
| PQ_FLAGS_OFLD
| PQ_FLAGS_LLT
;
219 case QED_PCI_ETH_IWARP
:
220 flags
|= PQ_FLAGS_MCOS
| PQ_FLAGS_ACK
| PQ_FLAGS_OOO
|
225 "unknown personality %d\n", p_hwfn
->hw_info
.personality
);
232 /* Getters for resource amounts necessary for qm initialization */
233 u8
qed_init_qm_get_num_tcs(struct qed_hwfn
*p_hwfn
)
235 return p_hwfn
->hw_info
.num_hw_tc
;
238 u16
qed_init_qm_get_num_vfs(struct qed_hwfn
*p_hwfn
)
240 return IS_QED_SRIOV(p_hwfn
->cdev
) ?
241 p_hwfn
->cdev
->p_iov_info
->total_vfs
: 0;
244 #define NUM_DEFAULT_RLS 1
246 u16
qed_init_qm_get_num_pf_rls(struct qed_hwfn
*p_hwfn
)
248 u16 num_pf_rls
, num_vfs
= qed_init_qm_get_num_vfs(p_hwfn
);
250 /* num RLs can't exceed resource amount of rls or vports */
251 num_pf_rls
= (u16
) min_t(u32
, RESC_NUM(p_hwfn
, QED_RL
),
252 RESC_NUM(p_hwfn
, QED_VPORT
));
254 /* Make sure after we reserve there's something left */
255 if (num_pf_rls
< num_vfs
+ NUM_DEFAULT_RLS
)
258 /* subtract rls necessary for VFs and one default one for the PF */
259 num_pf_rls
-= num_vfs
+ NUM_DEFAULT_RLS
;
264 u16
qed_init_qm_get_num_vports(struct qed_hwfn
*p_hwfn
)
266 u32 pq_flags
= qed_get_pq_flags(p_hwfn
);
268 /* all pqs share the same vport, except for vfs and pf_rl pqs */
269 return (!!(PQ_FLAGS_RLS
& pq_flags
)) *
270 qed_init_qm_get_num_pf_rls(p_hwfn
) +
271 (!!(PQ_FLAGS_VFS
& pq_flags
)) *
272 qed_init_qm_get_num_vfs(p_hwfn
) + 1;
275 /* calc amount of PQs according to the requested flags */
276 u16
qed_init_qm_get_num_pqs(struct qed_hwfn
*p_hwfn
)
278 u32 pq_flags
= qed_get_pq_flags(p_hwfn
);
280 return (!!(PQ_FLAGS_RLS
& pq_flags
)) *
281 qed_init_qm_get_num_pf_rls(p_hwfn
) +
282 (!!(PQ_FLAGS_MCOS
& pq_flags
)) *
283 qed_init_qm_get_num_tcs(p_hwfn
) +
284 (!!(PQ_FLAGS_LB
& pq_flags
)) + (!!(PQ_FLAGS_OOO
& pq_flags
)) +
285 (!!(PQ_FLAGS_ACK
& pq_flags
)) + (!!(PQ_FLAGS_OFLD
& pq_flags
)) +
286 (!!(PQ_FLAGS_LLT
& pq_flags
)) +
287 (!!(PQ_FLAGS_VFS
& pq_flags
)) * qed_init_qm_get_num_vfs(p_hwfn
);
290 /* initialize the top level QM params */
291 static void qed_init_qm_params(struct qed_hwfn
*p_hwfn
)
293 struct qed_qm_info
*qm_info
= &p_hwfn
->qm_info
;
296 /* pq and vport bases for this PF */
297 qm_info
->start_pq
= (u16
) RESC_START(p_hwfn
, QED_PQ
);
298 qm_info
->start_vport
= (u8
) RESC_START(p_hwfn
, QED_VPORT
);
300 /* rate limiting and weighted fair queueing are always enabled */
301 qm_info
->vport_rl_en
= 1;
302 qm_info
->vport_wfq_en
= 1;
304 /* TC config is different for AH 4 port */
305 four_port
= p_hwfn
->cdev
->num_ports_in_engine
== MAX_NUM_PORTS_K2
;
307 /* in AH 4 port we have fewer TCs per port */
308 qm_info
->max_phys_tcs_per_port
= four_port
? NUM_PHYS_TCS_4PORT_K2
:
311 /* unless MFW indicated otherwise, ooo_tc == 3 for
312 * AH 4-port and 4 otherwise.
314 if (!qm_info
->ooo_tc
)
315 qm_info
->ooo_tc
= four_port
? DCBX_TCP_OOO_K2_4PORT_TC
:
319 /* initialize qm vport params */
320 static void qed_init_qm_vport_params(struct qed_hwfn
*p_hwfn
)
322 struct qed_qm_info
*qm_info
= &p_hwfn
->qm_info
;
325 /* all vports participate in weighted fair queueing */
326 for (i
= 0; i
< qed_init_qm_get_num_vports(p_hwfn
); i
++)
327 qm_info
->qm_vport_params
[i
].vport_wfq
= 1;
330 /* initialize qm port params */
331 static void qed_init_qm_port_params(struct qed_hwfn
*p_hwfn
)
333 /* Initialize qm port parameters */
334 u8 i
, active_phys_tcs
, num_ports
= p_hwfn
->cdev
->num_ports_in_engine
;
336 /* indicate how ooo and high pri traffic is dealt with */
337 active_phys_tcs
= num_ports
== MAX_NUM_PORTS_K2
?
338 ACTIVE_TCS_BMAP_4PORT_K2
:
341 for (i
= 0; i
< num_ports
; i
++) {
342 struct init_qm_port_params
*p_qm_port
=
343 &p_hwfn
->qm_info
.qm_port_params
[i
];
345 p_qm_port
->active
= 1;
346 p_qm_port
->active_phys_tcs
= active_phys_tcs
;
347 p_qm_port
->num_pbf_cmd_lines
= PBF_MAX_CMD_LINES
/ num_ports
;
348 p_qm_port
->num_btb_blocks
= BTB_MAX_BLOCKS
/ num_ports
;
352 /* Reset the params which must be reset for qm init. QM init may be called as
353 * a result of flows other than driver load (e.g. dcbx renegotiation). Other
354 * params may be affected by the init but would simply recalculate to the same
355 * values. The allocations made for QM init, ports, vports, pqs and vfqs are not
356 * affected as these amounts stay the same.
358 static void qed_init_qm_reset_params(struct qed_hwfn
*p_hwfn
)
360 struct qed_qm_info
*qm_info
= &p_hwfn
->qm_info
;
362 qm_info
->num_pqs
= 0;
363 qm_info
->num_vports
= 0;
364 qm_info
->num_pf_rls
= 0;
365 qm_info
->num_vf_pqs
= 0;
366 qm_info
->first_vf_pq
= 0;
367 qm_info
->first_mcos_pq
= 0;
368 qm_info
->first_rl_pq
= 0;
371 static void qed_init_qm_advance_vport(struct qed_hwfn
*p_hwfn
)
373 struct qed_qm_info
*qm_info
= &p_hwfn
->qm_info
;
375 qm_info
->num_vports
++;
377 if (qm_info
->num_vports
> qed_init_qm_get_num_vports(p_hwfn
))
379 "vport overflow! qm_info->num_vports %d, qm_init_get_num_vports() %d\n",
380 qm_info
->num_vports
, qed_init_qm_get_num_vports(p_hwfn
));
383 /* initialize a single pq and manage qm_info resources accounting.
384 * The pq_init_flags param determines whether the PQ is rate limited
385 * (for VF or PF) and whether a new vport is allocated to the pq or not
386 * (i.e. vport will be shared).
389 /* flags for pq init */
390 #define PQ_INIT_SHARE_VPORT (1 << 0)
391 #define PQ_INIT_PF_RL (1 << 1)
392 #define PQ_INIT_VF_RL (1 << 2)
394 /* defines for pq init */
395 #define PQ_INIT_DEFAULT_WRR_GROUP 1
396 #define PQ_INIT_DEFAULT_TC 0
397 #define PQ_INIT_OFLD_TC (p_hwfn->hw_info.offload_tc)
399 static void qed_init_qm_pq(struct qed_hwfn
*p_hwfn
,
400 struct qed_qm_info
*qm_info
,
401 u8 tc
, u32 pq_init_flags
)
403 u16 pq_idx
= qm_info
->num_pqs
, max_pq
= qed_init_qm_get_num_pqs(p_hwfn
);
407 "pq overflow! pq %d, max pq %d\n", pq_idx
, max_pq
);
410 qm_info
->qm_pq_params
[pq_idx
].vport_id
= qm_info
->start_vport
+
412 qm_info
->qm_pq_params
[pq_idx
].tc_id
= tc
;
413 qm_info
->qm_pq_params
[pq_idx
].wrr_group
= PQ_INIT_DEFAULT_WRR_GROUP
;
414 qm_info
->qm_pq_params
[pq_idx
].rl_valid
=
415 (pq_init_flags
& PQ_INIT_PF_RL
|| pq_init_flags
& PQ_INIT_VF_RL
);
417 /* qm params accounting */
419 if (!(pq_init_flags
& PQ_INIT_SHARE_VPORT
))
420 qm_info
->num_vports
++;
422 if (pq_init_flags
& PQ_INIT_PF_RL
)
423 qm_info
->num_pf_rls
++;
425 if (qm_info
->num_vports
> qed_init_qm_get_num_vports(p_hwfn
))
427 "vport overflow! qm_info->num_vports %d, qm_init_get_num_vports() %d\n",
428 qm_info
->num_vports
, qed_init_qm_get_num_vports(p_hwfn
));
430 if (qm_info
->num_pf_rls
> qed_init_qm_get_num_pf_rls(p_hwfn
))
432 "rl overflow! qm_info->num_pf_rls %d, qm_init_get_num_pf_rls() %d\n",
433 qm_info
->num_pf_rls
, qed_init_qm_get_num_pf_rls(p_hwfn
));
436 /* get pq index according to PQ_FLAGS */
437 static u16
*qed_init_qm_get_idx_from_flags(struct qed_hwfn
*p_hwfn
,
440 struct qed_qm_info
*qm_info
= &p_hwfn
->qm_info
;
442 /* Can't have multiple flags set here */
443 if (bitmap_weight((unsigned long *)&pq_flags
, sizeof(pq_flags
)) > 1)
448 return &qm_info
->first_rl_pq
;
450 return &qm_info
->first_mcos_pq
;
452 return &qm_info
->pure_lb_pq
;
454 return &qm_info
->ooo_pq
;
456 return &qm_info
->pure_ack_pq
;
458 return &qm_info
->offload_pq
;
460 return &qm_info
->low_latency_pq
;
462 return &qm_info
->first_vf_pq
;
468 DP_ERR(p_hwfn
, "BAD pq flags %d\n", pq_flags
);
472 /* save pq index in qm info */
473 static void qed_init_qm_set_idx(struct qed_hwfn
*p_hwfn
,
474 u32 pq_flags
, u16 pq_val
)
476 u16
*base_pq_idx
= qed_init_qm_get_idx_from_flags(p_hwfn
, pq_flags
);
478 *base_pq_idx
= p_hwfn
->qm_info
.start_pq
+ pq_val
;
481 /* get tx pq index, with the PQ TX base already set (ready for context init) */
482 u16
qed_get_cm_pq_idx(struct qed_hwfn
*p_hwfn
, u32 pq_flags
)
484 u16
*base_pq_idx
= qed_init_qm_get_idx_from_flags(p_hwfn
, pq_flags
);
486 return *base_pq_idx
+ CM_TX_PQ_BASE
;
489 u16
qed_get_cm_pq_idx_mcos(struct qed_hwfn
*p_hwfn
, u8 tc
)
491 u8 max_tc
= qed_init_qm_get_num_tcs(p_hwfn
);
494 DP_ERR(p_hwfn
, "tc %d must be smaller than %d\n", tc
, max_tc
);
496 return qed_get_cm_pq_idx(p_hwfn
, PQ_FLAGS_MCOS
) + tc
;
499 u16
qed_get_cm_pq_idx_vf(struct qed_hwfn
*p_hwfn
, u16 vf
)
501 u16 max_vf
= qed_init_qm_get_num_vfs(p_hwfn
);
504 DP_ERR(p_hwfn
, "vf %d must be smaller than %d\n", vf
, max_vf
);
506 return qed_get_cm_pq_idx(p_hwfn
, PQ_FLAGS_VFS
) + vf
;
509 u16
qed_get_cm_pq_idx_rl(struct qed_hwfn
*p_hwfn
, u8 rl
)
511 u16 max_rl
= qed_init_qm_get_num_pf_rls(p_hwfn
);
514 DP_ERR(p_hwfn
, "rl %d must be smaller than %d\n", rl
, max_rl
);
516 return qed_get_cm_pq_idx(p_hwfn
, PQ_FLAGS_RLS
) + rl
;
519 /* Functions for creating specific types of pqs */
520 static void qed_init_qm_lb_pq(struct qed_hwfn
*p_hwfn
)
522 struct qed_qm_info
*qm_info
= &p_hwfn
->qm_info
;
524 if (!(qed_get_pq_flags(p_hwfn
) & PQ_FLAGS_LB
))
527 qed_init_qm_set_idx(p_hwfn
, PQ_FLAGS_LB
, qm_info
->num_pqs
);
528 qed_init_qm_pq(p_hwfn
, qm_info
, PURE_LB_TC
, PQ_INIT_SHARE_VPORT
);
531 static void qed_init_qm_ooo_pq(struct qed_hwfn
*p_hwfn
)
533 struct qed_qm_info
*qm_info
= &p_hwfn
->qm_info
;
535 if (!(qed_get_pq_flags(p_hwfn
) & PQ_FLAGS_OOO
))
538 qed_init_qm_set_idx(p_hwfn
, PQ_FLAGS_OOO
, qm_info
->num_pqs
);
539 qed_init_qm_pq(p_hwfn
, qm_info
, qm_info
->ooo_tc
, PQ_INIT_SHARE_VPORT
);
542 static void qed_init_qm_pure_ack_pq(struct qed_hwfn
*p_hwfn
)
544 struct qed_qm_info
*qm_info
= &p_hwfn
->qm_info
;
546 if (!(qed_get_pq_flags(p_hwfn
) & PQ_FLAGS_ACK
))
549 qed_init_qm_set_idx(p_hwfn
, PQ_FLAGS_ACK
, qm_info
->num_pqs
);
550 qed_init_qm_pq(p_hwfn
, qm_info
, PQ_INIT_OFLD_TC
, PQ_INIT_SHARE_VPORT
);
553 static void qed_init_qm_offload_pq(struct qed_hwfn
*p_hwfn
)
555 struct qed_qm_info
*qm_info
= &p_hwfn
->qm_info
;
557 if (!(qed_get_pq_flags(p_hwfn
) & PQ_FLAGS_OFLD
))
560 qed_init_qm_set_idx(p_hwfn
, PQ_FLAGS_OFLD
, qm_info
->num_pqs
);
561 qed_init_qm_pq(p_hwfn
, qm_info
, PQ_INIT_OFLD_TC
, PQ_INIT_SHARE_VPORT
);
564 static void qed_init_qm_low_latency_pq(struct qed_hwfn
*p_hwfn
)
566 struct qed_qm_info
*qm_info
= &p_hwfn
->qm_info
;
568 if (!(qed_get_pq_flags(p_hwfn
) & PQ_FLAGS_LLT
))
571 qed_init_qm_set_idx(p_hwfn
, PQ_FLAGS_LLT
, qm_info
->num_pqs
);
572 qed_init_qm_pq(p_hwfn
, qm_info
, PQ_INIT_OFLD_TC
, PQ_INIT_SHARE_VPORT
);
575 static void qed_init_qm_mcos_pqs(struct qed_hwfn
*p_hwfn
)
577 struct qed_qm_info
*qm_info
= &p_hwfn
->qm_info
;
580 if (!(qed_get_pq_flags(p_hwfn
) & PQ_FLAGS_MCOS
))
583 qed_init_qm_set_idx(p_hwfn
, PQ_FLAGS_MCOS
, qm_info
->num_pqs
);
584 for (tc_idx
= 0; tc_idx
< qed_init_qm_get_num_tcs(p_hwfn
); tc_idx
++)
585 qed_init_qm_pq(p_hwfn
, qm_info
, tc_idx
, PQ_INIT_SHARE_VPORT
);
588 static void qed_init_qm_vf_pqs(struct qed_hwfn
*p_hwfn
)
590 struct qed_qm_info
*qm_info
= &p_hwfn
->qm_info
;
591 u16 vf_idx
, num_vfs
= qed_init_qm_get_num_vfs(p_hwfn
);
593 if (!(qed_get_pq_flags(p_hwfn
) & PQ_FLAGS_VFS
))
596 qed_init_qm_set_idx(p_hwfn
, PQ_FLAGS_VFS
, qm_info
->num_pqs
);
597 qm_info
->num_vf_pqs
= num_vfs
;
598 for (vf_idx
= 0; vf_idx
< num_vfs
; vf_idx
++)
599 qed_init_qm_pq(p_hwfn
,
600 qm_info
, PQ_INIT_DEFAULT_TC
, PQ_INIT_VF_RL
);
603 static void qed_init_qm_rl_pqs(struct qed_hwfn
*p_hwfn
)
605 u16 pf_rls_idx
, num_pf_rls
= qed_init_qm_get_num_pf_rls(p_hwfn
);
606 struct qed_qm_info
*qm_info
= &p_hwfn
->qm_info
;
608 if (!(qed_get_pq_flags(p_hwfn
) & PQ_FLAGS_RLS
))
611 qed_init_qm_set_idx(p_hwfn
, PQ_FLAGS_RLS
, qm_info
->num_pqs
);
612 for (pf_rls_idx
= 0; pf_rls_idx
< num_pf_rls
; pf_rls_idx
++)
613 qed_init_qm_pq(p_hwfn
, qm_info
, PQ_INIT_OFLD_TC
, PQ_INIT_PF_RL
);
616 static void qed_init_qm_pq_params(struct qed_hwfn
*p_hwfn
)
618 /* rate limited pqs, must come first (FW assumption) */
619 qed_init_qm_rl_pqs(p_hwfn
);
621 /* pqs for multi cos */
622 qed_init_qm_mcos_pqs(p_hwfn
);
624 /* pure loopback pq */
625 qed_init_qm_lb_pq(p_hwfn
);
627 /* out of order pq */
628 qed_init_qm_ooo_pq(p_hwfn
);
631 qed_init_qm_pure_ack_pq(p_hwfn
);
633 /* pq for offloaded protocol */
634 qed_init_qm_offload_pq(p_hwfn
);
637 qed_init_qm_low_latency_pq(p_hwfn
);
639 /* done sharing vports */
640 qed_init_qm_advance_vport(p_hwfn
);
643 qed_init_qm_vf_pqs(p_hwfn
);
646 /* compare values of getters against resources amounts */
647 static int qed_init_qm_sanity(struct qed_hwfn
*p_hwfn
)
649 if (qed_init_qm_get_num_vports(p_hwfn
) > RESC_NUM(p_hwfn
, QED_VPORT
)) {
650 DP_ERR(p_hwfn
, "requested amount of vports exceeds resource\n");
654 if (qed_init_qm_get_num_pqs(p_hwfn
) > RESC_NUM(p_hwfn
, QED_PQ
)) {
655 DP_ERR(p_hwfn
, "requested amount of pqs exceeds resource\n");
662 static void qed_dp_init_qm_params(struct qed_hwfn
*p_hwfn
)
664 struct qed_qm_info
*qm_info
= &p_hwfn
->qm_info
;
665 struct init_qm_vport_params
*vport
;
666 struct init_qm_port_params
*port
;
667 struct init_qm_pq_params
*pq
;
670 /* top level params */
673 "qm init top level params: start_pq %d, start_vport %d, pure_lb_pq %d, offload_pq %d, pure_ack_pq %d\n",
675 qm_info
->start_vport
,
677 qm_info
->offload_pq
, qm_info
->pure_ack_pq
);
680 "ooo_pq %d, first_vf_pq %d, num_pqs %d, num_vf_pqs %d, num_vports %d, max_phys_tcs_per_port %d\n",
682 qm_info
->first_vf_pq
,
685 qm_info
->num_vports
, qm_info
->max_phys_tcs_per_port
);
688 "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",
691 qm_info
->vport_rl_en
,
692 qm_info
->vport_wfq_en
,
695 qm_info
->num_pf_rls
, qed_get_pq_flags(p_hwfn
));
698 for (i
= 0; i
< p_hwfn
->cdev
->num_ports_in_engine
; i
++) {
699 port
= &(qm_info
->qm_port_params
[i
]);
702 "port idx %d, active %d, active_phys_tcs %d, num_pbf_cmd_lines %d, num_btb_blocks %d, reserved %d\n",
705 port
->active_phys_tcs
,
706 port
->num_pbf_cmd_lines
,
707 port
->num_btb_blocks
, port
->reserved
);
711 for (i
= 0; i
< qm_info
->num_vports
; i
++) {
712 vport
= &(qm_info
->qm_vport_params
[i
]);
715 "vport idx %d, vport_rl %d, wfq %d, first_tx_pq_id [ ",
716 qm_info
->start_vport
+ i
,
717 vport
->vport_rl
, vport
->vport_wfq
);
718 for (tc
= 0; tc
< NUM_OF_TCS
; tc
++)
721 "%d ", vport
->first_tx_pq_id
[tc
]);
722 DP_VERBOSE(p_hwfn
, NETIF_MSG_HW
, "]\n");
726 for (i
= 0; i
< qm_info
->num_pqs
; i
++) {
727 pq
= &(qm_info
->qm_pq_params
[i
]);
730 "pq idx %d, vport_id %d, tc %d, wrr_grp %d, rl_valid %d\n",
731 qm_info
->start_pq
+ i
,
733 pq
->tc_id
, pq
->wrr_group
, pq
->rl_valid
);
737 static void qed_init_qm_info(struct qed_hwfn
*p_hwfn
)
739 /* reset params required for init run */
740 qed_init_qm_reset_params(p_hwfn
);
742 /* init QM top level params */
743 qed_init_qm_params(p_hwfn
);
745 /* init QM port params */
746 qed_init_qm_port_params(p_hwfn
);
748 /* init QM vport params */
749 qed_init_qm_vport_params(p_hwfn
);
751 /* init QM physical queue params */
752 qed_init_qm_pq_params(p_hwfn
);
754 /* display all that init */
755 qed_dp_init_qm_params(p_hwfn
);
758 /* This function reconfigures the QM pf on the fly.
759 * For this purpose we:
760 * 1. reconfigure the QM database
761 * 2. set new values to runtime array
762 * 3. send an sdm_qm_cmd through the rbc interface to stop the QM
763 * 4. activate init tool in QM_PF stage
764 * 5. send an sdm_qm_cmd through rbc interface to release the QM
766 int qed_qm_reconf(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
)
768 struct qed_qm_info
*qm_info
= &p_hwfn
->qm_info
;
772 /* initialize qed's qm data structure */
773 qed_init_qm_info(p_hwfn
);
775 /* stop PF's qm queues */
776 spin_lock_bh(&qm_lock
);
777 b_rc
= qed_send_qm_stop_cmd(p_hwfn
, p_ptt
, false, true,
778 qm_info
->start_pq
, qm_info
->num_pqs
);
779 spin_unlock_bh(&qm_lock
);
783 /* clear the QM_PF runtime phase leftovers from previous init */
784 qed_init_clear_rt_data(p_hwfn
);
786 /* prepare QM portion of runtime array */
787 qed_qm_init_pf(p_hwfn
, p_ptt
, false);
789 /* activate init tool on runtime array */
790 rc
= qed_init_run(p_hwfn
, p_ptt
, PHASE_QM_PF
, p_hwfn
->rel_pf_id
,
791 p_hwfn
->hw_info
.hw_mode
);
795 /* start PF's qm queues */
796 spin_lock_bh(&qm_lock
);
797 b_rc
= qed_send_qm_stop_cmd(p_hwfn
, p_ptt
, true, true,
798 qm_info
->start_pq
, qm_info
->num_pqs
);
799 spin_unlock_bh(&qm_lock
);
806 static int qed_alloc_qm_data(struct qed_hwfn
*p_hwfn
)
808 struct qed_qm_info
*qm_info
= &p_hwfn
->qm_info
;
811 rc
= qed_init_qm_sanity(p_hwfn
);
815 qm_info
->qm_pq_params
= kzalloc(sizeof(*qm_info
->qm_pq_params
) *
816 qed_init_qm_get_num_pqs(p_hwfn
),
818 if (!qm_info
->qm_pq_params
)
821 qm_info
->qm_vport_params
= kzalloc(sizeof(*qm_info
->qm_vport_params
) *
822 qed_init_qm_get_num_vports(p_hwfn
),
824 if (!qm_info
->qm_vport_params
)
827 qm_info
->qm_port_params
= kzalloc(sizeof(*qm_info
->qm_port_params
) *
828 p_hwfn
->cdev
->num_ports_in_engine
,
830 if (!qm_info
->qm_port_params
)
833 qm_info
->wfq_data
= kzalloc(sizeof(*qm_info
->wfq_data
) *
834 qed_init_qm_get_num_vports(p_hwfn
),
836 if (!qm_info
->wfq_data
)
842 DP_NOTICE(p_hwfn
, "Failed to allocate memory for QM params\n");
843 qed_qm_info_free(p_hwfn
);
847 int qed_resc_alloc(struct qed_dev
*cdev
)
849 u32 rdma_tasks
, excess_tasks
;
854 for_each_hwfn(cdev
, i
) {
855 rc
= qed_l2_alloc(&cdev
->hwfns
[i
]);
862 cdev
->fw_data
= kzalloc(sizeof(*cdev
->fw_data
), GFP_KERNEL
);
866 for_each_hwfn(cdev
, i
) {
867 struct qed_hwfn
*p_hwfn
= &cdev
->hwfns
[i
];
868 u32 n_eqes
, num_cons
;
870 /* First allocate the context manager structure */
871 rc
= qed_cxt_mngr_alloc(p_hwfn
);
875 /* Set the HW cid/tid numbers (in the contest manager)
876 * Must be done prior to any further computations.
878 rc
= qed_cxt_set_pf_params(p_hwfn
, RDMA_MAX_TIDS
);
882 rc
= qed_alloc_qm_data(p_hwfn
);
887 qed_init_qm_info(p_hwfn
);
889 /* Compute the ILT client partition */
890 rc
= qed_cxt_cfg_ilt_compute(p_hwfn
, &line_count
);
893 "too many ILT lines; re-computing with less lines\n");
894 /* In case there are not enough ILT lines we reduce the
895 * number of RDMA tasks and re-compute.
898 qed_cxt_cfg_ilt_compute_excess(p_hwfn
, line_count
);
902 rdma_tasks
= RDMA_MAX_TIDS
- excess_tasks
;
903 rc
= qed_cxt_set_pf_params(p_hwfn
, rdma_tasks
);
907 rc
= qed_cxt_cfg_ilt_compute(p_hwfn
, &line_count
);
910 "failed ILT compute. Requested too many lines: %u\n",
917 /* CID map / ILT shadow table / T2
918 * The talbes sizes are determined by the computations above
920 rc
= qed_cxt_tables_alloc(p_hwfn
);
924 /* SPQ, must follow ILT because initializes SPQ context */
925 rc
= qed_spq_alloc(p_hwfn
);
929 /* SP status block allocation */
930 p_hwfn
->p_dpc_ptt
= qed_get_reserved_ptt(p_hwfn
,
933 rc
= qed_int_alloc(p_hwfn
, p_hwfn
->p_main_ptt
);
937 rc
= qed_iov_alloc(p_hwfn
);
942 n_eqes
= qed_chain_get_capacity(&p_hwfn
->p_spq
->chain
);
943 if (QED_IS_RDMA_PERSONALITY(p_hwfn
)) {
944 enum protocol_type rdma_proto
;
946 if (QED_IS_ROCE_PERSONALITY(p_hwfn
))
947 rdma_proto
= PROTOCOLID_ROCE
;
949 rdma_proto
= PROTOCOLID_IWARP
;
951 num_cons
= qed_cxt_get_proto_cid_count(p_hwfn
,
954 n_eqes
+= num_cons
+ 2 * MAX_NUM_VFS_BB
;
955 } else if (p_hwfn
->hw_info
.personality
== QED_PCI_ISCSI
) {
957 qed_cxt_get_proto_cid_count(p_hwfn
,
960 n_eqes
+= 2 * num_cons
;
963 if (n_eqes
> 0xFFFF) {
965 "Cannot allocate 0x%x EQ elements. The maximum of a u16 chain is 0x%x\n",
970 rc
= qed_eq_alloc(p_hwfn
, (u16
) n_eqes
);
974 rc
= qed_consq_alloc(p_hwfn
);
978 rc
= qed_l2_alloc(p_hwfn
);
982 #ifdef CONFIG_QED_LL2
983 if (p_hwfn
->using_ll2
) {
984 rc
= qed_ll2_alloc(p_hwfn
);
990 if (p_hwfn
->hw_info
.personality
== QED_PCI_FCOE
) {
991 rc
= qed_fcoe_alloc(p_hwfn
);
996 if (p_hwfn
->hw_info
.personality
== QED_PCI_ISCSI
) {
997 rc
= qed_iscsi_alloc(p_hwfn
);
1000 rc
= qed_ooo_alloc(p_hwfn
);
1005 /* DMA info initialization */
1006 rc
= qed_dmae_info_alloc(p_hwfn
);
1010 /* DCBX initialization */
1011 rc
= qed_dcbx_info_alloc(p_hwfn
);
1016 cdev
->reset_stats
= kzalloc(sizeof(*cdev
->reset_stats
), GFP_KERNEL
);
1017 if (!cdev
->reset_stats
)
1025 qed_resc_free(cdev
);
1029 void qed_resc_setup(struct qed_dev
*cdev
)
1034 for_each_hwfn(cdev
, i
)
1035 qed_l2_setup(&cdev
->hwfns
[i
]);
1039 for_each_hwfn(cdev
, i
) {
1040 struct qed_hwfn
*p_hwfn
= &cdev
->hwfns
[i
];
1042 qed_cxt_mngr_setup(p_hwfn
);
1043 qed_spq_setup(p_hwfn
);
1044 qed_eq_setup(p_hwfn
);
1045 qed_consq_setup(p_hwfn
);
1047 /* Read shadow of current MFW mailbox */
1048 qed_mcp_read_mb(p_hwfn
, p_hwfn
->p_main_ptt
);
1049 memcpy(p_hwfn
->mcp_info
->mfw_mb_shadow
,
1050 p_hwfn
->mcp_info
->mfw_mb_cur
,
1051 p_hwfn
->mcp_info
->mfw_mb_length
);
1053 qed_int_setup(p_hwfn
, p_hwfn
->p_main_ptt
);
1055 qed_l2_setup(p_hwfn
);
1056 qed_iov_setup(p_hwfn
);
1057 #ifdef CONFIG_QED_LL2
1058 if (p_hwfn
->using_ll2
)
1059 qed_ll2_setup(p_hwfn
);
1061 if (p_hwfn
->hw_info
.personality
== QED_PCI_FCOE
)
1062 qed_fcoe_setup(p_hwfn
);
1064 if (p_hwfn
->hw_info
.personality
== QED_PCI_ISCSI
) {
1065 qed_iscsi_setup(p_hwfn
);
1066 qed_ooo_setup(p_hwfn
);
1071 #define FINAL_CLEANUP_POLL_CNT (100)
1072 #define FINAL_CLEANUP_POLL_TIME (10)
1073 int qed_final_cleanup(struct qed_hwfn
*p_hwfn
,
1074 struct qed_ptt
*p_ptt
, u16 id
, bool is_vf
)
1076 u32 command
= 0, addr
, count
= FINAL_CLEANUP_POLL_CNT
;
1079 addr
= GTT_BAR0_MAP_REG_USDM_RAM
+
1080 USTORM_FLR_FINAL_ACK_OFFSET(p_hwfn
->rel_pf_id
);
1085 command
|= X_FINAL_CLEANUP_AGG_INT
<<
1086 SDM_AGG_INT_COMP_PARAMS_AGG_INT_INDEX_SHIFT
;
1087 command
|= 1 << SDM_AGG_INT_COMP_PARAMS_AGG_VECTOR_ENABLE_SHIFT
;
1088 command
|= id
<< SDM_AGG_INT_COMP_PARAMS_AGG_VECTOR_BIT_SHIFT
;
1089 command
|= SDM_COMP_TYPE_AGG_INT
<< SDM_OP_GEN_COMP_TYPE_SHIFT
;
1091 /* Make sure notification is not set before initiating final cleanup */
1092 if (REG_RD(p_hwfn
, addr
)) {
1094 "Unexpected; Found final cleanup notification before initiating final cleanup\n");
1095 REG_WR(p_hwfn
, addr
, 0);
1098 DP_VERBOSE(p_hwfn
, QED_MSG_IOV
,
1099 "Sending final cleanup for PFVF[%d] [Command %08x\n]",
1102 qed_wr(p_hwfn
, p_ptt
, XSDM_REG_OPERATION_GEN
, command
);
1104 /* Poll until completion */
1105 while (!REG_RD(p_hwfn
, addr
) && count
--)
1106 msleep(FINAL_CLEANUP_POLL_TIME
);
1108 if (REG_RD(p_hwfn
, addr
))
1112 "Failed to receive FW final cleanup notification\n");
1114 /* Cleanup afterwards */
1115 REG_WR(p_hwfn
, addr
, 0);
1120 static int qed_calc_hw_mode(struct qed_hwfn
*p_hwfn
)
1124 if (QED_IS_BB_B0(p_hwfn
->cdev
)) {
1125 hw_mode
|= 1 << MODE_BB
;
1126 } else if (QED_IS_AH(p_hwfn
->cdev
)) {
1127 hw_mode
|= 1 << MODE_K2
;
1129 DP_NOTICE(p_hwfn
, "Unknown chip type %#x\n",
1130 p_hwfn
->cdev
->type
);
1134 switch (p_hwfn
->cdev
->num_ports_in_engine
) {
1136 hw_mode
|= 1 << MODE_PORTS_PER_ENG_1
;
1139 hw_mode
|= 1 << MODE_PORTS_PER_ENG_2
;
1142 hw_mode
|= 1 << MODE_PORTS_PER_ENG_4
;
1145 DP_NOTICE(p_hwfn
, "num_ports_in_engine = %d not supported\n",
1146 p_hwfn
->cdev
->num_ports_in_engine
);
1150 switch (p_hwfn
->cdev
->mf_mode
) {
1151 case QED_MF_DEFAULT
:
1153 hw_mode
|= 1 << MODE_MF_SI
;
1156 hw_mode
|= 1 << MODE_MF_SD
;
1159 DP_NOTICE(p_hwfn
, "Unsupported MF mode, init as DEFAULT\n");
1160 hw_mode
|= 1 << MODE_MF_SI
;
1163 hw_mode
|= 1 << MODE_ASIC
;
1165 if (p_hwfn
->cdev
->num_hwfns
> 1)
1166 hw_mode
|= 1 << MODE_100G
;
1168 p_hwfn
->hw_info
.hw_mode
= hw_mode
;
1170 DP_VERBOSE(p_hwfn
, (NETIF_MSG_PROBE
| NETIF_MSG_IFUP
),
1171 "Configuring function for hw_mode: 0x%08x\n",
1172 p_hwfn
->hw_info
.hw_mode
);
1177 /* Init run time data for all PFs on an engine. */
1178 static void qed_init_cau_rt_data(struct qed_dev
*cdev
)
1180 u32 offset
= CAU_REG_SB_VAR_MEMORY_RT_OFFSET
;
1183 for_each_hwfn(cdev
, i
) {
1184 struct qed_hwfn
*p_hwfn
= &cdev
->hwfns
[i
];
1185 struct qed_igu_info
*p_igu_info
;
1186 struct qed_igu_block
*p_block
;
1187 struct cau_sb_entry sb_entry
;
1189 p_igu_info
= p_hwfn
->hw_info
.p_igu_info
;
1192 igu_sb_id
< QED_MAPPING_MEMORY_SIZE(cdev
); igu_sb_id
++) {
1193 p_block
= &p_igu_info
->entry
[igu_sb_id
];
1195 if (!p_block
->is_pf
)
1198 qed_init_cau_sb_entry(p_hwfn
, &sb_entry
,
1199 p_block
->function_id
, 0, 0);
1200 STORE_RT_REG_AGG(p_hwfn
, offset
+ igu_sb_id
* 2,
1206 static void qed_init_cache_line_size(struct qed_hwfn
*p_hwfn
,
1207 struct qed_ptt
*p_ptt
)
1209 u32 val
, wr_mbs
, cache_line_size
;
1211 val
= qed_rd(p_hwfn
, p_ptt
, PSWRQ2_REG_WR_MBS0
);
1224 "Unexpected value of PSWRQ2_REG_WR_MBS0 [0x%x]. Avoid configuring PGLUE_B_REG_CACHE_LINE_SIZE.\n",
1229 cache_line_size
= min_t(u32
, L1_CACHE_BYTES
, wr_mbs
);
1230 switch (cache_line_size
) {
1245 "Unexpected value of cache line size [0x%x]. Avoid configuring PGLUE_B_REG_CACHE_LINE_SIZE.\n",
1249 if (L1_CACHE_BYTES
> wr_mbs
)
1251 "The cache line size for padding is suboptimal for performance [OS cache line size 0x%x, wr mbs 0x%x]\n",
1252 L1_CACHE_BYTES
, wr_mbs
);
1254 STORE_RT_REG(p_hwfn
, PGLUE_REG_B_CACHE_LINE_SIZE_RT_OFFSET
, val
);
1256 STORE_RT_REG(p_hwfn
, PSWRQ2_REG_DRAM_ALIGN_WR_RT_OFFSET
, val
);
1257 STORE_RT_REG(p_hwfn
, PSWRQ2_REG_DRAM_ALIGN_RD_RT_OFFSET
, val
);
1261 static int qed_hw_init_common(struct qed_hwfn
*p_hwfn
,
1262 struct qed_ptt
*p_ptt
, int hw_mode
)
1264 struct qed_qm_info
*qm_info
= &p_hwfn
->qm_info
;
1265 struct qed_qm_common_rt_init_params params
;
1266 struct qed_dev
*cdev
= p_hwfn
->cdev
;
1267 u8 vf_id
, max_num_vfs
;
1272 qed_init_cau_rt_data(cdev
);
1274 /* Program GTT windows */
1275 qed_gtt_init(p_hwfn
);
1277 if (p_hwfn
->mcp_info
) {
1278 if (p_hwfn
->mcp_info
->func_info
.bandwidth_max
)
1279 qm_info
->pf_rl_en
= 1;
1280 if (p_hwfn
->mcp_info
->func_info
.bandwidth_min
)
1281 qm_info
->pf_wfq_en
= 1;
1284 memset(¶ms
, 0, sizeof(params
));
1285 params
.max_ports_per_engine
= p_hwfn
->cdev
->num_ports_in_engine
;
1286 params
.max_phys_tcs_per_port
= qm_info
->max_phys_tcs_per_port
;
1287 params
.pf_rl_en
= qm_info
->pf_rl_en
;
1288 params
.pf_wfq_en
= qm_info
->pf_wfq_en
;
1289 params
.vport_rl_en
= qm_info
->vport_rl_en
;
1290 params
.vport_wfq_en
= qm_info
->vport_wfq_en
;
1291 params
.port_params
= qm_info
->qm_port_params
;
1293 qed_qm_common_rt_init(p_hwfn
, ¶ms
);
1295 qed_cxt_hw_init_common(p_hwfn
);
1297 qed_init_cache_line_size(p_hwfn
, p_ptt
);
1299 rc
= qed_init_run(p_hwfn
, p_ptt
, PHASE_ENGINE
, ANY_PHASE_ID
, hw_mode
);
1303 qed_wr(p_hwfn
, p_ptt
, PSWRQ2_REG_L2P_VALIDATE_VFID
, 0);
1304 qed_wr(p_hwfn
, p_ptt
, PGLUE_B_REG_USE_CLIENTID_IN_TAG
, 1);
1306 if (QED_IS_BB(p_hwfn
->cdev
)) {
1307 num_pfs
= NUM_OF_ENG_PFS(p_hwfn
->cdev
);
1308 for (pf_id
= 0; pf_id
< num_pfs
; pf_id
++) {
1309 qed_fid_pretend(p_hwfn
, p_ptt
, pf_id
);
1310 qed_wr(p_hwfn
, p_ptt
, PRS_REG_SEARCH_ROCE
, 0x0);
1311 qed_wr(p_hwfn
, p_ptt
, PRS_REG_SEARCH_TCP
, 0x0);
1313 /* pretend to original PF */
1314 qed_fid_pretend(p_hwfn
, p_ptt
, p_hwfn
->rel_pf_id
);
1317 max_num_vfs
= QED_IS_AH(cdev
) ? MAX_NUM_VFS_K2
: MAX_NUM_VFS_BB
;
1318 for (vf_id
= 0; vf_id
< max_num_vfs
; vf_id
++) {
1319 concrete_fid
= qed_vfid_to_concrete(p_hwfn
, vf_id
);
1320 qed_fid_pretend(p_hwfn
, p_ptt
, (u16
) concrete_fid
);
1321 qed_wr(p_hwfn
, p_ptt
, CCFC_REG_STRONG_ENABLE_VF
, 0x1);
1322 qed_wr(p_hwfn
, p_ptt
, CCFC_REG_WEAK_ENABLE_VF
, 0x0);
1323 qed_wr(p_hwfn
, p_ptt
, TCFC_REG_STRONG_ENABLE_VF
, 0x1);
1324 qed_wr(p_hwfn
, p_ptt
, TCFC_REG_WEAK_ENABLE_VF
, 0x0);
1326 /* pretend to original PF */
1327 qed_fid_pretend(p_hwfn
, p_ptt
, p_hwfn
->rel_pf_id
);
1333 qed_hw_init_dpi_size(struct qed_hwfn
*p_hwfn
,
1334 struct qed_ptt
*p_ptt
, u32 pwm_region_size
, u32 n_cpus
)
1336 u32 dpi_bit_shift
, dpi_count
, dpi_page_size
;
1340 /* Calculate DPI size */
1341 n_wids
= max_t(u32
, QED_MIN_WIDS
, n_cpus
);
1342 dpi_page_size
= QED_WID_SIZE
* roundup_pow_of_two(n_wids
);
1343 dpi_page_size
= (dpi_page_size
+ PAGE_SIZE
- 1) & ~(PAGE_SIZE
- 1);
1344 dpi_bit_shift
= ilog2(dpi_page_size
/ 4096);
1345 dpi_count
= pwm_region_size
/ dpi_page_size
;
1347 min_dpis
= p_hwfn
->pf_params
.rdma_pf_params
.min_dpis
;
1348 min_dpis
= max_t(u32
, QED_MIN_DPIS
, min_dpis
);
1350 p_hwfn
->dpi_size
= dpi_page_size
;
1351 p_hwfn
->dpi_count
= dpi_count
;
1353 qed_wr(p_hwfn
, p_ptt
, DORQ_REG_PF_DPI_BIT_SHIFT
, dpi_bit_shift
);
1355 if (dpi_count
< min_dpis
)
1361 enum QED_ROCE_EDPM_MODE
{
1362 QED_ROCE_EDPM_MODE_ENABLE
= 0,
1363 QED_ROCE_EDPM_MODE_FORCE_ON
= 1,
1364 QED_ROCE_EDPM_MODE_DISABLE
= 2,
1368 qed_hw_init_pf_doorbell_bar(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
)
1370 u32 pwm_regsize
, norm_regsize
;
1371 u32 non_pwm_conn
, min_addr_reg1
;
1372 u32 db_bar_size
, n_cpus
= 1;
1378 db_bar_size
= qed_hw_bar_size(p_hwfn
, p_ptt
, BAR_ID_1
);
1379 if (p_hwfn
->cdev
->num_hwfns
> 1)
1382 /* Calculate doorbell regions */
1383 non_pwm_conn
= qed_cxt_get_proto_cid_start(p_hwfn
, PROTOCOLID_CORE
) +
1384 qed_cxt_get_proto_cid_count(p_hwfn
, PROTOCOLID_CORE
,
1386 qed_cxt_get_proto_cid_count(p_hwfn
, PROTOCOLID_ETH
,
1388 norm_regsize
= roundup(QED_PF_DEMS_SIZE
* non_pwm_conn
, PAGE_SIZE
);
1389 min_addr_reg1
= norm_regsize
/ 4096;
1390 pwm_regsize
= db_bar_size
- norm_regsize
;
1392 /* Check that the normal and PWM sizes are valid */
1393 if (db_bar_size
< norm_regsize
) {
1394 DP_ERR(p_hwfn
->cdev
,
1395 "Doorbell BAR size 0x%x is too small (normal region is 0x%0x )\n",
1396 db_bar_size
, norm_regsize
);
1400 if (pwm_regsize
< QED_MIN_PWM_REGION
) {
1401 DP_ERR(p_hwfn
->cdev
,
1402 "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",
1404 QED_MIN_PWM_REGION
, db_bar_size
, norm_regsize
);
1408 /* Calculate number of DPIs */
1409 roce_edpm_mode
= p_hwfn
->pf_params
.rdma_pf_params
.roce_edpm_mode
;
1410 if ((roce_edpm_mode
== QED_ROCE_EDPM_MODE_ENABLE
) ||
1411 ((roce_edpm_mode
== QED_ROCE_EDPM_MODE_FORCE_ON
))) {
1412 /* Either EDPM is mandatory, or we are attempting to allocate a
1415 n_cpus
= num_present_cpus();
1416 rc
= qed_hw_init_dpi_size(p_hwfn
, p_ptt
, pwm_regsize
, n_cpus
);
1419 cond
= (rc
&& (roce_edpm_mode
== QED_ROCE_EDPM_MODE_ENABLE
)) ||
1420 (roce_edpm_mode
== QED_ROCE_EDPM_MODE_DISABLE
);
1421 if (cond
|| p_hwfn
->dcbx_no_edpm
) {
1422 /* Either EDPM is disabled from user configuration, or it is
1423 * disabled via DCBx, or it is not mandatory and we failed to
1424 * allocated a WID per CPU.
1427 rc
= qed_hw_init_dpi_size(p_hwfn
, p_ptt
, pwm_regsize
, n_cpus
);
1430 qed_rdma_dpm_bar(p_hwfn
, p_ptt
);
1433 p_hwfn
->wid_count
= (u16
) n_cpus
;
1436 "doorbell bar: normal_region_size=%d, pwm_region_size=%d, dpi_size=%d, dpi_count=%d, roce_edpm=%s\n",
1441 ((p_hwfn
->dcbx_no_edpm
) || (p_hwfn
->db_bar_no_edpm
)) ?
1442 "disabled" : "enabled");
1446 "Failed to allocate enough DPIs. Allocated %d but the current minimum is %d.\n",
1448 p_hwfn
->pf_params
.rdma_pf_params
.min_dpis
);
1452 p_hwfn
->dpi_start_offset
= norm_regsize
;
1454 /* DEMS size is configured log2 of DWORDs, hence the division by 4 */
1455 pf_dems_shift
= ilog2(QED_PF_DEMS_SIZE
/ 4);
1456 qed_wr(p_hwfn
, p_ptt
, DORQ_REG_PF_ICID_BIT_SHIFT_NORM
, pf_dems_shift
);
1457 qed_wr(p_hwfn
, p_ptt
, DORQ_REG_PF_MIN_ADDR_REG1
, min_addr_reg1
);
1462 static int qed_hw_init_port(struct qed_hwfn
*p_hwfn
,
1463 struct qed_ptt
*p_ptt
, int hw_mode
)
1467 rc
= qed_init_run(p_hwfn
, p_ptt
, PHASE_PORT
, p_hwfn
->port_id
, hw_mode
);
1471 qed_wr(p_hwfn
, p_ptt
, PGLUE_B_REG_MASTER_WRITE_PAD_ENABLE
, 0);
1476 static int qed_hw_init_pf(struct qed_hwfn
*p_hwfn
,
1477 struct qed_ptt
*p_ptt
,
1478 struct qed_tunnel_info
*p_tunn
,
1481 enum qed_int_mode int_mode
,
1482 bool allow_npar_tx_switch
)
1484 u8 rel_pf_id
= p_hwfn
->rel_pf_id
;
1487 if (p_hwfn
->mcp_info
) {
1488 struct qed_mcp_function_info
*p_info
;
1490 p_info
= &p_hwfn
->mcp_info
->func_info
;
1491 if (p_info
->bandwidth_min
)
1492 p_hwfn
->qm_info
.pf_wfq
= p_info
->bandwidth_min
;
1494 /* Update rate limit once we'll actually have a link */
1495 p_hwfn
->qm_info
.pf_rl
= 100000;
1498 qed_cxt_hw_init_pf(p_hwfn
, p_ptt
);
1500 qed_int_igu_init_rt(p_hwfn
);
1502 /* Set VLAN in NIG if needed */
1503 if (hw_mode
& BIT(MODE_MF_SD
)) {
1504 DP_VERBOSE(p_hwfn
, NETIF_MSG_HW
, "Configuring LLH_FUNC_TAG\n");
1505 STORE_RT_REG(p_hwfn
, NIG_REG_LLH_FUNC_TAG_EN_RT_OFFSET
, 1);
1506 STORE_RT_REG(p_hwfn
, NIG_REG_LLH_FUNC_TAG_VALUE_RT_OFFSET
,
1507 p_hwfn
->hw_info
.ovlan
);
1510 /* Enable classification by MAC if needed */
1511 if (hw_mode
& BIT(MODE_MF_SI
)) {
1512 DP_VERBOSE(p_hwfn
, NETIF_MSG_HW
,
1513 "Configuring TAGMAC_CLS_TYPE\n");
1514 STORE_RT_REG(p_hwfn
,
1515 NIG_REG_LLH_FUNC_TAGMAC_CLS_TYPE_RT_OFFSET
, 1);
1518 /* Protocol Configuration */
1519 STORE_RT_REG(p_hwfn
, PRS_REG_SEARCH_TCP_RT_OFFSET
,
1520 (p_hwfn
->hw_info
.personality
== QED_PCI_ISCSI
) ? 1 : 0);
1521 STORE_RT_REG(p_hwfn
, PRS_REG_SEARCH_FCOE_RT_OFFSET
,
1522 (p_hwfn
->hw_info
.personality
== QED_PCI_FCOE
) ? 1 : 0);
1523 STORE_RT_REG(p_hwfn
, PRS_REG_SEARCH_ROCE_RT_OFFSET
, 0);
1525 /* Cleanup chip from previous driver if such remains exist */
1526 rc
= qed_final_cleanup(p_hwfn
, p_ptt
, rel_pf_id
, false);
1530 /* Sanity check before the PF init sequence that uses DMAE */
1531 rc
= qed_dmae_sanity(p_hwfn
, p_ptt
, "pf_phase");
1535 /* PF Init sequence */
1536 rc
= qed_init_run(p_hwfn
, p_ptt
, PHASE_PF
, rel_pf_id
, hw_mode
);
1540 /* QM_PF Init sequence (may be invoked separately e.g. for DCB) */
1541 rc
= qed_init_run(p_hwfn
, p_ptt
, PHASE_QM_PF
, rel_pf_id
, hw_mode
);
1545 /* Pure runtime initializations - directly to the HW */
1546 qed_int_igu_init_pure_rt(p_hwfn
, p_ptt
, true, true);
1548 rc
= qed_hw_init_pf_doorbell_bar(p_hwfn
, p_ptt
);
1553 /* enable interrupts */
1554 qed_int_igu_enable(p_hwfn
, p_ptt
, int_mode
);
1556 /* send function start command */
1557 rc
= qed_sp_pf_start(p_hwfn
, p_ptt
, p_tunn
,
1558 p_hwfn
->cdev
->mf_mode
,
1559 allow_npar_tx_switch
);
1561 DP_NOTICE(p_hwfn
, "Function start ramrod failed\n");
1564 if (p_hwfn
->hw_info
.personality
== QED_PCI_FCOE
) {
1565 qed_wr(p_hwfn
, p_ptt
, PRS_REG_SEARCH_TAG1
, BIT(2));
1566 qed_wr(p_hwfn
, p_ptt
,
1567 PRS_REG_PKT_LEN_STAT_TAGS_NOT_COUNTED_FIRST
,
1574 static int qed_change_pci_hwfn(struct qed_hwfn
*p_hwfn
,
1575 struct qed_ptt
*p_ptt
,
1578 u32 delay_idx
= 0, val
, set_val
= enable
? 1 : 0;
1580 /* Change PF in PXP */
1581 qed_wr(p_hwfn
, p_ptt
,
1582 PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER
, set_val
);
1584 /* wait until value is set - try for 1 second every 50us */
1585 for (delay_idx
= 0; delay_idx
< 20000; delay_idx
++) {
1586 val
= qed_rd(p_hwfn
, p_ptt
,
1587 PGLUE_B_REG_INTERNAL_PFID_ENABLE_MASTER
);
1591 usleep_range(50, 60);
1594 if (val
!= set_val
) {
1596 "PFID_ENABLE_MASTER wasn't changed after a second\n");
1603 static void qed_reset_mb_shadow(struct qed_hwfn
*p_hwfn
,
1604 struct qed_ptt
*p_main_ptt
)
1606 /* Read shadow of current MFW mailbox */
1607 qed_mcp_read_mb(p_hwfn
, p_main_ptt
);
1608 memcpy(p_hwfn
->mcp_info
->mfw_mb_shadow
,
1609 p_hwfn
->mcp_info
->mfw_mb_cur
, p_hwfn
->mcp_info
->mfw_mb_length
);
1613 qed_fill_load_req_params(struct qed_load_req_params
*p_load_req
,
1614 struct qed_drv_load_params
*p_drv_load
)
1616 memset(p_load_req
, 0, sizeof(*p_load_req
));
1618 p_load_req
->drv_role
= p_drv_load
->is_crash_kernel
?
1619 QED_DRV_ROLE_KDUMP
: QED_DRV_ROLE_OS
;
1620 p_load_req
->timeout_val
= p_drv_load
->mfw_timeout_val
;
1621 p_load_req
->avoid_eng_reset
= p_drv_load
->avoid_eng_reset
;
1622 p_load_req
->override_force_load
= p_drv_load
->override_force_load
;
1625 static int qed_vf_start(struct qed_hwfn
*p_hwfn
,
1626 struct qed_hw_init_params
*p_params
)
1628 if (p_params
->p_tunn
) {
1629 qed_vf_set_vf_start_tunn_update_param(p_params
->p_tunn
);
1630 qed_vf_pf_tunnel_param_update(p_hwfn
, p_params
->p_tunn
);
1633 p_hwfn
->b_int_enabled
= 1;
1638 int qed_hw_init(struct qed_dev
*cdev
, struct qed_hw_init_params
*p_params
)
1640 struct qed_load_req_params load_req_params
;
1641 u32 load_code
, param
, drv_mb_param
;
1642 bool b_default_mtu
= true;
1643 struct qed_hwfn
*p_hwfn
;
1644 int rc
= 0, mfw_rc
, i
;
1646 if ((p_params
->int_mode
== QED_INT_MODE_MSI
) && (cdev
->num_hwfns
> 1)) {
1647 DP_NOTICE(cdev
, "MSI mode is not supported for CMT devices\n");
1652 rc
= qed_init_fw_data(cdev
, p_params
->bin_fw_data
);
1657 for_each_hwfn(cdev
, i
) {
1658 struct qed_hwfn
*p_hwfn
= &cdev
->hwfns
[i
];
1660 /* If management didn't provide a default, set one of our own */
1661 if (!p_hwfn
->hw_info
.mtu
) {
1662 p_hwfn
->hw_info
.mtu
= 1500;
1663 b_default_mtu
= false;
1667 qed_vf_start(p_hwfn
, p_params
);
1671 /* Enable DMAE in PXP */
1672 rc
= qed_change_pci_hwfn(p_hwfn
, p_hwfn
->p_main_ptt
, true);
1674 rc
= qed_calc_hw_mode(p_hwfn
);
1678 qed_fill_load_req_params(&load_req_params
,
1679 p_params
->p_drv_load_params
);
1680 rc
= qed_mcp_load_req(p_hwfn
, p_hwfn
->p_main_ptt
,
1683 DP_NOTICE(p_hwfn
, "Failed sending a LOAD_REQ command\n");
1687 load_code
= load_req_params
.load_code
;
1688 DP_VERBOSE(p_hwfn
, QED_MSG_SP
,
1689 "Load request was sent. Load code: 0x%x\n",
1692 qed_mcp_set_capabilities(p_hwfn
, p_hwfn
->p_main_ptt
);
1694 qed_reset_mb_shadow(p_hwfn
, p_hwfn
->p_main_ptt
);
1696 p_hwfn
->first_on_engine
= (load_code
==
1697 FW_MSG_CODE_DRV_LOAD_ENGINE
);
1699 switch (load_code
) {
1700 case FW_MSG_CODE_DRV_LOAD_ENGINE
:
1701 rc
= qed_hw_init_common(p_hwfn
, p_hwfn
->p_main_ptt
,
1702 p_hwfn
->hw_info
.hw_mode
);
1706 case FW_MSG_CODE_DRV_LOAD_PORT
:
1707 rc
= qed_hw_init_port(p_hwfn
, p_hwfn
->p_main_ptt
,
1708 p_hwfn
->hw_info
.hw_mode
);
1713 case FW_MSG_CODE_DRV_LOAD_FUNCTION
:
1714 rc
= qed_hw_init_pf(p_hwfn
, p_hwfn
->p_main_ptt
,
1716 p_hwfn
->hw_info
.hw_mode
,
1717 p_params
->b_hw_start
,
1719 p_params
->allow_npar_tx_switch
);
1723 "Unexpected load code [0x%08x]", load_code
);
1730 "init phase failed for loadcode 0x%x (rc %d)\n",
1733 /* ACK mfw regardless of success or failure of initialization */
1734 mfw_rc
= qed_mcp_cmd(p_hwfn
, p_hwfn
->p_main_ptt
,
1735 DRV_MSG_CODE_LOAD_DONE
,
1736 0, &load_code
, ¶m
);
1740 DP_NOTICE(p_hwfn
, "Failed sending LOAD_DONE command\n");
1744 /* Check if there is a DID mismatch between nvm-cfg/efuse */
1745 if (param
& FW_MB_PARAM_LOAD_DONE_DID_EFUSE_ERROR
)
1747 "warning: device configuration is not supported on this board type. The device may not function as expected.\n");
1749 /* send DCBX attention request command */
1752 "sending phony dcbx set command to trigger DCBx attention handling\n");
1753 mfw_rc
= qed_mcp_cmd(p_hwfn
, p_hwfn
->p_main_ptt
,
1754 DRV_MSG_CODE_SET_DCBX
,
1755 1 << DRV_MB_PARAM_DCBX_NOTIFY_SHIFT
,
1756 &load_code
, ¶m
);
1759 "Failed to send DCBX attention request\n");
1763 p_hwfn
->hw_init_done
= true;
1767 p_hwfn
= QED_LEADING_HWFN(cdev
);
1768 drv_mb_param
= STORM_FW_VERSION
;
1769 rc
= qed_mcp_cmd(p_hwfn
, p_hwfn
->p_main_ptt
,
1770 DRV_MSG_CODE_OV_UPDATE_STORM_FW_VER
,
1771 drv_mb_param
, &load_code
, ¶m
);
1773 DP_INFO(p_hwfn
, "Failed to update firmware version\n");
1775 if (!b_default_mtu
) {
1776 rc
= qed_mcp_ov_update_mtu(p_hwfn
, p_hwfn
->p_main_ptt
,
1777 p_hwfn
->hw_info
.mtu
);
1780 "Failed to update default mtu\n");
1783 rc
= qed_mcp_ov_update_driver_state(p_hwfn
,
1785 QED_OV_DRIVER_STATE_DISABLED
);
1787 DP_INFO(p_hwfn
, "Failed to update driver state\n");
1789 rc
= qed_mcp_ov_update_eswitch(p_hwfn
, p_hwfn
->p_main_ptt
,
1790 QED_OV_ESWITCH_VEB
);
1792 DP_INFO(p_hwfn
, "Failed to update eswitch mode\n");
1798 #define QED_HW_STOP_RETRY_LIMIT (10)
1799 static void qed_hw_timers_stop(struct qed_dev
*cdev
,
1800 struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
)
1805 qed_wr(p_hwfn
, p_ptt
, TM_REG_PF_ENABLE_CONN
, 0x0);
1806 qed_wr(p_hwfn
, p_ptt
, TM_REG_PF_ENABLE_TASK
, 0x0);
1808 for (i
= 0; i
< QED_HW_STOP_RETRY_LIMIT
; i
++) {
1809 if ((!qed_rd(p_hwfn
, p_ptt
,
1810 TM_REG_PF_SCAN_ACTIVE_CONN
)) &&
1811 (!qed_rd(p_hwfn
, p_ptt
, TM_REG_PF_SCAN_ACTIVE_TASK
)))
1814 /* Dependent on number of connection/tasks, possibly
1815 * 1ms sleep is required between polls
1817 usleep_range(1000, 2000);
1820 if (i
< QED_HW_STOP_RETRY_LIMIT
)
1824 "Timers linear scans are not over [Connection %02x Tasks %02x]\n",
1825 (u8
)qed_rd(p_hwfn
, p_ptt
, TM_REG_PF_SCAN_ACTIVE_CONN
),
1826 (u8
)qed_rd(p_hwfn
, p_ptt
, TM_REG_PF_SCAN_ACTIVE_TASK
));
1829 void qed_hw_timers_stop_all(struct qed_dev
*cdev
)
1833 for_each_hwfn(cdev
, j
) {
1834 struct qed_hwfn
*p_hwfn
= &cdev
->hwfns
[j
];
1835 struct qed_ptt
*p_ptt
= p_hwfn
->p_main_ptt
;
1837 qed_hw_timers_stop(cdev
, p_hwfn
, p_ptt
);
1841 int qed_hw_stop(struct qed_dev
*cdev
)
1843 struct qed_hwfn
*p_hwfn
;
1844 struct qed_ptt
*p_ptt
;
1848 for_each_hwfn(cdev
, j
) {
1849 p_hwfn
= &cdev
->hwfns
[j
];
1850 p_ptt
= p_hwfn
->p_main_ptt
;
1852 DP_VERBOSE(p_hwfn
, NETIF_MSG_IFDOWN
, "Stopping hw/fw\n");
1855 qed_vf_pf_int_cleanup(p_hwfn
);
1856 rc
= qed_vf_pf_reset(p_hwfn
);
1859 "qed_vf_pf_reset failed. rc = %d.\n",
1866 /* mark the hw as uninitialized... */
1867 p_hwfn
->hw_init_done
= false;
1869 /* Send unload command to MCP */
1870 rc
= qed_mcp_unload_req(p_hwfn
, p_ptt
);
1873 "Failed sending a UNLOAD_REQ command. rc = %d.\n",
1878 qed_slowpath_irq_sync(p_hwfn
);
1880 /* After this point no MFW attentions are expected, e.g. prevent
1881 * race between pf stop and dcbx pf update.
1883 rc
= qed_sp_pf_stop(p_hwfn
);
1886 "Failed to close PF against FW [rc = %d]. Continue to stop HW to prevent illegal host access by the device.\n",
1891 qed_wr(p_hwfn
, p_ptt
,
1892 NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF
, 0x1);
1894 qed_wr(p_hwfn
, p_ptt
, PRS_REG_SEARCH_TCP
, 0x0);
1895 qed_wr(p_hwfn
, p_ptt
, PRS_REG_SEARCH_UDP
, 0x0);
1896 qed_wr(p_hwfn
, p_ptt
, PRS_REG_SEARCH_FCOE
, 0x0);
1897 qed_wr(p_hwfn
, p_ptt
, PRS_REG_SEARCH_ROCE
, 0x0);
1898 qed_wr(p_hwfn
, p_ptt
, PRS_REG_SEARCH_OPENFLOW
, 0x0);
1900 qed_hw_timers_stop(cdev
, p_hwfn
, p_ptt
);
1902 /* Disable Attention Generation */
1903 qed_int_igu_disable_int(p_hwfn
, p_ptt
);
1905 qed_wr(p_hwfn
, p_ptt
, IGU_REG_LEADING_EDGE_LATCH
, 0);
1906 qed_wr(p_hwfn
, p_ptt
, IGU_REG_TRAILING_EDGE_LATCH
, 0);
1908 qed_int_igu_init_pure_rt(p_hwfn
, p_ptt
, false, true);
1910 /* Need to wait 1ms to guarantee SBs are cleared */
1911 usleep_range(1000, 2000);
1913 /* Disable PF in HW blocks */
1914 qed_wr(p_hwfn
, p_ptt
, DORQ_REG_PF_DB_ENABLE
, 0);
1915 qed_wr(p_hwfn
, p_ptt
, QM_REG_PF_EN
, 0);
1917 qed_mcp_unload_done(p_hwfn
, p_ptt
);
1920 "Failed sending a UNLOAD_DONE command. rc = %d.\n",
1927 p_hwfn
= QED_LEADING_HWFN(cdev
);
1928 p_ptt
= QED_LEADING_HWFN(cdev
)->p_main_ptt
;
1930 /* Disable DMAE in PXP - in CMT, this should only be done for
1931 * first hw-function, and only after all transactions have
1932 * stopped for all active hw-functions.
1934 rc
= qed_change_pci_hwfn(p_hwfn
, p_ptt
, false);
1937 "qed_change_pci_hwfn failed. rc = %d.\n", rc
);
1945 int qed_hw_stop_fastpath(struct qed_dev
*cdev
)
1949 for_each_hwfn(cdev
, j
) {
1950 struct qed_hwfn
*p_hwfn
= &cdev
->hwfns
[j
];
1951 struct qed_ptt
*p_ptt
;
1954 qed_vf_pf_int_cleanup(p_hwfn
);
1957 p_ptt
= qed_ptt_acquire(p_hwfn
);
1962 NETIF_MSG_IFDOWN
, "Shutting down the fastpath\n");
1964 qed_wr(p_hwfn
, p_ptt
,
1965 NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF
, 0x1);
1967 qed_wr(p_hwfn
, p_ptt
, PRS_REG_SEARCH_TCP
, 0x0);
1968 qed_wr(p_hwfn
, p_ptt
, PRS_REG_SEARCH_UDP
, 0x0);
1969 qed_wr(p_hwfn
, p_ptt
, PRS_REG_SEARCH_FCOE
, 0x0);
1970 qed_wr(p_hwfn
, p_ptt
, PRS_REG_SEARCH_ROCE
, 0x0);
1971 qed_wr(p_hwfn
, p_ptt
, PRS_REG_SEARCH_OPENFLOW
, 0x0);
1973 qed_int_igu_init_pure_rt(p_hwfn
, p_ptt
, false, false);
1975 /* Need to wait 1ms to guarantee SBs are cleared */
1976 usleep_range(1000, 2000);
1977 qed_ptt_release(p_hwfn
, p_ptt
);
1983 int qed_hw_start_fastpath(struct qed_hwfn
*p_hwfn
)
1985 struct qed_ptt
*p_ptt
;
1987 if (IS_VF(p_hwfn
->cdev
))
1990 p_ptt
= qed_ptt_acquire(p_hwfn
);
1994 /* If roce info is allocated it means roce is initialized and should
1995 * be enabled in searcher.
1997 if (p_hwfn
->p_rdma_info
&&
1998 p_hwfn
->b_rdma_enabled_in_prs
)
1999 qed_wr(p_hwfn
, p_ptt
, p_hwfn
->rdma_prs_search_reg
, 0x1);
2001 /* Re-open incoming traffic */
2002 qed_wr(p_hwfn
, p_ptt
, NIG_REG_RX_LLH_BRB_GATE_DNTFWD_PERPF
, 0x0);
2003 qed_ptt_release(p_hwfn
, p_ptt
);
2008 /* Free hwfn memory and resources acquired in hw_hwfn_prepare */
2009 static void qed_hw_hwfn_free(struct qed_hwfn
*p_hwfn
)
2011 qed_ptt_pool_free(p_hwfn
);
2012 kfree(p_hwfn
->hw_info
.p_igu_info
);
2013 p_hwfn
->hw_info
.p_igu_info
= NULL
;
2016 /* Setup bar access */
2017 static void qed_hw_hwfn_prepare(struct qed_hwfn
*p_hwfn
)
2019 /* clear indirect access */
2020 if (QED_IS_AH(p_hwfn
->cdev
)) {
2021 qed_wr(p_hwfn
, p_hwfn
->p_main_ptt
,
2022 PGLUE_B_REG_PGL_ADDR_E8_F0_K2
, 0);
2023 qed_wr(p_hwfn
, p_hwfn
->p_main_ptt
,
2024 PGLUE_B_REG_PGL_ADDR_EC_F0_K2
, 0);
2025 qed_wr(p_hwfn
, p_hwfn
->p_main_ptt
,
2026 PGLUE_B_REG_PGL_ADDR_F0_F0_K2
, 0);
2027 qed_wr(p_hwfn
, p_hwfn
->p_main_ptt
,
2028 PGLUE_B_REG_PGL_ADDR_F4_F0_K2
, 0);
2030 qed_wr(p_hwfn
, p_hwfn
->p_main_ptt
,
2031 PGLUE_B_REG_PGL_ADDR_88_F0_BB
, 0);
2032 qed_wr(p_hwfn
, p_hwfn
->p_main_ptt
,
2033 PGLUE_B_REG_PGL_ADDR_8C_F0_BB
, 0);
2034 qed_wr(p_hwfn
, p_hwfn
->p_main_ptt
,
2035 PGLUE_B_REG_PGL_ADDR_90_F0_BB
, 0);
2036 qed_wr(p_hwfn
, p_hwfn
->p_main_ptt
,
2037 PGLUE_B_REG_PGL_ADDR_94_F0_BB
, 0);
2040 /* Clean Previous errors if such exist */
2041 qed_wr(p_hwfn
, p_hwfn
->p_main_ptt
,
2042 PGLUE_B_REG_WAS_ERROR_PF_31_0_CLR
, 1 << p_hwfn
->abs_pf_id
);
2044 /* enable internal target-read */
2045 qed_wr(p_hwfn
, p_hwfn
->p_main_ptt
,
2046 PGLUE_B_REG_INTERNAL_PFID_ENABLE_TARGET_READ
, 1);
2049 static void get_function_id(struct qed_hwfn
*p_hwfn
)
2052 p_hwfn
->hw_info
.opaque_fid
= (u16
) REG_RD(p_hwfn
,
2053 PXP_PF_ME_OPAQUE_ADDR
);
2055 p_hwfn
->hw_info
.concrete_fid
= REG_RD(p_hwfn
, PXP_PF_ME_CONCRETE_ADDR
);
2057 p_hwfn
->abs_pf_id
= (p_hwfn
->hw_info
.concrete_fid
>> 16) & 0xf;
2058 p_hwfn
->rel_pf_id
= GET_FIELD(p_hwfn
->hw_info
.concrete_fid
,
2059 PXP_CONCRETE_FID_PFID
);
2060 p_hwfn
->port_id
= GET_FIELD(p_hwfn
->hw_info
.concrete_fid
,
2061 PXP_CONCRETE_FID_PORT
);
2063 DP_VERBOSE(p_hwfn
, NETIF_MSG_PROBE
,
2064 "Read ME register: Concrete 0x%08x Opaque 0x%04x\n",
2065 p_hwfn
->hw_info
.concrete_fid
, p_hwfn
->hw_info
.opaque_fid
);
2068 static void qed_hw_set_feat(struct qed_hwfn
*p_hwfn
)
2070 u32
*feat_num
= p_hwfn
->hw_info
.feat_num
;
2071 struct qed_sb_cnt_info sb_cnt
;
2074 memset(&sb_cnt
, 0, sizeof(sb_cnt
));
2075 qed_int_get_num_sbs(p_hwfn
, &sb_cnt
);
2077 if (IS_ENABLED(CONFIG_QED_RDMA
) &&
2078 QED_IS_RDMA_PERSONALITY(p_hwfn
)) {
2079 /* Roce CNQ each requires: 1 status block + 1 CNQ. We divide
2080 * the status blocks equally between L2 / RoCE but with
2081 * consideration as to how many l2 queues / cnqs we have.
2083 feat_num
[QED_RDMA_CNQ
] =
2084 min_t(u32
, sb_cnt
.cnt
/ 2,
2085 RESC_NUM(p_hwfn
, QED_RDMA_CNQ_RAM
));
2087 non_l2_sbs
= feat_num
[QED_RDMA_CNQ
];
2089 if (QED_IS_L2_PERSONALITY(p_hwfn
)) {
2090 /* Start by allocating VF queues, then PF's */
2091 feat_num
[QED_VF_L2_QUE
] = min_t(u32
,
2092 RESC_NUM(p_hwfn
, QED_L2_QUEUE
),
2094 feat_num
[QED_PF_L2_QUE
] = min_t(u32
,
2095 sb_cnt
.cnt
- non_l2_sbs
,
2102 if (QED_IS_FCOE_PERSONALITY(p_hwfn
))
2103 feat_num
[QED_FCOE_CQ
] = min_t(u32
, sb_cnt
.cnt
,
2107 if (QED_IS_ISCSI_PERSONALITY(p_hwfn
))
2108 feat_num
[QED_ISCSI_CQ
] = min_t(u32
, sb_cnt
.cnt
,
2113 "#PF_L2_QUEUES=%d VF_L2_QUEUES=%d #ROCE_CNQ=%d FCOE_CQ=%d ISCSI_CQ=%d #SBS=%d\n",
2114 (int)FEAT_NUM(p_hwfn
, QED_PF_L2_QUE
),
2115 (int)FEAT_NUM(p_hwfn
, QED_VF_L2_QUE
),
2116 (int)FEAT_NUM(p_hwfn
, QED_RDMA_CNQ
),
2117 (int)FEAT_NUM(p_hwfn
, QED_FCOE_CQ
),
2118 (int)FEAT_NUM(p_hwfn
, QED_ISCSI_CQ
),
2122 const char *qed_hw_get_resc_name(enum qed_resources res_id
)
2139 case QED_RDMA_CNQ_RAM
:
2140 return "RDMA_CNQ_RAM";
2147 case QED_RDMA_STATS_QUEUE
:
2148 return "RDMA_STATS_QUEUE";
2154 return "UNKNOWN_RESOURCE";
2159 __qed_hw_set_soft_resc_size(struct qed_hwfn
*p_hwfn
,
2160 struct qed_ptt
*p_ptt
,
2161 enum qed_resources res_id
,
2162 u32 resc_max_val
, u32
*p_mcp_resp
)
2166 rc
= qed_mcp_set_resc_max_val(p_hwfn
, p_ptt
, res_id
,
2167 resc_max_val
, p_mcp_resp
);
2170 "MFW response failure for a max value setting of resource %d [%s]\n",
2171 res_id
, qed_hw_get_resc_name(res_id
));
2175 if (*p_mcp_resp
!= FW_MSG_CODE_RESOURCE_ALLOC_OK
)
2177 "Failed to set the max value of resource %d [%s]. mcp_resp = 0x%08x.\n",
2178 res_id
, qed_hw_get_resc_name(res_id
), *p_mcp_resp
);
2184 qed_hw_set_soft_resc_size(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
)
2186 bool b_ah
= QED_IS_AH(p_hwfn
->cdev
);
2187 u32 resc_max_val
, mcp_resp
;
2191 for (res_id
= 0; res_id
< QED_MAX_RESC
; res_id
++) {
2194 resc_max_val
= MAX_NUM_LL2_RX_QUEUES
;
2196 case QED_RDMA_CNQ_RAM
:
2197 /* No need for a case for QED_CMDQS_CQS since
2198 * CNQ/CMDQS are the same resource.
2200 resc_max_val
= NUM_OF_GLOBAL_QUEUES
;
2202 case QED_RDMA_STATS_QUEUE
:
2203 resc_max_val
= b_ah
? RDMA_NUM_STATISTIC_COUNTERS_K2
2204 : RDMA_NUM_STATISTIC_COUNTERS_BB
;
2207 resc_max_val
= BDQ_NUM_RESOURCES
;
2213 rc
= __qed_hw_set_soft_resc_size(p_hwfn
, p_ptt
, res_id
,
2214 resc_max_val
, &mcp_resp
);
2218 /* There's no point to continue to the next resource if the
2219 * command is not supported by the MFW.
2220 * We do continue if the command is supported but the resource
2221 * is unknown to the MFW. Such a resource will be later
2222 * configured with the default allocation values.
2224 if (mcp_resp
== FW_MSG_CODE_UNSUPPORTED
)
2232 int qed_hw_get_dflt_resc(struct qed_hwfn
*p_hwfn
,
2233 enum qed_resources res_id
,
2234 u32
*p_resc_num
, u32
*p_resc_start
)
2236 u8 num_funcs
= p_hwfn
->num_funcs_on_engine
;
2237 bool b_ah
= QED_IS_AH(p_hwfn
->cdev
);
2241 *p_resc_num
= (b_ah
? MAX_NUM_L2_QUEUES_K2
:
2242 MAX_NUM_L2_QUEUES_BB
) / num_funcs
;
2245 *p_resc_num
= (b_ah
? MAX_NUM_VPORTS_K2
:
2246 MAX_NUM_VPORTS_BB
) / num_funcs
;
2249 *p_resc_num
= (b_ah
? ETH_RSS_ENGINE_NUM_K2
:
2250 ETH_RSS_ENGINE_NUM_BB
) / num_funcs
;
2253 *p_resc_num
= (b_ah
? MAX_QM_TX_QUEUES_K2
:
2254 MAX_QM_TX_QUEUES_BB
) / num_funcs
;
2255 *p_resc_num
&= ~0x7; /* The granularity of the PQs is 8 */
2258 *p_resc_num
= MAX_QM_GLOBAL_RLS
/ num_funcs
;
2262 /* Each VFC resource can accommodate both a MAC and a VLAN */
2263 *p_resc_num
= ETH_NUM_MAC_FILTERS
/ num_funcs
;
2266 *p_resc_num
= (b_ah
? PXP_NUM_ILT_RECORDS_K2
:
2267 PXP_NUM_ILT_RECORDS_BB
) / num_funcs
;
2270 *p_resc_num
= MAX_NUM_LL2_RX_QUEUES
/ num_funcs
;
2272 case QED_RDMA_CNQ_RAM
:
2274 /* CNQ/CMDQS are the same resource */
2275 *p_resc_num
= NUM_OF_GLOBAL_QUEUES
/ num_funcs
;
2277 case QED_RDMA_STATS_QUEUE
:
2278 *p_resc_num
= (b_ah
? RDMA_NUM_STATISTIC_COUNTERS_K2
:
2279 RDMA_NUM_STATISTIC_COUNTERS_BB
) / num_funcs
;
2282 if (p_hwfn
->hw_info
.personality
!= QED_PCI_ISCSI
&&
2283 p_hwfn
->hw_info
.personality
!= QED_PCI_FCOE
)
2289 /* Since we want its value to reflect whether MFW supports
2290 * the new scheme, have a default of 0.
2302 else if (p_hwfn
->cdev
->num_ports_in_engine
== 4)
2303 *p_resc_start
= p_hwfn
->port_id
;
2304 else if (p_hwfn
->hw_info
.personality
== QED_PCI_ISCSI
)
2305 *p_resc_start
= p_hwfn
->port_id
;
2306 else if (p_hwfn
->hw_info
.personality
== QED_PCI_FCOE
)
2307 *p_resc_start
= p_hwfn
->port_id
+ 2;
2310 *p_resc_start
= *p_resc_num
* p_hwfn
->enabled_func_idx
;
2317 static int __qed_hw_set_resc_info(struct qed_hwfn
*p_hwfn
,
2318 enum qed_resources res_id
)
2320 u32 dflt_resc_num
= 0, dflt_resc_start
= 0;
2321 u32 mcp_resp
, *p_resc_num
, *p_resc_start
;
2324 p_resc_num
= &RESC_NUM(p_hwfn
, res_id
);
2325 p_resc_start
= &RESC_START(p_hwfn
, res_id
);
2327 rc
= qed_hw_get_dflt_resc(p_hwfn
, res_id
, &dflt_resc_num
,
2331 "Failed to get default amount for resource %d [%s]\n",
2332 res_id
, qed_hw_get_resc_name(res_id
));
2336 rc
= qed_mcp_get_resc_info(p_hwfn
, p_hwfn
->p_main_ptt
, res_id
,
2337 &mcp_resp
, p_resc_num
, p_resc_start
);
2340 "MFW response failure for an allocation request for resource %d [%s]\n",
2341 res_id
, qed_hw_get_resc_name(res_id
));
2345 /* Default driver values are applied in the following cases:
2346 * - The resource allocation MB command is not supported by the MFW
2347 * - There is an internal error in the MFW while processing the request
2348 * - The resource ID is unknown to the MFW
2350 if (mcp_resp
!= FW_MSG_CODE_RESOURCE_ALLOC_OK
) {
2352 "Failed to receive allocation info for resource %d [%s]. mcp_resp = 0x%x. Applying default values [%d,%d].\n",
2354 qed_hw_get_resc_name(res_id
),
2355 mcp_resp
, dflt_resc_num
, dflt_resc_start
);
2356 *p_resc_num
= dflt_resc_num
;
2357 *p_resc_start
= dflt_resc_start
;
2362 /* PQs have to divide by 8 [that's the HW granularity].
2363 * Reduce number so it would fit.
2365 if ((res_id
== QED_PQ
) && ((*p_resc_num
% 8) || (*p_resc_start
% 8))) {
2367 "PQs need to align by 8; Number %08x --> %08x, Start %08x --> %08x\n",
2369 (*p_resc_num
) & ~0x7,
2370 *p_resc_start
, (*p_resc_start
) & ~0x7);
2371 *p_resc_num
&= ~0x7;
2372 *p_resc_start
&= ~0x7;
2378 static int qed_hw_set_resc_info(struct qed_hwfn
*p_hwfn
)
2383 for (res_id
= 0; res_id
< QED_MAX_RESC
; res_id
++) {
2384 rc
= __qed_hw_set_resc_info(p_hwfn
, res_id
);
2392 static int qed_hw_get_resc(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
)
2394 struct qed_resc_unlock_params resc_unlock_params
;
2395 struct qed_resc_lock_params resc_lock_params
;
2396 bool b_ah
= QED_IS_AH(p_hwfn
->cdev
);
2400 /* Setting the max values of the soft resources and the following
2401 * resources allocation queries should be atomic. Since several PFs can
2402 * run in parallel - a resource lock is needed.
2403 * If either the resource lock or resource set value commands are not
2404 * supported - skip the the max values setting, release the lock if
2405 * needed, and proceed to the queries. Other failures, including a
2406 * failure to acquire the lock, will cause this function to fail.
2408 qed_mcp_resc_lock_default_init(&resc_lock_params
, &resc_unlock_params
,
2409 QED_RESC_LOCK_RESC_ALLOC
, false);
2411 rc
= qed_mcp_resc_lock(p_hwfn
, p_ptt
, &resc_lock_params
);
2412 if (rc
&& rc
!= -EINVAL
) {
2414 } else if (rc
== -EINVAL
) {
2416 "Skip the max values setting of the soft resources since the resource lock is not supported by the MFW\n");
2417 } else if (!rc
&& !resc_lock_params
.b_granted
) {
2419 "Failed to acquire the resource lock for the resource allocation commands\n");
2422 rc
= qed_hw_set_soft_resc_size(p_hwfn
, p_ptt
);
2423 if (rc
&& rc
!= -EINVAL
) {
2425 "Failed to set the max values of the soft resources\n");
2426 goto unlock_and_exit
;
2427 } else if (rc
== -EINVAL
) {
2429 "Skip the max values setting of the soft resources since it is not supported by the MFW\n");
2430 rc
= qed_mcp_resc_unlock(p_hwfn
, p_ptt
,
2431 &resc_unlock_params
);
2434 "Failed to release the resource lock for the resource allocation commands\n");
2438 rc
= qed_hw_set_resc_info(p_hwfn
);
2440 goto unlock_and_exit
;
2442 if (resc_lock_params
.b_granted
&& !resc_unlock_params
.b_released
) {
2443 rc
= qed_mcp_resc_unlock(p_hwfn
, p_ptt
, &resc_unlock_params
);
2446 "Failed to release the resource lock for the resource allocation commands\n");
2449 /* Sanity for ILT */
2450 if ((b_ah
&& (RESC_END(p_hwfn
, QED_ILT
) > PXP_NUM_ILT_RECORDS_K2
)) ||
2451 (!b_ah
&& (RESC_END(p_hwfn
, QED_ILT
) > PXP_NUM_ILT_RECORDS_BB
))) {
2452 DP_NOTICE(p_hwfn
, "Can't assign ILT pages [%08x,...,%08x]\n",
2453 RESC_START(p_hwfn
, QED_ILT
),
2454 RESC_END(p_hwfn
, QED_ILT
) - 1);
2458 /* This will also learn the number of SBs from MFW */
2459 if (qed_int_igu_reset_cam(p_hwfn
, p_ptt
))
2462 qed_hw_set_feat(p_hwfn
);
2464 for (res_id
= 0; res_id
< QED_MAX_RESC
; res_id
++)
2465 DP_VERBOSE(p_hwfn
, NETIF_MSG_PROBE
, "%s = %d start = %d\n",
2466 qed_hw_get_resc_name(res_id
),
2467 RESC_NUM(p_hwfn
, res_id
),
2468 RESC_START(p_hwfn
, res_id
));
2473 if (resc_lock_params
.b_granted
&& !resc_unlock_params
.b_released
)
2474 qed_mcp_resc_unlock(p_hwfn
, p_ptt
, &resc_unlock_params
);
2478 static int qed_hw_get_nvm_info(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
)
2480 u32 port_cfg_addr
, link_temp
, nvm_cfg_addr
, device_capabilities
;
2481 u32 nvm_cfg1_offset
, mf_mode
, addr
, generic_cont0
, core_cfg
;
2482 struct qed_mcp_link_capabilities
*p_caps
;
2483 struct qed_mcp_link_params
*link
;
2485 /* Read global nvm_cfg address */
2486 nvm_cfg_addr
= qed_rd(p_hwfn
, p_ptt
, MISC_REG_GEN_PURP_CR0
);
2488 /* Verify MCP has initialized it */
2489 if (!nvm_cfg_addr
) {
2490 DP_NOTICE(p_hwfn
, "Shared memory not initialized\n");
2494 /* Read nvm_cfg1 (Notice this is just offset, and not offsize (TBD) */
2495 nvm_cfg1_offset
= qed_rd(p_hwfn
, p_ptt
, nvm_cfg_addr
+ 4);
2497 addr
= MCP_REG_SCRATCH
+ nvm_cfg1_offset
+
2498 offsetof(struct nvm_cfg1
, glob
) +
2499 offsetof(struct nvm_cfg1_glob
, core_cfg
);
2501 core_cfg
= qed_rd(p_hwfn
, p_ptt
, addr
);
2503 switch ((core_cfg
& NVM_CFG1_GLOB_NETWORK_PORT_MODE_MASK
) >>
2504 NVM_CFG1_GLOB_NETWORK_PORT_MODE_OFFSET
) {
2505 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_2X40G
:
2506 p_hwfn
->hw_info
.port_mode
= QED_PORT_MODE_DE_2X40G
;
2508 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X50G
:
2509 p_hwfn
->hw_info
.port_mode
= QED_PORT_MODE_DE_2X50G
;
2511 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_1X100G
:
2512 p_hwfn
->hw_info
.port_mode
= QED_PORT_MODE_DE_1X100G
;
2514 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_4X10G_F
:
2515 p_hwfn
->hw_info
.port_mode
= QED_PORT_MODE_DE_4X10G_F
;
2517 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_4X10G_E
:
2518 p_hwfn
->hw_info
.port_mode
= QED_PORT_MODE_DE_4X10G_E
;
2520 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_BB_4X20G
:
2521 p_hwfn
->hw_info
.port_mode
= QED_PORT_MODE_DE_4X20G
;
2523 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_1X40G
:
2524 p_hwfn
->hw_info
.port_mode
= QED_PORT_MODE_DE_1X40G
;
2526 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X25G
:
2527 p_hwfn
->hw_info
.port_mode
= QED_PORT_MODE_DE_2X25G
;
2529 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_2X10G
:
2530 p_hwfn
->hw_info
.port_mode
= QED_PORT_MODE_DE_2X10G
;
2532 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_1X25G
:
2533 p_hwfn
->hw_info
.port_mode
= QED_PORT_MODE_DE_1X25G
;
2535 case NVM_CFG1_GLOB_NETWORK_PORT_MODE_4X25G
:
2536 p_hwfn
->hw_info
.port_mode
= QED_PORT_MODE_DE_4X25G
;
2539 DP_NOTICE(p_hwfn
, "Unknown port mode in 0x%08x\n", core_cfg
);
2543 /* Read default link configuration */
2544 link
= &p_hwfn
->mcp_info
->link_input
;
2545 p_caps
= &p_hwfn
->mcp_info
->link_capabilities
;
2546 port_cfg_addr
= MCP_REG_SCRATCH
+ nvm_cfg1_offset
+
2547 offsetof(struct nvm_cfg1
, port
[MFW_PORT(p_hwfn
)]);
2548 link_temp
= qed_rd(p_hwfn
, p_ptt
,
2550 offsetof(struct nvm_cfg1_port
, speed_cap_mask
));
2551 link_temp
&= NVM_CFG1_PORT_DRV_SPEED_CAPABILITY_MASK_MASK
;
2552 link
->speed
.advertised_speeds
= link_temp
;
2554 link_temp
= link
->speed
.advertised_speeds
;
2555 p_hwfn
->mcp_info
->link_capabilities
.speed_capabilities
= link_temp
;
2557 link_temp
= qed_rd(p_hwfn
, p_ptt
,
2559 offsetof(struct nvm_cfg1_port
, link_settings
));
2560 switch ((link_temp
& NVM_CFG1_PORT_DRV_LINK_SPEED_MASK
) >>
2561 NVM_CFG1_PORT_DRV_LINK_SPEED_OFFSET
) {
2562 case NVM_CFG1_PORT_DRV_LINK_SPEED_AUTONEG
:
2563 link
->speed
.autoneg
= true;
2565 case NVM_CFG1_PORT_DRV_LINK_SPEED_1G
:
2566 link
->speed
.forced_speed
= 1000;
2568 case NVM_CFG1_PORT_DRV_LINK_SPEED_10G
:
2569 link
->speed
.forced_speed
= 10000;
2571 case NVM_CFG1_PORT_DRV_LINK_SPEED_25G
:
2572 link
->speed
.forced_speed
= 25000;
2574 case NVM_CFG1_PORT_DRV_LINK_SPEED_40G
:
2575 link
->speed
.forced_speed
= 40000;
2577 case NVM_CFG1_PORT_DRV_LINK_SPEED_50G
:
2578 link
->speed
.forced_speed
= 50000;
2580 case NVM_CFG1_PORT_DRV_LINK_SPEED_BB_100G
:
2581 link
->speed
.forced_speed
= 100000;
2584 DP_NOTICE(p_hwfn
, "Unknown Speed in 0x%08x\n", link_temp
);
2587 p_hwfn
->mcp_info
->link_capabilities
.default_speed_autoneg
=
2588 link
->speed
.autoneg
;
2590 link_temp
&= NVM_CFG1_PORT_DRV_FLOW_CONTROL_MASK
;
2591 link_temp
>>= NVM_CFG1_PORT_DRV_FLOW_CONTROL_OFFSET
;
2592 link
->pause
.autoneg
= !!(link_temp
&
2593 NVM_CFG1_PORT_DRV_FLOW_CONTROL_AUTONEG
);
2594 link
->pause
.forced_rx
= !!(link_temp
&
2595 NVM_CFG1_PORT_DRV_FLOW_CONTROL_RX
);
2596 link
->pause
.forced_tx
= !!(link_temp
&
2597 NVM_CFG1_PORT_DRV_FLOW_CONTROL_TX
);
2598 link
->loopback_mode
= 0;
2600 if (p_hwfn
->mcp_info
->capabilities
& FW_MB_PARAM_FEATURE_SUPPORT_EEE
) {
2601 link_temp
= qed_rd(p_hwfn
, p_ptt
, port_cfg_addr
+
2602 offsetof(struct nvm_cfg1_port
, ext_phy
));
2603 link_temp
&= NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_MASK
;
2604 link_temp
>>= NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_OFFSET
;
2605 p_caps
->default_eee
= QED_MCP_EEE_ENABLED
;
2606 link
->eee
.enable
= true;
2607 switch (link_temp
) {
2608 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_DISABLED
:
2609 p_caps
->default_eee
= QED_MCP_EEE_DISABLED
;
2610 link
->eee
.enable
= false;
2612 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_BALANCED
:
2613 p_caps
->eee_lpi_timer
= EEE_TX_TIMER_USEC_BALANCED_TIME
;
2615 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_AGGRESSIVE
:
2616 p_caps
->eee_lpi_timer
=
2617 EEE_TX_TIMER_USEC_AGGRESSIVE_TIME
;
2619 case NVM_CFG1_PORT_EEE_POWER_SAVING_MODE_LOW_LATENCY
:
2620 p_caps
->eee_lpi_timer
= EEE_TX_TIMER_USEC_LATENCY_TIME
;
2624 link
->eee
.tx_lpi_timer
= p_caps
->eee_lpi_timer
;
2625 link
->eee
.tx_lpi_enable
= link
->eee
.enable
;
2626 link
->eee
.adv_caps
= QED_EEE_1G_ADV
| QED_EEE_10G_ADV
;
2628 p_caps
->default_eee
= QED_MCP_EEE_UNSUPPORTED
;
2633 "Read default link: Speed 0x%08x, Adv. Speed 0x%08x, AN: 0x%02x, PAUSE AN: 0x%02x EEE: %02x [%08x usec]\n",
2634 link
->speed
.forced_speed
,
2635 link
->speed
.advertised_speeds
,
2636 link
->speed
.autoneg
,
2637 link
->pause
.autoneg
,
2638 p_caps
->default_eee
, p_caps
->eee_lpi_timer
);
2640 /* Read Multi-function information from shmem */
2641 addr
= MCP_REG_SCRATCH
+ nvm_cfg1_offset
+
2642 offsetof(struct nvm_cfg1
, glob
) +
2643 offsetof(struct nvm_cfg1_glob
, generic_cont0
);
2645 generic_cont0
= qed_rd(p_hwfn
, p_ptt
, addr
);
2647 mf_mode
= (generic_cont0
& NVM_CFG1_GLOB_MF_MODE_MASK
) >>
2648 NVM_CFG1_GLOB_MF_MODE_OFFSET
;
2651 case NVM_CFG1_GLOB_MF_MODE_MF_ALLOWED
:
2652 p_hwfn
->cdev
->mf_mode
= QED_MF_OVLAN
;
2654 case NVM_CFG1_GLOB_MF_MODE_NPAR1_0
:
2655 p_hwfn
->cdev
->mf_mode
= QED_MF_NPAR
;
2657 case NVM_CFG1_GLOB_MF_MODE_DEFAULT
:
2658 p_hwfn
->cdev
->mf_mode
= QED_MF_DEFAULT
;
2661 DP_INFO(p_hwfn
, "Multi function mode is %08x\n",
2662 p_hwfn
->cdev
->mf_mode
);
2664 /* Read Multi-function information from shmem */
2665 addr
= MCP_REG_SCRATCH
+ nvm_cfg1_offset
+
2666 offsetof(struct nvm_cfg1
, glob
) +
2667 offsetof(struct nvm_cfg1_glob
, device_capabilities
);
2669 device_capabilities
= qed_rd(p_hwfn
, p_ptt
, addr
);
2670 if (device_capabilities
& NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ETHERNET
)
2671 __set_bit(QED_DEV_CAP_ETH
,
2672 &p_hwfn
->hw_info
.device_capabilities
);
2673 if (device_capabilities
& NVM_CFG1_GLOB_DEVICE_CAPABILITIES_FCOE
)
2674 __set_bit(QED_DEV_CAP_FCOE
,
2675 &p_hwfn
->hw_info
.device_capabilities
);
2676 if (device_capabilities
& NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ISCSI
)
2677 __set_bit(QED_DEV_CAP_ISCSI
,
2678 &p_hwfn
->hw_info
.device_capabilities
);
2679 if (device_capabilities
& NVM_CFG1_GLOB_DEVICE_CAPABILITIES_ROCE
)
2680 __set_bit(QED_DEV_CAP_ROCE
,
2681 &p_hwfn
->hw_info
.device_capabilities
);
2683 return qed_mcp_fill_shmem_func_info(p_hwfn
, p_ptt
);
2686 static void qed_get_num_funcs(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
)
2688 u8 num_funcs
, enabled_func_idx
= p_hwfn
->rel_pf_id
;
2689 u32 reg_function_hide
, tmp
, eng_mask
, low_pfs_mask
;
2690 struct qed_dev
*cdev
= p_hwfn
->cdev
;
2692 num_funcs
= QED_IS_AH(cdev
) ? MAX_NUM_PFS_K2
: MAX_NUM_PFS_BB
;
2694 /* Bit 0 of MISCS_REG_FUNCTION_HIDE indicates whether the bypass values
2695 * in the other bits are selected.
2696 * Bits 1-15 are for functions 1-15, respectively, and their value is
2697 * '0' only for enabled functions (function 0 always exists and
2699 * In case of CMT, only the "even" functions are enabled, and thus the
2700 * number of functions for both hwfns is learnt from the same bits.
2702 reg_function_hide
= qed_rd(p_hwfn
, p_ptt
, MISCS_REG_FUNCTION_HIDE
);
2704 if (reg_function_hide
& 0x1) {
2705 if (QED_IS_BB(cdev
)) {
2706 if (QED_PATH_ID(p_hwfn
) && cdev
->num_hwfns
== 1) {
2718 /* Get the number of the enabled functions on the engine */
2719 tmp
= (reg_function_hide
^ 0xffffffff) & eng_mask
;
2726 /* Get the PF index within the enabled functions */
2727 low_pfs_mask
= (0x1 << p_hwfn
->abs_pf_id
) - 1;
2728 tmp
= reg_function_hide
& eng_mask
& low_pfs_mask
;
2736 p_hwfn
->num_funcs_on_engine
= num_funcs
;
2737 p_hwfn
->enabled_func_idx
= enabled_func_idx
;
2741 "PF [rel_id %d, abs_id %d] occupies index %d within the %d enabled functions on the engine\n",
2744 p_hwfn
->enabled_func_idx
, p_hwfn
->num_funcs_on_engine
);
2747 static void qed_hw_info_port_num_bb(struct qed_hwfn
*p_hwfn
,
2748 struct qed_ptt
*p_ptt
)
2752 port_mode
= qed_rd(p_hwfn
, p_ptt
, CNIG_REG_NW_PORT_MODE_BB_B0
);
2754 if (port_mode
< 3) {
2755 p_hwfn
->cdev
->num_ports_in_engine
= 1;
2756 } else if (port_mode
<= 5) {
2757 p_hwfn
->cdev
->num_ports_in_engine
= 2;
2759 DP_NOTICE(p_hwfn
, "PORT MODE: %d not supported\n",
2760 p_hwfn
->cdev
->num_ports_in_engine
);
2762 /* Default num_ports_in_engine to something */
2763 p_hwfn
->cdev
->num_ports_in_engine
= 1;
2767 static void qed_hw_info_port_num_ah(struct qed_hwfn
*p_hwfn
,
2768 struct qed_ptt
*p_ptt
)
2773 p_hwfn
->cdev
->num_ports_in_engine
= 0;
2775 for (i
= 0; i
< MAX_NUM_PORTS_K2
; i
++) {
2776 port
= qed_rd(p_hwfn
, p_ptt
,
2777 CNIG_REG_NIG_PORT0_CONF_K2
+ (i
* 4));
2779 p_hwfn
->cdev
->num_ports_in_engine
++;
2782 if (!p_hwfn
->cdev
->num_ports_in_engine
) {
2783 DP_NOTICE(p_hwfn
, "All NIG ports are inactive\n");
2785 /* Default num_ports_in_engine to something */
2786 p_hwfn
->cdev
->num_ports_in_engine
= 1;
2790 static void qed_hw_info_port_num(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
)
2792 if (QED_IS_BB(p_hwfn
->cdev
))
2793 qed_hw_info_port_num_bb(p_hwfn
, p_ptt
);
2795 qed_hw_info_port_num_ah(p_hwfn
, p_ptt
);
2798 static void qed_get_eee_caps(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
)
2800 struct qed_mcp_link_capabilities
*p_caps
;
2803 p_caps
= &p_hwfn
->mcp_info
->link_capabilities
;
2804 if (p_caps
->default_eee
== QED_MCP_EEE_UNSUPPORTED
)
2807 p_caps
->eee_speed_caps
= 0;
2808 eee_status
= qed_rd(p_hwfn
, p_ptt
, p_hwfn
->mcp_info
->port_addr
+
2809 offsetof(struct public_port
, eee_status
));
2810 eee_status
= (eee_status
& EEE_SUPPORTED_SPEED_MASK
) >>
2811 EEE_SUPPORTED_SPEED_OFFSET
;
2813 if (eee_status
& EEE_1G_SUPPORTED
)
2814 p_caps
->eee_speed_caps
|= QED_EEE_1G_ADV
;
2815 if (eee_status
& EEE_10G_ADV
)
2816 p_caps
->eee_speed_caps
|= QED_EEE_10G_ADV
;
2820 qed_get_hw_info(struct qed_hwfn
*p_hwfn
,
2821 struct qed_ptt
*p_ptt
,
2822 enum qed_pci_personality personality
)
2826 /* Since all information is common, only first hwfns should do this */
2827 if (IS_LEAD_HWFN(p_hwfn
)) {
2828 rc
= qed_iov_hw_info(p_hwfn
);
2833 qed_hw_info_port_num(p_hwfn
, p_ptt
);
2835 qed_mcp_get_capabilities(p_hwfn
, p_ptt
);
2837 qed_hw_get_nvm_info(p_hwfn
, p_ptt
);
2839 rc
= qed_int_igu_read_cam(p_hwfn
, p_ptt
);
2843 if (qed_mcp_is_init(p_hwfn
))
2844 ether_addr_copy(p_hwfn
->hw_info
.hw_mac_addr
,
2845 p_hwfn
->mcp_info
->func_info
.mac
);
2847 eth_random_addr(p_hwfn
->hw_info
.hw_mac_addr
);
2849 if (qed_mcp_is_init(p_hwfn
)) {
2850 if (p_hwfn
->mcp_info
->func_info
.ovlan
!= QED_MCP_VLAN_UNSET
)
2851 p_hwfn
->hw_info
.ovlan
=
2852 p_hwfn
->mcp_info
->func_info
.ovlan
;
2854 qed_mcp_cmd_port_init(p_hwfn
, p_ptt
);
2856 qed_get_eee_caps(p_hwfn
, p_ptt
);
2859 if (qed_mcp_is_init(p_hwfn
)) {
2860 enum qed_pci_personality protocol
;
2862 protocol
= p_hwfn
->mcp_info
->func_info
.protocol
;
2863 p_hwfn
->hw_info
.personality
= protocol
;
2866 p_hwfn
->hw_info
.num_hw_tc
= NUM_PHYS_TCS_4PORT_K2
;
2867 p_hwfn
->hw_info
.num_active_tc
= 1;
2869 qed_get_num_funcs(p_hwfn
, p_ptt
);
2871 if (qed_mcp_is_init(p_hwfn
))
2872 p_hwfn
->hw_info
.mtu
= p_hwfn
->mcp_info
->func_info
.mtu
;
2874 return qed_hw_get_resc(p_hwfn
, p_ptt
);
2877 static int qed_get_dev_info(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
)
2879 struct qed_dev
*cdev
= p_hwfn
->cdev
;
2883 /* Read Vendor Id / Device Id */
2884 pci_read_config_word(cdev
->pdev
, PCI_VENDOR_ID
, &cdev
->vendor_id
);
2885 pci_read_config_word(cdev
->pdev
, PCI_DEVICE_ID
, &cdev
->device_id
);
2887 /* Determine type */
2888 device_id_mask
= cdev
->device_id
& QED_DEV_ID_MASK
;
2889 switch (device_id_mask
) {
2890 case QED_DEV_ID_MASK_BB
:
2891 cdev
->type
= QED_DEV_TYPE_BB
;
2893 case QED_DEV_ID_MASK_AH
:
2894 cdev
->type
= QED_DEV_TYPE_AH
;
2897 DP_NOTICE(p_hwfn
, "Unknown device id 0x%x\n", cdev
->device_id
);
2901 cdev
->chip_num
= (u16
)qed_rd(p_hwfn
, p_ptt
, MISCS_REG_CHIP_NUM
);
2902 cdev
->chip_rev
= (u16
)qed_rd(p_hwfn
, p_ptt
, MISCS_REG_CHIP_REV
);
2904 MASK_FIELD(CHIP_REV
, cdev
->chip_rev
);
2906 /* Learn number of HW-functions */
2907 tmp
= qed_rd(p_hwfn
, p_ptt
, MISCS_REG_CMT_ENABLED_FOR_PAIR
);
2909 if (tmp
& (1 << p_hwfn
->rel_pf_id
)) {
2910 DP_NOTICE(cdev
->hwfns
, "device in CMT mode\n");
2911 cdev
->num_hwfns
= 2;
2913 cdev
->num_hwfns
= 1;
2916 cdev
->chip_bond_id
= qed_rd(p_hwfn
, p_ptt
,
2917 MISCS_REG_CHIP_TEST_REG
) >> 4;
2918 MASK_FIELD(CHIP_BOND_ID
, cdev
->chip_bond_id
);
2919 cdev
->chip_metal
= (u16
)qed_rd(p_hwfn
, p_ptt
, MISCS_REG_CHIP_METAL
);
2920 MASK_FIELD(CHIP_METAL
, cdev
->chip_metal
);
2922 DP_INFO(cdev
->hwfns
,
2923 "Chip details - %s %c%d, Num: %04x Rev: %04x Bond id: %04x Metal: %04x\n",
2924 QED_IS_BB(cdev
) ? "BB" : "AH",
2925 'A' + cdev
->chip_rev
,
2926 (int)cdev
->chip_metal
,
2927 cdev
->chip_num
, cdev
->chip_rev
,
2928 cdev
->chip_bond_id
, cdev
->chip_metal
);
2933 static int qed_hw_prepare_single(struct qed_hwfn
*p_hwfn
,
2934 void __iomem
*p_regview
,
2935 void __iomem
*p_doorbells
,
2936 enum qed_pci_personality personality
)
2940 /* Split PCI bars evenly between hwfns */
2941 p_hwfn
->regview
= p_regview
;
2942 p_hwfn
->doorbells
= p_doorbells
;
2944 if (IS_VF(p_hwfn
->cdev
))
2945 return qed_vf_hw_prepare(p_hwfn
);
2947 /* Validate that chip access is feasible */
2948 if (REG_RD(p_hwfn
, PXP_PF_ME_OPAQUE_ADDR
) == 0xffffffff) {
2950 "Reading the ME register returns all Fs; Preventing further chip access\n");
2954 get_function_id(p_hwfn
);
2956 /* Allocate PTT pool */
2957 rc
= qed_ptt_pool_alloc(p_hwfn
);
2961 /* Allocate the main PTT */
2962 p_hwfn
->p_main_ptt
= qed_get_reserved_ptt(p_hwfn
, RESERVED_PTT_MAIN
);
2964 /* First hwfn learns basic information, e.g., number of hwfns */
2965 if (!p_hwfn
->my_id
) {
2966 rc
= qed_get_dev_info(p_hwfn
, p_hwfn
->p_main_ptt
);
2971 qed_hw_hwfn_prepare(p_hwfn
);
2973 /* Initialize MCP structure */
2974 rc
= qed_mcp_cmd_init(p_hwfn
, p_hwfn
->p_main_ptt
);
2976 DP_NOTICE(p_hwfn
, "Failed initializing mcp command\n");
2980 /* Read the device configuration information from the HW and SHMEM */
2981 rc
= qed_get_hw_info(p_hwfn
, p_hwfn
->p_main_ptt
, personality
);
2983 DP_NOTICE(p_hwfn
, "Failed to get HW information\n");
2987 /* Sending a mailbox to the MFW should be done after qed_get_hw_info()
2988 * is called as it sets the ports number in an engine.
2990 if (IS_LEAD_HWFN(p_hwfn
)) {
2991 rc
= qed_mcp_initiate_pf_flr(p_hwfn
, p_hwfn
->p_main_ptt
);
2993 DP_NOTICE(p_hwfn
, "Failed to initiate PF FLR\n");
2996 /* Allocate the init RT array and initialize the init-ops engine */
2997 rc
= qed_init_alloc(p_hwfn
);
3003 if (IS_LEAD_HWFN(p_hwfn
))
3004 qed_iov_free_hw_info(p_hwfn
->cdev
);
3005 qed_mcp_free(p_hwfn
);
3007 qed_hw_hwfn_free(p_hwfn
);
3012 int qed_hw_prepare(struct qed_dev
*cdev
,
3015 struct qed_hwfn
*p_hwfn
= QED_LEADING_HWFN(cdev
);
3018 /* Store the precompiled init data ptrs */
3020 qed_init_iro_array(cdev
);
3022 /* Initialize the first hwfn - will learn number of hwfns */
3023 rc
= qed_hw_prepare_single(p_hwfn
,
3025 cdev
->doorbells
, personality
);
3029 personality
= p_hwfn
->hw_info
.personality
;
3031 /* Initialize the rest of the hwfns */
3032 if (cdev
->num_hwfns
> 1) {
3033 void __iomem
*p_regview
, *p_doorbell
;
3036 /* adjust bar offset for second engine */
3037 addr
= cdev
->regview
+
3038 qed_hw_bar_size(p_hwfn
, p_hwfn
->p_main_ptt
,
3042 addr
= cdev
->doorbells
+
3043 qed_hw_bar_size(p_hwfn
, p_hwfn
->p_main_ptt
,
3047 /* prepare second hw function */
3048 rc
= qed_hw_prepare_single(&cdev
->hwfns
[1], p_regview
,
3049 p_doorbell
, personality
);
3051 /* in case of error, need to free the previously
3052 * initiliazed hwfn 0.
3056 qed_init_free(p_hwfn
);
3057 qed_mcp_free(p_hwfn
);
3058 qed_hw_hwfn_free(p_hwfn
);
3066 void qed_hw_remove(struct qed_dev
*cdev
)
3068 struct qed_hwfn
*p_hwfn
= QED_LEADING_HWFN(cdev
);
3072 qed_mcp_ov_update_driver_state(p_hwfn
, p_hwfn
->p_main_ptt
,
3073 QED_OV_DRIVER_STATE_NOT_LOADED
);
3075 for_each_hwfn(cdev
, i
) {
3076 struct qed_hwfn
*p_hwfn
= &cdev
->hwfns
[i
];
3079 qed_vf_pf_release(p_hwfn
);
3083 qed_init_free(p_hwfn
);
3084 qed_hw_hwfn_free(p_hwfn
);
3085 qed_mcp_free(p_hwfn
);
3088 qed_iov_free_hw_info(cdev
);
3091 static void qed_chain_free_next_ptr(struct qed_dev
*cdev
,
3092 struct qed_chain
*p_chain
)
3094 void *p_virt
= p_chain
->p_virt_addr
, *p_virt_next
= NULL
;
3095 dma_addr_t p_phys
= p_chain
->p_phys_addr
, p_phys_next
= 0;
3096 struct qed_chain_next
*p_next
;
3102 size
= p_chain
->elem_size
* p_chain
->usable_per_page
;
3104 for (i
= 0; i
< p_chain
->page_cnt
; i
++) {
3108 p_next
= (struct qed_chain_next
*)((u8
*)p_virt
+ size
);
3109 p_virt_next
= p_next
->next_virt
;
3110 p_phys_next
= HILO_DMA_REGPAIR(p_next
->next_phys
);
3112 dma_free_coherent(&cdev
->pdev
->dev
,
3113 QED_CHAIN_PAGE_SIZE
, p_virt
, p_phys
);
3115 p_virt
= p_virt_next
;
3116 p_phys
= p_phys_next
;
3120 static void qed_chain_free_single(struct qed_dev
*cdev
,
3121 struct qed_chain
*p_chain
)
3123 if (!p_chain
->p_virt_addr
)
3126 dma_free_coherent(&cdev
->pdev
->dev
,
3127 QED_CHAIN_PAGE_SIZE
,
3128 p_chain
->p_virt_addr
, p_chain
->p_phys_addr
);
3131 static void qed_chain_free_pbl(struct qed_dev
*cdev
, struct qed_chain
*p_chain
)
3133 void **pp_virt_addr_tbl
= p_chain
->pbl
.pp_virt_addr_tbl
;
3134 u32 page_cnt
= p_chain
->page_cnt
, i
, pbl_size
;
3135 u8
*p_pbl_virt
= p_chain
->pbl_sp
.p_virt_table
;
3137 if (!pp_virt_addr_tbl
)
3143 for (i
= 0; i
< page_cnt
; i
++) {
3144 if (!pp_virt_addr_tbl
[i
])
3147 dma_free_coherent(&cdev
->pdev
->dev
,
3148 QED_CHAIN_PAGE_SIZE
,
3149 pp_virt_addr_tbl
[i
],
3150 *(dma_addr_t
*)p_pbl_virt
);
3152 p_pbl_virt
+= QED_CHAIN_PBL_ENTRY_SIZE
;
3155 pbl_size
= page_cnt
* QED_CHAIN_PBL_ENTRY_SIZE
;
3157 if (!p_chain
->b_external_pbl
)
3158 dma_free_coherent(&cdev
->pdev
->dev
,
3160 p_chain
->pbl_sp
.p_virt_table
,
3161 p_chain
->pbl_sp
.p_phys_table
);
3163 vfree(p_chain
->pbl
.pp_virt_addr_tbl
);
3164 p_chain
->pbl
.pp_virt_addr_tbl
= NULL
;
3167 void qed_chain_free(struct qed_dev
*cdev
, struct qed_chain
*p_chain
)
3169 switch (p_chain
->mode
) {
3170 case QED_CHAIN_MODE_NEXT_PTR
:
3171 qed_chain_free_next_ptr(cdev
, p_chain
);
3173 case QED_CHAIN_MODE_SINGLE
:
3174 qed_chain_free_single(cdev
, p_chain
);
3176 case QED_CHAIN_MODE_PBL
:
3177 qed_chain_free_pbl(cdev
, p_chain
);
3183 qed_chain_alloc_sanity_check(struct qed_dev
*cdev
,
3184 enum qed_chain_cnt_type cnt_type
,
3185 size_t elem_size
, u32 page_cnt
)
3187 u64 chain_size
= ELEMS_PER_PAGE(elem_size
) * page_cnt
;
3189 /* The actual chain size can be larger than the maximal possible value
3190 * after rounding up the requested elements number to pages, and after
3191 * taking into acount the unusuable elements (next-ptr elements).
3192 * The size of a "u16" chain can be (U16_MAX + 1) since the chain
3193 * size/capacity fields are of a u32 type.
3195 if ((cnt_type
== QED_CHAIN_CNT_TYPE_U16
&&
3196 chain_size
> ((u32
)U16_MAX
+ 1)) ||
3197 (cnt_type
== QED_CHAIN_CNT_TYPE_U32
&& chain_size
> U32_MAX
)) {
3199 "The actual chain size (0x%llx) is larger than the maximal possible value\n",
3208 qed_chain_alloc_next_ptr(struct qed_dev
*cdev
, struct qed_chain
*p_chain
)
3210 void *p_virt
= NULL
, *p_virt_prev
= NULL
;
3211 dma_addr_t p_phys
= 0;
3214 for (i
= 0; i
< p_chain
->page_cnt
; i
++) {
3215 p_virt
= dma_alloc_coherent(&cdev
->pdev
->dev
,
3216 QED_CHAIN_PAGE_SIZE
,
3217 &p_phys
, GFP_KERNEL
);
3222 qed_chain_init_mem(p_chain
, p_virt
, p_phys
);
3223 qed_chain_reset(p_chain
);
3225 qed_chain_init_next_ptr_elem(p_chain
, p_virt_prev
,
3229 p_virt_prev
= p_virt
;
3231 /* Last page's next element should point to the beginning of the
3234 qed_chain_init_next_ptr_elem(p_chain
, p_virt_prev
,
3235 p_chain
->p_virt_addr
,
3236 p_chain
->p_phys_addr
);
3242 qed_chain_alloc_single(struct qed_dev
*cdev
, struct qed_chain
*p_chain
)
3244 dma_addr_t p_phys
= 0;
3245 void *p_virt
= NULL
;
3247 p_virt
= dma_alloc_coherent(&cdev
->pdev
->dev
,
3248 QED_CHAIN_PAGE_SIZE
, &p_phys
, GFP_KERNEL
);
3252 qed_chain_init_mem(p_chain
, p_virt
, p_phys
);
3253 qed_chain_reset(p_chain
);
3259 qed_chain_alloc_pbl(struct qed_dev
*cdev
,
3260 struct qed_chain
*p_chain
,
3261 struct qed_chain_ext_pbl
*ext_pbl
)
3263 u32 page_cnt
= p_chain
->page_cnt
, size
, i
;
3264 dma_addr_t p_phys
= 0, p_pbl_phys
= 0;
3265 void **pp_virt_addr_tbl
= NULL
;
3266 u8
*p_pbl_virt
= NULL
;
3267 void *p_virt
= NULL
;
3269 size
= page_cnt
* sizeof(*pp_virt_addr_tbl
);
3270 pp_virt_addr_tbl
= vzalloc(size
);
3271 if (!pp_virt_addr_tbl
)
3274 /* The allocation of the PBL table is done with its full size, since it
3275 * is expected to be successive.
3276 * qed_chain_init_pbl_mem() is called even in a case of an allocation
3277 * failure, since pp_virt_addr_tbl was previously allocated, and it
3278 * should be saved to allow its freeing during the error flow.
3280 size
= page_cnt
* QED_CHAIN_PBL_ENTRY_SIZE
;
3283 p_pbl_virt
= dma_alloc_coherent(&cdev
->pdev
->dev
,
3284 size
, &p_pbl_phys
, GFP_KERNEL
);
3286 p_pbl_virt
= ext_pbl
->p_pbl_virt
;
3287 p_pbl_phys
= ext_pbl
->p_pbl_phys
;
3288 p_chain
->b_external_pbl
= true;
3291 qed_chain_init_pbl_mem(p_chain
, p_pbl_virt
, p_pbl_phys
,
3296 for (i
= 0; i
< page_cnt
; i
++) {
3297 p_virt
= dma_alloc_coherent(&cdev
->pdev
->dev
,
3298 QED_CHAIN_PAGE_SIZE
,
3299 &p_phys
, GFP_KERNEL
);
3304 qed_chain_init_mem(p_chain
, p_virt
, p_phys
);
3305 qed_chain_reset(p_chain
);
3308 /* Fill the PBL table with the physical address of the page */
3309 *(dma_addr_t
*)p_pbl_virt
= p_phys
;
3310 /* Keep the virtual address of the page */
3311 p_chain
->pbl
.pp_virt_addr_tbl
[i
] = p_virt
;
3313 p_pbl_virt
+= QED_CHAIN_PBL_ENTRY_SIZE
;
3319 int qed_chain_alloc(struct qed_dev
*cdev
,
3320 enum qed_chain_use_mode intended_use
,
3321 enum qed_chain_mode mode
,
3322 enum qed_chain_cnt_type cnt_type
,
3325 struct qed_chain
*p_chain
,
3326 struct qed_chain_ext_pbl
*ext_pbl
)
3331 if (mode
== QED_CHAIN_MODE_SINGLE
)
3334 page_cnt
= QED_CHAIN_PAGE_CNT(num_elems
, elem_size
, mode
);
3336 rc
= qed_chain_alloc_sanity_check(cdev
, cnt_type
, elem_size
, page_cnt
);
3339 "Cannot allocate a chain with the given arguments:\n");
3341 "[use_mode %d, mode %d, cnt_type %d, num_elems %d, elem_size %zu]\n",
3342 intended_use
, mode
, cnt_type
, num_elems
, elem_size
);
3346 qed_chain_init_params(p_chain
, page_cnt
, (u8
) elem_size
, intended_use
,
3350 case QED_CHAIN_MODE_NEXT_PTR
:
3351 rc
= qed_chain_alloc_next_ptr(cdev
, p_chain
);
3353 case QED_CHAIN_MODE_SINGLE
:
3354 rc
= qed_chain_alloc_single(cdev
, p_chain
);
3356 case QED_CHAIN_MODE_PBL
:
3357 rc
= qed_chain_alloc_pbl(cdev
, p_chain
, ext_pbl
);
3366 qed_chain_free(cdev
, p_chain
);
3370 int qed_fw_l2_queue(struct qed_hwfn
*p_hwfn
, u16 src_id
, u16
*dst_id
)
3372 if (src_id
>= RESC_NUM(p_hwfn
, QED_L2_QUEUE
)) {
3375 min
= (u16
) RESC_START(p_hwfn
, QED_L2_QUEUE
);
3376 max
= min
+ RESC_NUM(p_hwfn
, QED_L2_QUEUE
);
3378 "l2_queue id [%d] is not valid, available indices [%d - %d]\n",
3384 *dst_id
= RESC_START(p_hwfn
, QED_L2_QUEUE
) + src_id
;
3389 int qed_fw_vport(struct qed_hwfn
*p_hwfn
, u8 src_id
, u8
*dst_id
)
3391 if (src_id
>= RESC_NUM(p_hwfn
, QED_VPORT
)) {
3394 min
= (u8
)RESC_START(p_hwfn
, QED_VPORT
);
3395 max
= min
+ RESC_NUM(p_hwfn
, QED_VPORT
);
3397 "vport id [%d] is not valid, available indices [%d - %d]\n",
3403 *dst_id
= RESC_START(p_hwfn
, QED_VPORT
) + src_id
;
3408 int qed_fw_rss_eng(struct qed_hwfn
*p_hwfn
, u8 src_id
, u8
*dst_id
)
3410 if (src_id
>= RESC_NUM(p_hwfn
, QED_RSS_ENG
)) {
3413 min
= (u8
)RESC_START(p_hwfn
, QED_RSS_ENG
);
3414 max
= min
+ RESC_NUM(p_hwfn
, QED_RSS_ENG
);
3416 "rss_eng id [%d] is not valid, available indices [%d - %d]\n",
3422 *dst_id
= RESC_START(p_hwfn
, QED_RSS_ENG
) + src_id
;
3427 static void qed_llh_mac_to_filter(u32
*p_high
, u32
*p_low
,
3430 *p_high
= p_filter
[1] | (p_filter
[0] << 8);
3431 *p_low
= p_filter
[5] | (p_filter
[4] << 8) |
3432 (p_filter
[3] << 16) | (p_filter
[2] << 24);
3435 int qed_llh_add_mac_filter(struct qed_hwfn
*p_hwfn
,
3436 struct qed_ptt
*p_ptt
, u8
*p_filter
)
3438 u32 high
= 0, low
= 0, en
;
3441 if (!(IS_MF_SI(p_hwfn
) || IS_MF_DEFAULT(p_hwfn
)))
3444 qed_llh_mac_to_filter(&high
, &low
, p_filter
);
3446 /* Find a free entry and utilize it */
3447 for (i
= 0; i
< NIG_REG_LLH_FUNC_FILTER_EN_SIZE
; i
++) {
3448 en
= qed_rd(p_hwfn
, p_ptt
,
3449 NIG_REG_LLH_FUNC_FILTER_EN
+ i
* sizeof(u32
));
3452 qed_wr(p_hwfn
, p_ptt
,
3453 NIG_REG_LLH_FUNC_FILTER_VALUE
+
3454 2 * i
* sizeof(u32
), low
);
3455 qed_wr(p_hwfn
, p_ptt
,
3456 NIG_REG_LLH_FUNC_FILTER_VALUE
+
3457 (2 * i
+ 1) * sizeof(u32
), high
);
3458 qed_wr(p_hwfn
, p_ptt
,
3459 NIG_REG_LLH_FUNC_FILTER_MODE
+ i
* sizeof(u32
), 0);
3460 qed_wr(p_hwfn
, p_ptt
,
3461 NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE
+
3462 i
* sizeof(u32
), 0);
3463 qed_wr(p_hwfn
, p_ptt
,
3464 NIG_REG_LLH_FUNC_FILTER_EN
+ i
* sizeof(u32
), 1);
3467 if (i
>= NIG_REG_LLH_FUNC_FILTER_EN_SIZE
) {
3469 "Failed to find an empty LLH filter to utilize\n");
3473 DP_VERBOSE(p_hwfn
, NETIF_MSG_HW
,
3474 "mac: %pM is added at %d\n",
3480 void qed_llh_remove_mac_filter(struct qed_hwfn
*p_hwfn
,
3481 struct qed_ptt
*p_ptt
, u8
*p_filter
)
3483 u32 high
= 0, low
= 0;
3486 if (!(IS_MF_SI(p_hwfn
) || IS_MF_DEFAULT(p_hwfn
)))
3489 qed_llh_mac_to_filter(&high
, &low
, p_filter
);
3491 /* Find the entry and clean it */
3492 for (i
= 0; i
< NIG_REG_LLH_FUNC_FILTER_EN_SIZE
; i
++) {
3493 if (qed_rd(p_hwfn
, p_ptt
,
3494 NIG_REG_LLH_FUNC_FILTER_VALUE
+
3495 2 * i
* sizeof(u32
)) != low
)
3497 if (qed_rd(p_hwfn
, p_ptt
,
3498 NIG_REG_LLH_FUNC_FILTER_VALUE
+
3499 (2 * i
+ 1) * sizeof(u32
)) != high
)
3502 qed_wr(p_hwfn
, p_ptt
,
3503 NIG_REG_LLH_FUNC_FILTER_EN
+ i
* sizeof(u32
), 0);
3504 qed_wr(p_hwfn
, p_ptt
,
3505 NIG_REG_LLH_FUNC_FILTER_VALUE
+ 2 * i
* sizeof(u32
), 0);
3506 qed_wr(p_hwfn
, p_ptt
,
3507 NIG_REG_LLH_FUNC_FILTER_VALUE
+
3508 (2 * i
+ 1) * sizeof(u32
), 0);
3510 DP_VERBOSE(p_hwfn
, NETIF_MSG_HW
,
3511 "mac: %pM is removed from %d\n",
3515 if (i
>= NIG_REG_LLH_FUNC_FILTER_EN_SIZE
)
3516 DP_NOTICE(p_hwfn
, "Tried to remove a non-configured filter\n");
3520 qed_llh_add_protocol_filter(struct qed_hwfn
*p_hwfn
,
3521 struct qed_ptt
*p_ptt
,
3522 u16 source_port_or_eth_type
,
3523 u16 dest_port
, enum qed_llh_port_filter_type_t type
)
3525 u32 high
= 0, low
= 0, en
;
3528 if (!(IS_MF_SI(p_hwfn
) || IS_MF_DEFAULT(p_hwfn
)))
3532 case QED_LLH_FILTER_ETHERTYPE
:
3533 high
= source_port_or_eth_type
;
3535 case QED_LLH_FILTER_TCP_SRC_PORT
:
3536 case QED_LLH_FILTER_UDP_SRC_PORT
:
3537 low
= source_port_or_eth_type
<< 16;
3539 case QED_LLH_FILTER_TCP_DEST_PORT
:
3540 case QED_LLH_FILTER_UDP_DEST_PORT
:
3543 case QED_LLH_FILTER_TCP_SRC_AND_DEST_PORT
:
3544 case QED_LLH_FILTER_UDP_SRC_AND_DEST_PORT
:
3545 low
= (source_port_or_eth_type
<< 16) | dest_port
;
3549 "Non valid LLH protocol filter type %d\n", type
);
3552 /* Find a free entry and utilize it */
3553 for (i
= 0; i
< NIG_REG_LLH_FUNC_FILTER_EN_SIZE
; i
++) {
3554 en
= qed_rd(p_hwfn
, p_ptt
,
3555 NIG_REG_LLH_FUNC_FILTER_EN
+ i
* sizeof(u32
));
3558 qed_wr(p_hwfn
, p_ptt
,
3559 NIG_REG_LLH_FUNC_FILTER_VALUE
+
3560 2 * i
* sizeof(u32
), low
);
3561 qed_wr(p_hwfn
, p_ptt
,
3562 NIG_REG_LLH_FUNC_FILTER_VALUE
+
3563 (2 * i
+ 1) * sizeof(u32
), high
);
3564 qed_wr(p_hwfn
, p_ptt
,
3565 NIG_REG_LLH_FUNC_FILTER_MODE
+ i
* sizeof(u32
), 1);
3566 qed_wr(p_hwfn
, p_ptt
,
3567 NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE
+
3568 i
* sizeof(u32
), 1 << type
);
3569 qed_wr(p_hwfn
, p_ptt
,
3570 NIG_REG_LLH_FUNC_FILTER_EN
+ i
* sizeof(u32
), 1);
3573 if (i
>= NIG_REG_LLH_FUNC_FILTER_EN_SIZE
) {
3575 "Failed to find an empty LLH filter to utilize\n");
3579 case QED_LLH_FILTER_ETHERTYPE
:
3580 DP_VERBOSE(p_hwfn
, NETIF_MSG_HW
,
3581 "ETH type %x is added at %d\n",
3582 source_port_or_eth_type
, i
);
3584 case QED_LLH_FILTER_TCP_SRC_PORT
:
3585 DP_VERBOSE(p_hwfn
, NETIF_MSG_HW
,
3586 "TCP src port %x is added at %d\n",
3587 source_port_or_eth_type
, i
);
3589 case QED_LLH_FILTER_UDP_SRC_PORT
:
3590 DP_VERBOSE(p_hwfn
, NETIF_MSG_HW
,
3591 "UDP src port %x is added at %d\n",
3592 source_port_or_eth_type
, i
);
3594 case QED_LLH_FILTER_TCP_DEST_PORT
:
3595 DP_VERBOSE(p_hwfn
, NETIF_MSG_HW
,
3596 "TCP dst port %x is added at %d\n", dest_port
, i
);
3598 case QED_LLH_FILTER_UDP_DEST_PORT
:
3599 DP_VERBOSE(p_hwfn
, NETIF_MSG_HW
,
3600 "UDP dst port %x is added at %d\n", dest_port
, i
);
3602 case QED_LLH_FILTER_TCP_SRC_AND_DEST_PORT
:
3603 DP_VERBOSE(p_hwfn
, NETIF_MSG_HW
,
3604 "TCP src/dst ports %x/%x are added at %d\n",
3605 source_port_or_eth_type
, dest_port
, i
);
3607 case QED_LLH_FILTER_UDP_SRC_AND_DEST_PORT
:
3608 DP_VERBOSE(p_hwfn
, NETIF_MSG_HW
,
3609 "UDP src/dst ports %x/%x are added at %d\n",
3610 source_port_or_eth_type
, dest_port
, i
);
3617 qed_llh_remove_protocol_filter(struct qed_hwfn
*p_hwfn
,
3618 struct qed_ptt
*p_ptt
,
3619 u16 source_port_or_eth_type
,
3621 enum qed_llh_port_filter_type_t type
)
3623 u32 high
= 0, low
= 0;
3626 if (!(IS_MF_SI(p_hwfn
) || IS_MF_DEFAULT(p_hwfn
)))
3630 case QED_LLH_FILTER_ETHERTYPE
:
3631 high
= source_port_or_eth_type
;
3633 case QED_LLH_FILTER_TCP_SRC_PORT
:
3634 case QED_LLH_FILTER_UDP_SRC_PORT
:
3635 low
= source_port_or_eth_type
<< 16;
3637 case QED_LLH_FILTER_TCP_DEST_PORT
:
3638 case QED_LLH_FILTER_UDP_DEST_PORT
:
3641 case QED_LLH_FILTER_TCP_SRC_AND_DEST_PORT
:
3642 case QED_LLH_FILTER_UDP_SRC_AND_DEST_PORT
:
3643 low
= (source_port_or_eth_type
<< 16) | dest_port
;
3647 "Non valid LLH protocol filter type %d\n", type
);
3651 for (i
= 0; i
< NIG_REG_LLH_FUNC_FILTER_EN_SIZE
; i
++) {
3652 if (!qed_rd(p_hwfn
, p_ptt
,
3653 NIG_REG_LLH_FUNC_FILTER_EN
+ i
* sizeof(u32
)))
3655 if (!qed_rd(p_hwfn
, p_ptt
,
3656 NIG_REG_LLH_FUNC_FILTER_MODE
+ i
* sizeof(u32
)))
3658 if (!(qed_rd(p_hwfn
, p_ptt
,
3659 NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE
+
3660 i
* sizeof(u32
)) & BIT(type
)))
3662 if (qed_rd(p_hwfn
, p_ptt
,
3663 NIG_REG_LLH_FUNC_FILTER_VALUE
+
3664 2 * i
* sizeof(u32
)) != low
)
3666 if (qed_rd(p_hwfn
, p_ptt
,
3667 NIG_REG_LLH_FUNC_FILTER_VALUE
+
3668 (2 * i
+ 1) * sizeof(u32
)) != high
)
3671 qed_wr(p_hwfn
, p_ptt
,
3672 NIG_REG_LLH_FUNC_FILTER_EN
+ i
* sizeof(u32
), 0);
3673 qed_wr(p_hwfn
, p_ptt
,
3674 NIG_REG_LLH_FUNC_FILTER_MODE
+ i
* sizeof(u32
), 0);
3675 qed_wr(p_hwfn
, p_ptt
,
3676 NIG_REG_LLH_FUNC_FILTER_PROTOCOL_TYPE
+
3677 i
* sizeof(u32
), 0);
3678 qed_wr(p_hwfn
, p_ptt
,
3679 NIG_REG_LLH_FUNC_FILTER_VALUE
+ 2 * i
* sizeof(u32
), 0);
3680 qed_wr(p_hwfn
, p_ptt
,
3681 NIG_REG_LLH_FUNC_FILTER_VALUE
+
3682 (2 * i
+ 1) * sizeof(u32
), 0);
3686 if (i
>= NIG_REG_LLH_FUNC_FILTER_EN_SIZE
)
3687 DP_NOTICE(p_hwfn
, "Tried to remove a non-configured filter\n");
3690 static int qed_set_coalesce(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
,
3691 u32 hw_addr
, void *p_eth_qzone
,
3692 size_t eth_qzone_size
, u8 timeset
)
3694 struct coalescing_timeset
*p_coal_timeset
;
3696 if (p_hwfn
->cdev
->int_coalescing_mode
!= QED_COAL_MODE_ENABLE
) {
3697 DP_NOTICE(p_hwfn
, "Coalescing configuration not enabled\n");
3701 p_coal_timeset
= p_eth_qzone
;
3702 memset(p_eth_qzone
, 0, eth_qzone_size
);
3703 SET_FIELD(p_coal_timeset
->value
, COALESCING_TIMESET_TIMESET
, timeset
);
3704 SET_FIELD(p_coal_timeset
->value
, COALESCING_TIMESET_VALID
, 1);
3705 qed_memcpy_to(p_hwfn
, p_ptt
, hw_addr
, p_eth_qzone
, eth_qzone_size
);
3710 int qed_set_queue_coalesce(u16 rx_coal
, u16 tx_coal
, void *p_handle
)
3712 struct qed_queue_cid
*p_cid
= p_handle
;
3713 struct qed_hwfn
*p_hwfn
;
3714 struct qed_ptt
*p_ptt
;
3717 p_hwfn
= p_cid
->p_owner
;
3719 if (IS_VF(p_hwfn
->cdev
))
3720 return qed_vf_pf_set_coalesce(p_hwfn
, rx_coal
, tx_coal
, p_cid
);
3722 p_ptt
= qed_ptt_acquire(p_hwfn
);
3727 rc
= qed_set_rxq_coalesce(p_hwfn
, p_ptt
, rx_coal
, p_cid
);
3730 p_hwfn
->cdev
->rx_coalesce_usecs
= rx_coal
;
3734 rc
= qed_set_txq_coalesce(p_hwfn
, p_ptt
, tx_coal
, p_cid
);
3737 p_hwfn
->cdev
->tx_coalesce_usecs
= tx_coal
;
3740 qed_ptt_release(p_hwfn
, p_ptt
);
3744 int qed_set_rxq_coalesce(struct qed_hwfn
*p_hwfn
,
3745 struct qed_ptt
*p_ptt
,
3746 u16 coalesce
, struct qed_queue_cid
*p_cid
)
3748 struct ustorm_eth_queue_zone eth_qzone
;
3749 u8 timeset
, timer_res
;
3753 /* Coalesce = (timeset << timer-resolution), timeset is 7bit wide */
3754 if (coalesce
<= 0x7F) {
3756 } else if (coalesce
<= 0xFF) {
3758 } else if (coalesce
<= 0x1FF) {
3761 DP_ERR(p_hwfn
, "Invalid coalesce value - %d\n", coalesce
);
3764 timeset
= (u8
)(coalesce
>> timer_res
);
3766 rc
= qed_int_set_timer_res(p_hwfn
, p_ptt
, timer_res
,
3767 p_cid
->sb_igu_id
, false);
3771 address
= BAR0_MAP_REG_USDM_RAM
+
3772 USTORM_ETH_QUEUE_ZONE_OFFSET(p_cid
->abs
.queue_id
);
3774 rc
= qed_set_coalesce(p_hwfn
, p_ptt
, address
, ð_qzone
,
3775 sizeof(struct ustorm_eth_queue_zone
), timeset
);
3783 int qed_set_txq_coalesce(struct qed_hwfn
*p_hwfn
,
3784 struct qed_ptt
*p_ptt
,
3785 u16 coalesce
, struct qed_queue_cid
*p_cid
)
3787 struct xstorm_eth_queue_zone eth_qzone
;
3788 u8 timeset
, timer_res
;
3792 /* Coalesce = (timeset << timer-resolution), timeset is 7bit wide */
3793 if (coalesce
<= 0x7F) {
3795 } else if (coalesce
<= 0xFF) {
3797 } else if (coalesce
<= 0x1FF) {
3800 DP_ERR(p_hwfn
, "Invalid coalesce value - %d\n", coalesce
);
3803 timeset
= (u8
)(coalesce
>> timer_res
);
3805 rc
= qed_int_set_timer_res(p_hwfn
, p_ptt
, timer_res
,
3806 p_cid
->sb_igu_id
, true);
3810 address
= BAR0_MAP_REG_XSDM_RAM
+
3811 XSTORM_ETH_QUEUE_ZONE_OFFSET(p_cid
->abs
.queue_id
);
3813 rc
= qed_set_coalesce(p_hwfn
, p_ptt
, address
, ð_qzone
,
3814 sizeof(struct xstorm_eth_queue_zone
), timeset
);
3819 /* Calculate final WFQ values for all vports and configure them.
3820 * After this configuration each vport will have
3821 * approx min rate = min_pf_rate * (vport_wfq / QED_WFQ_UNIT)
3823 static void qed_configure_wfq_for_all_vports(struct qed_hwfn
*p_hwfn
,
3824 struct qed_ptt
*p_ptt
,
3827 struct init_qm_vport_params
*vport_params
;
3830 vport_params
= p_hwfn
->qm_info
.qm_vport_params
;
3832 for (i
= 0; i
< p_hwfn
->qm_info
.num_vports
; i
++) {
3833 u32 wfq_speed
= p_hwfn
->qm_info
.wfq_data
[i
].min_speed
;
3835 vport_params
[i
].vport_wfq
= (wfq_speed
* QED_WFQ_UNIT
) /
3837 qed_init_vport_wfq(p_hwfn
, p_ptt
,
3838 vport_params
[i
].first_tx_pq_id
,
3839 vport_params
[i
].vport_wfq
);
3843 static void qed_init_wfq_default_param(struct qed_hwfn
*p_hwfn
,
3849 for (i
= 0; i
< p_hwfn
->qm_info
.num_vports
; i
++)
3850 p_hwfn
->qm_info
.qm_vport_params
[i
].vport_wfq
= 1;
3853 static void qed_disable_wfq_for_all_vports(struct qed_hwfn
*p_hwfn
,
3854 struct qed_ptt
*p_ptt
,
3857 struct init_qm_vport_params
*vport_params
;
3860 vport_params
= p_hwfn
->qm_info
.qm_vport_params
;
3862 for (i
= 0; i
< p_hwfn
->qm_info
.num_vports
; i
++) {
3863 qed_init_wfq_default_param(p_hwfn
, min_pf_rate
);
3864 qed_init_vport_wfq(p_hwfn
, p_ptt
,
3865 vport_params
[i
].first_tx_pq_id
,
3866 vport_params
[i
].vport_wfq
);
3870 /* This function performs several validations for WFQ
3871 * configuration and required min rate for a given vport
3872 * 1. req_rate must be greater than one percent of min_pf_rate.
3873 * 2. req_rate should not cause other vports [not configured for WFQ explicitly]
3874 * rates to get less than one percent of min_pf_rate.
3875 * 3. total_req_min_rate [all vports min rate sum] shouldn't exceed min_pf_rate.
3877 static int qed_init_wfq_param(struct qed_hwfn
*p_hwfn
,
3878 u16 vport_id
, u32 req_rate
, u32 min_pf_rate
)
3880 u32 total_req_min_rate
= 0, total_left_rate
= 0, left_rate_per_vp
= 0;
3881 int non_requested_count
= 0, req_count
= 0, i
, num_vports
;
3883 num_vports
= p_hwfn
->qm_info
.num_vports
;
3885 /* Accounting for the vports which are configured for WFQ explicitly */
3886 for (i
= 0; i
< num_vports
; i
++) {
3889 if ((i
!= vport_id
) &&
3890 p_hwfn
->qm_info
.wfq_data
[i
].configured
) {
3892 tmp_speed
= p_hwfn
->qm_info
.wfq_data
[i
].min_speed
;
3893 total_req_min_rate
+= tmp_speed
;
3897 /* Include current vport data as well */
3899 total_req_min_rate
+= req_rate
;
3900 non_requested_count
= num_vports
- req_count
;
3902 if (req_rate
< min_pf_rate
/ QED_WFQ_UNIT
) {
3903 DP_VERBOSE(p_hwfn
, NETIF_MSG_LINK
,
3904 "Vport [%d] - Requested rate[%d Mbps] is less than one percent of configured PF min rate[%d Mbps]\n",
3905 vport_id
, req_rate
, min_pf_rate
);
3909 if (num_vports
> QED_WFQ_UNIT
) {
3910 DP_VERBOSE(p_hwfn
, NETIF_MSG_LINK
,
3911 "Number of vports is greater than %d\n",
3916 if (total_req_min_rate
> min_pf_rate
) {
3917 DP_VERBOSE(p_hwfn
, NETIF_MSG_LINK
,
3918 "Total requested min rate for all vports[%d Mbps] is greater than configured PF min rate[%d Mbps]\n",
3919 total_req_min_rate
, min_pf_rate
);
3923 total_left_rate
= min_pf_rate
- total_req_min_rate
;
3925 left_rate_per_vp
= total_left_rate
/ non_requested_count
;
3926 if (left_rate_per_vp
< min_pf_rate
/ QED_WFQ_UNIT
) {
3927 DP_VERBOSE(p_hwfn
, NETIF_MSG_LINK
,
3928 "Non WFQ configured vports rate [%d Mbps] is less than one percent of configured PF min rate[%d Mbps]\n",
3929 left_rate_per_vp
, min_pf_rate
);
3933 p_hwfn
->qm_info
.wfq_data
[vport_id
].min_speed
= req_rate
;
3934 p_hwfn
->qm_info
.wfq_data
[vport_id
].configured
= true;
3936 for (i
= 0; i
< num_vports
; i
++) {
3937 if (p_hwfn
->qm_info
.wfq_data
[i
].configured
)
3940 p_hwfn
->qm_info
.wfq_data
[i
].min_speed
= left_rate_per_vp
;
3946 static int __qed_configure_vport_wfq(struct qed_hwfn
*p_hwfn
,
3947 struct qed_ptt
*p_ptt
, u16 vp_id
, u32 rate
)
3949 struct qed_mcp_link_state
*p_link
;
3952 p_link
= &p_hwfn
->cdev
->hwfns
[0].mcp_info
->link_output
;
3954 if (!p_link
->min_pf_rate
) {
3955 p_hwfn
->qm_info
.wfq_data
[vp_id
].min_speed
= rate
;
3956 p_hwfn
->qm_info
.wfq_data
[vp_id
].configured
= true;
3960 rc
= qed_init_wfq_param(p_hwfn
, vp_id
, rate
, p_link
->min_pf_rate
);
3963 qed_configure_wfq_for_all_vports(p_hwfn
, p_ptt
,
3964 p_link
->min_pf_rate
);
3967 "Validation failed while configuring min rate\n");
3972 static int __qed_configure_vp_wfq_on_link_change(struct qed_hwfn
*p_hwfn
,
3973 struct qed_ptt
*p_ptt
,
3976 bool use_wfq
= false;
3980 /* Validate all pre configured vports for wfq */
3981 for (i
= 0; i
< p_hwfn
->qm_info
.num_vports
; i
++) {
3984 if (!p_hwfn
->qm_info
.wfq_data
[i
].configured
)
3987 rate
= p_hwfn
->qm_info
.wfq_data
[i
].min_speed
;
3990 rc
= qed_init_wfq_param(p_hwfn
, i
, rate
, min_pf_rate
);
3993 "WFQ validation failed while configuring min rate\n");
3999 qed_configure_wfq_for_all_vports(p_hwfn
, p_ptt
, min_pf_rate
);
4001 qed_disable_wfq_for_all_vports(p_hwfn
, p_ptt
, min_pf_rate
);
4006 /* Main API for qed clients to configure vport min rate.
4007 * vp_id - vport id in PF Range[0 - (total_num_vports_per_pf - 1)]
4008 * rate - Speed in Mbps needs to be assigned to a given vport.
4010 int qed_configure_vport_wfq(struct qed_dev
*cdev
, u16 vp_id
, u32 rate
)
4012 int i
, rc
= -EINVAL
;
4014 /* Currently not supported; Might change in future */
4015 if (cdev
->num_hwfns
> 1) {
4017 "WFQ configuration is not supported for this device\n");
4021 for_each_hwfn(cdev
, i
) {
4022 struct qed_hwfn
*p_hwfn
= &cdev
->hwfns
[i
];
4023 struct qed_ptt
*p_ptt
;
4025 p_ptt
= qed_ptt_acquire(p_hwfn
);
4029 rc
= __qed_configure_vport_wfq(p_hwfn
, p_ptt
, vp_id
, rate
);
4032 qed_ptt_release(p_hwfn
, p_ptt
);
4036 qed_ptt_release(p_hwfn
, p_ptt
);
4042 /* API to configure WFQ from mcp link change */
4043 void qed_configure_vp_wfq_on_link_change(struct qed_dev
*cdev
,
4044 struct qed_ptt
*p_ptt
, u32 min_pf_rate
)
4048 if (cdev
->num_hwfns
> 1) {
4051 "WFQ configuration is not supported for this device\n");
4055 for_each_hwfn(cdev
, i
) {
4056 struct qed_hwfn
*p_hwfn
= &cdev
->hwfns
[i
];
4058 __qed_configure_vp_wfq_on_link_change(p_hwfn
, p_ptt
,
4063 int __qed_configure_pf_max_bandwidth(struct qed_hwfn
*p_hwfn
,
4064 struct qed_ptt
*p_ptt
,
4065 struct qed_mcp_link_state
*p_link
,
4070 p_hwfn
->mcp_info
->func_info
.bandwidth_max
= max_bw
;
4072 if (!p_link
->line_speed
&& (max_bw
!= 100))
4075 p_link
->speed
= (p_link
->line_speed
* max_bw
) / 100;
4076 p_hwfn
->qm_info
.pf_rl
= p_link
->speed
;
4078 /* Since the limiter also affects Tx-switched traffic, we don't want it
4079 * to limit such traffic in case there's no actual limit.
4080 * In that case, set limit to imaginary high boundary.
4083 p_hwfn
->qm_info
.pf_rl
= 100000;
4085 rc
= qed_init_pf_rl(p_hwfn
, p_ptt
, p_hwfn
->rel_pf_id
,
4086 p_hwfn
->qm_info
.pf_rl
);
4088 DP_VERBOSE(p_hwfn
, NETIF_MSG_LINK
,
4089 "Configured MAX bandwidth to be %08x Mb/sec\n",
4095 /* Main API to configure PF max bandwidth where bw range is [1 - 100] */
4096 int qed_configure_pf_max_bandwidth(struct qed_dev
*cdev
, u8 max_bw
)
4098 int i
, rc
= -EINVAL
;
4100 if (max_bw
< 1 || max_bw
> 100) {
4101 DP_NOTICE(cdev
, "PF max bw valid range is [1-100]\n");
4105 for_each_hwfn(cdev
, i
) {
4106 struct qed_hwfn
*p_hwfn
= &cdev
->hwfns
[i
];
4107 struct qed_hwfn
*p_lead
= QED_LEADING_HWFN(cdev
);
4108 struct qed_mcp_link_state
*p_link
;
4109 struct qed_ptt
*p_ptt
;
4111 p_link
= &p_lead
->mcp_info
->link_output
;
4113 p_ptt
= qed_ptt_acquire(p_hwfn
);
4117 rc
= __qed_configure_pf_max_bandwidth(p_hwfn
, p_ptt
,
4120 qed_ptt_release(p_hwfn
, p_ptt
);
4129 int __qed_configure_pf_min_bandwidth(struct qed_hwfn
*p_hwfn
,
4130 struct qed_ptt
*p_ptt
,
4131 struct qed_mcp_link_state
*p_link
,
4136 p_hwfn
->mcp_info
->func_info
.bandwidth_min
= min_bw
;
4137 p_hwfn
->qm_info
.pf_wfq
= min_bw
;
4139 if (!p_link
->line_speed
)
4142 p_link
->min_pf_rate
= (p_link
->line_speed
* min_bw
) / 100;
4144 rc
= qed_init_pf_wfq(p_hwfn
, p_ptt
, p_hwfn
->rel_pf_id
, min_bw
);
4146 DP_VERBOSE(p_hwfn
, NETIF_MSG_LINK
,
4147 "Configured MIN bandwidth to be %d Mb/sec\n",
4148 p_link
->min_pf_rate
);
4153 /* Main API to configure PF min bandwidth where bw range is [1-100] */
4154 int qed_configure_pf_min_bandwidth(struct qed_dev
*cdev
, u8 min_bw
)
4156 int i
, rc
= -EINVAL
;
4158 if (min_bw
< 1 || min_bw
> 100) {
4159 DP_NOTICE(cdev
, "PF min bw valid range is [1-100]\n");
4163 for_each_hwfn(cdev
, i
) {
4164 struct qed_hwfn
*p_hwfn
= &cdev
->hwfns
[i
];
4165 struct qed_hwfn
*p_lead
= QED_LEADING_HWFN(cdev
);
4166 struct qed_mcp_link_state
*p_link
;
4167 struct qed_ptt
*p_ptt
;
4169 p_link
= &p_lead
->mcp_info
->link_output
;
4171 p_ptt
= qed_ptt_acquire(p_hwfn
);
4175 rc
= __qed_configure_pf_min_bandwidth(p_hwfn
, p_ptt
,
4178 qed_ptt_release(p_hwfn
, p_ptt
);
4182 if (p_link
->min_pf_rate
) {
4183 u32 min_rate
= p_link
->min_pf_rate
;
4185 rc
= __qed_configure_vp_wfq_on_link_change(p_hwfn
,
4190 qed_ptt_release(p_hwfn
, p_ptt
);
4196 void qed_clean_wfq_db(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
)
4198 struct qed_mcp_link_state
*p_link
;
4200 p_link
= &p_hwfn
->mcp_info
->link_output
;
4202 if (p_link
->min_pf_rate
)
4203 qed_disable_wfq_for_all_vports(p_hwfn
, p_ptt
,
4204 p_link
->min_pf_rate
);
4206 memset(p_hwfn
->qm_info
.wfq_data
, 0,
4207 sizeof(*p_hwfn
->qm_info
.wfq_data
) * p_hwfn
->qm_info
.num_vports
);
4210 int qed_device_num_engines(struct qed_dev
*cdev
)
4212 return QED_IS_BB(cdev
) ? 2 : 1;
4215 static int qed_device_num_ports(struct qed_dev
*cdev
)
4217 /* in CMT always only one port */
4218 if (cdev
->num_hwfns
> 1)
4221 return cdev
->num_ports_in_engine
* qed_device_num_engines(cdev
);
4224 int qed_device_get_port_id(struct qed_dev
*cdev
)
4226 return (QED_LEADING_HWFN(cdev
)->abs_pf_id
) % qed_device_num_ports(cdev
);
4229 void qed_set_fw_mac_addr(__le16
*fw_msb
,
4230 __le16
*fw_mid
, __le16
*fw_lsb
, u8
*mac
)
4232 ((u8
*)fw_msb
)[0] = mac
[1];
4233 ((u8
*)fw_msb
)[1] = mac
[0];
4234 ((u8
*)fw_mid
)[0] = mac
[3];
4235 ((u8
*)fw_mid
)[1] = mac
[2];
4236 ((u8
*)fw_lsb
)[0] = mac
[5];
4237 ((u8
*)fw_lsb
)[1] = mac
[4];