mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/
synced 2026-04-18 06:33:43 -04:00
ice: Start hardware initialization
This patch implements multiple pieces of the initialization flow as follows: 1) A reset is issued to ensure a clean device state, followed by initialization of admin queue interface. 2) Once the admin queue interface is up, clear the PF config and transition the device to non-PXE mode. 3) Get the NVM configuration stored in the device's non-volatile memory (NVM) using ice_init_nvm. CC: Shannon Nelson <shannon.nelson@oracle.com> Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com> Acked-by: Shannon Nelson <shannon.nelson@oracle.com> Tested-by: Tony Brelinski <tonyx.brelinski@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
committed by
Jeff Kirsher
parent
7ec59eeac8
commit
f31e4b6fe2
@@ -36,6 +36,67 @@ struct ice_aqc_q_shutdown {
|
||||
u8 reserved[12];
|
||||
};
|
||||
|
||||
/* Request resource ownership (direct 0x0008)
|
||||
* Release resource ownership (direct 0x0009)
|
||||
*/
|
||||
struct ice_aqc_req_res {
|
||||
__le16 res_id;
|
||||
#define ICE_AQC_RES_ID_NVM 1
|
||||
#define ICE_AQC_RES_ID_SDP 2
|
||||
#define ICE_AQC_RES_ID_CHNG_LOCK 3
|
||||
#define ICE_AQC_RES_ID_GLBL_LOCK 4
|
||||
__le16 access_type;
|
||||
#define ICE_AQC_RES_ACCESS_READ 1
|
||||
#define ICE_AQC_RES_ACCESS_WRITE 2
|
||||
|
||||
/* Upon successful completion, FW writes this value and driver is
|
||||
* expected to release resource before timeout. This value is provided
|
||||
* in milliseconds.
|
||||
*/
|
||||
__le32 timeout;
|
||||
#define ICE_AQ_RES_NVM_READ_DFLT_TIMEOUT_MS 3000
|
||||
#define ICE_AQ_RES_NVM_WRITE_DFLT_TIMEOUT_MS 180000
|
||||
#define ICE_AQ_RES_CHNG_LOCK_DFLT_TIMEOUT_MS 1000
|
||||
#define ICE_AQ_RES_GLBL_LOCK_DFLT_TIMEOUT_MS 3000
|
||||
/* For SDP: pin id of the SDP */
|
||||
__le32 res_number;
|
||||
/* Status is only used for ICE_AQC_RES_ID_GLBL_LOCK */
|
||||
__le16 status;
|
||||
#define ICE_AQ_RES_GLBL_SUCCESS 0
|
||||
#define ICE_AQ_RES_GLBL_IN_PROG 1
|
||||
#define ICE_AQ_RES_GLBL_DONE 2
|
||||
u8 reserved[2];
|
||||
};
|
||||
|
||||
/* Clear PXE Command and response (direct 0x0110) */
|
||||
struct ice_aqc_clear_pxe {
|
||||
u8 rx_cnt;
|
||||
#define ICE_AQC_CLEAR_PXE_RX_CNT 0x2
|
||||
u8 reserved[15];
|
||||
};
|
||||
|
||||
/* NVM Read command (indirect 0x0701)
|
||||
* NVM Erase commands (direct 0x0702)
|
||||
* NVM Update commands (indirect 0x0703)
|
||||
*/
|
||||
struct ice_aqc_nvm {
|
||||
u8 cmd_flags;
|
||||
#define ICE_AQC_NVM_LAST_CMD BIT(0)
|
||||
#define ICE_AQC_NVM_PCIR_REQ BIT(0) /* Used by NVM Update reply */
|
||||
#define ICE_AQC_NVM_PRESERVATION_S 1
|
||||
#define ICE_AQC_NVM_PRESERVATION_M (3 << CSR_AQ_NVM_PRESERVATION_S)
|
||||
#define ICE_AQC_NVM_NO_PRESERVATION (0 << CSR_AQ_NVM_PRESERVATION_S)
|
||||
#define ICE_AQC_NVM_PRESERVE_ALL BIT(1)
|
||||
#define ICE_AQC_NVM_PRESERVE_SELECTED (3 << CSR_AQ_NVM_PRESERVATION_S)
|
||||
#define ICE_AQC_NVM_FLASH_ONLY BIT(7)
|
||||
u8 module_typeid;
|
||||
__le16 length;
|
||||
#define ICE_AQC_NVM_ERASE_LEN 0xFFFF
|
||||
__le32 offset;
|
||||
__le32 addr_high;
|
||||
__le32 addr_low;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct ice_aq_desc - Admin Queue (AQ) descriptor
|
||||
* @flags: ICE_AQ_FLAG_* flags
|
||||
@@ -65,6 +126,9 @@ struct ice_aq_desc {
|
||||
struct ice_aqc_generic generic;
|
||||
struct ice_aqc_get_ver get_ver;
|
||||
struct ice_aqc_q_shutdown q_shutdown;
|
||||
struct ice_aqc_req_res res_owner;
|
||||
struct ice_aqc_clear_pxe clear_pxe;
|
||||
struct ice_aqc_nvm nvm;
|
||||
} params;
|
||||
};
|
||||
|
||||
@@ -82,6 +146,8 @@ struct ice_aq_desc {
|
||||
/* error codes */
|
||||
enum ice_aq_err {
|
||||
ICE_AQ_RC_OK = 0, /* success */
|
||||
ICE_AQ_RC_EBUSY = 12, /* Device or resource busy */
|
||||
ICE_AQ_RC_EEXIST = 13, /* object already exists */
|
||||
};
|
||||
|
||||
/* Admin Queue command opcodes */
|
||||
@@ -89,6 +155,19 @@ enum ice_adminq_opc {
|
||||
/* AQ commands */
|
||||
ice_aqc_opc_get_ver = 0x0001,
|
||||
ice_aqc_opc_q_shutdown = 0x0003,
|
||||
|
||||
/* resource ownership */
|
||||
ice_aqc_opc_req_res = 0x0008,
|
||||
ice_aqc_opc_release_res = 0x0009,
|
||||
|
||||
/* PXE */
|
||||
ice_aqc_opc_clear_pxe_mode = 0x0110,
|
||||
|
||||
ice_aqc_opc_clear_pf_cfg = 0x02A4,
|
||||
|
||||
/* NVM commands */
|
||||
ice_aqc_opc_nvm_read = 0x0701,
|
||||
|
||||
};
|
||||
|
||||
#endif /* _ICE_ADMINQ_CMD_H_ */
|
||||
|
||||
Reference in New Issue
Block a user