xref: /illumos-gate/usr/src/uts/common/io/igc/core/igc_nvm.h (revision 533affcb)
1 /*-
2  * Copyright 2021 Intel Corp
3  * Copyright 2021 Rubicon Communications, LLC (Netgate)
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef _IGC_NVM_H_
8 #define _IGC_NVM_H_
9 
10 void igc_init_nvm_ops_generic(struct igc_hw *hw);
11 s32  igc_null_read_nvm(struct igc_hw *hw, u16 a, u16 b, u16 *c);
12 void igc_null_nvm_generic(struct igc_hw *hw);
13 s32  igc_null_led_default(struct igc_hw *hw, u16 *data);
14 s32  igc_null_write_nvm(struct igc_hw *hw, u16 a, u16 b, u16 *c);
15 s32  igc_acquire_nvm_generic(struct igc_hw *hw);
16 
17 s32  igc_poll_eerd_eewr_done(struct igc_hw *hw, int ee_reg);
18 s32  igc_read_mac_addr_generic(struct igc_hw *hw);
19 s32  igc_read_pba_string_generic(struct igc_hw *hw, u8 *pba_num,
20 				   u32 pba_num_size);
21 s32  igc_read_nvm_eerd(struct igc_hw *hw, u16 offset, u16 words,
22 			 u16 *data);
23 s32  igc_valid_led_default_generic(struct igc_hw *hw, u16 *data);
24 s32  igc_validate_nvm_checksum_generic(struct igc_hw *hw);
25 s32  igc_write_nvm_spi(struct igc_hw *hw, u16 offset, u16 words,
26 			 u16 *data);
27 s32  igc_update_nvm_checksum_generic(struct igc_hw *hw);
28 void igc_release_nvm_generic(struct igc_hw *hw);
29 
30 #endif
31