blob: d6b8a77f5b226499a25bba6b0cd736b74721e50b [file] [log] [blame]
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001/****************************************************************************
Ben Hutchingsf7a6d2c2013-08-29 23:32:48 +01002 * Driver for Solarflare network controllers and boards
3 * Copyright 2008-2013 Solarflare Communications Inc.
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published
7 * by the Free Software Foundation, incorporated herein by reference.
8 */
9
10#include <linux/delay.h>
Edward Cree42ca0872015-05-27 13:14:26 +010011#include <linux/moduleparam.h>
Boqun Feng84567992015-08-26 19:52:46 +080012#include <linux/atomic.h>
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000013#include "net_driver.h"
14#include "nic.h"
15#include "io.h"
Ben Hutchings8b8a95a2012-09-18 01:57:07 +010016#include "farch_regs.h"
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000017#include "mcdi_pcol.h"
18#include "phy.h"
19
20/**************************************************************************
21 *
22 * Management-Controller-to-Driver Interface
23 *
24 **************************************************************************
25 */
26
Ben Hutchingsebf98e72012-12-01 02:21:17 +000027#define MCDI_RPC_TIMEOUT (10 * HZ)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000028
Ben Hutchings3f713bf2011-12-20 23:39:31 +000029/* A reboot/assertion causes the MCDI status word to be set after the
30 * command word is set or a REBOOT event is sent. If we notice a reboot
Daniel Pieczkob2d32f02013-09-20 16:45:10 +010031 * via these mechanisms then wait 250ms for the status word to be set.
Daniel Pieczkod36a08b2013-06-20 11:40:07 +010032 */
Ben Hutchings3f713bf2011-12-20 23:39:31 +000033#define MCDI_STATUS_DELAY_US 100
Daniel Pieczkob2d32f02013-09-20 16:45:10 +010034#define MCDI_STATUS_DELAY_COUNT 2500
Ben Hutchings3f713bf2011-12-20 23:39:31 +000035#define MCDI_STATUS_SLEEP_MS \
36 (MCDI_STATUS_DELAY_US * MCDI_STATUS_DELAY_COUNT / 1000)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000037
38#define SEQ_MASK \
39 EFX_MASK32(EFX_WIDTH(MCDI_HEADER_SEQ))
40
Ben Hutchingscade7152013-08-27 23:12:31 +010041struct efx_mcdi_async_param {
42 struct list_head list;
43 unsigned int cmd;
44 size_t inlen;
45 size_t outlen;
Edward Cree1e0b8122013-05-31 18:36:12 +010046 bool quiet;
Ben Hutchingscade7152013-08-27 23:12:31 +010047 efx_mcdi_async_completer *complete;
48 unsigned long cookie;
49 /* followed by request/response buffer */
50};
51
52static void efx_mcdi_timeout_async(unsigned long context);
Ben Hutchings4c75b43a2013-08-29 19:04:03 +010053static int efx_mcdi_drv_attach(struct efx_nic *efx, bool driver_operating,
54 bool *was_attached_out);
Robert Stonehouse5731d7b2013-10-09 11:52:43 +010055static bool efx_mcdi_poll_once(struct efx_nic *efx);
Edward Creee2835462014-04-16 19:27:48 +010056static void efx_mcdi_abandon(struct efx_nic *efx);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000057
Edward Cree42ca0872015-05-27 13:14:26 +010058#ifdef CONFIG_SFC_MCDI_LOGGING
59static bool mcdi_logging_default;
60module_param(mcdi_logging_default, bool, 0644);
61MODULE_PARM_DESC(mcdi_logging_default,
62 "Enable MCDI logging on newly-probed functions");
63#endif
64
Ben Hutchingsf073dde2012-09-18 02:33:55 +010065int efx_mcdi_init(struct efx_nic *efx)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000066{
67 struct efx_mcdi_iface *mcdi;
Ben Hutchings4c75b43a2013-08-29 19:04:03 +010068 bool already_attached;
Edward Cree75aba2a2015-05-27 13:13:54 +010069 int rc = -ENOMEM;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000070
Ben Hutchingsf3ad5002012-09-18 02:33:56 +010071 efx->mcdi = kzalloc(sizeof(*efx->mcdi), GFP_KERNEL);
72 if (!efx->mcdi)
Edward Cree75aba2a2015-05-27 13:13:54 +010073 goto fail;
Ben Hutchingsf3ad5002012-09-18 02:33:56 +010074
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000075 mcdi = efx_mcdi(efx);
Ben Hutchingscade7152013-08-27 23:12:31 +010076 mcdi->efx = efx;
Edward Cree75aba2a2015-05-27 13:13:54 +010077#ifdef CONFIG_SFC_MCDI_LOGGING
78 /* consuming code assumes buffer is page-sized */
79 mcdi->logging_buffer = (char *)__get_free_page(GFP_KERNEL);
80 if (!mcdi->logging_buffer)
81 goto fail1;
Edward Cree42ca0872015-05-27 13:14:26 +010082 mcdi->logging_enabled = mcdi_logging_default;
Edward Cree75aba2a2015-05-27 13:13:54 +010083#endif
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000084 init_waitqueue_head(&mcdi->wq);
Bert Kenwardacd43a92015-12-23 08:57:18 +000085 init_waitqueue_head(&mcdi->proxy_rx_wq);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000086 spin_lock_init(&mcdi->iface_lock);
Ben Hutchings251111d2013-08-27 23:04:29 +010087 mcdi->state = MCDI_STATE_QUIESCENT;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000088 mcdi->mode = MCDI_MODE_POLL;
Ben Hutchingscade7152013-08-27 23:12:31 +010089 spin_lock_init(&mcdi->async_lock);
90 INIT_LIST_HEAD(&mcdi->async_list);
91 setup_timer(&mcdi->async_timer, efx_mcdi_timeout_async,
92 (unsigned long)mcdi);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000093
94 (void) efx_mcdi_poll_reboot(efx);
Daniel Pieczkod36a08b2013-06-20 11:40:07 +010095 mcdi->new_epoch = true;
Ben Hutchingsf073dde2012-09-18 02:33:55 +010096
97 /* Recover from a failed assertion before probing */
Ben Hutchings4c75b43a2013-08-29 19:04:03 +010098 rc = efx_mcdi_handle_assertion(efx);
99 if (rc)
Edward Cree75aba2a2015-05-27 13:13:54 +0100100 goto fail2;
Ben Hutchings4c75b43a2013-08-29 19:04:03 +0100101
102 /* Let the MC (and BMC, if this is a LOM) know that the driver
103 * is loaded. We should do this before we reset the NIC.
104 */
105 rc = efx_mcdi_drv_attach(efx, true, &already_attached);
106 if (rc) {
107 netif_err(efx, probe, efx->net_dev,
108 "Unable to register driver with MCPU\n");
Edward Cree75aba2a2015-05-27 13:13:54 +0100109 goto fail2;
Ben Hutchings4c75b43a2013-08-29 19:04:03 +0100110 }
111 if (already_attached)
112 /* Not a fatal error */
113 netif_err(efx, probe, efx->net_dev,
114 "Host already registered with MCPU\n");
115
Ben Hutchings0bcf4a62013-10-18 19:21:45 +0100116 if (efx->mcdi->fn_flags &
117 (1 << MC_CMD_DRV_ATTACH_EXT_OUT_FLAG_PRIMARY))
118 efx->primary = efx;
119
Ben Hutchings4c75b43a2013-08-29 19:04:03 +0100120 return 0;
Edward Cree75aba2a2015-05-27 13:13:54 +0100121fail2:
122#ifdef CONFIG_SFC_MCDI_LOGGING
123 free_page((unsigned long)mcdi->logging_buffer);
124fail1:
125#endif
126 kfree(efx->mcdi);
127 efx->mcdi = NULL;
128fail:
129 return rc;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000130}
131
Ben Hutchingsf3ad5002012-09-18 02:33:56 +0100132void efx_mcdi_fini(struct efx_nic *efx)
133{
Ben Hutchings4c75b43a2013-08-29 19:04:03 +0100134 if (!efx->mcdi)
135 return;
136
137 BUG_ON(efx->mcdi->iface.state != MCDI_STATE_QUIESCENT);
138
139 /* Relinquish the device (back to the BMC, if this is a LOM) */
140 efx_mcdi_drv_attach(efx, false, NULL);
141
Edward Cree75aba2a2015-05-27 13:13:54 +0100142#ifdef CONFIG_SFC_MCDI_LOGGING
143 free_page((unsigned long)efx->mcdi->iface.logging_buffer);
144#endif
145
Ben Hutchingsf3ad5002012-09-18 02:33:56 +0100146 kfree(efx->mcdi);
147}
148
Ben Hutchings2f4bcdc2013-08-22 22:06:09 +0100149static void efx_mcdi_send_request(struct efx_nic *efx, unsigned cmd,
150 const efx_dword_t *inbuf, size_t inlen)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000151{
152 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
Edward Cree75aba2a2015-05-27 13:13:54 +0100153#ifdef CONFIG_SFC_MCDI_LOGGING
154 char *buf = mcdi->logging_buffer; /* page-sized */
155#endif
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100156 efx_dword_t hdr[2];
157 size_t hdr_len;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000158 u32 xflags, seqno;
159
Ben Hutchings251111d2013-08-27 23:04:29 +0100160 BUG_ON(mcdi->state == MCDI_STATE_QUIESCENT);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000161
Ben Hutchings2f4bcdc2013-08-22 22:06:09 +0100162 /* Serialise with efx_mcdi_ev_cpl() and efx_mcdi_ev_death() */
163 spin_lock_bh(&mcdi->iface_lock);
164 ++mcdi->seqno;
165 spin_unlock_bh(&mcdi->iface_lock);
166
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000167 seqno = mcdi->seqno & SEQ_MASK;
168 xflags = 0;
169 if (mcdi->mode == MCDI_MODE_EVENTS)
170 xflags |= MCDI_HEADER_XFLAGS_EVREQ;
171
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100172 if (efx->type->mcdi_max_ver == 1) {
173 /* MCDI v1 */
Daniel Pieczkod36a08b2013-06-20 11:40:07 +0100174 EFX_POPULATE_DWORD_7(hdr[0],
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100175 MCDI_HEADER_RESPONSE, 0,
176 MCDI_HEADER_RESYNC, 1,
177 MCDI_HEADER_CODE, cmd,
178 MCDI_HEADER_DATALEN, inlen,
179 MCDI_HEADER_SEQ, seqno,
Daniel Pieczkod36a08b2013-06-20 11:40:07 +0100180 MCDI_HEADER_XFLAGS, xflags,
181 MCDI_HEADER_NOT_EPOCH, !mcdi->new_epoch);
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100182 hdr_len = 4;
183 } else {
184 /* MCDI v2 */
185 BUG_ON(inlen > MCDI_CTL_SDU_LEN_MAX_V2);
Daniel Pieczkod36a08b2013-06-20 11:40:07 +0100186 EFX_POPULATE_DWORD_7(hdr[0],
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100187 MCDI_HEADER_RESPONSE, 0,
188 MCDI_HEADER_RESYNC, 1,
189 MCDI_HEADER_CODE, MC_CMD_V2_EXTN,
190 MCDI_HEADER_DATALEN, 0,
191 MCDI_HEADER_SEQ, seqno,
Daniel Pieczkod36a08b2013-06-20 11:40:07 +0100192 MCDI_HEADER_XFLAGS, xflags,
193 MCDI_HEADER_NOT_EPOCH, !mcdi->new_epoch);
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100194 EFX_POPULATE_DWORD_2(hdr[1],
195 MC_CMD_V2_EXTN_IN_EXTENDED_CMD, cmd,
196 MC_CMD_V2_EXTN_IN_ACTUAL_LEN, inlen);
197 hdr_len = 8;
198 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000199
Edward Cree75aba2a2015-05-27 13:13:54 +0100200#ifdef CONFIG_SFC_MCDI_LOGGING
Edward Creee7fef9b2015-05-27 13:14:01 +0100201 if (mcdi->logging_enabled && !WARN_ON_ONCE(!buf)) {
Edward Cree75aba2a2015-05-27 13:13:54 +0100202 int bytes = 0;
203 int i;
204 /* Lengths should always be a whole number of dwords, so scream
205 * if they're not.
206 */
207 WARN_ON_ONCE(hdr_len % 4);
208 WARN_ON_ONCE(inlen % 4);
209
210 /* We own the logging buffer, as only one MCDI can be in
211 * progress on a NIC at any one time. So no need for locking.
212 */
213 for (i = 0; i < hdr_len / 4 && bytes < PAGE_SIZE; i++)
214 bytes += snprintf(buf + bytes, PAGE_SIZE - bytes,
215 " %08x", le32_to_cpu(hdr[i].u32[0]));
216
217 for (i = 0; i < inlen / 4 && bytes < PAGE_SIZE; i++)
218 bytes += snprintf(buf + bytes, PAGE_SIZE - bytes,
219 " %08x", le32_to_cpu(inbuf[i].u32[0]));
220
221 netif_info(efx, hw, efx->net_dev, "MCDI RPC REQ:%s\n", buf);
222 }
223#endif
224
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100225 efx->type->mcdi_request(efx, hdr, hdr_len, inbuf, inlen);
Ben Hutchings2f4bcdc2013-08-22 22:06:09 +0100226
227 mcdi->new_epoch = false;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000228}
229
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100230static int efx_mcdi_errno(unsigned int mcdi_err)
231{
232 switch (mcdi_err) {
233 case 0:
234 return 0;
235#define TRANSLATE_ERROR(name) \
236 case MC_CMD_ERR_ ## name: \
237 return -name;
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100238 TRANSLATE_ERROR(EPERM);
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100239 TRANSLATE_ERROR(ENOENT);
240 TRANSLATE_ERROR(EINTR);
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100241 TRANSLATE_ERROR(EAGAIN);
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100242 TRANSLATE_ERROR(EACCES);
243 TRANSLATE_ERROR(EBUSY);
244 TRANSLATE_ERROR(EINVAL);
245 TRANSLATE_ERROR(EDEADLK);
246 TRANSLATE_ERROR(ENOSYS);
247 TRANSLATE_ERROR(ETIME);
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100248 TRANSLATE_ERROR(EALREADY);
249 TRANSLATE_ERROR(ENOSPC);
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100250#undef TRANSLATE_ERROR
Ben Hutchingsea136ae2013-10-08 16:36:58 +0100251 case MC_CMD_ERR_ENOTSUP:
252 return -EOPNOTSUPP;
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100253 case MC_CMD_ERR_ALLOC_FAIL:
254 return -ENOBUFS;
255 case MC_CMD_ERR_MAC_EXIST:
256 return -EADDRINUSE;
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100257 default:
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100258 return -EPROTO;
259 }
260}
261
262static void efx_mcdi_read_response_header(struct efx_nic *efx)
263{
264 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
265 unsigned int respseq, respcmd, error;
Edward Cree75aba2a2015-05-27 13:13:54 +0100266#ifdef CONFIG_SFC_MCDI_LOGGING
267 char *buf = mcdi->logging_buffer; /* page-sized */
268#endif
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100269 efx_dword_t hdr;
270
271 efx->type->mcdi_read_response(efx, &hdr, 0, 4);
272 respseq = EFX_DWORD_FIELD(hdr, MCDI_HEADER_SEQ);
273 respcmd = EFX_DWORD_FIELD(hdr, MCDI_HEADER_CODE);
274 error = EFX_DWORD_FIELD(hdr, MCDI_HEADER_ERROR);
275
276 if (respcmd != MC_CMD_V2_EXTN) {
277 mcdi->resp_hdr_len = 4;
278 mcdi->resp_data_len = EFX_DWORD_FIELD(hdr, MCDI_HEADER_DATALEN);
279 } else {
280 efx->type->mcdi_read_response(efx, &hdr, 4, 4);
281 mcdi->resp_hdr_len = 8;
282 mcdi->resp_data_len =
283 EFX_DWORD_FIELD(hdr, MC_CMD_V2_EXTN_IN_ACTUAL_LEN);
284 }
285
Edward Cree75aba2a2015-05-27 13:13:54 +0100286#ifdef CONFIG_SFC_MCDI_LOGGING
Edward Creee7fef9b2015-05-27 13:14:01 +0100287 if (mcdi->logging_enabled && !WARN_ON_ONCE(!buf)) {
Edward Cree75aba2a2015-05-27 13:13:54 +0100288 size_t hdr_len, data_len;
289 int bytes = 0;
290 int i;
291
292 WARN_ON_ONCE(mcdi->resp_hdr_len % 4);
293 hdr_len = mcdi->resp_hdr_len / 4;
294 /* MCDI_DECLARE_BUF ensures that underlying buffer is padded
295 * to dword size, and the MCDI buffer is always dword size
296 */
297 data_len = DIV_ROUND_UP(mcdi->resp_data_len, 4);
298
299 /* We own the logging buffer, as only one MCDI can be in
300 * progress on a NIC at any one time. So no need for locking.
301 */
302 for (i = 0; i < hdr_len && bytes < PAGE_SIZE; i++) {
303 efx->type->mcdi_read_response(efx, &hdr, (i * 4), 4);
304 bytes += snprintf(buf + bytes, PAGE_SIZE - bytes,
305 " %08x", le32_to_cpu(hdr.u32[0]));
306 }
307
308 for (i = 0; i < data_len && bytes < PAGE_SIZE; i++) {
309 efx->type->mcdi_read_response(efx, &hdr,
310 mcdi->resp_hdr_len + (i * 4), 4);
311 bytes += snprintf(buf + bytes, PAGE_SIZE - bytes,
312 " %08x", le32_to_cpu(hdr.u32[0]));
313 }
314
315 netif_info(efx, hw, efx->net_dev, "MCDI RPC RESP:%s\n", buf);
316 }
317#endif
318
Bert Kenwardac28d172015-12-23 08:56:40 +0000319 mcdi->resprc_raw = 0;
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100320 if (error && mcdi->resp_data_len == 0) {
321 netif_err(efx, hw, efx->net_dev, "MC rebooted\n");
322 mcdi->resprc = -EIO;
323 } else if ((respseq ^ mcdi->seqno) & SEQ_MASK) {
324 netif_err(efx, hw, efx->net_dev,
325 "MC response mismatch tx seq 0x%x rx seq 0x%x\n",
326 respseq, mcdi->seqno);
327 mcdi->resprc = -EIO;
328 } else if (error) {
329 efx->type->mcdi_read_response(efx, &hdr, mcdi->resp_hdr_len, 4);
Bert Kenwardac28d172015-12-23 08:56:40 +0000330 mcdi->resprc_raw = EFX_DWORD_FIELD(hdr, EFX_DWORD_0);
331 mcdi->resprc = efx_mcdi_errno(mcdi->resprc_raw);
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100332 } else {
333 mcdi->resprc = 0;
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100334 }
335}
336
Robert Stonehouse5731d7b2013-10-09 11:52:43 +0100337static bool efx_mcdi_poll_once(struct efx_nic *efx)
338{
339 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
340
341 rmb();
342 if (!efx->type->mcdi_poll_response(efx))
343 return false;
344
345 spin_lock_bh(&mcdi->iface_lock);
346 efx_mcdi_read_response_header(efx);
347 spin_unlock_bh(&mcdi->iface_lock);
348
349 return true;
350}
351
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000352static int efx_mcdi_poll(struct efx_nic *efx)
353{
354 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
Ben Hutchingsebf98e72012-12-01 02:21:17 +0000355 unsigned long time, finish;
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100356 unsigned int spins;
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100357 int rc;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000358
359 /* Check for a reboot atomically with respect to efx_mcdi_copyout() */
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100360 rc = efx_mcdi_poll_reboot(efx);
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100361 if (rc) {
Ben Hutchings369327f2012-10-26 17:53:12 +0100362 spin_lock_bh(&mcdi->iface_lock);
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100363 mcdi->resprc = rc;
364 mcdi->resp_hdr_len = 0;
365 mcdi->resp_data_len = 0;
Ben Hutchings369327f2012-10-26 17:53:12 +0100366 spin_unlock_bh(&mcdi->iface_lock);
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100367 return 0;
368 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000369
370 /* Poll for completion. Poll quickly (once a us) for the 1st jiffy,
371 * because generally mcdi responses are fast. After that, back off
372 * and poll once a jiffy (approximately)
373 */
374 spins = TICK_USEC;
Ben Hutchingsebf98e72012-12-01 02:21:17 +0000375 finish = jiffies + MCDI_RPC_TIMEOUT;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000376
377 while (1) {
378 if (spins != 0) {
379 --spins;
380 udelay(1);
Ben Hutchings55029c12010-01-13 04:34:25 +0000381 } else {
382 schedule_timeout_uninterruptible(1);
383 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000384
Ben Hutchingsebf98e72012-12-01 02:21:17 +0000385 time = jiffies;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000386
Robert Stonehouse5731d7b2013-10-09 11:52:43 +0100387 if (efx_mcdi_poll_once(efx))
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000388 break;
389
Ben Hutchingsebf98e72012-12-01 02:21:17 +0000390 if (time_after(time, finish))
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000391 return -ETIMEDOUT;
392 }
393
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000394 /* Return rc=0 like wait_event_timeout() */
395 return 0;
396}
397
Ben Hutchings876be082012-10-01 20:58:35 +0100398/* Test and clear MC-rebooted flag for this port/function; reset
399 * software state as necessary.
400 */
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000401int efx_mcdi_poll_reboot(struct efx_nic *efx)
402{
Ben Hutchingsf3ad5002012-09-18 02:33:56 +0100403 if (!efx->mcdi)
404 return 0;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000405
Ben Hutchingscd0ecc92012-12-14 21:52:56 +0000406 return efx->type->mcdi_poll_reboot(efx);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000407}
408
Ben Hutchingscade7152013-08-27 23:12:31 +0100409static bool efx_mcdi_acquire_async(struct efx_mcdi_iface *mcdi)
410{
411 return cmpxchg(&mcdi->state,
412 MCDI_STATE_QUIESCENT, MCDI_STATE_RUNNING_ASYNC) ==
413 MCDI_STATE_QUIESCENT;
414}
415
416static void efx_mcdi_acquire_sync(struct efx_mcdi_iface *mcdi)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000417{
418 /* Wait until the interface becomes QUIESCENT and we win the race
Ben Hutchingscade7152013-08-27 23:12:31 +0100419 * to mark it RUNNING_SYNC.
420 */
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000421 wait_event(mcdi->wq,
Ben Hutchings251111d2013-08-27 23:04:29 +0100422 cmpxchg(&mcdi->state,
Ben Hutchingscade7152013-08-27 23:12:31 +0100423 MCDI_STATE_QUIESCENT, MCDI_STATE_RUNNING_SYNC) ==
Ben Hutchings251111d2013-08-27 23:04:29 +0100424 MCDI_STATE_QUIESCENT);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000425}
426
427static int efx_mcdi_await_completion(struct efx_nic *efx)
428{
429 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
430
Ben Hutchings251111d2013-08-27 23:04:29 +0100431 if (wait_event_timeout(mcdi->wq, mcdi->state == MCDI_STATE_COMPLETED,
432 MCDI_RPC_TIMEOUT) == 0)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000433 return -ETIMEDOUT;
434
435 /* Check if efx_mcdi_set_mode() switched us back to polled completions.
436 * In which case, poll for completions directly. If efx_mcdi_ev_cpl()
437 * completed the request first, then we'll just end up completing the
438 * request again, which is safe.
439 *
440 * We need an smp_rmb() to synchronise with efx_mcdi_mode_poll(), which
441 * wait_event_timeout() implicitly provides.
442 */
443 if (mcdi->mode == MCDI_MODE_POLL)
444 return efx_mcdi_poll(efx);
445
446 return 0;
447}
448
Ben Hutchingscade7152013-08-27 23:12:31 +0100449/* If the interface is RUNNING_SYNC, switch to COMPLETED and wake the
450 * requester. Return whether this was done. Does not take any locks.
451 */
452static bool efx_mcdi_complete_sync(struct efx_mcdi_iface *mcdi)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000453{
Ben Hutchingscade7152013-08-27 23:12:31 +0100454 if (cmpxchg(&mcdi->state,
455 MCDI_STATE_RUNNING_SYNC, MCDI_STATE_COMPLETED) ==
456 MCDI_STATE_RUNNING_SYNC) {
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000457 wake_up(&mcdi->wq);
458 return true;
459 }
460
461 return false;
462}
463
464static void efx_mcdi_release(struct efx_mcdi_iface *mcdi)
465{
Ben Hutchingscade7152013-08-27 23:12:31 +0100466 if (mcdi->mode == MCDI_MODE_EVENTS) {
467 struct efx_mcdi_async_param *async;
468 struct efx_nic *efx = mcdi->efx;
469
470 /* Process the asynchronous request queue */
471 spin_lock_bh(&mcdi->async_lock);
472 async = list_first_entry_or_null(
473 &mcdi->async_list, struct efx_mcdi_async_param, list);
474 if (async) {
475 mcdi->state = MCDI_STATE_RUNNING_ASYNC;
476 efx_mcdi_send_request(efx, async->cmd,
477 (const efx_dword_t *)(async + 1),
478 async->inlen);
479 mod_timer(&mcdi->async_timer,
480 jiffies + MCDI_RPC_TIMEOUT);
481 }
482 spin_unlock_bh(&mcdi->async_lock);
483
484 if (async)
485 return;
486 }
487
Ben Hutchings251111d2013-08-27 23:04:29 +0100488 mcdi->state = MCDI_STATE_QUIESCENT;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000489 wake_up(&mcdi->wq);
490}
491
Ben Hutchingscade7152013-08-27 23:12:31 +0100492/* If the interface is RUNNING_ASYNC, switch to COMPLETED, call the
493 * asynchronous completion function, and release the interface.
494 * Return whether this was done. Must be called in bh-disabled
495 * context. Will take iface_lock and async_lock.
496 */
497static bool efx_mcdi_complete_async(struct efx_mcdi_iface *mcdi, bool timeout)
498{
499 struct efx_nic *efx = mcdi->efx;
500 struct efx_mcdi_async_param *async;
Edward Cree1e0b8122013-05-31 18:36:12 +0100501 size_t hdr_len, data_len, err_len;
Ben Hutchingscade7152013-08-27 23:12:31 +0100502 efx_dword_t *outbuf;
Jon Cooperaa09a3d2015-05-20 11:10:41 +0100503 MCDI_DECLARE_BUF_ERR(errbuf);
Ben Hutchingscade7152013-08-27 23:12:31 +0100504 int rc;
505
506 if (cmpxchg(&mcdi->state,
507 MCDI_STATE_RUNNING_ASYNC, MCDI_STATE_COMPLETED) !=
508 MCDI_STATE_RUNNING_ASYNC)
509 return false;
510
511 spin_lock(&mcdi->iface_lock);
512 if (timeout) {
513 /* Ensure that if the completion event arrives later,
514 * the seqno check in efx_mcdi_ev_cpl() will fail
515 */
516 ++mcdi->seqno;
517 ++mcdi->credits;
518 rc = -ETIMEDOUT;
519 hdr_len = 0;
520 data_len = 0;
521 } else {
522 rc = mcdi->resprc;
523 hdr_len = mcdi->resp_hdr_len;
524 data_len = mcdi->resp_data_len;
525 }
526 spin_unlock(&mcdi->iface_lock);
527
528 /* Stop the timer. In case the timer function is running, we
529 * must wait for it to return so that there is no possibility
530 * of it aborting the next request.
531 */
532 if (!timeout)
533 del_timer_sync(&mcdi->async_timer);
534
535 spin_lock(&mcdi->async_lock);
536 async = list_first_entry(&mcdi->async_list,
537 struct efx_mcdi_async_param, list);
538 list_del(&async->list);
539 spin_unlock(&mcdi->async_lock);
540
541 outbuf = (efx_dword_t *)(async + 1);
542 efx->type->mcdi_read_response(efx, outbuf, hdr_len,
543 min(async->outlen, data_len));
Edward Cree1e0b8122013-05-31 18:36:12 +0100544 if (!timeout && rc && !async->quiet) {
545 err_len = min(sizeof(errbuf), data_len);
546 efx->type->mcdi_read_response(efx, errbuf, hdr_len,
547 sizeof(errbuf));
548 efx_mcdi_display_error(efx, async->cmd, async->inlen, errbuf,
549 err_len, rc);
550 }
Ben Hutchingscade7152013-08-27 23:12:31 +0100551 async->complete(efx, async->cookie, rc, outbuf, data_len);
552 kfree(async);
553
554 efx_mcdi_release(mcdi);
555
556 return true;
557}
558
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000559static void efx_mcdi_ev_cpl(struct efx_nic *efx, unsigned int seqno,
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100560 unsigned int datalen, unsigned int mcdi_err)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000561{
562 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
563 bool wake = false;
564
565 spin_lock(&mcdi->iface_lock);
566
567 if ((seqno ^ mcdi->seqno) & SEQ_MASK) {
568 if (mcdi->credits)
569 /* The request has been cancelled */
570 --mcdi->credits;
571 else
Ben Hutchings62776d02010-06-23 11:30:07 +0000572 netif_err(efx, hw, efx->net_dev,
573 "MC response mismatch tx seq 0x%x rx "
574 "seq 0x%x\n", seqno, mcdi->seqno);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000575 } else {
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100576 if (efx->type->mcdi_max_ver >= 2) {
577 /* MCDI v2 responses don't fit in an event */
578 efx_mcdi_read_response_header(efx);
579 } else {
580 mcdi->resprc = efx_mcdi_errno(mcdi_err);
581 mcdi->resp_hdr_len = 4;
582 mcdi->resp_data_len = datalen;
583 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000584
585 wake = true;
586 }
587
588 spin_unlock(&mcdi->iface_lock);
589
Ben Hutchingscade7152013-08-27 23:12:31 +0100590 if (wake) {
591 if (!efx_mcdi_complete_async(mcdi, false))
592 (void) efx_mcdi_complete_sync(mcdi);
593
594 /* If the interface isn't RUNNING_ASYNC or
595 * RUNNING_SYNC then we've received a duplicate
596 * completion after we've already transitioned back to
597 * QUIESCENT. [A subsequent invocation would increment
598 * seqno, so would have failed the seqno check].
599 */
600 }
601}
602
603static void efx_mcdi_timeout_async(unsigned long context)
604{
605 struct efx_mcdi_iface *mcdi = (struct efx_mcdi_iface *)context;
606
607 efx_mcdi_complete_async(mcdi, true);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000608}
609
Ben Hutchings2f4bcdc2013-08-22 22:06:09 +0100610static int
611efx_mcdi_check_supported(struct efx_nic *efx, unsigned int cmd, size_t inlen)
612{
613 if (efx->type->mcdi_max_ver < 0 ||
614 (efx->type->mcdi_max_ver < 2 &&
615 cmd > MC_CMD_CMD_SPACE_ESCAPE_7))
616 return -EINVAL;
617
618 if (inlen > MCDI_CTL_SDU_LEN_MAX_V2 ||
619 (efx->type->mcdi_max_ver < 2 &&
620 inlen > MCDI_CTL_SDU_LEN_MAX_V1))
621 return -EMSGSIZE;
622
623 return 0;
624}
625
Bert Kenwardacd43a92015-12-23 08:57:18 +0000626static bool efx_mcdi_get_proxy_handle(struct efx_nic *efx,
627 size_t hdr_len, size_t data_len,
628 u32 *proxy_handle)
629{
630 MCDI_DECLARE_BUF_ERR(testbuf);
631 const size_t buflen = sizeof(testbuf);
632
633 if (!proxy_handle || data_len < buflen)
634 return false;
635
636 efx->type->mcdi_read_response(efx, testbuf, hdr_len, buflen);
637 if (MCDI_DWORD(testbuf, ERR_CODE) == MC_CMD_ERR_PROXY_PENDING) {
638 *proxy_handle = MCDI_DWORD(testbuf, ERR_PROXY_PENDING_HANDLE);
639 return true;
640 }
641
642 return false;
643}
644
645static int _efx_mcdi_rpc_finish(struct efx_nic *efx, unsigned int cmd,
646 size_t inlen,
Edward Cree1e0b8122013-05-31 18:36:12 +0100647 efx_dword_t *outbuf, size_t outlen,
Bert Kenwardac28d172015-12-23 08:56:40 +0000648 size_t *outlen_actual, bool quiet,
Bert Kenwardacd43a92015-12-23 08:57:18 +0000649 u32 *proxy_handle, int *raw_rc)
Stuart Hodgsonc3cba722012-07-16 17:40:47 +0100650{
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000651 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
Jon Cooperaa09a3d2015-05-20 11:10:41 +0100652 MCDI_DECLARE_BUF_ERR(errbuf);
Stuart Hodgsonc3cba722012-07-16 17:40:47 +0100653 int rc;
654
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000655 if (mcdi->mode == MCDI_MODE_POLL)
656 rc = efx_mcdi_poll(efx);
657 else
658 rc = efx_mcdi_await_completion(efx);
659
660 if (rc != 0) {
Robert Stonehouse6b294b82013-10-09 11:52:48 +0100661 netif_err(efx, hw, efx->net_dev,
662 "MC command 0x%x inlen %d mode %d timed out\n",
663 cmd, (int)inlen, mcdi->mode);
664
665 if (mcdi->mode == MCDI_MODE_EVENTS && efx_mcdi_poll_once(efx)) {
666 netif_err(efx, hw, efx->net_dev,
667 "MCDI request was completed without an event\n");
668 rc = 0;
669 }
670
Edward Creee2835462014-04-16 19:27:48 +0100671 efx_mcdi_abandon(efx);
672
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000673 /* Close the race with efx_mcdi_ev_cpl() executing just too late
674 * and completing a request we've just cancelled, by ensuring
675 * that the seqno check therein fails.
676 */
677 spin_lock_bh(&mcdi->iface_lock);
678 ++mcdi->seqno;
679 ++mcdi->credits;
680 spin_unlock_bh(&mcdi->iface_lock);
Robert Stonehouse6b294b82013-10-09 11:52:48 +0100681 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000682
Bert Kenwardacd43a92015-12-23 08:57:18 +0000683 if (proxy_handle)
684 *proxy_handle = 0;
685
Edward Cree1e0b8122013-05-31 18:36:12 +0100686 if (rc != 0) {
687 if (outlen_actual)
688 *outlen_actual = 0;
689 } else {
690 size_t hdr_len, data_len, err_len;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000691
692 /* At the very least we need a memory barrier here to ensure
693 * we pick up changes from efx_mcdi_ev_cpl(). Protect against
694 * a spurious efx_mcdi_ev_cpl() running concurrently by
695 * acquiring the iface_lock. */
696 spin_lock_bh(&mcdi->iface_lock);
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100697 rc = mcdi->resprc;
Bert Kenwardac28d172015-12-23 08:56:40 +0000698 if (raw_rc)
699 *raw_rc = mcdi->resprc_raw;
Ben Hutchings369327f2012-10-26 17:53:12 +0100700 hdr_len = mcdi->resp_hdr_len;
701 data_len = mcdi->resp_data_len;
Edward Cree1e0b8122013-05-31 18:36:12 +0100702 err_len = min(sizeof(errbuf), data_len);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000703 spin_unlock_bh(&mcdi->iface_lock);
704
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100705 BUG_ON(rc > 0);
706
Edward Cree1e0b8122013-05-31 18:36:12 +0100707 efx->type->mcdi_read_response(efx, outbuf, hdr_len,
708 min(outlen, data_len));
709 if (outlen_actual)
710 *outlen_actual = data_len;
711
712 efx->type->mcdi_read_response(efx, errbuf, hdr_len, err_len);
713
714 if (cmd == MC_CMD_REBOOT && rc == -EIO) {
715 /* Don't reset if MC_CMD_REBOOT returns EIO */
716 } else if (rc == -EIO || rc == -EINTR) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000717 netif_err(efx, hw, efx->net_dev, "MC fatal error %d\n",
718 -rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000719 efx_schedule_reset(efx, RESET_TYPE_MC_FAILURE);
Bert Kenwardacd43a92015-12-23 08:57:18 +0000720 } else if (proxy_handle && (rc == -EPROTO) &&
721 efx_mcdi_get_proxy_handle(efx, hdr_len, data_len,
722 proxy_handle)) {
723 mcdi->proxy_rx_status = 0;
724 mcdi->proxy_rx_handle = 0;
725 mcdi->state = MCDI_STATE_PROXY_WAIT;
Edward Cree1e0b8122013-05-31 18:36:12 +0100726 } else if (rc && !quiet) {
727 efx_mcdi_display_error(efx, cmd, inlen, errbuf, err_len,
728 rc);
729 }
Ben Hutchings3f713bf2011-12-20 23:39:31 +0000730
731 if (rc == -EIO || rc == -EINTR) {
732 msleep(MCDI_STATUS_SLEEP_MS);
733 efx_mcdi_poll_reboot(efx);
Daniel Pieczkod36a08b2013-06-20 11:40:07 +0100734 mcdi->new_epoch = true;
Ben Hutchings3f713bf2011-12-20 23:39:31 +0000735 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000736 }
737
Bert Kenwardacd43a92015-12-23 08:57:18 +0000738 if (!proxy_handle || !*proxy_handle)
739 efx_mcdi_release(mcdi);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000740 return rc;
741}
742
Bert Kenwardacd43a92015-12-23 08:57:18 +0000743static void efx_mcdi_proxy_abort(struct efx_mcdi_iface *mcdi)
744{
745 if (mcdi->state == MCDI_STATE_PROXY_WAIT) {
746 /* Interrupt the proxy wait. */
747 mcdi->proxy_rx_status = -EINTR;
748 wake_up(&mcdi->proxy_rx_wq);
749 }
750}
751
752static void efx_mcdi_ev_proxy_response(struct efx_nic *efx,
753 u32 handle, int status)
754{
755 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
756
757 WARN_ON(mcdi->state != MCDI_STATE_PROXY_WAIT);
758
759 mcdi->proxy_rx_status = efx_mcdi_errno(status);
760 /* Ensure the status is written before we update the handle, since the
761 * latter is used to check if we've finished.
762 */
763 wmb();
764 mcdi->proxy_rx_handle = handle;
765 wake_up(&mcdi->proxy_rx_wq);
766}
767
768static int efx_mcdi_proxy_wait(struct efx_nic *efx, u32 handle, bool quiet)
769{
770 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
771 int rc;
772
773 /* Wait for a proxy event, or timeout. */
774 rc = wait_event_timeout(mcdi->proxy_rx_wq,
775 mcdi->proxy_rx_handle != 0 ||
776 mcdi->proxy_rx_status == -EINTR,
777 MCDI_RPC_TIMEOUT);
778
779 if (rc <= 0) {
780 netif_dbg(efx, hw, efx->net_dev,
781 "MCDI proxy timeout %d\n", handle);
782 return -ETIMEDOUT;
783 } else if (mcdi->proxy_rx_handle != handle) {
784 netif_warn(efx, hw, efx->net_dev,
785 "MCDI proxy unexpected handle %d (expected %d)\n",
786 mcdi->proxy_rx_handle, handle);
787 return -EINVAL;
788 }
789
790 return mcdi->proxy_rx_status;
791}
792
793static int _efx_mcdi_rpc(struct efx_nic *efx, unsigned int cmd,
Edward Cree1e0b8122013-05-31 18:36:12 +0100794 const efx_dword_t *inbuf, size_t inlen,
795 efx_dword_t *outbuf, size_t outlen,
Bert Kenwardac28d172015-12-23 08:56:40 +0000796 size_t *outlen_actual, bool quiet, int *raw_rc)
Edward Cree1e0b8122013-05-31 18:36:12 +0100797{
Bert Kenwardacd43a92015-12-23 08:57:18 +0000798 u32 proxy_handle = 0; /* Zero is an invalid proxy handle. */
Edward Cree1e0b8122013-05-31 18:36:12 +0100799 int rc;
800
Bert Kenwardacd43a92015-12-23 08:57:18 +0000801 if (inbuf && inlen && (inbuf == outbuf)) {
802 /* The input buffer can't be aliased with the output. */
803 WARN_ON(1);
804 return -EINVAL;
805 }
806
Edward Cree1e0b8122013-05-31 18:36:12 +0100807 rc = efx_mcdi_rpc_start(efx, cmd, inbuf, inlen);
Bert Kenwardac28d172015-12-23 08:56:40 +0000808 if (rc)
Edward Cree1e0b8122013-05-31 18:36:12 +0100809 return rc;
Bert Kenwardac28d172015-12-23 08:56:40 +0000810
Bert Kenwardacd43a92015-12-23 08:57:18 +0000811 rc = _efx_mcdi_rpc_finish(efx, cmd, inlen, outbuf, outlen,
812 outlen_actual, quiet, &proxy_handle, raw_rc);
813
814 if (proxy_handle) {
815 /* Handle proxy authorisation. This allows approval of MCDI
816 * operations to be delegated to the admin function, allowing
817 * fine control over (eg) multicast subscriptions.
818 */
819 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
820
821 netif_dbg(efx, hw, efx->net_dev,
822 "MCDI waiting for proxy auth %d\n",
823 proxy_handle);
824 rc = efx_mcdi_proxy_wait(efx, proxy_handle, quiet);
825
826 if (rc == 0) {
827 netif_dbg(efx, hw, efx->net_dev,
828 "MCDI proxy retry %d\n", proxy_handle);
829
830 /* We now retry the original request. */
831 mcdi->state = MCDI_STATE_RUNNING_SYNC;
832 efx_mcdi_send_request(efx, cmd, inbuf, inlen);
833
834 rc = _efx_mcdi_rpc_finish(efx, cmd, inlen,
835 outbuf, outlen, outlen_actual,
836 quiet, NULL, raw_rc);
837 } else {
838 netif_printk(efx, hw,
839 rc == -EPERM ? KERN_DEBUG : KERN_ERR,
840 efx->net_dev,
841 "MC command 0x%x failed after proxy auth rc=%d\n",
842 cmd, rc);
843
844 if (rc == -EINTR || rc == -EIO)
845 efx_schedule_reset(efx, RESET_TYPE_MC_FAILURE);
846 efx_mcdi_release(mcdi);
847 }
848 }
849
850 return rc;
Edward Cree1e0b8122013-05-31 18:36:12 +0100851}
852
Bert Kenwardac28d172015-12-23 08:56:40 +0000853static int _efx_mcdi_rpc_evb_retry(struct efx_nic *efx, unsigned cmd,
854 const efx_dword_t *inbuf, size_t inlen,
855 efx_dword_t *outbuf, size_t outlen,
856 size_t *outlen_actual, bool quiet)
857{
858 int raw_rc = 0;
859 int rc;
860
861 rc = _efx_mcdi_rpc(efx, cmd, inbuf, inlen,
862 outbuf, outlen, outlen_actual, true, &raw_rc);
863
864 if ((rc == -EPROTO) && (raw_rc == MC_CMD_ERR_NO_EVB_PORT) &&
865 efx->type->is_vf) {
866 /* If the EVB port isn't available within a VF this may
867 * mean the PF is still bringing the switch up. We should
868 * retry our request shortly.
869 */
870 unsigned long abort_time = jiffies + MCDI_RPC_TIMEOUT;
871 unsigned int delay_us = 10000;
872
873 netif_dbg(efx, hw, efx->net_dev,
874 "%s: NO_EVB_PORT; will retry request\n",
875 __func__);
876
877 do {
878 usleep_range(delay_us, delay_us + 10000);
879 rc = _efx_mcdi_rpc(efx, cmd, inbuf, inlen,
880 outbuf, outlen, outlen_actual,
881 true, &raw_rc);
882 if (delay_us < 100000)
883 delay_us <<= 1;
884 } while ((rc == -EPROTO) &&
885 (raw_rc == MC_CMD_ERR_NO_EVB_PORT) &&
886 time_before(jiffies, abort_time));
887 }
888
889 if (rc && !quiet && !(cmd == MC_CMD_REBOOT && rc == -EIO))
890 efx_mcdi_display_error(efx, cmd, inlen,
891 outbuf, outlen, rc);
892
893 return rc;
894}
895
896/**
897 * efx_mcdi_rpc - Issue an MCDI command and wait for completion
898 * @efx: NIC through which to issue the command
899 * @cmd: Command type number
900 * @inbuf: Command parameters
901 * @inlen: Length of command parameters, in bytes. Must be a multiple
902 * of 4 and no greater than %MCDI_CTL_SDU_LEN_MAX_V1.
903 * @outbuf: Response buffer. May be %NULL if @outlen is 0.
904 * @outlen: Length of response buffer, in bytes. If the actual
905 * response is longer than @outlen & ~3, it will be truncated
906 * to that length.
907 * @outlen_actual: Pointer through which to return the actual response
908 * length. May be %NULL if this is not needed.
909 *
910 * This function may sleep and therefore must be called in an appropriate
911 * context.
912 *
913 * Return: A negative error code, or zero if successful. The error
914 * code may come from the MCDI response or may indicate a failure
915 * to communicate with the MC. In the former case, the response
916 * will still be copied to @outbuf and *@outlen_actual will be
917 * set accordingly. In the latter case, *@outlen_actual will be
918 * set to zero.
919 */
Edward Cree1e0b8122013-05-31 18:36:12 +0100920int efx_mcdi_rpc(struct efx_nic *efx, unsigned cmd,
921 const efx_dword_t *inbuf, size_t inlen,
922 efx_dword_t *outbuf, size_t outlen,
923 size_t *outlen_actual)
924{
Bert Kenwardac28d172015-12-23 08:56:40 +0000925 return _efx_mcdi_rpc_evb_retry(efx, cmd, inbuf, inlen, outbuf, outlen,
926 outlen_actual, false);
Edward Cree1e0b8122013-05-31 18:36:12 +0100927}
928
929/* Normally, on receiving an error code in the MCDI response,
930 * efx_mcdi_rpc will log an error message containing (among other
931 * things) the raw error code, by means of efx_mcdi_display_error.
932 * This _quiet version suppresses that; if the caller wishes to log
933 * the error conditionally on the return code, it should call this
934 * function and is then responsible for calling efx_mcdi_display_error
935 * as needed.
936 */
937int efx_mcdi_rpc_quiet(struct efx_nic *efx, unsigned cmd,
938 const efx_dword_t *inbuf, size_t inlen,
939 efx_dword_t *outbuf, size_t outlen,
940 size_t *outlen_actual)
941{
Bert Kenwardac28d172015-12-23 08:56:40 +0000942 return _efx_mcdi_rpc_evb_retry(efx, cmd, inbuf, inlen, outbuf, outlen,
943 outlen_actual, true);
Edward Cree1e0b8122013-05-31 18:36:12 +0100944}
945
946int efx_mcdi_rpc_start(struct efx_nic *efx, unsigned cmd,
947 const efx_dword_t *inbuf, size_t inlen)
948{
949 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
950 int rc;
951
952 rc = efx_mcdi_check_supported(efx, cmd, inlen);
953 if (rc)
954 return rc;
955
956 if (efx->mc_bist_for_other_fn)
957 return -ENETDOWN;
958
Edward Creee2835462014-04-16 19:27:48 +0100959 if (mcdi->mode == MCDI_MODE_FAIL)
960 return -ENETDOWN;
961
Edward Cree1e0b8122013-05-31 18:36:12 +0100962 efx_mcdi_acquire_sync(mcdi);
963 efx_mcdi_send_request(efx, cmd, inbuf, inlen);
964 return 0;
965}
966
967static int _efx_mcdi_rpc_async(struct efx_nic *efx, unsigned int cmd,
968 const efx_dword_t *inbuf, size_t inlen,
969 size_t outlen,
970 efx_mcdi_async_completer *complete,
971 unsigned long cookie, bool quiet)
972{
973 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
974 struct efx_mcdi_async_param *async;
975 int rc;
976
977 rc = efx_mcdi_check_supported(efx, cmd, inlen);
978 if (rc)
979 return rc;
980
981 if (efx->mc_bist_for_other_fn)
982 return -ENETDOWN;
983
984 async = kmalloc(sizeof(*async) + ALIGN(max(inlen, outlen), 4),
985 GFP_ATOMIC);
986 if (!async)
987 return -ENOMEM;
988
989 async->cmd = cmd;
990 async->inlen = inlen;
991 async->outlen = outlen;
992 async->quiet = quiet;
993 async->complete = complete;
994 async->cookie = cookie;
995 memcpy(async + 1, inbuf, inlen);
996
997 spin_lock_bh(&mcdi->async_lock);
998
999 if (mcdi->mode == MCDI_MODE_EVENTS) {
1000 list_add_tail(&async->list, &mcdi->async_list);
1001
1002 /* If this is at the front of the queue, try to start it
1003 * immediately
1004 */
1005 if (mcdi->async_list.next == &async->list &&
1006 efx_mcdi_acquire_async(mcdi)) {
1007 efx_mcdi_send_request(efx, cmd, inbuf, inlen);
1008 mod_timer(&mcdi->async_timer,
1009 jiffies + MCDI_RPC_TIMEOUT);
1010 }
1011 } else {
1012 kfree(async);
1013 rc = -ENETDOWN;
1014 }
1015
1016 spin_unlock_bh(&mcdi->async_lock);
1017
1018 return rc;
1019}
1020
1021/**
1022 * efx_mcdi_rpc_async - Schedule an MCDI command to run asynchronously
1023 * @efx: NIC through which to issue the command
1024 * @cmd: Command type number
1025 * @inbuf: Command parameters
1026 * @inlen: Length of command parameters, in bytes
1027 * @outlen: Length to allocate for response buffer, in bytes
1028 * @complete: Function to be called on completion or cancellation.
1029 * @cookie: Arbitrary value to be passed to @complete.
1030 *
1031 * This function does not sleep and therefore may be called in atomic
1032 * context. It will fail if event queues are disabled or if MCDI
1033 * event completions have been disabled due to an error.
1034 *
1035 * If it succeeds, the @complete function will be called exactly once
1036 * in atomic context, when one of the following occurs:
1037 * (a) the completion event is received (in NAPI context)
1038 * (b) event queues are disabled (in the process that disables them)
1039 * (c) the request times-out (in timer context)
1040 */
1041int
1042efx_mcdi_rpc_async(struct efx_nic *efx, unsigned int cmd,
1043 const efx_dword_t *inbuf, size_t inlen, size_t outlen,
1044 efx_mcdi_async_completer *complete, unsigned long cookie)
1045{
1046 return _efx_mcdi_rpc_async(efx, cmd, inbuf, inlen, outlen, complete,
1047 cookie, false);
1048}
1049
1050int efx_mcdi_rpc_async_quiet(struct efx_nic *efx, unsigned int cmd,
1051 const efx_dword_t *inbuf, size_t inlen,
1052 size_t outlen, efx_mcdi_async_completer *complete,
1053 unsigned long cookie)
1054{
1055 return _efx_mcdi_rpc_async(efx, cmd, inbuf, inlen, outlen, complete,
1056 cookie, true);
1057}
1058
1059int efx_mcdi_rpc_finish(struct efx_nic *efx, unsigned cmd, size_t inlen,
1060 efx_dword_t *outbuf, size_t outlen,
1061 size_t *outlen_actual)
1062{
1063 return _efx_mcdi_rpc_finish(efx, cmd, inlen, outbuf, outlen,
Bert Kenwardacd43a92015-12-23 08:57:18 +00001064 outlen_actual, false, NULL, NULL);
Edward Cree1e0b8122013-05-31 18:36:12 +01001065}
1066
1067int efx_mcdi_rpc_finish_quiet(struct efx_nic *efx, unsigned cmd, size_t inlen,
1068 efx_dword_t *outbuf, size_t outlen,
1069 size_t *outlen_actual)
1070{
1071 return _efx_mcdi_rpc_finish(efx, cmd, inlen, outbuf, outlen,
Bert Kenwardacd43a92015-12-23 08:57:18 +00001072 outlen_actual, true, NULL, NULL);
Edward Cree1e0b8122013-05-31 18:36:12 +01001073}
1074
1075void efx_mcdi_display_error(struct efx_nic *efx, unsigned cmd,
1076 size_t inlen, efx_dword_t *outbuf,
1077 size_t outlen, int rc)
1078{
1079 int code = 0, err_arg = 0;
1080
1081 if (outlen >= MC_CMD_ERR_CODE_OFST + 4)
1082 code = MCDI_DWORD(outbuf, ERR_CODE);
1083 if (outlen >= MC_CMD_ERR_ARG_OFST + 4)
1084 err_arg = MCDI_DWORD(outbuf, ERR_ARG);
1085 netif_err(efx, hw, efx->net_dev,
1086 "MC command 0x%x inlen %d failed rc=%d (raw=%d) arg=%d\n",
1087 cmd, (int)inlen, rc, code, err_arg);
1088}
1089
Ben Hutchingscade7152013-08-27 23:12:31 +01001090/* Switch to polled MCDI completions. This can be called in various
1091 * error conditions with various locks held, so it must be lockless.
1092 * Caller is responsible for flushing asynchronous requests later.
1093 */
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001094void efx_mcdi_mode_poll(struct efx_nic *efx)
1095{
1096 struct efx_mcdi_iface *mcdi;
1097
Ben Hutchingsf3ad5002012-09-18 02:33:56 +01001098 if (!efx->mcdi)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001099 return;
1100
1101 mcdi = efx_mcdi(efx);
Edward Creee2835462014-04-16 19:27:48 +01001102 /* If already in polling mode, nothing to do.
1103 * If in fail-fast state, don't switch to polled completion.
1104 * FLR recovery will do that later.
1105 */
1106 if (mcdi->mode == MCDI_MODE_POLL || mcdi->mode == MCDI_MODE_FAIL)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001107 return;
1108
1109 /* We can switch from event completion to polled completion, because
1110 * mcdi requests are always completed in shared memory. We do this by
1111 * switching the mode to POLL'd then completing the request.
1112 * efx_mcdi_await_completion() will then call efx_mcdi_poll().
1113 *
1114 * We need an smp_wmb() to synchronise with efx_mcdi_await_completion(),
Ben Hutchingscade7152013-08-27 23:12:31 +01001115 * which efx_mcdi_complete_sync() provides for us.
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001116 */
1117 mcdi->mode = MCDI_MODE_POLL;
1118
Ben Hutchingscade7152013-08-27 23:12:31 +01001119 efx_mcdi_complete_sync(mcdi);
1120}
1121
1122/* Flush any running or queued asynchronous requests, after event processing
1123 * is stopped
1124 */
1125void efx_mcdi_flush_async(struct efx_nic *efx)
1126{
1127 struct efx_mcdi_async_param *async, *next;
1128 struct efx_mcdi_iface *mcdi;
1129
1130 if (!efx->mcdi)
1131 return;
1132
1133 mcdi = efx_mcdi(efx);
1134
Edward Creee2835462014-04-16 19:27:48 +01001135 /* We must be in poll or fail mode so no more requests can be queued */
1136 BUG_ON(mcdi->mode == MCDI_MODE_EVENTS);
Ben Hutchingscade7152013-08-27 23:12:31 +01001137
1138 del_timer_sync(&mcdi->async_timer);
1139
1140 /* If a request is still running, make sure we give the MC
1141 * time to complete it so that the response won't overwrite our
1142 * next request.
1143 */
1144 if (mcdi->state == MCDI_STATE_RUNNING_ASYNC) {
1145 efx_mcdi_poll(efx);
1146 mcdi->state = MCDI_STATE_QUIESCENT;
1147 }
1148
1149 /* Nothing else will access the async list now, so it is safe
1150 * to walk it without holding async_lock. If we hold it while
1151 * calling a completer then lockdep may warn that we have
1152 * acquired locks in the wrong order.
1153 */
1154 list_for_each_entry_safe(async, next, &mcdi->async_list, list) {
1155 async->complete(efx, async->cookie, -ENETDOWN, NULL, 0);
1156 list_del(&async->list);
1157 kfree(async);
1158 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001159}
1160
1161void efx_mcdi_mode_event(struct efx_nic *efx)
1162{
1163 struct efx_mcdi_iface *mcdi;
1164
Ben Hutchingsf3ad5002012-09-18 02:33:56 +01001165 if (!efx->mcdi)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001166 return;
1167
1168 mcdi = efx_mcdi(efx);
Edward Creee2835462014-04-16 19:27:48 +01001169 /* If already in event completion mode, nothing to do.
1170 * If in fail-fast state, don't switch to event completion. FLR
1171 * recovery will do that later.
1172 */
1173 if (mcdi->mode == MCDI_MODE_EVENTS || mcdi->mode == MCDI_MODE_FAIL)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001174 return;
1175
1176 /* We can't switch from polled to event completion in the middle of a
1177 * request, because the completion method is specified in the request.
1178 * So acquire the interface to serialise the requestors. We don't need
1179 * to acquire the iface_lock to change the mode here, but we do need a
1180 * write memory barrier ensure that efx_mcdi_rpc() sees it, which
1181 * efx_mcdi_acquire() provides.
1182 */
Ben Hutchingscade7152013-08-27 23:12:31 +01001183 efx_mcdi_acquire_sync(mcdi);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001184 mcdi->mode = MCDI_MODE_EVENTS;
1185 efx_mcdi_release(mcdi);
1186}
1187
1188static void efx_mcdi_ev_death(struct efx_nic *efx, int rc)
1189{
1190 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
1191
1192 /* If there is an outstanding MCDI request, it has been terminated
1193 * either by a BADASSERT or REBOOT event. If the mcdi interface is
1194 * in polled mode, then do nothing because the MC reboot handler will
1195 * set the header correctly. However, if the mcdi interface is waiting
1196 * for a CMDDONE event it won't receive it [and since all MCDI events
1197 * are sent to the same queue, we can't be racing with
1198 * efx_mcdi_ev_cpl()]
1199 *
Ben Hutchingscade7152013-08-27 23:12:31 +01001200 * If there is an outstanding asynchronous request, we can't
1201 * complete it now (efx_mcdi_complete() would deadlock). The
1202 * reset process will take care of this.
1203 *
1204 * There's a race here with efx_mcdi_send_request(), because
1205 * we might receive a REBOOT event *before* the request has
1206 * been copied out. In polled mode (during startup) this is
1207 * irrelevant, because efx_mcdi_complete_sync() is ignored. In
1208 * event mode, this condition is just an edge-case of
1209 * receiving a REBOOT event after posting the MCDI
1210 * request. Did the mc reboot before or after the copyout? The
1211 * best we can do always is just return failure.
Bert Kenwardacd43a92015-12-23 08:57:18 +00001212 *
1213 * If there is an outstanding proxy response expected it is not going
1214 * to arrive. We should thus abort it.
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001215 */
1216 spin_lock(&mcdi->iface_lock);
Bert Kenwardacd43a92015-12-23 08:57:18 +00001217 efx_mcdi_proxy_abort(mcdi);
1218
Ben Hutchingscade7152013-08-27 23:12:31 +01001219 if (efx_mcdi_complete_sync(mcdi)) {
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001220 if (mcdi->mode == MCDI_MODE_EVENTS) {
1221 mcdi->resprc = rc;
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +01001222 mcdi->resp_hdr_len = 0;
1223 mcdi->resp_data_len = 0;
Steve Hodgson18e3ee22010-12-02 13:46:55 +00001224 ++mcdi->credits;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001225 }
Ben Hutchings3f713bf2011-12-20 23:39:31 +00001226 } else {
1227 int count;
1228
Ben Hutchings3f713bf2011-12-20 23:39:31 +00001229 /* Consume the status word since efx_mcdi_rpc_finish() won't */
1230 for (count = 0; count < MCDI_STATUS_DELAY_COUNT; ++count) {
Daniel Pieczkoc577e592015-10-09 10:40:35 +01001231 rc = efx_mcdi_poll_reboot(efx);
1232 if (rc)
Ben Hutchings3f713bf2011-12-20 23:39:31 +00001233 break;
1234 udelay(MCDI_STATUS_DELAY_US);
1235 }
Daniel Pieczkoc577e592015-10-09 10:40:35 +01001236
1237 /* On EF10, a CODE_MC_REBOOT event can be received without the
1238 * reboot detection in efx_mcdi_poll_reboot() being triggered.
1239 * If zero was returned from the final call to
1240 * efx_mcdi_poll_reboot(), the MC reboot wasn't noticed but the
1241 * MC has definitely rebooted so prepare for the reset.
1242 */
1243 if (!rc && efx->type->mcdi_reboot_detected)
1244 efx->type->mcdi_reboot_detected(efx);
1245
Daniel Pieczkod36a08b2013-06-20 11:40:07 +01001246 mcdi->new_epoch = true;
Daniel Pieczkodfdaa952013-09-18 10:16:24 +01001247
1248 /* Nobody was waiting for an MCDI request, so trigger a reset */
1249 efx_schedule_reset(efx, RESET_TYPE_MC_FAILURE);
Ben Hutchings3f713bf2011-12-20 23:39:31 +00001250 }
1251
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001252 spin_unlock(&mcdi->iface_lock);
1253}
1254
Jon Cooper74cd60a2013-09-16 14:18:51 +01001255/* The MC is going down in to BIST mode. set the BIST flag to block
1256 * new MCDI, cancel any outstanding MCDI and and schedule a BIST-type reset
1257 * (which doesn't actually execute a reset, it waits for the controlling
1258 * function to reset it).
1259 */
1260static void efx_mcdi_ev_bist(struct efx_nic *efx)
1261{
1262 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
1263
1264 spin_lock(&mcdi->iface_lock);
1265 efx->mc_bist_for_other_fn = true;
Bert Kenwardacd43a92015-12-23 08:57:18 +00001266 efx_mcdi_proxy_abort(mcdi);
1267
Jon Cooper74cd60a2013-09-16 14:18:51 +01001268 if (efx_mcdi_complete_sync(mcdi)) {
1269 if (mcdi->mode == MCDI_MODE_EVENTS) {
1270 mcdi->resprc = -EIO;
1271 mcdi->resp_hdr_len = 0;
1272 mcdi->resp_data_len = 0;
1273 ++mcdi->credits;
1274 }
1275 }
1276 mcdi->new_epoch = true;
1277 efx_schedule_reset(efx, RESET_TYPE_MC_BIST);
1278 spin_unlock(&mcdi->iface_lock);
1279}
1280
Edward Creee2835462014-04-16 19:27:48 +01001281/* MCDI timeouts seen, so make all MCDI calls fail-fast and issue an FLR to try
1282 * to recover.
1283 */
1284static void efx_mcdi_abandon(struct efx_nic *efx)
1285{
1286 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
1287
1288 if (xchg(&mcdi->mode, MCDI_MODE_FAIL) == MCDI_MODE_FAIL)
1289 return; /* it had already been done */
1290 netif_dbg(efx, hw, efx->net_dev, "MCDI is timing out; trying to recover\n");
1291 efx_schedule_reset(efx, RESET_TYPE_MCDI_TIMEOUT);
1292}
1293
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001294/* Called from falcon_process_eventq for MCDI events */
1295void efx_mcdi_process_event(struct efx_channel *channel,
1296 efx_qword_t *event)
1297{
1298 struct efx_nic *efx = channel->efx;
1299 int code = EFX_QWORD_FIELD(*event, MCDI_EVENT_CODE);
1300 u32 data = EFX_QWORD_FIELD(*event, MCDI_EVENT_DATA);
1301
1302 switch (code) {
1303 case MCDI_EVENT_CODE_BADSSERT:
Ben Hutchings62776d02010-06-23 11:30:07 +00001304 netif_err(efx, hw, efx->net_dev,
1305 "MC watchdog or assertion failure at 0x%x\n", data);
Ben Hutchings5bc283e2012-10-08 21:43:00 +01001306 efx_mcdi_ev_death(efx, -EINTR);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001307 break;
1308
1309 case MCDI_EVENT_CODE_PMNOTICE:
Ben Hutchings62776d02010-06-23 11:30:07 +00001310 netif_info(efx, wol, efx->net_dev, "MCDI PM event.\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001311 break;
1312
1313 case MCDI_EVENT_CODE_CMDDONE:
1314 efx_mcdi_ev_cpl(efx,
1315 MCDI_EVENT_FIELD(*event, CMDDONE_SEQ),
1316 MCDI_EVENT_FIELD(*event, CMDDONE_DATALEN),
1317 MCDI_EVENT_FIELD(*event, CMDDONE_ERRNO));
1318 break;
1319
1320 case MCDI_EVENT_CODE_LINKCHANGE:
1321 efx_mcdi_process_link_change(efx, event);
1322 break;
1323 case MCDI_EVENT_CODE_SENSOREVT:
1324 efx_mcdi_sensor_event(efx, event);
1325 break;
1326 case MCDI_EVENT_CODE_SCHEDERR:
Robert Stonehouse2d9955b2013-10-07 18:44:17 +01001327 netif_dbg(efx, hw, efx->net_dev,
1328 "MC Scheduler alert (0x%x)\n", data);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001329 break;
1330 case MCDI_EVENT_CODE_REBOOT:
Ben Hutchings8127d662013-08-29 19:19:29 +01001331 case MCDI_EVENT_CODE_MC_REBOOT:
Ben Hutchings62776d02010-06-23 11:30:07 +00001332 netif_info(efx, hw, efx->net_dev, "MC Reboot\n");
Ben Hutchings5bc283e2012-10-08 21:43:00 +01001333 efx_mcdi_ev_death(efx, -EIO);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001334 break;
Jon Cooper74cd60a2013-09-16 14:18:51 +01001335 case MCDI_EVENT_CODE_MC_BIST:
1336 netif_info(efx, hw, efx->net_dev, "MC entered BIST mode\n");
1337 efx_mcdi_ev_bist(efx);
1338 break;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001339 case MCDI_EVENT_CODE_MAC_STATS_DMA:
1340 /* MAC stats are gather lazily. We can ignore this. */
1341 break;
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001342 case MCDI_EVENT_CODE_FLR:
Shradha Shah7fa8d542015-05-06 00:55:13 +01001343 if (efx->type->sriov_flr)
1344 efx->type->sriov_flr(efx,
1345 MCDI_EVENT_FIELD(*event, FLR_VF));
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001346 break;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001347 case MCDI_EVENT_CODE_PTP_RX:
1348 case MCDI_EVENT_CODE_PTP_FAULT:
1349 case MCDI_EVENT_CODE_PTP_PPS:
1350 efx_ptp_event(efx, event);
1351 break;
Jon Cooperbd9a2652013-11-18 12:54:41 +00001352 case MCDI_EVENT_CODE_PTP_TIME:
1353 efx_time_sync_event(channel, event);
1354 break;
Ben Hutchings8127d662013-08-29 19:19:29 +01001355 case MCDI_EVENT_CODE_TX_FLUSH:
1356 case MCDI_EVENT_CODE_RX_FLUSH:
1357 /* Two flush events will be sent: one to the same event
1358 * queue as completions, and one to event queue 0.
1359 * In the latter case the {RX,TX}_FLUSH_TO_DRIVER
1360 * flag will be set, and we should ignore the event
1361 * because we want to wait for all completions.
1362 */
1363 BUILD_BUG_ON(MCDI_EVENT_TX_FLUSH_TO_DRIVER_LBN !=
1364 MCDI_EVENT_RX_FLUSH_TO_DRIVER_LBN);
1365 if (!MCDI_EVENT_FIELD(*event, TX_FLUSH_TO_DRIVER))
1366 efx_ef10_handle_drain_event(efx);
1367 break;
Alexandre Rames3de82b92013-06-13 11:36:15 +01001368 case MCDI_EVENT_CODE_TX_ERR:
1369 case MCDI_EVENT_CODE_RX_ERR:
1370 netif_err(efx, hw, efx->net_dev,
1371 "%s DMA error (event: "EFX_QWORD_FMT")\n",
1372 code == MCDI_EVENT_CODE_TX_ERR ? "TX" : "RX",
1373 EFX_QWORD_VAL(*event));
1374 efx_schedule_reset(efx, RESET_TYPE_DMA_ERROR);
1375 break;
Bert Kenwardacd43a92015-12-23 08:57:18 +00001376 case MCDI_EVENT_CODE_PROXY_RESPONSE:
1377 efx_mcdi_ev_proxy_response(efx,
1378 MCDI_EVENT_FIELD(*event, PROXY_RESPONSE_HANDLE),
1379 MCDI_EVENT_FIELD(*event, PROXY_RESPONSE_RC));
1380 break;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001381 default:
Ben Hutchings62776d02010-06-23 11:30:07 +00001382 netif_err(efx, hw, efx->net_dev, "Unknown MCDI event 0x%x\n",
1383 code);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001384 }
1385}
1386
1387/**************************************************************************
1388 *
1389 * Specific request functions
1390 *
1391 **************************************************************************
1392 */
1393
Ben Hutchingse5f0fd22011-02-24 23:57:47 +00001394void efx_mcdi_print_fwver(struct efx_nic *efx, char *buf, size_t len)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001395{
Daniel Pieczko8d9f9dd2015-05-06 00:56:55 +01001396 MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_VERSION_OUT_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001397 size_t outlength;
1398 const __le16 *ver_words;
Ben Hutchings8127d662013-08-29 19:19:29 +01001399 size_t offset;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001400 int rc;
1401
1402 BUILD_BUG_ON(MC_CMD_GET_VERSION_IN_LEN != 0);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001403 rc = efx_mcdi_rpc(efx, MC_CMD_GET_VERSION, NULL, 0,
1404 outbuf, sizeof(outbuf), &outlength);
1405 if (rc)
1406 goto fail;
Ben Hutchings05a93202011-12-20 00:44:06 +00001407 if (outlength < MC_CMD_GET_VERSION_OUT_LEN) {
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001408 rc = -EIO;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001409 goto fail;
1410 }
1411
1412 ver_words = (__le16 *)MCDI_PTR(outbuf, GET_VERSION_OUT_VERSION);
Ben Hutchings8127d662013-08-29 19:19:29 +01001413 offset = snprintf(buf, len, "%u.%u.%u.%u",
1414 le16_to_cpu(ver_words[0]), le16_to_cpu(ver_words[1]),
1415 le16_to_cpu(ver_words[2]), le16_to_cpu(ver_words[3]));
1416
1417 /* EF10 may have multiple datapath firmware variants within a
1418 * single version. Report which variants are running.
1419 */
1420 if (efx_nic_rev(efx) >= EFX_REV_HUNT_A0) {
Daniel Pieczko8d9f9dd2015-05-06 00:56:55 +01001421 struct efx_ef10_nic_data *nic_data = efx->nic_data;
1422
1423 offset += snprintf(buf + offset, len - offset, " rx%x tx%x",
1424 nic_data->rx_dpcpu_fw_id,
1425 nic_data->tx_dpcpu_fw_id);
Ben Hutchings8127d662013-08-29 19:19:29 +01001426
1427 /* It's theoretically possible for the string to exceed 31
1428 * characters, though in practice the first three version
1429 * components are short enough that this doesn't happen.
1430 */
1431 if (WARN_ON(offset >= len))
1432 buf[0] = 0;
1433 }
1434
Ben Hutchingse5f0fd22011-02-24 23:57:47 +00001435 return;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001436
1437fail:
Ben Hutchings62776d02010-06-23 11:30:07 +00001438 netif_err(efx, probe, efx->net_dev, "%s: failed rc=%d\n", __func__, rc);
Ben Hutchingse5f0fd22011-02-24 23:57:47 +00001439 buf[0] = 0;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001440}
1441
Ben Hutchings4c75b43a2013-08-29 19:04:03 +01001442static int efx_mcdi_drv_attach(struct efx_nic *efx, bool driver_operating,
1443 bool *was_attached)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001444{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001445 MCDI_DECLARE_BUF(inbuf, MC_CMD_DRV_ATTACH_IN_LEN);
Ben Hutchingsecb1c9c2013-10-07 20:10:11 +01001446 MCDI_DECLARE_BUF(outbuf, MC_CMD_DRV_ATTACH_EXT_OUT_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001447 size_t outlen;
1448 int rc;
1449
1450 MCDI_SET_DWORD(inbuf, DRV_ATTACH_IN_NEW_STATE,
1451 driver_operating ? 1 : 0);
1452 MCDI_SET_DWORD(inbuf, DRV_ATTACH_IN_UPDATE, 1);
Ben Hutchingsf2b0bef2013-08-20 20:35:50 +01001453 MCDI_SET_DWORD(inbuf, DRV_ATTACH_IN_FIRMWARE_ID, MC_CMD_FW_LOW_LATENCY);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001454
Edward Cree267d9d72015-05-06 00:59:18 +01001455 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_DRV_ATTACH, inbuf, sizeof(inbuf),
1456 outbuf, sizeof(outbuf), &outlen);
1457 /* If we're not the primary PF, trying to ATTACH with a FIRMWARE_ID
1458 * specified will fail with EPERM, and we have to tell the MC we don't
1459 * care what firmware we get.
1460 */
1461 if (rc == -EPERM) {
1462 netif_dbg(efx, probe, efx->net_dev,
1463 "efx_mcdi_drv_attach with fw-variant setting failed EPERM, trying without it\n");
1464 MCDI_SET_DWORD(inbuf, DRV_ATTACH_IN_FIRMWARE_ID,
1465 MC_CMD_FW_DONT_CARE);
1466 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_DRV_ATTACH, inbuf,
1467 sizeof(inbuf), outbuf, sizeof(outbuf),
1468 &outlen);
1469 }
1470 if (rc) {
1471 efx_mcdi_display_error(efx, MC_CMD_DRV_ATTACH, sizeof(inbuf),
1472 outbuf, outlen, rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001473 goto fail;
Edward Cree267d9d72015-05-06 00:59:18 +01001474 }
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001475 if (outlen < MC_CMD_DRV_ATTACH_OUT_LEN) {
1476 rc = -EIO;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001477 goto fail;
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001478 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001479
Ben Hutchings8349f7f2013-10-16 18:32:34 +01001480 if (driver_operating) {
1481 if (outlen >= MC_CMD_DRV_ATTACH_EXT_OUT_LEN) {
1482 efx->mcdi->fn_flags =
1483 MCDI_DWORD(outbuf,
1484 DRV_ATTACH_EXT_OUT_FUNC_FLAGS);
1485 } else {
1486 /* Synthesise flags for Siena */
1487 efx->mcdi->fn_flags =
1488 1 << MC_CMD_DRV_ATTACH_EXT_OUT_FLAG_LINKCTRL |
1489 1 << MC_CMD_DRV_ATTACH_EXT_OUT_FLAG_TRUSTED |
1490 (efx_port_num(efx) == 0) <<
1491 MC_CMD_DRV_ATTACH_EXT_OUT_FLAG_PRIMARY;
1492 }
1493 }
1494
Ben Hutchingsecb1c9c2013-10-07 20:10:11 +01001495 /* We currently assume we have control of the external link
1496 * and are completely trusted by firmware. Abort probing
1497 * if that's not true for this function.
1498 */
Ben Hutchingsecb1c9c2013-10-07 20:10:11 +01001499
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001500 if (was_attached != NULL)
1501 *was_attached = MCDI_DWORD(outbuf, DRV_ATTACH_OUT_OLD_STATE);
1502 return 0;
1503
1504fail:
Ben Hutchings62776d02010-06-23 11:30:07 +00001505 netif_err(efx, probe, efx->net_dev, "%s: failed rc=%d\n", __func__, rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001506 return rc;
1507}
1508
1509int efx_mcdi_get_board_cfg(struct efx_nic *efx, u8 *mac_address,
Matthew Slattery6aa9c7f2010-07-14 15:36:19 +01001510 u16 *fw_subtype_list, u32 *capabilities)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001511{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001512 MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_BOARD_CFG_OUT_LENMAX);
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +01001513 size_t outlen, i;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001514 int port_num = efx_port_num(efx);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001515 int rc;
1516
1517 BUILD_BUG_ON(MC_CMD_GET_BOARD_CFG_IN_LEN != 0);
Edward Creecd84ff42014-03-07 18:27:41 +00001518 /* we need __aligned(2) for ether_addr_copy */
1519 BUILD_BUG_ON(MC_CMD_GET_BOARD_CFG_OUT_MAC_ADDR_BASE_PORT0_OFST & 1);
1520 BUILD_BUG_ON(MC_CMD_GET_BOARD_CFG_OUT_MAC_ADDR_BASE_PORT1_OFST & 1);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001521
1522 rc = efx_mcdi_rpc(efx, MC_CMD_GET_BOARD_CFG, NULL, 0,
1523 outbuf, sizeof(outbuf), &outlen);
1524 if (rc)
1525 goto fail;
1526
Ben Hutchings05a93202011-12-20 00:44:06 +00001527 if (outlen < MC_CMD_GET_BOARD_CFG_OUT_LENMIN) {
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001528 rc = -EIO;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001529 goto fail;
1530 }
1531
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001532 if (mac_address)
Edward Creecd84ff42014-03-07 18:27:41 +00001533 ether_addr_copy(mac_address,
1534 port_num ?
1535 MCDI_PTR(outbuf, GET_BOARD_CFG_OUT_MAC_ADDR_BASE_PORT1) :
1536 MCDI_PTR(outbuf, GET_BOARD_CFG_OUT_MAC_ADDR_BASE_PORT0));
Ben Hutchingsbfeed902012-09-07 00:58:10 +01001537 if (fw_subtype_list) {
Ben Hutchingsbfeed902012-09-07 00:58:10 +01001538 for (i = 0;
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +01001539 i < MCDI_VAR_ARRAY_LEN(outlen,
1540 GET_BOARD_CFG_OUT_FW_SUBTYPE_LIST);
1541 i++)
1542 fw_subtype_list[i] = MCDI_ARRAY_WORD(
1543 outbuf, GET_BOARD_CFG_OUT_FW_SUBTYPE_LIST, i);
1544 for (; i < MC_CMD_GET_BOARD_CFG_OUT_FW_SUBTYPE_LIST_MAXNUM; i++)
1545 fw_subtype_list[i] = 0;
Ben Hutchingsbfeed902012-09-07 00:58:10 +01001546 }
Matthew Slattery6aa9c7f2010-07-14 15:36:19 +01001547 if (capabilities) {
1548 if (port_num)
1549 *capabilities = MCDI_DWORD(outbuf,
1550 GET_BOARD_CFG_OUT_CAPABILITIES_PORT1);
1551 else
1552 *capabilities = MCDI_DWORD(outbuf,
1553 GET_BOARD_CFG_OUT_CAPABILITIES_PORT0);
1554 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001555
1556 return 0;
1557
1558fail:
Ben Hutchings62776d02010-06-23 11:30:07 +00001559 netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d len=%d\n",
1560 __func__, rc, (int)outlen);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001561
1562 return rc;
1563}
1564
1565int efx_mcdi_log_ctrl(struct efx_nic *efx, bool evq, bool uart, u32 dest_evq)
1566{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001567 MCDI_DECLARE_BUF(inbuf, MC_CMD_LOG_CTRL_IN_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001568 u32 dest = 0;
1569 int rc;
1570
1571 if (uart)
1572 dest |= MC_CMD_LOG_CTRL_IN_LOG_DEST_UART;
1573 if (evq)
1574 dest |= MC_CMD_LOG_CTRL_IN_LOG_DEST_EVQ;
1575
1576 MCDI_SET_DWORD(inbuf, LOG_CTRL_IN_LOG_DEST, dest);
1577 MCDI_SET_DWORD(inbuf, LOG_CTRL_IN_LOG_DEST_EVQ, dest_evq);
1578
1579 BUILD_BUG_ON(MC_CMD_LOG_CTRL_OUT_LEN != 0);
1580
1581 rc = efx_mcdi_rpc(efx, MC_CMD_LOG_CTRL, inbuf, sizeof(inbuf),
1582 NULL, 0, NULL);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001583 return rc;
1584}
1585
1586int efx_mcdi_nvram_types(struct efx_nic *efx, u32 *nvram_types_out)
1587{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001588 MCDI_DECLARE_BUF(outbuf, MC_CMD_NVRAM_TYPES_OUT_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001589 size_t outlen;
1590 int rc;
1591
1592 BUILD_BUG_ON(MC_CMD_NVRAM_TYPES_IN_LEN != 0);
1593
1594 rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_TYPES, NULL, 0,
1595 outbuf, sizeof(outbuf), &outlen);
1596 if (rc)
1597 goto fail;
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001598 if (outlen < MC_CMD_NVRAM_TYPES_OUT_LEN) {
1599 rc = -EIO;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001600 goto fail;
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001601 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001602
1603 *nvram_types_out = MCDI_DWORD(outbuf, NVRAM_TYPES_OUT_TYPES);
1604 return 0;
1605
1606fail:
Ben Hutchings62776d02010-06-23 11:30:07 +00001607 netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d\n",
1608 __func__, rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001609 return rc;
1610}
1611
1612int efx_mcdi_nvram_info(struct efx_nic *efx, unsigned int type,
1613 size_t *size_out, size_t *erase_size_out,
1614 bool *protected_out)
1615{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001616 MCDI_DECLARE_BUF(inbuf, MC_CMD_NVRAM_INFO_IN_LEN);
1617 MCDI_DECLARE_BUF(outbuf, MC_CMD_NVRAM_INFO_OUT_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001618 size_t outlen;
1619 int rc;
1620
1621 MCDI_SET_DWORD(inbuf, NVRAM_INFO_IN_TYPE, type);
1622
1623 rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_INFO, inbuf, sizeof(inbuf),
1624 outbuf, sizeof(outbuf), &outlen);
1625 if (rc)
1626 goto fail;
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001627 if (outlen < MC_CMD_NVRAM_INFO_OUT_LEN) {
1628 rc = -EIO;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001629 goto fail;
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001630 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001631
1632 *size_out = MCDI_DWORD(outbuf, NVRAM_INFO_OUT_SIZE);
1633 *erase_size_out = MCDI_DWORD(outbuf, NVRAM_INFO_OUT_ERASESIZE);
1634 *protected_out = !!(MCDI_DWORD(outbuf, NVRAM_INFO_OUT_FLAGS) &
Ben Hutchings05a93202011-12-20 00:44:06 +00001635 (1 << MC_CMD_NVRAM_INFO_OUT_PROTECTED_LBN));
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001636 return 0;
1637
1638fail:
Ben Hutchings62776d02010-06-23 11:30:07 +00001639 netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d\n", __func__, rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001640 return rc;
1641}
1642
Ben Hutchings2e803402010-02-03 09:31:01 +00001643static int efx_mcdi_nvram_test(struct efx_nic *efx, unsigned int type)
1644{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001645 MCDI_DECLARE_BUF(inbuf, MC_CMD_NVRAM_TEST_IN_LEN);
1646 MCDI_DECLARE_BUF(outbuf, MC_CMD_NVRAM_TEST_OUT_LEN);
Ben Hutchings2e803402010-02-03 09:31:01 +00001647 int rc;
1648
1649 MCDI_SET_DWORD(inbuf, NVRAM_TEST_IN_TYPE, type);
1650
1651 rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_TEST, inbuf, sizeof(inbuf),
1652 outbuf, sizeof(outbuf), NULL);
1653 if (rc)
1654 return rc;
1655
1656 switch (MCDI_DWORD(outbuf, NVRAM_TEST_OUT_RESULT)) {
1657 case MC_CMD_NVRAM_TEST_PASS:
1658 case MC_CMD_NVRAM_TEST_NOTSUPP:
1659 return 0;
1660 default:
1661 return -EIO;
1662 }
1663}
1664
1665int efx_mcdi_nvram_test_all(struct efx_nic *efx)
1666{
1667 u32 nvram_types;
1668 unsigned int type;
1669 int rc;
1670
1671 rc = efx_mcdi_nvram_types(efx, &nvram_types);
1672 if (rc)
Ben Hutchingsb548a982010-04-28 09:28:36 +00001673 goto fail1;
Ben Hutchings2e803402010-02-03 09:31:01 +00001674
1675 type = 0;
1676 while (nvram_types != 0) {
1677 if (nvram_types & 1) {
1678 rc = efx_mcdi_nvram_test(efx, type);
1679 if (rc)
Ben Hutchingsb548a982010-04-28 09:28:36 +00001680 goto fail2;
Ben Hutchings2e803402010-02-03 09:31:01 +00001681 }
1682 type++;
1683 nvram_types >>= 1;
1684 }
1685
1686 return 0;
Ben Hutchingsb548a982010-04-28 09:28:36 +00001687
1688fail2:
Ben Hutchings62776d02010-06-23 11:30:07 +00001689 netif_err(efx, hw, efx->net_dev, "%s: failed type=%u\n",
1690 __func__, type);
Ben Hutchingsb548a982010-04-28 09:28:36 +00001691fail1:
Ben Hutchings62776d02010-06-23 11:30:07 +00001692 netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d\n", __func__, rc);
Ben Hutchingsb548a982010-04-28 09:28:36 +00001693 return rc;
Ben Hutchings2e803402010-02-03 09:31:01 +00001694}
1695
Edward Cree267d9d72015-05-06 00:59:18 +01001696/* Returns 1 if an assertion was read, 0 if no assertion had fired,
1697 * negative on error.
1698 */
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001699static int efx_mcdi_read_assertion(struct efx_nic *efx)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001700{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001701 MCDI_DECLARE_BUF(inbuf, MC_CMD_GET_ASSERTS_IN_LEN);
Jon Cooperaa09a3d2015-05-20 11:10:41 +01001702 MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_ASSERTS_OUT_LEN);
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +01001703 unsigned int flags, index;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001704 const char *reason;
1705 size_t outlen;
1706 int retry;
1707 int rc;
1708
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001709 /* Attempt to read any stored assertion state before we reboot
1710 * the mcfw out of the assertion handler. Retry twice, once
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001711 * because a boot-time assertion might cause this command to fail
1712 * with EINTR. And once again because GET_ASSERTS can race with
1713 * MC_CMD_REBOOT running on the other port. */
1714 retry = 2;
1715 do {
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001716 MCDI_SET_DWORD(inbuf, GET_ASSERTS_IN_CLEAR, 1);
Edward Cree1e0b8122013-05-31 18:36:12 +01001717 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_GET_ASSERTS,
1718 inbuf, MC_CMD_GET_ASSERTS_IN_LEN,
1719 outbuf, sizeof(outbuf), &outlen);
Edward Cree267d9d72015-05-06 00:59:18 +01001720 if (rc == -EPERM)
1721 return 0;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001722 } while ((rc == -EINTR || rc == -EIO) && retry-- > 0);
1723
Edward Cree1e0b8122013-05-31 18:36:12 +01001724 if (rc) {
1725 efx_mcdi_display_error(efx, MC_CMD_GET_ASSERTS,
1726 MC_CMD_GET_ASSERTS_IN_LEN, outbuf,
1727 outlen, rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001728 return rc;
Edward Cree1e0b8122013-05-31 18:36:12 +01001729 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001730 if (outlen < MC_CMD_GET_ASSERTS_OUT_LEN)
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001731 return -EIO;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001732
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001733 /* Print out any recorded assertion state */
1734 flags = MCDI_DWORD(outbuf, GET_ASSERTS_OUT_GLOBAL_FLAGS);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001735 if (flags == MC_CMD_GET_ASSERTS_FLAGS_NO_FAILS)
1736 return 0;
1737
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001738 reason = (flags == MC_CMD_GET_ASSERTS_FLAGS_SYS_FAIL)
1739 ? "system-level assertion"
1740 : (flags == MC_CMD_GET_ASSERTS_FLAGS_THR_FAIL)
1741 ? "thread-level assertion"
1742 : (flags == MC_CMD_GET_ASSERTS_FLAGS_WDOG_FIRED)
1743 ? "watchdog reset"
1744 : "unknown assertion";
Ben Hutchings62776d02010-06-23 11:30:07 +00001745 netif_err(efx, hw, efx->net_dev,
1746 "MCPU %s at PC = 0x%.8x in thread 0x%.8x\n", reason,
1747 MCDI_DWORD(outbuf, GET_ASSERTS_OUT_SAVED_PC_OFFS),
1748 MCDI_DWORD(outbuf, GET_ASSERTS_OUT_THREAD_OFFS));
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001749
1750 /* Print out the registers */
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +01001751 for (index = 0;
1752 index < MC_CMD_GET_ASSERTS_OUT_GP_REGS_OFFS_NUM;
1753 index++)
1754 netif_err(efx, hw, efx->net_dev, "R%.2d (?): 0x%.8x\n",
1755 1 + index,
1756 MCDI_ARRAY_DWORD(outbuf, GET_ASSERTS_OUT_GP_REGS_OFFS,
1757 index));
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001758
Edward Cree267d9d72015-05-06 00:59:18 +01001759 return 1;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001760}
1761
Edward Cree267d9d72015-05-06 00:59:18 +01001762static int efx_mcdi_exit_assertion(struct efx_nic *efx)
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001763{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001764 MCDI_DECLARE_BUF(inbuf, MC_CMD_REBOOT_IN_LEN);
Edward Cree267d9d72015-05-06 00:59:18 +01001765 int rc;
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001766
Ben Hutchings0f1e54a2012-07-02 23:37:40 +01001767 /* If the MC is running debug firmware, it might now be
1768 * waiting for a debugger to attach, but we just want it to
1769 * reboot. We set a flag that makes the command a no-op if it
Edward Cree267d9d72015-05-06 00:59:18 +01001770 * has already done so.
1771 * The MCDI will thus return either 0 or -EIO.
Ben Hutchings0f1e54a2012-07-02 23:37:40 +01001772 */
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001773 BUILD_BUG_ON(MC_CMD_REBOOT_OUT_LEN != 0);
1774 MCDI_SET_DWORD(inbuf, REBOOT_IN_FLAGS,
1775 MC_CMD_REBOOT_FLAGS_AFTER_ASSERTION);
Edward Cree267d9d72015-05-06 00:59:18 +01001776 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_REBOOT, inbuf, MC_CMD_REBOOT_IN_LEN,
1777 NULL, 0, NULL);
1778 if (rc == -EIO)
1779 rc = 0;
1780 if (rc)
1781 efx_mcdi_display_error(efx, MC_CMD_REBOOT, MC_CMD_REBOOT_IN_LEN,
1782 NULL, 0, rc);
1783 return rc;
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001784}
1785
1786int efx_mcdi_handle_assertion(struct efx_nic *efx)
1787{
1788 int rc;
1789
1790 rc = efx_mcdi_read_assertion(efx);
Edward Cree267d9d72015-05-06 00:59:18 +01001791 if (rc <= 0)
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001792 return rc;
1793
Edward Cree267d9d72015-05-06 00:59:18 +01001794 return efx_mcdi_exit_assertion(efx);
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001795}
1796
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001797void efx_mcdi_set_id_led(struct efx_nic *efx, enum efx_led_mode mode)
1798{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001799 MCDI_DECLARE_BUF(inbuf, MC_CMD_SET_ID_LED_IN_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001800 int rc;
1801
1802 BUILD_BUG_ON(EFX_LED_OFF != MC_CMD_LED_OFF);
1803 BUILD_BUG_ON(EFX_LED_ON != MC_CMD_LED_ON);
1804 BUILD_BUG_ON(EFX_LED_DEFAULT != MC_CMD_LED_DEFAULT);
1805
1806 BUILD_BUG_ON(MC_CMD_SET_ID_LED_OUT_LEN != 0);
1807
1808 MCDI_SET_DWORD(inbuf, SET_ID_LED_IN_STATE, mode);
1809
1810 rc = efx_mcdi_rpc(efx, MC_CMD_SET_ID_LED, inbuf, sizeof(inbuf),
1811 NULL, 0, NULL);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001812}
1813
Jon Cooper3e336262014-01-17 19:48:06 +00001814static int efx_mcdi_reset_func(struct efx_nic *efx)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001815{
Jon Cooper3e336262014-01-17 19:48:06 +00001816 MCDI_DECLARE_BUF(inbuf, MC_CMD_ENTITY_RESET_IN_LEN);
1817 int rc;
1818
1819 BUILD_BUG_ON(MC_CMD_ENTITY_RESET_OUT_LEN != 0);
1820 MCDI_POPULATE_DWORD_1(inbuf, ENTITY_RESET_IN_FLAG,
1821 ENTITY_RESET_IN_FUNCTION_RESOURCE_RESET, 1);
1822 rc = efx_mcdi_rpc(efx, MC_CMD_ENTITY_RESET, inbuf, sizeof(inbuf),
1823 NULL, 0, NULL);
1824 return rc;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001825}
1826
Ben Hutchings6bff8612012-09-18 02:33:52 +01001827static int efx_mcdi_reset_mc(struct efx_nic *efx)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001828{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001829 MCDI_DECLARE_BUF(inbuf, MC_CMD_REBOOT_IN_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001830 int rc;
1831
1832 BUILD_BUG_ON(MC_CMD_REBOOT_OUT_LEN != 0);
1833 MCDI_SET_DWORD(inbuf, REBOOT_IN_FLAGS, 0);
1834 rc = efx_mcdi_rpc(efx, MC_CMD_REBOOT, inbuf, sizeof(inbuf),
1835 NULL, 0, NULL);
1836 /* White is black, and up is down */
1837 if (rc == -EIO)
1838 return 0;
1839 if (rc == 0)
1840 rc = -EIO;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001841 return rc;
1842}
1843
Ben Hutchings6bff8612012-09-18 02:33:52 +01001844enum reset_type efx_mcdi_map_reset_reason(enum reset_type reason)
1845{
1846 return RESET_TYPE_RECOVER_OR_ALL;
1847}
1848
1849int efx_mcdi_reset(struct efx_nic *efx, enum reset_type method)
1850{
1851 int rc;
1852
Edward Creee2835462014-04-16 19:27:48 +01001853 /* If MCDI is down, we can't handle_assertion */
1854 if (method == RESET_TYPE_MCDI_TIMEOUT) {
1855 rc = pci_reset_function(efx->pci_dev);
1856 if (rc)
1857 return rc;
1858 /* Re-enable polled MCDI completion */
1859 if (efx->mcdi) {
1860 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
1861 mcdi->mode = MCDI_MODE_POLL;
1862 }
1863 return 0;
1864 }
1865
Ben Hutchings6bff8612012-09-18 02:33:52 +01001866 /* Recover from a failed assertion pre-reset */
1867 rc = efx_mcdi_handle_assertion(efx);
1868 if (rc)
1869 return rc;
1870
Jon Cooper087e9022015-05-20 11:11:35 +01001871 if (method == RESET_TYPE_DATAPATH)
1872 return 0;
1873 else if (method == RESET_TYPE_WORLD)
Ben Hutchings6bff8612012-09-18 02:33:52 +01001874 return efx_mcdi_reset_mc(efx);
1875 else
Jon Cooper3e336262014-01-17 19:48:06 +00001876 return efx_mcdi_reset_func(efx);
Ben Hutchings6bff8612012-09-18 02:33:52 +01001877}
1878
stephen hemmingerd2156972010-10-18 05:27:31 +00001879static int efx_mcdi_wol_filter_set(struct efx_nic *efx, u32 type,
1880 const u8 *mac, int *id_out)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001881{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001882 MCDI_DECLARE_BUF(inbuf, MC_CMD_WOL_FILTER_SET_IN_LEN);
1883 MCDI_DECLARE_BUF(outbuf, MC_CMD_WOL_FILTER_SET_OUT_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001884 size_t outlen;
1885 int rc;
1886
1887 MCDI_SET_DWORD(inbuf, WOL_FILTER_SET_IN_WOL_TYPE, type);
1888 MCDI_SET_DWORD(inbuf, WOL_FILTER_SET_IN_FILTER_MODE,
1889 MC_CMD_FILTER_MODE_SIMPLE);
Edward Creecd84ff42014-03-07 18:27:41 +00001890 ether_addr_copy(MCDI_PTR(inbuf, WOL_FILTER_SET_IN_MAGIC_MAC), mac);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001891
1892 rc = efx_mcdi_rpc(efx, MC_CMD_WOL_FILTER_SET, inbuf, sizeof(inbuf),
1893 outbuf, sizeof(outbuf), &outlen);
1894 if (rc)
1895 goto fail;
1896
1897 if (outlen < MC_CMD_WOL_FILTER_SET_OUT_LEN) {
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001898 rc = -EIO;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001899 goto fail;
1900 }
1901
1902 *id_out = (int)MCDI_DWORD(outbuf, WOL_FILTER_SET_OUT_FILTER_ID);
1903
1904 return 0;
1905
1906fail:
1907 *id_out = -1;
Ben Hutchings62776d02010-06-23 11:30:07 +00001908 netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d\n", __func__, rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001909 return rc;
1910
1911}
1912
1913
1914int
1915efx_mcdi_wol_filter_set_magic(struct efx_nic *efx, const u8 *mac, int *id_out)
1916{
1917 return efx_mcdi_wol_filter_set(efx, MC_CMD_WOL_TYPE_MAGIC, mac, id_out);
1918}
1919
1920
1921int efx_mcdi_wol_filter_get_magic(struct efx_nic *efx, int *id_out)
1922{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001923 MCDI_DECLARE_BUF(outbuf, MC_CMD_WOL_FILTER_GET_OUT_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001924 size_t outlen;
1925 int rc;
1926
1927 rc = efx_mcdi_rpc(efx, MC_CMD_WOL_FILTER_GET, NULL, 0,
1928 outbuf, sizeof(outbuf), &outlen);
1929 if (rc)
1930 goto fail;
1931
1932 if (outlen < MC_CMD_WOL_FILTER_GET_OUT_LEN) {
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001933 rc = -EIO;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001934 goto fail;
1935 }
1936
1937 *id_out = (int)MCDI_DWORD(outbuf, WOL_FILTER_GET_OUT_FILTER_ID);
1938
1939 return 0;
1940
1941fail:
1942 *id_out = -1;
Ben Hutchings62776d02010-06-23 11:30:07 +00001943 netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d\n", __func__, rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001944 return rc;
1945}
1946
1947
1948int efx_mcdi_wol_filter_remove(struct efx_nic *efx, int id)
1949{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001950 MCDI_DECLARE_BUF(inbuf, MC_CMD_WOL_FILTER_REMOVE_IN_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001951 int rc;
1952
1953 MCDI_SET_DWORD(inbuf, WOL_FILTER_REMOVE_IN_FILTER_ID, (u32)id);
1954
1955 rc = efx_mcdi_rpc(efx, MC_CMD_WOL_FILTER_REMOVE, inbuf, sizeof(inbuf),
1956 NULL, 0, NULL);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001957 return rc;
1958}
1959
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001960int efx_mcdi_flush_rxqs(struct efx_nic *efx)
1961{
1962 struct efx_channel *channel;
1963 struct efx_rx_queue *rx_queue;
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +01001964 MCDI_DECLARE_BUF(inbuf,
1965 MC_CMD_FLUSH_RX_QUEUES_IN_LEN(EFX_MAX_CHANNELS));
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001966 int rc, count;
1967
Ben Hutchings45078372012-09-19 02:53:34 +01001968 BUILD_BUG_ON(EFX_MAX_CHANNELS >
1969 MC_CMD_FLUSH_RX_QUEUES_IN_QID_OFST_MAXNUM);
1970
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001971 count = 0;
1972 efx_for_each_channel(channel, efx) {
1973 efx_for_each_channel_rx_queue(rx_queue, channel) {
1974 if (rx_queue->flush_pending) {
1975 rx_queue->flush_pending = false;
1976 atomic_dec(&efx->rxq_flush_pending);
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +01001977 MCDI_SET_ARRAY_DWORD(
1978 inbuf, FLUSH_RX_QUEUES_IN_QID_OFST,
1979 count, efx_rx_queue_index(rx_queue));
1980 count++;
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001981 }
1982 }
1983 }
1984
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +01001985 rc = efx_mcdi_rpc(efx, MC_CMD_FLUSH_RX_QUEUES, inbuf,
1986 MC_CMD_FLUSH_RX_QUEUES_IN_LEN(count), NULL, 0, NULL);
Ben Hutchingsbbec9692012-09-11 18:25:13 +01001987 WARN_ON(rc < 0);
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001988
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001989 return rc;
1990}
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001991
1992int efx_mcdi_wol_filter_reset(struct efx_nic *efx)
1993{
1994 int rc;
1995
1996 rc = efx_mcdi_rpc(efx, MC_CMD_WOL_FILTER_RESET, NULL, 0, NULL, 0, NULL);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001997 return rc;
1998}
1999
Daniel Pieczko34ccfe62015-07-21 15:09:43 +01002000int efx_mcdi_set_workaround(struct efx_nic *efx, u32 type, bool enabled,
2001 unsigned int *flags)
Ben Hutchings8127d662013-08-29 19:19:29 +01002002{
2003 MCDI_DECLARE_BUF(inbuf, MC_CMD_WORKAROUND_IN_LEN);
Daniel Pieczko34ccfe62015-07-21 15:09:43 +01002004 MCDI_DECLARE_BUF(outbuf, MC_CMD_WORKAROUND_EXT_OUT_LEN);
2005 size_t outlen;
2006 int rc;
Ben Hutchings8127d662013-08-29 19:19:29 +01002007
2008 BUILD_BUG_ON(MC_CMD_WORKAROUND_OUT_LEN != 0);
2009 MCDI_SET_DWORD(inbuf, WORKAROUND_IN_TYPE, type);
2010 MCDI_SET_DWORD(inbuf, WORKAROUND_IN_ENABLED, enabled);
Daniel Pieczko34ccfe62015-07-21 15:09:43 +01002011 rc = efx_mcdi_rpc(efx, MC_CMD_WORKAROUND, inbuf, sizeof(inbuf),
2012 outbuf, sizeof(outbuf), &outlen);
2013 if (rc)
2014 return rc;
2015
2016 if (!flags)
2017 return 0;
2018
2019 if (outlen >= MC_CMD_WORKAROUND_EXT_OUT_LEN)
2020 *flags = MCDI_DWORD(outbuf, WORKAROUND_EXT_OUT_FLAGS);
2021 else
2022 *flags = 0;
2023
2024 return 0;
Ben Hutchings8127d662013-08-29 19:19:29 +01002025}
2026
Edward Cree267d9d72015-05-06 00:59:18 +01002027int efx_mcdi_get_workarounds(struct efx_nic *efx, unsigned int *impl_out,
2028 unsigned int *enabled_out)
2029{
Jon Cooperaa09a3d2015-05-20 11:10:41 +01002030 MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_WORKAROUNDS_OUT_LEN);
Edward Cree267d9d72015-05-06 00:59:18 +01002031 size_t outlen;
2032 int rc;
2033
2034 rc = efx_mcdi_rpc(efx, MC_CMD_GET_WORKAROUNDS, NULL, 0,
2035 outbuf, sizeof(outbuf), &outlen);
2036 if (rc)
2037 goto fail;
2038
2039 if (outlen < MC_CMD_GET_WORKAROUNDS_OUT_LEN) {
2040 rc = -EIO;
2041 goto fail;
2042 }
2043
2044 if (impl_out)
2045 *impl_out = MCDI_DWORD(outbuf, GET_WORKAROUNDS_OUT_IMPLEMENTED);
2046
2047 if (enabled_out)
2048 *enabled_out = MCDI_DWORD(outbuf, GET_WORKAROUNDS_OUT_ENABLED);
2049
2050 return 0;
2051
2052fail:
Edward Cree832dc9e2015-07-21 15:09:31 +01002053 /* Older firmware lacks GET_WORKAROUNDS and this isn't especially
2054 * terrifying. The call site will have to deal with it though.
2055 */
2056 netif_printk(efx, hw, rc == -ENOSYS ? KERN_DEBUG : KERN_ERR,
2057 efx->net_dev, "%s: failed rc=%d\n", __func__, rc);
Edward Cree267d9d72015-05-06 00:59:18 +01002058 return rc;
2059}
2060
Ben Hutchings45a3fd52012-11-28 04:38:14 +00002061#ifdef CONFIG_SFC_MTD
2062
2063#define EFX_MCDI_NVRAM_LEN_MAX 128
2064
2065static int efx_mcdi_nvram_update_start(struct efx_nic *efx, unsigned int type)
2066{
2067 MCDI_DECLARE_BUF(inbuf, MC_CMD_NVRAM_UPDATE_START_IN_LEN);
2068 int rc;
2069
2070 MCDI_SET_DWORD(inbuf, NVRAM_UPDATE_START_IN_TYPE, type);
2071
2072 BUILD_BUG_ON(MC_CMD_NVRAM_UPDATE_START_OUT_LEN != 0);
2073
2074 rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_UPDATE_START, inbuf, sizeof(inbuf),
2075 NULL, 0, NULL);
Ben Hutchings45a3fd52012-11-28 04:38:14 +00002076 return rc;
2077}
2078
2079static int efx_mcdi_nvram_read(struct efx_nic *efx, unsigned int type,
2080 loff_t offset, u8 *buffer, size_t length)
2081{
2082 MCDI_DECLARE_BUF(inbuf, MC_CMD_NVRAM_READ_IN_LEN);
2083 MCDI_DECLARE_BUF(outbuf,
2084 MC_CMD_NVRAM_READ_OUT_LEN(EFX_MCDI_NVRAM_LEN_MAX));
2085 size_t outlen;
2086 int rc;
2087
2088 MCDI_SET_DWORD(inbuf, NVRAM_READ_IN_TYPE, type);
2089 MCDI_SET_DWORD(inbuf, NVRAM_READ_IN_OFFSET, offset);
2090 MCDI_SET_DWORD(inbuf, NVRAM_READ_IN_LENGTH, length);
2091
2092 rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_READ, inbuf, sizeof(inbuf),
2093 outbuf, sizeof(outbuf), &outlen);
2094 if (rc)
Edward Cree1e0b8122013-05-31 18:36:12 +01002095 return rc;
Ben Hutchings45a3fd52012-11-28 04:38:14 +00002096
2097 memcpy(buffer, MCDI_PTR(outbuf, NVRAM_READ_OUT_READ_BUFFER), length);
2098 return 0;
Ben Hutchings45a3fd52012-11-28 04:38:14 +00002099}
2100
2101static int efx_mcdi_nvram_write(struct efx_nic *efx, unsigned int type,
2102 loff_t offset, const u8 *buffer, size_t length)
2103{
2104 MCDI_DECLARE_BUF(inbuf,
2105 MC_CMD_NVRAM_WRITE_IN_LEN(EFX_MCDI_NVRAM_LEN_MAX));
2106 int rc;
2107
2108 MCDI_SET_DWORD(inbuf, NVRAM_WRITE_IN_TYPE, type);
2109 MCDI_SET_DWORD(inbuf, NVRAM_WRITE_IN_OFFSET, offset);
2110 MCDI_SET_DWORD(inbuf, NVRAM_WRITE_IN_LENGTH, length);
2111 memcpy(MCDI_PTR(inbuf, NVRAM_WRITE_IN_WRITE_BUFFER), buffer, length);
2112
2113 BUILD_BUG_ON(MC_CMD_NVRAM_WRITE_OUT_LEN != 0);
2114
2115 rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_WRITE, inbuf,
2116 ALIGN(MC_CMD_NVRAM_WRITE_IN_LEN(length), 4),
2117 NULL, 0, NULL);
Ben Hutchings45a3fd52012-11-28 04:38:14 +00002118 return rc;
2119}
2120
2121static int efx_mcdi_nvram_erase(struct efx_nic *efx, unsigned int type,
2122 loff_t offset, size_t length)
2123{
2124 MCDI_DECLARE_BUF(inbuf, MC_CMD_NVRAM_ERASE_IN_LEN);
2125 int rc;
2126
2127 MCDI_SET_DWORD(inbuf, NVRAM_ERASE_IN_TYPE, type);
2128 MCDI_SET_DWORD(inbuf, NVRAM_ERASE_IN_OFFSET, offset);
2129 MCDI_SET_DWORD(inbuf, NVRAM_ERASE_IN_LENGTH, length);
2130
2131 BUILD_BUG_ON(MC_CMD_NVRAM_ERASE_OUT_LEN != 0);
2132
2133 rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_ERASE, inbuf, sizeof(inbuf),
2134 NULL, 0, NULL);
Ben Hutchings45a3fd52012-11-28 04:38:14 +00002135 return rc;
2136}
2137
2138static int efx_mcdi_nvram_update_finish(struct efx_nic *efx, unsigned int type)
2139{
2140 MCDI_DECLARE_BUF(inbuf, MC_CMD_NVRAM_UPDATE_FINISH_IN_LEN);
2141 int rc;
2142
2143 MCDI_SET_DWORD(inbuf, NVRAM_UPDATE_FINISH_IN_TYPE, type);
2144
2145 BUILD_BUG_ON(MC_CMD_NVRAM_UPDATE_FINISH_OUT_LEN != 0);
2146
2147 rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_UPDATE_FINISH, inbuf, sizeof(inbuf),
2148 NULL, 0, NULL);
Ben Hutchings45a3fd52012-11-28 04:38:14 +00002149 return rc;
2150}
2151
2152int efx_mcdi_mtd_read(struct mtd_info *mtd, loff_t start,
2153 size_t len, size_t *retlen, u8 *buffer)
2154{
2155 struct efx_mcdi_mtd_partition *part = to_efx_mcdi_mtd_partition(mtd);
2156 struct efx_nic *efx = mtd->priv;
2157 loff_t offset = start;
2158 loff_t end = min_t(loff_t, start + len, mtd->size);
2159 size_t chunk;
2160 int rc = 0;
2161
2162 while (offset < end) {
2163 chunk = min_t(size_t, end - offset, EFX_MCDI_NVRAM_LEN_MAX);
2164 rc = efx_mcdi_nvram_read(efx, part->nvram_type, offset,
2165 buffer, chunk);
2166 if (rc)
2167 goto out;
2168 offset += chunk;
2169 buffer += chunk;
2170 }
2171out:
2172 *retlen = offset - start;
2173 return rc;
2174}
2175
2176int efx_mcdi_mtd_erase(struct mtd_info *mtd, loff_t start, size_t len)
2177{
2178 struct efx_mcdi_mtd_partition *part = to_efx_mcdi_mtd_partition(mtd);
2179 struct efx_nic *efx = mtd->priv;
2180 loff_t offset = start & ~((loff_t)(mtd->erasesize - 1));
2181 loff_t end = min_t(loff_t, start + len, mtd->size);
2182 size_t chunk = part->common.mtd.erasesize;
2183 int rc = 0;
2184
2185 if (!part->updating) {
2186 rc = efx_mcdi_nvram_update_start(efx, part->nvram_type);
2187 if (rc)
2188 goto out;
2189 part->updating = true;
2190 }
2191
2192 /* The MCDI interface can in fact do multiple erase blocks at once;
2193 * but erasing may be slow, so we make multiple calls here to avoid
2194 * tripping the MCDI RPC timeout. */
2195 while (offset < end) {
2196 rc = efx_mcdi_nvram_erase(efx, part->nvram_type, offset,
2197 chunk);
2198 if (rc)
2199 goto out;
2200 offset += chunk;
2201 }
2202out:
2203 return rc;
2204}
2205
2206int efx_mcdi_mtd_write(struct mtd_info *mtd, loff_t start,
2207 size_t len, size_t *retlen, const u8 *buffer)
2208{
2209 struct efx_mcdi_mtd_partition *part = to_efx_mcdi_mtd_partition(mtd);
2210 struct efx_nic *efx = mtd->priv;
2211 loff_t offset = start;
2212 loff_t end = min_t(loff_t, start + len, mtd->size);
2213 size_t chunk;
2214 int rc = 0;
2215
2216 if (!part->updating) {
2217 rc = efx_mcdi_nvram_update_start(efx, part->nvram_type);
2218 if (rc)
2219 goto out;
2220 part->updating = true;
2221 }
2222
2223 while (offset < end) {
2224 chunk = min_t(size_t, end - offset, EFX_MCDI_NVRAM_LEN_MAX);
2225 rc = efx_mcdi_nvram_write(efx, part->nvram_type, offset,
2226 buffer, chunk);
2227 if (rc)
2228 goto out;
2229 offset += chunk;
2230 buffer += chunk;
2231 }
2232out:
2233 *retlen = offset - start;
2234 return rc;
2235}
2236
2237int efx_mcdi_mtd_sync(struct mtd_info *mtd)
2238{
2239 struct efx_mcdi_mtd_partition *part = to_efx_mcdi_mtd_partition(mtd);
2240 struct efx_nic *efx = mtd->priv;
2241 int rc = 0;
2242
2243 if (part->updating) {
2244 part->updating = false;
2245 rc = efx_mcdi_nvram_update_finish(efx, part->nvram_type);
2246 }
2247
2248 return rc;
2249}
2250
2251void efx_mcdi_mtd_rename(struct efx_mtd_partition *part)
2252{
2253 struct efx_mcdi_mtd_partition *mcdi_part =
2254 container_of(part, struct efx_mcdi_mtd_partition, common);
2255 struct efx_nic *efx = part->mtd.priv;
2256
2257 snprintf(part->name, sizeof(part->name), "%s %s:%02x",
2258 efx->name, part->type_name, mcdi_part->fw_subtype);
2259}
2260
2261#endif /* CONFIG_SFC_MTD */