mirror of https://github.com/F-Stack/f-stack.git
70 lines
2.2 KiB
C
70 lines
2.2 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2001-2020 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _IGC_NVM_H_
|
|
#define _IGC_NVM_H_
|
|
|
|
struct igc_pba {
|
|
u16 word[2];
|
|
u16 *pba_block;
|
|
};
|
|
|
|
struct igc_fw_version {
|
|
u32 etrack_id;
|
|
u16 eep_major;
|
|
u16 eep_minor;
|
|
u16 eep_build;
|
|
|
|
u8 invm_major;
|
|
u8 invm_minor;
|
|
u8 invm_img_type;
|
|
|
|
bool or_valid;
|
|
u16 or_major;
|
|
u16 or_build;
|
|
u16 or_patch;
|
|
};
|
|
|
|
|
|
void igc_init_nvm_ops_generic(struct igc_hw *hw);
|
|
s32 igc_null_read_nvm(struct igc_hw *hw, u16 a, u16 b, u16 *c);
|
|
void igc_null_nvm_generic(struct igc_hw *hw);
|
|
s32 igc_null_led_default(struct igc_hw *hw, u16 *data);
|
|
s32 igc_null_write_nvm(struct igc_hw *hw, u16 a, u16 b, u16 *c);
|
|
s32 igc_acquire_nvm_generic(struct igc_hw *hw);
|
|
|
|
s32 igc_poll_eerd_eewr_done(struct igc_hw *hw, int ee_reg);
|
|
s32 igc_read_mac_addr_generic(struct igc_hw *hw);
|
|
s32 igc_read_pba_num_generic(struct igc_hw *hw, u32 *pba_num);
|
|
s32 igc_read_pba_string_generic(struct igc_hw *hw, u8 *pba_num,
|
|
u32 pba_num_size);
|
|
s32 igc_read_pba_length_generic(struct igc_hw *hw, u32 *pba_num_size);
|
|
s32 igc_read_pba_raw(struct igc_hw *hw, u16 *eeprom_buf,
|
|
u32 eeprom_buf_size, u16 max_pba_block_size,
|
|
struct igc_pba *pba);
|
|
s32 igc_write_pba_raw(struct igc_hw *hw, u16 *eeprom_buf,
|
|
u32 eeprom_buf_size, struct igc_pba *pba);
|
|
s32 igc_get_pba_block_size(struct igc_hw *hw, u16 *eeprom_buf,
|
|
u32 eeprom_buf_size, u16 *pba_block_size);
|
|
s32 igc_read_nvm_spi(struct igc_hw *hw, u16 offset, u16 words, u16 *data);
|
|
s32 igc_read_nvm_microwire(struct igc_hw *hw, u16 offset,
|
|
u16 words, u16 *data);
|
|
s32 igc_read_nvm_eerd(struct igc_hw *hw, u16 offset, u16 words,
|
|
u16 *data);
|
|
s32 igc_valid_led_default_generic(struct igc_hw *hw, u16 *data);
|
|
s32 igc_validate_nvm_checksum_generic(struct igc_hw *hw);
|
|
s32 igc_write_nvm_microwire(struct igc_hw *hw, u16 offset,
|
|
u16 words, u16 *data);
|
|
s32 igc_write_nvm_spi(struct igc_hw *hw, u16 offset, u16 words,
|
|
u16 *data);
|
|
s32 igc_update_nvm_checksum_generic(struct igc_hw *hw);
|
|
void igc_stop_nvm(struct igc_hw *hw);
|
|
void igc_release_nvm_generic(struct igc_hw *hw);
|
|
void igc_get_fw_version(struct igc_hw *hw,
|
|
struct igc_fw_version *fw_vers);
|
|
|
|
#define IGC_STM_OPCODE 0xDB00
|
|
|
|
#endif
|