1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2020 Intel Corporation
9 #include <rte_spinlock.h>
11 #include "ice_dcf_ethdev.h"
12 #include "ice_generic_flow.h"
14 #define ICE_DCF_VSI_UPDATE_SERVICE_INTERVAL 100000 /* us */
15 static rte_spinlock_t vsi_update_lock = RTE_SPINLOCK_INITIALIZER;
17 struct ice_dcf_reset_event_param {
18 struct ice_dcf_hw *dcf_hw;
20 bool vfr; /* VF reset event */
21 uint16_t vf_id; /* The reset VF ID */
24 static __rte_always_inline void
25 ice_dcf_update_vsi_ctx(struct ice_hw *hw, uint16_t vsi_handle,
28 struct ice_vsi_ctx *vsi_ctx;
29 bool first_update = false;
32 if (unlikely(vsi_handle >= ICE_MAX_VSI)) {
33 PMD_DRV_LOG(ERR, "Invalid vsi handle %u", vsi_handle);
37 vsi_ctx = hw->vsi_ctx[vsi_handle];
39 if (vsi_map & VIRTCHNL_DCF_VF_VSI_VALID) {
41 vsi_ctx = ice_malloc(hw, sizeof(*vsi_ctx));
43 PMD_DRV_LOG(ERR, "No memory for vsi context %u",
47 hw->vsi_ctx[vsi_handle] = vsi_ctx;
51 new_vsi_num = (vsi_map & VIRTCHNL_DCF_VF_VSI_ID_M) >>
52 VIRTCHNL_DCF_VF_VSI_ID_S;
54 /* Redirect rules if vsi mapping table changes. */
56 struct ice_flow_redirect rd;
58 memset(&rd, 0, sizeof(struct ice_flow_redirect));
59 rd.type = ICE_FLOW_REDIRECT_VSI;
60 rd.vsi_handle = vsi_handle;
61 rd.new_vsi_num = new_vsi_num;
62 ice_flow_redirect((struct ice_adapter *)hw->back, &rd);
64 vsi_ctx->vsi_num = new_vsi_num;
67 PMD_DRV_LOG(DEBUG, "VF%u is assigned with vsi number %u",
68 vsi_handle, vsi_ctx->vsi_num);
70 hw->vsi_ctx[vsi_handle] = NULL;
72 ice_free(hw, vsi_ctx);
74 PMD_DRV_LOG(NOTICE, "VF%u is disabled", vsi_handle);
79 ice_dcf_update_vf_vsi_map(struct ice_hw *hw, uint16_t num_vfs,
84 for (vf_id = 0; vf_id < num_vfs; vf_id++)
85 ice_dcf_update_vsi_ctx(hw, vf_id, vf_vsi_map[vf_id]);
89 ice_dcf_update_pf_vsi_map(struct ice_hw *hw, uint16_t pf_vsi_idx,
92 struct ice_vsi_ctx *vsi_ctx;
94 if (unlikely(pf_vsi_idx >= ICE_MAX_VSI)) {
95 PMD_DRV_LOG(ERR, "Invalid vsi handle %u", pf_vsi_idx);
99 vsi_ctx = hw->vsi_ctx[pf_vsi_idx];
102 vsi_ctx = ice_malloc(hw, sizeof(*vsi_ctx));
105 PMD_DRV_LOG(ERR, "No memory for vsi context %u",
110 vsi_ctx->vsi_num = pf_vsi_num;
111 hw->vsi_ctx[pf_vsi_idx] = vsi_ctx;
113 PMD_DRV_LOG(DEBUG, "VF%u is assigned with vsi number %u",
114 pf_vsi_idx, vsi_ctx->vsi_num);
118 ice_dcf_vsi_update_service_handler(void *param)
120 struct ice_dcf_reset_event_param *reset_param = param;
121 struct ice_dcf_hw *hw = reset_param->dcf_hw;
122 struct ice_dcf_adapter *adapter;
124 pthread_detach(pthread_self());
126 rte_delay_us(ICE_DCF_VSI_UPDATE_SERVICE_INTERVAL);
128 rte_spinlock_lock(&vsi_update_lock);
130 adapter = container_of(hw, struct ice_dcf_adapter, real_hw);
132 if (!ice_dcf_handle_vsi_update_event(hw))
133 ice_dcf_update_vf_vsi_map(&adapter->parent.hw,
134 hw->num_vfs, hw->vf_vsi_map);
136 if (reset_param->vfr && adapter->repr_infos) {
137 struct rte_eth_dev *vf_rep_eth_dev =
138 adapter->repr_infos[reset_param->vf_id].vf_rep_eth_dev;
139 if (vf_rep_eth_dev && vf_rep_eth_dev->data->dev_started) {
140 PMD_DRV_LOG(DEBUG, "VF%u representor is resetting",
142 ice_dcf_vf_repr_init_vlan(vf_rep_eth_dev);
146 rte_spinlock_unlock(&vsi_update_lock);
154 start_vsi_reset_thread(struct ice_dcf_hw *dcf_hw, bool vfr, uint16_t vf_id)
156 #define THREAD_NAME_LEN 16
157 struct ice_dcf_reset_event_param *param;
158 char name[THREAD_NAME_LEN];
162 param = malloc(sizeof(*param));
164 PMD_DRV_LOG(ERR, "Failed to allocate the memory for reset handling");
168 param->dcf_hw = dcf_hw;
170 param->vf_id = vf_id;
172 snprintf(name, sizeof(name), "ice-reset-%u", vf_id);
173 ret = rte_ctrl_thread_create(&thread, name, NULL,
174 ice_dcf_vsi_update_service_handler, param);
176 PMD_DRV_LOG(ERR, "Failed to start the thread for reset handling");
182 ice_dcf_convert_link_speed(enum virtchnl_link_speed virt_link_speed)
186 switch (virt_link_speed) {
187 case VIRTCHNL_LINK_SPEED_100MB:
190 case VIRTCHNL_LINK_SPEED_1GB:
193 case VIRTCHNL_LINK_SPEED_10GB:
196 case VIRTCHNL_LINK_SPEED_40GB:
199 case VIRTCHNL_LINK_SPEED_20GB:
202 case VIRTCHNL_LINK_SPEED_25GB:
205 case VIRTCHNL_LINK_SPEED_2_5GB:
208 case VIRTCHNL_LINK_SPEED_5GB:
220 ice_dcf_handle_pf_event_msg(struct ice_dcf_hw *dcf_hw,
221 uint8_t *msg, uint16_t msglen)
223 struct virtchnl_pf_event *pf_msg = (struct virtchnl_pf_event *)msg;
225 if (msglen < sizeof(struct virtchnl_pf_event)) {
226 PMD_DRV_LOG(DEBUG, "Invalid event message length : %u", msglen);
230 switch (pf_msg->event) {
231 case VIRTCHNL_EVENT_RESET_IMPENDING:
232 PMD_DRV_LOG(DEBUG, "VIRTCHNL_EVENT_RESET_IMPENDING event");
233 start_vsi_reset_thread(dcf_hw, false, 0);
235 case VIRTCHNL_EVENT_LINK_CHANGE:
236 PMD_DRV_LOG(DEBUG, "VIRTCHNL_EVENT_LINK_CHANGE event");
237 dcf_hw->link_up = pf_msg->event_data.link_event.link_status;
238 if (dcf_hw->vf_res->vf_cap_flags &
239 VIRTCHNL_VF_CAP_ADV_LINK_SPEED) {
241 pf_msg->event_data.link_event_adv.link_speed;
243 enum virtchnl_link_speed speed;
244 speed = pf_msg->event_data.link_event.link_speed;
245 dcf_hw->link_speed = ice_dcf_convert_link_speed(speed);
247 ice_dcf_link_update(dcf_hw->eth_dev, 0);
248 rte_eth_dev_callback_process(dcf_hw->eth_dev,
249 RTE_ETH_EVENT_INTR_LSC, NULL);
251 case VIRTCHNL_EVENT_PF_DRIVER_CLOSE:
252 PMD_DRV_LOG(DEBUG, "VIRTCHNL_EVENT_PF_DRIVER_CLOSE event");
254 case VIRTCHNL_EVENT_DCF_VSI_MAP_UPDATE:
255 PMD_DRV_LOG(DEBUG, "VIRTCHNL_EVENT_DCF_VSI_MAP_UPDATE event : VF%u with VSI num %u",
256 pf_msg->event_data.vf_vsi_map.vf_id,
257 pf_msg->event_data.vf_vsi_map.vsi_id);
258 start_vsi_reset_thread(dcf_hw, true,
259 pf_msg->event_data.vf_vsi_map.vf_id);
262 PMD_DRV_LOG(ERR, "Unknown event received %u", pf_msg->event);
268 ice_dcf_query_port_ets(struct ice_hw *parent_hw, struct ice_dcf_hw *real_hw)
272 real_hw->ets_config = (struct ice_aqc_port_ets_elem *)
273 ice_malloc(real_hw, sizeof(*real_hw->ets_config));
274 if (!real_hw->ets_config)
275 return ICE_ERR_NO_MEMORY;
277 ret = ice_aq_query_port_ets(parent_hw->port_info,
278 real_hw->ets_config, sizeof(*real_hw->ets_config),
281 PMD_DRV_LOG(ERR, "DCF Query Port ETS failed");
282 rte_free(real_hw->ets_config);
283 real_hw->ets_config = NULL;
291 ice_dcf_init_parent_hw(struct ice_hw *hw)
293 struct ice_aqc_get_phy_caps_data *pcaps;
294 enum ice_status status;
296 status = ice_aq_get_fw_ver(hw, NULL);
300 status = ice_get_caps(hw);
304 hw->port_info = (struct ice_port_info *)
305 ice_malloc(hw, sizeof(*hw->port_info));
307 return ICE_ERR_NO_MEMORY;
309 /* set the back pointer to HW */
310 hw->port_info->hw = hw;
312 /* Initialize port_info struct with switch configuration data */
313 status = ice_get_initial_sw_cfg(hw);
315 goto err_unroll_alloc;
317 pcaps = (struct ice_aqc_get_phy_caps_data *)
318 ice_malloc(hw, sizeof(*pcaps));
320 status = ICE_ERR_NO_MEMORY;
321 goto err_unroll_alloc;
324 /* Initialize port_info struct with PHY capabilities */
325 status = ice_aq_get_phy_caps(hw->port_info, false,
326 ICE_AQC_REPORT_TOPO_CAP_MEDIA, pcaps, NULL);
329 goto err_unroll_alloc;
331 /* Initialize port_info struct with link information */
332 status = ice_aq_get_link_info(hw->port_info, false, NULL, NULL);
334 goto err_unroll_alloc;
336 status = ice_init_fltr_mgmt_struct(hw);
338 goto err_unroll_alloc;
340 status = ice_init_hw_tbls(hw);
342 goto err_unroll_fltr_mgmt_struct;
345 "firmware %d.%d.%d api %d.%d.%d build 0x%08x",
346 hw->fw_maj_ver, hw->fw_min_ver, hw->fw_patch,
347 hw->api_maj_ver, hw->api_min_ver, hw->api_patch,
352 err_unroll_fltr_mgmt_struct:
353 ice_cleanup_fltr_mgmt_struct(hw);
355 ice_free(hw, hw->port_info);
356 hw->port_info = NULL;
361 static void ice_dcf_uninit_parent_hw(struct ice_hw *hw)
363 ice_cleanup_fltr_mgmt_struct(hw);
366 ice_free_hw_tbls(hw);
368 ice_free(hw, hw->port_info);
369 hw->port_info = NULL;
371 ice_clear_all_vsi_ctx(hw);
375 ice_dcf_request_pkg_name(struct ice_hw *hw, char *pkg_name)
377 struct ice_dcf_adapter *dcf_adapter =
378 container_of(hw, struct ice_dcf_adapter, parent.hw);
379 struct virtchnl_pkg_info pkg_info;
380 struct dcf_virtchnl_cmd vc_cmd;
383 vc_cmd.v_op = VIRTCHNL_OP_DCF_GET_PKG_INFO;
384 vc_cmd.req_msglen = 0;
385 vc_cmd.req_msg = NULL;
386 vc_cmd.rsp_buflen = sizeof(pkg_info);
387 vc_cmd.rsp_msgbuf = (uint8_t *)&pkg_info;
389 if (ice_dcf_execute_virtchnl_cmd(&dcf_adapter->real_hw, &vc_cmd))
390 goto pkg_file_direct;
392 rte_memcpy(&dsn, pkg_info.dsn, sizeof(dsn));
394 snprintf(pkg_name, ICE_MAX_PKG_FILENAME_SIZE,
395 ICE_PKG_FILE_SEARCH_PATH_UPDATES "ice-%016llx.pkg",
396 (unsigned long long)dsn);
397 if (!ice_access(pkg_name, 0))
400 snprintf(pkg_name, ICE_MAX_PKG_FILENAME_SIZE,
401 ICE_PKG_FILE_SEARCH_PATH_DEFAULT "ice-%016llx.pkg",
402 (unsigned long long)dsn);
403 if (!ice_access(pkg_name, 0))
408 ICE_MAX_PKG_FILENAME_SIZE, "%s", ICE_PKG_FILE_UPDATES);
409 if (!ice_access(pkg_name, 0))
413 ICE_MAX_PKG_FILENAME_SIZE, "%s", ICE_PKG_FILE_DEFAULT);
414 if (!ice_access(pkg_name, 0))
421 ice_dcf_load_pkg(struct ice_hw *hw)
423 char pkg_name[ICE_MAX_PKG_FILENAME_SIZE];
430 if (ice_dcf_request_pkg_name(hw, pkg_name)) {
431 PMD_INIT_LOG(ERR, "Failed to locate the package file");
435 PMD_INIT_LOG(DEBUG, "DDP package name: %s", pkg_name);
437 err = stat(pkg_name, &st);
439 PMD_INIT_LOG(ERR, "Failed to get file status");
443 buf_len = st.st_size;
444 pkg_buf = rte_malloc(NULL, buf_len, 0);
446 PMD_INIT_LOG(ERR, "failed to allocate buffer of size %u for package",
451 fp = fopen(pkg_name, "rb");
453 PMD_INIT_LOG(ERR, "failed to open file: %s", pkg_name);
458 err = fread(pkg_buf, buf_len, 1, fp);
461 PMD_INIT_LOG(ERR, "failed to read package data");
466 err = ice_copy_and_init_pkg(hw, pkg_buf, buf_len);
468 PMD_INIT_LOG(ERR, "ice_copy_and_init_hw failed: %d", err);
476 ice_dcf_init_parent_adapter(struct rte_eth_dev *eth_dev)
478 struct ice_dcf_adapter *adapter = eth_dev->data->dev_private;
479 struct ice_adapter *parent_adapter = &adapter->parent;
480 struct ice_hw *parent_hw = &parent_adapter->hw;
481 struct ice_dcf_hw *hw = &adapter->real_hw;
482 const struct rte_ether_addr *mac;
485 parent_adapter->pf.adapter = parent_adapter;
486 parent_adapter->pf.dev_data = eth_dev->data;
487 /* create a dummy main_vsi */
488 parent_adapter->pf.main_vsi =
489 rte_zmalloc(NULL, sizeof(struct ice_vsi), 0);
490 if (!parent_adapter->pf.main_vsi)
492 parent_adapter->pf.main_vsi->adapter = parent_adapter;
493 parent_adapter->pf.adapter_stopped = 1;
495 parent_hw->back = parent_adapter;
496 parent_hw->mac_type = ICE_MAC_GENERIC;
497 parent_hw->vendor_id = ICE_INTEL_VENDOR_ID;
499 ice_init_lock(&parent_hw->adminq.sq_lock);
500 ice_init_lock(&parent_hw->adminq.rq_lock);
501 parent_hw->aq_send_cmd_fn = ice_dcf_send_aq_cmd;
502 parent_hw->aq_send_cmd_param = &adapter->real_hw;
503 parent_hw->dcf_enabled = true;
505 err = ice_dcf_init_parent_hw(parent_hw);
507 PMD_INIT_LOG(ERR, "failed to init the DCF parent hardware with error %d",
512 if (hw->vf_res->vf_cap_flags & VIRTCHNL_VF_OFFLOAD_QOS) {
513 err = ice_dcf_query_port_ets(parent_hw, hw);
515 PMD_INIT_LOG(ERR, "failed to query port ets with error %d",
521 err = ice_dcf_load_pkg(parent_hw);
523 PMD_INIT_LOG(ERR, "failed to load package with error %d",
527 parent_adapter->active_pkg_type = ice_load_pkg_type(parent_hw);
529 parent_adapter->pf.main_vsi->idx = hw->num_vfs;
530 ice_dcf_update_pf_vsi_map(parent_hw,
531 parent_adapter->pf.main_vsi->idx, hw->pf_vsi_id);
533 ice_dcf_update_vf_vsi_map(parent_hw, hw->num_vfs, hw->vf_vsi_map);
535 err = ice_flow_init(parent_adapter);
537 PMD_INIT_LOG(ERR, "Failed to initialize flow");
541 mac = (const struct rte_ether_addr *)hw->avf.mac.addr;
542 if (rte_is_valid_assigned_ether_addr(mac))
543 rte_ether_addr_copy(mac, &parent_adapter->pf.dev_addr);
545 rte_eth_random_addr(parent_adapter->pf.dev_addr.addr_bytes);
547 eth_dev->data->mac_addrs = &parent_adapter->pf.dev_addr;
552 ice_dcf_uninit_parent_hw(parent_hw);
557 ice_dcf_uninit_parent_adapter(struct rte_eth_dev *eth_dev)
559 struct ice_dcf_adapter *adapter = eth_dev->data->dev_private;
560 struct ice_adapter *parent_adapter = &adapter->parent;
561 struct ice_hw *parent_hw = &parent_adapter->hw;
563 eth_dev->data->mac_addrs = NULL;
565 ice_flow_uninit(parent_adapter);
566 ice_dcf_uninit_parent_hw(parent_hw);