mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 16:45:13 +07:00
df0f847915
This patch continues the code move out of ice_main.c The following top level functions (and related dependency functions) were moved to ice_lib.c: ice_vsi_setup_vector_base ice_vsi_alloc_q_vectors ice_vsi_get_qs The following functions were made static again: ice_vsi_free_arrays ice_vsi_clear_rings Also, in this patch, the netdev and NAPI registration logic was de-coupled from the VSI creation logic (ice_vsi_setup) as for SR-IOV, while we want to create VF VSIs using ice_vsi_setup, we don't want to create netdevs. Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
89 lines
2.2 KiB
C
89 lines
2.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2018, Intel Corporation. */
|
|
|
|
#ifndef _ICE_LIB_H_
|
|
#define _ICE_LIB_H_
|
|
|
|
#include "ice.h"
|
|
|
|
int ice_vsi_setup_vector_base(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_alloc_q_vectors(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_get_qs(struct ice_vsi *vsi);
|
|
|
|
void ice_vsi_map_rings_to_vectors(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_alloc_rings(struct ice_vsi *vsi);
|
|
|
|
void ice_vsi_set_rss_params(struct ice_vsi *vsi);
|
|
|
|
void ice_vsi_set_num_qs(struct ice_vsi *vsi);
|
|
|
|
int ice_get_free_slot(void *array, int size, int curr);
|
|
|
|
int ice_vsi_init(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_alloc_arrays(struct ice_vsi *vsi, bool alloc_qvectors);
|
|
|
|
int ice_add_mac_to_list(struct ice_vsi *vsi, struct list_head *add_list,
|
|
const u8 *macaddr);
|
|
|
|
void ice_free_fltr_list(struct device *dev, struct list_head *h);
|
|
|
|
void ice_update_eth_stats(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_cfg_rxqs(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_cfg_txqs(struct ice_vsi *vsi);
|
|
|
|
void ice_vsi_cfg_msix(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_add_vlan(struct ice_vsi *vsi, u16 vid);
|
|
|
|
int ice_vsi_kill_vlan(struct ice_vsi *vsi, u16 vid);
|
|
|
|
int ice_vsi_manage_vlan_insertion(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_manage_vlan_stripping(struct ice_vsi *vsi, bool ena);
|
|
|
|
int ice_vsi_start_rx_rings(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_stop_rx_rings(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_stop_tx_rings(struct ice_vsi *vsi);
|
|
|
|
int ice_cfg_vlan_pruning(struct ice_vsi *vsi, bool ena);
|
|
|
|
void ice_vsi_delete(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_clear(struct ice_vsi *vsi);
|
|
|
|
int ice_vsi_release(struct ice_vsi *vsi);
|
|
|
|
void ice_vsi_close(struct ice_vsi *vsi);
|
|
|
|
int ice_free_res(struct ice_res_tracker *res, u16 index, u16 id);
|
|
|
|
int
|
|
ice_get_res(struct ice_pf *pf, struct ice_res_tracker *res, u16 needed, u16 id);
|
|
|
|
int ice_vsi_rebuild(struct ice_vsi *vsi);
|
|
|
|
bool ice_is_reset_recovery_pending(unsigned long *state);
|
|
|
|
void ice_vsi_free_q_vectors(struct ice_vsi *vsi);
|
|
|
|
void ice_vsi_put_qs(struct ice_vsi *vsi);
|
|
|
|
void ice_vsi_dis_irq(struct ice_vsi *vsi);
|
|
|
|
void ice_vsi_free_irq(struct ice_vsi *vsi);
|
|
|
|
void ice_vsi_free_rx_rings(struct ice_vsi *vsi);
|
|
|
|
void ice_vsi_free_tx_rings(struct ice_vsi *vsi);
|
|
|
|
irqreturn_t ice_msix_clean_rings(int __always_unused irq, void *data);
|
|
#endif /* !_ICE_LIB_H_ */
|