i40e/i40evf: Update RSS configuration
[deliverable/linux.git] / drivers / net / ethernet / intel / i40e / i40e_common.c
1 /*******************************************************************************
2 *
3 * Intel Ethernet Controller XL710 Family Linux Driver
4 * Copyright(c) 2013 - 2014 Intel Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * The full GNU General Public License is included in this distribution in
19 * the file called "COPYING".
20 *
21 * Contact Information:
22 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 ******************************************************************************/
26
27 #include "i40e_type.h"
28 #include "i40e_adminq.h"
29 #include "i40e_prototype.h"
30 #include "i40e_virtchnl.h"
31
32 /**
33 * i40e_set_mac_type - Sets MAC type
34 * @hw: pointer to the HW structure
35 *
36 * This function sets the mac type of the adapter based on the
37 * vendor ID and device ID stored in the hw structure.
38 **/
39 static i40e_status i40e_set_mac_type(struct i40e_hw *hw)
40 {
41 i40e_status status = 0;
42
43 if (hw->vendor_id == PCI_VENDOR_ID_INTEL) {
44 switch (hw->device_id) {
45 case I40E_DEV_ID_SFP_XL710:
46 case I40E_DEV_ID_QEMU:
47 case I40E_DEV_ID_KX_A:
48 case I40E_DEV_ID_KX_B:
49 case I40E_DEV_ID_KX_C:
50 case I40E_DEV_ID_QSFP_A:
51 case I40E_DEV_ID_QSFP_B:
52 case I40E_DEV_ID_QSFP_C:
53 hw->mac.type = I40E_MAC_XL710;
54 break;
55 case I40E_DEV_ID_VF:
56 case I40E_DEV_ID_VF_HV:
57 hw->mac.type = I40E_MAC_VF;
58 break;
59 default:
60 hw->mac.type = I40E_MAC_GENERIC;
61 break;
62 }
63 } else {
64 status = I40E_ERR_DEVICE_NOT_SUPPORTED;
65 }
66
67 hw_dbg(hw, "i40e_set_mac_type found mac: %d, returns: %d\n",
68 hw->mac.type, status);
69 return status;
70 }
71
72 /**
73 * i40e_debug_aq
74 * @hw: debug mask related to admin queue
75 * @mask: debug mask
76 * @desc: pointer to admin queue descriptor
77 * @buffer: pointer to command buffer
78 *
79 * Dumps debug log about adminq command with descriptor contents.
80 **/
81 void i40e_debug_aq(struct i40e_hw *hw, enum i40e_debug_mask mask, void *desc,
82 void *buffer)
83 {
84 struct i40e_aq_desc *aq_desc = (struct i40e_aq_desc *)desc;
85 u8 *aq_buffer = (u8 *)buffer;
86 u32 data[4];
87 u32 i = 0;
88
89 if ((!(mask & hw->debug_mask)) || (desc == NULL))
90 return;
91
92 i40e_debug(hw, mask,
93 "AQ CMD: opcode 0x%04X, flags 0x%04X, datalen 0x%04X, retval 0x%04X\n",
94 aq_desc->opcode, aq_desc->flags, aq_desc->datalen,
95 aq_desc->retval);
96 i40e_debug(hw, mask, "\tcookie (h,l) 0x%08X 0x%08X\n",
97 aq_desc->cookie_high, aq_desc->cookie_low);
98 i40e_debug(hw, mask, "\tparam (0,1) 0x%08X 0x%08X\n",
99 aq_desc->params.internal.param0,
100 aq_desc->params.internal.param1);
101 i40e_debug(hw, mask, "\taddr (h,l) 0x%08X 0x%08X\n",
102 aq_desc->params.external.addr_high,
103 aq_desc->params.external.addr_low);
104
105 if ((buffer != NULL) && (aq_desc->datalen != 0)) {
106 memset(data, 0, sizeof(data));
107 i40e_debug(hw, mask, "AQ CMD Buffer:\n");
108 for (i = 0; i < le16_to_cpu(aq_desc->datalen); i++) {
109 data[((i % 16) / 4)] |=
110 ((u32)aq_buffer[i]) << (8 * (i % 4));
111 if ((i % 16) == 15) {
112 i40e_debug(hw, mask,
113 "\t0x%04X %08X %08X %08X %08X\n",
114 i - 15, data[0], data[1], data[2],
115 data[3]);
116 memset(data, 0, sizeof(data));
117 }
118 }
119 if ((i % 16) != 0)
120 i40e_debug(hw, mask, "\t0x%04X %08X %08X %08X %08X\n",
121 i - (i % 16), data[0], data[1], data[2],
122 data[3]);
123 }
124 }
125
126 /**
127 * i40e_check_asq_alive
128 * @hw: pointer to the hw struct
129 *
130 * Returns true if Queue is enabled else false.
131 **/
132 bool i40e_check_asq_alive(struct i40e_hw *hw)
133 {
134 if (hw->aq.asq.len)
135 return !!(rd32(hw, hw->aq.asq.len) &
136 I40E_PF_ATQLEN_ATQENABLE_MASK);
137 else
138 return false;
139 }
140
141 /**
142 * i40e_aq_queue_shutdown
143 * @hw: pointer to the hw struct
144 * @unloading: is the driver unloading itself
145 *
146 * Tell the Firmware that we're shutting down the AdminQ and whether
147 * or not the driver is unloading as well.
148 **/
149 i40e_status i40e_aq_queue_shutdown(struct i40e_hw *hw,
150 bool unloading)
151 {
152 struct i40e_aq_desc desc;
153 struct i40e_aqc_queue_shutdown *cmd =
154 (struct i40e_aqc_queue_shutdown *)&desc.params.raw;
155 i40e_status status;
156
157 i40e_fill_default_direct_cmd_desc(&desc,
158 i40e_aqc_opc_queue_shutdown);
159
160 if (unloading)
161 cmd->driver_unloading = cpu_to_le32(I40E_AQ_DRIVER_UNLOADING);
162 status = i40e_asq_send_command(hw, &desc, NULL, 0, NULL);
163
164 return status;
165 }
166
167 /* The i40e_ptype_lookup table is used to convert from the 8-bit ptype in the
168 * hardware to a bit-field that can be used by SW to more easily determine the
169 * packet type.
170 *
171 * Macros are used to shorten the table lines and make this table human
172 * readable.
173 *
174 * We store the PTYPE in the top byte of the bit field - this is just so that
175 * we can check that the table doesn't have a row missing, as the index into
176 * the table should be the PTYPE.
177 *
178 * Typical work flow:
179 *
180 * IF NOT i40e_ptype_lookup[ptype].known
181 * THEN
182 * Packet is unknown
183 * ELSE IF i40e_ptype_lookup[ptype].outer_ip == I40E_RX_PTYPE_OUTER_IP
184 * Use the rest of the fields to look at the tunnels, inner protocols, etc
185 * ELSE
186 * Use the enum i40e_rx_l2_ptype to decode the packet type
187 * ENDIF
188 */
189
190 /* macro to make the table lines short */
191 #define I40E_PTT(PTYPE, OUTER_IP, OUTER_IP_VER, OUTER_FRAG, T, TE, TEF, I, PL)\
192 { PTYPE, \
193 1, \
194 I40E_RX_PTYPE_OUTER_##OUTER_IP, \
195 I40E_RX_PTYPE_OUTER_##OUTER_IP_VER, \
196 I40E_RX_PTYPE_##OUTER_FRAG, \
197 I40E_RX_PTYPE_TUNNEL_##T, \
198 I40E_RX_PTYPE_TUNNEL_END_##TE, \
199 I40E_RX_PTYPE_##TEF, \
200 I40E_RX_PTYPE_INNER_PROT_##I, \
201 I40E_RX_PTYPE_PAYLOAD_LAYER_##PL }
202
203 #define I40E_PTT_UNUSED_ENTRY(PTYPE) \
204 { PTYPE, 0, 0, 0, 0, 0, 0, 0, 0, 0 }
205
206 /* shorter macros makes the table fit but are terse */
207 #define I40E_RX_PTYPE_NOF I40E_RX_PTYPE_NOT_FRAG
208 #define I40E_RX_PTYPE_FRG I40E_RX_PTYPE_FRAG
209 #define I40E_RX_PTYPE_INNER_PROT_TS I40E_RX_PTYPE_INNER_PROT_TIMESYNC
210
211 /* Lookup table mapping the HW PTYPE to the bit field for decoding */
212 struct i40e_rx_ptype_decoded i40e_ptype_lookup[] = {
213 /* L2 Packet types */
214 I40E_PTT_UNUSED_ENTRY(0),
215 I40E_PTT(1, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
216 I40E_PTT(2, L2, NONE, NOF, NONE, NONE, NOF, TS, PAY2),
217 I40E_PTT(3, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
218 I40E_PTT_UNUSED_ENTRY(4),
219 I40E_PTT_UNUSED_ENTRY(5),
220 I40E_PTT(6, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
221 I40E_PTT(7, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
222 I40E_PTT_UNUSED_ENTRY(8),
223 I40E_PTT_UNUSED_ENTRY(9),
224 I40E_PTT(10, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY2),
225 I40E_PTT(11, L2, NONE, NOF, NONE, NONE, NOF, NONE, NONE),
226 I40E_PTT(12, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
227 I40E_PTT(13, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
228 I40E_PTT(14, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
229 I40E_PTT(15, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
230 I40E_PTT(16, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
231 I40E_PTT(17, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
232 I40E_PTT(18, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
233 I40E_PTT(19, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
234 I40E_PTT(20, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
235 I40E_PTT(21, L2, NONE, NOF, NONE, NONE, NOF, NONE, PAY3),
236
237 /* Non Tunneled IPv4 */
238 I40E_PTT(22, IP, IPV4, FRG, NONE, NONE, NOF, NONE, PAY3),
239 I40E_PTT(23, IP, IPV4, NOF, NONE, NONE, NOF, NONE, PAY3),
240 I40E_PTT(24, IP, IPV4, NOF, NONE, NONE, NOF, UDP, PAY4),
241 I40E_PTT_UNUSED_ENTRY(25),
242 I40E_PTT(26, IP, IPV4, NOF, NONE, NONE, NOF, TCP, PAY4),
243 I40E_PTT(27, IP, IPV4, NOF, NONE, NONE, NOF, SCTP, PAY4),
244 I40E_PTT(28, IP, IPV4, NOF, NONE, NONE, NOF, ICMP, PAY4),
245
246 /* IPv4 --> IPv4 */
247 I40E_PTT(29, IP, IPV4, NOF, IP_IP, IPV4, FRG, NONE, PAY3),
248 I40E_PTT(30, IP, IPV4, NOF, IP_IP, IPV4, NOF, NONE, PAY3),
249 I40E_PTT(31, IP, IPV4, NOF, IP_IP, IPV4, NOF, UDP, PAY4),
250 I40E_PTT_UNUSED_ENTRY(32),
251 I40E_PTT(33, IP, IPV4, NOF, IP_IP, IPV4, NOF, TCP, PAY4),
252 I40E_PTT(34, IP, IPV4, NOF, IP_IP, IPV4, NOF, SCTP, PAY4),
253 I40E_PTT(35, IP, IPV4, NOF, IP_IP, IPV4, NOF, ICMP, PAY4),
254
255 /* IPv4 --> IPv6 */
256 I40E_PTT(36, IP, IPV4, NOF, IP_IP, IPV6, FRG, NONE, PAY3),
257 I40E_PTT(37, IP, IPV4, NOF, IP_IP, IPV6, NOF, NONE, PAY3),
258 I40E_PTT(38, IP, IPV4, NOF, IP_IP, IPV6, NOF, UDP, PAY4),
259 I40E_PTT_UNUSED_ENTRY(39),
260 I40E_PTT(40, IP, IPV4, NOF, IP_IP, IPV6, NOF, TCP, PAY4),
261 I40E_PTT(41, IP, IPV4, NOF, IP_IP, IPV6, NOF, SCTP, PAY4),
262 I40E_PTT(42, IP, IPV4, NOF, IP_IP, IPV6, NOF, ICMP, PAY4),
263
264 /* IPv4 --> GRE/NAT */
265 I40E_PTT(43, IP, IPV4, NOF, IP_GRENAT, NONE, NOF, NONE, PAY3),
266
267 /* IPv4 --> GRE/NAT --> IPv4 */
268 I40E_PTT(44, IP, IPV4, NOF, IP_GRENAT, IPV4, FRG, NONE, PAY3),
269 I40E_PTT(45, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, NONE, PAY3),
270 I40E_PTT(46, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, UDP, PAY4),
271 I40E_PTT_UNUSED_ENTRY(47),
272 I40E_PTT(48, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, TCP, PAY4),
273 I40E_PTT(49, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, SCTP, PAY4),
274 I40E_PTT(50, IP, IPV4, NOF, IP_GRENAT, IPV4, NOF, ICMP, PAY4),
275
276 /* IPv4 --> GRE/NAT --> IPv6 */
277 I40E_PTT(51, IP, IPV4, NOF, IP_GRENAT, IPV6, FRG, NONE, PAY3),
278 I40E_PTT(52, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, NONE, PAY3),
279 I40E_PTT(53, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, UDP, PAY4),
280 I40E_PTT_UNUSED_ENTRY(54),
281 I40E_PTT(55, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, TCP, PAY4),
282 I40E_PTT(56, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, SCTP, PAY4),
283 I40E_PTT(57, IP, IPV4, NOF, IP_GRENAT, IPV6, NOF, ICMP, PAY4),
284
285 /* IPv4 --> GRE/NAT --> MAC */
286 I40E_PTT(58, IP, IPV4, NOF, IP_GRENAT_MAC, NONE, NOF, NONE, PAY3),
287
288 /* IPv4 --> GRE/NAT --> MAC --> IPv4 */
289 I40E_PTT(59, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, FRG, NONE, PAY3),
290 I40E_PTT(60, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, NONE, PAY3),
291 I40E_PTT(61, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, UDP, PAY4),
292 I40E_PTT_UNUSED_ENTRY(62),
293 I40E_PTT(63, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, TCP, PAY4),
294 I40E_PTT(64, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, SCTP, PAY4),
295 I40E_PTT(65, IP, IPV4, NOF, IP_GRENAT_MAC, IPV4, NOF, ICMP, PAY4),
296
297 /* IPv4 --> GRE/NAT -> MAC --> IPv6 */
298 I40E_PTT(66, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, FRG, NONE, PAY3),
299 I40E_PTT(67, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, NONE, PAY3),
300 I40E_PTT(68, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, UDP, PAY4),
301 I40E_PTT_UNUSED_ENTRY(69),
302 I40E_PTT(70, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, TCP, PAY4),
303 I40E_PTT(71, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, SCTP, PAY4),
304 I40E_PTT(72, IP, IPV4, NOF, IP_GRENAT_MAC, IPV6, NOF, ICMP, PAY4),
305
306 /* IPv4 --> GRE/NAT --> MAC/VLAN */
307 I40E_PTT(73, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, NONE, NOF, NONE, PAY3),
308
309 /* IPv4 ---> GRE/NAT -> MAC/VLAN --> IPv4 */
310 I40E_PTT(74, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, FRG, NONE, PAY3),
311 I40E_PTT(75, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, NONE, PAY3),
312 I40E_PTT(76, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, UDP, PAY4),
313 I40E_PTT_UNUSED_ENTRY(77),
314 I40E_PTT(78, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, TCP, PAY4),
315 I40E_PTT(79, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, SCTP, PAY4),
316 I40E_PTT(80, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, ICMP, PAY4),
317
318 /* IPv4 -> GRE/NAT -> MAC/VLAN --> IPv6 */
319 I40E_PTT(81, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, FRG, NONE, PAY3),
320 I40E_PTT(82, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, NONE, PAY3),
321 I40E_PTT(83, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, UDP, PAY4),
322 I40E_PTT_UNUSED_ENTRY(84),
323 I40E_PTT(85, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, TCP, PAY4),
324 I40E_PTT(86, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, SCTP, PAY4),
325 I40E_PTT(87, IP, IPV4, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, ICMP, PAY4),
326
327 /* Non Tunneled IPv6 */
328 I40E_PTT(88, IP, IPV6, FRG, NONE, NONE, NOF, NONE, PAY3),
329 I40E_PTT(89, IP, IPV6, NOF, NONE, NONE, NOF, NONE, PAY3),
330 I40E_PTT(90, IP, IPV6, NOF, NONE, NONE, NOF, UDP, PAY3),
331 I40E_PTT_UNUSED_ENTRY(91),
332 I40E_PTT(92, IP, IPV6, NOF, NONE, NONE, NOF, TCP, PAY4),
333 I40E_PTT(93, IP, IPV6, NOF, NONE, NONE, NOF, SCTP, PAY4),
334 I40E_PTT(94, IP, IPV6, NOF, NONE, NONE, NOF, ICMP, PAY4),
335
336 /* IPv6 --> IPv4 */
337 I40E_PTT(95, IP, IPV6, NOF, IP_IP, IPV4, FRG, NONE, PAY3),
338 I40E_PTT(96, IP, IPV6, NOF, IP_IP, IPV4, NOF, NONE, PAY3),
339 I40E_PTT(97, IP, IPV6, NOF, IP_IP, IPV4, NOF, UDP, PAY4),
340 I40E_PTT_UNUSED_ENTRY(98),
341 I40E_PTT(99, IP, IPV6, NOF, IP_IP, IPV4, NOF, TCP, PAY4),
342 I40E_PTT(100, IP, IPV6, NOF, IP_IP, IPV4, NOF, SCTP, PAY4),
343 I40E_PTT(101, IP, IPV6, NOF, IP_IP, IPV4, NOF, ICMP, PAY4),
344
345 /* IPv6 --> IPv6 */
346 I40E_PTT(102, IP, IPV6, NOF, IP_IP, IPV6, FRG, NONE, PAY3),
347 I40E_PTT(103, IP, IPV6, NOF, IP_IP, IPV6, NOF, NONE, PAY3),
348 I40E_PTT(104, IP, IPV6, NOF, IP_IP, IPV6, NOF, UDP, PAY4),
349 I40E_PTT_UNUSED_ENTRY(105),
350 I40E_PTT(106, IP, IPV6, NOF, IP_IP, IPV6, NOF, TCP, PAY4),
351 I40E_PTT(107, IP, IPV6, NOF, IP_IP, IPV6, NOF, SCTP, PAY4),
352 I40E_PTT(108, IP, IPV6, NOF, IP_IP, IPV6, NOF, ICMP, PAY4),
353
354 /* IPv6 --> GRE/NAT */
355 I40E_PTT(109, IP, IPV6, NOF, IP_GRENAT, NONE, NOF, NONE, PAY3),
356
357 /* IPv6 --> GRE/NAT -> IPv4 */
358 I40E_PTT(110, IP, IPV6, NOF, IP_GRENAT, IPV4, FRG, NONE, PAY3),
359 I40E_PTT(111, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, NONE, PAY3),
360 I40E_PTT(112, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, UDP, PAY4),
361 I40E_PTT_UNUSED_ENTRY(113),
362 I40E_PTT(114, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, TCP, PAY4),
363 I40E_PTT(115, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, SCTP, PAY4),
364 I40E_PTT(116, IP, IPV6, NOF, IP_GRENAT, IPV4, NOF, ICMP, PAY4),
365
366 /* IPv6 --> GRE/NAT -> IPv6 */
367 I40E_PTT(117, IP, IPV6, NOF, IP_GRENAT, IPV6, FRG, NONE, PAY3),
368 I40E_PTT(118, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, NONE, PAY3),
369 I40E_PTT(119, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, UDP, PAY4),
370 I40E_PTT_UNUSED_ENTRY(120),
371 I40E_PTT(121, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, TCP, PAY4),
372 I40E_PTT(122, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, SCTP, PAY4),
373 I40E_PTT(123, IP, IPV6, NOF, IP_GRENAT, IPV6, NOF, ICMP, PAY4),
374
375 /* IPv6 --> GRE/NAT -> MAC */
376 I40E_PTT(124, IP, IPV6, NOF, IP_GRENAT_MAC, NONE, NOF, NONE, PAY3),
377
378 /* IPv6 --> GRE/NAT -> MAC -> IPv4 */
379 I40E_PTT(125, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, FRG, NONE, PAY3),
380 I40E_PTT(126, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, NONE, PAY3),
381 I40E_PTT(127, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, UDP, PAY4),
382 I40E_PTT_UNUSED_ENTRY(128),
383 I40E_PTT(129, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, TCP, PAY4),
384 I40E_PTT(130, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, SCTP, PAY4),
385 I40E_PTT(131, IP, IPV6, NOF, IP_GRENAT_MAC, IPV4, NOF, ICMP, PAY4),
386
387 /* IPv6 --> GRE/NAT -> MAC -> IPv6 */
388 I40E_PTT(132, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, FRG, NONE, PAY3),
389 I40E_PTT(133, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, NONE, PAY3),
390 I40E_PTT(134, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, UDP, PAY4),
391 I40E_PTT_UNUSED_ENTRY(135),
392 I40E_PTT(136, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, TCP, PAY4),
393 I40E_PTT(137, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, SCTP, PAY4),
394 I40E_PTT(138, IP, IPV6, NOF, IP_GRENAT_MAC, IPV6, NOF, ICMP, PAY4),
395
396 /* IPv6 --> GRE/NAT -> MAC/VLAN */
397 I40E_PTT(139, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, NONE, NOF, NONE, PAY3),
398
399 /* IPv6 --> GRE/NAT -> MAC/VLAN --> IPv4 */
400 I40E_PTT(140, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, FRG, NONE, PAY3),
401 I40E_PTT(141, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, NONE, PAY3),
402 I40E_PTT(142, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, UDP, PAY4),
403 I40E_PTT_UNUSED_ENTRY(143),
404 I40E_PTT(144, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, TCP, PAY4),
405 I40E_PTT(145, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, SCTP, PAY4),
406 I40E_PTT(146, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV4, NOF, ICMP, PAY4),
407
408 /* IPv6 --> GRE/NAT -> MAC/VLAN --> IPv6 */
409 I40E_PTT(147, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, FRG, NONE, PAY3),
410 I40E_PTT(148, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, NONE, PAY3),
411 I40E_PTT(149, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, UDP, PAY4),
412 I40E_PTT_UNUSED_ENTRY(150),
413 I40E_PTT(151, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, TCP, PAY4),
414 I40E_PTT(152, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, SCTP, PAY4),
415 I40E_PTT(153, IP, IPV6, NOF, IP_GRENAT_MAC_VLAN, IPV6, NOF, ICMP, PAY4),
416
417 /* unused entries */
418 I40E_PTT_UNUSED_ENTRY(154),
419 I40E_PTT_UNUSED_ENTRY(155),
420 I40E_PTT_UNUSED_ENTRY(156),
421 I40E_PTT_UNUSED_ENTRY(157),
422 I40E_PTT_UNUSED_ENTRY(158),
423 I40E_PTT_UNUSED_ENTRY(159),
424
425 I40E_PTT_UNUSED_ENTRY(160),
426 I40E_PTT_UNUSED_ENTRY(161),
427 I40E_PTT_UNUSED_ENTRY(162),
428 I40E_PTT_UNUSED_ENTRY(163),
429 I40E_PTT_UNUSED_ENTRY(164),
430 I40E_PTT_UNUSED_ENTRY(165),
431 I40E_PTT_UNUSED_ENTRY(166),
432 I40E_PTT_UNUSED_ENTRY(167),
433 I40E_PTT_UNUSED_ENTRY(168),
434 I40E_PTT_UNUSED_ENTRY(169),
435
436 I40E_PTT_UNUSED_ENTRY(170),
437 I40E_PTT_UNUSED_ENTRY(171),
438 I40E_PTT_UNUSED_ENTRY(172),
439 I40E_PTT_UNUSED_ENTRY(173),
440 I40E_PTT_UNUSED_ENTRY(174),
441 I40E_PTT_UNUSED_ENTRY(175),
442 I40E_PTT_UNUSED_ENTRY(176),
443 I40E_PTT_UNUSED_ENTRY(177),
444 I40E_PTT_UNUSED_ENTRY(178),
445 I40E_PTT_UNUSED_ENTRY(179),
446
447 I40E_PTT_UNUSED_ENTRY(180),
448 I40E_PTT_UNUSED_ENTRY(181),
449 I40E_PTT_UNUSED_ENTRY(182),
450 I40E_PTT_UNUSED_ENTRY(183),
451 I40E_PTT_UNUSED_ENTRY(184),
452 I40E_PTT_UNUSED_ENTRY(185),
453 I40E_PTT_UNUSED_ENTRY(186),
454 I40E_PTT_UNUSED_ENTRY(187),
455 I40E_PTT_UNUSED_ENTRY(188),
456 I40E_PTT_UNUSED_ENTRY(189),
457
458 I40E_PTT_UNUSED_ENTRY(190),
459 I40E_PTT_UNUSED_ENTRY(191),
460 I40E_PTT_UNUSED_ENTRY(192),
461 I40E_PTT_UNUSED_ENTRY(193),
462 I40E_PTT_UNUSED_ENTRY(194),
463 I40E_PTT_UNUSED_ENTRY(195),
464 I40E_PTT_UNUSED_ENTRY(196),
465 I40E_PTT_UNUSED_ENTRY(197),
466 I40E_PTT_UNUSED_ENTRY(198),
467 I40E_PTT_UNUSED_ENTRY(199),
468
469 I40E_PTT_UNUSED_ENTRY(200),
470 I40E_PTT_UNUSED_ENTRY(201),
471 I40E_PTT_UNUSED_ENTRY(202),
472 I40E_PTT_UNUSED_ENTRY(203),
473 I40E_PTT_UNUSED_ENTRY(204),
474 I40E_PTT_UNUSED_ENTRY(205),
475 I40E_PTT_UNUSED_ENTRY(206),
476 I40E_PTT_UNUSED_ENTRY(207),
477 I40E_PTT_UNUSED_ENTRY(208),
478 I40E_PTT_UNUSED_ENTRY(209),
479
480 I40E_PTT_UNUSED_ENTRY(210),
481 I40E_PTT_UNUSED_ENTRY(211),
482 I40E_PTT_UNUSED_ENTRY(212),
483 I40E_PTT_UNUSED_ENTRY(213),
484 I40E_PTT_UNUSED_ENTRY(214),
485 I40E_PTT_UNUSED_ENTRY(215),
486 I40E_PTT_UNUSED_ENTRY(216),
487 I40E_PTT_UNUSED_ENTRY(217),
488 I40E_PTT_UNUSED_ENTRY(218),
489 I40E_PTT_UNUSED_ENTRY(219),
490
491 I40E_PTT_UNUSED_ENTRY(220),
492 I40E_PTT_UNUSED_ENTRY(221),
493 I40E_PTT_UNUSED_ENTRY(222),
494 I40E_PTT_UNUSED_ENTRY(223),
495 I40E_PTT_UNUSED_ENTRY(224),
496 I40E_PTT_UNUSED_ENTRY(225),
497 I40E_PTT_UNUSED_ENTRY(226),
498 I40E_PTT_UNUSED_ENTRY(227),
499 I40E_PTT_UNUSED_ENTRY(228),
500 I40E_PTT_UNUSED_ENTRY(229),
501
502 I40E_PTT_UNUSED_ENTRY(230),
503 I40E_PTT_UNUSED_ENTRY(231),
504 I40E_PTT_UNUSED_ENTRY(232),
505 I40E_PTT_UNUSED_ENTRY(233),
506 I40E_PTT_UNUSED_ENTRY(234),
507 I40E_PTT_UNUSED_ENTRY(235),
508 I40E_PTT_UNUSED_ENTRY(236),
509 I40E_PTT_UNUSED_ENTRY(237),
510 I40E_PTT_UNUSED_ENTRY(238),
511 I40E_PTT_UNUSED_ENTRY(239),
512
513 I40E_PTT_UNUSED_ENTRY(240),
514 I40E_PTT_UNUSED_ENTRY(241),
515 I40E_PTT_UNUSED_ENTRY(242),
516 I40E_PTT_UNUSED_ENTRY(243),
517 I40E_PTT_UNUSED_ENTRY(244),
518 I40E_PTT_UNUSED_ENTRY(245),
519 I40E_PTT_UNUSED_ENTRY(246),
520 I40E_PTT_UNUSED_ENTRY(247),
521 I40E_PTT_UNUSED_ENTRY(248),
522 I40E_PTT_UNUSED_ENTRY(249),
523
524 I40E_PTT_UNUSED_ENTRY(250),
525 I40E_PTT_UNUSED_ENTRY(251),
526 I40E_PTT_UNUSED_ENTRY(252),
527 I40E_PTT_UNUSED_ENTRY(253),
528 I40E_PTT_UNUSED_ENTRY(254),
529 I40E_PTT_UNUSED_ENTRY(255)
530 };
531
532
533 /**
534 * i40e_init_shared_code - Initialize the shared code
535 * @hw: pointer to hardware structure
536 *
537 * This assigns the MAC type and PHY code and inits the NVM.
538 * Does not touch the hardware. This function must be called prior to any
539 * other function in the shared code. The i40e_hw structure should be
540 * memset to 0 prior to calling this function. The following fields in
541 * hw structure should be filled in prior to calling this function:
542 * hw_addr, back, device_id, vendor_id, subsystem_device_id,
543 * subsystem_vendor_id, and revision_id
544 **/
545 i40e_status i40e_init_shared_code(struct i40e_hw *hw)
546 {
547 i40e_status status = 0;
548 u32 reg;
549
550 i40e_set_mac_type(hw);
551
552 switch (hw->mac.type) {
553 case I40E_MAC_XL710:
554 break;
555 default:
556 return I40E_ERR_DEVICE_NOT_SUPPORTED;
557 break;
558 }
559
560 hw->phy.get_link_info = true;
561
562 /* Determine port number */
563 reg = rd32(hw, I40E_PFGEN_PORTNUM);
564 reg = ((reg & I40E_PFGEN_PORTNUM_PORT_NUM_MASK) >>
565 I40E_PFGEN_PORTNUM_PORT_NUM_SHIFT);
566 hw->port = (u8)reg;
567
568 /* Determine the PF number based on the PCI fn */
569 reg = rd32(hw, I40E_GLPCI_CAPSUP);
570 if (reg & I40E_GLPCI_CAPSUP_ARI_EN_MASK)
571 hw->pf_id = (u8)((hw->bus.device << 3) | hw->bus.func);
572 else
573 hw->pf_id = (u8)hw->bus.func;
574
575 status = i40e_init_nvm(hw);
576 return status;
577 }
578
579 /**
580 * i40e_aq_mac_address_read - Retrieve the MAC addresses
581 * @hw: pointer to the hw struct
582 * @flags: a return indicator of what addresses were added to the addr store
583 * @addrs: the requestor's mac addr store
584 * @cmd_details: pointer to command details structure or NULL
585 **/
586 static i40e_status i40e_aq_mac_address_read(struct i40e_hw *hw,
587 u16 *flags,
588 struct i40e_aqc_mac_address_read_data *addrs,
589 struct i40e_asq_cmd_details *cmd_details)
590 {
591 struct i40e_aq_desc desc;
592 struct i40e_aqc_mac_address_read *cmd_data =
593 (struct i40e_aqc_mac_address_read *)&desc.params.raw;
594 i40e_status status;
595
596 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_mac_address_read);
597 desc.flags |= cpu_to_le16(I40E_AQ_FLAG_BUF);
598
599 status = i40e_asq_send_command(hw, &desc, addrs,
600 sizeof(*addrs), cmd_details);
601 *flags = le16_to_cpu(cmd_data->command_flags);
602
603 return status;
604 }
605
606 /**
607 * i40e_aq_mac_address_write - Change the MAC addresses
608 * @hw: pointer to the hw struct
609 * @flags: indicates which MAC to be written
610 * @mac_addr: address to write
611 * @cmd_details: pointer to command details structure or NULL
612 **/
613 i40e_status i40e_aq_mac_address_write(struct i40e_hw *hw,
614 u16 flags, u8 *mac_addr,
615 struct i40e_asq_cmd_details *cmd_details)
616 {
617 struct i40e_aq_desc desc;
618 struct i40e_aqc_mac_address_write *cmd_data =
619 (struct i40e_aqc_mac_address_write *)&desc.params.raw;
620 i40e_status status;
621
622 i40e_fill_default_direct_cmd_desc(&desc,
623 i40e_aqc_opc_mac_address_write);
624 cmd_data->command_flags = cpu_to_le16(flags);
625 cmd_data->mac_sah = cpu_to_le16((u16)mac_addr[0] << 8 | mac_addr[1]);
626 cmd_data->mac_sal = cpu_to_le32(((u32)mac_addr[2] << 24) |
627 ((u32)mac_addr[3] << 16) |
628 ((u32)mac_addr[4] << 8) |
629 mac_addr[5]);
630
631 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
632
633 return status;
634 }
635
636 /**
637 * i40e_get_mac_addr - get MAC address
638 * @hw: pointer to the HW structure
639 * @mac_addr: pointer to MAC address
640 *
641 * Reads the adapter's MAC address from register
642 **/
643 i40e_status i40e_get_mac_addr(struct i40e_hw *hw, u8 *mac_addr)
644 {
645 struct i40e_aqc_mac_address_read_data addrs;
646 i40e_status status;
647 u16 flags = 0;
648
649 status = i40e_aq_mac_address_read(hw, &flags, &addrs, NULL);
650
651 if (flags & I40E_AQC_LAN_ADDR_VALID)
652 memcpy(mac_addr, &addrs.pf_lan_mac, sizeof(addrs.pf_lan_mac));
653
654 return status;
655 }
656
657 /**
658 * i40e_pre_tx_queue_cfg - pre tx queue configure
659 * @hw: pointer to the HW structure
660 * @queue: target pf queue index
661 * @enable: state change request
662 *
663 * Handles hw requirement to indicate intention to enable
664 * or disable target queue.
665 **/
666 void i40e_pre_tx_queue_cfg(struct i40e_hw *hw, u32 queue, bool enable)
667 {
668 u32 abs_queue_idx = hw->func_caps.base_queue + queue;
669 u32 reg_block = 0;
670 u32 reg_val;
671
672 if (abs_queue_idx >= 128)
673 reg_block = abs_queue_idx / 128;
674
675 reg_val = rd32(hw, I40E_GLLAN_TXPRE_QDIS(reg_block));
676 reg_val &= ~I40E_GLLAN_TXPRE_QDIS_QINDX_MASK;
677 reg_val |= (abs_queue_idx << I40E_GLLAN_TXPRE_QDIS_QINDX_SHIFT);
678
679 if (enable)
680 reg_val |= I40E_GLLAN_TXPRE_QDIS_CLEAR_QDIS_MASK;
681 else
682 reg_val |= I40E_GLLAN_TXPRE_QDIS_SET_QDIS_MASK;
683
684 wr32(hw, I40E_GLLAN_TXPRE_QDIS(reg_block), reg_val);
685 }
686
687 /**
688 * i40e_get_media_type - Gets media type
689 * @hw: pointer to the hardware structure
690 **/
691 static enum i40e_media_type i40e_get_media_type(struct i40e_hw *hw)
692 {
693 enum i40e_media_type media;
694
695 switch (hw->phy.link_info.phy_type) {
696 case I40E_PHY_TYPE_10GBASE_SR:
697 case I40E_PHY_TYPE_10GBASE_LR:
698 case I40E_PHY_TYPE_40GBASE_SR4:
699 case I40E_PHY_TYPE_40GBASE_LR4:
700 media = I40E_MEDIA_TYPE_FIBER;
701 break;
702 case I40E_PHY_TYPE_100BASE_TX:
703 case I40E_PHY_TYPE_1000BASE_T:
704 case I40E_PHY_TYPE_10GBASE_T:
705 media = I40E_MEDIA_TYPE_BASET;
706 break;
707 case I40E_PHY_TYPE_10GBASE_CR1_CU:
708 case I40E_PHY_TYPE_40GBASE_CR4_CU:
709 case I40E_PHY_TYPE_10GBASE_CR1:
710 case I40E_PHY_TYPE_40GBASE_CR4:
711 case I40E_PHY_TYPE_10GBASE_SFPP_CU:
712 media = I40E_MEDIA_TYPE_DA;
713 break;
714 case I40E_PHY_TYPE_1000BASE_KX:
715 case I40E_PHY_TYPE_10GBASE_KX4:
716 case I40E_PHY_TYPE_10GBASE_KR:
717 case I40E_PHY_TYPE_40GBASE_KR4:
718 media = I40E_MEDIA_TYPE_BACKPLANE;
719 break;
720 case I40E_PHY_TYPE_SGMII:
721 case I40E_PHY_TYPE_XAUI:
722 case I40E_PHY_TYPE_XFI:
723 case I40E_PHY_TYPE_XLAUI:
724 case I40E_PHY_TYPE_XLPPI:
725 default:
726 media = I40E_MEDIA_TYPE_UNKNOWN;
727 break;
728 }
729
730 return media;
731 }
732
733 #define I40E_PF_RESET_WAIT_COUNT_A0 200
734 #define I40E_PF_RESET_WAIT_COUNT 100
735 /**
736 * i40e_pf_reset - Reset the PF
737 * @hw: pointer to the hardware structure
738 *
739 * Assuming someone else has triggered a global reset,
740 * assure the global reset is complete and then reset the PF
741 **/
742 i40e_status i40e_pf_reset(struct i40e_hw *hw)
743 {
744 u32 cnt = 0;
745 u32 cnt1 = 0;
746 u32 reg = 0;
747 u32 grst_del;
748
749 /* Poll for Global Reset steady state in case of recent GRST.
750 * The grst delay value is in 100ms units, and we'll wait a
751 * couple counts longer to be sure we don't just miss the end.
752 */
753 grst_del = rd32(hw, I40E_GLGEN_RSTCTL) & I40E_GLGEN_RSTCTL_GRSTDEL_MASK
754 >> I40E_GLGEN_RSTCTL_GRSTDEL_SHIFT;
755 for (cnt = 0; cnt < grst_del + 2; cnt++) {
756 reg = rd32(hw, I40E_GLGEN_RSTAT);
757 if (!(reg & I40E_GLGEN_RSTAT_DEVSTATE_MASK))
758 break;
759 msleep(100);
760 }
761 if (reg & I40E_GLGEN_RSTAT_DEVSTATE_MASK) {
762 hw_dbg(hw, "Global reset polling failed to complete.\n");
763 return I40E_ERR_RESET_FAILED;
764 }
765
766 /* Now Wait for the FW to be ready */
767 for (cnt1 = 0; cnt1 < I40E_PF_RESET_WAIT_COUNT; cnt1++) {
768 reg = rd32(hw, I40E_GLNVM_ULD);
769 reg &= (I40E_GLNVM_ULD_CONF_CORE_DONE_MASK |
770 I40E_GLNVM_ULD_CONF_GLOBAL_DONE_MASK);
771 if (reg == (I40E_GLNVM_ULD_CONF_CORE_DONE_MASK |
772 I40E_GLNVM_ULD_CONF_GLOBAL_DONE_MASK)) {
773 hw_dbg(hw, "Core and Global modules ready %d\n", cnt1);
774 break;
775 }
776 usleep_range(10000, 20000);
777 }
778 if (!(reg & (I40E_GLNVM_ULD_CONF_CORE_DONE_MASK |
779 I40E_GLNVM_ULD_CONF_GLOBAL_DONE_MASK))) {
780 hw_dbg(hw, "wait for FW Reset complete timedout\n");
781 hw_dbg(hw, "I40E_GLNVM_ULD = 0x%x\n", reg);
782 return I40E_ERR_RESET_FAILED;
783 }
784
785 /* If there was a Global Reset in progress when we got here,
786 * we don't need to do the PF Reset
787 */
788 if (!cnt) {
789 if (hw->revision_id == 0)
790 cnt = I40E_PF_RESET_WAIT_COUNT_A0;
791 else
792 cnt = I40E_PF_RESET_WAIT_COUNT;
793 reg = rd32(hw, I40E_PFGEN_CTRL);
794 wr32(hw, I40E_PFGEN_CTRL,
795 (reg | I40E_PFGEN_CTRL_PFSWR_MASK));
796 for (; cnt; cnt--) {
797 reg = rd32(hw, I40E_PFGEN_CTRL);
798 if (!(reg & I40E_PFGEN_CTRL_PFSWR_MASK))
799 break;
800 usleep_range(1000, 2000);
801 }
802 if (reg & I40E_PFGEN_CTRL_PFSWR_MASK) {
803 hw_dbg(hw, "PF reset polling failed to complete.\n");
804 return I40E_ERR_RESET_FAILED;
805 }
806 }
807
808 i40e_clear_pxe_mode(hw);
809
810 return 0;
811 }
812
813 /**
814 * i40e_clear_pxe_mode - clear pxe operations mode
815 * @hw: pointer to the hw struct
816 *
817 * Make sure all PXE mode settings are cleared, including things
818 * like descriptor fetch/write-back mode.
819 **/
820 void i40e_clear_pxe_mode(struct i40e_hw *hw)
821 {
822 u32 reg;
823
824 if (i40e_check_asq_alive(hw))
825 i40e_aq_clear_pxe_mode(hw, NULL);
826
827 /* Clear single descriptor fetch/write-back mode */
828 reg = rd32(hw, I40E_GLLAN_RCTL_0);
829
830 if (hw->revision_id == 0) {
831 /* As a work around clear PXE_MODE instead of setting it */
832 wr32(hw, I40E_GLLAN_RCTL_0, (reg & (~I40E_GLLAN_RCTL_0_PXE_MODE_MASK)));
833 } else {
834 wr32(hw, I40E_GLLAN_RCTL_0, (reg | I40E_GLLAN_RCTL_0_PXE_MODE_MASK));
835 }
836 }
837
838 /**
839 * i40e_led_is_mine - helper to find matching led
840 * @hw: pointer to the hw struct
841 * @idx: index into GPIO registers
842 *
843 * returns: 0 if no match, otherwise the value of the GPIO_CTL register
844 */
845 static u32 i40e_led_is_mine(struct i40e_hw *hw, int idx)
846 {
847 u32 gpio_val = 0;
848 u32 port;
849
850 if (!hw->func_caps.led[idx])
851 return 0;
852
853 gpio_val = rd32(hw, I40E_GLGEN_GPIO_CTL(idx));
854 port = (gpio_val & I40E_GLGEN_GPIO_CTL_PRT_NUM_MASK) >>
855 I40E_GLGEN_GPIO_CTL_PRT_NUM_SHIFT;
856
857 /* if PRT_NUM_NA is 1 then this LED is not port specific, OR
858 * if it is not our port then ignore
859 */
860 if ((gpio_val & I40E_GLGEN_GPIO_CTL_PRT_NUM_NA_MASK) ||
861 (port != hw->port))
862 return 0;
863
864 return gpio_val;
865 }
866
867 #define I40E_LED0 22
868 #define I40E_LINK_ACTIVITY 0xC
869
870 /**
871 * i40e_led_get - return current on/off mode
872 * @hw: pointer to the hw struct
873 *
874 * The value returned is the 'mode' field as defined in the
875 * GPIO register definitions: 0x0 = off, 0xf = on, and other
876 * values are variations of possible behaviors relating to
877 * blink, link, and wire.
878 **/
879 u32 i40e_led_get(struct i40e_hw *hw)
880 {
881 u32 mode = 0;
882 int i;
883
884 /* as per the documentation GPIO 22-29 are the LED
885 * GPIO pins named LED0..LED7
886 */
887 for (i = I40E_LED0; i <= I40E_GLGEN_GPIO_CTL_MAX_INDEX; i++) {
888 u32 gpio_val = i40e_led_is_mine(hw, i);
889
890 if (!gpio_val)
891 continue;
892
893 mode = (gpio_val & I40E_GLGEN_GPIO_CTL_LED_MODE_MASK) >>
894 I40E_GLGEN_GPIO_CTL_LED_MODE_SHIFT;
895 break;
896 }
897
898 return mode;
899 }
900
901 /**
902 * i40e_led_set - set new on/off mode
903 * @hw: pointer to the hw struct
904 * @mode: 0=off, 0xf=on (else see manual for mode details)
905 * @blink: true if the LED should blink when on, false if steady
906 *
907 * if this function is used to turn on the blink it should
908 * be used to disable the blink when restoring the original state.
909 **/
910 void i40e_led_set(struct i40e_hw *hw, u32 mode, bool blink)
911 {
912 int i;
913
914 if (mode & 0xfffffff0)
915 hw_dbg(hw, "invalid mode passed in %X\n", mode);
916
917 /* as per the documentation GPIO 22-29 are the LED
918 * GPIO pins named LED0..LED7
919 */
920 for (i = I40E_LED0; i <= I40E_GLGEN_GPIO_CTL_MAX_INDEX; i++) {
921 u32 gpio_val = i40e_led_is_mine(hw, i);
922
923 if (!gpio_val)
924 continue;
925
926 gpio_val &= ~I40E_GLGEN_GPIO_CTL_LED_MODE_MASK;
927 /* this & is a bit of paranoia, but serves as a range check */
928 gpio_val |= ((mode << I40E_GLGEN_GPIO_CTL_LED_MODE_SHIFT) &
929 I40E_GLGEN_GPIO_CTL_LED_MODE_MASK);
930
931 if (mode == I40E_LINK_ACTIVITY)
932 blink = false;
933
934 gpio_val |= (blink ? 1 : 0) <<
935 I40E_GLGEN_GPIO_CTL_LED_BLINK_SHIFT;
936
937 wr32(hw, I40E_GLGEN_GPIO_CTL(i), gpio_val);
938 break;
939 }
940 }
941
942 /* Admin command wrappers */
943
944 /**
945 * i40e_aq_clear_pxe_mode
946 * @hw: pointer to the hw struct
947 * @cmd_details: pointer to command details structure or NULL
948 *
949 * Tell the firmware that the driver is taking over from PXE
950 **/
951 i40e_status i40e_aq_clear_pxe_mode(struct i40e_hw *hw,
952 struct i40e_asq_cmd_details *cmd_details)
953 {
954 i40e_status status;
955 struct i40e_aq_desc desc;
956 struct i40e_aqc_clear_pxe *cmd =
957 (struct i40e_aqc_clear_pxe *)&desc.params.raw;
958
959 i40e_fill_default_direct_cmd_desc(&desc,
960 i40e_aqc_opc_clear_pxe_mode);
961
962 cmd->rx_cnt = 0x2;
963
964 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
965
966 wr32(hw, I40E_GLLAN_RCTL_0, 0x1);
967
968 return status;
969 }
970
971 /**
972 * i40e_aq_set_link_restart_an
973 * @hw: pointer to the hw struct
974 * @cmd_details: pointer to command details structure or NULL
975 *
976 * Sets up the link and restarts the Auto-Negotiation over the link.
977 **/
978 i40e_status i40e_aq_set_link_restart_an(struct i40e_hw *hw,
979 struct i40e_asq_cmd_details *cmd_details)
980 {
981 struct i40e_aq_desc desc;
982 struct i40e_aqc_set_link_restart_an *cmd =
983 (struct i40e_aqc_set_link_restart_an *)&desc.params.raw;
984 i40e_status status;
985
986 i40e_fill_default_direct_cmd_desc(&desc,
987 i40e_aqc_opc_set_link_restart_an);
988
989 cmd->command = I40E_AQ_PHY_RESTART_AN;
990
991 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
992
993 return status;
994 }
995
996 /**
997 * i40e_aq_get_link_info
998 * @hw: pointer to the hw struct
999 * @enable_lse: enable/disable LinkStatusEvent reporting
1000 * @link: pointer to link status structure - optional
1001 * @cmd_details: pointer to command details structure or NULL
1002 *
1003 * Returns the link status of the adapter.
1004 **/
1005 i40e_status i40e_aq_get_link_info(struct i40e_hw *hw,
1006 bool enable_lse, struct i40e_link_status *link,
1007 struct i40e_asq_cmd_details *cmd_details)
1008 {
1009 struct i40e_aq_desc desc;
1010 struct i40e_aqc_get_link_status *resp =
1011 (struct i40e_aqc_get_link_status *)&desc.params.raw;
1012 struct i40e_link_status *hw_link_info = &hw->phy.link_info;
1013 i40e_status status;
1014 u16 command_flags;
1015
1016 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_get_link_status);
1017
1018 if (enable_lse)
1019 command_flags = I40E_AQ_LSE_ENABLE;
1020 else
1021 command_flags = I40E_AQ_LSE_DISABLE;
1022 resp->command_flags = cpu_to_le16(command_flags);
1023
1024 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1025
1026 if (status)
1027 goto aq_get_link_info_exit;
1028
1029 /* save off old link status information */
1030 hw->phy.link_info_old = *hw_link_info;
1031
1032 /* update link status */
1033 hw_link_info->phy_type = (enum i40e_aq_phy_type)resp->phy_type;
1034 hw->phy.media_type = i40e_get_media_type(hw);
1035 hw_link_info->link_speed = (enum i40e_aq_link_speed)resp->link_speed;
1036 hw_link_info->link_info = resp->link_info;
1037 hw_link_info->an_info = resp->an_info;
1038 hw_link_info->ext_info = resp->ext_info;
1039 hw_link_info->loopback = resp->loopback;
1040 hw_link_info->max_frame_size = le16_to_cpu(resp->max_frame_size);
1041 hw_link_info->pacing = resp->config & I40E_AQ_CONFIG_PACING_MASK;
1042
1043 if (resp->config & I40E_AQ_CONFIG_CRC_ENA)
1044 hw_link_info->crc_enable = true;
1045 else
1046 hw_link_info->crc_enable = false;
1047
1048 if (resp->command_flags & cpu_to_le16(I40E_AQ_LSE_ENABLE))
1049 hw_link_info->lse_enable = true;
1050 else
1051 hw_link_info->lse_enable = false;
1052
1053 /* save link status information */
1054 if (link)
1055 *link = *hw_link_info;
1056
1057 /* flag cleared so helper functions don't call AQ again */
1058 hw->phy.get_link_info = false;
1059
1060 aq_get_link_info_exit:
1061 return status;
1062 }
1063
1064 /**
1065 * i40e_aq_add_vsi
1066 * @hw: pointer to the hw struct
1067 * @vsi_ctx: pointer to a vsi context struct
1068 * @cmd_details: pointer to command details structure or NULL
1069 *
1070 * Add a VSI context to the hardware.
1071 **/
1072 i40e_status i40e_aq_add_vsi(struct i40e_hw *hw,
1073 struct i40e_vsi_context *vsi_ctx,
1074 struct i40e_asq_cmd_details *cmd_details)
1075 {
1076 struct i40e_aq_desc desc;
1077 struct i40e_aqc_add_get_update_vsi *cmd =
1078 (struct i40e_aqc_add_get_update_vsi *)&desc.params.raw;
1079 struct i40e_aqc_add_get_update_vsi_completion *resp =
1080 (struct i40e_aqc_add_get_update_vsi_completion *)
1081 &desc.params.raw;
1082 i40e_status status;
1083
1084 i40e_fill_default_direct_cmd_desc(&desc,
1085 i40e_aqc_opc_add_vsi);
1086
1087 cmd->uplink_seid = cpu_to_le16(vsi_ctx->uplink_seid);
1088 cmd->connection_type = vsi_ctx->connection_type;
1089 cmd->vf_id = vsi_ctx->vf_num;
1090 cmd->vsi_flags = cpu_to_le16(vsi_ctx->flags);
1091
1092 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
1093
1094 status = i40e_asq_send_command(hw, &desc, &vsi_ctx->info,
1095 sizeof(vsi_ctx->info), cmd_details);
1096
1097 if (status)
1098 goto aq_add_vsi_exit;
1099
1100 vsi_ctx->seid = le16_to_cpu(resp->seid);
1101 vsi_ctx->vsi_number = le16_to_cpu(resp->vsi_number);
1102 vsi_ctx->vsis_allocated = le16_to_cpu(resp->vsi_used);
1103 vsi_ctx->vsis_unallocated = le16_to_cpu(resp->vsi_free);
1104
1105 aq_add_vsi_exit:
1106 return status;
1107 }
1108
1109 /**
1110 * i40e_aq_set_vsi_unicast_promiscuous
1111 * @hw: pointer to the hw struct
1112 * @seid: vsi number
1113 * @set: set unicast promiscuous enable/disable
1114 * @cmd_details: pointer to command details structure or NULL
1115 **/
1116 i40e_status i40e_aq_set_vsi_unicast_promiscuous(struct i40e_hw *hw,
1117 u16 seid, bool set,
1118 struct i40e_asq_cmd_details *cmd_details)
1119 {
1120 struct i40e_aq_desc desc;
1121 struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
1122 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
1123 i40e_status status;
1124 u16 flags = 0;
1125
1126 i40e_fill_default_direct_cmd_desc(&desc,
1127 i40e_aqc_opc_set_vsi_promiscuous_modes);
1128
1129 if (set)
1130 flags |= I40E_AQC_SET_VSI_PROMISC_UNICAST;
1131
1132 cmd->promiscuous_flags = cpu_to_le16(flags);
1133
1134 cmd->valid_flags = cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_UNICAST);
1135
1136 cmd->seid = cpu_to_le16(seid);
1137 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1138
1139 return status;
1140 }
1141
1142 /**
1143 * i40e_aq_set_vsi_multicast_promiscuous
1144 * @hw: pointer to the hw struct
1145 * @seid: vsi number
1146 * @set: set multicast promiscuous enable/disable
1147 * @cmd_details: pointer to command details structure or NULL
1148 **/
1149 i40e_status i40e_aq_set_vsi_multicast_promiscuous(struct i40e_hw *hw,
1150 u16 seid, bool set, struct i40e_asq_cmd_details *cmd_details)
1151 {
1152 struct i40e_aq_desc desc;
1153 struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
1154 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
1155 i40e_status status;
1156 u16 flags = 0;
1157
1158 i40e_fill_default_direct_cmd_desc(&desc,
1159 i40e_aqc_opc_set_vsi_promiscuous_modes);
1160
1161 if (set)
1162 flags |= I40E_AQC_SET_VSI_PROMISC_MULTICAST;
1163
1164 cmd->promiscuous_flags = cpu_to_le16(flags);
1165
1166 cmd->valid_flags = cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_MULTICAST);
1167
1168 cmd->seid = cpu_to_le16(seid);
1169 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1170
1171 return status;
1172 }
1173
1174 /**
1175 * i40e_aq_set_vsi_broadcast
1176 * @hw: pointer to the hw struct
1177 * @seid: vsi number
1178 * @set_filter: true to set filter, false to clear filter
1179 * @cmd_details: pointer to command details structure or NULL
1180 *
1181 * Set or clear the broadcast promiscuous flag (filter) for a given VSI.
1182 **/
1183 i40e_status i40e_aq_set_vsi_broadcast(struct i40e_hw *hw,
1184 u16 seid, bool set_filter,
1185 struct i40e_asq_cmd_details *cmd_details)
1186 {
1187 struct i40e_aq_desc desc;
1188 struct i40e_aqc_set_vsi_promiscuous_modes *cmd =
1189 (struct i40e_aqc_set_vsi_promiscuous_modes *)&desc.params.raw;
1190 i40e_status status;
1191
1192 i40e_fill_default_direct_cmd_desc(&desc,
1193 i40e_aqc_opc_set_vsi_promiscuous_modes);
1194
1195 if (set_filter)
1196 cmd->promiscuous_flags
1197 |= cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_BROADCAST);
1198 else
1199 cmd->promiscuous_flags
1200 &= cpu_to_le16(~I40E_AQC_SET_VSI_PROMISC_BROADCAST);
1201
1202 cmd->valid_flags = cpu_to_le16(I40E_AQC_SET_VSI_PROMISC_BROADCAST);
1203 cmd->seid = cpu_to_le16(seid);
1204 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1205
1206 return status;
1207 }
1208
1209 /**
1210 * i40e_get_vsi_params - get VSI configuration info
1211 * @hw: pointer to the hw struct
1212 * @vsi_ctx: pointer to a vsi context struct
1213 * @cmd_details: pointer to command details structure or NULL
1214 **/
1215 i40e_status i40e_aq_get_vsi_params(struct i40e_hw *hw,
1216 struct i40e_vsi_context *vsi_ctx,
1217 struct i40e_asq_cmd_details *cmd_details)
1218 {
1219 struct i40e_aq_desc desc;
1220 struct i40e_aqc_add_get_update_vsi *cmd =
1221 (struct i40e_aqc_add_get_update_vsi *)&desc.params.raw;
1222 struct i40e_aqc_add_get_update_vsi_completion *resp =
1223 (struct i40e_aqc_add_get_update_vsi_completion *)
1224 &desc.params.raw;
1225 i40e_status status;
1226
1227 i40e_fill_default_direct_cmd_desc(&desc,
1228 i40e_aqc_opc_get_vsi_parameters);
1229
1230 cmd->uplink_seid = cpu_to_le16(vsi_ctx->seid);
1231
1232 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
1233
1234 status = i40e_asq_send_command(hw, &desc, &vsi_ctx->info,
1235 sizeof(vsi_ctx->info), NULL);
1236
1237 if (status)
1238 goto aq_get_vsi_params_exit;
1239
1240 vsi_ctx->seid = le16_to_cpu(resp->seid);
1241 vsi_ctx->vsi_number = le16_to_cpu(resp->vsi_number);
1242 vsi_ctx->vsis_allocated = le16_to_cpu(resp->vsi_used);
1243 vsi_ctx->vsis_unallocated = le16_to_cpu(resp->vsi_free);
1244
1245 aq_get_vsi_params_exit:
1246 return status;
1247 }
1248
1249 /**
1250 * i40e_aq_update_vsi_params
1251 * @hw: pointer to the hw struct
1252 * @vsi_ctx: pointer to a vsi context struct
1253 * @cmd_details: pointer to command details structure or NULL
1254 *
1255 * Update a VSI context.
1256 **/
1257 i40e_status i40e_aq_update_vsi_params(struct i40e_hw *hw,
1258 struct i40e_vsi_context *vsi_ctx,
1259 struct i40e_asq_cmd_details *cmd_details)
1260 {
1261 struct i40e_aq_desc desc;
1262 struct i40e_aqc_add_get_update_vsi *cmd =
1263 (struct i40e_aqc_add_get_update_vsi *)&desc.params.raw;
1264 i40e_status status;
1265
1266 i40e_fill_default_direct_cmd_desc(&desc,
1267 i40e_aqc_opc_update_vsi_parameters);
1268 cmd->uplink_seid = cpu_to_le16(vsi_ctx->seid);
1269
1270 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
1271
1272 status = i40e_asq_send_command(hw, &desc, &vsi_ctx->info,
1273 sizeof(vsi_ctx->info), cmd_details);
1274
1275 return status;
1276 }
1277
1278 /**
1279 * i40e_aq_get_switch_config
1280 * @hw: pointer to the hardware structure
1281 * @buf: pointer to the result buffer
1282 * @buf_size: length of input buffer
1283 * @start_seid: seid to start for the report, 0 == beginning
1284 * @cmd_details: pointer to command details structure or NULL
1285 *
1286 * Fill the buf with switch configuration returned from AdminQ command
1287 **/
1288 i40e_status i40e_aq_get_switch_config(struct i40e_hw *hw,
1289 struct i40e_aqc_get_switch_config_resp *buf,
1290 u16 buf_size, u16 *start_seid,
1291 struct i40e_asq_cmd_details *cmd_details)
1292 {
1293 struct i40e_aq_desc desc;
1294 struct i40e_aqc_switch_seid *scfg =
1295 (struct i40e_aqc_switch_seid *)&desc.params.raw;
1296 i40e_status status;
1297
1298 i40e_fill_default_direct_cmd_desc(&desc,
1299 i40e_aqc_opc_get_switch_config);
1300 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
1301 if (buf_size > I40E_AQ_LARGE_BUF)
1302 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
1303 scfg->seid = cpu_to_le16(*start_seid);
1304
1305 status = i40e_asq_send_command(hw, &desc, buf, buf_size, cmd_details);
1306 *start_seid = le16_to_cpu(scfg->seid);
1307
1308 return status;
1309 }
1310
1311 /**
1312 * i40e_aq_get_firmware_version
1313 * @hw: pointer to the hw struct
1314 * @fw_major_version: firmware major version
1315 * @fw_minor_version: firmware minor version
1316 * @api_major_version: major queue version
1317 * @api_minor_version: minor queue version
1318 * @cmd_details: pointer to command details structure or NULL
1319 *
1320 * Get the firmware version from the admin queue commands
1321 **/
1322 i40e_status i40e_aq_get_firmware_version(struct i40e_hw *hw,
1323 u16 *fw_major_version, u16 *fw_minor_version,
1324 u16 *api_major_version, u16 *api_minor_version,
1325 struct i40e_asq_cmd_details *cmd_details)
1326 {
1327 struct i40e_aq_desc desc;
1328 struct i40e_aqc_get_version *resp =
1329 (struct i40e_aqc_get_version *)&desc.params.raw;
1330 i40e_status status;
1331
1332 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_get_version);
1333
1334 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1335
1336 if (!status) {
1337 if (fw_major_version != NULL)
1338 *fw_major_version = le16_to_cpu(resp->fw_major);
1339 if (fw_minor_version != NULL)
1340 *fw_minor_version = le16_to_cpu(resp->fw_minor);
1341 if (api_major_version != NULL)
1342 *api_major_version = le16_to_cpu(resp->api_major);
1343 if (api_minor_version != NULL)
1344 *api_minor_version = le16_to_cpu(resp->api_minor);
1345 }
1346
1347 return status;
1348 }
1349
1350 /**
1351 * i40e_aq_send_driver_version
1352 * @hw: pointer to the hw struct
1353 * @dv: driver's major, minor version
1354 * @cmd_details: pointer to command details structure or NULL
1355 *
1356 * Send the driver version to the firmware
1357 **/
1358 i40e_status i40e_aq_send_driver_version(struct i40e_hw *hw,
1359 struct i40e_driver_version *dv,
1360 struct i40e_asq_cmd_details *cmd_details)
1361 {
1362 struct i40e_aq_desc desc;
1363 struct i40e_aqc_driver_version *cmd =
1364 (struct i40e_aqc_driver_version *)&desc.params.raw;
1365 i40e_status status;
1366 u16 len;
1367
1368 if (dv == NULL)
1369 return I40E_ERR_PARAM;
1370
1371 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_driver_version);
1372
1373 desc.flags |= cpu_to_le16(I40E_AQ_FLAG_SI);
1374 cmd->driver_major_ver = dv->major_version;
1375 cmd->driver_minor_ver = dv->minor_version;
1376 cmd->driver_build_ver = dv->build_version;
1377 cmd->driver_subbuild_ver = dv->subbuild_version;
1378
1379 len = 0;
1380 while (len < sizeof(dv->driver_string) &&
1381 (dv->driver_string[len] < 0x80) &&
1382 dv->driver_string[len])
1383 len++;
1384 status = i40e_asq_send_command(hw, &desc, dv->driver_string,
1385 len, cmd_details);
1386
1387 return status;
1388 }
1389
1390 /**
1391 * i40e_get_link_status - get status of the HW network link
1392 * @hw: pointer to the hw struct
1393 *
1394 * Returns true if link is up, false if link is down.
1395 *
1396 * Side effect: LinkStatusEvent reporting becomes enabled
1397 **/
1398 bool i40e_get_link_status(struct i40e_hw *hw)
1399 {
1400 i40e_status status = 0;
1401 bool link_status = false;
1402
1403 if (hw->phy.get_link_info) {
1404 status = i40e_aq_get_link_info(hw, true, NULL, NULL);
1405
1406 if (status)
1407 goto i40e_get_link_status_exit;
1408 }
1409
1410 link_status = hw->phy.link_info.link_info & I40E_AQ_LINK_UP;
1411
1412 i40e_get_link_status_exit:
1413 return link_status;
1414 }
1415
1416 /**
1417 * i40e_aq_add_veb - Insert a VEB between the VSI and the MAC
1418 * @hw: pointer to the hw struct
1419 * @uplink_seid: the MAC or other gizmo SEID
1420 * @downlink_seid: the VSI SEID
1421 * @enabled_tc: bitmap of TCs to be enabled
1422 * @default_port: true for default port VSI, false for control port
1423 * @enable_l2_filtering: true to add L2 filter table rules to regular forwarding rules for cloud support
1424 * @veb_seid: pointer to where to put the resulting VEB SEID
1425 * @cmd_details: pointer to command details structure or NULL
1426 *
1427 * This asks the FW to add a VEB between the uplink and downlink
1428 * elements. If the uplink SEID is 0, this will be a floating VEB.
1429 **/
1430 i40e_status i40e_aq_add_veb(struct i40e_hw *hw, u16 uplink_seid,
1431 u16 downlink_seid, u8 enabled_tc,
1432 bool default_port, bool enable_l2_filtering,
1433 u16 *veb_seid,
1434 struct i40e_asq_cmd_details *cmd_details)
1435 {
1436 struct i40e_aq_desc desc;
1437 struct i40e_aqc_add_veb *cmd =
1438 (struct i40e_aqc_add_veb *)&desc.params.raw;
1439 struct i40e_aqc_add_veb_completion *resp =
1440 (struct i40e_aqc_add_veb_completion *)&desc.params.raw;
1441 i40e_status status;
1442 u16 veb_flags = 0;
1443
1444 /* SEIDs need to either both be set or both be 0 for floating VEB */
1445 if (!!uplink_seid != !!downlink_seid)
1446 return I40E_ERR_PARAM;
1447
1448 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_add_veb);
1449
1450 cmd->uplink_seid = cpu_to_le16(uplink_seid);
1451 cmd->downlink_seid = cpu_to_le16(downlink_seid);
1452 cmd->enable_tcs = enabled_tc;
1453 if (!uplink_seid)
1454 veb_flags |= I40E_AQC_ADD_VEB_FLOATING;
1455 if (default_port)
1456 veb_flags |= I40E_AQC_ADD_VEB_PORT_TYPE_DEFAULT;
1457 else
1458 veb_flags |= I40E_AQC_ADD_VEB_PORT_TYPE_DATA;
1459
1460 if (enable_l2_filtering)
1461 veb_flags |= I40E_AQC_ADD_VEB_ENABLE_L2_FILTER;
1462
1463 cmd->veb_flags = cpu_to_le16(veb_flags);
1464
1465 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1466
1467 if (!status && veb_seid)
1468 *veb_seid = le16_to_cpu(resp->veb_seid);
1469
1470 return status;
1471 }
1472
1473 /**
1474 * i40e_aq_get_veb_parameters - Retrieve VEB parameters
1475 * @hw: pointer to the hw struct
1476 * @veb_seid: the SEID of the VEB to query
1477 * @switch_id: the uplink switch id
1478 * @floating: set to true if the VEB is floating
1479 * @statistic_index: index of the stats counter block for this VEB
1480 * @vebs_used: number of VEB's used by function
1481 * @vebs_free: total VEB's not reserved by any function
1482 * @cmd_details: pointer to command details structure or NULL
1483 *
1484 * This retrieves the parameters for a particular VEB, specified by
1485 * uplink_seid, and returns them to the caller.
1486 **/
1487 i40e_status i40e_aq_get_veb_parameters(struct i40e_hw *hw,
1488 u16 veb_seid, u16 *switch_id,
1489 bool *floating, u16 *statistic_index,
1490 u16 *vebs_used, u16 *vebs_free,
1491 struct i40e_asq_cmd_details *cmd_details)
1492 {
1493 struct i40e_aq_desc desc;
1494 struct i40e_aqc_get_veb_parameters_completion *cmd_resp =
1495 (struct i40e_aqc_get_veb_parameters_completion *)
1496 &desc.params.raw;
1497 i40e_status status;
1498
1499 if (veb_seid == 0)
1500 return I40E_ERR_PARAM;
1501
1502 i40e_fill_default_direct_cmd_desc(&desc,
1503 i40e_aqc_opc_get_veb_parameters);
1504 cmd_resp->seid = cpu_to_le16(veb_seid);
1505
1506 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1507 if (status)
1508 goto get_veb_exit;
1509
1510 if (switch_id)
1511 *switch_id = le16_to_cpu(cmd_resp->switch_id);
1512 if (statistic_index)
1513 *statistic_index = le16_to_cpu(cmd_resp->statistic_index);
1514 if (vebs_used)
1515 *vebs_used = le16_to_cpu(cmd_resp->vebs_used);
1516 if (vebs_free)
1517 *vebs_free = le16_to_cpu(cmd_resp->vebs_free);
1518 if (floating) {
1519 u16 flags = le16_to_cpu(cmd_resp->veb_flags);
1520 if (flags & I40E_AQC_ADD_VEB_FLOATING)
1521 *floating = true;
1522 else
1523 *floating = false;
1524 }
1525
1526 get_veb_exit:
1527 return status;
1528 }
1529
1530 /**
1531 * i40e_aq_add_macvlan
1532 * @hw: pointer to the hw struct
1533 * @seid: VSI for the mac address
1534 * @mv_list: list of macvlans to be added
1535 * @count: length of the list
1536 * @cmd_details: pointer to command details structure or NULL
1537 *
1538 * Add MAC/VLAN addresses to the HW filtering
1539 **/
1540 i40e_status i40e_aq_add_macvlan(struct i40e_hw *hw, u16 seid,
1541 struct i40e_aqc_add_macvlan_element_data *mv_list,
1542 u16 count, struct i40e_asq_cmd_details *cmd_details)
1543 {
1544 struct i40e_aq_desc desc;
1545 struct i40e_aqc_macvlan *cmd =
1546 (struct i40e_aqc_macvlan *)&desc.params.raw;
1547 i40e_status status;
1548 u16 buf_size;
1549
1550 if (count == 0 || !mv_list || !hw)
1551 return I40E_ERR_PARAM;
1552
1553 buf_size = count * sizeof(struct i40e_aqc_add_macvlan_element_data);
1554
1555 /* prep the rest of the request */
1556 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_add_macvlan);
1557 cmd->num_addresses = cpu_to_le16(count);
1558 cmd->seid[0] = cpu_to_le16(I40E_AQC_MACVLAN_CMD_SEID_VALID | seid);
1559 cmd->seid[1] = 0;
1560 cmd->seid[2] = 0;
1561
1562 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
1563 if (buf_size > I40E_AQ_LARGE_BUF)
1564 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
1565
1566 status = i40e_asq_send_command(hw, &desc, mv_list, buf_size,
1567 cmd_details);
1568
1569 return status;
1570 }
1571
1572 /**
1573 * i40e_aq_remove_macvlan
1574 * @hw: pointer to the hw struct
1575 * @seid: VSI for the mac address
1576 * @mv_list: list of macvlans to be removed
1577 * @count: length of the list
1578 * @cmd_details: pointer to command details structure or NULL
1579 *
1580 * Remove MAC/VLAN addresses from the HW filtering
1581 **/
1582 i40e_status i40e_aq_remove_macvlan(struct i40e_hw *hw, u16 seid,
1583 struct i40e_aqc_remove_macvlan_element_data *mv_list,
1584 u16 count, struct i40e_asq_cmd_details *cmd_details)
1585 {
1586 struct i40e_aq_desc desc;
1587 struct i40e_aqc_macvlan *cmd =
1588 (struct i40e_aqc_macvlan *)&desc.params.raw;
1589 i40e_status status;
1590 u16 buf_size;
1591
1592 if (count == 0 || !mv_list || !hw)
1593 return I40E_ERR_PARAM;
1594
1595 buf_size = count * sizeof(struct i40e_aqc_remove_macvlan_element_data);
1596
1597 /* prep the rest of the request */
1598 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_remove_macvlan);
1599 cmd->num_addresses = cpu_to_le16(count);
1600 cmd->seid[0] = cpu_to_le16(I40E_AQC_MACVLAN_CMD_SEID_VALID | seid);
1601 cmd->seid[1] = 0;
1602 cmd->seid[2] = 0;
1603
1604 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF | I40E_AQ_FLAG_RD));
1605 if (buf_size > I40E_AQ_LARGE_BUF)
1606 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
1607
1608 status = i40e_asq_send_command(hw, &desc, mv_list, buf_size,
1609 cmd_details);
1610
1611 return status;
1612 }
1613
1614 /**
1615 * i40e_aq_send_msg_to_vf
1616 * @hw: pointer to the hardware structure
1617 * @vfid: vf id to send msg
1618 * @v_opcode: opcodes for VF-PF communication
1619 * @v_retval: return error code
1620 * @msg: pointer to the msg buffer
1621 * @msglen: msg length
1622 * @cmd_details: pointer to command details
1623 *
1624 * send msg to vf
1625 **/
1626 i40e_status i40e_aq_send_msg_to_vf(struct i40e_hw *hw, u16 vfid,
1627 u32 v_opcode, u32 v_retval, u8 *msg, u16 msglen,
1628 struct i40e_asq_cmd_details *cmd_details)
1629 {
1630 struct i40e_aq_desc desc;
1631 struct i40e_aqc_pf_vf_message *cmd =
1632 (struct i40e_aqc_pf_vf_message *)&desc.params.raw;
1633 i40e_status status;
1634
1635 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_send_msg_to_vf);
1636 cmd->id = cpu_to_le32(vfid);
1637 desc.cookie_high = cpu_to_le32(v_opcode);
1638 desc.cookie_low = cpu_to_le32(v_retval);
1639 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_SI);
1640 if (msglen) {
1641 desc.flags |= cpu_to_le16((u16)(I40E_AQ_FLAG_BUF |
1642 I40E_AQ_FLAG_RD));
1643 if (msglen > I40E_AQ_LARGE_BUF)
1644 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
1645 desc.datalen = cpu_to_le16(msglen);
1646 }
1647 status = i40e_asq_send_command(hw, &desc, msg, msglen, cmd_details);
1648
1649 return status;
1650 }
1651
1652 /**
1653 * i40e_aq_set_hmc_resource_profile
1654 * @hw: pointer to the hw struct
1655 * @profile: type of profile the HMC is to be set as
1656 * @pe_vf_enabled_count: the number of PE enabled VFs the system has
1657 * @cmd_details: pointer to command details structure or NULL
1658 *
1659 * set the HMC profile of the device.
1660 **/
1661 i40e_status i40e_aq_set_hmc_resource_profile(struct i40e_hw *hw,
1662 enum i40e_aq_hmc_profile profile,
1663 u8 pe_vf_enabled_count,
1664 struct i40e_asq_cmd_details *cmd_details)
1665 {
1666 struct i40e_aq_desc desc;
1667 struct i40e_aq_get_set_hmc_resource_profile *cmd =
1668 (struct i40e_aq_get_set_hmc_resource_profile *)&desc.params.raw;
1669 i40e_status status;
1670
1671 i40e_fill_default_direct_cmd_desc(&desc,
1672 i40e_aqc_opc_set_hmc_resource_profile);
1673
1674 cmd->pm_profile = (u8)profile;
1675 cmd->pe_vf_enabled = pe_vf_enabled_count;
1676
1677 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1678
1679 return status;
1680 }
1681
1682 /**
1683 * i40e_aq_request_resource
1684 * @hw: pointer to the hw struct
1685 * @resource: resource id
1686 * @access: access type
1687 * @sdp_number: resource number
1688 * @timeout: the maximum time in ms that the driver may hold the resource
1689 * @cmd_details: pointer to command details structure or NULL
1690 *
1691 * requests common resource using the admin queue commands
1692 **/
1693 i40e_status i40e_aq_request_resource(struct i40e_hw *hw,
1694 enum i40e_aq_resources_ids resource,
1695 enum i40e_aq_resource_access_type access,
1696 u8 sdp_number, u64 *timeout,
1697 struct i40e_asq_cmd_details *cmd_details)
1698 {
1699 struct i40e_aq_desc desc;
1700 struct i40e_aqc_request_resource *cmd_resp =
1701 (struct i40e_aqc_request_resource *)&desc.params.raw;
1702 i40e_status status;
1703
1704 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_request_resource);
1705
1706 cmd_resp->resource_id = cpu_to_le16(resource);
1707 cmd_resp->access_type = cpu_to_le16(access);
1708 cmd_resp->resource_number = cpu_to_le32(sdp_number);
1709
1710 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1711 /* The completion specifies the maximum time in ms that the driver
1712 * may hold the resource in the Timeout field.
1713 * If the resource is held by someone else, the command completes with
1714 * busy return value and the timeout field indicates the maximum time
1715 * the current owner of the resource has to free it.
1716 */
1717 if (!status || hw->aq.asq_last_status == I40E_AQ_RC_EBUSY)
1718 *timeout = le32_to_cpu(cmd_resp->timeout);
1719
1720 return status;
1721 }
1722
1723 /**
1724 * i40e_aq_release_resource
1725 * @hw: pointer to the hw struct
1726 * @resource: resource id
1727 * @sdp_number: resource number
1728 * @cmd_details: pointer to command details structure or NULL
1729 *
1730 * release common resource using the admin queue commands
1731 **/
1732 i40e_status i40e_aq_release_resource(struct i40e_hw *hw,
1733 enum i40e_aq_resources_ids resource,
1734 u8 sdp_number,
1735 struct i40e_asq_cmd_details *cmd_details)
1736 {
1737 struct i40e_aq_desc desc;
1738 struct i40e_aqc_request_resource *cmd =
1739 (struct i40e_aqc_request_resource *)&desc.params.raw;
1740 i40e_status status;
1741
1742 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_release_resource);
1743
1744 cmd->resource_id = cpu_to_le16(resource);
1745 cmd->resource_number = cpu_to_le32(sdp_number);
1746
1747 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
1748
1749 return status;
1750 }
1751
1752 /**
1753 * i40e_aq_read_nvm
1754 * @hw: pointer to the hw struct
1755 * @module_pointer: module pointer location in words from the NVM beginning
1756 * @offset: byte offset from the module beginning
1757 * @length: length of the section to be read (in bytes from the offset)
1758 * @data: command buffer (size [bytes] = length)
1759 * @last_command: tells if this is the last command in a series
1760 * @cmd_details: pointer to command details structure or NULL
1761 *
1762 * Read the NVM using the admin queue commands
1763 **/
1764 i40e_status i40e_aq_read_nvm(struct i40e_hw *hw, u8 module_pointer,
1765 u32 offset, u16 length, void *data,
1766 bool last_command,
1767 struct i40e_asq_cmd_details *cmd_details)
1768 {
1769 struct i40e_aq_desc desc;
1770 struct i40e_aqc_nvm_update *cmd =
1771 (struct i40e_aqc_nvm_update *)&desc.params.raw;
1772 i40e_status status;
1773
1774 /* In offset the highest byte must be zeroed. */
1775 if (offset & 0xFF000000) {
1776 status = I40E_ERR_PARAM;
1777 goto i40e_aq_read_nvm_exit;
1778 }
1779
1780 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_nvm_read);
1781
1782 /* If this is the last command in a series, set the proper flag. */
1783 if (last_command)
1784 cmd->command_flags |= I40E_AQ_NVM_LAST_CMD;
1785 cmd->module_pointer = module_pointer;
1786 cmd->offset = cpu_to_le32(offset);
1787 cmd->length = cpu_to_le16(length);
1788
1789 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
1790 if (length > I40E_AQ_LARGE_BUF)
1791 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
1792
1793 status = i40e_asq_send_command(hw, &desc, data, length, cmd_details);
1794
1795 i40e_aq_read_nvm_exit:
1796 return status;
1797 }
1798
1799 #define I40E_DEV_FUNC_CAP_SWITCH_MODE 0x01
1800 #define I40E_DEV_FUNC_CAP_MGMT_MODE 0x02
1801 #define I40E_DEV_FUNC_CAP_NPAR 0x03
1802 #define I40E_DEV_FUNC_CAP_OS2BMC 0x04
1803 #define I40E_DEV_FUNC_CAP_VALID_FUNC 0x05
1804 #define I40E_DEV_FUNC_CAP_SRIOV_1_1 0x12
1805 #define I40E_DEV_FUNC_CAP_VF 0x13
1806 #define I40E_DEV_FUNC_CAP_VMDQ 0x14
1807 #define I40E_DEV_FUNC_CAP_802_1_QBG 0x15
1808 #define I40E_DEV_FUNC_CAP_802_1_QBH 0x16
1809 #define I40E_DEV_FUNC_CAP_VSI 0x17
1810 #define I40E_DEV_FUNC_CAP_DCB 0x18
1811 #define I40E_DEV_FUNC_CAP_FCOE 0x21
1812 #define I40E_DEV_FUNC_CAP_RSS 0x40
1813 #define I40E_DEV_FUNC_CAP_RX_QUEUES 0x41
1814 #define I40E_DEV_FUNC_CAP_TX_QUEUES 0x42
1815 #define I40E_DEV_FUNC_CAP_MSIX 0x43
1816 #define I40E_DEV_FUNC_CAP_MSIX_VF 0x44
1817 #define I40E_DEV_FUNC_CAP_FLOW_DIRECTOR 0x45
1818 #define I40E_DEV_FUNC_CAP_IEEE_1588 0x46
1819 #define I40E_DEV_FUNC_CAP_MFP_MODE_1 0xF1
1820 #define I40E_DEV_FUNC_CAP_CEM 0xF2
1821 #define I40E_DEV_FUNC_CAP_IWARP 0x51
1822 #define I40E_DEV_FUNC_CAP_LED 0x61
1823 #define I40E_DEV_FUNC_CAP_SDP 0x62
1824 #define I40E_DEV_FUNC_CAP_MDIO 0x63
1825
1826 /**
1827 * i40e_parse_discover_capabilities
1828 * @hw: pointer to the hw struct
1829 * @buff: pointer to a buffer containing device/function capability records
1830 * @cap_count: number of capability records in the list
1831 * @list_type_opc: type of capabilities list to parse
1832 *
1833 * Parse the device/function capabilities list.
1834 **/
1835 static void i40e_parse_discover_capabilities(struct i40e_hw *hw, void *buff,
1836 u32 cap_count,
1837 enum i40e_admin_queue_opc list_type_opc)
1838 {
1839 struct i40e_aqc_list_capabilities_element_resp *cap;
1840 u32 number, logical_id, phys_id;
1841 struct i40e_hw_capabilities *p;
1842 u32 i = 0;
1843 u16 id;
1844
1845 cap = (struct i40e_aqc_list_capabilities_element_resp *) buff;
1846
1847 if (list_type_opc == i40e_aqc_opc_list_dev_capabilities)
1848 p = &hw->dev_caps;
1849 else if (list_type_opc == i40e_aqc_opc_list_func_capabilities)
1850 p = &hw->func_caps;
1851 else
1852 return;
1853
1854 for (i = 0; i < cap_count; i++, cap++) {
1855 id = le16_to_cpu(cap->id);
1856 number = le32_to_cpu(cap->number);
1857 logical_id = le32_to_cpu(cap->logical_id);
1858 phys_id = le32_to_cpu(cap->phys_id);
1859
1860 switch (id) {
1861 case I40E_DEV_FUNC_CAP_SWITCH_MODE:
1862 p->switch_mode = number;
1863 break;
1864 case I40E_DEV_FUNC_CAP_MGMT_MODE:
1865 p->management_mode = number;
1866 break;
1867 case I40E_DEV_FUNC_CAP_NPAR:
1868 p->npar_enable = number;
1869 break;
1870 case I40E_DEV_FUNC_CAP_OS2BMC:
1871 p->os2bmc = number;
1872 break;
1873 case I40E_DEV_FUNC_CAP_VALID_FUNC:
1874 p->valid_functions = number;
1875 break;
1876 case I40E_DEV_FUNC_CAP_SRIOV_1_1:
1877 if (number == 1)
1878 p->sr_iov_1_1 = true;
1879 break;
1880 case I40E_DEV_FUNC_CAP_VF:
1881 p->num_vfs = number;
1882 p->vf_base_id = logical_id;
1883 break;
1884 case I40E_DEV_FUNC_CAP_VMDQ:
1885 if (number == 1)
1886 p->vmdq = true;
1887 break;
1888 case I40E_DEV_FUNC_CAP_802_1_QBG:
1889 if (number == 1)
1890 p->evb_802_1_qbg = true;
1891 break;
1892 case I40E_DEV_FUNC_CAP_802_1_QBH:
1893 if (number == 1)
1894 p->evb_802_1_qbh = true;
1895 break;
1896 case I40E_DEV_FUNC_CAP_VSI:
1897 p->num_vsis = number;
1898 break;
1899 case I40E_DEV_FUNC_CAP_DCB:
1900 if (number == 1) {
1901 p->dcb = true;
1902 p->enabled_tcmap = logical_id;
1903 p->maxtc = phys_id;
1904 }
1905 break;
1906 case I40E_DEV_FUNC_CAP_FCOE:
1907 if (number == 1)
1908 p->fcoe = true;
1909 break;
1910 case I40E_DEV_FUNC_CAP_RSS:
1911 p->rss = true;
1912 p->rss_table_size = number;
1913 p->rss_table_entry_width = logical_id;
1914 break;
1915 case I40E_DEV_FUNC_CAP_RX_QUEUES:
1916 p->num_rx_qp = number;
1917 p->base_queue = phys_id;
1918 break;
1919 case I40E_DEV_FUNC_CAP_TX_QUEUES:
1920 p->num_tx_qp = number;
1921 p->base_queue = phys_id;
1922 break;
1923 case I40E_DEV_FUNC_CAP_MSIX:
1924 p->num_msix_vectors = number;
1925 break;
1926 case I40E_DEV_FUNC_CAP_MSIX_VF:
1927 p->num_msix_vectors_vf = number;
1928 break;
1929 case I40E_DEV_FUNC_CAP_MFP_MODE_1:
1930 if (number == 1)
1931 p->mfp_mode_1 = true;
1932 break;
1933 case I40E_DEV_FUNC_CAP_CEM:
1934 if (number == 1)
1935 p->mgmt_cem = true;
1936 break;
1937 case I40E_DEV_FUNC_CAP_IWARP:
1938 if (number == 1)
1939 p->iwarp = true;
1940 break;
1941 case I40E_DEV_FUNC_CAP_LED:
1942 if (phys_id < I40E_HW_CAP_MAX_GPIO)
1943 p->led[phys_id] = true;
1944 break;
1945 case I40E_DEV_FUNC_CAP_SDP:
1946 if (phys_id < I40E_HW_CAP_MAX_GPIO)
1947 p->sdp[phys_id] = true;
1948 break;
1949 case I40E_DEV_FUNC_CAP_MDIO:
1950 if (number == 1) {
1951 p->mdio_port_num = phys_id;
1952 p->mdio_port_mode = logical_id;
1953 }
1954 break;
1955 case I40E_DEV_FUNC_CAP_IEEE_1588:
1956 if (number == 1)
1957 p->ieee_1588 = true;
1958 break;
1959 case I40E_DEV_FUNC_CAP_FLOW_DIRECTOR:
1960 p->fd = true;
1961 p->fd_filters_guaranteed = number;
1962 p->fd_filters_best_effort = logical_id;
1963 break;
1964 default:
1965 break;
1966 }
1967 }
1968
1969 /* Software override ensuring FCoE is disabled if npar or mfp
1970 * mode because it is not supported in these modes.
1971 */
1972 if (p->npar_enable || p->mfp_mode_1)
1973 p->fcoe = false;
1974
1975 /* additional HW specific goodies that might
1976 * someday be HW version specific
1977 */
1978 p->rx_buf_chain_len = I40E_MAX_CHAINED_RX_BUFFERS;
1979 }
1980
1981 /**
1982 * i40e_aq_discover_capabilities
1983 * @hw: pointer to the hw struct
1984 * @buff: a virtual buffer to hold the capabilities
1985 * @buff_size: Size of the virtual buffer
1986 * @data_size: Size of the returned data, or buff size needed if AQ err==ENOMEM
1987 * @list_type_opc: capabilities type to discover - pass in the command opcode
1988 * @cmd_details: pointer to command details structure or NULL
1989 *
1990 * Get the device capabilities descriptions from the firmware
1991 **/
1992 i40e_status i40e_aq_discover_capabilities(struct i40e_hw *hw,
1993 void *buff, u16 buff_size, u16 *data_size,
1994 enum i40e_admin_queue_opc list_type_opc,
1995 struct i40e_asq_cmd_details *cmd_details)
1996 {
1997 struct i40e_aqc_list_capabilites *cmd;
1998 struct i40e_aq_desc desc;
1999 i40e_status status = 0;
2000
2001 cmd = (struct i40e_aqc_list_capabilites *)&desc.params.raw;
2002
2003 if (list_type_opc != i40e_aqc_opc_list_func_capabilities &&
2004 list_type_opc != i40e_aqc_opc_list_dev_capabilities) {
2005 status = I40E_ERR_PARAM;
2006 goto exit;
2007 }
2008
2009 i40e_fill_default_direct_cmd_desc(&desc, list_type_opc);
2010
2011 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
2012 if (buff_size > I40E_AQ_LARGE_BUF)
2013 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2014
2015 status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
2016 *data_size = le16_to_cpu(desc.datalen);
2017
2018 if (status)
2019 goto exit;
2020
2021 i40e_parse_discover_capabilities(hw, buff, le32_to_cpu(cmd->count),
2022 list_type_opc);
2023
2024 exit:
2025 return status;
2026 }
2027
2028 /**
2029 * i40e_aq_get_lldp_mib
2030 * @hw: pointer to the hw struct
2031 * @bridge_type: type of bridge requested
2032 * @mib_type: Local, Remote or both Local and Remote MIBs
2033 * @buff: pointer to a user supplied buffer to store the MIB block
2034 * @buff_size: size of the buffer (in bytes)
2035 * @local_len : length of the returned Local LLDP MIB
2036 * @remote_len: length of the returned Remote LLDP MIB
2037 * @cmd_details: pointer to command details structure or NULL
2038 *
2039 * Requests the complete LLDP MIB (entire packet).
2040 **/
2041 i40e_status i40e_aq_get_lldp_mib(struct i40e_hw *hw, u8 bridge_type,
2042 u8 mib_type, void *buff, u16 buff_size,
2043 u16 *local_len, u16 *remote_len,
2044 struct i40e_asq_cmd_details *cmd_details)
2045 {
2046 struct i40e_aq_desc desc;
2047 struct i40e_aqc_lldp_get_mib *cmd =
2048 (struct i40e_aqc_lldp_get_mib *)&desc.params.raw;
2049 struct i40e_aqc_lldp_get_mib *resp =
2050 (struct i40e_aqc_lldp_get_mib *)&desc.params.raw;
2051 i40e_status status;
2052
2053 if (buff_size == 0 || !buff)
2054 return I40E_ERR_PARAM;
2055
2056 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_get_mib);
2057 /* Indirect Command */
2058 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
2059
2060 cmd->type = mib_type & I40E_AQ_LLDP_MIB_TYPE_MASK;
2061 cmd->type |= ((bridge_type << I40E_AQ_LLDP_BRIDGE_TYPE_SHIFT) &
2062 I40E_AQ_LLDP_BRIDGE_TYPE_MASK);
2063
2064 desc.datalen = cpu_to_le16(buff_size);
2065
2066 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
2067 if (buff_size > I40E_AQ_LARGE_BUF)
2068 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2069
2070 status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
2071 if (!status) {
2072 if (local_len != NULL)
2073 *local_len = le16_to_cpu(resp->local_len);
2074 if (remote_len != NULL)
2075 *remote_len = le16_to_cpu(resp->remote_len);
2076 }
2077
2078 return status;
2079 }
2080
2081 /**
2082 * i40e_aq_cfg_lldp_mib_change_event
2083 * @hw: pointer to the hw struct
2084 * @enable_update: Enable or Disable event posting
2085 * @cmd_details: pointer to command details structure or NULL
2086 *
2087 * Enable or Disable posting of an event on ARQ when LLDP MIB
2088 * associated with the interface changes
2089 **/
2090 i40e_status i40e_aq_cfg_lldp_mib_change_event(struct i40e_hw *hw,
2091 bool enable_update,
2092 struct i40e_asq_cmd_details *cmd_details)
2093 {
2094 struct i40e_aq_desc desc;
2095 struct i40e_aqc_lldp_update_mib *cmd =
2096 (struct i40e_aqc_lldp_update_mib *)&desc.params.raw;
2097 i40e_status status;
2098
2099 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_update_mib);
2100
2101 if (!enable_update)
2102 cmd->command |= I40E_AQ_LLDP_MIB_UPDATE_DISABLE;
2103
2104 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2105
2106 return status;
2107 }
2108
2109 /**
2110 * i40e_aq_stop_lldp
2111 * @hw: pointer to the hw struct
2112 * @shutdown_agent: True if LLDP Agent needs to be Shutdown
2113 * @cmd_details: pointer to command details structure or NULL
2114 *
2115 * Stop or Shutdown the embedded LLDP Agent
2116 **/
2117 i40e_status i40e_aq_stop_lldp(struct i40e_hw *hw, bool shutdown_agent,
2118 struct i40e_asq_cmd_details *cmd_details)
2119 {
2120 struct i40e_aq_desc desc;
2121 struct i40e_aqc_lldp_stop *cmd =
2122 (struct i40e_aqc_lldp_stop *)&desc.params.raw;
2123 i40e_status status;
2124
2125 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_stop);
2126
2127 if (shutdown_agent)
2128 cmd->command |= I40E_AQ_LLDP_AGENT_SHUTDOWN;
2129
2130 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2131
2132 return status;
2133 }
2134
2135 /**
2136 * i40e_aq_start_lldp
2137 * @hw: pointer to the hw struct
2138 * @cmd_details: pointer to command details structure or NULL
2139 *
2140 * Start the embedded LLDP Agent on all ports.
2141 **/
2142 i40e_status i40e_aq_start_lldp(struct i40e_hw *hw,
2143 struct i40e_asq_cmd_details *cmd_details)
2144 {
2145 struct i40e_aq_desc desc;
2146 struct i40e_aqc_lldp_start *cmd =
2147 (struct i40e_aqc_lldp_start *)&desc.params.raw;
2148 i40e_status status;
2149
2150 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_lldp_start);
2151
2152 cmd->command = I40E_AQ_LLDP_AGENT_START;
2153
2154 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2155
2156 return status;
2157 }
2158
2159 /**
2160 * i40e_aq_add_udp_tunnel
2161 * @hw: pointer to the hw struct
2162 * @udp_port: the UDP port to add
2163 * @header_len: length of the tunneling header length in DWords
2164 * @protocol_index: protocol index type
2165 * @filter_index: pointer to filter index
2166 * @cmd_details: pointer to command details structure or NULL
2167 **/
2168 i40e_status i40e_aq_add_udp_tunnel(struct i40e_hw *hw,
2169 u16 udp_port, u8 protocol_index,
2170 u8 *filter_index,
2171 struct i40e_asq_cmd_details *cmd_details)
2172 {
2173 struct i40e_aq_desc desc;
2174 struct i40e_aqc_add_udp_tunnel *cmd =
2175 (struct i40e_aqc_add_udp_tunnel *)&desc.params.raw;
2176 struct i40e_aqc_del_udp_tunnel_completion *resp =
2177 (struct i40e_aqc_del_udp_tunnel_completion *)&desc.params.raw;
2178 i40e_status status;
2179
2180 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_add_udp_tunnel);
2181
2182 cmd->udp_port = cpu_to_le16(udp_port);
2183 cmd->protocol_type = protocol_index;
2184
2185 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2186
2187 if (!status)
2188 *filter_index = resp->index;
2189
2190 return status;
2191 }
2192
2193 /**
2194 * i40e_aq_del_udp_tunnel
2195 * @hw: pointer to the hw struct
2196 * @index: filter index
2197 * @cmd_details: pointer to command details structure or NULL
2198 **/
2199 i40e_status i40e_aq_del_udp_tunnel(struct i40e_hw *hw, u8 index,
2200 struct i40e_asq_cmd_details *cmd_details)
2201 {
2202 struct i40e_aq_desc desc;
2203 struct i40e_aqc_remove_udp_tunnel *cmd =
2204 (struct i40e_aqc_remove_udp_tunnel *)&desc.params.raw;
2205 i40e_status status;
2206
2207 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_del_udp_tunnel);
2208
2209 cmd->index = index;
2210
2211 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2212
2213 return status;
2214 }
2215
2216 /**
2217 * i40e_aq_delete_element - Delete switch element
2218 * @hw: pointer to the hw struct
2219 * @seid: the SEID to delete from the switch
2220 * @cmd_details: pointer to command details structure or NULL
2221 *
2222 * This deletes a switch element from the switch.
2223 **/
2224 i40e_status i40e_aq_delete_element(struct i40e_hw *hw, u16 seid,
2225 struct i40e_asq_cmd_details *cmd_details)
2226 {
2227 struct i40e_aq_desc desc;
2228 struct i40e_aqc_switch_seid *cmd =
2229 (struct i40e_aqc_switch_seid *)&desc.params.raw;
2230 i40e_status status;
2231
2232 if (seid == 0)
2233 return I40E_ERR_PARAM;
2234
2235 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_delete_element);
2236
2237 cmd->seid = cpu_to_le16(seid);
2238
2239 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2240
2241 return status;
2242 }
2243
2244 /**
2245 * i40e_aq_dcb_updated - DCB Updated Command
2246 * @hw: pointer to the hw struct
2247 * @cmd_details: pointer to command details structure or NULL
2248 *
2249 * EMP will return when the shared RPB settings have been
2250 * recomputed and modified. The retval field in the descriptor
2251 * will be set to 0 when RPB is modified.
2252 **/
2253 i40e_status i40e_aq_dcb_updated(struct i40e_hw *hw,
2254 struct i40e_asq_cmd_details *cmd_details)
2255 {
2256 struct i40e_aq_desc desc;
2257 i40e_status status;
2258
2259 i40e_fill_default_direct_cmd_desc(&desc, i40e_aqc_opc_dcb_updated);
2260
2261 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2262
2263 return status;
2264 }
2265
2266 /**
2267 * i40e_aq_tx_sched_cmd - generic Tx scheduler AQ command handler
2268 * @hw: pointer to the hw struct
2269 * @seid: seid for the physical port/switching component/vsi
2270 * @buff: Indirect buffer to hold data parameters and response
2271 * @buff_size: Indirect buffer size
2272 * @opcode: Tx scheduler AQ command opcode
2273 * @cmd_details: pointer to command details structure or NULL
2274 *
2275 * Generic command handler for Tx scheduler AQ commands
2276 **/
2277 static i40e_status i40e_aq_tx_sched_cmd(struct i40e_hw *hw, u16 seid,
2278 void *buff, u16 buff_size,
2279 enum i40e_admin_queue_opc opcode,
2280 struct i40e_asq_cmd_details *cmd_details)
2281 {
2282 struct i40e_aq_desc desc;
2283 struct i40e_aqc_tx_sched_ind *cmd =
2284 (struct i40e_aqc_tx_sched_ind *)&desc.params.raw;
2285 i40e_status status;
2286 bool cmd_param_flag = false;
2287
2288 switch (opcode) {
2289 case i40e_aqc_opc_configure_vsi_ets_sla_bw_limit:
2290 case i40e_aqc_opc_configure_vsi_tc_bw:
2291 case i40e_aqc_opc_enable_switching_comp_ets:
2292 case i40e_aqc_opc_modify_switching_comp_ets:
2293 case i40e_aqc_opc_disable_switching_comp_ets:
2294 case i40e_aqc_opc_configure_switching_comp_ets_bw_limit:
2295 case i40e_aqc_opc_configure_switching_comp_bw_config:
2296 cmd_param_flag = true;
2297 break;
2298 case i40e_aqc_opc_query_vsi_bw_config:
2299 case i40e_aqc_opc_query_vsi_ets_sla_config:
2300 case i40e_aqc_opc_query_switching_comp_ets_config:
2301 case i40e_aqc_opc_query_port_ets_config:
2302 case i40e_aqc_opc_query_switching_comp_bw_config:
2303 cmd_param_flag = false;
2304 break;
2305 default:
2306 return I40E_ERR_PARAM;
2307 }
2308
2309 i40e_fill_default_direct_cmd_desc(&desc, opcode);
2310
2311 /* Indirect command */
2312 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_BUF);
2313 if (cmd_param_flag)
2314 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_RD);
2315 if (buff_size > I40E_AQ_LARGE_BUF)
2316 desc.flags |= cpu_to_le16((u16)I40E_AQ_FLAG_LB);
2317
2318 desc.datalen = cpu_to_le16(buff_size);
2319
2320 cmd->vsi_seid = cpu_to_le16(seid);
2321
2322 status = i40e_asq_send_command(hw, &desc, buff, buff_size, cmd_details);
2323
2324 return status;
2325 }
2326
2327 /**
2328 * i40e_aq_config_vsi_bw_limit - Configure VSI BW Limit
2329 * @hw: pointer to the hw struct
2330 * @seid: VSI seid
2331 * @credit: BW limit credits (0 = disabled)
2332 * @max_credit: Max BW limit credits
2333 * @cmd_details: pointer to command details structure or NULL
2334 **/
2335 i40e_status i40e_aq_config_vsi_bw_limit(struct i40e_hw *hw,
2336 u16 seid, u16 credit, u8 max_credit,
2337 struct i40e_asq_cmd_details *cmd_details)
2338 {
2339 struct i40e_aq_desc desc;
2340 struct i40e_aqc_configure_vsi_bw_limit *cmd =
2341 (struct i40e_aqc_configure_vsi_bw_limit *)&desc.params.raw;
2342 i40e_status status;
2343
2344 i40e_fill_default_direct_cmd_desc(&desc,
2345 i40e_aqc_opc_configure_vsi_bw_limit);
2346
2347 cmd->vsi_seid = cpu_to_le16(seid);
2348 cmd->credit = cpu_to_le16(credit);
2349 cmd->max_credit = max_credit;
2350
2351 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2352
2353 return status;
2354 }
2355
2356 /**
2357 * i40e_aq_config_vsi_tc_bw - Config VSI BW Allocation per TC
2358 * @hw: pointer to the hw struct
2359 * @seid: VSI seid
2360 * @bw_data: Buffer holding enabled TCs, relative TC BW limit/credits
2361 * @cmd_details: pointer to command details structure or NULL
2362 **/
2363 i40e_status i40e_aq_config_vsi_tc_bw(struct i40e_hw *hw,
2364 u16 seid,
2365 struct i40e_aqc_configure_vsi_tc_bw_data *bw_data,
2366 struct i40e_asq_cmd_details *cmd_details)
2367 {
2368 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
2369 i40e_aqc_opc_configure_vsi_tc_bw,
2370 cmd_details);
2371 }
2372
2373 /**
2374 * i40e_aq_config_switch_comp_ets - Enable/Disable/Modify ETS on the port
2375 * @hw: pointer to the hw struct
2376 * @seid: seid of the switching component connected to Physical Port
2377 * @ets_data: Buffer holding ETS parameters
2378 * @cmd_details: pointer to command details structure or NULL
2379 **/
2380 i40e_status i40e_aq_config_switch_comp_ets(struct i40e_hw *hw,
2381 u16 seid,
2382 struct i40e_aqc_configure_switching_comp_ets_data *ets_data,
2383 enum i40e_admin_queue_opc opcode,
2384 struct i40e_asq_cmd_details *cmd_details)
2385 {
2386 return i40e_aq_tx_sched_cmd(hw, seid, (void *)ets_data,
2387 sizeof(*ets_data), opcode, cmd_details);
2388 }
2389
2390 /**
2391 * i40e_aq_config_switch_comp_bw_config - Config Switch comp BW Alloc per TC
2392 * @hw: pointer to the hw struct
2393 * @seid: seid of the switching component
2394 * @bw_data: Buffer holding enabled TCs, relative/absolute TC BW limit/credits
2395 * @cmd_details: pointer to command details structure or NULL
2396 **/
2397 i40e_status i40e_aq_config_switch_comp_bw_config(struct i40e_hw *hw,
2398 u16 seid,
2399 struct i40e_aqc_configure_switching_comp_bw_config_data *bw_data,
2400 struct i40e_asq_cmd_details *cmd_details)
2401 {
2402 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
2403 i40e_aqc_opc_configure_switching_comp_bw_config,
2404 cmd_details);
2405 }
2406
2407 /**
2408 * i40e_aq_query_vsi_bw_config - Query VSI BW configuration
2409 * @hw: pointer to the hw struct
2410 * @seid: seid of the VSI
2411 * @bw_data: Buffer to hold VSI BW configuration
2412 * @cmd_details: pointer to command details structure or NULL
2413 **/
2414 i40e_status i40e_aq_query_vsi_bw_config(struct i40e_hw *hw,
2415 u16 seid,
2416 struct i40e_aqc_query_vsi_bw_config_resp *bw_data,
2417 struct i40e_asq_cmd_details *cmd_details)
2418 {
2419 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
2420 i40e_aqc_opc_query_vsi_bw_config,
2421 cmd_details);
2422 }
2423
2424 /**
2425 * i40e_aq_query_vsi_ets_sla_config - Query VSI BW configuration per TC
2426 * @hw: pointer to the hw struct
2427 * @seid: seid of the VSI
2428 * @bw_data: Buffer to hold VSI BW configuration per TC
2429 * @cmd_details: pointer to command details structure or NULL
2430 **/
2431 i40e_status i40e_aq_query_vsi_ets_sla_config(struct i40e_hw *hw,
2432 u16 seid,
2433 struct i40e_aqc_query_vsi_ets_sla_config_resp *bw_data,
2434 struct i40e_asq_cmd_details *cmd_details)
2435 {
2436 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
2437 i40e_aqc_opc_query_vsi_ets_sla_config,
2438 cmd_details);
2439 }
2440
2441 /**
2442 * i40e_aq_query_switch_comp_ets_config - Query Switch comp BW config per TC
2443 * @hw: pointer to the hw struct
2444 * @seid: seid of the switching component
2445 * @bw_data: Buffer to hold switching component's per TC BW config
2446 * @cmd_details: pointer to command details structure or NULL
2447 **/
2448 i40e_status i40e_aq_query_switch_comp_ets_config(struct i40e_hw *hw,
2449 u16 seid,
2450 struct i40e_aqc_query_switching_comp_ets_config_resp *bw_data,
2451 struct i40e_asq_cmd_details *cmd_details)
2452 {
2453 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
2454 i40e_aqc_opc_query_switching_comp_ets_config,
2455 cmd_details);
2456 }
2457
2458 /**
2459 * i40e_aq_query_port_ets_config - Query Physical Port ETS configuration
2460 * @hw: pointer to the hw struct
2461 * @seid: seid of the VSI or switching component connected to Physical Port
2462 * @bw_data: Buffer to hold current ETS configuration for the Physical Port
2463 * @cmd_details: pointer to command details structure or NULL
2464 **/
2465 i40e_status i40e_aq_query_port_ets_config(struct i40e_hw *hw,
2466 u16 seid,
2467 struct i40e_aqc_query_port_ets_config_resp *bw_data,
2468 struct i40e_asq_cmd_details *cmd_details)
2469 {
2470 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
2471 i40e_aqc_opc_query_port_ets_config,
2472 cmd_details);
2473 }
2474
2475 /**
2476 * i40e_aq_query_switch_comp_bw_config - Query Switch comp BW configuration
2477 * @hw: pointer to the hw struct
2478 * @seid: seid of the switching component
2479 * @bw_data: Buffer to hold switching component's BW configuration
2480 * @cmd_details: pointer to command details structure or NULL
2481 **/
2482 i40e_status i40e_aq_query_switch_comp_bw_config(struct i40e_hw *hw,
2483 u16 seid,
2484 struct i40e_aqc_query_switching_comp_bw_config_resp *bw_data,
2485 struct i40e_asq_cmd_details *cmd_details)
2486 {
2487 return i40e_aq_tx_sched_cmd(hw, seid, (void *)bw_data, sizeof(*bw_data),
2488 i40e_aqc_opc_query_switching_comp_bw_config,
2489 cmd_details);
2490 }
2491
2492 /**
2493 * i40e_validate_filter_settings
2494 * @hw: pointer to the hardware structure
2495 * @settings: Filter control settings
2496 *
2497 * Check and validate the filter control settings passed.
2498 * The function checks for the valid filter/context sizes being
2499 * passed for FCoE and PE.
2500 *
2501 * Returns 0 if the values passed are valid and within
2502 * range else returns an error.
2503 **/
2504 static i40e_status i40e_validate_filter_settings(struct i40e_hw *hw,
2505 struct i40e_filter_control_settings *settings)
2506 {
2507 u32 fcoe_cntx_size, fcoe_filt_size;
2508 u32 pe_cntx_size, pe_filt_size;
2509 u32 fcoe_fmax;
2510 u32 val;
2511
2512 /* Validate FCoE settings passed */
2513 switch (settings->fcoe_filt_num) {
2514 case I40E_HASH_FILTER_SIZE_1K:
2515 case I40E_HASH_FILTER_SIZE_2K:
2516 case I40E_HASH_FILTER_SIZE_4K:
2517 case I40E_HASH_FILTER_SIZE_8K:
2518 case I40E_HASH_FILTER_SIZE_16K:
2519 case I40E_HASH_FILTER_SIZE_32K:
2520 fcoe_filt_size = I40E_HASH_FILTER_BASE_SIZE;
2521 fcoe_filt_size <<= (u32)settings->fcoe_filt_num;
2522 break;
2523 default:
2524 return I40E_ERR_PARAM;
2525 }
2526
2527 switch (settings->fcoe_cntx_num) {
2528 case I40E_DMA_CNTX_SIZE_512:
2529 case I40E_DMA_CNTX_SIZE_1K:
2530 case I40E_DMA_CNTX_SIZE_2K:
2531 case I40E_DMA_CNTX_SIZE_4K:
2532 fcoe_cntx_size = I40E_DMA_CNTX_BASE_SIZE;
2533 fcoe_cntx_size <<= (u32)settings->fcoe_cntx_num;
2534 break;
2535 default:
2536 return I40E_ERR_PARAM;
2537 }
2538
2539 /* Validate PE settings passed */
2540 switch (settings->pe_filt_num) {
2541 case I40E_HASH_FILTER_SIZE_1K:
2542 case I40E_HASH_FILTER_SIZE_2K:
2543 case I40E_HASH_FILTER_SIZE_4K:
2544 case I40E_HASH_FILTER_SIZE_8K:
2545 case I40E_HASH_FILTER_SIZE_16K:
2546 case I40E_HASH_FILTER_SIZE_32K:
2547 case I40E_HASH_FILTER_SIZE_64K:
2548 case I40E_HASH_FILTER_SIZE_128K:
2549 case I40E_HASH_FILTER_SIZE_256K:
2550 case I40E_HASH_FILTER_SIZE_512K:
2551 case I40E_HASH_FILTER_SIZE_1M:
2552 pe_filt_size = I40E_HASH_FILTER_BASE_SIZE;
2553 pe_filt_size <<= (u32)settings->pe_filt_num;
2554 break;
2555 default:
2556 return I40E_ERR_PARAM;
2557 }
2558
2559 switch (settings->pe_cntx_num) {
2560 case I40E_DMA_CNTX_SIZE_512:
2561 case I40E_DMA_CNTX_SIZE_1K:
2562 case I40E_DMA_CNTX_SIZE_2K:
2563 case I40E_DMA_CNTX_SIZE_4K:
2564 case I40E_DMA_CNTX_SIZE_8K:
2565 case I40E_DMA_CNTX_SIZE_16K:
2566 case I40E_DMA_CNTX_SIZE_32K:
2567 case I40E_DMA_CNTX_SIZE_64K:
2568 case I40E_DMA_CNTX_SIZE_128K:
2569 case I40E_DMA_CNTX_SIZE_256K:
2570 pe_cntx_size = I40E_DMA_CNTX_BASE_SIZE;
2571 pe_cntx_size <<= (u32)settings->pe_cntx_num;
2572 break;
2573 default:
2574 return I40E_ERR_PARAM;
2575 }
2576
2577 /* FCHSIZE + FCDSIZE should not be greater than PMFCOEFMAX */
2578 val = rd32(hw, I40E_GLHMC_FCOEFMAX);
2579 fcoe_fmax = (val & I40E_GLHMC_FCOEFMAX_PMFCOEFMAX_MASK)
2580 >> I40E_GLHMC_FCOEFMAX_PMFCOEFMAX_SHIFT;
2581 if (fcoe_filt_size + fcoe_cntx_size > fcoe_fmax)
2582 return I40E_ERR_INVALID_SIZE;
2583
2584 return 0;
2585 }
2586
2587 /**
2588 * i40e_set_filter_control
2589 * @hw: pointer to the hardware structure
2590 * @settings: Filter control settings
2591 *
2592 * Set the Queue Filters for PE/FCoE and enable filters required
2593 * for a single PF. It is expected that these settings are programmed
2594 * at the driver initialization time.
2595 **/
2596 i40e_status i40e_set_filter_control(struct i40e_hw *hw,
2597 struct i40e_filter_control_settings *settings)
2598 {
2599 i40e_status ret = 0;
2600 u32 hash_lut_size = 0;
2601 u32 val;
2602
2603 if (!settings)
2604 return I40E_ERR_PARAM;
2605
2606 /* Validate the input settings */
2607 ret = i40e_validate_filter_settings(hw, settings);
2608 if (ret)
2609 return ret;
2610
2611 /* Read the PF Queue Filter control register */
2612 val = rd32(hw, I40E_PFQF_CTL_0);
2613
2614 /* Program required PE hash buckets for the PF */
2615 val &= ~I40E_PFQF_CTL_0_PEHSIZE_MASK;
2616 val |= ((u32)settings->pe_filt_num << I40E_PFQF_CTL_0_PEHSIZE_SHIFT) &
2617 I40E_PFQF_CTL_0_PEHSIZE_MASK;
2618 /* Program required PE contexts for the PF */
2619 val &= ~I40E_PFQF_CTL_0_PEDSIZE_MASK;
2620 val |= ((u32)settings->pe_cntx_num << I40E_PFQF_CTL_0_PEDSIZE_SHIFT) &
2621 I40E_PFQF_CTL_0_PEDSIZE_MASK;
2622
2623 /* Program required FCoE hash buckets for the PF */
2624 val &= ~I40E_PFQF_CTL_0_PFFCHSIZE_MASK;
2625 val |= ((u32)settings->fcoe_filt_num <<
2626 I40E_PFQF_CTL_0_PFFCHSIZE_SHIFT) &
2627 I40E_PFQF_CTL_0_PFFCHSIZE_MASK;
2628 /* Program required FCoE DDP contexts for the PF */
2629 val &= ~I40E_PFQF_CTL_0_PFFCDSIZE_MASK;
2630 val |= ((u32)settings->fcoe_cntx_num <<
2631 I40E_PFQF_CTL_0_PFFCDSIZE_SHIFT) &
2632 I40E_PFQF_CTL_0_PFFCDSIZE_MASK;
2633
2634 /* Program Hash LUT size for the PF */
2635 val &= ~I40E_PFQF_CTL_0_HASHLUTSIZE_MASK;
2636 if (settings->hash_lut_size == I40E_HASH_LUT_SIZE_512)
2637 hash_lut_size = 1;
2638 val |= (hash_lut_size << I40E_PFQF_CTL_0_HASHLUTSIZE_SHIFT) &
2639 I40E_PFQF_CTL_0_HASHLUTSIZE_MASK;
2640
2641 /* Enable FDIR, Ethertype and MACVLAN filters for PF and VFs */
2642 if (settings->enable_fdir)
2643 val |= I40E_PFQF_CTL_0_FD_ENA_MASK;
2644 if (settings->enable_ethtype)
2645 val |= I40E_PFQF_CTL_0_ETYPE_ENA_MASK;
2646 if (settings->enable_macvlan)
2647 val |= I40E_PFQF_CTL_0_MACVLAN_ENA_MASK;
2648
2649 wr32(hw, I40E_PFQF_CTL_0, val);
2650
2651 return 0;
2652 }
2653
2654 /**
2655 * i40e_aq_add_rem_control_packet_filter - Add or Remove Control Packet Filter
2656 * @hw: pointer to the hw struct
2657 * @mac_addr: MAC address to use in the filter
2658 * @ethtype: Ethertype to use in the filter
2659 * @flags: Flags that needs to be applied to the filter
2660 * @vsi_seid: seid of the control VSI
2661 * @queue: VSI queue number to send the packet to
2662 * @is_add: Add control packet filter if True else remove
2663 * @stats: Structure to hold information on control filter counts
2664 * @cmd_details: pointer to command details structure or NULL
2665 *
2666 * This command will Add or Remove control packet filter for a control VSI.
2667 * In return it will update the total number of perfect filter count in
2668 * the stats member.
2669 **/
2670 i40e_status i40e_aq_add_rem_control_packet_filter(struct i40e_hw *hw,
2671 u8 *mac_addr, u16 ethtype, u16 flags,
2672 u16 vsi_seid, u16 queue, bool is_add,
2673 struct i40e_control_filter_stats *stats,
2674 struct i40e_asq_cmd_details *cmd_details)
2675 {
2676 struct i40e_aq_desc desc;
2677 struct i40e_aqc_add_remove_control_packet_filter *cmd =
2678 (struct i40e_aqc_add_remove_control_packet_filter *)
2679 &desc.params.raw;
2680 struct i40e_aqc_add_remove_control_packet_filter_completion *resp =
2681 (struct i40e_aqc_add_remove_control_packet_filter_completion *)
2682 &desc.params.raw;
2683 i40e_status status;
2684
2685 if (vsi_seid == 0)
2686 return I40E_ERR_PARAM;
2687
2688 if (is_add) {
2689 i40e_fill_default_direct_cmd_desc(&desc,
2690 i40e_aqc_opc_add_control_packet_filter);
2691 cmd->queue = cpu_to_le16(queue);
2692 } else {
2693 i40e_fill_default_direct_cmd_desc(&desc,
2694 i40e_aqc_opc_remove_control_packet_filter);
2695 }
2696
2697 if (mac_addr)
2698 memcpy(cmd->mac, mac_addr, ETH_ALEN);
2699
2700 cmd->etype = cpu_to_le16(ethtype);
2701 cmd->flags = cpu_to_le16(flags);
2702 cmd->seid = cpu_to_le16(vsi_seid);
2703
2704 status = i40e_asq_send_command(hw, &desc, NULL, 0, cmd_details);
2705
2706 if (!status && stats) {
2707 stats->mac_etype_used = le16_to_cpu(resp->mac_etype_used);
2708 stats->etype_used = le16_to_cpu(resp->etype_used);
2709 stats->mac_etype_free = le16_to_cpu(resp->mac_etype_free);
2710 stats->etype_free = le16_to_cpu(resp->etype_free);
2711 }
2712
2713 return status;
2714 }
2715
2716 /**
2717 * i40e_set_pci_config_data - store PCI bus info
2718 * @hw: pointer to hardware structure
2719 * @link_status: the link status word from PCI config space
2720 *
2721 * Stores the PCI bus info (speed, width, type) within the i40e_hw structure
2722 **/
2723 void i40e_set_pci_config_data(struct i40e_hw *hw, u16 link_status)
2724 {
2725 hw->bus.type = i40e_bus_type_pci_express;
2726
2727 switch (link_status & PCI_EXP_LNKSTA_NLW) {
2728 case PCI_EXP_LNKSTA_NLW_X1:
2729 hw->bus.width = i40e_bus_width_pcie_x1;
2730 break;
2731 case PCI_EXP_LNKSTA_NLW_X2:
2732 hw->bus.width = i40e_bus_width_pcie_x2;
2733 break;
2734 case PCI_EXP_LNKSTA_NLW_X4:
2735 hw->bus.width = i40e_bus_width_pcie_x4;
2736 break;
2737 case PCI_EXP_LNKSTA_NLW_X8:
2738 hw->bus.width = i40e_bus_width_pcie_x8;
2739 break;
2740 default:
2741 hw->bus.width = i40e_bus_width_unknown;
2742 break;
2743 }
2744
2745 switch (link_status & PCI_EXP_LNKSTA_CLS) {
2746 case PCI_EXP_LNKSTA_CLS_2_5GB:
2747 hw->bus.speed = i40e_bus_speed_2500;
2748 break;
2749 case PCI_EXP_LNKSTA_CLS_5_0GB:
2750 hw->bus.speed = i40e_bus_speed_5000;
2751 break;
2752 case PCI_EXP_LNKSTA_CLS_8_0GB:
2753 hw->bus.speed = i40e_bus_speed_8000;
2754 break;
2755 default:
2756 hw->bus.speed = i40e_bus_speed_unknown;
2757 break;
2758 }
2759 }
This page took 0.096404 seconds and 5 git commands to generate.