ixgbe_phy.h revision 1.13 1 1.13 msaitoh /* $NetBSD: ixgbe_phy.h,v 1.13 2021/12/24 05:02:11 msaitoh Exp $ */
2 1.9 msaitoh
3 1.1 dyoung /******************************************************************************
4 1.10 msaitoh SPDX-License-Identifier: BSD-3-Clause
5 1.1 dyoung
6 1.13 msaitoh Copyright (c) 2001-2020, Intel Corporation
7 1.1 dyoung All rights reserved.
8 1.9 msaitoh
9 1.9 msaitoh Redistribution and use in source and binary forms, with or without
10 1.1 dyoung modification, are permitted provided that the following conditions are met:
11 1.9 msaitoh
12 1.9 msaitoh 1. Redistributions of source code must retain the above copyright notice,
13 1.1 dyoung this list of conditions and the following disclaimer.
14 1.9 msaitoh
15 1.9 msaitoh 2. Redistributions in binary form must reproduce the above copyright
16 1.9 msaitoh notice, this list of conditions and the following disclaimer in the
17 1.1 dyoung documentation and/or other materials provided with the distribution.
18 1.9 msaitoh
19 1.9 msaitoh 3. Neither the name of the Intel Corporation nor the names of its
20 1.9 msaitoh contributors may be used to endorse or promote products derived from
21 1.1 dyoung this software without specific prior written permission.
22 1.9 msaitoh
23 1.1 dyoung THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
24 1.9 msaitoh AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.9 msaitoh IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.9 msaitoh ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
27 1.9 msaitoh LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 1.9 msaitoh CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 1.9 msaitoh SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30 1.9 msaitoh INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31 1.9 msaitoh CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32 1.1 dyoung ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33 1.1 dyoung POSSIBILITY OF SUCH DAMAGE.
34 1.1 dyoung
35 1.1 dyoung ******************************************************************************/
36 1.11 msaitoh /*$FreeBSD: head/sys/dev/ixgbe/ixgbe_phy.h 326022 2017-11-20 19:36:21Z pfg $*/
37 1.1 dyoung
38 1.1 dyoung #ifndef _IXGBE_PHY_H_
39 1.1 dyoung #define _IXGBE_PHY_H_
40 1.1 dyoung
41 1.1 dyoung #include "ixgbe_type.h"
42 1.4 msaitoh #define IXGBE_I2C_EEPROM_DEV_ADDR 0xA0
43 1.4 msaitoh #define IXGBE_I2C_EEPROM_DEV_ADDR2 0xA2
44 1.4 msaitoh #define IXGBE_I2C_EEPROM_BANK_LEN 0xFF
45 1.1 dyoung
46 1.1 dyoung /* EEPROM byte offsets */
47 1.2 msaitoh #define IXGBE_SFF_IDENTIFIER 0x0
48 1.2 msaitoh #define IXGBE_SFF_IDENTIFIER_SFP 0x3
49 1.2 msaitoh #define IXGBE_SFF_VENDOR_OUI_BYTE0 0x25
50 1.2 msaitoh #define IXGBE_SFF_VENDOR_OUI_BYTE1 0x26
51 1.2 msaitoh #define IXGBE_SFF_VENDOR_OUI_BYTE2 0x27
52 1.2 msaitoh #define IXGBE_SFF_1GBE_COMP_CODES 0x6
53 1.2 msaitoh #define IXGBE_SFF_10GBE_COMP_CODES 0x3
54 1.2 msaitoh #define IXGBE_SFF_CABLE_TECHNOLOGY 0x8
55 1.2 msaitoh #define IXGBE_SFF_CABLE_SPEC_COMP 0x3C
56 1.4 msaitoh #define IXGBE_SFF_SFF_8472_SWAP 0x5C
57 1.4 msaitoh #define IXGBE_SFF_SFF_8472_COMP 0x5E
58 1.4 msaitoh #define IXGBE_SFF_SFF_8472_OSCB 0x6E
59 1.4 msaitoh #define IXGBE_SFF_SFF_8472_ESCB 0x76
60 1.6 msaitoh #define IXGBE_SFF_IDENTIFIER_QSFP_PLUS 0xD
61 1.6 msaitoh #define IXGBE_SFF_QSFP_VENDOR_OUI_BYTE0 0xA5
62 1.6 msaitoh #define IXGBE_SFF_QSFP_VENDOR_OUI_BYTE1 0xA6
63 1.6 msaitoh #define IXGBE_SFF_QSFP_VENDOR_OUI_BYTE2 0xA7
64 1.6 msaitoh #define IXGBE_SFF_QSFP_CONNECTOR 0x82
65 1.6 msaitoh #define IXGBE_SFF_QSFP_10GBE_COMP 0x83
66 1.6 msaitoh #define IXGBE_SFF_QSFP_1GBE_COMP 0x86
67 1.6 msaitoh #define IXGBE_SFF_QSFP_CABLE_LENGTH 0x92
68 1.6 msaitoh #define IXGBE_SFF_QSFP_DEVICE_TECH 0x93
69 1.1 dyoung
70 1.1 dyoung /* Bitmasks */
71 1.2 msaitoh #define IXGBE_SFF_DA_PASSIVE_CABLE 0x4
72 1.2 msaitoh #define IXGBE_SFF_DA_ACTIVE_CABLE 0x8
73 1.2 msaitoh #define IXGBE_SFF_DA_SPEC_ACTIVE_LIMITING 0x4
74 1.2 msaitoh #define IXGBE_SFF_1GBASESX_CAPABLE 0x1
75 1.2 msaitoh #define IXGBE_SFF_1GBASELX_CAPABLE 0x2
76 1.2 msaitoh #define IXGBE_SFF_1GBASET_CAPABLE 0x8
77 1.2 msaitoh #define IXGBE_SFF_10GBASESR_CAPABLE 0x10
78 1.2 msaitoh #define IXGBE_SFF_10GBASELR_CAPABLE 0x20
79 1.4 msaitoh #define IXGBE_SFF_SOFT_RS_SELECT_MASK 0x8
80 1.4 msaitoh #define IXGBE_SFF_SOFT_RS_SELECT_10G 0x8
81 1.4 msaitoh #define IXGBE_SFF_SOFT_RS_SELECT_1G 0x0
82 1.6 msaitoh #define IXGBE_SFF_ADDRESSING_MODE 0x4
83 1.6 msaitoh #define IXGBE_SFF_QSFP_DA_ACTIVE_CABLE 0x1
84 1.6 msaitoh #define IXGBE_SFF_QSFP_DA_PASSIVE_CABLE 0x8
85 1.6 msaitoh #define IXGBE_SFF_QSFP_CONNECTOR_NOT_SEPARABLE 0x23
86 1.6 msaitoh #define IXGBE_SFF_QSFP_TRANSMITER_850NM_VCSEL 0x0
87 1.2 msaitoh #define IXGBE_I2C_EEPROM_READ_MASK 0x100
88 1.2 msaitoh #define IXGBE_I2C_EEPROM_STATUS_MASK 0x3
89 1.2 msaitoh #define IXGBE_I2C_EEPROM_STATUS_NO_OPERATION 0x0
90 1.2 msaitoh #define IXGBE_I2C_EEPROM_STATUS_PASS 0x1
91 1.2 msaitoh #define IXGBE_I2C_EEPROM_STATUS_FAIL 0x2
92 1.2 msaitoh #define IXGBE_I2C_EEPROM_STATUS_IN_PROGRESS 0x3
93 1.1 dyoung
94 1.6 msaitoh #define IXGBE_CS4227 0xBE /* CS4227 address */
95 1.7 msaitoh #define IXGBE_CS4227_GLOBAL_ID_LSB 0
96 1.9 msaitoh #define IXGBE_CS4227_GLOBAL_ID_MSB 1
97 1.7 msaitoh #define IXGBE_CS4227_SCRATCH 2
98 1.7 msaitoh #define IXGBE_CS4227_GLOBAL_ID_VALUE 0x03E5
99 1.9 msaitoh #define IXGBE_CS4227_EFUSE_PDF_SKU 0x19F
100 1.9 msaitoh #define IXGBE_CS4223_SKU_ID 0x0010 /* Quad port */
101 1.9 msaitoh #define IXGBE_CS4227_SKU_ID 0x0014 /* Dual port */
102 1.8 msaitoh #define IXGBE_CS4227_RESET_PENDING 0x1357
103 1.8 msaitoh #define IXGBE_CS4227_RESET_COMPLETE 0x5AA5
104 1.8 msaitoh #define IXGBE_CS4227_RETRIES 15
105 1.8 msaitoh #define IXGBE_CS4227_EFUSE_STATUS 0x0181
106 1.7 msaitoh #define IXGBE_CS4227_LINE_SPARE22_MSB 0x12AD /* Reg to program speed */
107 1.7 msaitoh #define IXGBE_CS4227_LINE_SPARE24_LSB 0x12B0 /* Reg to program EDC */
108 1.7 msaitoh #define IXGBE_CS4227_HOST_SPARE22_MSB 0x1AAD /* Reg to program speed */
109 1.7 msaitoh #define IXGBE_CS4227_HOST_SPARE24_LSB 0x1AB0 /* Reg to program EDC */
110 1.8 msaitoh #define IXGBE_CS4227_EEPROM_STATUS 0x5001
111 1.8 msaitoh #define IXGBE_CS4227_EEPROM_LOAD_OK 0x0001
112 1.8 msaitoh #define IXGBE_CS4227_SPEED_1G 0x8000
113 1.8 msaitoh #define IXGBE_CS4227_SPEED_10G 0
114 1.6 msaitoh #define IXGBE_CS4227_EDC_MODE_CX1 0x0002
115 1.6 msaitoh #define IXGBE_CS4227_EDC_MODE_SR 0x0004
116 1.8 msaitoh #define IXGBE_CS4227_EDC_MODE_DIAG 0x0008
117 1.7 msaitoh #define IXGBE_CS4227_RESET_HOLD 500 /* microseconds */
118 1.8 msaitoh #define IXGBE_CS4227_RESET_DELAY 450 /* milliseconds */
119 1.7 msaitoh #define IXGBE_CS4227_CHECK_DELAY 30 /* milliseconds */
120 1.7 msaitoh #define IXGBE_PE 0xE0 /* Port expander address */
121 1.7 msaitoh #define IXGBE_PE_OUTPUT 1 /* Output register offset */
122 1.7 msaitoh #define IXGBE_PE_CONFIG 3 /* Config register offset */
123 1.7 msaitoh #define IXGBE_PE_BIT1 (1 << 1)
124 1.6 msaitoh
125 1.1 dyoung /* Flow control defines */
126 1.2 msaitoh #define IXGBE_TAF_SYM_PAUSE 0x400
127 1.2 msaitoh #define IXGBE_TAF_ASM_PAUSE 0x800
128 1.1 dyoung
129 1.1 dyoung /* Bit-shift macros */
130 1.2 msaitoh #define IXGBE_SFF_VENDOR_OUI_BYTE0_SHIFT 24
131 1.2 msaitoh #define IXGBE_SFF_VENDOR_OUI_BYTE1_SHIFT 16
132 1.2 msaitoh #define IXGBE_SFF_VENDOR_OUI_BYTE2_SHIFT 8
133 1.1 dyoung
134 1.1 dyoung /* Vendor OUIs: format of OUI is 0x[byte0][byte1][byte2][00] */
135 1.2 msaitoh #define IXGBE_SFF_VENDOR_OUI_TYCO 0x00407600
136 1.2 msaitoh #define IXGBE_SFF_VENDOR_OUI_FTL 0x00906500
137 1.2 msaitoh #define IXGBE_SFF_VENDOR_OUI_AVAGO 0x00176A00
138 1.2 msaitoh #define IXGBE_SFF_VENDOR_OUI_INTEL 0x001B2100
139 1.1 dyoung
140 1.1 dyoung /* I2C SDA and SCL timing parameters for standard mode */
141 1.2 msaitoh #define IXGBE_I2C_T_HD_STA 4
142 1.2 msaitoh #define IXGBE_I2C_T_LOW 5
143 1.2 msaitoh #define IXGBE_I2C_T_HIGH 4
144 1.2 msaitoh #define IXGBE_I2C_T_SU_STA 5
145 1.2 msaitoh #define IXGBE_I2C_T_HD_DATA 5
146 1.2 msaitoh #define IXGBE_I2C_T_SU_DATA 1
147 1.2 msaitoh #define IXGBE_I2C_T_RISE 1
148 1.2 msaitoh #define IXGBE_I2C_T_FALL 1
149 1.2 msaitoh #define IXGBE_I2C_T_SU_STO 4
150 1.2 msaitoh #define IXGBE_I2C_T_BUF 5
151 1.1 dyoung
152 1.6 msaitoh #ifndef IXGBE_SFP_DETECT_RETRIES
153 1.6 msaitoh #define IXGBE_SFP_DETECT_RETRIES 10
154 1.6 msaitoh
155 1.6 msaitoh #endif /* IXGBE_SFP_DETECT_RETRIES */
156 1.2 msaitoh #define IXGBE_TN_LASI_STATUS_REG 0x9005
157 1.2 msaitoh #define IXGBE_TN_LASI_STATUS_TEMP_ALARM 0x0008
158 1.1 dyoung
159 1.4 msaitoh /* SFP+ SFF-8472 Compliance */
160 1.4 msaitoh #define IXGBE_SFF_SFF_8472_UNSUP 0x00
161 1.4 msaitoh
162 1.1 dyoung s32 ixgbe_init_phy_ops_generic(struct ixgbe_hw *hw);
163 1.1 dyoung bool ixgbe_validate_phy_addr(struct ixgbe_hw *hw, u32 phy_addr);
164 1.1 dyoung enum ixgbe_phy_type ixgbe_get_phy_type_from_id(u32 phy_id);
165 1.1 dyoung s32 ixgbe_get_phy_id(struct ixgbe_hw *hw);
166 1.1 dyoung s32 ixgbe_identify_phy_generic(struct ixgbe_hw *hw);
167 1.1 dyoung s32 ixgbe_reset_phy_generic(struct ixgbe_hw *hw);
168 1.5 msaitoh s32 ixgbe_read_phy_reg_mdi(struct ixgbe_hw *hw, u32 reg_addr, u32 device_type,
169 1.5 msaitoh u16 *phy_data);
170 1.5 msaitoh s32 ixgbe_write_phy_reg_mdi(struct ixgbe_hw *hw, u32 reg_addr, u32 device_type,
171 1.5 msaitoh u16 phy_data);
172 1.1 dyoung s32 ixgbe_read_phy_reg_generic(struct ixgbe_hw *hw, u32 reg_addr,
173 1.2 msaitoh u32 device_type, u16 *phy_data);
174 1.1 dyoung s32 ixgbe_write_phy_reg_generic(struct ixgbe_hw *hw, u32 reg_addr,
175 1.2 msaitoh u32 device_type, u16 phy_data);
176 1.1 dyoung s32 ixgbe_setup_phy_link_generic(struct ixgbe_hw *hw);
177 1.1 dyoung s32 ixgbe_setup_phy_link_speed_generic(struct ixgbe_hw *hw,
178 1.2 msaitoh ixgbe_link_speed speed,
179 1.2 msaitoh bool autoneg_wait_to_complete);
180 1.1 dyoung s32 ixgbe_get_copper_link_capabilities_generic(struct ixgbe_hw *hw,
181 1.2 msaitoh ixgbe_link_speed *speed,
182 1.2 msaitoh bool *autoneg);
183 1.6 msaitoh s32 ixgbe_check_reset_blocked(struct ixgbe_hw *hw);
184 1.1 dyoung
185 1.1 dyoung /* PHY specific */
186 1.1 dyoung s32 ixgbe_check_phy_link_tnx(struct ixgbe_hw *hw,
187 1.2 msaitoh ixgbe_link_speed *speed,
188 1.2 msaitoh bool *link_up);
189 1.1 dyoung s32 ixgbe_setup_phy_link_tnx(struct ixgbe_hw *hw);
190 1.1 dyoung s32 ixgbe_get_phy_firmware_version_tnx(struct ixgbe_hw *hw,
191 1.2 msaitoh u16 *firmware_version);
192 1.1 dyoung s32 ixgbe_get_phy_firmware_version_generic(struct ixgbe_hw *hw,
193 1.2 msaitoh u16 *firmware_version);
194 1.1 dyoung
195 1.1 dyoung s32 ixgbe_reset_phy_nl(struct ixgbe_hw *hw);
196 1.6 msaitoh s32 ixgbe_set_copper_phy_power(struct ixgbe_hw *hw, bool on);
197 1.12 msaitoh bool ixgbe_sfp_cage_full(struct ixgbe_hw *hw);
198 1.2 msaitoh s32 ixgbe_identify_module_generic(struct ixgbe_hw *hw);
199 1.1 dyoung s32 ixgbe_identify_sfp_module_generic(struct ixgbe_hw *hw);
200 1.9 msaitoh u64 ixgbe_get_supported_phy_sfp_layer_generic(struct ixgbe_hw *hw);
201 1.6 msaitoh s32 ixgbe_identify_qsfp_module_generic(struct ixgbe_hw *hw);
202 1.1 dyoung s32 ixgbe_get_sfp_init_sequence_offsets(struct ixgbe_hw *hw,
203 1.2 msaitoh u16 *list_offset,
204 1.2 msaitoh u16 *data_offset);
205 1.1 dyoung s32 ixgbe_tn_check_overtemp(struct ixgbe_hw *hw);
206 1.1 dyoung s32 ixgbe_read_i2c_byte_generic(struct ixgbe_hw *hw, u8 byte_offset,
207 1.2 msaitoh u8 dev_addr, u8 *data);
208 1.7 msaitoh s32 ixgbe_read_i2c_byte_generic_unlocked(struct ixgbe_hw *hw, u8 byte_offset,
209 1.7 msaitoh u8 dev_addr, u8 *data);
210 1.1 dyoung s32 ixgbe_write_i2c_byte_generic(struct ixgbe_hw *hw, u8 byte_offset,
211 1.2 msaitoh u8 dev_addr, u8 data);
212 1.7 msaitoh s32 ixgbe_write_i2c_byte_generic_unlocked(struct ixgbe_hw *hw, u8 byte_offset,
213 1.7 msaitoh u8 dev_addr, u8 data);
214 1.1 dyoung s32 ixgbe_read_i2c_eeprom_generic(struct ixgbe_hw *hw, u8 byte_offset,
215 1.2 msaitoh u8 *eeprom_data);
216 1.1 dyoung s32 ixgbe_write_i2c_eeprom_generic(struct ixgbe_hw *hw, u8 byte_offset,
217 1.2 msaitoh u8 eeprom_data);
218 1.2 msaitoh void ixgbe_i2c_bus_clear(struct ixgbe_hw *hw);
219 1.9 msaitoh s32 ixgbe_read_i2c_combined_generic_int(struct ixgbe_hw *, u8 addr, u16 reg,
220 1.9 msaitoh u16 *val, bool lock);
221 1.9 msaitoh s32 ixgbe_write_i2c_combined_generic_int(struct ixgbe_hw *, u8 addr, u16 reg,
222 1.9 msaitoh u16 val, bool lock);
223 1.1 dyoung #endif /* _IXGBE_PHY_H_ */
224