blob: a0cb84381cd060dfb2eae7d3f9e10eeef0cd8752 [file] [log] [blame]
Greg Rose10ca1322010-01-09 02:25:10 +00001/*******************************************************************************
2
3 Intel 10 Gigabit PCI Express Linux driver
Mark Rustad37689012016-01-07 10:13:03 -08004 Copyright(c) 1999 - 2016 Intel Corporation.
Greg Rose10ca1322010-01-09 02:25:10 +00005
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 with
16 this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
21
22 Contact Information:
Jacob Kellerb89aae72014-02-22 01:23:50 +000023 Linux NICS <linux.nics@intel.com>
Greg Rose10ca1322010-01-09 02:25:10 +000024 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
25 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
29#include <linux/pci.h>
30#include <linux/delay.h>
Mark Rustadb12babd2014-01-14 18:53:16 -080031#include "ixgbe.h"
Greg Rose10ca1322010-01-09 02:25:10 +000032#include "ixgbe_mbx.h"
33
34/**
35 * ixgbe_read_mbx - Reads a message from the mailbox
36 * @hw: pointer to the HW structure
37 * @msg: The message buffer
38 * @size: Length of buffer
39 * @mbx_id: id of mailbox to read
40 *
Joe Perchesbfb90352011-08-17 06:58:04 -070041 * returns SUCCESS if it successfully read message from buffer
Greg Rose10ca1322010-01-09 02:25:10 +000042 **/
43s32 ixgbe_read_mbx(struct ixgbe_hw *hw, u32 *msg, u16 size, u16 mbx_id)
44{
45 struct ixgbe_mbx_info *mbx = &hw->mbx;
Greg Rose10ca1322010-01-09 02:25:10 +000046
47 /* limit read to size of mailbox */
48 if (size > mbx->size)
49 size = mbx->size;
50
Mark Rustad37689012016-01-07 10:13:03 -080051 if (!mbx->ops)
Mark Rustade90dd262014-07-22 06:51:08 +000052 return IXGBE_ERR_MBX;
Greg Rose10ca1322010-01-09 02:25:10 +000053
Mark Rustad37689012016-01-07 10:13:03 -080054 return mbx->ops->read(hw, msg, size, mbx_id);
Greg Rose10ca1322010-01-09 02:25:10 +000055}
56
57/**
58 * ixgbe_write_mbx - Write a message to the mailbox
59 * @hw: pointer to the HW structure
60 * @msg: The message buffer
61 * @size: Length of buffer
62 * @mbx_id: id of mailbox to write
63 *
64 * returns SUCCESS if it successfully copied message into the buffer
65 **/
66s32 ixgbe_write_mbx(struct ixgbe_hw *hw, u32 *msg, u16 size, u16 mbx_id)
67{
68 struct ixgbe_mbx_info *mbx = &hw->mbx;
Greg Rose10ca1322010-01-09 02:25:10 +000069
70 if (size > mbx->size)
Mark Rustad4e862812014-07-22 06:50:52 +000071 return IXGBE_ERR_MBX;
Greg Rose10ca1322010-01-09 02:25:10 +000072
Mark Rustad37689012016-01-07 10:13:03 -080073 if (!mbx->ops)
Mark Rustad4e862812014-07-22 06:50:52 +000074 return IXGBE_ERR_MBX;
Greg Rose10ca1322010-01-09 02:25:10 +000075
Mark Rustad37689012016-01-07 10:13:03 -080076 return mbx->ops->write(hw, msg, size, mbx_id);
Greg Rose10ca1322010-01-09 02:25:10 +000077}
78
79/**
80 * ixgbe_check_for_msg - checks to see if someone sent us mail
81 * @hw: pointer to the HW structure
82 * @mbx_id: id of mailbox to check
83 *
84 * returns SUCCESS if the Status bit was found or else ERR_MBX
85 **/
86s32 ixgbe_check_for_msg(struct ixgbe_hw *hw, u16 mbx_id)
87{
88 struct ixgbe_mbx_info *mbx = &hw->mbx;
Greg Rose10ca1322010-01-09 02:25:10 +000089
Mark Rustad37689012016-01-07 10:13:03 -080090 if (!mbx->ops)
Mark Rustade90dd262014-07-22 06:51:08 +000091 return IXGBE_ERR_MBX;
Greg Rose10ca1322010-01-09 02:25:10 +000092
Mark Rustad37689012016-01-07 10:13:03 -080093 return mbx->ops->check_for_msg(hw, mbx_id);
Greg Rose10ca1322010-01-09 02:25:10 +000094}
95
96/**
97 * ixgbe_check_for_ack - checks to see if someone sent us ACK
98 * @hw: pointer to the HW structure
99 * @mbx_id: id of mailbox to check
100 *
101 * returns SUCCESS if the Status bit was found or else ERR_MBX
102 **/
103s32 ixgbe_check_for_ack(struct ixgbe_hw *hw, u16 mbx_id)
104{
105 struct ixgbe_mbx_info *mbx = &hw->mbx;
Greg Rose10ca1322010-01-09 02:25:10 +0000106
Mark Rustad37689012016-01-07 10:13:03 -0800107 if (!mbx->ops)
Mark Rustade90dd262014-07-22 06:51:08 +0000108 return IXGBE_ERR_MBX;
Greg Rose10ca1322010-01-09 02:25:10 +0000109
Mark Rustad37689012016-01-07 10:13:03 -0800110 return mbx->ops->check_for_ack(hw, mbx_id);
Greg Rose10ca1322010-01-09 02:25:10 +0000111}
112
113/**
114 * ixgbe_check_for_rst - checks to see if other side has reset
115 * @hw: pointer to the HW structure
116 * @mbx_id: id of mailbox to check
117 *
118 * returns SUCCESS if the Status bit was found or else ERR_MBX
119 **/
120s32 ixgbe_check_for_rst(struct ixgbe_hw *hw, u16 mbx_id)
121{
122 struct ixgbe_mbx_info *mbx = &hw->mbx;
Greg Rose10ca1322010-01-09 02:25:10 +0000123
Mark Rustad37689012016-01-07 10:13:03 -0800124 if (!mbx->ops)
Mark Rustade90dd262014-07-22 06:51:08 +0000125 return IXGBE_ERR_MBX;
Greg Rose10ca1322010-01-09 02:25:10 +0000126
Mark Rustad37689012016-01-07 10:13:03 -0800127 return mbx->ops->check_for_rst(hw, mbx_id);
Greg Rose10ca1322010-01-09 02:25:10 +0000128}
129
130/**
131 * ixgbe_poll_for_msg - Wait for message notification
132 * @hw: pointer to the HW structure
133 * @mbx_id: id of mailbox to write
134 *
135 * returns SUCCESS if it successfully received a message notification
136 **/
137static s32 ixgbe_poll_for_msg(struct ixgbe_hw *hw, u16 mbx_id)
138{
139 struct ixgbe_mbx_info *mbx = &hw->mbx;
140 int countdown = mbx->timeout;
141
Mark Rustad37689012016-01-07 10:13:03 -0800142 if (!countdown || !mbx->ops)
Mark Rustade90dd262014-07-22 06:51:08 +0000143 return IXGBE_ERR_MBX;
Greg Rose10ca1322010-01-09 02:25:10 +0000144
Mark Rustad37689012016-01-07 10:13:03 -0800145 while (mbx->ops->check_for_msg(hw, mbx_id)) {
Greg Rose10ca1322010-01-09 02:25:10 +0000146 countdown--;
147 if (!countdown)
Mark Rustade90dd262014-07-22 06:51:08 +0000148 return IXGBE_ERR_MBX;
Greg Rose10ca1322010-01-09 02:25:10 +0000149 udelay(mbx->usec_delay);
150 }
151
Mark Rustade90dd262014-07-22 06:51:08 +0000152 return 0;
Greg Rose10ca1322010-01-09 02:25:10 +0000153}
154
155/**
156 * ixgbe_poll_for_ack - Wait for message acknowledgement
157 * @hw: pointer to the HW structure
158 * @mbx_id: id of mailbox to write
159 *
160 * returns SUCCESS if it successfully received a message acknowledgement
161 **/
162static s32 ixgbe_poll_for_ack(struct ixgbe_hw *hw, u16 mbx_id)
163{
164 struct ixgbe_mbx_info *mbx = &hw->mbx;
165 int countdown = mbx->timeout;
166
Mark Rustad37689012016-01-07 10:13:03 -0800167 if (!countdown || !mbx->ops)
Mark Rustade90dd262014-07-22 06:51:08 +0000168 return IXGBE_ERR_MBX;
Greg Rose10ca1322010-01-09 02:25:10 +0000169
Mark Rustad37689012016-01-07 10:13:03 -0800170 while (mbx->ops->check_for_ack(hw, mbx_id)) {
Greg Rose10ca1322010-01-09 02:25:10 +0000171 countdown--;
172 if (!countdown)
Mark Rustade90dd262014-07-22 06:51:08 +0000173 return IXGBE_ERR_MBX;
Greg Rose10ca1322010-01-09 02:25:10 +0000174 udelay(mbx->usec_delay);
175 }
176
Mark Rustade90dd262014-07-22 06:51:08 +0000177 return 0;
Greg Rose10ca1322010-01-09 02:25:10 +0000178}
179
180/**
181 * ixgbe_read_posted_mbx - Wait for message notification and receive message
182 * @hw: pointer to the HW structure
183 * @msg: The message buffer
184 * @size: Length of buffer
185 * @mbx_id: id of mailbox to write
186 *
187 * returns SUCCESS if it successfully received a message notification and
188 * copied it into the receive buffer.
189 **/
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000190static s32 ixgbe_read_posted_mbx(struct ixgbe_hw *hw, u32 *msg, u16 size,
191 u16 mbx_id)
Greg Rose10ca1322010-01-09 02:25:10 +0000192{
193 struct ixgbe_mbx_info *mbx = &hw->mbx;
Mark Rustade90dd262014-07-22 06:51:08 +0000194 s32 ret_val;
Greg Rose10ca1322010-01-09 02:25:10 +0000195
Mark Rustad37689012016-01-07 10:13:03 -0800196 if (!mbx->ops)
Mark Rustade90dd262014-07-22 06:51:08 +0000197 return IXGBE_ERR_MBX;
Greg Rose10ca1322010-01-09 02:25:10 +0000198
199 ret_val = ixgbe_poll_for_msg(hw, mbx_id);
Mark Rustade90dd262014-07-22 06:51:08 +0000200 if (ret_val)
201 return ret_val;
Greg Rose10ca1322010-01-09 02:25:10 +0000202
Mark Rustade90dd262014-07-22 06:51:08 +0000203 /* if ack received read message */
Mark Rustad37689012016-01-07 10:13:03 -0800204 return mbx->ops->read(hw, msg, size, mbx_id);
Greg Rose10ca1322010-01-09 02:25:10 +0000205}
206
207/**
208 * ixgbe_write_posted_mbx - Write a message to the mailbox, wait for ack
209 * @hw: pointer to the HW structure
210 * @msg: The message buffer
211 * @size: Length of buffer
212 * @mbx_id: id of mailbox to write
213 *
214 * returns SUCCESS if it successfully copied message into the buffer and
215 * received an ack to that message within delay * timeout period
216 **/
Emil Tantilov5d5b7c32010-10-12 22:20:59 +0000217static s32 ixgbe_write_posted_mbx(struct ixgbe_hw *hw, u32 *msg, u16 size,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000218 u16 mbx_id)
Greg Rose10ca1322010-01-09 02:25:10 +0000219{
220 struct ixgbe_mbx_info *mbx = &hw->mbx;
Mark Rustade90dd262014-07-22 06:51:08 +0000221 s32 ret_val;
Greg Rose10ca1322010-01-09 02:25:10 +0000222
223 /* exit if either we can't write or there isn't a defined timeout */
Mark Rustad37689012016-01-07 10:13:03 -0800224 if (!mbx->ops || !mbx->timeout)
Mark Rustade90dd262014-07-22 06:51:08 +0000225 return IXGBE_ERR_MBX;
Greg Rose10ca1322010-01-09 02:25:10 +0000226
227 /* send msg */
Mark Rustad37689012016-01-07 10:13:03 -0800228 ret_val = mbx->ops->write(hw, msg, size, mbx_id);
Mark Rustade90dd262014-07-22 06:51:08 +0000229 if (ret_val)
230 return ret_val;
Greg Rose10ca1322010-01-09 02:25:10 +0000231
232 /* if msg sent wait until we receive an ack */
Mark Rustade90dd262014-07-22 06:51:08 +0000233 return ixgbe_poll_for_ack(hw, mbx_id);
Greg Rose10ca1322010-01-09 02:25:10 +0000234}
235
Greg Rose10ca1322010-01-09 02:25:10 +0000236static s32 ixgbe_check_for_bit_pf(struct ixgbe_hw *hw, u32 mask, s32 index)
237{
238 u32 mbvficr = IXGBE_READ_REG(hw, IXGBE_MBVFICR(index));
Greg Rose10ca1322010-01-09 02:25:10 +0000239
240 if (mbvficr & mask) {
Greg Rose10ca1322010-01-09 02:25:10 +0000241 IXGBE_WRITE_REG(hw, IXGBE_MBVFICR(index), mask);
Mark Rustade90dd262014-07-22 06:51:08 +0000242 return 0;
Greg Rose10ca1322010-01-09 02:25:10 +0000243 }
244
Mark Rustade90dd262014-07-22 06:51:08 +0000245 return IXGBE_ERR_MBX;
Greg Rose10ca1322010-01-09 02:25:10 +0000246}
247
248/**
249 * ixgbe_check_for_msg_pf - checks to see if the VF has sent mail
250 * @hw: pointer to the HW structure
251 * @vf_number: the VF index
252 *
253 * returns SUCCESS if the VF has set the Status bit or else ERR_MBX
254 **/
255static s32 ixgbe_check_for_msg_pf(struct ixgbe_hw *hw, u16 vf_number)
256{
Greg Rose10ca1322010-01-09 02:25:10 +0000257 s32 index = IXGBE_MBVFICR_INDEX(vf_number);
258 u32 vf_bit = vf_number % 16;
259
260 if (!ixgbe_check_for_bit_pf(hw, IXGBE_MBVFICR_VFREQ_VF1 << vf_bit,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000261 index)) {
Greg Rose10ca1322010-01-09 02:25:10 +0000262 hw->mbx.stats.reqs++;
Mark Rustade90dd262014-07-22 06:51:08 +0000263 return 0;
Greg Rose10ca1322010-01-09 02:25:10 +0000264 }
265
Mark Rustade90dd262014-07-22 06:51:08 +0000266 return IXGBE_ERR_MBX;
Greg Rose10ca1322010-01-09 02:25:10 +0000267}
268
269/**
270 * ixgbe_check_for_ack_pf - checks to see if the VF has ACKed
271 * @hw: pointer to the HW structure
272 * @vf_number: the VF index
273 *
274 * returns SUCCESS if the VF has set the Status bit or else ERR_MBX
275 **/
276static s32 ixgbe_check_for_ack_pf(struct ixgbe_hw *hw, u16 vf_number)
277{
Greg Rose10ca1322010-01-09 02:25:10 +0000278 s32 index = IXGBE_MBVFICR_INDEX(vf_number);
279 u32 vf_bit = vf_number % 16;
280
281 if (!ixgbe_check_for_bit_pf(hw, IXGBE_MBVFICR_VFACK_VF1 << vf_bit,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000282 index)) {
Greg Rose10ca1322010-01-09 02:25:10 +0000283 hw->mbx.stats.acks++;
Mark Rustade90dd262014-07-22 06:51:08 +0000284 return 0;
Greg Rose10ca1322010-01-09 02:25:10 +0000285 }
286
Mark Rustade90dd262014-07-22 06:51:08 +0000287 return IXGBE_ERR_MBX;
Greg Rose10ca1322010-01-09 02:25:10 +0000288}
289
290/**
291 * ixgbe_check_for_rst_pf - checks to see if the VF has reset
292 * @hw: pointer to the HW structure
293 * @vf_number: the VF index
294 *
295 * returns SUCCESS if the VF has set the Status bit or else ERR_MBX
296 **/
297static s32 ixgbe_check_for_rst_pf(struct ixgbe_hw *hw, u16 vf_number)
298{
299 u32 reg_offset = (vf_number < 32) ? 0 : 1;
300 u32 vf_shift = vf_number % 32;
301 u32 vflre = 0;
Greg Rose10ca1322010-01-09 02:25:10 +0000302
Don Skidmoreb93a2222010-11-16 19:27:17 -0800303 switch (hw->mac.type) {
304 case ixgbe_mac_82599EB:
Greg Rose10ca1322010-01-09 02:25:10 +0000305 vflre = IXGBE_READ_REG(hw, IXGBE_VFLRE(reg_offset));
Don Skidmoreb93a2222010-11-16 19:27:17 -0800306 break;
Greg Rose3377eba792010-12-07 08:16:45 +0000307 case ixgbe_mac_X540:
Don Skidmore9a75a1a2014-11-07 03:53:35 +0000308 case ixgbe_mac_X550:
309 case ixgbe_mac_X550EM_x:
Mark Rustad49425df2016-04-01 12:18:09 -0700310 case ixgbe_mac_x550em_a:
Greg Rose3377eba792010-12-07 08:16:45 +0000311 vflre = IXGBE_READ_REG(hw, IXGBE_VFLREC(reg_offset));
312 break;
Don Skidmoreb93a2222010-11-16 19:27:17 -0800313 default:
314 break;
315 }
Greg Rose10ca1322010-01-09 02:25:10 +0000316
Jacob Kellerb4f47a42016-04-13 16:08:22 -0700317 if (vflre & BIT(vf_shift)) {
318 IXGBE_WRITE_REG(hw, IXGBE_VFLREC(reg_offset), BIT(vf_shift));
Greg Rose10ca1322010-01-09 02:25:10 +0000319 hw->mbx.stats.rsts++;
Mark Rustade90dd262014-07-22 06:51:08 +0000320 return 0;
Greg Rose10ca1322010-01-09 02:25:10 +0000321 }
322
Mark Rustade90dd262014-07-22 06:51:08 +0000323 return IXGBE_ERR_MBX;
Greg Rose10ca1322010-01-09 02:25:10 +0000324}
325
326/**
327 * ixgbe_obtain_mbx_lock_pf - obtain mailbox lock
328 * @hw: pointer to the HW structure
329 * @vf_number: the VF index
330 *
331 * return SUCCESS if we obtained the mailbox lock
332 **/
333static s32 ixgbe_obtain_mbx_lock_pf(struct ixgbe_hw *hw, u16 vf_number)
334{
Greg Rose10ca1322010-01-09 02:25:10 +0000335 u32 p2v_mailbox;
336
337 /* Take ownership of the buffer */
338 IXGBE_WRITE_REG(hw, IXGBE_PFMAILBOX(vf_number), IXGBE_PFMAILBOX_PFU);
339
340 /* reserve mailbox for vf use */
341 p2v_mailbox = IXGBE_READ_REG(hw, IXGBE_PFMAILBOX(vf_number));
342 if (p2v_mailbox & IXGBE_PFMAILBOX_PFU)
Mark Rustade90dd262014-07-22 06:51:08 +0000343 return 0;
Greg Rose10ca1322010-01-09 02:25:10 +0000344
Mark Rustade90dd262014-07-22 06:51:08 +0000345 return IXGBE_ERR_MBX;
Greg Rose10ca1322010-01-09 02:25:10 +0000346}
347
348/**
349 * ixgbe_write_mbx_pf - Places a message in the mailbox
350 * @hw: pointer to the HW structure
351 * @msg: The message buffer
352 * @size: Length of buffer
353 * @vf_number: the VF index
354 *
355 * returns SUCCESS if it successfully copied message into the buffer
356 **/
357static s32 ixgbe_write_mbx_pf(struct ixgbe_hw *hw, u32 *msg, u16 size,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000358 u16 vf_number)
Greg Rose10ca1322010-01-09 02:25:10 +0000359{
360 s32 ret_val;
361 u16 i;
362
363 /* lock the mailbox to prevent pf/vf race condition */
364 ret_val = ixgbe_obtain_mbx_lock_pf(hw, vf_number);
365 if (ret_val)
Mark Rustade90dd262014-07-22 06:51:08 +0000366 return ret_val;
Greg Rose10ca1322010-01-09 02:25:10 +0000367
368 /* flush msg and acks as we are overwriting the message buffer */
369 ixgbe_check_for_msg_pf(hw, vf_number);
370 ixgbe_check_for_ack_pf(hw, vf_number);
371
372 /* copy the caller specified message to the mailbox memory buffer */
373 for (i = 0; i < size; i++)
374 IXGBE_WRITE_REG_ARRAY(hw, IXGBE_PFMBMEM(vf_number), i, msg[i]);
375
376 /* Interrupt VF to tell it a message has been sent and release buffer*/
377 IXGBE_WRITE_REG(hw, IXGBE_PFMAILBOX(vf_number), IXGBE_PFMAILBOX_STS);
378
379 /* update stats */
380 hw->mbx.stats.msgs_tx++;
381
Mark Rustade90dd262014-07-22 06:51:08 +0000382 return 0;
Greg Rose10ca1322010-01-09 02:25:10 +0000383}
384
385/**
386 * ixgbe_read_mbx_pf - Read a message from the mailbox
387 * @hw: pointer to the HW structure
388 * @msg: The message buffer
389 * @size: Length of buffer
390 * @vf_number: the VF index
391 *
392 * This function copies a message from the mailbox buffer to the caller's
393 * memory buffer. The presumption is that the caller knows that there was
394 * a message due to a VF request so no polling for message is needed.
395 **/
396static s32 ixgbe_read_mbx_pf(struct ixgbe_hw *hw, u32 *msg, u16 size,
Jacob Kellere7cf7452014-04-09 06:03:10 +0000397 u16 vf_number)
Greg Rose10ca1322010-01-09 02:25:10 +0000398{
399 s32 ret_val;
400 u16 i;
401
402 /* lock the mailbox to prevent pf/vf race condition */
403 ret_val = ixgbe_obtain_mbx_lock_pf(hw, vf_number);
404 if (ret_val)
Mark Rustade90dd262014-07-22 06:51:08 +0000405 return ret_val;
Greg Rose10ca1322010-01-09 02:25:10 +0000406
407 /* copy the message to the mailbox memory buffer */
408 for (i = 0; i < size; i++)
409 msg[i] = IXGBE_READ_REG_ARRAY(hw, IXGBE_PFMBMEM(vf_number), i);
410
411 /* Acknowledge the message and release buffer */
412 IXGBE_WRITE_REG(hw, IXGBE_PFMAILBOX(vf_number), IXGBE_PFMAILBOX_ACK);
413
414 /* update stats */
415 hw->mbx.stats.msgs_rx++;
416
Mark Rustade90dd262014-07-22 06:51:08 +0000417 return 0;
Greg Rose10ca1322010-01-09 02:25:10 +0000418}
419
Don Skidmore8fecce62011-01-28 02:28:36 +0000420#ifdef CONFIG_PCI_IOV
Greg Rose10ca1322010-01-09 02:25:10 +0000421/**
422 * ixgbe_init_mbx_params_pf - set initial values for pf mailbox
423 * @hw: pointer to the HW structure
424 *
425 * Initializes the hw->mbx struct to correct values for pf mailbox
426 */
427void ixgbe_init_mbx_params_pf(struct ixgbe_hw *hw)
428{
429 struct ixgbe_mbx_info *mbx = &hw->mbx;
430
Emil Tantilovd7c8a292011-03-03 09:25:02 +0000431 if (hw->mac.type != ixgbe_mac_82599EB &&
Don Skidmore9a75a1a2014-11-07 03:53:35 +0000432 hw->mac.type != ixgbe_mac_X550 &&
433 hw->mac.type != ixgbe_mac_X550EM_x &&
Mark Rustad49425df2016-04-01 12:18:09 -0700434 hw->mac.type != ixgbe_mac_x550em_a &&
Emil Tantilovd7c8a292011-03-03 09:25:02 +0000435 hw->mac.type != ixgbe_mac_X540)
436 return;
Greg Rose10ca1322010-01-09 02:25:10 +0000437
Emil Tantilovd7c8a292011-03-03 09:25:02 +0000438 mbx->timeout = 0;
Andy Gospodarek5217e872011-03-08 14:26:00 -0800439 mbx->usec_delay = 0;
Greg Rose10ca1322010-01-09 02:25:10 +0000440
Emil Tantilovd7c8a292011-03-03 09:25:02 +0000441 mbx->stats.msgs_tx = 0;
442 mbx->stats.msgs_rx = 0;
443 mbx->stats.reqs = 0;
444 mbx->stats.acks = 0;
445 mbx->stats.rsts = 0;
446
447 mbx->size = IXGBE_VFMAILBOX_SIZE;
Greg Rose10ca1322010-01-09 02:25:10 +0000448}
Don Skidmore8fecce62011-01-28 02:28:36 +0000449#endif /* CONFIG_PCI_IOV */
Greg Rose10ca1322010-01-09 02:25:10 +0000450
Mark Rustad37689012016-01-07 10:13:03 -0800451const struct ixgbe_mbx_operations mbx_ops_generic = {
Greg Rose10ca1322010-01-09 02:25:10 +0000452 .read = ixgbe_read_mbx_pf,
453 .write = ixgbe_write_mbx_pf,
454 .read_posted = ixgbe_read_posted_mbx,
455 .write_posted = ixgbe_write_posted_mbx,
456 .check_for_msg = ixgbe_check_for_msg_pf,
457 .check_for_ack = ixgbe_check_for_ack_pf,
458 .check_for_rst = ixgbe_check_for_rst_pf,
459};
460