2 * Copyright (c) 2016 QLogic Corporation.
6 * See LICENSE.qede_pmd for copyright and licensing details.
11 #include "ecore_hsi_eth.h"
12 #include "ecore_sriov.h"
13 #include "ecore_l2_api.h"
15 #include "ecore_vfpf_if.h"
16 #include "ecore_status.h"
18 #include "ecore_int.h"
20 #include "ecore_mcp_api.h"
21 #include "ecore_vf_api.h"
23 static void *ecore_vf_pf_prep(struct ecore_hwfn *p_hwfn, u16 type, u16 length)
25 struct ecore_vf_iov *p_iov = p_hwfn->vf_iov_info;
28 /* This lock is released when we receive PF's response
29 * in ecore_send_msg2pf().
30 * So, ecore_vf_pf_prep() and ecore_send_msg2pf()
31 * must come in sequence.
33 OSAL_MUTEX_ACQUIRE(&p_iov->mutex);
35 DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
36 "preparing to send %s tlv over vf pf channel\n",
37 ecore_channel_tlvs_string[type]);
39 /* Reset Request offset */
40 p_iov->offset = (u8 *)(p_iov->vf2pf_request);
42 /* Clear mailbox - both request and reply */
43 OSAL_MEMSET(p_iov->vf2pf_request, 0, sizeof(union vfpf_tlvs));
44 OSAL_MEMSET(p_iov->pf2vf_reply, 0, sizeof(union pfvf_tlvs));
46 /* Init type and length */
47 p_tlv = ecore_add_tlv(p_hwfn, &p_iov->offset, type, length);
49 /* Init first tlv header */
50 ((struct vfpf_first_tlv *)p_tlv)->reply_address =
51 (u64)p_iov->pf2vf_reply_phys;
56 static void ecore_vf_pf_req_end(struct ecore_hwfn *p_hwfn,
57 enum _ecore_status_t req_status)
59 union pfvf_tlvs *resp = p_hwfn->vf_iov_info->pf2vf_reply;
61 DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
62 "VF request status = 0x%x, PF reply status = 0x%x\n",
63 req_status, resp->default_resp.hdr.status);
65 OSAL_MUTEX_RELEASE(&p_hwfn->vf_iov_info->mutex);
68 static enum _ecore_status_t
69 ecore_send_msg2pf(struct ecore_hwfn *p_hwfn,
70 u8 *done, u32 resp_size)
72 union vfpf_tlvs *p_req = p_hwfn->vf_iov_info->vf2pf_request;
73 struct ustorm_trigger_vf_zone trigger;
74 struct ustorm_vf_zone *zone_data;
75 enum _ecore_status_t rc = ECORE_SUCCESS;
78 zone_data = (struct ustorm_vf_zone *)PXP_VF_BAR0_START_USDM_ZONE_B;
80 /* output tlvs list */
81 ecore_dp_tlv_list(p_hwfn, p_req);
83 /* need to add the END TLV to the message size */
84 resp_size += sizeof(struct channel_list_end_tlv);
86 /* Send TLVs over HW channel */
87 OSAL_MEMSET(&trigger, 0, sizeof(struct ustorm_trigger_vf_zone));
88 trigger.vf_pf_msg_valid = 1;
90 DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
91 "VF -> PF [%02x] message: [%08x, %08x] --> %p,"
93 GET_FIELD(p_hwfn->hw_info.concrete_fid,
94 PXP_CONCRETE_FID_PFID),
95 U64_HI(p_hwfn->vf_iov_info->vf2pf_request_phys),
96 U64_LO(p_hwfn->vf_iov_info->vf2pf_request_phys),
97 &zone_data->non_trigger.vf_pf_msg_addr,
98 *((u32 *)&trigger), &zone_data->trigger);
101 (osal_uintptr_t)&zone_data->non_trigger.vf_pf_msg_addr.lo,
102 U64_LO(p_hwfn->vf_iov_info->vf2pf_request_phys));
105 (osal_uintptr_t)&zone_data->non_trigger.vf_pf_msg_addr.hi,
106 U64_HI(p_hwfn->vf_iov_info->vf2pf_request_phys));
108 /* The message data must be written first, to prevent trigger before
111 OSAL_WMB(p_hwfn->p_dev);
113 REG_WR(p_hwfn, (osal_uintptr_t)&zone_data->trigger,
116 /* When PF would be done with the response, it would write back to the
117 * `done' address. Poll until then.
119 while ((!*done) && time) {
125 DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
126 "VF <-- PF Timeout [Type %d]\n",
127 p_req->first_tlv.tl.type);
130 DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
131 "PF response: %d [Type %d]\n",
132 *done, p_req->first_tlv.tl.type);
138 #define VF_ACQUIRE_THRESH 3
139 static void ecore_vf_pf_acquire_reduce_resc(struct ecore_hwfn *p_hwfn,
140 struct vf_pf_resc_request *p_req,
141 struct pf_vf_resc *p_resp)
143 DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
144 "PF unwilling to fullill resource request: rxq [%02x/%02x]"
145 " txq [%02x/%02x] sbs [%02x/%02x] mac [%02x/%02x]"
146 " vlan [%02x/%02x] mc [%02x/%02x]."
147 " Try PF recommended amount\n",
148 p_req->num_rxqs, p_resp->num_rxqs,
149 p_req->num_rxqs, p_resp->num_txqs,
150 p_req->num_sbs, p_resp->num_sbs,
151 p_req->num_mac_filters, p_resp->num_mac_filters,
152 p_req->num_vlan_filters, p_resp->num_vlan_filters,
153 p_req->num_mc_filters, p_resp->num_mc_filters);
155 /* humble our request */
156 p_req->num_txqs = p_resp->num_txqs;
157 p_req->num_rxqs = p_resp->num_rxqs;
158 p_req->num_sbs = p_resp->num_sbs;
159 p_req->num_mac_filters = p_resp->num_mac_filters;
160 p_req->num_vlan_filters = p_resp->num_vlan_filters;
161 p_req->num_mc_filters = p_resp->num_mc_filters;
164 static enum _ecore_status_t ecore_vf_pf_acquire(struct ecore_hwfn *p_hwfn)
166 struct ecore_vf_iov *p_iov = p_hwfn->vf_iov_info;
167 struct pfvf_acquire_resp_tlv *resp = &p_iov->pf2vf_reply->acquire_resp;
168 struct pf_vf_pfdev_info *pfdev_info = &resp->pfdev_info;
169 struct ecore_vf_acquire_sw_info vf_sw_info;
170 struct vf_pf_resc_request *p_resc;
171 bool resources_acquired = false;
172 struct vfpf_acquire_tlv *req;
174 enum _ecore_status_t rc = ECORE_SUCCESS;
176 /* clear mailbox and prep first tlv */
177 req = ecore_vf_pf_prep(p_hwfn, CHANNEL_TLV_ACQUIRE, sizeof(*req));
178 p_resc = &req->resc_request;
180 /* @@@ TBD: PF may not be ready bnx2x_get_vf_id... */
181 req->vfdev_info.opaque_fid = p_hwfn->hw_info.opaque_fid;
183 p_resc->num_rxqs = ECORE_MAX_VF_CHAINS_PER_PF;
184 p_resc->num_txqs = ECORE_MAX_VF_CHAINS_PER_PF;
185 p_resc->num_sbs = ECORE_MAX_VF_CHAINS_PER_PF;
186 p_resc->num_mac_filters = ECORE_ETH_VF_NUM_MAC_FILTERS;
187 p_resc->num_vlan_filters = ECORE_ETH_VF_NUM_VLAN_FILTERS;
189 OSAL_MEMSET(&vf_sw_info, 0, sizeof(vf_sw_info));
190 OSAL_VF_FILL_ACQUIRE_RESC_REQ(p_hwfn, &req->resc_request, &vf_sw_info);
192 req->vfdev_info.os_type = vf_sw_info.os_type;
193 req->vfdev_info.driver_version = vf_sw_info.driver_version;
194 req->vfdev_info.fw_major = FW_MAJOR_VERSION;
195 req->vfdev_info.fw_minor = FW_MINOR_VERSION;
196 req->vfdev_info.fw_revision = FW_REVISION_VERSION;
197 req->vfdev_info.fw_engineering = FW_ENGINEERING_VERSION;
198 req->vfdev_info.eth_fp_hsi_major = ETH_HSI_VER_MAJOR;
199 req->vfdev_info.eth_fp_hsi_minor = ETH_HSI_VER_MINOR;
201 /* Fill capability field with any non-deprecated config we support */
202 req->vfdev_info.capabilities |= VFPF_ACQUIRE_CAP_100G;
204 /* pf 2 vf bulletin board address */
205 req->bulletin_addr = p_iov->bulletin.phys;
206 req->bulletin_size = p_iov->bulletin.size;
208 /* add list termination tlv */
209 ecore_add_tlv(p_hwfn, &p_iov->offset,
210 CHANNEL_TLV_LIST_END,
211 sizeof(struct channel_list_end_tlv));
213 while (!resources_acquired) {
214 DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
215 "attempting to acquire resources\n");
217 /* Clear response buffer, as this might be a re-send */
218 OSAL_MEMSET(p_iov->pf2vf_reply, 0,
219 sizeof(union pfvf_tlvs));
221 /* send acquire request */
222 rc = ecore_send_msg2pf(p_hwfn,
223 &resp->hdr.status, sizeof(*resp));
229 /* copy acquire response from buffer to p_hwfn */
230 OSAL_MEMCPY(&p_iov->acquire_resp,
231 resp, sizeof(p_iov->acquire_resp));
235 if (resp->hdr.status == PFVF_STATUS_SUCCESS) {
236 /* PF agrees to allocate our resources */
237 if (!(resp->pfdev_info.capabilities &
238 PFVF_ACQUIRE_CAP_POST_FW_OVERRIDE)) {
239 /* It's possible legacy PF mistakenly accepted;
240 * but we don't care - simply mark it as
241 * legacy and continue.
243 req->vfdev_info.capabilities |=
244 VFPF_ACQUIRE_CAP_PRE_FP_HSI;
246 DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
247 "resources acquired\n");
248 resources_acquired = true;
249 } /* PF refuses to allocate our resources */
250 else if (resp->hdr.status == PFVF_STATUS_NO_RESOURCE &&
251 attempts < VF_ACQUIRE_THRESH) {
252 ecore_vf_pf_acquire_reduce_resc(p_hwfn, p_resc,
255 } else if (resp->hdr.status == PFVF_STATUS_NOT_SUPPORTED) {
256 if (pfdev_info->major_fp_hsi &&
257 (pfdev_info->major_fp_hsi != ETH_HSI_VER_MAJOR)) {
258 DP_NOTICE(p_hwfn, false,
259 "PF uses an incompatible fastpath HSI"
260 " %02x.%02x [VF requires %02x.%02x]."
261 " Please change to a VF driver using"
263 pfdev_info->major_fp_hsi,
264 pfdev_info->minor_fp_hsi,
265 ETH_HSI_VER_MAJOR, ETH_HSI_VER_MINOR,
266 pfdev_info->major_fp_hsi);
271 if (!pfdev_info->major_fp_hsi) {
272 if (req->vfdev_info.capabilities &
273 VFPF_ACQUIRE_CAP_PRE_FP_HSI) {
274 DP_NOTICE(p_hwfn, false,
275 "PF uses very old drivers."
276 " Please change to a VF"
277 " driver using no later than"
283 "PF is old - try re-acquire to"
284 " see if it supports FW-version"
286 req->vfdev_info.capabilities |=
287 VFPF_ACQUIRE_CAP_PRE_FP_HSI;
292 /* If PF/VF are using same Major, PF must have had
293 * it's reasons. Simply fail.
295 DP_NOTICE(p_hwfn, false,
296 "PF rejected acquisition by VF\n");
301 "PF returned err %d to VF acquisition request\n",
308 /* Mark the PF as legacy, if needed */
309 if (req->vfdev_info.capabilities &
310 VFPF_ACQUIRE_CAP_PRE_FP_HSI)
311 p_iov->b_pre_fp_hsi = true;
313 rc = OSAL_VF_UPDATE_ACQUIRE_RESC_RESP(p_hwfn, &resp->resc);
315 DP_NOTICE(p_hwfn, true,
316 "VF_UPDATE_ACQUIRE_RESC_RESP Failed:"
323 /* Update bulletin board size with response from PF */
324 p_iov->bulletin.size = resp->bulletin_size;
327 p_hwfn->p_dev->type = resp->pfdev_info.dev_type;
328 p_hwfn->p_dev->chip_rev = resp->pfdev_info.chip_rev;
330 DP_INFO(p_hwfn, "Chip details - %s%d\n",
331 ECORE_IS_BB(p_hwfn->p_dev) ? "BB" : "AH",
332 CHIP_REV_IS_A0(p_hwfn->p_dev) ? 0 : 1);
334 p_hwfn->p_dev->chip_num = pfdev_info->chip_num & 0xffff;
336 /* Learn of the possibility of CMT */
337 if (IS_LEAD_HWFN(p_hwfn)) {
338 if (resp->pfdev_info.capabilities & PFVF_ACQUIRE_CAP_100G) {
339 DP_INFO(p_hwfn, "100g VF\n");
340 p_hwfn->p_dev->num_hwfns = 2;
345 if ((~p_iov->b_pre_fp_hsi &
346 ETH_HSI_VER_MINOR) &&
347 (resp->pfdev_info.minor_fp_hsi < ETH_HSI_VER_MINOR))
349 "PF is using older fastpath HSI;"
350 " %02x.%02x is configured\n",
352 resp->pfdev_info.minor_fp_hsi);
355 ecore_vf_pf_req_end(p_hwfn, rc);
360 enum _ecore_status_t ecore_vf_hw_prepare(struct ecore_hwfn *p_hwfn)
362 struct ecore_vf_iov *p_iov;
365 /* Set number of hwfns - might be overridden once leading hwfn learns
366 * actual configuration from PF.
368 if (IS_LEAD_HWFN(p_hwfn))
369 p_hwfn->p_dev->num_hwfns = 1;
371 /* Set the doorbell bar. Assumption: regview is set */
372 p_hwfn->doorbells = (u8 OSAL_IOMEM *)p_hwfn->regview +
373 PXP_VF_BAR0_START_DQ;
375 reg = PXP_VF_BAR0_ME_OPAQUE_ADDRESS;
376 p_hwfn->hw_info.opaque_fid = (u16)REG_RD(p_hwfn, reg);
378 reg = PXP_VF_BAR0_ME_CONCRETE_ADDRESS;
379 p_hwfn->hw_info.concrete_fid = REG_RD(p_hwfn, reg);
381 /* Allocate vf sriov info */
382 p_iov = OSAL_ZALLOC(p_hwfn->p_dev, GFP_KERNEL, sizeof(*p_iov));
384 DP_NOTICE(p_hwfn, true,
385 "Failed to allocate `struct ecore_sriov'\n");
389 /* Allocate vf2pf msg */
390 p_iov->vf2pf_request = OSAL_DMA_ALLOC_COHERENT(p_hwfn->p_dev,
395 if (!p_iov->vf2pf_request) {
396 DP_NOTICE(p_hwfn, true,
397 "Failed to allocate `vf2pf_request' DMA memory\n");
401 p_iov->pf2vf_reply = OSAL_DMA_ALLOC_COHERENT(p_hwfn->p_dev,
404 sizeof(union pfvf_tlvs));
405 if (!p_iov->pf2vf_reply) {
406 DP_NOTICE(p_hwfn, true,
407 "Failed to allocate `pf2vf_reply' DMA memory\n");
408 goto free_vf2pf_request;
411 DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
412 "VF's Request mailbox [%p virt 0x%lx phys], "
413 "Response mailbox [%p virt 0x%lx phys]\n",
414 p_iov->vf2pf_request,
415 (unsigned long)p_iov->vf2pf_request_phys,
417 (unsigned long)p_iov->pf2vf_reply_phys);
419 /* Allocate Bulletin board */
420 p_iov->bulletin.size = sizeof(struct ecore_bulletin_content);
421 p_iov->bulletin.p_virt = OSAL_DMA_ALLOC_COHERENT(p_hwfn->p_dev,
426 DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
427 "VF's bulletin Board [%p virt 0x%lx phys 0x%08x bytes]\n",
428 p_iov->bulletin.p_virt, (unsigned long)p_iov->bulletin.phys,
429 p_iov->bulletin.size);
431 OSAL_MUTEX_ALLOC(p_hwfn, &p_iov->mutex);
432 OSAL_MUTEX_INIT(&p_iov->mutex);
434 p_hwfn->vf_iov_info = p_iov;
436 p_hwfn->hw_info.personality = ECORE_PCI_ETH;
438 return ecore_vf_pf_acquire(p_hwfn);
441 OSAL_DMA_FREE_COHERENT(p_hwfn->p_dev, p_iov->vf2pf_request,
442 p_iov->vf2pf_request_phys,
443 sizeof(union vfpf_tlvs));
445 OSAL_FREE(p_hwfn->p_dev, p_iov);
450 #define TSTORM_QZONE_START PXP_VF_BAR0_START_SDM_ZONE_A
451 #define MSTORM_QZONE_START(dev) (TSTORM_QZONE_START + \
452 (TSTORM_QZONE_SIZE * NUM_OF_L2_QUEUES(dev)))
454 /* @DPDK - changed enum ecore_tunn_clss to enum ecore_tunn_mode */
456 __ecore_vf_prep_tunn_req_tlv(struct vfpf_update_tunn_param_tlv *p_req,
457 struct ecore_tunn_update_type *p_src,
458 enum ecore_tunn_mode mask, u8 *p_cls)
460 if (p_src->b_update_mode) {
461 p_req->tun_mode_update_mask |= (1 << mask);
463 if (p_src->b_mode_enabled)
464 p_req->tunn_mode |= (1 << mask);
467 *p_cls = p_src->tun_cls;
470 /* @DPDK - changed enum ecore_tunn_clss to enum ecore_tunn_mode */
472 ecore_vf_prep_tunn_req_tlv(struct vfpf_update_tunn_param_tlv *p_req,
473 struct ecore_tunn_update_type *p_src,
474 enum ecore_tunn_mode mask, u8 *p_cls,
475 struct ecore_tunn_update_udp_port *p_port,
476 u8 *p_update_port, u16 *p_udp_port)
478 if (p_port->b_update_port) {
480 *p_udp_port = p_port->port;
483 __ecore_vf_prep_tunn_req_tlv(p_req, p_src, mask, p_cls);
486 void ecore_vf_set_vf_start_tunn_update_param(struct ecore_tunnel_info *p_tun)
488 if (p_tun->vxlan.b_mode_enabled)
489 p_tun->vxlan.b_update_mode = true;
490 if (p_tun->l2_geneve.b_mode_enabled)
491 p_tun->l2_geneve.b_update_mode = true;
492 if (p_tun->ip_geneve.b_mode_enabled)
493 p_tun->ip_geneve.b_update_mode = true;
494 if (p_tun->l2_gre.b_mode_enabled)
495 p_tun->l2_gre.b_update_mode = true;
496 if (p_tun->ip_gre.b_mode_enabled)
497 p_tun->ip_gre.b_update_mode = true;
499 p_tun->b_update_rx_cls = true;
500 p_tun->b_update_tx_cls = true;
504 __ecore_vf_update_tunn_param(struct ecore_tunn_update_type *p_tun,
505 u16 feature_mask, u8 tunn_mode, u8 tunn_cls,
506 enum ecore_tunn_mode val)
508 if (feature_mask & (1 << val)) {
509 p_tun->b_mode_enabled = tunn_mode;
510 p_tun->tun_cls = tunn_cls;
512 p_tun->b_mode_enabled = false;
517 ecore_vf_update_tunn_param(struct ecore_hwfn *p_hwfn,
518 struct ecore_tunnel_info *p_tun,
519 struct pfvf_update_tunn_param_tlv *p_resp)
521 /* Update mode and classes provided by PF */
522 u16 feat_mask = p_resp->tunn_feature_mask;
524 __ecore_vf_update_tunn_param(&p_tun->vxlan, feat_mask,
525 p_resp->vxlan_mode, p_resp->vxlan_clss,
526 ECORE_MODE_VXLAN_TUNN);
527 __ecore_vf_update_tunn_param(&p_tun->l2_geneve, feat_mask,
528 p_resp->l2geneve_mode,
529 p_resp->l2geneve_clss,
530 ECORE_MODE_L2GENEVE_TUNN);
531 __ecore_vf_update_tunn_param(&p_tun->ip_geneve, feat_mask,
532 p_resp->ipgeneve_mode,
533 p_resp->ipgeneve_clss,
534 ECORE_MODE_IPGENEVE_TUNN);
535 __ecore_vf_update_tunn_param(&p_tun->l2_gre, feat_mask,
536 p_resp->l2gre_mode, p_resp->l2gre_clss,
537 ECORE_MODE_L2GRE_TUNN);
538 __ecore_vf_update_tunn_param(&p_tun->ip_gre, feat_mask,
539 p_resp->ipgre_mode, p_resp->ipgre_clss,
540 ECORE_MODE_IPGRE_TUNN);
541 p_tun->geneve_port.port = p_resp->geneve_udp_port;
542 p_tun->vxlan_port.port = p_resp->vxlan_udp_port;
544 DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
545 "tunn mode: vxlan=0x%x, l2geneve=0x%x, ipgeneve=0x%x, l2gre=0x%x, ipgre=0x%x",
546 p_tun->vxlan.b_mode_enabled, p_tun->l2_geneve.b_mode_enabled,
547 p_tun->ip_geneve.b_mode_enabled,
548 p_tun->l2_gre.b_mode_enabled,
549 p_tun->ip_gre.b_mode_enabled);
553 ecore_vf_pf_tunnel_param_update(struct ecore_hwfn *p_hwfn,
554 struct ecore_tunnel_info *p_src)
556 struct ecore_tunnel_info *p_tun = &p_hwfn->p_dev->tunnel;
557 struct ecore_vf_iov *p_iov = p_hwfn->vf_iov_info;
558 struct pfvf_update_tunn_param_tlv *p_resp;
559 struct vfpf_update_tunn_param_tlv *p_req;
560 enum _ecore_status_t rc;
562 p_req = ecore_vf_pf_prep(p_hwfn, CHANNEL_TLV_UPDATE_TUNN_PARAM,
565 if (p_src->b_update_rx_cls && p_src->b_update_tx_cls)
566 p_req->update_tun_cls = 1;
568 ecore_vf_prep_tunn_req_tlv(p_req, &p_src->vxlan, ECORE_MODE_VXLAN_TUNN,
569 &p_req->vxlan_clss, &p_src->vxlan_port,
570 &p_req->update_vxlan_port,
572 ecore_vf_prep_tunn_req_tlv(p_req, &p_src->l2_geneve,
573 ECORE_MODE_L2GENEVE_TUNN,
574 &p_req->l2geneve_clss, &p_src->geneve_port,
575 &p_req->update_geneve_port,
576 &p_req->geneve_port);
577 __ecore_vf_prep_tunn_req_tlv(p_req, &p_src->ip_geneve,
578 ECORE_MODE_IPGENEVE_TUNN,
579 &p_req->ipgeneve_clss);
580 __ecore_vf_prep_tunn_req_tlv(p_req, &p_src->l2_gre,
581 ECORE_MODE_L2GRE_TUNN, &p_req->l2gre_clss);
582 __ecore_vf_prep_tunn_req_tlv(p_req, &p_src->ip_gre,
583 ECORE_MODE_IPGRE_TUNN, &p_req->ipgre_clss);
585 /* add list termination tlv */
586 ecore_add_tlv(p_hwfn, &p_iov->offset,
587 CHANNEL_TLV_LIST_END,
588 sizeof(struct channel_list_end_tlv));
590 p_resp = &p_iov->pf2vf_reply->tunn_param_resp;
591 rc = ecore_send_msg2pf(p_hwfn, &p_resp->hdr.status, sizeof(*p_resp));
596 if (p_resp->hdr.status != PFVF_STATUS_SUCCESS) {
597 DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
598 "Failed to update tunnel parameters\n");
602 ecore_vf_update_tunn_param(p_hwfn, p_tun, p_resp);
604 ecore_vf_pf_req_end(p_hwfn, rc);
609 ecore_vf_pf_rxq_start(struct ecore_hwfn *p_hwfn,
610 struct ecore_queue_cid *p_cid,
612 dma_addr_t bd_chain_phys_addr,
613 dma_addr_t cqe_pbl_addr,
615 void OSAL_IOMEM **pp_prod)
617 struct ecore_vf_iov *p_iov = p_hwfn->vf_iov_info;
618 struct pfvf_start_queue_resp_tlv *resp;
619 struct vfpf_start_rxq_tlv *req;
620 u16 rx_qid = p_cid->rel.queue_id;
621 enum _ecore_status_t rc;
623 /* clear mailbox and prep first tlv */
624 req = ecore_vf_pf_prep(p_hwfn, CHANNEL_TLV_START_RXQ, sizeof(*req));
626 req->rx_qid = rx_qid;
627 req->cqe_pbl_addr = cqe_pbl_addr;
628 req->cqe_pbl_size = cqe_pbl_size;
629 req->rxq_addr = bd_chain_phys_addr;
630 req->hw_sb = p_cid->rel.sb;
631 req->sb_index = p_cid->rel.sb_idx;
632 req->bd_max_bytes = bd_max_bytes;
633 req->stat_id = -1; /* Keep initialized, for future compatibility */
635 /* If PF is legacy, we'll need to calculate producers ourselves
636 * as well as clean them.
638 if (p_iov->b_pre_fp_hsi) {
639 u8 hw_qid = p_iov->acquire_resp.resc.hw_qid[rx_qid];
640 u32 init_prod_val = 0;
642 *pp_prod = (u8 OSAL_IOMEM *)
644 MSTORM_QZONE_START(p_hwfn->p_dev) +
645 (hw_qid) * MSTORM_QZONE_SIZE;
647 /* Init the rcq, rx bd and rx sge (if valid) producers to 0 */
648 __internal_ram_wr(p_hwfn, *pp_prod, sizeof(u32),
649 (u32 *)(&init_prod_val));
652 /* add list termination tlv */
653 ecore_add_tlv(p_hwfn, &p_iov->offset,
654 CHANNEL_TLV_LIST_END,
655 sizeof(struct channel_list_end_tlv));
657 resp = &p_iov->pf2vf_reply->queue_start;
658 rc = ecore_send_msg2pf(p_hwfn, &resp->hdr.status, sizeof(*resp));
662 if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
667 /* Learn the address of the producer from the response */
668 if (!p_iov->b_pre_fp_hsi) {
669 u32 init_prod_val = 0;
671 *pp_prod = (u8 OSAL_IOMEM *)p_hwfn->regview + resp->offset;
672 DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
673 "Rxq[0x%02x]: producer at %p [offset 0x%08x]\n",
674 rx_qid, *pp_prod, resp->offset);
676 /* Init the rcq, rx bd and rx sge (if valid) producers to 0.
677 * It was actually the PF's responsibility, but since some
678 * old PFs might fail to do so, we do this as well.
680 OSAL_BUILD_BUG_ON(ETH_HSI_VER_MAJOR != 3);
681 __internal_ram_wr(p_hwfn, *pp_prod, sizeof(u32),
682 (u32 *)&init_prod_val);
686 ecore_vf_pf_req_end(p_hwfn, rc);
691 enum _ecore_status_t ecore_vf_pf_rxq_stop(struct ecore_hwfn *p_hwfn,
692 struct ecore_queue_cid *p_cid,
695 struct ecore_vf_iov *p_iov = p_hwfn->vf_iov_info;
696 struct vfpf_stop_rxqs_tlv *req;
697 struct pfvf_def_resp_tlv *resp;
698 enum _ecore_status_t rc;
700 /* clear mailbox and prep first tlv */
701 req = ecore_vf_pf_prep(p_hwfn, CHANNEL_TLV_STOP_RXQS, sizeof(*req));
703 req->rx_qid = p_cid->rel.queue_id;
705 req->cqe_completion = cqe_completion;
707 /* add list termination tlv */
708 ecore_add_tlv(p_hwfn, &p_iov->offset,
709 CHANNEL_TLV_LIST_END,
710 sizeof(struct channel_list_end_tlv));
712 resp = &p_iov->pf2vf_reply->default_resp;
713 rc = ecore_send_msg2pf(p_hwfn, &resp->hdr.status, sizeof(*resp));
717 if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
723 ecore_vf_pf_req_end(p_hwfn, rc);
729 ecore_vf_pf_txq_start(struct ecore_hwfn *p_hwfn,
730 struct ecore_queue_cid *p_cid,
731 dma_addr_t pbl_addr, u16 pbl_size,
732 void OSAL_IOMEM **pp_doorbell)
734 struct ecore_vf_iov *p_iov = p_hwfn->vf_iov_info;
735 struct pfvf_start_queue_resp_tlv *resp;
736 struct vfpf_start_txq_tlv *req;
737 u16 qid = p_cid->rel.queue_id;
738 enum _ecore_status_t rc;
740 /* clear mailbox and prep first tlv */
741 req = ecore_vf_pf_prep(p_hwfn, CHANNEL_TLV_START_TXQ, sizeof(*req));
746 req->pbl_addr = pbl_addr;
747 req->pbl_size = pbl_size;
748 req->hw_sb = p_cid->rel.sb;
749 req->sb_index = p_cid->rel.sb_idx;
751 /* add list termination tlv */
752 ecore_add_tlv(p_hwfn, &p_iov->offset,
753 CHANNEL_TLV_LIST_END,
754 sizeof(struct channel_list_end_tlv));
756 resp = &p_iov->pf2vf_reply->queue_start;
757 rc = ecore_send_msg2pf(p_hwfn, &resp->hdr.status, sizeof(*resp));
761 if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
766 /* Modern PFs provide the actual offsets, while legacy
767 * provided only the queue id.
769 if (!p_iov->b_pre_fp_hsi) {
770 *pp_doorbell = (u8 OSAL_IOMEM *)p_hwfn->doorbells +
773 u8 cid = p_iov->acquire_resp.resc.cid[qid];
775 *pp_doorbell = (u8 OSAL_IOMEM *)p_hwfn->doorbells +
776 DB_ADDR_VF(cid, DQ_DEMS_LEGACY);
779 DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
780 "Txq[0x%02x]: doorbell at %p [offset 0x%08x]\n",
781 qid, *pp_doorbell, resp->offset);
783 ecore_vf_pf_req_end(p_hwfn, rc);
788 enum _ecore_status_t ecore_vf_pf_txq_stop(struct ecore_hwfn *p_hwfn,
789 struct ecore_queue_cid *p_cid)
791 struct ecore_vf_iov *p_iov = p_hwfn->vf_iov_info;
792 struct vfpf_stop_txqs_tlv *req;
793 struct pfvf_def_resp_tlv *resp;
794 enum _ecore_status_t rc;
796 /* clear mailbox and prep first tlv */
797 req = ecore_vf_pf_prep(p_hwfn, CHANNEL_TLV_STOP_TXQS, sizeof(*req));
799 req->tx_qid = p_cid->rel.queue_id;
802 /* add list termination tlv */
803 ecore_add_tlv(p_hwfn, &p_iov->offset,
804 CHANNEL_TLV_LIST_END,
805 sizeof(struct channel_list_end_tlv));
807 resp = &p_iov->pf2vf_reply->default_resp;
808 rc = ecore_send_msg2pf(p_hwfn, &resp->hdr.status, sizeof(*resp));
812 if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
818 ecore_vf_pf_req_end(p_hwfn, rc);
823 enum _ecore_status_t ecore_vf_pf_rxqs_update(struct ecore_hwfn *p_hwfn,
824 struct ecore_queue_cid **pp_cid,
829 struct ecore_vf_iov *p_iov = p_hwfn->vf_iov_info;
830 struct pfvf_def_resp_tlv *resp = &p_iov->pf2vf_reply->default_resp;
831 struct vfpf_update_rxq_tlv *req;
832 enum _ecore_status_t rc;
834 /* TODO - API is limited to assuming continuous regions of queues,
835 * but VF queues might not fullfil this requirement.
836 * Need to consider whether we need new TLVs for this, or whether
837 * simply doing it iteratively is good enough.
843 /* clear mailbox and prep first tlv */
844 req = ecore_vf_pf_prep(p_hwfn, CHANNEL_TLV_UPDATE_RXQ, sizeof(*req));
846 /* Find the length of the current contagious range of queues beginning
847 * at first queue's index.
849 req->rx_qid = (*pp_cid)->rel.queue_id;
850 for (req->num_rxqs = 1; req->num_rxqs < num_rxqs; req->num_rxqs++)
851 if (pp_cid[req->num_rxqs]->rel.queue_id !=
852 req->rx_qid + req->num_rxqs)
856 req->flags |= VFPF_RXQ_UPD_COMPLETE_CQE_FLAG;
858 req->flags |= VFPF_RXQ_UPD_COMPLETE_EVENT_FLAG;
860 /* add list termination tlv */
861 ecore_add_tlv(p_hwfn, &p_iov->offset,
862 CHANNEL_TLV_LIST_END,
863 sizeof(struct channel_list_end_tlv));
865 rc = ecore_send_msg2pf(p_hwfn, &resp->hdr.status, sizeof(*resp));
869 if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
874 /* Make sure we're done with all the queues */
875 if (req->num_rxqs < num_rxqs) {
876 num_rxqs -= req->num_rxqs;
877 pp_cid += req->num_rxqs;
878 /* TODO - should we give a non-locked variant instead? */
879 ecore_vf_pf_req_end(p_hwfn, rc);
884 ecore_vf_pf_req_end(p_hwfn, rc);
889 ecore_vf_pf_vport_start(struct ecore_hwfn *p_hwfn, u8 vport_id,
890 u16 mtu, u8 inner_vlan_removal,
891 enum ecore_tpa_mode tpa_mode, u8 max_buffers_per_cqe,
894 struct ecore_vf_iov *p_iov = p_hwfn->vf_iov_info;
895 struct vfpf_vport_start_tlv *req;
896 struct pfvf_def_resp_tlv *resp;
897 enum _ecore_status_t rc;
900 /* clear mailbox and prep first tlv */
901 req = ecore_vf_pf_prep(p_hwfn, CHANNEL_TLV_VPORT_START, sizeof(*req));
904 req->vport_id = vport_id;
905 req->inner_vlan_removal = inner_vlan_removal;
906 req->tpa_mode = tpa_mode;
907 req->max_buffers_per_cqe = max_buffers_per_cqe;
908 req->only_untagged = only_untagged;
911 for (i = 0; i < p_hwfn->vf_iov_info->acquire_resp.resc.num_sbs; i++)
912 if (p_hwfn->sbs_info[i])
913 req->sb_addr[i] = p_hwfn->sbs_info[i]->sb_phys;
915 /* add list termination tlv */
916 ecore_add_tlv(p_hwfn, &p_iov->offset,
917 CHANNEL_TLV_LIST_END,
918 sizeof(struct channel_list_end_tlv));
920 resp = &p_iov->pf2vf_reply->default_resp;
921 rc = ecore_send_msg2pf(p_hwfn, &resp->hdr.status, sizeof(*resp));
925 if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
931 ecore_vf_pf_req_end(p_hwfn, rc);
936 enum _ecore_status_t ecore_vf_pf_vport_stop(struct ecore_hwfn *p_hwfn)
938 struct ecore_vf_iov *p_iov = p_hwfn->vf_iov_info;
939 struct pfvf_def_resp_tlv *resp = &p_iov->pf2vf_reply->default_resp;
940 enum _ecore_status_t rc;
942 /* clear mailbox and prep first tlv */
943 ecore_vf_pf_prep(p_hwfn, CHANNEL_TLV_VPORT_TEARDOWN,
944 sizeof(struct vfpf_first_tlv));
946 /* add list termination tlv */
947 ecore_add_tlv(p_hwfn, &p_iov->offset,
948 CHANNEL_TLV_LIST_END,
949 sizeof(struct channel_list_end_tlv));
951 rc = ecore_send_msg2pf(p_hwfn, &resp->hdr.status, sizeof(*resp));
955 if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
961 ecore_vf_pf_req_end(p_hwfn, rc);
967 ecore_vf_handle_vp_update_is_needed(struct ecore_hwfn *p_hwfn,
968 struct ecore_sp_vport_update_params *p_data,
972 case CHANNEL_TLV_VPORT_UPDATE_ACTIVATE:
973 return !!(p_data->update_vport_active_rx_flg ||
974 p_data->update_vport_active_tx_flg);
975 case CHANNEL_TLV_VPORT_UPDATE_TX_SWITCH:
977 /* FPGA doesn't have PVFC and so can't support tx-switching */
978 return !!(p_data->update_tx_switching_flg &&
979 !CHIP_REV_IS_FPGA(p_hwfn->p_dev));
981 return !!p_data->update_tx_switching_flg;
983 case CHANNEL_TLV_VPORT_UPDATE_VLAN_STRIP:
984 return !!p_data->update_inner_vlan_removal_flg;
985 case CHANNEL_TLV_VPORT_UPDATE_ACCEPT_ANY_VLAN:
986 return !!p_data->update_accept_any_vlan_flg;
987 case CHANNEL_TLV_VPORT_UPDATE_MCAST:
988 return !!p_data->update_approx_mcast_flg;
989 case CHANNEL_TLV_VPORT_UPDATE_ACCEPT_PARAM:
990 return !!(p_data->accept_flags.update_rx_mode_config ||
991 p_data->accept_flags.update_tx_mode_config);
992 case CHANNEL_TLV_VPORT_UPDATE_RSS:
993 return !!p_data->rss_params;
994 case CHANNEL_TLV_VPORT_UPDATE_SGE_TPA:
995 return !!p_data->sge_tpa_params;
997 DP_INFO(p_hwfn, "Unexpected vport-update TLV[%d] %s\n",
998 tlv, ecore_channel_tlvs_string[tlv]);
1004 ecore_vf_handle_vp_update_tlvs_resp(struct ecore_hwfn *p_hwfn,
1005 struct ecore_sp_vport_update_params *p_data)
1007 struct ecore_vf_iov *p_iov = p_hwfn->vf_iov_info;
1008 struct pfvf_def_resp_tlv *p_resp;
1011 for (tlv = CHANNEL_TLV_VPORT_UPDATE_ACTIVATE;
1012 tlv < CHANNEL_TLV_VPORT_UPDATE_MAX;
1014 if (!ecore_vf_handle_vp_update_is_needed(p_hwfn, p_data, tlv))
1017 p_resp = (struct pfvf_def_resp_tlv *)
1018 ecore_iov_search_list_tlvs(p_hwfn, p_iov->pf2vf_reply, tlv);
1019 if (p_resp && p_resp->hdr.status)
1020 DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
1021 "TLV[%d] type %s Configuration %s\n",
1022 tlv, ecore_channel_tlvs_string[tlv],
1023 (p_resp && p_resp->hdr.status) ? "succeeded"
1028 enum _ecore_status_t
1029 ecore_vf_pf_vport_update(struct ecore_hwfn *p_hwfn,
1030 struct ecore_sp_vport_update_params *p_params)
1032 struct ecore_vf_iov *p_iov = p_hwfn->vf_iov_info;
1033 struct vfpf_vport_update_tlv *req;
1034 struct pfvf_def_resp_tlv *resp;
1035 u8 update_rx, update_tx;
1038 enum _ecore_status_t rc;
1040 resp = &p_iov->pf2vf_reply->default_resp;
1041 resp_size = sizeof(*resp);
1043 update_rx = p_params->update_vport_active_rx_flg;
1044 update_tx = p_params->update_vport_active_tx_flg;
1046 /* clear mailbox and prep header tlv */
1047 ecore_vf_pf_prep(p_hwfn, CHANNEL_TLV_VPORT_UPDATE, sizeof(*req));
1049 /* Prepare extended tlvs */
1050 if (update_rx || update_tx) {
1051 struct vfpf_vport_update_activate_tlv *p_act_tlv;
1053 size = sizeof(struct vfpf_vport_update_activate_tlv);
1054 p_act_tlv = ecore_add_tlv(p_hwfn, &p_iov->offset,
1055 CHANNEL_TLV_VPORT_UPDATE_ACTIVATE,
1057 resp_size += sizeof(struct pfvf_def_resp_tlv);
1060 p_act_tlv->update_rx = update_rx;
1061 p_act_tlv->active_rx = p_params->vport_active_rx_flg;
1065 p_act_tlv->update_tx = update_tx;
1066 p_act_tlv->active_tx = p_params->vport_active_tx_flg;
1070 if (p_params->update_inner_vlan_removal_flg) {
1071 struct vfpf_vport_update_vlan_strip_tlv *p_vlan_tlv;
1073 size = sizeof(struct vfpf_vport_update_vlan_strip_tlv);
1074 p_vlan_tlv = ecore_add_tlv(p_hwfn, &p_iov->offset,
1075 CHANNEL_TLV_VPORT_UPDATE_VLAN_STRIP,
1077 resp_size += sizeof(struct pfvf_def_resp_tlv);
1079 p_vlan_tlv->remove_vlan = p_params->inner_vlan_removal_flg;
1082 if (p_params->update_tx_switching_flg) {
1083 struct vfpf_vport_update_tx_switch_tlv *p_tx_switch_tlv;
1085 size = sizeof(struct vfpf_vport_update_tx_switch_tlv);
1086 tlv = CHANNEL_TLV_VPORT_UPDATE_TX_SWITCH;
1087 p_tx_switch_tlv = ecore_add_tlv(p_hwfn, &p_iov->offset,
1089 resp_size += sizeof(struct pfvf_def_resp_tlv);
1091 p_tx_switch_tlv->tx_switching = p_params->tx_switching_flg;
1094 if (p_params->update_approx_mcast_flg) {
1095 struct vfpf_vport_update_mcast_bin_tlv *p_mcast_tlv;
1097 size = sizeof(struct vfpf_vport_update_mcast_bin_tlv);
1098 p_mcast_tlv = ecore_add_tlv(p_hwfn, &p_iov->offset,
1099 CHANNEL_TLV_VPORT_UPDATE_MCAST,
1101 resp_size += sizeof(struct pfvf_def_resp_tlv);
1103 OSAL_MEMCPY(p_mcast_tlv->bins, p_params->bins,
1104 sizeof(unsigned long) *
1105 ETH_MULTICAST_MAC_BINS_IN_REGS);
1108 update_rx = p_params->accept_flags.update_rx_mode_config;
1109 update_tx = p_params->accept_flags.update_tx_mode_config;
1111 if (update_rx || update_tx) {
1112 struct vfpf_vport_update_accept_param_tlv *p_accept_tlv;
1114 tlv = CHANNEL_TLV_VPORT_UPDATE_ACCEPT_PARAM;
1115 size = sizeof(struct vfpf_vport_update_accept_param_tlv);
1116 p_accept_tlv = ecore_add_tlv(p_hwfn, &p_iov->offset, tlv, size);
1117 resp_size += sizeof(struct pfvf_def_resp_tlv);
1120 p_accept_tlv->update_rx_mode = update_rx;
1121 p_accept_tlv->rx_accept_filter =
1122 p_params->accept_flags.rx_accept_filter;
1126 p_accept_tlv->update_tx_mode = update_tx;
1127 p_accept_tlv->tx_accept_filter =
1128 p_params->accept_flags.tx_accept_filter;
1132 if (p_params->rss_params) {
1133 struct ecore_rss_params *rss_params = p_params->rss_params;
1134 struct vfpf_vport_update_rss_tlv *p_rss_tlv;
1137 size = sizeof(struct vfpf_vport_update_rss_tlv);
1138 p_rss_tlv = ecore_add_tlv(p_hwfn, &p_iov->offset,
1139 CHANNEL_TLV_VPORT_UPDATE_RSS, size);
1140 resp_size += sizeof(struct pfvf_def_resp_tlv);
1142 if (rss_params->update_rss_config)
1143 p_rss_tlv->update_rss_flags |=
1144 VFPF_UPDATE_RSS_CONFIG_FLAG;
1145 if (rss_params->update_rss_capabilities)
1146 p_rss_tlv->update_rss_flags |=
1147 VFPF_UPDATE_RSS_CAPS_FLAG;
1148 if (rss_params->update_rss_ind_table)
1149 p_rss_tlv->update_rss_flags |=
1150 VFPF_UPDATE_RSS_IND_TABLE_FLAG;
1151 if (rss_params->update_rss_key)
1152 p_rss_tlv->update_rss_flags |= VFPF_UPDATE_RSS_KEY_FLAG;
1154 p_rss_tlv->rss_enable = rss_params->rss_enable;
1155 p_rss_tlv->rss_caps = rss_params->rss_caps;
1156 p_rss_tlv->rss_table_size_log = rss_params->rss_table_size_log;
1158 table_size = OSAL_MIN_T(int, T_ETH_INDIRECTION_TABLE_SIZE,
1159 1 << p_rss_tlv->rss_table_size_log);
1160 for (i = 0; i < table_size; i++) {
1161 struct ecore_queue_cid *p_queue;
1163 p_queue = rss_params->rss_ind_table[i];
1164 p_rss_tlv->rss_ind_table[i] = p_queue->rel.queue_id;
1167 OSAL_MEMCPY(p_rss_tlv->rss_key, rss_params->rss_key,
1168 sizeof(rss_params->rss_key));
1171 if (p_params->update_accept_any_vlan_flg) {
1172 struct vfpf_vport_update_accept_any_vlan_tlv *p_any_vlan_tlv;
1174 size = sizeof(struct vfpf_vport_update_accept_any_vlan_tlv);
1175 tlv = CHANNEL_TLV_VPORT_UPDATE_ACCEPT_ANY_VLAN;
1176 p_any_vlan_tlv = ecore_add_tlv(p_hwfn, &p_iov->offset,
1179 resp_size += sizeof(struct pfvf_def_resp_tlv);
1180 p_any_vlan_tlv->accept_any_vlan = p_params->accept_any_vlan;
1181 p_any_vlan_tlv->update_accept_any_vlan_flg =
1182 p_params->update_accept_any_vlan_flg;
1185 if (p_params->sge_tpa_params) {
1186 struct ecore_sge_tpa_params *sge_tpa_params;
1187 struct vfpf_vport_update_sge_tpa_tlv *p_sge_tpa_tlv;
1189 sge_tpa_params = p_params->sge_tpa_params;
1190 size = sizeof(struct vfpf_vport_update_sge_tpa_tlv);
1191 p_sge_tpa_tlv = ecore_add_tlv(p_hwfn, &p_iov->offset,
1192 CHANNEL_TLV_VPORT_UPDATE_SGE_TPA,
1194 resp_size += sizeof(struct pfvf_def_resp_tlv);
1196 if (sge_tpa_params->update_tpa_en_flg)
1197 p_sge_tpa_tlv->update_sge_tpa_flags |=
1198 VFPF_UPDATE_TPA_EN_FLAG;
1199 if (sge_tpa_params->update_tpa_param_flg)
1200 p_sge_tpa_tlv->update_sge_tpa_flags |=
1201 VFPF_UPDATE_TPA_PARAM_FLAG;
1203 if (sge_tpa_params->tpa_ipv4_en_flg)
1204 p_sge_tpa_tlv->sge_tpa_flags |= VFPF_TPA_IPV4_EN_FLAG;
1205 if (sge_tpa_params->tpa_ipv6_en_flg)
1206 p_sge_tpa_tlv->sge_tpa_flags |= VFPF_TPA_IPV6_EN_FLAG;
1207 if (sge_tpa_params->tpa_pkt_split_flg)
1208 p_sge_tpa_tlv->sge_tpa_flags |= VFPF_TPA_PKT_SPLIT_FLAG;
1209 if (sge_tpa_params->tpa_hdr_data_split_flg)
1210 p_sge_tpa_tlv->sge_tpa_flags |=
1211 VFPF_TPA_HDR_DATA_SPLIT_FLAG;
1212 if (sge_tpa_params->tpa_gro_consistent_flg)
1213 p_sge_tpa_tlv->sge_tpa_flags |=
1214 VFPF_TPA_GRO_CONSIST_FLAG;
1216 p_sge_tpa_tlv->tpa_max_aggs_num =
1217 sge_tpa_params->tpa_max_aggs_num;
1218 p_sge_tpa_tlv->tpa_max_size = sge_tpa_params->tpa_max_size;
1219 p_sge_tpa_tlv->tpa_min_size_to_start =
1220 sge_tpa_params->tpa_min_size_to_start;
1221 p_sge_tpa_tlv->tpa_min_size_to_cont =
1222 sge_tpa_params->tpa_min_size_to_cont;
1224 p_sge_tpa_tlv->max_buffers_per_cqe =
1225 sge_tpa_params->max_buffers_per_cqe;
1228 /* add list termination tlv */
1229 ecore_add_tlv(p_hwfn, &p_iov->offset,
1230 CHANNEL_TLV_LIST_END,
1231 sizeof(struct channel_list_end_tlv));
1233 rc = ecore_send_msg2pf(p_hwfn, &resp->hdr.status, resp_size);
1237 if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
1242 ecore_vf_handle_vp_update_tlvs_resp(p_hwfn, p_params);
1245 ecore_vf_pf_req_end(p_hwfn, rc);
1250 enum _ecore_status_t ecore_vf_pf_reset(struct ecore_hwfn *p_hwfn)
1252 struct ecore_vf_iov *p_iov = p_hwfn->vf_iov_info;
1253 struct pfvf_def_resp_tlv *resp;
1254 struct vfpf_first_tlv *req;
1255 enum _ecore_status_t rc;
1257 /* clear mailbox and prep first tlv */
1258 req = ecore_vf_pf_prep(p_hwfn, CHANNEL_TLV_CLOSE, sizeof(*req));
1260 /* add list termination tlv */
1261 ecore_add_tlv(p_hwfn, &p_iov->offset,
1262 CHANNEL_TLV_LIST_END,
1263 sizeof(struct channel_list_end_tlv));
1265 resp = &p_iov->pf2vf_reply->default_resp;
1266 rc = ecore_send_msg2pf(p_hwfn, &resp->hdr.status, sizeof(*resp));
1270 if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
1275 p_hwfn->b_int_enabled = 0;
1278 ecore_vf_pf_req_end(p_hwfn, rc);
1283 enum _ecore_status_t ecore_vf_pf_release(struct ecore_hwfn *p_hwfn)
1285 struct ecore_vf_iov *p_iov = p_hwfn->vf_iov_info;
1286 struct pfvf_def_resp_tlv *resp;
1287 struct vfpf_first_tlv *req;
1288 enum _ecore_status_t rc;
1291 /* clear mailbox and prep first tlv */
1292 req = ecore_vf_pf_prep(p_hwfn, CHANNEL_TLV_RELEASE, sizeof(*req));
1294 /* add list termination tlv */
1295 ecore_add_tlv(p_hwfn, &p_iov->offset,
1296 CHANNEL_TLV_LIST_END,
1297 sizeof(struct channel_list_end_tlv));
1299 resp = &p_iov->pf2vf_reply->default_resp;
1300 rc = ecore_send_msg2pf(p_hwfn, &resp->hdr.status, sizeof(*resp));
1302 if (rc == ECORE_SUCCESS && resp->hdr.status != PFVF_STATUS_SUCCESS)
1305 ecore_vf_pf_req_end(p_hwfn, rc);
1307 p_hwfn->b_int_enabled = 0;
1309 if (p_iov->vf2pf_request)
1310 OSAL_DMA_FREE_COHERENT(p_hwfn->p_dev,
1311 p_iov->vf2pf_request,
1312 p_iov->vf2pf_request_phys,
1313 sizeof(union vfpf_tlvs));
1314 if (p_iov->pf2vf_reply)
1315 OSAL_DMA_FREE_COHERENT(p_hwfn->p_dev,
1317 p_iov->pf2vf_reply_phys,
1318 sizeof(union pfvf_tlvs));
1320 if (p_iov->bulletin.p_virt) {
1321 size = sizeof(struct ecore_bulletin_content);
1322 OSAL_DMA_FREE_COHERENT(p_hwfn->p_dev,
1323 p_iov->bulletin.p_virt,
1324 p_iov->bulletin.phys, size);
1327 OSAL_FREE(p_hwfn->p_dev, p_hwfn->vf_iov_info);
1332 void ecore_vf_pf_filter_mcast(struct ecore_hwfn *p_hwfn,
1333 struct ecore_filter_mcast *p_filter_cmd)
1335 struct ecore_sp_vport_update_params sp_params;
1338 OSAL_MEMSET(&sp_params, 0, sizeof(sp_params));
1339 sp_params.update_approx_mcast_flg = 1;
1341 if (p_filter_cmd->opcode == ECORE_FILTER_ADD) {
1342 for (i = 0; i < p_filter_cmd->num_mc_addrs; i++) {
1345 bit = ecore_mcast_bin_from_mac(p_filter_cmd->mac[i]);
1346 OSAL_SET_BIT(bit, sp_params.bins);
1350 ecore_vf_pf_vport_update(p_hwfn, &sp_params);
1353 enum _ecore_status_t ecore_vf_pf_filter_ucast(struct ecore_hwfn *p_hwfn,
1354 struct ecore_filter_ucast
1357 struct ecore_vf_iov *p_iov = p_hwfn->vf_iov_info;
1358 struct vfpf_ucast_filter_tlv *req;
1359 struct pfvf_def_resp_tlv *resp;
1360 enum _ecore_status_t rc;
1363 if (p_ucast->opcode == ECORE_FILTER_MOVE) {
1364 DP_NOTICE(p_hwfn, true,
1365 "VFs don't support Moving of filters\n");
1369 /* clear mailbox and prep first tlv */
1370 req = ecore_vf_pf_prep(p_hwfn, CHANNEL_TLV_UCAST_FILTER, sizeof(*req));
1371 req->opcode = (u8)p_ucast->opcode;
1372 req->type = (u8)p_ucast->type;
1373 OSAL_MEMCPY(req->mac, p_ucast->mac, ETH_ALEN);
1374 req->vlan = p_ucast->vlan;
1376 /* add list termination tlv */
1377 ecore_add_tlv(p_hwfn, &p_iov->offset,
1378 CHANNEL_TLV_LIST_END,
1379 sizeof(struct channel_list_end_tlv));
1381 resp = &p_iov->pf2vf_reply->default_resp;
1382 rc = ecore_send_msg2pf(p_hwfn, &resp->hdr.status, sizeof(*resp));
1386 if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
1392 ecore_vf_pf_req_end(p_hwfn, rc);
1397 enum _ecore_status_t ecore_vf_pf_int_cleanup(struct ecore_hwfn *p_hwfn)
1399 struct ecore_vf_iov *p_iov = p_hwfn->vf_iov_info;
1400 struct pfvf_def_resp_tlv *resp = &p_iov->pf2vf_reply->default_resp;
1401 enum _ecore_status_t rc;
1403 /* clear mailbox and prep first tlv */
1404 ecore_vf_pf_prep(p_hwfn, CHANNEL_TLV_INT_CLEANUP,
1405 sizeof(struct vfpf_first_tlv));
1407 /* add list termination tlv */
1408 ecore_add_tlv(p_hwfn, &p_iov->offset,
1409 CHANNEL_TLV_LIST_END,
1410 sizeof(struct channel_list_end_tlv));
1412 rc = ecore_send_msg2pf(p_hwfn, &resp->hdr.status, sizeof(*resp));
1416 if (resp->hdr.status != PFVF_STATUS_SUCCESS) {
1422 ecore_vf_pf_req_end(p_hwfn, rc);
1427 enum _ecore_status_t
1428 ecore_vf_pf_set_coalesce(struct ecore_hwfn *p_hwfn, u16 rx_coal, u16 tx_coal,
1429 struct ecore_queue_cid *p_cid)
1431 struct ecore_vf_iov *p_iov = p_hwfn->vf_iov_info;
1432 struct vfpf_update_coalesce *req;
1433 struct pfvf_def_resp_tlv *resp;
1434 enum _ecore_status_t rc;
1436 /* clear mailbox and prep header tlv */
1437 req = ecore_vf_pf_prep(p_hwfn, CHANNEL_TLV_COALESCE_UPDATE,
1440 req->rx_coal = rx_coal;
1441 req->tx_coal = tx_coal;
1442 req->qid = p_cid->rel.queue_id;
1444 DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
1445 "Setting coalesce rx_coal = %d, tx_coal = %d at queue = %d\n",
1446 rx_coal, tx_coal, req->qid);
1448 /* add list termination tlv */
1449 ecore_add_tlv(p_hwfn, &p_iov->offset, CHANNEL_TLV_LIST_END,
1450 sizeof(struct channel_list_end_tlv));
1452 resp = &p_iov->pf2vf_reply->default_resp;
1453 rc = ecore_send_msg2pf(p_hwfn, &resp->hdr.status, sizeof(*resp));
1455 if (rc != ECORE_SUCCESS)
1458 if (resp->hdr.status != PFVF_STATUS_SUCCESS)
1461 p_hwfn->p_dev->rx_coalesce_usecs = rx_coal;
1462 p_hwfn->p_dev->tx_coalesce_usecs = tx_coal;
1465 ecore_vf_pf_req_end(p_hwfn, rc);
1469 u16 ecore_vf_get_igu_sb_id(struct ecore_hwfn *p_hwfn,
1472 struct ecore_vf_iov *p_iov = p_hwfn->vf_iov_info;
1475 DP_NOTICE(p_hwfn, true, "vf_sriov_info isn't initialized\n");
1479 return p_iov->acquire_resp.resc.hw_sbs[sb_id].hw_sb_id;
1482 enum _ecore_status_t ecore_vf_read_bulletin(struct ecore_hwfn *p_hwfn,
1485 struct ecore_vf_iov *p_iov = p_hwfn->vf_iov_info;
1486 struct ecore_bulletin_content shadow;
1489 crc_size = sizeof(p_iov->bulletin.p_virt->crc);
1492 /* Need to guarantee PF is not in the middle of writing it */
1493 OSAL_MEMCPY(&shadow, p_iov->bulletin.p_virt, p_iov->bulletin.size);
1495 /* If version did not update, no need to do anything */
1496 if (shadow.version == p_iov->bulletin_shadow.version)
1497 return ECORE_SUCCESS;
1499 /* Verify the bulletin we see is valid */
1500 crc = ecore_crc32(0, (u8 *)&shadow + crc_size,
1501 p_iov->bulletin.size - crc_size);
1502 if (crc != shadow.crc)
1505 /* Set the shadow bulletin and process it */
1506 OSAL_MEMCPY(&p_iov->bulletin_shadow, &shadow, p_iov->bulletin.size);
1508 DP_VERBOSE(p_hwfn, ECORE_MSG_IOV,
1509 "Read a bulletin update %08x\n", shadow.version);
1513 return ECORE_SUCCESS;
1516 void __ecore_vf_get_link_params(struct ecore_hwfn *p_hwfn,
1517 struct ecore_mcp_link_params *p_params,
1518 struct ecore_bulletin_content *p_bulletin)
1520 OSAL_MEMSET(p_params, 0, sizeof(*p_params));
1522 p_params->speed.autoneg = p_bulletin->req_autoneg;
1523 p_params->speed.advertised_speeds = p_bulletin->req_adv_speed;
1524 p_params->speed.forced_speed = p_bulletin->req_forced_speed;
1525 p_params->pause.autoneg = p_bulletin->req_autoneg_pause;
1526 p_params->pause.forced_rx = p_bulletin->req_forced_rx;
1527 p_params->pause.forced_tx = p_bulletin->req_forced_tx;
1528 p_params->loopback_mode = p_bulletin->req_loopback;
1531 void ecore_vf_get_link_params(struct ecore_hwfn *p_hwfn,
1532 struct ecore_mcp_link_params *params)
1534 __ecore_vf_get_link_params(p_hwfn, params,
1535 &p_hwfn->vf_iov_info->bulletin_shadow);
1538 void __ecore_vf_get_link_state(struct ecore_hwfn *p_hwfn,
1539 struct ecore_mcp_link_state *p_link,
1540 struct ecore_bulletin_content *p_bulletin)
1542 OSAL_MEMSET(p_link, 0, sizeof(*p_link));
1544 p_link->link_up = p_bulletin->link_up;
1545 p_link->speed = p_bulletin->speed;
1546 p_link->full_duplex = p_bulletin->full_duplex;
1547 p_link->an = p_bulletin->autoneg;
1548 p_link->an_complete = p_bulletin->autoneg_complete;
1549 p_link->parallel_detection = p_bulletin->parallel_detection;
1550 p_link->pfc_enabled = p_bulletin->pfc_enabled;
1551 p_link->partner_adv_speed = p_bulletin->partner_adv_speed;
1552 p_link->partner_tx_flow_ctrl_en = p_bulletin->partner_tx_flow_ctrl_en;
1553 p_link->partner_rx_flow_ctrl_en = p_bulletin->partner_rx_flow_ctrl_en;
1554 p_link->partner_adv_pause = p_bulletin->partner_adv_pause;
1555 p_link->sfp_tx_fault = p_bulletin->sfp_tx_fault;
1558 void ecore_vf_get_link_state(struct ecore_hwfn *p_hwfn,
1559 struct ecore_mcp_link_state *link)
1561 __ecore_vf_get_link_state(p_hwfn, link,
1562 &p_hwfn->vf_iov_info->bulletin_shadow);
1565 void __ecore_vf_get_link_caps(struct ecore_hwfn *p_hwfn,
1566 struct ecore_mcp_link_capabilities *p_link_caps,
1567 struct ecore_bulletin_content *p_bulletin)
1569 OSAL_MEMSET(p_link_caps, 0, sizeof(*p_link_caps));
1570 p_link_caps->speed_capabilities = p_bulletin->capability_speed;
1573 void ecore_vf_get_link_caps(struct ecore_hwfn *p_hwfn,
1574 struct ecore_mcp_link_capabilities *p_link_caps)
1576 __ecore_vf_get_link_caps(p_hwfn, p_link_caps,
1577 &p_hwfn->vf_iov_info->bulletin_shadow);
1580 void ecore_vf_get_num_rxqs(struct ecore_hwfn *p_hwfn, u8 *num_rxqs)
1582 *num_rxqs = p_hwfn->vf_iov_info->acquire_resp.resc.num_rxqs;
1585 void ecore_vf_get_port_mac(struct ecore_hwfn *p_hwfn, u8 *port_mac)
1587 OSAL_MEMCPY(port_mac,
1588 p_hwfn->vf_iov_info->acquire_resp.pfdev_info.port_mac,
1592 void ecore_vf_get_num_vlan_filters(struct ecore_hwfn *p_hwfn,
1593 u8 *num_vlan_filters)
1595 struct ecore_vf_iov *p_vf;
1597 p_vf = p_hwfn->vf_iov_info;
1598 *num_vlan_filters = p_vf->acquire_resp.resc.num_vlan_filters;
1601 void ecore_vf_get_num_sbs(struct ecore_hwfn *p_hwfn,
1604 struct ecore_vf_iov *p_vf;
1606 p_vf = p_hwfn->vf_iov_info;
1607 *num_sbs = (u32)p_vf->acquire_resp.resc.num_sbs;
1610 void ecore_vf_get_num_mac_filters(struct ecore_hwfn *p_hwfn,
1611 u32 *num_mac_filters)
1613 struct ecore_vf_iov *p_vf = p_hwfn->vf_iov_info;
1615 *num_mac_filters = p_vf->acquire_resp.resc.num_mac_filters;
1618 bool ecore_vf_check_mac(struct ecore_hwfn *p_hwfn, u8 *mac)
1620 struct ecore_bulletin_content *bulletin;
1622 bulletin = &p_hwfn->vf_iov_info->bulletin_shadow;
1623 if (!(bulletin->valid_bitmap & (1 << MAC_ADDR_FORCED)))
1626 /* Forbid VF from changing a MAC enforced by PF */
1627 if (OSAL_MEMCMP(bulletin->mac, mac, ETH_ALEN))
1633 bool ecore_vf_bulletin_get_forced_mac(struct ecore_hwfn *hwfn, u8 *dst_mac,
1636 struct ecore_bulletin_content *bulletin;
1638 bulletin = &hwfn->vf_iov_info->bulletin_shadow;
1640 if (bulletin->valid_bitmap & (1 << MAC_ADDR_FORCED)) {
1643 } else if (bulletin->valid_bitmap & (1 << VFPF_BULLETIN_MAC_ADDR)) {
1650 OSAL_MEMCPY(dst_mac, bulletin->mac, ETH_ALEN);
1655 bool ecore_vf_bulletin_get_forced_vlan(struct ecore_hwfn *hwfn, u16 *dst_pvid)
1657 struct ecore_bulletin_content *bulletin;
1659 bulletin = &hwfn->vf_iov_info->bulletin_shadow;
1661 if (!(bulletin->valid_bitmap & (1 << VLAN_ADDR_FORCED)))
1665 *dst_pvid = bulletin->pvid;
1670 bool ecore_vf_get_pre_fp_hsi(struct ecore_hwfn *p_hwfn)
1672 return p_hwfn->vf_iov_info->b_pre_fp_hsi;
1675 void ecore_vf_get_fw_version(struct ecore_hwfn *p_hwfn,
1676 u16 *fw_major, u16 *fw_minor, u16 *fw_rev,
1679 struct pf_vf_pfdev_info *info;
1681 info = &p_hwfn->vf_iov_info->acquire_resp.pfdev_info;
1683 *fw_major = info->fw_major;
1684 *fw_minor = info->fw_minor;
1685 *fw_rev = info->fw_rev;
1686 *fw_eng = info->fw_eng;