mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 09:05:12 +07:00
cdedef59de
This patch configures the VSIs to be able to send and receive packets by doing the following: 1) Initialize flexible parser to extract and include certain fields in the Rx descriptor. 2) Add Tx queues by programming the Tx queue context (implemented in ice_vsi_cfg_txqs). Note that adding the queues also enables (starts) the queues. 3) Add Rx queues by programming Rx queue context (implemented in ice_vsi_cfg_rxqs). Note that this only adds queues but doesn't start them. The rings will be started by calling ice_vsi_start_rx_rings on interface up. 4) Configure interrupts for VSI queues. 5) Implement ice_open and ice_stop. Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com> Tested-by: Tony Brelinski <tonyx.brelinski@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
33 lines
812 B
C
33 lines
812 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2018, Intel Corporation. */
|
|
|
|
#ifndef _ICE_STATUS_H_
|
|
#define _ICE_STATUS_H_
|
|
|
|
/* Error Codes */
|
|
enum ice_status {
|
|
ICE_ERR_PARAM = -1,
|
|
ICE_ERR_NOT_IMPL = -2,
|
|
ICE_ERR_NOT_READY = -3,
|
|
ICE_ERR_BAD_PTR = -5,
|
|
ICE_ERR_INVAL_SIZE = -6,
|
|
ICE_ERR_DEVICE_NOT_SUPPORTED = -8,
|
|
ICE_ERR_RESET_FAILED = -9,
|
|
ICE_ERR_FW_API_VER = -10,
|
|
ICE_ERR_NO_MEMORY = -11,
|
|
ICE_ERR_CFG = -12,
|
|
ICE_ERR_OUT_OF_RANGE = -13,
|
|
ICE_ERR_ALREADY_EXISTS = -14,
|
|
ICE_ERR_DOES_NOT_EXIST = -15,
|
|
ICE_ERR_MAX_LIMIT = -17,
|
|
ICE_ERR_BUF_TOO_SHORT = -52,
|
|
ICE_ERR_NVM_BLANK_MODE = -53,
|
|
ICE_ERR_AQ_ERROR = -100,
|
|
ICE_ERR_AQ_TIMEOUT = -101,
|
|
ICE_ERR_AQ_FULL = -102,
|
|
ICE_ERR_AQ_NO_WORK = -103,
|
|
ICE_ERR_AQ_EMPTY = -104,
|
|
};
|
|
|
|
#endif /* _ICE_STATUS_H_ */
|