1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright(c) 2009 - 2018 Intel Corporation. */
7 * e1000_poll_for_msg - Wait for message notification
8 * @hw: pointer to the HW structure
10 * returns SUCCESS if it successfully received a message notification
12 static s32
e1000_poll_for_msg(struct e1000_hw
*hw
)
14 struct e1000_mbx_info
*mbx
= &hw
->mbx
;
15 int countdown
= mbx
->timeout
;
17 if (!mbx
->ops
.check_for_msg
)
20 while (countdown
&& mbx
->ops
.check_for_msg(hw
)) {
22 udelay(mbx
->usec_delay
);
25 /* if we failed, all future posted messages fail until reset */
29 return countdown
? E1000_SUCCESS
: -E1000_ERR_MBX
;
33 * e1000_poll_for_ack - Wait for message acknowledgment
34 * @hw: pointer to the HW structure
36 * returns SUCCESS if it successfully received a message acknowledgment
38 static s32
e1000_poll_for_ack(struct e1000_hw
*hw
)
40 struct e1000_mbx_info
*mbx
= &hw
->mbx
;
41 int countdown
= mbx
->timeout
;
43 if (!mbx
->ops
.check_for_ack
)
46 while (countdown
&& mbx
->ops
.check_for_ack(hw
)) {
48 udelay(mbx
->usec_delay
);
51 /* if we failed, all future posted messages fail until reset */
55 return countdown
? E1000_SUCCESS
: -E1000_ERR_MBX
;
59 * e1000_read_posted_mbx - Wait for message notification and receive message
60 * @hw: pointer to the HW structure
61 * @msg: The message buffer
62 * @size: Length of buffer
64 * returns SUCCESS if it successfully received a message notification and
65 * copied it into the receive buffer.
67 static s32
e1000_read_posted_mbx(struct e1000_hw
*hw
, u32
*msg
, u16 size
)
69 struct e1000_mbx_info
*mbx
= &hw
->mbx
;
70 s32 ret_val
= -E1000_ERR_MBX
;
75 ret_val
= e1000_poll_for_msg(hw
);
77 /* if ack received read message, otherwise we timed out */
79 ret_val
= mbx
->ops
.read(hw
, msg
, size
);
85 * e1000_write_posted_mbx - Write a message to the mailbox, wait for ack
86 * @hw: pointer to the HW structure
87 * @msg: The message buffer
88 * @size: Length of buffer
90 * returns SUCCESS if it successfully copied message into the buffer and
91 * received an ack to that message within delay * timeout period
93 static s32
e1000_write_posted_mbx(struct e1000_hw
*hw
, u32
*msg
, u16 size
)
95 struct e1000_mbx_info
*mbx
= &hw
->mbx
;
96 s32 ret_val
= -E1000_ERR_MBX
;
98 /* exit if we either can't write or there isn't a defined timeout */
99 if (!mbx
->ops
.write
|| !mbx
->timeout
)
103 ret_val
= mbx
->ops
.write(hw
, msg
, size
);
105 /* if msg sent wait until we receive an ack */
107 ret_val
= e1000_poll_for_ack(hw
);
113 * e1000_read_v2p_mailbox - read v2p mailbox
114 * @hw: pointer to the HW structure
116 * This function is used to read the v2p mailbox without losing the read to
119 static u32
e1000_read_v2p_mailbox(struct e1000_hw
*hw
)
121 u32 v2p_mailbox
= er32(V2PMAILBOX(0));
123 v2p_mailbox
|= hw
->dev_spec
.vf
.v2p_mailbox
;
124 hw
->dev_spec
.vf
.v2p_mailbox
|= v2p_mailbox
& E1000_V2PMAILBOX_R2C_BITS
;
130 * e1000_check_for_bit_vf - Determine if a status bit was set
131 * @hw: pointer to the HW structure
132 * @mask: bitmask for bits to be tested and cleared
134 * This function is used to check for the read to clear bits within
137 static s32
e1000_check_for_bit_vf(struct e1000_hw
*hw
, u32 mask
)
139 u32 v2p_mailbox
= e1000_read_v2p_mailbox(hw
);
140 s32 ret_val
= -E1000_ERR_MBX
;
142 if (v2p_mailbox
& mask
)
143 ret_val
= E1000_SUCCESS
;
145 hw
->dev_spec
.vf
.v2p_mailbox
&= ~mask
;
151 * e1000_check_for_msg_vf - checks to see if the PF has sent mail
152 * @hw: pointer to the HW structure
154 * returns SUCCESS if the PF has set the Status bit or else ERR_MBX
156 static s32
e1000_check_for_msg_vf(struct e1000_hw
*hw
)
158 s32 ret_val
= -E1000_ERR_MBX
;
160 if (!e1000_check_for_bit_vf(hw
, E1000_V2PMAILBOX_PFSTS
)) {
161 ret_val
= E1000_SUCCESS
;
162 hw
->mbx
.stats
.reqs
++;
169 * e1000_check_for_ack_vf - checks to see if the PF has ACK'd
170 * @hw: pointer to the HW structure
172 * returns SUCCESS if the PF has set the ACK bit or else ERR_MBX
174 static s32
e1000_check_for_ack_vf(struct e1000_hw
*hw
)
176 s32 ret_val
= -E1000_ERR_MBX
;
178 if (!e1000_check_for_bit_vf(hw
, E1000_V2PMAILBOX_PFACK
)) {
179 ret_val
= E1000_SUCCESS
;
180 hw
->mbx
.stats
.acks
++;
187 * e1000_check_for_rst_vf - checks to see if the PF has reset
188 * @hw: pointer to the HW structure
190 * returns true if the PF has set the reset done bit or else false
192 static s32
e1000_check_for_rst_vf(struct e1000_hw
*hw
)
194 s32 ret_val
= -E1000_ERR_MBX
;
196 if (!e1000_check_for_bit_vf(hw
, (E1000_V2PMAILBOX_RSTD
|
197 E1000_V2PMAILBOX_RSTI
))) {
198 ret_val
= E1000_SUCCESS
;
199 hw
->mbx
.stats
.rsts
++;
206 * e1000_obtain_mbx_lock_vf - obtain mailbox lock
207 * @hw: pointer to the HW structure
209 * return SUCCESS if we obtained the mailbox lock
211 static s32
e1000_obtain_mbx_lock_vf(struct e1000_hw
*hw
)
213 s32 ret_val
= -E1000_ERR_MBX
;
217 /* Take ownership of the buffer */
218 ew32(V2PMAILBOX(0), E1000_V2PMAILBOX_VFU
);
220 /* reserve mailbox for VF use */
221 if (e1000_read_v2p_mailbox(hw
) & E1000_V2PMAILBOX_VFU
) {
226 } while (count
-- > 0);
232 * e1000_write_mbx_vf - Write a message to the mailbox
233 * @hw: pointer to the HW structure
234 * @msg: The message buffer
235 * @size: Length of buffer
237 * returns SUCCESS if it successfully copied message into the buffer
239 static s32
e1000_write_mbx_vf(struct e1000_hw
*hw
, u32
*msg
, u16 size
)
244 lockdep_assert_held(&hw
->mbx_lock
);
246 /* lock the mailbox to prevent pf/vf race condition */
247 err
= e1000_obtain_mbx_lock_vf(hw
);
251 /* flush any ack or msg as we are going to overwrite mailbox */
252 e1000_check_for_ack_vf(hw
);
253 e1000_check_for_msg_vf(hw
);
255 /* copy the caller specified message to the mailbox memory buffer */
256 for (i
= 0; i
< size
; i
++)
257 array_ew32(VMBMEM(0), i
, msg
[i
]);
260 hw
->mbx
.stats
.msgs_tx
++;
262 /* Drop VFU and interrupt the PF to tell it a message has been sent */
263 ew32(V2PMAILBOX(0), E1000_V2PMAILBOX_REQ
);
270 * e1000_read_mbx_vf - Reads a message from the inbox intended for VF
271 * @hw: pointer to the HW structure
272 * @msg: The message buffer
273 * @size: Length of buffer
275 * returns SUCCESS if it successfully read message from buffer
277 static s32
e1000_read_mbx_vf(struct e1000_hw
*hw
, u32
*msg
, u16 size
)
282 lockdep_assert_held(&hw
->mbx_lock
);
284 /* lock the mailbox to prevent pf/vf race condition */
285 err
= e1000_obtain_mbx_lock_vf(hw
);
289 /* copy the message from the mailbox memory buffer */
290 for (i
= 0; i
< size
; i
++)
291 msg
[i
] = array_er32(VMBMEM(0), i
);
293 /* Acknowledge receipt and release mailbox, then we're done */
294 ew32(V2PMAILBOX(0), E1000_V2PMAILBOX_ACK
);
297 hw
->mbx
.stats
.msgs_rx
++;
304 * e1000_init_mbx_params_vf - set initial values for VF mailbox
305 * @hw: pointer to the HW structure
307 * Initializes the hw->mbx struct to correct values for VF mailbox
309 s32
e1000_init_mbx_params_vf(struct e1000_hw
*hw
)
311 struct e1000_mbx_info
*mbx
= &hw
->mbx
;
313 /* start mailbox as timed out and let the reset_hw call set the timeout
314 * value to being communications
317 mbx
->usec_delay
= E1000_VF_MBX_INIT_DELAY
;
319 mbx
->size
= E1000_VFMAILBOX_SIZE
;
321 mbx
->ops
.read
= e1000_read_mbx_vf
;
322 mbx
->ops
.write
= e1000_write_mbx_vf
;
323 mbx
->ops
.read_posted
= e1000_read_posted_mbx
;
324 mbx
->ops
.write_posted
= e1000_write_posted_mbx
;
325 mbx
->ops
.check_for_msg
= e1000_check_for_msg_vf
;
326 mbx
->ops
.check_for_ack
= e1000_check_for_ack_vf
;
327 mbx
->ops
.check_for_rst
= e1000_check_for_rst_vf
;
329 mbx
->stats
.msgs_tx
= 0;
330 mbx
->stats
.msgs_rx
= 0;
335 return E1000_SUCCESS
;