if_ixlvar.h revision 1.4 1 1.4 yamaguch /* $NetBSD: if_ixlvar.h,v 1.4 2020/01/17 09:42:05 yamaguchi Exp $ */
2 1.1 yamaguch
3 1.1 yamaguch /*
4 1.1 yamaguch * Copyright (c) 2019 Internet Initiative Japan, Inc.
5 1.1 yamaguch * All rights reserved.
6 1.1 yamaguch *
7 1.1 yamaguch * Redistribution and use in source and binary forms, with or without
8 1.1 yamaguch * modification, are permitted provided that the following conditions
9 1.1 yamaguch * are met:
10 1.1 yamaguch * 1. Redistributions of source code must retain the above copyright
11 1.1 yamaguch * notice, this list of conditions and the following disclaimer.
12 1.1 yamaguch * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 yamaguch * notice, this list of conditions and the following disclaimer in the
14 1.1 yamaguch * documentation and/or other materials provided with the distribution.
15 1.1 yamaguch *
16 1.1 yamaguch * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17 1.1 yamaguch * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 1.1 yamaguch * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 1.1 yamaguch * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20 1.1 yamaguch * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 1.1 yamaguch * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 1.1 yamaguch * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 1.1 yamaguch * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 1.1 yamaguch * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 1.1 yamaguch * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 1.1 yamaguch * POSSIBILITY OF SUCH DAMAGE.
27 1.1 yamaguch */
28 1.1 yamaguch
29 1.1 yamaguch #ifndef _DEV_PCI_IF_IXLVAR_H_
30 1.1 yamaguch #define _DEV_PCI_IF_IXLVAR_H_
31 1.1 yamaguch
32 1.1 yamaguch enum i40e_filter_pctype {
33 1.1 yamaguch /* Note: Values 0-28 are reserved for future use.
34 1.1 yamaguch * Value 29, 30, 32 are not supported on XL710 and X710.
35 1.1 yamaguch */
36 1.1 yamaguch I40E_FILTER_PCTYPE_NONF_UNICAST_IPV4_UDP = 29,
37 1.1 yamaguch I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV4_UDP = 30,
38 1.1 yamaguch I40E_FILTER_PCTYPE_NONF_IPV4_UDP = 31,
39 1.1 yamaguch I40E_FILTER_PCTYPE_NONF_IPV4_TCP_SYN_NO_ACK = 32,
40 1.1 yamaguch I40E_FILTER_PCTYPE_NONF_IPV4_TCP = 33,
41 1.1 yamaguch I40E_FILTER_PCTYPE_NONF_IPV4_SCTP = 34,
42 1.1 yamaguch I40E_FILTER_PCTYPE_NONF_IPV4_OTHER = 35,
43 1.1 yamaguch I40E_FILTER_PCTYPE_FRAG_IPV4 = 36,
44 1.1 yamaguch /* Note: Values 37-38 are reserved for future use.
45 1.1 yamaguch * Value 39, 40, 42 are not supported on XL710 and X710.
46 1.1 yamaguch */
47 1.1 yamaguch I40E_FILTER_PCTYPE_NONF_UNICAST_IPV6_UDP = 39,
48 1.1 yamaguch I40E_FILTER_PCTYPE_NONF_MULTICAST_IPV6_UDP = 40,
49 1.1 yamaguch I40E_FILTER_PCTYPE_NONF_IPV6_UDP = 41,
50 1.1 yamaguch I40E_FILTER_PCTYPE_NONF_IPV6_TCP_SYN_NO_ACK = 42,
51 1.1 yamaguch I40E_FILTER_PCTYPE_NONF_IPV6_TCP = 43,
52 1.1 yamaguch I40E_FILTER_PCTYPE_NONF_IPV6_SCTP = 44,
53 1.1 yamaguch I40E_FILTER_PCTYPE_NONF_IPV6_OTHER = 45,
54 1.1 yamaguch I40E_FILTER_PCTYPE_FRAG_IPV6 = 46,
55 1.1 yamaguch /* Note: Value 47 is reserved for future use */
56 1.1 yamaguch I40E_FILTER_PCTYPE_FCOE_OX = 48,
57 1.1 yamaguch I40E_FILTER_PCTYPE_FCOE_RX = 49,
58 1.1 yamaguch I40E_FILTER_PCTYPE_FCOE_OTHER = 50,
59 1.1 yamaguch /* Note: Values 51-62 are reserved for future use */
60 1.1 yamaguch I40E_FILTER_PCTYPE_L2_PAYLOAD = 63,
61 1.1 yamaguch };
62 1.1 yamaguch
63 1.1 yamaguch enum i40e_reset_type {
64 1.1 yamaguch I40E_RESET_POR = 0,
65 1.1 yamaguch I40E_RESET_CORER = 1,
66 1.1 yamaguch I40E_RESET_GLOBR = 2,
67 1.1 yamaguch I40E_RESET_EMPR = 3,
68 1.1 yamaguch };
69 1.1 yamaguch
70 1.1 yamaguch struct ixl_aq_desc {
71 1.1 yamaguch uint16_t iaq_flags;
72 1.1 yamaguch #define IXL_AQ_DD (1U << 0)
73 1.1 yamaguch #define IXL_AQ_CMP (1U << 1)
74 1.1 yamaguch #define IXL_AQ_ERR (1U << 2)
75 1.1 yamaguch #define IXL_AQ_VFE (1U << 3)
76 1.1 yamaguch #define IXL_AQ_LB (1U << 9)
77 1.1 yamaguch #define IXL_AQ_RD (1U << 10)
78 1.1 yamaguch #define IXL_AQ_VFC (1U << 11)
79 1.1 yamaguch #define IXL_AQ_BUF (1U << 12)
80 1.1 yamaguch #define IXL_AQ_SI (1U << 13)
81 1.1 yamaguch #define IXL_AQ_EI (1U << 14)
82 1.1 yamaguch #define IXL_AQ_FE (1U << 15)
83 1.1 yamaguch
84 1.1 yamaguch #define IXL_AQ_FLAGS_FMT "\020" "\020FE" "\017EI" "\016SI" "\015BUF" \
85 1.1 yamaguch "\014VFC" "\013DB" "\012LB" "\004VFE" \
86 1.1 yamaguch "\003ERR" "\002CMP" "\001DD"
87 1.1 yamaguch
88 1.1 yamaguch uint16_t iaq_opcode;
89 1.1 yamaguch
90 1.1 yamaguch uint16_t iaq_datalen;
91 1.1 yamaguch uint16_t iaq_retval;
92 1.1 yamaguch
93 1.1 yamaguch uint64_t iaq_cookie;
94 1.1 yamaguch
95 1.1 yamaguch uint32_t iaq_param[4];
96 1.1 yamaguch /* iaq_data_hi iaq_param[2] */
97 1.1 yamaguch /* iaq_data_lo iaq_param[3] */
98 1.1 yamaguch } __packed __aligned(16);
99 1.1 yamaguch
100 1.1 yamaguch /* aq commands */
101 1.1 yamaguch #define IXL_AQ_OP_GET_VERSION 0x0001
102 1.1 yamaguch #define IXL_AQ_OP_DRIVER_VERSION 0x0002
103 1.1 yamaguch #define IXL_AQ_OP_QUEUE_SHUTDOWN 0x0003
104 1.1 yamaguch #define IXL_AQ_OP_SET_PF_CONTEXT 0x0004
105 1.1 yamaguch #define IXL_AQ_OP_GET_AQ_ERR_REASON 0x0005
106 1.1 yamaguch #define IXL_AQ_OP_REQUEST_RESOURCE 0x0008
107 1.1 yamaguch #define IXL_AQ_OP_RELEASE_RESOURCE 0x0009
108 1.1 yamaguch #define IXL_AQ_OP_LIST_FUNC_CAP 0x000a
109 1.1 yamaguch #define IXL_AQ_OP_LIST_DEV_CAP 0x000b
110 1.1 yamaguch #define IXL_AQ_OP_MAC_ADDRESS_READ 0x0107
111 1.1 yamaguch #define IXL_AQ_OP_CLEAR_PXE_MODE 0x0110
112 1.1 yamaguch #define IXL_AQ_OP_SWITCH_GET_CONFIG 0x0200
113 1.1 yamaguch #define IXL_AQ_OP_RX_CTL_REG_READ 0x0206
114 1.1 yamaguch #define IXL_AQ_OP_RX_CTL_REG_WRITE 0x0207
115 1.1 yamaguch #define IXL_AQ_OP_ADD_VSI 0x0210
116 1.1 yamaguch #define IXL_AQ_OP_UPD_VSI_PARAMS 0x0211
117 1.1 yamaguch #define IXL_AQ_OP_GET_VSI_PARAMS 0x0212
118 1.1 yamaguch #define IXL_AQ_OP_ADD_VEB 0x0230
119 1.1 yamaguch #define IXL_AQ_OP_UPD_VEB_PARAMS 0x0231
120 1.1 yamaguch #define IXL_AQ_OP_GET_VEB_PARAMS 0x0232
121 1.1 yamaguch #define IXL_AQ_OP_ADD_MACVLAN 0x0250
122 1.1 yamaguch #define IXL_AQ_OP_REMOVE_MACVLAN 0x0251
123 1.1 yamaguch #define IXL_AQ_OP_SET_VSI_PROMISC 0x0254
124 1.1 yamaguch #define IXL_AQ_OP_PHY_GET_ABILITIES 0x0600
125 1.1 yamaguch #define IXL_AQ_OP_PHY_SET_CONFIG 0x0601
126 1.1 yamaguch #define IXL_AQ_OP_PHY_SET_MAC_CONFIG 0x0603
127 1.1 yamaguch #define IXL_AQ_OP_PHY_RESTART_AN 0x0605
128 1.1 yamaguch #define IXL_AQ_OP_PHY_LINK_STATUS 0x0607
129 1.1 yamaguch #define IXL_AQ_OP_PHY_SET_EVENT_MASK 0x0613
130 1.1 yamaguch #define IXL_AQ_OP_PHY_SET_REGISTER 0x0628
131 1.1 yamaguch #define IXL_AQ_OP_PHY_GET_REGISTER 0x0629
132 1.4 yamaguch #define IXL_AQ_OP_NVM_READ 0x0701
133 1.1 yamaguch #define IXL_AQ_OP_LLDP_GET_MIB 0x0a00
134 1.1 yamaguch #define IXL_AQ_OP_LLDP_MIB_CHG_EV 0x0a01
135 1.1 yamaguch #define IXL_AQ_OP_LLDP_ADD_TLV 0x0a02
136 1.1 yamaguch #define IXL_AQ_OP_LLDP_UPD_TLV 0x0a03
137 1.1 yamaguch #define IXL_AQ_OP_LLDP_DEL_TLV 0x0a04
138 1.1 yamaguch #define IXL_AQ_OP_LLDP_STOP_AGENT 0x0a05
139 1.1 yamaguch #define IXL_AQ_OP_LLDP_START_AGENT 0x0a06
140 1.1 yamaguch #define IXL_AQ_OP_LLDP_GET_CEE_DCBX 0x0a07
141 1.1 yamaguch #define IXL_AQ_OP_LLDP_SPECIFIC_AGENT 0x0a09
142 1.1 yamaguch
143 1.1 yamaguch struct ixl_aq_mac_addresses {
144 1.1 yamaguch uint8_t pf_lan[ETHER_ADDR_LEN];
145 1.1 yamaguch uint8_t pf_san[ETHER_ADDR_LEN];
146 1.1 yamaguch uint8_t port[ETHER_ADDR_LEN];
147 1.1 yamaguch uint8_t pf_wol[ETHER_ADDR_LEN];
148 1.1 yamaguch } __packed;
149 1.1 yamaguch
150 1.1 yamaguch #define IXL_AQ_MAC_PF_LAN_VALID (1U << 4)
151 1.1 yamaguch #define IXL_AQ_MAC_PF_SAN_VALID (1U << 5)
152 1.1 yamaguch #define IXL_AQ_MAC_PORT_VALID (1U << 6)
153 1.1 yamaguch #define IXL_AQ_MAC_PF_WOL_VALID (1U << 7)
154 1.1 yamaguch
155 1.1 yamaguch struct ixl_aq_capability {
156 1.1 yamaguch uint16_t cap_id;
157 1.1 yamaguch #define IXL_AQ_CAP_SWITCH_MODE 0x0001
158 1.1 yamaguch #define IXL_AQ_CAP_MNG_MODE 0x0002
159 1.1 yamaguch #define IXL_AQ_CAP_NPAR_ACTIVE 0x0003
160 1.1 yamaguch #define IXL_AQ_CAP_OS2BMC_CAP 0x0004
161 1.1 yamaguch #define IXL_AQ_CAP_FUNCTIONS_VALID 0x0005
162 1.1 yamaguch #define IXL_AQ_CAP_ALTERNATE_RAM 0x0006
163 1.1 yamaguch #define IXL_AQ_CAP_WOL_AND_PROXY 0x0008
164 1.1 yamaguch #define IXL_AQ_CAP_SRIOV 0x0012
165 1.1 yamaguch #define IXL_AQ_CAP_VF 0x0013
166 1.1 yamaguch #define IXL_AQ_CAP_VMDQ 0x0014
167 1.1 yamaguch #define IXL_AQ_CAP_8021QBG 0x0015
168 1.1 yamaguch #define IXL_AQ_CAP_8021QBR 0x0016
169 1.1 yamaguch #define IXL_AQ_CAP_VSI 0x0017
170 1.1 yamaguch #define IXL_AQ_CAP_DCB 0x0018
171 1.1 yamaguch #define IXL_AQ_CAP_FCOE 0x0021
172 1.1 yamaguch #define IXL_AQ_CAP_ISCSI 0x0022
173 1.1 yamaguch #define IXL_AQ_CAP_RSS 0x0040
174 1.1 yamaguch #define IXL_AQ_CAP_RXQ 0x0041
175 1.1 yamaguch #define IXL_AQ_CAP_TXQ 0x0042
176 1.1 yamaguch #define IXL_AQ_CAP_MSIX 0x0043
177 1.1 yamaguch #define IXL_AQ_CAP_VF_MSIX 0x0044
178 1.1 yamaguch #define IXL_AQ_CAP_FLOW_DIRECTOR 0x0045
179 1.1 yamaguch #define IXL_AQ_CAP_1588 0x0046
180 1.1 yamaguch #define IXL_AQ_CAP_IWARP 0x0051
181 1.1 yamaguch #define IXL_AQ_CAP_LED 0x0061
182 1.1 yamaguch #define IXL_AQ_CAP_SDP 0x0062
183 1.1 yamaguch #define IXL_AQ_CAP_MDIO 0x0063
184 1.1 yamaguch #define IXL_AQ_CAP_WSR_PROT 0x0064
185 1.1 yamaguch #define IXL_AQ_CAP_NVM_MGMT 0x0080
186 1.1 yamaguch #define IXL_AQ_CAP_FLEX10 0x00F1
187 1.1 yamaguch #define IXL_AQ_CAP_CEM 0x00F2
188 1.1 yamaguch uint8_t major_rev;
189 1.1 yamaguch uint8_t minor_rev;
190 1.1 yamaguch uint32_t number;
191 1.1 yamaguch uint32_t logical_id;
192 1.1 yamaguch uint32_t phys_id;
193 1.1 yamaguch uint8_t _reserved[16];
194 1.1 yamaguch } __packed __aligned(4);
195 1.1 yamaguch
196 1.1 yamaguch #define IXL_LLDP_SHUTDOWN 0x1
197 1.1 yamaguch
198 1.1 yamaguch struct ixl_aq_switch_config {
199 1.1 yamaguch uint16_t num_reported;
200 1.1 yamaguch uint16_t num_total;
201 1.1 yamaguch uint8_t _reserved[12];
202 1.1 yamaguch } __packed __aligned(4);
203 1.1 yamaguch
204 1.1 yamaguch struct ixl_aq_switch_config_element {
205 1.1 yamaguch uint8_t type;
206 1.1 yamaguch #define IXL_AQ_SW_ELEM_TYPE_MAC 1
207 1.1 yamaguch #define IXL_AQ_SW_ELEM_TYPE_PF 2
208 1.1 yamaguch #define IXL_AQ_SW_ELEM_TYPE_VF 3
209 1.1 yamaguch #define IXL_AQ_SW_ELEM_TYPE_EMP 4
210 1.1 yamaguch #define IXL_AQ_SW_ELEM_TYPE_BMC 5
211 1.1 yamaguch #define IXL_AQ_SW_ELEM_TYPE_PV 16
212 1.1 yamaguch #define IXL_AQ_SW_ELEM_TYPE_VEB 17
213 1.1 yamaguch #define IXL_AQ_SW_ELEM_TYPE_PA 18
214 1.1 yamaguch #define IXL_AQ_SW_ELEM_TYPE_VSI 19
215 1.1 yamaguch uint8_t revision;
216 1.1 yamaguch #define IXL_AQ_SW_ELEM_REV_1 1
217 1.1 yamaguch uint16_t seid;
218 1.1 yamaguch
219 1.1 yamaguch uint16_t uplink_seid;
220 1.1 yamaguch uint16_t downlink_seid;
221 1.1 yamaguch
222 1.1 yamaguch uint8_t _reserved[3];
223 1.1 yamaguch uint8_t connection_type;
224 1.1 yamaguch #define IXL_AQ_CONN_TYPE_REGULAR 0x1
225 1.1 yamaguch #define IXL_AQ_CONN_TYPE_DEFAULT 0x2
226 1.1 yamaguch #define IXL_AQ_CONN_TYPE_CASCADED 0x3
227 1.1 yamaguch
228 1.1 yamaguch uint16_t scheduler_id;
229 1.1 yamaguch uint16_t element_info;
230 1.1 yamaguch } __packed __aligned(4);
231 1.1 yamaguch
232 1.1 yamaguch #define IXL_PHY_TYPE_SGMII 0x00
233 1.1 yamaguch #define IXL_PHY_TYPE_1000BASE_KX 0x01
234 1.1 yamaguch #define IXL_PHY_TYPE_10GBASE_KX4 0x02
235 1.1 yamaguch #define IXL_PHY_TYPE_10GBASE_KR 0x03
236 1.1 yamaguch #define IXL_PHY_TYPE_40GBASE_KR4 0x04
237 1.1 yamaguch #define IXL_PHY_TYPE_XAUI 0x05
238 1.1 yamaguch #define IXL_PHY_TYPE_XFI 0x06
239 1.1 yamaguch #define IXL_PHY_TYPE_SFI 0x07
240 1.1 yamaguch #define IXL_PHY_TYPE_XLAUI 0x08
241 1.1 yamaguch #define IXL_PHY_TYPE_XLPPI 0x09
242 1.1 yamaguch #define IXL_PHY_TYPE_40GBASE_CR4_CU 0x0a
243 1.1 yamaguch #define IXL_PHY_TYPE_10GBASE_CR1_CU 0x0b
244 1.1 yamaguch #define IXL_PHY_TYPE_10GBASE_AOC 0x0c
245 1.1 yamaguch #define IXL_PHY_TYPE_40GBASE_AOC 0x0d
246 1.1 yamaguch #define IXL_PHY_TYPE_100BASE_TX 0x11
247 1.1 yamaguch #define IXL_PHY_TYPE_1000BASE_T 0x12
248 1.1 yamaguch #define IXL_PHY_TYPE_10GBASE_T 0x13
249 1.1 yamaguch #define IXL_PHY_TYPE_10GBASE_SR 0x14
250 1.1 yamaguch #define IXL_PHY_TYPE_10GBASE_LR 0x15
251 1.1 yamaguch #define IXL_PHY_TYPE_10GBASE_SFPP_CU 0x16
252 1.1 yamaguch #define IXL_PHY_TYPE_10GBASE_CR1 0x17
253 1.1 yamaguch #define IXL_PHY_TYPE_40GBASE_CR4 0x18
254 1.1 yamaguch #define IXL_PHY_TYPE_40GBASE_SR4 0x19
255 1.1 yamaguch #define IXL_PHY_TYPE_40GBASE_LR4 0x1a
256 1.1 yamaguch #define IXL_PHY_TYPE_1000BASE_SX 0x1b
257 1.1 yamaguch #define IXL_PHY_TYPE_1000BASE_LX 0x1c
258 1.1 yamaguch #define IXL_PHY_TYPE_1000BASE_T_OPTICAL 0x1d
259 1.1 yamaguch #define IXL_PHY_TYPE_20GBASE_KR2 0x1e
260 1.1 yamaguch
261 1.1 yamaguch #define IXL_PHY_TYPE_25GBASE_KR 0x1f
262 1.1 yamaguch #define IXL_PHY_TYPE_25GBASE_CR 0x20
263 1.1 yamaguch #define IXL_PHY_TYPE_25GBASE_SR 0x21
264 1.1 yamaguch #define IXL_PHY_TYPE_25GBASE_LR 0x22
265 1.1 yamaguch #define IXL_PHY_TYPE_25GBASE_AOC 0x23
266 1.1 yamaguch #define IXL_PHY_TYPE_25GBASE_ACC 0x24
267 1.1 yamaguch
268 1.1 yamaguch struct ixl_aq_module_desc {
269 1.1 yamaguch uint8_t oui[3];
270 1.1 yamaguch uint8_t _reserved1;
271 1.1 yamaguch uint8_t part_number[16];
272 1.1 yamaguch uint8_t revision[4];
273 1.1 yamaguch uint8_t _reserved2[8];
274 1.1 yamaguch } __packed __aligned(4);
275 1.1 yamaguch
276 1.1 yamaguch struct ixl_aq_phy_abilities {
277 1.1 yamaguch uint32_t phy_type;
278 1.1 yamaguch
279 1.1 yamaguch uint8_t link_speed;
280 1.1 yamaguch #define IXL_AQ_PHY_LINK_SPEED_100MB (1 << 1)
281 1.1 yamaguch #define IXL_AQ_PHY_LINK_SPEED_1000MB (1 << 2)
282 1.1 yamaguch #define IXL_AQ_PHY_LINK_SPEED_10GB (1 << 3)
283 1.1 yamaguch #define IXL_AQ_PHY_LINK_SPEED_40GB (1 << 4)
284 1.1 yamaguch #define IXL_AQ_PHY_LINK_SPEED_20GB (1 << 5)
285 1.1 yamaguch #define IXL_AQ_PHY_LINK_SPEED_25GB (1 << 6)
286 1.1 yamaguch uint8_t abilities;
287 1.1 yamaguch uint16_t eee_capability;
288 1.1 yamaguch
289 1.1 yamaguch uint32_t eeer_val;
290 1.1 yamaguch
291 1.1 yamaguch uint8_t d3_lpan;
292 1.1 yamaguch uint8_t phy_type_ext;
293 1.1 yamaguch #define IXL_AQ_PHY_TYPE_EXT_25G_KR 0x01
294 1.1 yamaguch #define IXL_AQ_PHY_TYPE_EXT_25G_CR 0x02
295 1.1 yamaguch #define IXL_AQ_PHY_TYPE_EXT_25G_SR 0x04
296 1.1 yamaguch #define IXL_AQ_PHY_TYPE_EXT_25G_LR 0x08
297 1.1 yamaguch uint8_t fec_cfg_curr_mod_ext_info;
298 1.1 yamaguch #define IXL_AQ_ENABLE_FEC_KR 0x01
299 1.1 yamaguch #define IXL_AQ_ENABLE_FEC_RS 0x02
300 1.1 yamaguch #define IXL_AQ_REQUEST_FEC_KR 0x04
301 1.1 yamaguch #define IXL_AQ_REQUEST_FEC_RS 0x08
302 1.1 yamaguch #define IXL_AQ_ENABLE_FEC_AUTO 0x10
303 1.1 yamaguch #define IXL_AQ_MODULE_TYPE_EXT_MASK 0xe0
304 1.1 yamaguch #define IXL_AQ_MODULE_TYPE_EXT_SHIFT 5
305 1.1 yamaguch uint8_t ext_comp_code;
306 1.1 yamaguch
307 1.1 yamaguch uint8_t phy_id[4];
308 1.1 yamaguch
309 1.1 yamaguch uint8_t module_type[3];
310 1.1 yamaguch #define IXL_SFF8024_ID_SFP 0x03
311 1.1 yamaguch #define IXL_SFF8024_ID_QSFP 0x0c
312 1.1 yamaguch #define IXL_SFF8024_ID_QSFP_PLUS 0x0d
313 1.1 yamaguch #define IXL_SFF8024_ID_QSFP28 0x11
314 1.1 yamaguch uint8_t qualified_module_count;
315 1.1 yamaguch #define IXL_AQ_PHY_MAX_QMS 16
316 1.1 yamaguch struct ixl_aq_module_desc
317 1.1 yamaguch qualified_module[IXL_AQ_PHY_MAX_QMS];
318 1.1 yamaguch } __packed __aligned(4);
319 1.1 yamaguch
320 1.1 yamaguch struct ixl_aq_link_param {
321 1.1 yamaguch uint8_t notify;
322 1.1 yamaguch #define IXL_AQ_LINK_NOTIFY 0x03
323 1.1 yamaguch uint8_t _reserved1;
324 1.1 yamaguch uint8_t phy;
325 1.1 yamaguch uint8_t speed;
326 1.1 yamaguch uint8_t status;
327 1.1 yamaguch uint8_t _reserved2[11];
328 1.1 yamaguch } __packed __aligned(4);
329 1.1 yamaguch
330 1.1 yamaguch struct ixl_aq_vsi_param {
331 1.1 yamaguch uint16_t uplink_seid;
332 1.1 yamaguch uint8_t connect_type;
333 1.1 yamaguch #define IXL_AQ_VSI_CONN_TYPE_NORMAL (0x1)
334 1.1 yamaguch #define IXL_AQ_VSI_CONN_TYPE_DEFAULT (0x2)
335 1.1 yamaguch #define IXL_AQ_VSI_CONN_TYPE_CASCADED (0x3)
336 1.1 yamaguch uint8_t _reserved1;
337 1.1 yamaguch
338 1.1 yamaguch uint8_t vf_id;
339 1.1 yamaguch uint8_t _reserved2;
340 1.1 yamaguch uint16_t vsi_flags;
341 1.1 yamaguch #define IXL_AQ_VSI_TYPE_SHIFT 0x0
342 1.1 yamaguch #define IXL_AQ_VSI_TYPE_MASK (0x3 << IXL_AQ_VSI_TYPE_SHIFT)
343 1.1 yamaguch #define IXL_AQ_VSI_TYPE_VF 0x0
344 1.1 yamaguch #define IXL_AQ_VSI_TYPE_VMDQ2 0x1
345 1.1 yamaguch #define IXL_AQ_VSI_TYPE_PF 0x2
346 1.1 yamaguch #define IXL_AQ_VSI_TYPE_EMP_MNG 0x3
347 1.1 yamaguch #define IXL_AQ_VSI_FLAG_CASCADED_PV 0x4
348 1.1 yamaguch
349 1.1 yamaguch uint32_t addr_hi;
350 1.1 yamaguch uint32_t addr_lo;
351 1.1 yamaguch } __packed __aligned(16);
352 1.1 yamaguch
353 1.1 yamaguch struct ixl_aq_add_macvlan {
354 1.1 yamaguch uint16_t num_addrs;
355 1.1 yamaguch uint16_t seid0;
356 1.1 yamaguch uint16_t seid1;
357 1.1 yamaguch uint16_t seid2;
358 1.1 yamaguch uint32_t addr_hi;
359 1.1 yamaguch uint32_t addr_lo;
360 1.1 yamaguch } __packed __aligned(16);
361 1.1 yamaguch
362 1.1 yamaguch struct ixl_aq_add_macvlan_elem {
363 1.1 yamaguch uint8_t macaddr[6];
364 1.1 yamaguch uint16_t vlan;
365 1.1 yamaguch uint16_t flags;
366 1.1 yamaguch #define IXL_AQ_OP_ADD_MACVLAN_PERFECT_MATCH 0x0001
367 1.1 yamaguch #define IXL_AQ_OP_ADD_MACVLAN_IGNORE_VLAN 0x0004
368 1.1 yamaguch uint16_t queue;
369 1.1 yamaguch uint32_t _reserved;
370 1.1 yamaguch } __packed __aligned(16);
371 1.1 yamaguch
372 1.1 yamaguch struct ixl_aq_remove_macvlan {
373 1.1 yamaguch uint16_t num_addrs;
374 1.1 yamaguch uint16_t seid0;
375 1.1 yamaguch uint16_t seid1;
376 1.1 yamaguch uint16_t seid2;
377 1.1 yamaguch uint32_t addr_hi;
378 1.1 yamaguch uint32_t addr_lo;
379 1.1 yamaguch } __packed __aligned(16);
380 1.1 yamaguch
381 1.1 yamaguch struct ixl_aq_remove_macvlan_elem {
382 1.1 yamaguch uint8_t macaddr[6];
383 1.1 yamaguch uint16_t vlan;
384 1.1 yamaguch uint8_t flags;
385 1.1 yamaguch #define IXL_AQ_OP_REMOVE_MACVLAN_PERFECT_MATCH 0x0001
386 1.1 yamaguch #define IXL_AQ_OP_REMOVE_MACVLAN_IGNORE_VLAN 0x0008
387 1.1 yamaguch uint8_t _reserved[7];
388 1.1 yamaguch } __packed __aligned(16);
389 1.1 yamaguch
390 1.1 yamaguch struct ixl_aq_vsi_reply {
391 1.1 yamaguch uint16_t seid;
392 1.1 yamaguch uint16_t vsi_number;
393 1.1 yamaguch
394 1.1 yamaguch uint16_t vsis_used;
395 1.1 yamaguch uint16_t vsis_free;
396 1.1 yamaguch
397 1.1 yamaguch uint32_t addr_hi;
398 1.1 yamaguch uint32_t addr_lo;
399 1.1 yamaguch } __packed __aligned(16);
400 1.1 yamaguch
401 1.1 yamaguch struct ixl_aq_vsi_data {
402 1.1 yamaguch /* first 96 byte are written by SW */
403 1.1 yamaguch uint16_t valid_sections;
404 1.1 yamaguch #define IXL_AQ_VSI_VALID_SWITCH (1 << 0)
405 1.1 yamaguch #define IXL_AQ_VSI_VALID_SECURITY (1 << 1)
406 1.1 yamaguch #define IXL_AQ_VSI_VALID_VLAN (1 << 2)
407 1.1 yamaguch #define IXL_AQ_VSI_VALID_CAS_PV (1 << 3)
408 1.1 yamaguch #define IXL_AQ_VSI_VALID_INGRESS_UP (1 << 4)
409 1.1 yamaguch #define IXL_AQ_VSI_VALID_EGRESS_UP (1 << 5)
410 1.1 yamaguch #define IXL_AQ_VSI_VALID_QUEUE_MAP (1 << 6)
411 1.1 yamaguch #define IXL_AQ_VSI_VALID_QUEUE_OPT (1 << 7)
412 1.1 yamaguch #define IXL_AQ_VSI_VALID_OUTER_UP (1 << 8)
413 1.1 yamaguch #define IXL_AQ_VSI_VALID_SCHED (1 << 9)
414 1.1 yamaguch /* switch section */
415 1.1 yamaguch uint16_t switch_id;
416 1.1 yamaguch #define IXL_AQ_VSI_SWITCH_ID_SHIFT 0
417 1.1 yamaguch #define IXL_AQ_VSI_SWITCH_ID_MASK (0xfff << IXL_AQ_VSI_SWITCH_ID_SHIFT)
418 1.1 yamaguch #define IXL_AQ_VSI_SWITCH_NOT_STAG (1 << 12)
419 1.1 yamaguch #define IXL_AQ_VSI_SWITCH_LOCAL_LB (1 << 14)
420 1.1 yamaguch
421 1.1 yamaguch uint8_t _reserved1[2];
422 1.1 yamaguch /* security section */
423 1.1 yamaguch uint8_t sec_flags;
424 1.1 yamaguch #define IXL_AQ_VSI_SEC_ALLOW_DEST_OVRD (1 << 0)
425 1.1 yamaguch #define IXL_AQ_VSI_SEC_ENABLE_VLAN_CHK (1 << 1)
426 1.1 yamaguch #define IXL_AQ_VSI_SEC_ENABLE_MAC_CHK (1 << 2)
427 1.1 yamaguch uint8_t _reserved2;
428 1.1 yamaguch
429 1.1 yamaguch /* vlan section */
430 1.1 yamaguch uint16_t pvid;
431 1.1 yamaguch uint16_t fcoe_pvid;
432 1.1 yamaguch
433 1.1 yamaguch uint8_t port_vlan_flags;
434 1.1 yamaguch #define IXL_AQ_VSI_PVLAN_MODE_SHIFT 0
435 1.1 yamaguch #define IXL_AQ_VSI_PVLAN_MODE_MASK (0x3 << IXL_AQ_VSI_PVLAN_MODE_SHIFT)
436 1.1 yamaguch #define IXL_AQ_VSI_PVLAN_MODE_TAGGED (0x1 << IXL_AQ_VSI_PVLAN_MODE_SHIFT)
437 1.1 yamaguch #define IXL_AQ_VSI_PVLAN_MODE_UNTAGGED (0x2 << IXL_AQ_VSI_PVLAN_MODE_SHIFT)
438 1.1 yamaguch #define IXL_AQ_VSI_PVLAN_MODE_ALL (0x3 << IXL_AQ_VSI_PVLAN_MODE_SHIFT)
439 1.1 yamaguch #define IXL_AQ_VSI_PVLAN_INSERT_PVID (0x4 << IXL_AQ_VSI_PVLAN_MODE_SHIFT)
440 1.1 yamaguch #define IXL_AQ_VSI_PVLAN_EMOD_SHIFT 0x3
441 1.1 yamaguch #define IXL_AQ_VSI_PVLAN_EMOD_MASK (0x3 << IXL_AQ_VSI_PVLAN_EMOD_SHIFT)
442 1.1 yamaguch #define IXL_AQ_VSI_PVLAN_EMOD_STR_BOTH (0x0 << IXL_AQ_VSI_PVLAN_EMOD_SHIFT)
443 1.1 yamaguch #define IXL_AQ_VSI_PVLAN_EMOD_STR_UP (0x1 << IXL_AQ_VSI_PVLAN_EMOD_SHIFT)
444 1.1 yamaguch #define IXL_AQ_VSI_PVLAN_EMOD_STR (0x2 << IXL_AQ_VSI_PVLAN_EMOD_SHIFT)
445 1.1 yamaguch #define IXL_AQ_VSI_PVLAN_EMOD_NOTHING (0x3 << IXL_AQ_VSI_PVLAN_EMOD_SHIFT)
446 1.1 yamaguch uint8_t _reserved3[3];
447 1.1 yamaguch
448 1.1 yamaguch /* ingress egress up section */
449 1.1 yamaguch uint32_t ingress_table;
450 1.1 yamaguch #define IXL_AQ_VSI_UP_SHIFT(_up) ((_up) * 3)
451 1.1 yamaguch #define IXL_AQ_VSI_UP_MASK(_up) (0x7 << (IXL_AQ_VSI_UP_SHIFT(_up))
452 1.1 yamaguch uint32_t egress_table;
453 1.1 yamaguch
454 1.1 yamaguch /* cascaded pv section */
455 1.1 yamaguch uint16_t cas_pv_tag;
456 1.1 yamaguch uint8_t cas_pv_flags;
457 1.1 yamaguch #define IXL_AQ_VSI_CAS_PV_TAGX_SHIFT 0
458 1.1 yamaguch #define IXL_AQ_VSI_CAS_PV_TAGX_MASK (0x3 << IXL_AQ_VSI_CAS_PV_TAGX_SHIFT)
459 1.1 yamaguch #define IXL_AQ_VSI_CAS_PV_TAGX_LEAVE (0x0 << IXL_AQ_VSI_CAS_PV_TAGX_SHIFT)
460 1.1 yamaguch #define IXL_AQ_VSI_CAS_PV_TAGX_REMOVE (0x1 << IXL_AQ_VSI_CAS_PV_TAGX_SHIFT)
461 1.1 yamaguch #define IXL_AQ_VSI_CAS_PV_TAGX_COPY (0x2 << IXL_AQ_VSI_CAS_PV_TAGX_SHIFT)
462 1.1 yamaguch #define IXL_AQ_VSI_CAS_PV_INSERT_TAG (1 << 4)
463 1.1 yamaguch #define IXL_AQ_VSI_CAS_PV_ETAG_PRUNE (1 << 5)
464 1.1 yamaguch #define IXL_AQ_VSI_CAS_PV_ACCEPT_HOST_TAG \
465 1.1 yamaguch (1 << 6)
466 1.1 yamaguch uint8_t _reserved4;
467 1.1 yamaguch
468 1.1 yamaguch /* queue mapping section */
469 1.1 yamaguch uint16_t mapping_flags;
470 1.1 yamaguch #define IXL_AQ_VSI_QUE_MAP_MASK 0x1
471 1.1 yamaguch #define IXL_AQ_VSI_QUE_MAP_CONTIG 0x0
472 1.1 yamaguch #define IXL_AQ_VSI_QUE_MAP_NONCONTIG 0x1
473 1.1 yamaguch uint16_t queue_mapping[16];
474 1.1 yamaguch #define IXL_AQ_VSI_QUEUE_SHIFT 0x0
475 1.1 yamaguch #define IXL_AQ_VSI_QUEUE_MASK (0x7ff << IXL_AQ_VSI_QUEUE_SHIFT)
476 1.1 yamaguch uint16_t tc_mapping[8];
477 1.1 yamaguch #define IXL_AQ_VSI_TC_Q_OFFSET_SHIFT 0
478 1.1 yamaguch #define IXL_AQ_VSI_TC_Q_OFFSET_MASK (0x1ff << IXL_AQ_VSI_TC_Q_OFFSET_SHIFT)
479 1.1 yamaguch #define IXL_AQ_VSI_TC_Q_NUMBER_SHIFT 9
480 1.1 yamaguch #define IXL_AQ_VSI_TC_Q_NUMBER_MASK (0x7 << IXL_AQ_VSI_TC_Q_NUMBER_SHIFT)
481 1.1 yamaguch
482 1.1 yamaguch /* queueing option section */
483 1.1 yamaguch uint8_t queueing_opt_flags;
484 1.1 yamaguch #define IXL_AQ_VSI_QUE_OPT_MCAST_UDP_EN (1 << 2)
485 1.1 yamaguch #define IXL_AQ_VSI_QUE_OPT_UCAST_UDP_EN (1 << 3)
486 1.1 yamaguch #define IXL_AQ_VSI_QUE_OPT_TCP_EN (1 << 4)
487 1.1 yamaguch #define IXL_AQ_VSI_QUE_OPT_FCOE_EN (1 << 5)
488 1.1 yamaguch #define IXL_AQ_VSI_QUE_OPT_RSS_LUT_PF 0
489 1.1 yamaguch #define IXL_AQ_VSI_QUE_OPT_RSS_LUT_VSI (1 << 6)
490 1.1 yamaguch uint8_t _reserved5[3];
491 1.1 yamaguch
492 1.1 yamaguch /* scheduler section */
493 1.1 yamaguch uint8_t up_enable_bits;
494 1.1 yamaguch uint8_t _reserved6;
495 1.1 yamaguch
496 1.1 yamaguch /* outer up section */
497 1.1 yamaguch uint32_t outer_up_table; /* same as ingress/egress tables */
498 1.1 yamaguch uint8_t _reserved7[8];
499 1.1 yamaguch
500 1.1 yamaguch /* last 32 bytes are written by FW */
501 1.1 yamaguch uint16_t qs_handle[8];
502 1.1 yamaguch #define IXL_AQ_VSI_QS_HANDLE_INVALID 0xffff
503 1.1 yamaguch uint16_t stat_counter_idx;
504 1.1 yamaguch uint16_t sched_id;
505 1.1 yamaguch
506 1.1 yamaguch uint8_t _reserved8[12];
507 1.1 yamaguch } __packed __aligned(8);
508 1.1 yamaguch
509 1.1 yamaguch CTASSERT(sizeof(struct ixl_aq_vsi_data) == 128);
510 1.1 yamaguch
511 1.1 yamaguch struct ixl_aq_vsi_promisc_param {
512 1.1 yamaguch uint16_t flags;
513 1.1 yamaguch uint16_t valid_flags;
514 1.1 yamaguch #define IXL_AQ_VSI_PROMISC_FLAG_UCAST (1 << 0)
515 1.1 yamaguch #define IXL_AQ_VSI_PROMISC_FLAG_MCAST (1 << 1)
516 1.1 yamaguch #define IXL_AQ_VSI_PROMISC_FLAG_BCAST (1 << 2)
517 1.1 yamaguch #define IXL_AQ_VSI_PROMISC_FLAG_DFLT (1 << 3)
518 1.1 yamaguch #define IXL_AQ_VSI_PROMISC_FLAG_VLAN (1 << 4)
519 1.1 yamaguch #define IXL_AQ_VSI_PROMISC_FLAG_RXONLY (1 << 15)
520 1.1 yamaguch
521 1.1 yamaguch uint16_t seid;
522 1.1 yamaguch #define IXL_AQ_VSI_PROMISC_SEID_VALID (1 << 15)
523 1.1 yamaguch uint16_t vlan;
524 1.1 yamaguch #define IXL_AQ_VSI_PROMISC_VLAN_VALID (1 << 15)
525 1.1 yamaguch uint32_t reserved[2];
526 1.1 yamaguch } __packed __aligned(8);
527 1.1 yamaguch
528 1.1 yamaguch struct ixl_aq_veb_param {
529 1.1 yamaguch uint16_t uplink_seid;
530 1.1 yamaguch uint16_t downlink_seid;
531 1.1 yamaguch uint16_t veb_flags;
532 1.1 yamaguch #define IXL_AQ_ADD_VEB_FLOATING (1 << 0)
533 1.1 yamaguch #define IXL_AQ_ADD_VEB_PORT_TYPE_SHIFT 1
534 1.1 yamaguch #define IXL_AQ_ADD_VEB_PORT_TYPE_MASK (0x3 << IXL_AQ_ADD_VEB_PORT_TYPE_SHIFT)
535 1.1 yamaguch #define IXL_AQ_ADD_VEB_PORT_TYPE_DEFAULT \
536 1.1 yamaguch (0x2 << IXL_AQ_ADD_VEB_PORT_TYPE_SHIFT)
537 1.1 yamaguch #define IXL_AQ_ADD_VEB_PORT_TYPE_DATA (0x4 << IXL_AQ_ADD_VEB_PORT_TYPE_SHIFT)
538 1.1 yamaguch #define IXL_AQ_ADD_VEB_ENABLE_L2_FILTER (1 << 3) /* deprecated */
539 1.1 yamaguch #define IXL_AQ_ADD_VEB_DISABLE_STATS (1 << 4)
540 1.1 yamaguch uint8_t enable_tcs;
541 1.1 yamaguch uint8_t _reserved[9];
542 1.1 yamaguch } __packed __aligned(16);
543 1.1 yamaguch
544 1.1 yamaguch struct ixl_aq_veb_reply {
545 1.1 yamaguch uint16_t _reserved1;
546 1.1 yamaguch uint16_t _reserved2;
547 1.1 yamaguch uint16_t _reserved3;
548 1.1 yamaguch uint16_t switch_seid;
549 1.1 yamaguch uint16_t veb_seid;
550 1.1 yamaguch #define IXL_AQ_VEB_ERR_FLAG_NO_VEB (1 << 0)
551 1.1 yamaguch #define IXL_AQ_VEB_ERR_FLAG_NO_SCHED (1 << 1)
552 1.1 yamaguch #define IXL_AQ_VEB_ERR_FLAG_NO_COUNTER (1 << 2)
553 1.1 yamaguch #define IXL_AQ_VEB_ERR_FLAG_NO_ENTRY (1 << 3);
554 1.1 yamaguch uint16_t statistic_index;
555 1.1 yamaguch uint16_t vebs_used;
556 1.1 yamaguch uint16_t vebs_free;
557 1.1 yamaguch } __packed __aligned(16);
558 1.1 yamaguch
559 1.1 yamaguch /* GET PHY ABILITIES param[0] */
560 1.1 yamaguch #define IXL_AQ_PHY_REPORT_QUAL (1 << 0)
561 1.1 yamaguch #define IXL_AQ_PHY_REPORT_INIT (1 << 1)
562 1.1 yamaguch
563 1.1 yamaguch struct ixl_aq_phy_reg_access {
564 1.1 yamaguch uint8_t phy_iface;
565 1.1 yamaguch #define IXL_AQ_PHY_IF_INTERNAL 0
566 1.1 yamaguch #define IXL_AQ_PHY_IF_EXTERNAL 1
567 1.1 yamaguch #define IXL_AQ_PHY_IF_MODULE 2
568 1.1 yamaguch uint8_t dev_addr;
569 1.1 yamaguch uint16_t recall;
570 1.1 yamaguch #define IXL_AQ_PHY_QSFP_DEV_ADDR 0
571 1.1 yamaguch #define IXL_AQ_PHY_QSFP_LAST 1
572 1.1 yamaguch uint32_t reg;
573 1.1 yamaguch uint32_t val;
574 1.1 yamaguch uint32_t _reserved2;
575 1.1 yamaguch } __packed __aligned(16);
576 1.1 yamaguch
577 1.1 yamaguch /* RESTART_AN param[0] */
578 1.1 yamaguch #define IXL_AQ_PHY_RESTART_AN (1 << 1)
579 1.1 yamaguch #define IXL_AQ_PHY_LINK_ENABLE (1 << 2)
580 1.1 yamaguch
581 1.1 yamaguch struct ixl_aq_link_status { /* this occupies the iaq_param space */
582 1.1 yamaguch uint16_t command_flags; /* only field set on command */
583 1.1 yamaguch #define IXL_AQ_LSE_MASK 0x3
584 1.1 yamaguch #define IXL_AQ_LSE_NOP 0x0
585 1.1 yamaguch #define IXL_AQ_LSE_DISABLE 0x2
586 1.1 yamaguch #define IXL_AQ_LSE_ENABLE 0x3
587 1.1 yamaguch #define IXL_AQ_LSE_IS_ENABLED 0x1 /* only set in response */
588 1.1 yamaguch uint8_t phy_type;
589 1.1 yamaguch uint8_t link_speed;
590 1.1 yamaguch #define IXL_AQ_LINK_SPEED_100MB (1 << 1)
591 1.1 yamaguch #define IXL_AQ_LINK_SPEED_1000MB (1 << 2)
592 1.1 yamaguch #define IXL_AQ_LINK_SPEED_10GB (1 << 3)
593 1.1 yamaguch #define IXL_AQ_LINK_SPEED_40GB (1 << 4)
594 1.1 yamaguch #define IXL_AQ_LINK_SPEED_25GB (1 << 6)
595 1.1 yamaguch uint8_t link_info;
596 1.1 yamaguch #define IXL_AQ_LINK_UP_FUNCTION 0x01
597 1.1 yamaguch #define IXL_AQ_LINK_FAULT 0x02
598 1.1 yamaguch #define IXL_AQ_LINK_FAULT_TX 0x04
599 1.1 yamaguch #define IXL_AQ_LINK_FAULT_RX 0x08
600 1.1 yamaguch #define IXL_AQ_LINK_FAULT_REMOTE 0x10
601 1.1 yamaguch #define IXL_AQ_LINK_UP_PORT 0x20
602 1.1 yamaguch #define IXL_AQ_MEDIA_AVAILABLE 0x40
603 1.1 yamaguch #define IXL_AQ_SIGNAL_DETECT 0x80
604 1.1 yamaguch uint8_t an_info;
605 1.1 yamaguch #define IXL_AQ_AN_COMPLETED 0x01
606 1.1 yamaguch #define IXL_AQ_LP_AN_ABILITY 0x02
607 1.1 yamaguch #define IXL_AQ_PD_FAULT 0x04
608 1.1 yamaguch #define IXL_AQ_FEC_EN 0x08
609 1.1 yamaguch #define IXL_AQ_PHY_LOW_POWER 0x10
610 1.1 yamaguch #define IXL_AQ_LINK_PAUSE_TX 0x20
611 1.1 yamaguch #define IXL_AQ_LINK_PAUSE_RX 0x40
612 1.1 yamaguch #define IXL_AQ_QUALIFIED_MODULE 0x80
613 1.1 yamaguch
614 1.1 yamaguch uint8_t ext_info;
615 1.1 yamaguch #define IXL_AQ_LINK_PHY_TEMP_ALARM 0x01
616 1.1 yamaguch #define IXL_AQ_LINK_XCESSIVE_ERRORS 0x02
617 1.1 yamaguch #define IXL_AQ_LINK_TX_SHIFT 0x02
618 1.1 yamaguch #define IXL_AQ_LINK_TX_MASK (0x03 << IXL_AQ_LINK_TX_SHIFT)
619 1.1 yamaguch #define IXL_AQ_LINK_TX_ACTIVE 0x00
620 1.1 yamaguch #define IXL_AQ_LINK_TX_DRAINED 0x01
621 1.1 yamaguch #define IXL_AQ_LINK_TX_FLUSHED 0x03
622 1.1 yamaguch #define IXL_AQ_LINK_FORCED_40G 0x10
623 1.1 yamaguch /* 25G Error Codes */
624 1.1 yamaguch #define IXL_AQ_25G_NO_ERR 0X00
625 1.1 yamaguch #define IXL_AQ_25G_NOT_PRESENT 0X01
626 1.1 yamaguch #define IXL_AQ_25G_NVM_CRC_ERR 0X02
627 1.1 yamaguch #define IXL_AQ_25G_SBUS_UCODE_ERR 0X03
628 1.1 yamaguch #define IXL_AQ_25G_SERDES_UCODE_ERR 0X04
629 1.1 yamaguch #define IXL_AQ_25G_NIMB_UCODE_ERR 0X05
630 1.1 yamaguch uint8_t loopback;
631 1.1 yamaguch uint16_t max_frame_size;
632 1.1 yamaguch
633 1.1 yamaguch uint8_t config;
634 1.1 yamaguch #define IXL_AQ_CONFIG_FEC_KR_ENA 0x01
635 1.1 yamaguch #define IXL_AQ_CONFIG_FEC_RS_ENA 0x02
636 1.1 yamaguch #define IXL_AQ_CONFIG_CRC_ENA 0x04
637 1.1 yamaguch #define IXL_AQ_CONFIG_PACING_MASK 0x78
638 1.1 yamaguch uint8_t power_desc;
639 1.1 yamaguch #define IXL_AQ_LINK_POWER_CLASS_1 0x00
640 1.1 yamaguch #define IXL_AQ_LINK_POWER_CLASS_2 0x01
641 1.1 yamaguch #define IXL_AQ_LINK_POWER_CLASS_3 0x02
642 1.1 yamaguch #define IXL_AQ_LINK_POWER_CLASS_4 0x03
643 1.1 yamaguch #define IXL_AQ_PWR_CLASS_MASK 0x03
644 1.1 yamaguch
645 1.1 yamaguch uint8_t reserved[4];
646 1.1 yamaguch } __packed __aligned(4);
647 1.1 yamaguch
648 1.1 yamaguch /* event mask command flags for param[2] */
649 1.1 yamaguch #define IXL_AQ_PHY_EV_MASK 0x3ff
650 1.1 yamaguch #define IXL_AQ_PHY_EV_LINK_UPDOWN (1 << 1)
651 1.1 yamaguch #define IXL_AQ_PHY_EV_MEDIA_NA (1 << 2)
652 1.1 yamaguch #define IXL_AQ_PHY_EV_LINK_FAULT (1 << 3)
653 1.1 yamaguch #define IXL_AQ_PHY_EV_PHY_TEMP_ALARM (1 << 4)
654 1.1 yamaguch #define IXL_AQ_PHY_EV_EXCESS_ERRORS (1 << 5)
655 1.1 yamaguch #define IXL_AQ_PHY_EV_SIGNAL_DETECT (1 << 6)
656 1.1 yamaguch #define IXL_AQ_PHY_EV_AN_COMPLETED (1 << 7)
657 1.1 yamaguch #define IXL_AQ_PHY_EV_MODULE_QUAL_FAIL (1 << 8)
658 1.1 yamaguch #define IXL_AQ_PHY_EV_PORT_TX_SUSPENDED (1 << 9)
659 1.1 yamaguch
660 1.4 yamaguch struct ixl_aq_req_resource_param {
661 1.4 yamaguch uint16_t resource_id;
662 1.4 yamaguch #define IXL_AQ_RESOURCE_ID_NVM 0x0001
663 1.4 yamaguch #define IXL_AQ_RESOURCE_ID_SDP 0x0002
664 1.4 yamaguch
665 1.4 yamaguch uint16_t access_type;
666 1.4 yamaguch #define IXL_AQ_RESOURCE_ACCES_READ 0x01
667 1.4 yamaguch #define IXL_AQ_RESOURCE_ACCES_WRITE 0x02
668 1.4 yamaguch
669 1.4 yamaguch uint16_t timeout;
670 1.4 yamaguch uint32_t resource_num;
671 1.4 yamaguch uint32_t reserved;
672 1.4 yamaguch } __packed __aligned(8);
673 1.4 yamaguch
674 1.4 yamaguch struct ixl_aq_rel_resource_param {
675 1.4 yamaguch uint16_t resource_id;
676 1.4 yamaguch /* defined in ixl_aq_req_resource_param */
677 1.4 yamaguch uint16_t _reserved1[3];
678 1.4 yamaguch uint32_t resource_num;
679 1.4 yamaguch uint32_t _reserved2;
680 1.4 yamaguch } __packed __aligned(8);
681 1.4 yamaguch
682 1.4 yamaguch struct ixl_aq_nvm_param {
683 1.4 yamaguch uint8_t command_flags;
684 1.4 yamaguch #define IXL_AQ_NVM_LAST_CMD (1 << 0)
685 1.4 yamaguch #define IXL_AQ_NVM_FLASH_ONLY (1 << 7)
686 1.4 yamaguch uint8_t module_pointer;
687 1.4 yamaguch uint16_t length;
688 1.4 yamaguch uint32_t offset;
689 1.4 yamaguch uint32_t addr_hi;
690 1.4 yamaguch uint32_t addr_lo;
691 1.4 yamaguch } __packed __aligned(4);
692 1.4 yamaguch
693 1.1 yamaguch /* aq response codes */
694 1.1 yamaguch #define IXL_AQ_RC_OK 0 /* success */
695 1.1 yamaguch #define IXL_AQ_RC_EPERM 1 /* Operation not permitted */
696 1.1 yamaguch #define IXL_AQ_RC_ENOENT 2 /* No such element */
697 1.1 yamaguch #define IXL_AQ_RC_ESRCH 3 /* Bad opcode */
698 1.1 yamaguch #define IXL_AQ_RC_EINTR 4 /* operation interrupted */
699 1.1 yamaguch #define IXL_AQ_RC_EIO 5 /* I/O error */
700 1.1 yamaguch #define IXL_AQ_RC_ENXIO 6 /* No such resource */
701 1.1 yamaguch #define IXL_AQ_RC_E2BIG 7 /* Arg too long */
702 1.1 yamaguch #define IXL_AQ_RC_EAGAIN 8 /* Try again */
703 1.1 yamaguch #define IXL_AQ_RC_ENOMEM 9 /* Out of memory */
704 1.1 yamaguch #define IXL_AQ_RC_EACCES 10 /* Permission denied */
705 1.1 yamaguch #define IXL_AQ_RC_EFAULT 11 /* Bad address */
706 1.1 yamaguch #define IXL_AQ_RC_EBUSY 12 /* Device or resource busy */
707 1.1 yamaguch #define IXL_AQ_RC_EEXIST 13 /* object already exists */
708 1.1 yamaguch #define IXL_AQ_RC_EINVAL 14 /* invalid argument */
709 1.1 yamaguch #define IXL_AQ_RC_ENOTTY 15 /* not a typewriter */
710 1.1 yamaguch #define IXL_AQ_RC_ENOSPC 16 /* No space or alloc failure */
711 1.1 yamaguch #define IXL_AQ_RC_ENOSYS 17 /* function not implemented */
712 1.1 yamaguch #define IXL_AQ_RC_ERANGE 18 /* parameter out of range */
713 1.1 yamaguch #define IXL_AQ_RC_EFLUSHED 19 /* cmd flushed due to prev error */
714 1.1 yamaguch #define IXL_AQ_RC_BAD_ADDR 20 /* contains a bad pointer */
715 1.1 yamaguch #define IXL_AQ_RC_EMODE 21 /* not allowed in current mode */
716 1.1 yamaguch #define IXL_AQ_RC_EFBIG 22 /* file too large */
717 1.1 yamaguch
718 1.1 yamaguch struct ixl_tx_desc {
719 1.1 yamaguch uint64_t addr;
720 1.1 yamaguch uint64_t cmd;
721 1.1 yamaguch #define IXL_TX_DESC_DTYPE_SHIFT 0
722 1.1 yamaguch #define IXL_TX_DESC_DTYPE_MASK (0xfULL << IXL_TX_DESC_DTYPE_SHIFT)
723 1.1 yamaguch #define IXL_TX_DESC_DTYPE_DATA (0x0ULL << IXL_TX_DESC_DTYPE_SHIFT)
724 1.1 yamaguch #define IXL_TX_DESC_DTYPE_NOP (0x1ULL << IXL_TX_DESC_DTYPE_SHIFT)
725 1.1 yamaguch #define IXL_TX_DESC_DTYPE_CONTEXT (0x1ULL << IXL_TX_DESC_DTYPE_SHIFT)
726 1.1 yamaguch #define IXL_TX_DESC_DTYPE_FCOE_CTX (0x2ULL << IXL_TX_DESC_DTYPE_SHIFT)
727 1.1 yamaguch #define IXL_TX_DESC_DTYPE_FD (0x8ULL << IXL_TX_DESC_DTYPE_SHIFT)
728 1.1 yamaguch #define IXL_TX_DESC_DTYPE_DDP_CTX (0x9ULL << IXL_TX_DESC_DTYPE_SHIFT)
729 1.1 yamaguch #define IXL_TX_DESC_DTYPE_FLEX_DATA (0xbULL << IXL_TX_DESC_DTYPE_SHIFT)
730 1.1 yamaguch #define IXL_TX_DESC_DTYPE_FLEX_CTX_1 (0xcULL << IXL_TX_DESC_DTYPE_SHIFT)
731 1.1 yamaguch #define IXL_TX_DESC_DTYPE_FLEX_CTX_2 (0xdULL << IXL_TX_DESC_DTYPE_SHIFT)
732 1.1 yamaguch #define IXL_TX_DESC_DTYPE_DONE (0xfULL << IXL_TX_DESC_DTYPE_SHIFT)
733 1.1 yamaguch
734 1.1 yamaguch #define IXL_TX_DESC_CMD_SHIFT 4
735 1.1 yamaguch #define IXL_TX_DESC_CMD_MASK (0x3ffULL << IXL_TX_DESC_CMD_SHIFT)
736 1.1 yamaguch #define IXL_TX_DESC_CMD_EOP (0x001 << IXL_TX_DESC_CMD_SHIFT)
737 1.1 yamaguch #define IXL_TX_DESC_CMD_RS (0x002 << IXL_TX_DESC_CMD_SHIFT)
738 1.1 yamaguch #define IXL_TX_DESC_CMD_ICRC (0x004 << IXL_TX_DESC_CMD_SHIFT)
739 1.1 yamaguch #define IXL_TX_DESC_CMD_IL2TAG1 (0x008 << IXL_TX_DESC_CMD_SHIFT)
740 1.1 yamaguch #define IXL_TX_DESC_CMD_DUMMY (0x010 << IXL_TX_DESC_CMD_SHIFT)
741 1.1 yamaguch #define IXL_TX_DESC_CMD_IIPT_MASK (0x060 << IXL_TX_DESC_CMD_SHIFT)
742 1.1 yamaguch #define IXL_TX_DESC_CMD_IIPT_NONIP (0x000 << IXL_TX_DESC_CMD_SHIFT)
743 1.1 yamaguch #define IXL_TX_DESC_CMD_IIPT_IPV6 (0x020 << IXL_TX_DESC_CMD_SHIFT)
744 1.1 yamaguch #define IXL_TX_DESC_CMD_IIPT_IPV4 (0x040 << IXL_TX_DESC_CMD_SHIFT)
745 1.1 yamaguch #define IXL_TX_DESC_CMD_IIPT_IPV4_CSUM (0x060 << IXL_TX_DESC_CMD_SHIFT)
746 1.1 yamaguch #define IXL_TX_DESC_CMD_FCOET (0x080 << IXL_TX_DESC_CMD_SHIFT)
747 1.1 yamaguch #define IXL_TX_DESC_CMD_L4T_EOFT_MASK (0x300 << IXL_TX_DESC_CMD_SHIFT)
748 1.1 yamaguch #define IXL_TX_DESC_CMD_L4T_EOFT_UNK (0x000 << IXL_TX_DESC_CMD_SHIFT)
749 1.1 yamaguch #define IXL_TX_DESC_CMD_L4T_EOFT_TCP (0x100 << IXL_TX_DESC_CMD_SHIFT)
750 1.1 yamaguch #define IXL_TX_DESC_CMD_L4T_EOFT_SCTP (0x200 << IXL_TX_DESC_CMD_SHIFT)
751 1.1 yamaguch #define IXL_TX_DESC_CMD_L4T_EOFT_UDP (0x300 << IXL_TX_DESC_CMD_SHIFT)
752 1.1 yamaguch
753 1.1 yamaguch #define IXL_TX_DESC_MACLEN_SHIFT 16
754 1.1 yamaguch #define IXL_TX_DESC_MACLEN_MASK (0x7fULL << IXL_TX_DESC_MACLEN_SHIFT)
755 1.1 yamaguch #define IXL_TX_DESC_IPLEN_SHIFT 23
756 1.1 yamaguch #define IXL_TX_DESC_IPLEN_MASK (0x7fULL << IXL_TX_DESC_IPLEN_SHIFT)
757 1.1 yamaguch #define IXL_TX_DESC_L4LEN_SHIFT 30
758 1.1 yamaguch #define IXL_TX_DESC_L4LEN_MASK (0xfULL << IXL_TX_DESC_L4LEN_SHIFT)
759 1.1 yamaguch #define IXL_TX_DESC_FCLEN_SHIFT 30
760 1.1 yamaguch #define IXL_TX_DESC_FCLEN_MASK (0xfULL << IXL_TX_DESC_FCLEN_SHIFT)
761 1.1 yamaguch
762 1.1 yamaguch #define IXL_TX_DESC_BSIZE_SHIFT 34
763 1.1 yamaguch #define IXL_TX_DESC_BSIZE_MAX 0x3fffULL
764 1.1 yamaguch #define IXL_TX_DESC_BSIZE_MASK \
765 1.1 yamaguch (IXL_TX_DESC_BSIZE_MAX << IXL_TX_DESC_BSIZE_SHIFT)
766 1.2 yamaguch #define IXL_TX_DESC_L2TAG1_SHIFT 48
767 1.1 yamaguch } __packed __aligned(16);
768 1.1 yamaguch
769 1.1 yamaguch struct ixl_rx_rd_desc_16 {
770 1.1 yamaguch uint64_t paddr; /* packet addr */
771 1.1 yamaguch uint64_t haddr; /* header addr */
772 1.1 yamaguch } __packed __aligned(16);
773 1.1 yamaguch
774 1.1 yamaguch struct ixl_rx_rd_desc_32 {
775 1.1 yamaguch uint64_t paddr; /* packet addr */
776 1.1 yamaguch uint64_t haddr; /* header addr */
777 1.1 yamaguch uint64_t _reserved1;
778 1.1 yamaguch uint64_t _reserved2;
779 1.1 yamaguch } __packed __aligned(16);
780 1.1 yamaguch
781 1.1 yamaguch struct ixl_rx_wb_desc_16 {
782 1.1 yamaguch uint64_t qword0;
783 1.2 yamaguch #define IXL_RX_DESC_L2TAG1_SHIFT 16
784 1.2 yamaguch #define IXL_RX_DESC_L2TAG1_MASK (0xffffULL << IXL_RX_DESC_L2TAG1_SHIFT)
785 1.1 yamaguch uint64_t qword1;
786 1.1 yamaguch #define IXL_RX_DESC_DD (1 << 0)
787 1.1 yamaguch #define IXL_RX_DESC_EOP (1 << 1)
788 1.1 yamaguch #define IXL_RX_DESC_L2TAG1P (1 << 2)
789 1.1 yamaguch #define IXL_RX_DESC_L3L4P (1 << 3)
790 1.1 yamaguch #define IXL_RX_DESC_CRCP (1 << 4)
791 1.1 yamaguch #define IXL_RX_DESC_TSYNINDX_SHIFT 5 /* TSYNINDX */
792 1.1 yamaguch #define IXL_RX_DESC_TSYNINDX_MASK (7 << IXL_RX_DESC_TSYNINDX_SHIFT)
793 1.1 yamaguch #define IXL_RX_DESC_UMB_SHIFT 9
794 1.1 yamaguch #define IXL_RX_DESC_UMB_MASK (0x3 << IXL_RX_DESC_UMB_SHIFT)
795 1.1 yamaguch #define IXL_RX_DESC_UMB_UCAST (0x0 << IXL_RX_DESC_UMB_SHIFT)
796 1.1 yamaguch #define IXL_RX_DESC_UMB_MCAST (0x1 << IXL_RX_DESC_UMB_SHIFT)
797 1.1 yamaguch #define IXL_RX_DESC_UMB_BCAST (0x2 << IXL_RX_DESC_UMB_SHIFT)
798 1.1 yamaguch #define IXL_RX_DESC_UMB_MIRROR (0x3 << IXL_RX_DESC_UMB_SHIFT)
799 1.1 yamaguch #define IXL_RX_DESC_FLM (1 << 11)
800 1.1 yamaguch #define IXL_RX_DESC_FLTSTAT_SHIFT 12
801 1.1 yamaguch #define IXL_RX_DESC_FLTSTAT_MASK (0x3 << IXL_RX_DESC_FLTSTAT_SHIFT)
802 1.1 yamaguch #define IXL_RX_DESC_FLTSTAT_NODATA (0x0 << IXL_RX_DESC_FLTSTAT_SHIFT)
803 1.1 yamaguch #define IXL_RX_DESC_FLTSTAT_FDFILTID (0x1 << IXL_RX_DESC_FLTSTAT_SHIFT)
804 1.1 yamaguch #define IXL_RX_DESC_FLTSTAT_RSS (0x3 << IXL_RX_DESC_FLTSTAT_SHIFT)
805 1.1 yamaguch #define IXL_RX_DESC_LPBK (1 << 14)
806 1.1 yamaguch #define IXL_RX_DESC_IPV6EXTADD (1 << 15)
807 1.1 yamaguch #define IXL_RX_DESC_INT_UDP_0 (1 << 18)
808 1.1 yamaguch
809 1.1 yamaguch #define IXL_RX_DESC_RXE (1 << 19)
810 1.1 yamaguch #define IXL_RX_DESC_HBO (1 << 21)
811 1.1 yamaguch #define IXL_RX_DESC_IPE (1 << 22)
812 1.1 yamaguch #define IXL_RX_DESC_L4E (1 << 23)
813 1.1 yamaguch #define IXL_RX_DESC_EIPE (1 << 24)
814 1.1 yamaguch #define IXL_RX_DESC_OVERSIZE (1 << 25)
815 1.1 yamaguch
816 1.1 yamaguch #define IXL_RX_DESC_PTYPE_SHIFT 30
817 1.1 yamaguch #define IXL_RX_DESC_PTYPE_MASK (0xffULL << IXL_RX_DESC_PTYPE_SHIFT)
818 1.1 yamaguch
819 1.1 yamaguch #define IXL_RX_DESC_PLEN_SHIFT 38
820 1.1 yamaguch #define IXL_RX_DESC_PLEN_MASK (0x3fffULL << IXL_RX_DESC_PLEN_SHIFT)
821 1.1 yamaguch #define IXL_RX_DESC_HLEN_SHIFT 42
822 1.1 yamaguch #define IXL_RX_DESC_HLEN_MASK (0x7ffULL << IXL_RX_DESC_HLEN_SHIFT)
823 1.1 yamaguch } __packed __aligned(16);
824 1.1 yamaguch
825 1.3 yamaguch enum ixl_rx_desc_ptype {
826 1.3 yamaguch IXL_RX_DESC_PTYPE_IPV4FRAG = 22,
827 1.3 yamaguch IXL_RX_DESC_PTYPE_IPV4 = 23,
828 1.3 yamaguch IXL_RX_DESC_PTYPE_UDPV4 = 24,
829 1.3 yamaguch IXL_RX_DESC_PTYPE_TCPV4 = 26,
830 1.3 yamaguch IXL_RX_DESC_PTYPE_SCTPV4 = 27,
831 1.3 yamaguch IXL_RX_DESC_PTYPE_ICMPV4 = 28,
832 1.3 yamaguch
833 1.3 yamaguch IXL_RX_DESC_PTYPE_IPV6FRAG = 88,
834 1.3 yamaguch IXL_RX_DESC_PTYPE_IPV6 = 89,
835 1.3 yamaguch IXL_RX_DESC_PTYPE_UDPV6 = 90,
836 1.3 yamaguch IXL_RX_DESC_PTYPE_TCPV6 = 92,
837 1.3 yamaguch IXL_RX_DESC_PTYPE_SCTPV6 = 93,
838 1.3 yamaguch IXL_RX_DESC_PTYPE_ICMPV6 = 94,
839 1.3 yamaguch };
840 1.3 yamaguch
841 1.1 yamaguch struct ixl_rx_wb_desc_32 {
842 1.1 yamaguch uint64_t qword0;
843 1.1 yamaguch uint64_t qword1;
844 1.1 yamaguch uint64_t qword2;
845 1.1 yamaguch uint64_t qword3;
846 1.1 yamaguch } __packed __aligned(16);
847 1.1 yamaguch
848 1.1 yamaguch enum i40e_mac_type {
849 1.1 yamaguch I40E_MAC_XL710,
850 1.1 yamaguch I40E_MAC_X722,
851 1.1 yamaguch I40E_MAC_X722_VF,
852 1.1 yamaguch I40E_MAC_VF,
853 1.1 yamaguch I40E_MAC_GENERIC
854 1.1 yamaguch };
855 1.1 yamaguch
856 1.4 yamaguch #define I40E_SR_NVM_DEV_STARTER_VERSION 0x18
857 1.4 yamaguch #define I40E_SR_BOOT_CONFIG_PTR 0x17
858 1.4 yamaguch #define I40E_NVM_OEM_VER_OFF 0x83
859 1.4 yamaguch #define I40E_SR_NVM_EETRACK_LO 0x2D
860 1.4 yamaguch #define I40E_SR_NVM_EETRACK_HI 0x2E
861 1.4 yamaguch
862 1.4 yamaguch #define IXL_NVM_VERSION_LO_SHIFT 0
863 1.4 yamaguch #define IXL_NVM_VERSION_LO_MASK (0xffUL << IXL_NVM_VERSION_LO_SHIFT)
864 1.4 yamaguch #define IXL_NVM_VERSION_HI_SHIFT 12
865 1.4 yamaguch #define IXL_NVM_VERSION_HI_MASK (0xfUL << IXL_NVM_VERSION_HI_SHIFT)
866 1.4 yamaguch #define IXL_NVM_OEMVERSION_SHIFT 24
867 1.4 yamaguch #define IXL_NVM_OEMVERSION_MASK (0xffUL << IXL_NVM_OEMVERSION_SHIFT)
868 1.4 yamaguch #define IXL_NVM_OEMBUILD_SHIFT 8
869 1.4 yamaguch #define IXL_NVM_OEMBUILD_MASK (0xffffUL << IXL_NVM_OEMBUILD_SHIFT)
870 1.4 yamaguch #define IXL_NVM_OEMPATCH_SHIFT 0
871 1.4 yamaguch #define IXL_NVM_OEMPATCH_MASK (0xff << IXL_NVM_OEMPATCH_SHIFT)
872 1.1 yamaguch #endif
873