18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci/* Copyright(c) 1999 - 2018 Intel Corporation. */ 38c2ecf20Sopenharmony_ci 48c2ecf20Sopenharmony_ci#ifndef _E1000E_NVM_H_ 58c2ecf20Sopenharmony_ci#define _E1000E_NVM_H_ 68c2ecf20Sopenharmony_ci 78c2ecf20Sopenharmony_cis32 e1000e_acquire_nvm(struct e1000_hw *hw); 88c2ecf20Sopenharmony_ci 98c2ecf20Sopenharmony_cis32 e1000e_poll_eerd_eewr_done(struct e1000_hw *hw, int ee_reg); 108c2ecf20Sopenharmony_cis32 e1000_read_mac_addr_generic(struct e1000_hw *hw); 118c2ecf20Sopenharmony_cis32 e1000_read_pba_string_generic(struct e1000_hw *hw, u8 *pba_num, 128c2ecf20Sopenharmony_ci u32 pba_num_size); 138c2ecf20Sopenharmony_cis32 e1000e_read_nvm_eerd(struct e1000_hw *hw, u16 offset, u16 words, u16 *data); 148c2ecf20Sopenharmony_cis32 e1000e_valid_led_default(struct e1000_hw *hw, u16 *data); 158c2ecf20Sopenharmony_cis32 e1000e_validate_nvm_checksum_generic(struct e1000_hw *hw); 168c2ecf20Sopenharmony_cis32 e1000e_write_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data); 178c2ecf20Sopenharmony_cis32 e1000e_update_nvm_checksum_generic(struct e1000_hw *hw); 188c2ecf20Sopenharmony_civoid e1000e_release_nvm(struct e1000_hw *hw); 198c2ecf20Sopenharmony_ci 208c2ecf20Sopenharmony_ci#define E1000_STM_OPCODE 0xDB00 218c2ecf20Sopenharmony_ci 228c2ecf20Sopenharmony_ci#endif 23