e1000_nvm.h revision 330897
1/******************************************************************************
2  SPDX-License-Identifier: BSD-3-Clause
3
4  Copyright (c) 2001-2015, Intel Corporation
5  All rights reserved.
6
7  Redistribution and use in source and binary forms, with or without
8  modification, are permitted provided that the following conditions are met:
9
10   1. Redistributions of source code must retain the above copyright notice,
11      this list of conditions and the following disclaimer.
12
13   2. Redistributions in binary form must reproduce the above copyright
14      notice, this list of conditions and the following disclaimer in the
15      documentation and/or other materials provided with the distribution.
16
17   3. Neither the name of the Intel Corporation nor the names of its
18      contributors may be used to endorse or promote products derived from
19      this software without specific prior written permission.
20
21  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
25  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  POSSIBILITY OF SUCH DAMAGE.
32
33******************************************************************************/
34/*$FreeBSD: stable/11/sys/dev/e1000/e1000_nvm.h 330897 2018-03-14 03:19:51Z eadler $*/
35
36#ifndef _E1000_NVM_H_
37#define _E1000_NVM_H_
38
39struct e1000_pba {
40	u16 word[2];
41	u16 *pba_block;
42};
43
44
45void e1000_init_nvm_ops_generic(struct e1000_hw *hw);
46s32  e1000_null_read_nvm(struct e1000_hw *hw, u16 a, u16 b, u16 *c);
47void e1000_null_nvm_generic(struct e1000_hw *hw);
48s32  e1000_null_led_default(struct e1000_hw *hw, u16 *data);
49s32  e1000_null_write_nvm(struct e1000_hw *hw, u16 a, u16 b, u16 *c);
50s32  e1000_acquire_nvm_generic(struct e1000_hw *hw);
51
52s32  e1000_poll_eerd_eewr_done(struct e1000_hw *hw, int ee_reg);
53s32  e1000_read_mac_addr_generic(struct e1000_hw *hw);
54s32  e1000_read_pba_string_generic(struct e1000_hw *hw, u8 *pba_num,
55				   u32 pba_num_size);
56s32  e1000_read_pba_length_generic(struct e1000_hw *hw, u32 *pba_num_size);
57s32 e1000_read_pba_raw(struct e1000_hw *hw, u16 *eeprom_buf,
58		       u32 eeprom_buf_size, u16 max_pba_block_size,
59		       struct e1000_pba *pba);
60s32 e1000_write_pba_raw(struct e1000_hw *hw, u16 *eeprom_buf,
61			u32 eeprom_buf_size, struct e1000_pba *pba);
62s32 e1000_get_pba_block_size(struct e1000_hw *hw, u16 *eeprom_buf,
63			     u32 eeprom_buf_size, u16 *pba_block_size);
64s32  e1000_read_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data);
65s32  e1000_read_nvm_microwire(struct e1000_hw *hw, u16 offset,
66			      u16 words, u16 *data);
67s32  e1000_read_nvm_eerd(struct e1000_hw *hw, u16 offset, u16 words,
68			 u16 *data);
69s32  e1000_valid_led_default_generic(struct e1000_hw *hw, u16 *data);
70s32  e1000_validate_nvm_checksum_generic(struct e1000_hw *hw);
71s32  e1000_write_nvm_microwire(struct e1000_hw *hw, u16 offset,
72			       u16 words, u16 *data);
73s32  e1000_write_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words,
74			 u16 *data);
75s32  e1000_update_nvm_checksum_generic(struct e1000_hw *hw);
76void e1000_stop_nvm(struct e1000_hw *hw);
77void e1000_release_nvm_generic(struct e1000_hw *hw);
78
79#define E1000_STM_OPCODE	0xDB00
80
81#endif
82