dfa2ab0758a508099929c1a5471501c130530cba
[dpdk.git] / drivers / net / qede / base / ecore_sp_commands.c
1 /*
2  * Copyright (c) 2016 QLogic Corporation.
3  * All rights reserved.
4  * www.qlogic.com
5  *
6  * See LICENSE.qede_pmd for copyright and licensing details.
7  */
8
9 #include "bcm_osal.h"
10
11 #include "ecore.h"
12 #include "ecore_status.h"
13 #include "ecore_chain.h"
14 #include "ecore_spq.h"
15 #include "ecore_init_fw_funcs.h"
16 #include "ecore_cxt.h"
17 #include "ecore_sp_commands.h"
18 #include "ecore_gtt_reg_addr.h"
19 #include "ecore_iro.h"
20 #include "reg_addr.h"
21 #include "ecore_int.h"
22 #include "ecore_hw.h"
23 #include "ecore_dcbx.h"
24 #include "ecore_sriov.h"
25 #include "ecore_vf.h"
26
27 enum _ecore_status_t ecore_sp_init_request(struct ecore_hwfn *p_hwfn,
28                                            struct ecore_spq_entry **pp_ent,
29                                            u8 cmd,
30                                            u8 protocol,
31                                            struct ecore_sp_init_data *p_data)
32 {
33         u32 opaque_cid = p_data->opaque_fid << 16 | p_data->cid;
34         struct ecore_spq_entry *p_ent = OSAL_NULL;
35         enum _ecore_status_t rc;
36
37         if (!pp_ent)
38                 return ECORE_INVAL;
39
40         /* Get an SPQ entry */
41         rc = ecore_spq_get_entry(p_hwfn, pp_ent);
42         if (rc != ECORE_SUCCESS)
43                 return rc;
44
45         /* Fill the SPQ entry */
46         p_ent = *pp_ent;
47         p_ent->elem.hdr.cid = OSAL_CPU_TO_LE32(opaque_cid);
48         p_ent->elem.hdr.cmd_id = cmd;
49         p_ent->elem.hdr.protocol_id = protocol;
50         p_ent->priority = ECORE_SPQ_PRIORITY_NORMAL;
51         p_ent->comp_mode = p_data->comp_mode;
52         p_ent->comp_done.done = 0;
53
54         switch (p_ent->comp_mode) {
55         case ECORE_SPQ_MODE_EBLOCK:
56                 p_ent->comp_cb.cookie = &p_ent->comp_done;
57                 break;
58
59         case ECORE_SPQ_MODE_BLOCK:
60                 if (!p_data->p_comp_data)
61                         return ECORE_INVAL;
62
63                 p_ent->comp_cb.cookie = p_data->p_comp_data->cookie;
64                 break;
65
66         case ECORE_SPQ_MODE_CB:
67                 if (!p_data->p_comp_data)
68                         p_ent->comp_cb.function = OSAL_NULL;
69                 else
70                         p_ent->comp_cb = *p_data->p_comp_data;
71                 break;
72
73         default:
74                 DP_NOTICE(p_hwfn, true, "Unknown SPQE completion mode %d\n",
75                           p_ent->comp_mode);
76                 return ECORE_INVAL;
77         }
78
79         DP_VERBOSE(p_hwfn, ECORE_MSG_SPQ,
80                    "Initialized: CID %08x cmd %02x protocol %02x data_addr %lu comp_mode [%s]\n",
81                    opaque_cid, cmd, protocol,
82                    (unsigned long)&p_ent->ramrod,
83                    D_TRINE(p_ent->comp_mode, ECORE_SPQ_MODE_EBLOCK,
84                            ECORE_SPQ_MODE_BLOCK, "MODE_EBLOCK", "MODE_BLOCK",
85                            "MODE_CB"));
86
87         OSAL_MEMSET(&p_ent->ramrod, 0, sizeof(p_ent->ramrod));
88
89         return ECORE_SUCCESS;
90 }
91
92 static enum tunnel_clss ecore_tunn_clss_to_fw_clss(u8 type)
93 {
94         switch (type) {
95         case ECORE_TUNN_CLSS_MAC_VLAN:
96                 return TUNNEL_CLSS_MAC_VLAN;
97         case ECORE_TUNN_CLSS_MAC_VNI:
98                 return TUNNEL_CLSS_MAC_VNI;
99         case ECORE_TUNN_CLSS_INNER_MAC_VLAN:
100                 return TUNNEL_CLSS_INNER_MAC_VLAN;
101         case ECORE_TUNN_CLSS_INNER_MAC_VNI:
102                 return TUNNEL_CLSS_INNER_MAC_VNI;
103         case ECORE_TUNN_CLSS_MAC_VLAN_DUAL_STAGE:
104                 return TUNNEL_CLSS_MAC_VLAN_DUAL_STAGE;
105         default:
106                 return TUNNEL_CLSS_MAC_VLAN;
107         }
108 }
109
110 static void
111 ecore_set_pf_update_tunn_mode(struct ecore_tunnel_info *p_tun,
112                               struct ecore_tunnel_info *p_src,
113                               bool b_pf_start)
114 {
115         if (p_src->vxlan.b_update_mode || b_pf_start)
116                 p_tun->vxlan.b_mode_enabled = p_src->vxlan.b_mode_enabled;
117
118         if (p_src->l2_gre.b_update_mode || b_pf_start)
119                 p_tun->l2_gre.b_mode_enabled = p_src->l2_gre.b_mode_enabled;
120
121         if (p_src->ip_gre.b_update_mode || b_pf_start)
122                 p_tun->ip_gre.b_mode_enabled = p_src->ip_gre.b_mode_enabled;
123
124         if (p_src->l2_geneve.b_update_mode || b_pf_start)
125                 p_tun->l2_geneve.b_mode_enabled =
126                                 p_src->l2_geneve.b_mode_enabled;
127
128         if (p_src->ip_geneve.b_update_mode || b_pf_start)
129                 p_tun->ip_geneve.b_mode_enabled =
130                                 p_src->ip_geneve.b_mode_enabled;
131 }
132
133 static void ecore_set_tunn_cls_info(struct ecore_tunnel_info *p_tun,
134                                     struct ecore_tunnel_info *p_src)
135 {
136         enum tunnel_clss type;
137
138         p_tun->b_update_rx_cls = p_src->b_update_rx_cls;
139         p_tun->b_update_tx_cls = p_src->b_update_tx_cls;
140
141         /* @DPDK - typecast tunnul class */
142         type = ecore_tunn_clss_to_fw_clss(p_src->vxlan.tun_cls);
143         p_tun->vxlan.tun_cls = (enum ecore_tunn_clss)type;
144         type = ecore_tunn_clss_to_fw_clss(p_src->l2_gre.tun_cls);
145         p_tun->l2_gre.tun_cls = (enum ecore_tunn_clss)type;
146         type = ecore_tunn_clss_to_fw_clss(p_src->ip_gre.tun_cls);
147         p_tun->ip_gre.tun_cls = (enum ecore_tunn_clss)type;
148         type = ecore_tunn_clss_to_fw_clss(p_src->l2_geneve.tun_cls);
149         p_tun->l2_geneve.tun_cls = (enum ecore_tunn_clss)type;
150         type = ecore_tunn_clss_to_fw_clss(p_src->ip_geneve.tun_cls);
151         p_tun->ip_geneve.tun_cls = (enum ecore_tunn_clss)type;
152 }
153
154 static void ecore_set_tunn_ports(struct ecore_tunnel_info *p_tun,
155                                  struct ecore_tunnel_info *p_src)
156 {
157         p_tun->geneve_port.b_update_port = p_src->geneve_port.b_update_port;
158         p_tun->vxlan_port.b_update_port = p_src->vxlan_port.b_update_port;
159
160         if (p_src->geneve_port.b_update_port)
161                 p_tun->geneve_port.port = p_src->geneve_port.port;
162
163         if (p_src->vxlan_port.b_update_port)
164                 p_tun->vxlan_port.port = p_src->vxlan_port.port;
165 }
166
167 static void
168 __ecore_set_ramrod_tunnel_param(u8 *p_tunn_cls,
169                                 struct ecore_tunn_update_type *tun_type)
170 {
171         *p_tunn_cls = tun_type->tun_cls;
172 }
173
174 static void
175 ecore_set_ramrod_tunnel_param(u8 *p_tunn_cls,
176                               struct ecore_tunn_update_type *tun_type,
177                               u8 *p_update_port, __le16 *p_port,
178                               struct ecore_tunn_update_udp_port *p_udp_port)
179 {
180         __ecore_set_ramrod_tunnel_param(p_tunn_cls, tun_type);
181         if (p_udp_port->b_update_port) {
182                 *p_update_port = 1;
183                 *p_port = OSAL_CPU_TO_LE16(p_udp_port->port);
184         }
185 }
186
187 static void
188 ecore_tunn_set_pf_update_params(struct ecore_hwfn               *p_hwfn,
189                                 struct ecore_tunnel_info *p_src,
190                                 struct pf_update_tunnel_config  *p_tunn_cfg)
191 {
192         struct ecore_tunnel_info *p_tun = &p_hwfn->p_dev->tunnel;
193
194         ecore_set_pf_update_tunn_mode(p_tun, p_src, false);
195         ecore_set_tunn_cls_info(p_tun, p_src);
196         ecore_set_tunn_ports(p_tun, p_src);
197
198         ecore_set_ramrod_tunnel_param(&p_tunn_cfg->tunnel_clss_vxlan,
199                                       &p_tun->vxlan,
200                                       &p_tunn_cfg->set_vxlan_udp_port_flg,
201                                       &p_tunn_cfg->vxlan_udp_port,
202                                       &p_tun->vxlan_port);
203
204         ecore_set_ramrod_tunnel_param(&p_tunn_cfg->tunnel_clss_l2geneve,
205                                       &p_tun->l2_geneve,
206                                       &p_tunn_cfg->set_geneve_udp_port_flg,
207                                       &p_tunn_cfg->geneve_udp_port,
208                                       &p_tun->geneve_port);
209
210         __ecore_set_ramrod_tunnel_param(&p_tunn_cfg->tunnel_clss_ipgeneve,
211                                         &p_tun->ip_geneve);
212
213         __ecore_set_ramrod_tunnel_param(&p_tunn_cfg->tunnel_clss_l2gre,
214                                         &p_tun->l2_gre);
215
216         __ecore_set_ramrod_tunnel_param(&p_tunn_cfg->tunnel_clss_ipgre,
217                                         &p_tun->ip_gre);
218
219         p_tunn_cfg->update_rx_pf_clss = p_tun->b_update_rx_cls;
220 }
221
222 static void ecore_set_hw_tunn_mode(struct ecore_hwfn *p_hwfn,
223                                    struct ecore_ptt *p_ptt,
224                                    struct ecore_tunnel_info *p_tun)
225 {
226         ecore_set_gre_enable(p_hwfn, p_ptt, p_tun->l2_gre.b_mode_enabled,
227                              p_tun->ip_gre.b_mode_enabled);
228         ecore_set_vxlan_enable(p_hwfn, p_ptt, p_tun->vxlan.b_mode_enabled);
229
230         ecore_set_geneve_enable(p_hwfn, p_ptt, p_tun->l2_geneve.b_mode_enabled,
231                                 p_tun->ip_geneve.b_mode_enabled);
232 }
233
234 static void ecore_set_hw_tunn_mode_port(struct ecore_hwfn *p_hwfn,
235                                         struct ecore_ptt  *p_ptt,
236                                         struct ecore_tunnel_info *p_tunn)
237 {
238         if (ECORE_IS_BB_A0(p_hwfn->p_dev)) {
239                 DP_NOTICE(p_hwfn, true,
240                           "A0 chip: tunnel hw config is not supported\n");
241                 return;
242         }
243
244         if (p_tunn->vxlan_port.b_update_port)
245                 ecore_set_vxlan_dest_port(p_hwfn, p_ptt,
246                                           p_tunn->vxlan_port.port);
247
248         if (p_tunn->geneve_port.b_update_port)
249                 ecore_set_geneve_dest_port(p_hwfn, p_ptt,
250                                            p_tunn->geneve_port.port);
251
252         ecore_set_hw_tunn_mode(p_hwfn, p_ptt, p_tunn);
253 }
254
255 static void
256 ecore_tunn_set_pf_start_params(struct ecore_hwfn *p_hwfn,
257                                struct ecore_tunnel_info         *p_src,
258                                struct pf_start_tunnel_config *p_tunn_cfg)
259 {
260         struct ecore_tunnel_info *p_tun = &p_hwfn->p_dev->tunnel;
261
262         if (ECORE_IS_BB_A0(p_hwfn->p_dev)) {
263                 DP_NOTICE(p_hwfn, true,
264                           "A0 chip: tunnel pf start config is not supported\n");
265                 return;
266         }
267
268         if (!p_src)
269                 return;
270
271         ecore_set_pf_update_tunn_mode(p_tun, p_src, true);
272         ecore_set_tunn_cls_info(p_tun, p_src);
273         ecore_set_tunn_ports(p_tun, p_src);
274
275         ecore_set_ramrod_tunnel_param(&p_tunn_cfg->tunnel_clss_vxlan,
276                                       &p_tun->vxlan,
277                                       &p_tunn_cfg->set_vxlan_udp_port_flg,
278                                       &p_tunn_cfg->vxlan_udp_port,
279                                       &p_tun->vxlan_port);
280
281         ecore_set_ramrod_tunnel_param(&p_tunn_cfg->tunnel_clss_l2geneve,
282                                       &p_tun->l2_geneve,
283                                       &p_tunn_cfg->set_geneve_udp_port_flg,
284                                       &p_tunn_cfg->geneve_udp_port,
285                                       &p_tun->geneve_port);
286
287         __ecore_set_ramrod_tunnel_param(&p_tunn_cfg->tunnel_clss_ipgeneve,
288                                         &p_tun->ip_geneve);
289
290         __ecore_set_ramrod_tunnel_param(&p_tunn_cfg->tunnel_clss_l2gre,
291                                         &p_tun->l2_gre);
292
293         __ecore_set_ramrod_tunnel_param(&p_tunn_cfg->tunnel_clss_ipgre,
294                                         &p_tun->ip_gre);
295 }
296
297 enum _ecore_status_t ecore_sp_pf_start(struct ecore_hwfn *p_hwfn,
298                                        struct ecore_ptt *p_ptt,
299                                        struct ecore_tunnel_info *p_tunn,
300                                        enum ecore_mf_mode mode,
301                                        bool allow_npar_tx_switch)
302 {
303         struct pf_start_ramrod_data *p_ramrod = OSAL_NULL;
304         u16 sb = ecore_int_get_sp_sb_id(p_hwfn);
305         u8 sb_index = p_hwfn->p_eq->eq_sb_index;
306         struct ecore_spq_entry *p_ent = OSAL_NULL;
307         struct ecore_sp_init_data init_data;
308         enum _ecore_status_t rc = ECORE_NOTIMPL;
309         u8 page_cnt;
310
311         /* update initial eq producer */
312         ecore_eq_prod_update(p_hwfn,
313                              ecore_chain_get_prod_idx(&p_hwfn->p_eq->chain));
314
315         /* Initialize the SPQ entry for the ramrod */
316         OSAL_MEMSET(&init_data, 0, sizeof(init_data));
317         init_data.cid = ecore_spq_get_cid(p_hwfn);
318         init_data.opaque_fid = p_hwfn->hw_info.opaque_fid;
319         init_data.comp_mode = ECORE_SPQ_MODE_EBLOCK;
320
321         rc = ecore_sp_init_request(p_hwfn, &p_ent,
322                                    COMMON_RAMROD_PF_START,
323                                    PROTOCOLID_COMMON, &init_data);
324         if (rc != ECORE_SUCCESS)
325                 return rc;
326
327         /* Fill the ramrod data */
328         p_ramrod = &p_ent->ramrod.pf_start;
329         p_ramrod->event_ring_sb_id = OSAL_CPU_TO_LE16(sb);
330         p_ramrod->event_ring_sb_index = sb_index;
331         p_ramrod->path_id = ECORE_PATH_ID(p_hwfn);
332
333         /* For easier debugging */
334         p_ramrod->dont_log_ramrods = 0;
335         p_ramrod->log_type_mask = OSAL_CPU_TO_LE16(0x8f);
336
337         switch (mode) {
338         case ECORE_MF_DEFAULT:
339         case ECORE_MF_NPAR:
340                 p_ramrod->mf_mode = MF_NPAR;
341                 break;
342         case ECORE_MF_OVLAN:
343                 p_ramrod->mf_mode = MF_OVLAN;
344                 break;
345         default:
346                 DP_NOTICE(p_hwfn, true,
347                           "Unsupported MF mode, init as DEFAULT\n");
348                 p_ramrod->mf_mode = MF_NPAR;
349         }
350         p_ramrod->outer_tag_config.outer_tag.tpid = p_hwfn->hw_info.ovlan;
351
352         /* Place EQ address in RAMROD */
353         DMA_REGPAIR_LE(p_ramrod->event_ring_pbl_addr,
354                        p_hwfn->p_eq->chain.pbl_sp.p_phys_table);
355         page_cnt = (u8)ecore_chain_get_page_cnt(&p_hwfn->p_eq->chain);
356         p_ramrod->event_ring_num_pages = page_cnt;
357         DMA_REGPAIR_LE(p_ramrod->consolid_q_pbl_addr,
358                        p_hwfn->p_consq->chain.pbl_sp.p_phys_table);
359
360         ecore_tunn_set_pf_start_params(p_hwfn, p_tunn,
361                                        &p_ramrod->tunnel_config);
362
363         if (IS_MF_SI(p_hwfn))
364                 p_ramrod->allow_npar_tx_switching = allow_npar_tx_switch;
365
366         switch (p_hwfn->hw_info.personality) {
367         case ECORE_PCI_ETH:
368                 p_ramrod->personality = PERSONALITY_ETH;
369                 break;
370         default:
371                 DP_NOTICE(p_hwfn, true, "Unknown personality %d\n",
372                          p_hwfn->hw_info.personality);
373                 p_ramrod->personality = PERSONALITY_ETH;
374         }
375
376         if (p_hwfn->p_dev->p_iov_info) {
377                 struct ecore_hw_sriov_info *p_iov = p_hwfn->p_dev->p_iov_info;
378
379                 p_ramrod->base_vf_id = (u8)p_iov->first_vf_in_pf;
380                 p_ramrod->num_vfs = (u8)p_iov->total_vfs;
381         }
382         /* @@@TBD - update also the "ROCE_VER_KEY" entries when the FW RoCE HSI
383          * version is available.
384          */
385         p_ramrod->hsi_fp_ver.major_ver_arr[ETH_VER_KEY] = ETH_HSI_VER_MAJOR;
386         p_ramrod->hsi_fp_ver.minor_ver_arr[ETH_VER_KEY] = ETH_HSI_VER_MINOR;
387
388         DP_VERBOSE(p_hwfn, ECORE_MSG_SPQ,
389                    "Setting event_ring_sb [id %04x index %02x], outer_tag [%d]\n",
390                    sb, sb_index, p_ramrod->outer_tag_config.outer_tag.tpid);
391
392         rc = ecore_spq_post(p_hwfn, p_ent, OSAL_NULL);
393
394         if (p_tunn)
395                 ecore_set_hw_tunn_mode_port(p_hwfn, p_ptt,
396                                             &p_hwfn->p_dev->tunnel);
397
398         return rc;
399 }
400
401 enum _ecore_status_t ecore_sp_pf_update_dcbx(struct ecore_hwfn *p_hwfn)
402 {
403         struct ecore_spq_entry *p_ent = OSAL_NULL;
404         struct ecore_sp_init_data init_data;
405         enum _ecore_status_t rc = ECORE_NOTIMPL;
406
407         /* Get SPQ entry */
408         OSAL_MEMSET(&init_data, 0, sizeof(init_data));
409         init_data.cid = ecore_spq_get_cid(p_hwfn);
410         init_data.opaque_fid = p_hwfn->hw_info.opaque_fid;
411         init_data.comp_mode = ECORE_SPQ_MODE_CB;
412
413         rc = ecore_sp_init_request(p_hwfn, &p_ent,
414                                    COMMON_RAMROD_PF_UPDATE, PROTOCOLID_COMMON,
415                                    &init_data);
416         if (rc != ECORE_SUCCESS)
417                 return rc;
418
419         ecore_dcbx_set_pf_update_params(&p_hwfn->p_dcbx_info->results,
420                                         &p_ent->ramrod.pf_update);
421
422         return ecore_spq_post(p_hwfn, p_ent, OSAL_NULL);
423 }
424
425 /* QM rate limiter resolution is 1.6Mbps */
426 #define QM_RL_RESOLUTION(mb_val)        ((mb_val) * 10 / 16)
427
428 /* FW uses 1/64k to express gd */
429 #define FW_GD_RESOLUTION(gd)            (64 * 1024 / (gd))
430
431 u16 ecore_sp_rl_mb_to_qm(u32 mb_val)
432 {
433         return (u16)OSAL_MIN_T(u32, (u16)(~0U), QM_RL_RESOLUTION(mb_val));
434 }
435
436 u16 ecore_sp_rl_gd_denom(u32 gd)
437 {
438         return gd ? (u16)OSAL_MIN_T(u32, (u16)(~0U), FW_GD_RESOLUTION(gd)) : 0;
439 }
440
441 enum _ecore_status_t ecore_sp_rl_update(struct ecore_hwfn *p_hwfn,
442                                         struct ecore_rl_update_params *params)
443 {
444         struct ecore_spq_entry *p_ent = OSAL_NULL;
445         enum _ecore_status_t rc = ECORE_NOTIMPL;
446         struct rl_update_ramrod_data *rl_update;
447         struct ecore_sp_init_data init_data;
448
449         /* Get SPQ entry */
450         OSAL_MEMSET(&init_data, 0, sizeof(init_data));
451         init_data.cid = ecore_spq_get_cid(p_hwfn);
452         init_data.opaque_fid = p_hwfn->hw_info.opaque_fid;
453         init_data.comp_mode = ECORE_SPQ_MODE_EBLOCK;
454
455         rc = ecore_sp_init_request(p_hwfn, &p_ent,
456                                    COMMON_RAMROD_RL_UPDATE, PROTOCOLID_COMMON,
457                                    &init_data);
458         if (rc != ECORE_SUCCESS)
459                 return rc;
460
461         rl_update = &p_ent->ramrod.rl_update;
462
463         rl_update->qcn_update_param_flg = params->qcn_update_param_flg;
464         rl_update->dcqcn_update_param_flg = params->dcqcn_update_param_flg;
465         rl_update->rl_init_flg = params->rl_init_flg;
466         rl_update->rl_start_flg = params->rl_start_flg;
467         rl_update->rl_stop_flg = params->rl_stop_flg;
468         rl_update->rl_id_first = params->rl_id_first;
469         rl_update->rl_id_last = params->rl_id_last;
470         rl_update->rl_dc_qcn_flg = params->rl_dc_qcn_flg;
471         rl_update->rl_bc_rate = OSAL_CPU_TO_LE32(params->rl_bc_rate);
472         rl_update->rl_max_rate =
473                 OSAL_CPU_TO_LE16(ecore_sp_rl_mb_to_qm(params->rl_max_rate));
474         rl_update->rl_r_ai =
475                 OSAL_CPU_TO_LE16(ecore_sp_rl_mb_to_qm(params->rl_r_ai));
476         rl_update->rl_r_hai =
477                 OSAL_CPU_TO_LE16(ecore_sp_rl_mb_to_qm(params->rl_r_hai));
478         rl_update->dcqcn_g =
479                 OSAL_CPU_TO_LE16(ecore_sp_rl_gd_denom(params->dcqcn_gd));
480         rl_update->dcqcn_k_us = OSAL_CPU_TO_LE32(params->dcqcn_k_us);
481         rl_update->dcqcn_timeuot_us =
482                 OSAL_CPU_TO_LE32(params->dcqcn_timeuot_us);
483         rl_update->qcn_timeuot_us = OSAL_CPU_TO_LE32(params->qcn_timeuot_us);
484
485         DP_VERBOSE(p_hwfn, ECORE_MSG_SPQ, "rl_params: qcn_update_param_flg %x, dcqcn_update_param_flg %x, rl_init_flg %x, rl_start_flg %x, rl_stop_flg %x, rl_id_first %x, rl_id_last %x, rl_dc_qcn_flg %x, rl_bc_rate %x, rl_max_rate %x, rl_r_ai %x, rl_r_hai %x, dcqcn_g %x, dcqcn_k_us %x, dcqcn_timeuot_us %x, qcn_timeuot_us %x\n",
486                    rl_update->qcn_update_param_flg,
487                    rl_update->dcqcn_update_param_flg,
488                    rl_update->rl_init_flg, rl_update->rl_start_flg,
489                    rl_update->rl_stop_flg, rl_update->rl_id_first,
490                    rl_update->rl_id_last, rl_update->rl_dc_qcn_flg,
491                    rl_update->rl_bc_rate, rl_update->rl_max_rate,
492                    rl_update->rl_r_ai, rl_update->rl_r_hai,
493                    rl_update->dcqcn_g, rl_update->dcqcn_k_us,
494                    rl_update->dcqcn_timeuot_us, rl_update->qcn_timeuot_us);
495
496         return ecore_spq_post(p_hwfn, p_ent, OSAL_NULL);
497 }
498
499 /* Set pf update ramrod command params */
500 enum _ecore_status_t
501 ecore_sp_pf_update_tunn_cfg(struct ecore_hwfn *p_hwfn,
502                             struct ecore_ptt *p_ptt,
503                             struct ecore_tunnel_info *p_tunn,
504                             enum spq_mode comp_mode,
505                             struct ecore_spq_comp_cb *p_comp_data)
506 {
507         struct ecore_spq_entry *p_ent = OSAL_NULL;
508         struct ecore_sp_init_data init_data;
509         enum _ecore_status_t rc = ECORE_NOTIMPL;
510
511         if (IS_VF(p_hwfn->p_dev))
512                 return ecore_vf_pf_tunnel_param_update(p_hwfn, p_tunn);
513
514         if (ECORE_IS_BB_A0(p_hwfn->p_dev)) {
515                 DP_NOTICE(p_hwfn, true,
516                           "A0 chip: tunnel pf update config is not supported\n");
517                 return rc;
518         }
519
520         if (!p_tunn)
521                 return ECORE_INVAL;
522
523         /* Get SPQ entry */
524         OSAL_MEMSET(&init_data, 0, sizeof(init_data));
525         init_data.cid = ecore_spq_get_cid(p_hwfn);
526         init_data.opaque_fid = p_hwfn->hw_info.opaque_fid;
527         init_data.comp_mode = comp_mode;
528         init_data.p_comp_data = p_comp_data;
529
530         rc = ecore_sp_init_request(p_hwfn, &p_ent,
531                                    COMMON_RAMROD_PF_UPDATE, PROTOCOLID_COMMON,
532                                    &init_data);
533         if (rc != ECORE_SUCCESS)
534                 return rc;
535
536         ecore_tunn_set_pf_update_params(p_hwfn, p_tunn,
537                                         &p_ent->ramrod.pf_update.tunnel_config);
538
539         rc = ecore_spq_post(p_hwfn, p_ent, OSAL_NULL);
540         if (rc != ECORE_SUCCESS)
541                 return rc;
542
543         ecore_set_hw_tunn_mode_port(p_hwfn, p_ptt, &p_hwfn->p_dev->tunnel);
544
545         return rc;
546 }
547
548 enum _ecore_status_t ecore_sp_pf_stop(struct ecore_hwfn *p_hwfn)
549 {
550         struct ecore_spq_entry *p_ent = OSAL_NULL;
551         struct ecore_sp_init_data init_data;
552         enum _ecore_status_t rc = ECORE_NOTIMPL;
553
554         /* Get SPQ entry */
555         OSAL_MEMSET(&init_data, 0, sizeof(init_data));
556         init_data.cid = ecore_spq_get_cid(p_hwfn);
557         init_data.opaque_fid = p_hwfn->hw_info.opaque_fid;
558         init_data.comp_mode = ECORE_SPQ_MODE_EBLOCK;
559
560         rc = ecore_sp_init_request(p_hwfn, &p_ent,
561                                    COMMON_RAMROD_PF_STOP, PROTOCOLID_COMMON,
562                                    &init_data);
563         if (rc != ECORE_SUCCESS)
564                 return rc;
565
566         return ecore_spq_post(p_hwfn, p_ent, OSAL_NULL);
567 }
568
569 enum _ecore_status_t ecore_sp_heartbeat_ramrod(struct ecore_hwfn *p_hwfn)
570 {
571         struct ecore_spq_entry *p_ent = OSAL_NULL;
572         struct ecore_sp_init_data init_data;
573         enum _ecore_status_t rc;
574
575         /* Get SPQ entry */
576         OSAL_MEMSET(&init_data, 0, sizeof(init_data));
577         init_data.cid = ecore_spq_get_cid(p_hwfn);
578         init_data.opaque_fid = p_hwfn->hw_info.opaque_fid;
579         init_data.comp_mode = ECORE_SPQ_MODE_EBLOCK;
580
581         rc = ecore_sp_init_request(p_hwfn, &p_ent,
582                                    COMMON_RAMROD_EMPTY, PROTOCOLID_COMMON,
583                                    &init_data);
584         if (rc != ECORE_SUCCESS)
585                 return rc;
586
587         return ecore_spq_post(p_hwfn, p_ent, OSAL_NULL);
588 }
589
590 enum _ecore_status_t ecore_sp_pf_update_stag(struct ecore_hwfn *p_hwfn)
591 {
592         struct ecore_spq_entry *p_ent = OSAL_NULL;
593         struct ecore_sp_init_data init_data;
594         enum _ecore_status_t rc = ECORE_NOTIMPL;
595
596         /* Get SPQ entry */
597         OSAL_MEMSET(&init_data, 0, sizeof(init_data));
598         init_data.cid = ecore_spq_get_cid(p_hwfn);
599         init_data.opaque_fid = p_hwfn->hw_info.opaque_fid;
600         init_data.comp_mode = ECORE_SPQ_MODE_CB;
601
602         rc = ecore_sp_init_request(p_hwfn, &p_ent,
603                                    COMMON_RAMROD_PF_UPDATE, PROTOCOLID_COMMON,
604                                    &init_data);
605         if (rc != ECORE_SUCCESS)
606                 return rc;
607
608         p_ent->ramrod.pf_update.update_mf_vlan_flag = true;
609         p_ent->ramrod.pf_update.mf_vlan =
610                                 OSAL_CPU_TO_LE16(p_hwfn->hw_info.ovlan);
611
612         return ecore_spq_post(p_hwfn, p_ent, OSAL_NULL);
613 }