blob: 24b271b9c2601c018caa010f1d13c6d0fb075fb3 [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"
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000018
19/**************************************************************************
20 *
21 * Management-Controller-to-Driver Interface
22 *
23 **************************************************************************
24 */
25
Ben Hutchingsebf98e72012-12-01 02:21:17 +000026#define MCDI_RPC_TIMEOUT (10 * HZ)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000027
Ben Hutchings3f713bf2011-12-20 23:39:31 +000028/* A reboot/assertion causes the MCDI status word to be set after the
29 * command word is set or a REBOOT event is sent. If we notice a reboot
Daniel Pieczkob2d32f02013-09-20 16:45:10 +010030 * via these mechanisms then wait 250ms for the status word to be set.
Daniel Pieczkod36a08b2013-06-20 11:40:07 +010031 */
Ben Hutchings3f713bf2011-12-20 23:39:31 +000032#define MCDI_STATUS_DELAY_US 100
Daniel Pieczkob2d32f02013-09-20 16:45:10 +010033#define MCDI_STATUS_DELAY_COUNT 2500
Ben Hutchings3f713bf2011-12-20 23:39:31 +000034#define MCDI_STATUS_SLEEP_MS \
35 (MCDI_STATUS_DELAY_US * MCDI_STATUS_DELAY_COUNT / 1000)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000036
37#define SEQ_MASK \
38 EFX_MASK32(EFX_WIDTH(MCDI_HEADER_SEQ))
39
Ben Hutchingscade7152013-08-27 23:12:31 +010040struct efx_mcdi_async_param {
41 struct list_head list;
42 unsigned int cmd;
43 size_t inlen;
44 size_t outlen;
Edward Cree1e0b8122013-05-31 18:36:12 +010045 bool quiet;
Ben Hutchingscade7152013-08-27 23:12:31 +010046 efx_mcdi_async_completer *complete;
47 unsigned long cookie;
48 /* followed by request/response buffer */
49};
50
51static void efx_mcdi_timeout_async(unsigned long context);
Ben Hutchings4c75b43a2013-08-29 19:04:03 +010052static int efx_mcdi_drv_attach(struct efx_nic *efx, bool driver_operating,
53 bool *was_attached_out);
Robert Stonehouse5731d7b2013-10-09 11:52:43 +010054static bool efx_mcdi_poll_once(struct efx_nic *efx);
Edward Creee2835462014-04-16 19:27:48 +010055static void efx_mcdi_abandon(struct efx_nic *efx);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000056
Edward Cree42ca0872015-05-27 13:14:26 +010057#ifdef CONFIG_SFC_MCDI_LOGGING
58static bool mcdi_logging_default;
59module_param(mcdi_logging_default, bool, 0644);
60MODULE_PARM_DESC(mcdi_logging_default,
61 "Enable MCDI logging on newly-probed functions");
62#endif
63
Ben Hutchingsf073dde2012-09-18 02:33:55 +010064int efx_mcdi_init(struct efx_nic *efx)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000065{
66 struct efx_mcdi_iface *mcdi;
Ben Hutchings4c75b43a2013-08-29 19:04:03 +010067 bool already_attached;
Edward Cree75aba2a2015-05-27 13:13:54 +010068 int rc = -ENOMEM;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000069
Ben Hutchingsf3ad5002012-09-18 02:33:56 +010070 efx->mcdi = kzalloc(sizeof(*efx->mcdi), GFP_KERNEL);
71 if (!efx->mcdi)
Edward Cree75aba2a2015-05-27 13:13:54 +010072 goto fail;
Ben Hutchingsf3ad5002012-09-18 02:33:56 +010073
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000074 mcdi = efx_mcdi(efx);
Ben Hutchingscade7152013-08-27 23:12:31 +010075 mcdi->efx = efx;
Edward Cree75aba2a2015-05-27 13:13:54 +010076#ifdef CONFIG_SFC_MCDI_LOGGING
77 /* consuming code assumes buffer is page-sized */
78 mcdi->logging_buffer = (char *)__get_free_page(GFP_KERNEL);
79 if (!mcdi->logging_buffer)
80 goto fail1;
Edward Cree42ca0872015-05-27 13:14:26 +010081 mcdi->logging_enabled = mcdi_logging_default;
Edward Cree75aba2a2015-05-27 13:13:54 +010082#endif
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000083 init_waitqueue_head(&mcdi->wq);
Bert Kenwardacd43a92015-12-23 08:57:18 +000084 init_waitqueue_head(&mcdi->proxy_rx_wq);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000085 spin_lock_init(&mcdi->iface_lock);
Ben Hutchings251111d2013-08-27 23:04:29 +010086 mcdi->state = MCDI_STATE_QUIESCENT;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000087 mcdi->mode = MCDI_MODE_POLL;
Ben Hutchingscade7152013-08-27 23:12:31 +010088 spin_lock_init(&mcdi->async_lock);
89 INIT_LIST_HEAD(&mcdi->async_list);
90 setup_timer(&mcdi->async_timer, efx_mcdi_timeout_async,
91 (unsigned long)mcdi);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +000092
93 (void) efx_mcdi_poll_reboot(efx);
Daniel Pieczkod36a08b2013-06-20 11:40:07 +010094 mcdi->new_epoch = true;
Ben Hutchingsf073dde2012-09-18 02:33:55 +010095
96 /* Recover from a failed assertion before probing */
Ben Hutchings4c75b43a2013-08-29 19:04:03 +010097 rc = efx_mcdi_handle_assertion(efx);
98 if (rc)
Edward Cree75aba2a2015-05-27 13:13:54 +010099 goto fail2;
Ben Hutchings4c75b43a2013-08-29 19:04:03 +0100100
101 /* Let the MC (and BMC, if this is a LOM) know that the driver
102 * is loaded. We should do this before we reset the NIC.
103 */
104 rc = efx_mcdi_drv_attach(efx, true, &already_attached);
105 if (rc) {
106 netif_err(efx, probe, efx->net_dev,
107 "Unable to register driver with MCPU\n");
Edward Cree75aba2a2015-05-27 13:13:54 +0100108 goto fail2;
Ben Hutchings4c75b43a2013-08-29 19:04:03 +0100109 }
110 if (already_attached)
111 /* Not a fatal error */
112 netif_err(efx, probe, efx->net_dev,
113 "Host already registered with MCPU\n");
114
Ben Hutchings0bcf4a62013-10-18 19:21:45 +0100115 if (efx->mcdi->fn_flags &
116 (1 << MC_CMD_DRV_ATTACH_EXT_OUT_FLAG_PRIMARY))
117 efx->primary = efx;
118
Ben Hutchings4c75b43a2013-08-29 19:04:03 +0100119 return 0;
Edward Cree75aba2a2015-05-27 13:13:54 +0100120fail2:
121#ifdef CONFIG_SFC_MCDI_LOGGING
122 free_page((unsigned long)mcdi->logging_buffer);
123fail1:
124#endif
125 kfree(efx->mcdi);
126 efx->mcdi = NULL;
127fail:
128 return rc;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000129}
130
Ben Hutchingsf3ad5002012-09-18 02:33:56 +0100131void efx_mcdi_fini(struct efx_nic *efx)
132{
Ben Hutchings4c75b43a2013-08-29 19:04:03 +0100133 if (!efx->mcdi)
134 return;
135
136 BUG_ON(efx->mcdi->iface.state != MCDI_STATE_QUIESCENT);
137
138 /* Relinquish the device (back to the BMC, if this is a LOM) */
139 efx_mcdi_drv_attach(efx, false, NULL);
140
Edward Cree75aba2a2015-05-27 13:13:54 +0100141#ifdef CONFIG_SFC_MCDI_LOGGING
142 free_page((unsigned long)efx->mcdi->iface.logging_buffer);
143#endif
144
Ben Hutchingsf3ad5002012-09-18 02:33:56 +0100145 kfree(efx->mcdi);
146}
147
Ben Hutchings2f4bcdc2013-08-22 22:06:09 +0100148static void efx_mcdi_send_request(struct efx_nic *efx, unsigned cmd,
149 const efx_dword_t *inbuf, size_t inlen)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000150{
151 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
Edward Cree75aba2a2015-05-27 13:13:54 +0100152#ifdef CONFIG_SFC_MCDI_LOGGING
153 char *buf = mcdi->logging_buffer; /* page-sized */
154#endif
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100155 efx_dword_t hdr[2];
156 size_t hdr_len;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000157 u32 xflags, seqno;
158
Ben Hutchings251111d2013-08-27 23:04:29 +0100159 BUG_ON(mcdi->state == MCDI_STATE_QUIESCENT);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000160
Ben Hutchings2f4bcdc2013-08-22 22:06:09 +0100161 /* Serialise with efx_mcdi_ev_cpl() and efx_mcdi_ev_death() */
162 spin_lock_bh(&mcdi->iface_lock);
163 ++mcdi->seqno;
164 spin_unlock_bh(&mcdi->iface_lock);
165
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000166 seqno = mcdi->seqno & SEQ_MASK;
167 xflags = 0;
168 if (mcdi->mode == MCDI_MODE_EVENTS)
169 xflags |= MCDI_HEADER_XFLAGS_EVREQ;
170
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100171 if (efx->type->mcdi_max_ver == 1) {
172 /* MCDI v1 */
Daniel Pieczkod36a08b2013-06-20 11:40:07 +0100173 EFX_POPULATE_DWORD_7(hdr[0],
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100174 MCDI_HEADER_RESPONSE, 0,
175 MCDI_HEADER_RESYNC, 1,
176 MCDI_HEADER_CODE, cmd,
177 MCDI_HEADER_DATALEN, inlen,
178 MCDI_HEADER_SEQ, seqno,
Daniel Pieczkod36a08b2013-06-20 11:40:07 +0100179 MCDI_HEADER_XFLAGS, xflags,
180 MCDI_HEADER_NOT_EPOCH, !mcdi->new_epoch);
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100181 hdr_len = 4;
182 } else {
183 /* MCDI v2 */
184 BUG_ON(inlen > MCDI_CTL_SDU_LEN_MAX_V2);
Daniel Pieczkod36a08b2013-06-20 11:40:07 +0100185 EFX_POPULATE_DWORD_7(hdr[0],
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100186 MCDI_HEADER_RESPONSE, 0,
187 MCDI_HEADER_RESYNC, 1,
188 MCDI_HEADER_CODE, MC_CMD_V2_EXTN,
189 MCDI_HEADER_DATALEN, 0,
190 MCDI_HEADER_SEQ, seqno,
Daniel Pieczkod36a08b2013-06-20 11:40:07 +0100191 MCDI_HEADER_XFLAGS, xflags,
192 MCDI_HEADER_NOT_EPOCH, !mcdi->new_epoch);
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100193 EFX_POPULATE_DWORD_2(hdr[1],
194 MC_CMD_V2_EXTN_IN_EXTENDED_CMD, cmd,
195 MC_CMD_V2_EXTN_IN_ACTUAL_LEN, inlen);
196 hdr_len = 8;
197 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000198
Edward Cree75aba2a2015-05-27 13:13:54 +0100199#ifdef CONFIG_SFC_MCDI_LOGGING
Edward Creee7fef9b2015-05-27 13:14:01 +0100200 if (mcdi->logging_enabled && !WARN_ON_ONCE(!buf)) {
Edward Cree75aba2a2015-05-27 13:13:54 +0100201 int bytes = 0;
202 int i;
203 /* Lengths should always be a whole number of dwords, so scream
204 * if they're not.
205 */
206 WARN_ON_ONCE(hdr_len % 4);
207 WARN_ON_ONCE(inlen % 4);
208
209 /* We own the logging buffer, as only one MCDI can be in
210 * progress on a NIC at any one time. So no need for locking.
211 */
212 for (i = 0; i < hdr_len / 4 && bytes < PAGE_SIZE; i++)
213 bytes += snprintf(buf + bytes, PAGE_SIZE - bytes,
214 " %08x", le32_to_cpu(hdr[i].u32[0]));
215
216 for (i = 0; i < inlen / 4 && bytes < PAGE_SIZE; i++)
217 bytes += snprintf(buf + bytes, PAGE_SIZE - bytes,
218 " %08x", le32_to_cpu(inbuf[i].u32[0]));
219
220 netif_info(efx, hw, efx->net_dev, "MCDI RPC REQ:%s\n", buf);
221 }
222#endif
223
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100224 efx->type->mcdi_request(efx, hdr, hdr_len, inbuf, inlen);
Ben Hutchings2f4bcdc2013-08-22 22:06:09 +0100225
226 mcdi->new_epoch = false;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000227}
228
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100229static int efx_mcdi_errno(unsigned int mcdi_err)
230{
231 switch (mcdi_err) {
232 case 0:
233 return 0;
234#define TRANSLATE_ERROR(name) \
235 case MC_CMD_ERR_ ## name: \
236 return -name;
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100237 TRANSLATE_ERROR(EPERM);
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100238 TRANSLATE_ERROR(ENOENT);
239 TRANSLATE_ERROR(EINTR);
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100240 TRANSLATE_ERROR(EAGAIN);
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100241 TRANSLATE_ERROR(EACCES);
242 TRANSLATE_ERROR(EBUSY);
243 TRANSLATE_ERROR(EINVAL);
244 TRANSLATE_ERROR(EDEADLK);
245 TRANSLATE_ERROR(ENOSYS);
246 TRANSLATE_ERROR(ETIME);
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100247 TRANSLATE_ERROR(EALREADY);
248 TRANSLATE_ERROR(ENOSPC);
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100249#undef TRANSLATE_ERROR
Ben Hutchingsea136ae2013-10-08 16:36:58 +0100250 case MC_CMD_ERR_ENOTSUP:
251 return -EOPNOTSUPP;
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100252 case MC_CMD_ERR_ALLOC_FAIL:
253 return -ENOBUFS;
254 case MC_CMD_ERR_MAC_EXIST:
255 return -EADDRINUSE;
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100256 default:
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100257 return -EPROTO;
258 }
259}
260
261static void efx_mcdi_read_response_header(struct efx_nic *efx)
262{
263 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
264 unsigned int respseq, respcmd, error;
Edward Cree75aba2a2015-05-27 13:13:54 +0100265#ifdef CONFIG_SFC_MCDI_LOGGING
266 char *buf = mcdi->logging_buffer; /* page-sized */
267#endif
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100268 efx_dword_t hdr;
269
270 efx->type->mcdi_read_response(efx, &hdr, 0, 4);
271 respseq = EFX_DWORD_FIELD(hdr, MCDI_HEADER_SEQ);
272 respcmd = EFX_DWORD_FIELD(hdr, MCDI_HEADER_CODE);
273 error = EFX_DWORD_FIELD(hdr, MCDI_HEADER_ERROR);
274
275 if (respcmd != MC_CMD_V2_EXTN) {
276 mcdi->resp_hdr_len = 4;
277 mcdi->resp_data_len = EFX_DWORD_FIELD(hdr, MCDI_HEADER_DATALEN);
278 } else {
279 efx->type->mcdi_read_response(efx, &hdr, 4, 4);
280 mcdi->resp_hdr_len = 8;
281 mcdi->resp_data_len =
282 EFX_DWORD_FIELD(hdr, MC_CMD_V2_EXTN_IN_ACTUAL_LEN);
283 }
284
Edward Cree75aba2a2015-05-27 13:13:54 +0100285#ifdef CONFIG_SFC_MCDI_LOGGING
Edward Creee7fef9b2015-05-27 13:14:01 +0100286 if (mcdi->logging_enabled && !WARN_ON_ONCE(!buf)) {
Edward Cree75aba2a2015-05-27 13:13:54 +0100287 size_t hdr_len, data_len;
288 int bytes = 0;
289 int i;
290
291 WARN_ON_ONCE(mcdi->resp_hdr_len % 4);
292 hdr_len = mcdi->resp_hdr_len / 4;
293 /* MCDI_DECLARE_BUF ensures that underlying buffer is padded
294 * to dword size, and the MCDI buffer is always dword size
295 */
296 data_len = DIV_ROUND_UP(mcdi->resp_data_len, 4);
297
298 /* We own the logging buffer, as only one MCDI can be in
299 * progress on a NIC at any one time. So no need for locking.
300 */
301 for (i = 0; i < hdr_len && bytes < PAGE_SIZE; i++) {
302 efx->type->mcdi_read_response(efx, &hdr, (i * 4), 4);
303 bytes += snprintf(buf + bytes, PAGE_SIZE - bytes,
304 " %08x", le32_to_cpu(hdr.u32[0]));
305 }
306
307 for (i = 0; i < data_len && bytes < PAGE_SIZE; i++) {
308 efx->type->mcdi_read_response(efx, &hdr,
309 mcdi->resp_hdr_len + (i * 4), 4);
310 bytes += snprintf(buf + bytes, PAGE_SIZE - bytes,
311 " %08x", le32_to_cpu(hdr.u32[0]));
312 }
313
314 netif_info(efx, hw, efx->net_dev, "MCDI RPC RESP:%s\n", buf);
315 }
316#endif
317
Bert Kenwardac28d172015-12-23 08:56:40 +0000318 mcdi->resprc_raw = 0;
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100319 if (error && mcdi->resp_data_len == 0) {
320 netif_err(efx, hw, efx->net_dev, "MC rebooted\n");
321 mcdi->resprc = -EIO;
322 } else if ((respseq ^ mcdi->seqno) & SEQ_MASK) {
323 netif_err(efx, hw, efx->net_dev,
324 "MC response mismatch tx seq 0x%x rx seq 0x%x\n",
325 respseq, mcdi->seqno);
326 mcdi->resprc = -EIO;
327 } else if (error) {
328 efx->type->mcdi_read_response(efx, &hdr, mcdi->resp_hdr_len, 4);
Bert Kenwardac28d172015-12-23 08:56:40 +0000329 mcdi->resprc_raw = EFX_DWORD_FIELD(hdr, EFX_DWORD_0);
330 mcdi->resprc = efx_mcdi_errno(mcdi->resprc_raw);
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100331 } else {
332 mcdi->resprc = 0;
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100333 }
334}
335
Robert Stonehouse5731d7b2013-10-09 11:52:43 +0100336static bool efx_mcdi_poll_once(struct efx_nic *efx)
337{
338 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
339
340 rmb();
341 if (!efx->type->mcdi_poll_response(efx))
342 return false;
343
344 spin_lock_bh(&mcdi->iface_lock);
345 efx_mcdi_read_response_header(efx);
346 spin_unlock_bh(&mcdi->iface_lock);
347
348 return true;
349}
350
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000351static int efx_mcdi_poll(struct efx_nic *efx)
352{
353 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
Ben Hutchingsebf98e72012-12-01 02:21:17 +0000354 unsigned long time, finish;
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100355 unsigned int spins;
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100356 int rc;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000357
358 /* Check for a reboot atomically with respect to efx_mcdi_copyout() */
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100359 rc = efx_mcdi_poll_reboot(efx);
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100360 if (rc) {
Ben Hutchings369327f2012-10-26 17:53:12 +0100361 spin_lock_bh(&mcdi->iface_lock);
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100362 mcdi->resprc = rc;
363 mcdi->resp_hdr_len = 0;
364 mcdi->resp_data_len = 0;
Ben Hutchings369327f2012-10-26 17:53:12 +0100365 spin_unlock_bh(&mcdi->iface_lock);
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100366 return 0;
367 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000368
369 /* Poll for completion. Poll quickly (once a us) for the 1st jiffy,
370 * because generally mcdi responses are fast. After that, back off
371 * and poll once a jiffy (approximately)
372 */
373 spins = TICK_USEC;
Ben Hutchingsebf98e72012-12-01 02:21:17 +0000374 finish = jiffies + MCDI_RPC_TIMEOUT;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000375
376 while (1) {
377 if (spins != 0) {
378 --spins;
379 udelay(1);
Ben Hutchings55029c12010-01-13 04:34:25 +0000380 } else {
381 schedule_timeout_uninterruptible(1);
382 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000383
Ben Hutchingsebf98e72012-12-01 02:21:17 +0000384 time = jiffies;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000385
Robert Stonehouse5731d7b2013-10-09 11:52:43 +0100386 if (efx_mcdi_poll_once(efx))
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000387 break;
388
Ben Hutchingsebf98e72012-12-01 02:21:17 +0000389 if (time_after(time, finish))
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000390 return -ETIMEDOUT;
391 }
392
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000393 /* Return rc=0 like wait_event_timeout() */
394 return 0;
395}
396
Ben Hutchings876be082012-10-01 20:58:35 +0100397/* Test and clear MC-rebooted flag for this port/function; reset
398 * software state as necessary.
399 */
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000400int efx_mcdi_poll_reboot(struct efx_nic *efx)
401{
Ben Hutchingsf3ad5002012-09-18 02:33:56 +0100402 if (!efx->mcdi)
403 return 0;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000404
Ben Hutchingscd0ecc92012-12-14 21:52:56 +0000405 return efx->type->mcdi_poll_reboot(efx);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000406}
407
Ben Hutchingscade7152013-08-27 23:12:31 +0100408static bool efx_mcdi_acquire_async(struct efx_mcdi_iface *mcdi)
409{
410 return cmpxchg(&mcdi->state,
411 MCDI_STATE_QUIESCENT, MCDI_STATE_RUNNING_ASYNC) ==
412 MCDI_STATE_QUIESCENT;
413}
414
415static void efx_mcdi_acquire_sync(struct efx_mcdi_iface *mcdi)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000416{
417 /* Wait until the interface becomes QUIESCENT and we win the race
Ben Hutchingscade7152013-08-27 23:12:31 +0100418 * to mark it RUNNING_SYNC.
419 */
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000420 wait_event(mcdi->wq,
Ben Hutchings251111d2013-08-27 23:04:29 +0100421 cmpxchg(&mcdi->state,
Ben Hutchingscade7152013-08-27 23:12:31 +0100422 MCDI_STATE_QUIESCENT, MCDI_STATE_RUNNING_SYNC) ==
Ben Hutchings251111d2013-08-27 23:04:29 +0100423 MCDI_STATE_QUIESCENT);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000424}
425
426static int efx_mcdi_await_completion(struct efx_nic *efx)
427{
428 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
429
Ben Hutchings251111d2013-08-27 23:04:29 +0100430 if (wait_event_timeout(mcdi->wq, mcdi->state == MCDI_STATE_COMPLETED,
431 MCDI_RPC_TIMEOUT) == 0)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000432 return -ETIMEDOUT;
433
434 /* Check if efx_mcdi_set_mode() switched us back to polled completions.
435 * In which case, poll for completions directly. If efx_mcdi_ev_cpl()
436 * completed the request first, then we'll just end up completing the
437 * request again, which is safe.
438 *
439 * We need an smp_rmb() to synchronise with efx_mcdi_mode_poll(), which
440 * wait_event_timeout() implicitly provides.
441 */
442 if (mcdi->mode == MCDI_MODE_POLL)
443 return efx_mcdi_poll(efx);
444
445 return 0;
446}
447
Ben Hutchingscade7152013-08-27 23:12:31 +0100448/* If the interface is RUNNING_SYNC, switch to COMPLETED and wake the
449 * requester. Return whether this was done. Does not take any locks.
450 */
451static bool efx_mcdi_complete_sync(struct efx_mcdi_iface *mcdi)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000452{
Ben Hutchingscade7152013-08-27 23:12:31 +0100453 if (cmpxchg(&mcdi->state,
454 MCDI_STATE_RUNNING_SYNC, MCDI_STATE_COMPLETED) ==
455 MCDI_STATE_RUNNING_SYNC) {
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000456 wake_up(&mcdi->wq);
457 return true;
458 }
459
460 return false;
461}
462
463static void efx_mcdi_release(struct efx_mcdi_iface *mcdi)
464{
Ben Hutchingscade7152013-08-27 23:12:31 +0100465 if (mcdi->mode == MCDI_MODE_EVENTS) {
466 struct efx_mcdi_async_param *async;
467 struct efx_nic *efx = mcdi->efx;
468
469 /* Process the asynchronous request queue */
470 spin_lock_bh(&mcdi->async_lock);
471 async = list_first_entry_or_null(
472 &mcdi->async_list, struct efx_mcdi_async_param, list);
473 if (async) {
474 mcdi->state = MCDI_STATE_RUNNING_ASYNC;
475 efx_mcdi_send_request(efx, async->cmd,
476 (const efx_dword_t *)(async + 1),
477 async->inlen);
478 mod_timer(&mcdi->async_timer,
479 jiffies + MCDI_RPC_TIMEOUT);
480 }
481 spin_unlock_bh(&mcdi->async_lock);
482
483 if (async)
484 return;
485 }
486
Ben Hutchings251111d2013-08-27 23:04:29 +0100487 mcdi->state = MCDI_STATE_QUIESCENT;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000488 wake_up(&mcdi->wq);
489}
490
Ben Hutchingscade7152013-08-27 23:12:31 +0100491/* If the interface is RUNNING_ASYNC, switch to COMPLETED, call the
492 * asynchronous completion function, and release the interface.
493 * Return whether this was done. Must be called in bh-disabled
494 * context. Will take iface_lock and async_lock.
495 */
496static bool efx_mcdi_complete_async(struct efx_mcdi_iface *mcdi, bool timeout)
497{
498 struct efx_nic *efx = mcdi->efx;
499 struct efx_mcdi_async_param *async;
Edward Cree1e0b8122013-05-31 18:36:12 +0100500 size_t hdr_len, data_len, err_len;
Ben Hutchingscade7152013-08-27 23:12:31 +0100501 efx_dword_t *outbuf;
Jon Cooperaa09a3d2015-05-20 11:10:41 +0100502 MCDI_DECLARE_BUF_ERR(errbuf);
Ben Hutchingscade7152013-08-27 23:12:31 +0100503 int rc;
504
505 if (cmpxchg(&mcdi->state,
506 MCDI_STATE_RUNNING_ASYNC, MCDI_STATE_COMPLETED) !=
507 MCDI_STATE_RUNNING_ASYNC)
508 return false;
509
510 spin_lock(&mcdi->iface_lock);
511 if (timeout) {
512 /* Ensure that if the completion event arrives later,
513 * the seqno check in efx_mcdi_ev_cpl() will fail
514 */
515 ++mcdi->seqno;
516 ++mcdi->credits;
517 rc = -ETIMEDOUT;
518 hdr_len = 0;
519 data_len = 0;
520 } else {
521 rc = mcdi->resprc;
522 hdr_len = mcdi->resp_hdr_len;
523 data_len = mcdi->resp_data_len;
524 }
525 spin_unlock(&mcdi->iface_lock);
526
527 /* Stop the timer. In case the timer function is running, we
528 * must wait for it to return so that there is no possibility
529 * of it aborting the next request.
530 */
531 if (!timeout)
532 del_timer_sync(&mcdi->async_timer);
533
534 spin_lock(&mcdi->async_lock);
535 async = list_first_entry(&mcdi->async_list,
536 struct efx_mcdi_async_param, list);
537 list_del(&async->list);
538 spin_unlock(&mcdi->async_lock);
539
540 outbuf = (efx_dword_t *)(async + 1);
541 efx->type->mcdi_read_response(efx, outbuf, hdr_len,
542 min(async->outlen, data_len));
Edward Cree1e0b8122013-05-31 18:36:12 +0100543 if (!timeout && rc && !async->quiet) {
544 err_len = min(sizeof(errbuf), data_len);
545 efx->type->mcdi_read_response(efx, errbuf, hdr_len,
546 sizeof(errbuf));
547 efx_mcdi_display_error(efx, async->cmd, async->inlen, errbuf,
548 err_len, rc);
549 }
Bert Kenward7014d7f2016-08-11 13:01:21 +0100550
551 if (async->complete)
552 async->complete(efx, async->cookie, rc, outbuf,
553 min(async->outlen, data_len));
Ben Hutchingscade7152013-08-27 23:12:31 +0100554 kfree(async);
555
556 efx_mcdi_release(mcdi);
557
558 return true;
559}
560
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000561static void efx_mcdi_ev_cpl(struct efx_nic *efx, unsigned int seqno,
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100562 unsigned int datalen, unsigned int mcdi_err)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000563{
564 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
565 bool wake = false;
566
567 spin_lock(&mcdi->iface_lock);
568
569 if ((seqno ^ mcdi->seqno) & SEQ_MASK) {
570 if (mcdi->credits)
571 /* The request has been cancelled */
572 --mcdi->credits;
573 else
Ben Hutchings62776d02010-06-23 11:30:07 +0000574 netif_err(efx, hw, efx->net_dev,
575 "MC response mismatch tx seq 0x%x rx "
576 "seq 0x%x\n", seqno, mcdi->seqno);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000577 } else {
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +0100578 if (efx->type->mcdi_max_ver >= 2) {
579 /* MCDI v2 responses don't fit in an event */
580 efx_mcdi_read_response_header(efx);
581 } else {
582 mcdi->resprc = efx_mcdi_errno(mcdi_err);
583 mcdi->resp_hdr_len = 4;
584 mcdi->resp_data_len = datalen;
585 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000586
587 wake = true;
588 }
589
590 spin_unlock(&mcdi->iface_lock);
591
Ben Hutchingscade7152013-08-27 23:12:31 +0100592 if (wake) {
593 if (!efx_mcdi_complete_async(mcdi, false))
594 (void) efx_mcdi_complete_sync(mcdi);
595
596 /* If the interface isn't RUNNING_ASYNC or
597 * RUNNING_SYNC then we've received a duplicate
598 * completion after we've already transitioned back to
599 * QUIESCENT. [A subsequent invocation would increment
600 * seqno, so would have failed the seqno check].
601 */
602 }
603}
604
605static void efx_mcdi_timeout_async(unsigned long context)
606{
607 struct efx_mcdi_iface *mcdi = (struct efx_mcdi_iface *)context;
608
609 efx_mcdi_complete_async(mcdi, true);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000610}
611
Ben Hutchings2f4bcdc2013-08-22 22:06:09 +0100612static int
613efx_mcdi_check_supported(struct efx_nic *efx, unsigned int cmd, size_t inlen)
614{
615 if (efx->type->mcdi_max_ver < 0 ||
616 (efx->type->mcdi_max_ver < 2 &&
617 cmd > MC_CMD_CMD_SPACE_ESCAPE_7))
618 return -EINVAL;
619
620 if (inlen > MCDI_CTL_SDU_LEN_MAX_V2 ||
621 (efx->type->mcdi_max_ver < 2 &&
622 inlen > MCDI_CTL_SDU_LEN_MAX_V1))
623 return -EMSGSIZE;
624
625 return 0;
626}
627
Bert Kenwardacd43a92015-12-23 08:57:18 +0000628static bool efx_mcdi_get_proxy_handle(struct efx_nic *efx,
629 size_t hdr_len, size_t data_len,
630 u32 *proxy_handle)
631{
632 MCDI_DECLARE_BUF_ERR(testbuf);
633 const size_t buflen = sizeof(testbuf);
634
635 if (!proxy_handle || data_len < buflen)
636 return false;
637
638 efx->type->mcdi_read_response(efx, testbuf, hdr_len, buflen);
639 if (MCDI_DWORD(testbuf, ERR_CODE) == MC_CMD_ERR_PROXY_PENDING) {
640 *proxy_handle = MCDI_DWORD(testbuf, ERR_PROXY_PENDING_HANDLE);
641 return true;
642 }
643
644 return false;
645}
646
647static int _efx_mcdi_rpc_finish(struct efx_nic *efx, unsigned int cmd,
648 size_t inlen,
Edward Cree1e0b8122013-05-31 18:36:12 +0100649 efx_dword_t *outbuf, size_t outlen,
Bert Kenwardac28d172015-12-23 08:56:40 +0000650 size_t *outlen_actual, bool quiet,
Bert Kenwardacd43a92015-12-23 08:57:18 +0000651 u32 *proxy_handle, int *raw_rc)
Stuart Hodgsonc3cba722012-07-16 17:40:47 +0100652{
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000653 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
Jon Cooperaa09a3d2015-05-20 11:10:41 +0100654 MCDI_DECLARE_BUF_ERR(errbuf);
Stuart Hodgsonc3cba722012-07-16 17:40:47 +0100655 int rc;
656
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000657 if (mcdi->mode == MCDI_MODE_POLL)
658 rc = efx_mcdi_poll(efx);
659 else
660 rc = efx_mcdi_await_completion(efx);
661
662 if (rc != 0) {
Robert Stonehouse6b294b82013-10-09 11:52:48 +0100663 netif_err(efx, hw, efx->net_dev,
664 "MC command 0x%x inlen %d mode %d timed out\n",
665 cmd, (int)inlen, mcdi->mode);
666
667 if (mcdi->mode == MCDI_MODE_EVENTS && efx_mcdi_poll_once(efx)) {
668 netif_err(efx, hw, efx->net_dev,
669 "MCDI request was completed without an event\n");
670 rc = 0;
671 }
672
Edward Creee2835462014-04-16 19:27:48 +0100673 efx_mcdi_abandon(efx);
674
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000675 /* Close the race with efx_mcdi_ev_cpl() executing just too late
676 * and completing a request we've just cancelled, by ensuring
677 * that the seqno check therein fails.
678 */
679 spin_lock_bh(&mcdi->iface_lock);
680 ++mcdi->seqno;
681 ++mcdi->credits;
682 spin_unlock_bh(&mcdi->iface_lock);
Robert Stonehouse6b294b82013-10-09 11:52:48 +0100683 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000684
Bert Kenwardacd43a92015-12-23 08:57:18 +0000685 if (proxy_handle)
686 *proxy_handle = 0;
687
Edward Cree1e0b8122013-05-31 18:36:12 +0100688 if (rc != 0) {
689 if (outlen_actual)
690 *outlen_actual = 0;
691 } else {
692 size_t hdr_len, data_len, err_len;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000693
694 /* At the very least we need a memory barrier here to ensure
695 * we pick up changes from efx_mcdi_ev_cpl(). Protect against
696 * a spurious efx_mcdi_ev_cpl() running concurrently by
697 * acquiring the iface_lock. */
698 spin_lock_bh(&mcdi->iface_lock);
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100699 rc = mcdi->resprc;
Bert Kenwardac28d172015-12-23 08:56:40 +0000700 if (raw_rc)
701 *raw_rc = mcdi->resprc_raw;
Ben Hutchings369327f2012-10-26 17:53:12 +0100702 hdr_len = mcdi->resp_hdr_len;
703 data_len = mcdi->resp_data_len;
Edward Cree1e0b8122013-05-31 18:36:12 +0100704 err_len = min(sizeof(errbuf), data_len);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000705 spin_unlock_bh(&mcdi->iface_lock);
706
Ben Hutchings5bc283e2012-10-08 21:43:00 +0100707 BUG_ON(rc > 0);
708
Edward Cree1e0b8122013-05-31 18:36:12 +0100709 efx->type->mcdi_read_response(efx, outbuf, hdr_len,
710 min(outlen, data_len));
711 if (outlen_actual)
712 *outlen_actual = data_len;
713
714 efx->type->mcdi_read_response(efx, errbuf, hdr_len, err_len);
715
716 if (cmd == MC_CMD_REBOOT && rc == -EIO) {
717 /* Don't reset if MC_CMD_REBOOT returns EIO */
718 } else if (rc == -EIO || rc == -EINTR) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000719 netif_err(efx, hw, efx->net_dev, "MC fatal error %d\n",
720 -rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000721 efx_schedule_reset(efx, RESET_TYPE_MC_FAILURE);
Bert Kenwardacd43a92015-12-23 08:57:18 +0000722 } else if (proxy_handle && (rc == -EPROTO) &&
723 efx_mcdi_get_proxy_handle(efx, hdr_len, data_len,
724 proxy_handle)) {
725 mcdi->proxy_rx_status = 0;
726 mcdi->proxy_rx_handle = 0;
727 mcdi->state = MCDI_STATE_PROXY_WAIT;
Edward Cree1e0b8122013-05-31 18:36:12 +0100728 } else if (rc && !quiet) {
729 efx_mcdi_display_error(efx, cmd, inlen, errbuf, err_len,
730 rc);
731 }
Ben Hutchings3f713bf2011-12-20 23:39:31 +0000732
733 if (rc == -EIO || rc == -EINTR) {
734 msleep(MCDI_STATUS_SLEEP_MS);
735 efx_mcdi_poll_reboot(efx);
Daniel Pieczkod36a08b2013-06-20 11:40:07 +0100736 mcdi->new_epoch = true;
Ben Hutchings3f713bf2011-12-20 23:39:31 +0000737 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000738 }
739
Bert Kenwardacd43a92015-12-23 08:57:18 +0000740 if (!proxy_handle || !*proxy_handle)
741 efx_mcdi_release(mcdi);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +0000742 return rc;
743}
744
Bert Kenwardacd43a92015-12-23 08:57:18 +0000745static void efx_mcdi_proxy_abort(struct efx_mcdi_iface *mcdi)
746{
747 if (mcdi->state == MCDI_STATE_PROXY_WAIT) {
748 /* Interrupt the proxy wait. */
749 mcdi->proxy_rx_status = -EINTR;
750 wake_up(&mcdi->proxy_rx_wq);
751 }
752}
753
754static void efx_mcdi_ev_proxy_response(struct efx_nic *efx,
755 u32 handle, int status)
756{
757 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
758
759 WARN_ON(mcdi->state != MCDI_STATE_PROXY_WAIT);
760
761 mcdi->proxy_rx_status = efx_mcdi_errno(status);
762 /* Ensure the status is written before we update the handle, since the
763 * latter is used to check if we've finished.
764 */
765 wmb();
766 mcdi->proxy_rx_handle = handle;
767 wake_up(&mcdi->proxy_rx_wq);
768}
769
770static int efx_mcdi_proxy_wait(struct efx_nic *efx, u32 handle, bool quiet)
771{
772 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
773 int rc;
774
775 /* Wait for a proxy event, or timeout. */
776 rc = wait_event_timeout(mcdi->proxy_rx_wq,
777 mcdi->proxy_rx_handle != 0 ||
778 mcdi->proxy_rx_status == -EINTR,
779 MCDI_RPC_TIMEOUT);
780
781 if (rc <= 0) {
782 netif_dbg(efx, hw, efx->net_dev,
783 "MCDI proxy timeout %d\n", handle);
784 return -ETIMEDOUT;
785 } else if (mcdi->proxy_rx_handle != handle) {
786 netif_warn(efx, hw, efx->net_dev,
787 "MCDI proxy unexpected handle %d (expected %d)\n",
788 mcdi->proxy_rx_handle, handle);
789 return -EINVAL;
790 }
791
792 return mcdi->proxy_rx_status;
793}
794
795static int _efx_mcdi_rpc(struct efx_nic *efx, unsigned int cmd,
Edward Cree1e0b8122013-05-31 18:36:12 +0100796 const efx_dword_t *inbuf, size_t inlen,
797 efx_dword_t *outbuf, size_t outlen,
Bert Kenwardac28d172015-12-23 08:56:40 +0000798 size_t *outlen_actual, bool quiet, int *raw_rc)
Edward Cree1e0b8122013-05-31 18:36:12 +0100799{
Bert Kenwardacd43a92015-12-23 08:57:18 +0000800 u32 proxy_handle = 0; /* Zero is an invalid proxy handle. */
Edward Cree1e0b8122013-05-31 18:36:12 +0100801 int rc;
802
Bert Kenwardacd43a92015-12-23 08:57:18 +0000803 if (inbuf && inlen && (inbuf == outbuf)) {
804 /* The input buffer can't be aliased with the output. */
805 WARN_ON(1);
806 return -EINVAL;
807 }
808
Edward Cree1e0b8122013-05-31 18:36:12 +0100809 rc = efx_mcdi_rpc_start(efx, cmd, inbuf, inlen);
Bert Kenwardac28d172015-12-23 08:56:40 +0000810 if (rc)
Edward Cree1e0b8122013-05-31 18:36:12 +0100811 return rc;
Bert Kenwardac28d172015-12-23 08:56:40 +0000812
Bert Kenwardacd43a92015-12-23 08:57:18 +0000813 rc = _efx_mcdi_rpc_finish(efx, cmd, inlen, outbuf, outlen,
814 outlen_actual, quiet, &proxy_handle, raw_rc);
815
816 if (proxy_handle) {
817 /* Handle proxy authorisation. This allows approval of MCDI
818 * operations to be delegated to the admin function, allowing
819 * fine control over (eg) multicast subscriptions.
820 */
821 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
822
823 netif_dbg(efx, hw, efx->net_dev,
824 "MCDI waiting for proxy auth %d\n",
825 proxy_handle);
826 rc = efx_mcdi_proxy_wait(efx, proxy_handle, quiet);
827
828 if (rc == 0) {
829 netif_dbg(efx, hw, efx->net_dev,
830 "MCDI proxy retry %d\n", proxy_handle);
831
832 /* We now retry the original request. */
833 mcdi->state = MCDI_STATE_RUNNING_SYNC;
834 efx_mcdi_send_request(efx, cmd, inbuf, inlen);
835
836 rc = _efx_mcdi_rpc_finish(efx, cmd, inlen,
837 outbuf, outlen, outlen_actual,
838 quiet, NULL, raw_rc);
839 } else {
Jon Cooper34e7aef2017-01-27 15:02:39 +0000840 netif_cond_dbg(efx, hw, efx->net_dev, rc == -EPERM, err,
841 "MC command 0x%x failed after proxy auth rc=%d\n",
842 cmd, rc);
Bert Kenwardacd43a92015-12-23 08:57:18 +0000843
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);
Jon Cooper34e7aef2017-01-27 15:02:39 +00001085 netif_cond_dbg(efx, hw, efx->net_dev, rc == -EPERM, err,
1086 "MC command 0x%x inlen %zu failed rc=%d (raw=%d) arg=%d\n",
1087 cmd, inlen, rc, code, err_arg);
Edward Cree1e0b8122013-05-31 18:36:12 +01001088}
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) {
Bert Kenward429baa62016-09-22 15:47:45 +01001155 if (async->complete)
1156 async->complete(efx, async->cookie, -ENETDOWN, NULL, 0);
Ben Hutchingscade7152013-08-27 23:12:31 +01001157 list_del(&async->list);
1158 kfree(async);
1159 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001160}
1161
1162void efx_mcdi_mode_event(struct efx_nic *efx)
1163{
1164 struct efx_mcdi_iface *mcdi;
1165
Ben Hutchingsf3ad5002012-09-18 02:33:56 +01001166 if (!efx->mcdi)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001167 return;
1168
1169 mcdi = efx_mcdi(efx);
Edward Creee2835462014-04-16 19:27:48 +01001170 /* If already in event completion mode, nothing to do.
1171 * If in fail-fast state, don't switch to event completion. FLR
1172 * recovery will do that later.
1173 */
1174 if (mcdi->mode == MCDI_MODE_EVENTS || mcdi->mode == MCDI_MODE_FAIL)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001175 return;
1176
1177 /* We can't switch from polled to event completion in the middle of a
1178 * request, because the completion method is specified in the request.
1179 * So acquire the interface to serialise the requestors. We don't need
1180 * to acquire the iface_lock to change the mode here, but we do need a
1181 * write memory barrier ensure that efx_mcdi_rpc() sees it, which
1182 * efx_mcdi_acquire() provides.
1183 */
Ben Hutchingscade7152013-08-27 23:12:31 +01001184 efx_mcdi_acquire_sync(mcdi);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001185 mcdi->mode = MCDI_MODE_EVENTS;
1186 efx_mcdi_release(mcdi);
1187}
1188
1189static void efx_mcdi_ev_death(struct efx_nic *efx, int rc)
1190{
1191 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
1192
1193 /* If there is an outstanding MCDI request, it has been terminated
1194 * either by a BADASSERT or REBOOT event. If the mcdi interface is
1195 * in polled mode, then do nothing because the MC reboot handler will
1196 * set the header correctly. However, if the mcdi interface is waiting
1197 * for a CMDDONE event it won't receive it [and since all MCDI events
1198 * are sent to the same queue, we can't be racing with
1199 * efx_mcdi_ev_cpl()]
1200 *
Ben Hutchingscade7152013-08-27 23:12:31 +01001201 * If there is an outstanding asynchronous request, we can't
1202 * complete it now (efx_mcdi_complete() would deadlock). The
1203 * reset process will take care of this.
1204 *
1205 * There's a race here with efx_mcdi_send_request(), because
1206 * we might receive a REBOOT event *before* the request has
1207 * been copied out. In polled mode (during startup) this is
1208 * irrelevant, because efx_mcdi_complete_sync() is ignored. In
1209 * event mode, this condition is just an edge-case of
1210 * receiving a REBOOT event after posting the MCDI
1211 * request. Did the mc reboot before or after the copyout? The
1212 * best we can do always is just return failure.
Bert Kenwardacd43a92015-12-23 08:57:18 +00001213 *
1214 * If there is an outstanding proxy response expected it is not going
1215 * to arrive. We should thus abort it.
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001216 */
1217 spin_lock(&mcdi->iface_lock);
Bert Kenwardacd43a92015-12-23 08:57:18 +00001218 efx_mcdi_proxy_abort(mcdi);
1219
Ben Hutchingscade7152013-08-27 23:12:31 +01001220 if (efx_mcdi_complete_sync(mcdi)) {
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001221 if (mcdi->mode == MCDI_MODE_EVENTS) {
1222 mcdi->resprc = rc;
Ben Hutchingsdf2cd8a2012-09-19 00:56:18 +01001223 mcdi->resp_hdr_len = 0;
1224 mcdi->resp_data_len = 0;
Steve Hodgson18e3ee22010-12-02 13:46:55 +00001225 ++mcdi->credits;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001226 }
Ben Hutchings3f713bf2011-12-20 23:39:31 +00001227 } else {
1228 int count;
1229
Ben Hutchings3f713bf2011-12-20 23:39:31 +00001230 /* Consume the status word since efx_mcdi_rpc_finish() won't */
1231 for (count = 0; count < MCDI_STATUS_DELAY_COUNT; ++count) {
Daniel Pieczkoc577e592015-10-09 10:40:35 +01001232 rc = efx_mcdi_poll_reboot(efx);
1233 if (rc)
Ben Hutchings3f713bf2011-12-20 23:39:31 +00001234 break;
1235 udelay(MCDI_STATUS_DELAY_US);
1236 }
Daniel Pieczkoc577e592015-10-09 10:40:35 +01001237
1238 /* On EF10, a CODE_MC_REBOOT event can be received without the
1239 * reboot detection in efx_mcdi_poll_reboot() being triggered.
1240 * If zero was returned from the final call to
1241 * efx_mcdi_poll_reboot(), the MC reboot wasn't noticed but the
1242 * MC has definitely rebooted so prepare for the reset.
1243 */
1244 if (!rc && efx->type->mcdi_reboot_detected)
1245 efx->type->mcdi_reboot_detected(efx);
1246
Daniel Pieczkod36a08b2013-06-20 11:40:07 +01001247 mcdi->new_epoch = true;
Daniel Pieczkodfdaa952013-09-18 10:16:24 +01001248
1249 /* Nobody was waiting for an MCDI request, so trigger a reset */
1250 efx_schedule_reset(efx, RESET_TYPE_MC_FAILURE);
Ben Hutchings3f713bf2011-12-20 23:39:31 +00001251 }
1252
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001253 spin_unlock(&mcdi->iface_lock);
1254}
1255
Jon Cooper74cd60a2013-09-16 14:18:51 +01001256/* The MC is going down in to BIST mode. set the BIST flag to block
1257 * new MCDI, cancel any outstanding MCDI and and schedule a BIST-type reset
1258 * (which doesn't actually execute a reset, it waits for the controlling
1259 * function to reset it).
1260 */
1261static void efx_mcdi_ev_bist(struct efx_nic *efx)
1262{
1263 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
1264
1265 spin_lock(&mcdi->iface_lock);
1266 efx->mc_bist_for_other_fn = true;
Bert Kenwardacd43a92015-12-23 08:57:18 +00001267 efx_mcdi_proxy_abort(mcdi);
1268
Jon Cooper74cd60a2013-09-16 14:18:51 +01001269 if (efx_mcdi_complete_sync(mcdi)) {
1270 if (mcdi->mode == MCDI_MODE_EVENTS) {
1271 mcdi->resprc = -EIO;
1272 mcdi->resp_hdr_len = 0;
1273 mcdi->resp_data_len = 0;
1274 ++mcdi->credits;
1275 }
1276 }
1277 mcdi->new_epoch = true;
1278 efx_schedule_reset(efx, RESET_TYPE_MC_BIST);
1279 spin_unlock(&mcdi->iface_lock);
1280}
1281
Edward Creee2835462014-04-16 19:27:48 +01001282/* MCDI timeouts seen, so make all MCDI calls fail-fast and issue an FLR to try
1283 * to recover.
1284 */
1285static void efx_mcdi_abandon(struct efx_nic *efx)
1286{
1287 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
1288
1289 if (xchg(&mcdi->mode, MCDI_MODE_FAIL) == MCDI_MODE_FAIL)
1290 return; /* it had already been done */
1291 netif_dbg(efx, hw, efx->net_dev, "MCDI is timing out; trying to recover\n");
1292 efx_schedule_reset(efx, RESET_TYPE_MCDI_TIMEOUT);
1293}
1294
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001295/* Called from falcon_process_eventq for MCDI events */
1296void efx_mcdi_process_event(struct efx_channel *channel,
1297 efx_qword_t *event)
1298{
1299 struct efx_nic *efx = channel->efx;
1300 int code = EFX_QWORD_FIELD(*event, MCDI_EVENT_CODE);
1301 u32 data = EFX_QWORD_FIELD(*event, MCDI_EVENT_DATA);
1302
1303 switch (code) {
1304 case MCDI_EVENT_CODE_BADSSERT:
Ben Hutchings62776d02010-06-23 11:30:07 +00001305 netif_err(efx, hw, efx->net_dev,
1306 "MC watchdog or assertion failure at 0x%x\n", data);
Ben Hutchings5bc283e2012-10-08 21:43:00 +01001307 efx_mcdi_ev_death(efx, -EINTR);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001308 break;
1309
1310 case MCDI_EVENT_CODE_PMNOTICE:
Ben Hutchings62776d02010-06-23 11:30:07 +00001311 netif_info(efx, wol, efx->net_dev, "MCDI PM event.\n");
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001312 break;
1313
1314 case MCDI_EVENT_CODE_CMDDONE:
1315 efx_mcdi_ev_cpl(efx,
1316 MCDI_EVENT_FIELD(*event, CMDDONE_SEQ),
1317 MCDI_EVENT_FIELD(*event, CMDDONE_DATALEN),
1318 MCDI_EVENT_FIELD(*event, CMDDONE_ERRNO));
1319 break;
1320
1321 case MCDI_EVENT_CODE_LINKCHANGE:
1322 efx_mcdi_process_link_change(efx, event);
1323 break;
1324 case MCDI_EVENT_CODE_SENSOREVT:
1325 efx_mcdi_sensor_event(efx, event);
1326 break;
1327 case MCDI_EVENT_CODE_SCHEDERR:
Robert Stonehouse2d9955b2013-10-07 18:44:17 +01001328 netif_dbg(efx, hw, efx->net_dev,
1329 "MC Scheduler alert (0x%x)\n", data);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001330 break;
1331 case MCDI_EVENT_CODE_REBOOT:
Ben Hutchings8127d662013-08-29 19:19:29 +01001332 case MCDI_EVENT_CODE_MC_REBOOT:
Ben Hutchings62776d02010-06-23 11:30:07 +00001333 netif_info(efx, hw, efx->net_dev, "MC Reboot\n");
Ben Hutchings5bc283e2012-10-08 21:43:00 +01001334 efx_mcdi_ev_death(efx, -EIO);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001335 break;
Jon Cooper74cd60a2013-09-16 14:18:51 +01001336 case MCDI_EVENT_CODE_MC_BIST:
1337 netif_info(efx, hw, efx->net_dev, "MC entered BIST mode\n");
1338 efx_mcdi_ev_bist(efx);
1339 break;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001340 case MCDI_EVENT_CODE_MAC_STATS_DMA:
1341 /* MAC stats are gather lazily. We can ignore this. */
1342 break;
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001343 case MCDI_EVENT_CODE_FLR:
Shradha Shah7fa8d542015-05-06 00:55:13 +01001344 if (efx->type->sriov_flr)
1345 efx->type->sriov_flr(efx,
1346 MCDI_EVENT_FIELD(*event, FLR_VF));
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001347 break;
Stuart Hodgson7c236c42012-09-03 11:09:36 +01001348 case MCDI_EVENT_CODE_PTP_RX:
1349 case MCDI_EVENT_CODE_PTP_FAULT:
1350 case MCDI_EVENT_CODE_PTP_PPS:
1351 efx_ptp_event(efx, event);
1352 break;
Jon Cooperbd9a2652013-11-18 12:54:41 +00001353 case MCDI_EVENT_CODE_PTP_TIME:
1354 efx_time_sync_event(channel, event);
1355 break;
Ben Hutchings8127d662013-08-29 19:19:29 +01001356 case MCDI_EVENT_CODE_TX_FLUSH:
1357 case MCDI_EVENT_CODE_RX_FLUSH:
1358 /* Two flush events will be sent: one to the same event
1359 * queue as completions, and one to event queue 0.
1360 * In the latter case the {RX,TX}_FLUSH_TO_DRIVER
1361 * flag will be set, and we should ignore the event
1362 * because we want to wait for all completions.
1363 */
1364 BUILD_BUG_ON(MCDI_EVENT_TX_FLUSH_TO_DRIVER_LBN !=
1365 MCDI_EVENT_RX_FLUSH_TO_DRIVER_LBN);
1366 if (!MCDI_EVENT_FIELD(*event, TX_FLUSH_TO_DRIVER))
1367 efx_ef10_handle_drain_event(efx);
1368 break;
Alexandre Rames3de82b92013-06-13 11:36:15 +01001369 case MCDI_EVENT_CODE_TX_ERR:
1370 case MCDI_EVENT_CODE_RX_ERR:
1371 netif_err(efx, hw, efx->net_dev,
1372 "%s DMA error (event: "EFX_QWORD_FMT")\n",
1373 code == MCDI_EVENT_CODE_TX_ERR ? "TX" : "RX",
1374 EFX_QWORD_VAL(*event));
1375 efx_schedule_reset(efx, RESET_TYPE_DMA_ERROR);
1376 break;
Bert Kenwardacd43a92015-12-23 08:57:18 +00001377 case MCDI_EVENT_CODE_PROXY_RESPONSE:
1378 efx_mcdi_ev_proxy_response(efx,
1379 MCDI_EVENT_FIELD(*event, PROXY_RESPONSE_HANDLE),
1380 MCDI_EVENT_FIELD(*event, PROXY_RESPONSE_RC));
1381 break;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001382 default:
Ben Hutchings62776d02010-06-23 11:30:07 +00001383 netif_err(efx, hw, efx->net_dev, "Unknown MCDI event 0x%x\n",
1384 code);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001385 }
1386}
1387
1388/**************************************************************************
1389 *
1390 * Specific request functions
1391 *
1392 **************************************************************************
1393 */
1394
Ben Hutchingse5f0fd22011-02-24 23:57:47 +00001395void efx_mcdi_print_fwver(struct efx_nic *efx, char *buf, size_t len)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001396{
Daniel Pieczko8d9f9dd2015-05-06 00:56:55 +01001397 MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_VERSION_OUT_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001398 size_t outlength;
1399 const __le16 *ver_words;
Ben Hutchings8127d662013-08-29 19:19:29 +01001400 size_t offset;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001401 int rc;
1402
1403 BUILD_BUG_ON(MC_CMD_GET_VERSION_IN_LEN != 0);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001404 rc = efx_mcdi_rpc(efx, MC_CMD_GET_VERSION, NULL, 0,
1405 outbuf, sizeof(outbuf), &outlength);
1406 if (rc)
1407 goto fail;
Ben Hutchings05a93202011-12-20 00:44:06 +00001408 if (outlength < MC_CMD_GET_VERSION_OUT_LEN) {
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001409 rc = -EIO;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001410 goto fail;
1411 }
1412
1413 ver_words = (__le16 *)MCDI_PTR(outbuf, GET_VERSION_OUT_VERSION);
Ben Hutchings8127d662013-08-29 19:19:29 +01001414 offset = snprintf(buf, len, "%u.%u.%u.%u",
1415 le16_to_cpu(ver_words[0]), le16_to_cpu(ver_words[1]),
1416 le16_to_cpu(ver_words[2]), le16_to_cpu(ver_words[3]));
1417
1418 /* EF10 may have multiple datapath firmware variants within a
1419 * single version. Report which variants are running.
1420 */
1421 if (efx_nic_rev(efx) >= EFX_REV_HUNT_A0) {
Daniel Pieczko8d9f9dd2015-05-06 00:56:55 +01001422 struct efx_ef10_nic_data *nic_data = efx->nic_data;
1423
1424 offset += snprintf(buf + offset, len - offset, " rx%x tx%x",
1425 nic_data->rx_dpcpu_fw_id,
1426 nic_data->tx_dpcpu_fw_id);
Ben Hutchings8127d662013-08-29 19:19:29 +01001427
1428 /* It's theoretically possible for the string to exceed 31
1429 * characters, though in practice the first three version
1430 * components are short enough that this doesn't happen.
1431 */
1432 if (WARN_ON(offset >= len))
1433 buf[0] = 0;
1434 }
1435
Ben Hutchingse5f0fd22011-02-24 23:57:47 +00001436 return;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001437
1438fail:
Ben Hutchings62776d02010-06-23 11:30:07 +00001439 netif_err(efx, probe, efx->net_dev, "%s: failed rc=%d\n", __func__, rc);
Ben Hutchingse5f0fd22011-02-24 23:57:47 +00001440 buf[0] = 0;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001441}
1442
Ben Hutchings4c75b43a2013-08-29 19:04:03 +01001443static int efx_mcdi_drv_attach(struct efx_nic *efx, bool driver_operating,
1444 bool *was_attached)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001445{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001446 MCDI_DECLARE_BUF(inbuf, MC_CMD_DRV_ATTACH_IN_LEN);
Ben Hutchingsecb1c9c2013-10-07 20:10:11 +01001447 MCDI_DECLARE_BUF(outbuf, MC_CMD_DRV_ATTACH_EXT_OUT_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001448 size_t outlen;
1449 int rc;
1450
1451 MCDI_SET_DWORD(inbuf, DRV_ATTACH_IN_NEW_STATE,
1452 driver_operating ? 1 : 0);
1453 MCDI_SET_DWORD(inbuf, DRV_ATTACH_IN_UPDATE, 1);
Ben Hutchingsf2b0bef2013-08-20 20:35:50 +01001454 MCDI_SET_DWORD(inbuf, DRV_ATTACH_IN_FIRMWARE_ID, MC_CMD_FW_LOW_LATENCY);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001455
Edward Cree267d9d72015-05-06 00:59:18 +01001456 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_DRV_ATTACH, inbuf, sizeof(inbuf),
1457 outbuf, sizeof(outbuf), &outlen);
1458 /* If we're not the primary PF, trying to ATTACH with a FIRMWARE_ID
1459 * specified will fail with EPERM, and we have to tell the MC we don't
1460 * care what firmware we get.
1461 */
1462 if (rc == -EPERM) {
1463 netif_dbg(efx, probe, efx->net_dev,
1464 "efx_mcdi_drv_attach with fw-variant setting failed EPERM, trying without it\n");
1465 MCDI_SET_DWORD(inbuf, DRV_ATTACH_IN_FIRMWARE_ID,
1466 MC_CMD_FW_DONT_CARE);
1467 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_DRV_ATTACH, inbuf,
1468 sizeof(inbuf), outbuf, sizeof(outbuf),
1469 &outlen);
1470 }
1471 if (rc) {
1472 efx_mcdi_display_error(efx, MC_CMD_DRV_ATTACH, sizeof(inbuf),
1473 outbuf, outlen, rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001474 goto fail;
Edward Cree267d9d72015-05-06 00:59:18 +01001475 }
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001476 if (outlen < MC_CMD_DRV_ATTACH_OUT_LEN) {
1477 rc = -EIO;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001478 goto fail;
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001479 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001480
Ben Hutchings8349f7f2013-10-16 18:32:34 +01001481 if (driver_operating) {
1482 if (outlen >= MC_CMD_DRV_ATTACH_EXT_OUT_LEN) {
1483 efx->mcdi->fn_flags =
1484 MCDI_DWORD(outbuf,
1485 DRV_ATTACH_EXT_OUT_FUNC_FLAGS);
1486 } else {
1487 /* Synthesise flags for Siena */
1488 efx->mcdi->fn_flags =
1489 1 << MC_CMD_DRV_ATTACH_EXT_OUT_FLAG_LINKCTRL |
1490 1 << MC_CMD_DRV_ATTACH_EXT_OUT_FLAG_TRUSTED |
1491 (efx_port_num(efx) == 0) <<
1492 MC_CMD_DRV_ATTACH_EXT_OUT_FLAG_PRIMARY;
1493 }
1494 }
1495
Ben Hutchingsecb1c9c2013-10-07 20:10:11 +01001496 /* We currently assume we have control of the external link
1497 * and are completely trusted by firmware. Abort probing
1498 * if that's not true for this function.
1499 */
Ben Hutchingsecb1c9c2013-10-07 20:10:11 +01001500
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001501 if (was_attached != NULL)
1502 *was_attached = MCDI_DWORD(outbuf, DRV_ATTACH_OUT_OLD_STATE);
1503 return 0;
1504
1505fail:
Ben Hutchings62776d02010-06-23 11:30:07 +00001506 netif_err(efx, probe, efx->net_dev, "%s: failed rc=%d\n", __func__, rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001507 return rc;
1508}
1509
1510int efx_mcdi_get_board_cfg(struct efx_nic *efx, u8 *mac_address,
Matthew Slattery6aa9c7f2010-07-14 15:36:19 +01001511 u16 *fw_subtype_list, u32 *capabilities)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001512{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001513 MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_BOARD_CFG_OUT_LENMAX);
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +01001514 size_t outlen, i;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001515 int port_num = efx_port_num(efx);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001516 int rc;
1517
1518 BUILD_BUG_ON(MC_CMD_GET_BOARD_CFG_IN_LEN != 0);
Edward Creecd84ff42014-03-07 18:27:41 +00001519 /* we need __aligned(2) for ether_addr_copy */
1520 BUILD_BUG_ON(MC_CMD_GET_BOARD_CFG_OUT_MAC_ADDR_BASE_PORT0_OFST & 1);
1521 BUILD_BUG_ON(MC_CMD_GET_BOARD_CFG_OUT_MAC_ADDR_BASE_PORT1_OFST & 1);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001522
1523 rc = efx_mcdi_rpc(efx, MC_CMD_GET_BOARD_CFG, NULL, 0,
1524 outbuf, sizeof(outbuf), &outlen);
1525 if (rc)
1526 goto fail;
1527
Ben Hutchings05a93202011-12-20 00:44:06 +00001528 if (outlen < MC_CMD_GET_BOARD_CFG_OUT_LENMIN) {
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001529 rc = -EIO;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001530 goto fail;
1531 }
1532
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001533 if (mac_address)
Edward Creecd84ff42014-03-07 18:27:41 +00001534 ether_addr_copy(mac_address,
1535 port_num ?
1536 MCDI_PTR(outbuf, GET_BOARD_CFG_OUT_MAC_ADDR_BASE_PORT1) :
1537 MCDI_PTR(outbuf, GET_BOARD_CFG_OUT_MAC_ADDR_BASE_PORT0));
Ben Hutchingsbfeed902012-09-07 00:58:10 +01001538 if (fw_subtype_list) {
Ben Hutchingsbfeed902012-09-07 00:58:10 +01001539 for (i = 0;
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +01001540 i < MCDI_VAR_ARRAY_LEN(outlen,
1541 GET_BOARD_CFG_OUT_FW_SUBTYPE_LIST);
1542 i++)
1543 fw_subtype_list[i] = MCDI_ARRAY_WORD(
1544 outbuf, GET_BOARD_CFG_OUT_FW_SUBTYPE_LIST, i);
1545 for (; i < MC_CMD_GET_BOARD_CFG_OUT_FW_SUBTYPE_LIST_MAXNUM; i++)
1546 fw_subtype_list[i] = 0;
Ben Hutchingsbfeed902012-09-07 00:58:10 +01001547 }
Matthew Slattery6aa9c7f2010-07-14 15:36:19 +01001548 if (capabilities) {
1549 if (port_num)
1550 *capabilities = MCDI_DWORD(outbuf,
1551 GET_BOARD_CFG_OUT_CAPABILITIES_PORT1);
1552 else
1553 *capabilities = MCDI_DWORD(outbuf,
1554 GET_BOARD_CFG_OUT_CAPABILITIES_PORT0);
1555 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001556
1557 return 0;
1558
1559fail:
Ben Hutchings62776d02010-06-23 11:30:07 +00001560 netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d len=%d\n",
1561 __func__, rc, (int)outlen);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001562
1563 return rc;
1564}
1565
1566int efx_mcdi_log_ctrl(struct efx_nic *efx, bool evq, bool uart, u32 dest_evq)
1567{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001568 MCDI_DECLARE_BUF(inbuf, MC_CMD_LOG_CTRL_IN_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001569 u32 dest = 0;
1570 int rc;
1571
1572 if (uart)
1573 dest |= MC_CMD_LOG_CTRL_IN_LOG_DEST_UART;
1574 if (evq)
1575 dest |= MC_CMD_LOG_CTRL_IN_LOG_DEST_EVQ;
1576
1577 MCDI_SET_DWORD(inbuf, LOG_CTRL_IN_LOG_DEST, dest);
1578 MCDI_SET_DWORD(inbuf, LOG_CTRL_IN_LOG_DEST_EVQ, dest_evq);
1579
1580 BUILD_BUG_ON(MC_CMD_LOG_CTRL_OUT_LEN != 0);
1581
1582 rc = efx_mcdi_rpc(efx, MC_CMD_LOG_CTRL, inbuf, sizeof(inbuf),
1583 NULL, 0, NULL);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001584 return rc;
1585}
1586
1587int efx_mcdi_nvram_types(struct efx_nic *efx, u32 *nvram_types_out)
1588{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001589 MCDI_DECLARE_BUF(outbuf, MC_CMD_NVRAM_TYPES_OUT_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001590 size_t outlen;
1591 int rc;
1592
1593 BUILD_BUG_ON(MC_CMD_NVRAM_TYPES_IN_LEN != 0);
1594
1595 rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_TYPES, NULL, 0,
1596 outbuf, sizeof(outbuf), &outlen);
1597 if (rc)
1598 goto fail;
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001599 if (outlen < MC_CMD_NVRAM_TYPES_OUT_LEN) {
1600 rc = -EIO;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001601 goto fail;
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001602 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001603
1604 *nvram_types_out = MCDI_DWORD(outbuf, NVRAM_TYPES_OUT_TYPES);
1605 return 0;
1606
1607fail:
Ben Hutchings62776d02010-06-23 11:30:07 +00001608 netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d\n",
1609 __func__, rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001610 return rc;
1611}
1612
1613int efx_mcdi_nvram_info(struct efx_nic *efx, unsigned int type,
1614 size_t *size_out, size_t *erase_size_out,
1615 bool *protected_out)
1616{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001617 MCDI_DECLARE_BUF(inbuf, MC_CMD_NVRAM_INFO_IN_LEN);
1618 MCDI_DECLARE_BUF(outbuf, MC_CMD_NVRAM_INFO_OUT_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001619 size_t outlen;
1620 int rc;
1621
1622 MCDI_SET_DWORD(inbuf, NVRAM_INFO_IN_TYPE, type);
1623
1624 rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_INFO, inbuf, sizeof(inbuf),
1625 outbuf, sizeof(outbuf), &outlen);
1626 if (rc)
1627 goto fail;
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001628 if (outlen < MC_CMD_NVRAM_INFO_OUT_LEN) {
1629 rc = -EIO;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001630 goto fail;
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001631 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001632
1633 *size_out = MCDI_DWORD(outbuf, NVRAM_INFO_OUT_SIZE);
1634 *erase_size_out = MCDI_DWORD(outbuf, NVRAM_INFO_OUT_ERASESIZE);
1635 *protected_out = !!(MCDI_DWORD(outbuf, NVRAM_INFO_OUT_FLAGS) &
Ben Hutchings05a93202011-12-20 00:44:06 +00001636 (1 << MC_CMD_NVRAM_INFO_OUT_PROTECTED_LBN));
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001637 return 0;
1638
1639fail:
Ben Hutchings62776d02010-06-23 11:30:07 +00001640 netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d\n", __func__, rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001641 return rc;
1642}
1643
Ben Hutchings2e803402010-02-03 09:31:01 +00001644static int efx_mcdi_nvram_test(struct efx_nic *efx, unsigned int type)
1645{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001646 MCDI_DECLARE_BUF(inbuf, MC_CMD_NVRAM_TEST_IN_LEN);
1647 MCDI_DECLARE_BUF(outbuf, MC_CMD_NVRAM_TEST_OUT_LEN);
Ben Hutchings2e803402010-02-03 09:31:01 +00001648 int rc;
1649
1650 MCDI_SET_DWORD(inbuf, NVRAM_TEST_IN_TYPE, type);
1651
1652 rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_TEST, inbuf, sizeof(inbuf),
1653 outbuf, sizeof(outbuf), NULL);
1654 if (rc)
1655 return rc;
1656
1657 switch (MCDI_DWORD(outbuf, NVRAM_TEST_OUT_RESULT)) {
1658 case MC_CMD_NVRAM_TEST_PASS:
1659 case MC_CMD_NVRAM_TEST_NOTSUPP:
1660 return 0;
1661 default:
1662 return -EIO;
1663 }
1664}
1665
1666int efx_mcdi_nvram_test_all(struct efx_nic *efx)
1667{
1668 u32 nvram_types;
1669 unsigned int type;
1670 int rc;
1671
1672 rc = efx_mcdi_nvram_types(efx, &nvram_types);
1673 if (rc)
Ben Hutchingsb548a982010-04-28 09:28:36 +00001674 goto fail1;
Ben Hutchings2e803402010-02-03 09:31:01 +00001675
1676 type = 0;
1677 while (nvram_types != 0) {
1678 if (nvram_types & 1) {
1679 rc = efx_mcdi_nvram_test(efx, type);
1680 if (rc)
Ben Hutchingsb548a982010-04-28 09:28:36 +00001681 goto fail2;
Ben Hutchings2e803402010-02-03 09:31:01 +00001682 }
1683 type++;
1684 nvram_types >>= 1;
1685 }
1686
1687 return 0;
Ben Hutchingsb548a982010-04-28 09:28:36 +00001688
1689fail2:
Ben Hutchings62776d02010-06-23 11:30:07 +00001690 netif_err(efx, hw, efx->net_dev, "%s: failed type=%u\n",
1691 __func__, type);
Ben Hutchingsb548a982010-04-28 09:28:36 +00001692fail1:
Ben Hutchings62776d02010-06-23 11:30:07 +00001693 netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d\n", __func__, rc);
Ben Hutchingsb548a982010-04-28 09:28:36 +00001694 return rc;
Ben Hutchings2e803402010-02-03 09:31:01 +00001695}
1696
Edward Cree267d9d72015-05-06 00:59:18 +01001697/* Returns 1 if an assertion was read, 0 if no assertion had fired,
1698 * negative on error.
1699 */
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001700static int efx_mcdi_read_assertion(struct efx_nic *efx)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001701{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001702 MCDI_DECLARE_BUF(inbuf, MC_CMD_GET_ASSERTS_IN_LEN);
Jon Cooperaa09a3d2015-05-20 11:10:41 +01001703 MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_ASSERTS_OUT_LEN);
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +01001704 unsigned int flags, index;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001705 const char *reason;
1706 size_t outlen;
1707 int retry;
1708 int rc;
1709
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001710 /* Attempt to read any stored assertion state before we reboot
1711 * the mcfw out of the assertion handler. Retry twice, once
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001712 * because a boot-time assertion might cause this command to fail
1713 * with EINTR. And once again because GET_ASSERTS can race with
1714 * MC_CMD_REBOOT running on the other port. */
1715 retry = 2;
1716 do {
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001717 MCDI_SET_DWORD(inbuf, GET_ASSERTS_IN_CLEAR, 1);
Edward Cree1e0b8122013-05-31 18:36:12 +01001718 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_GET_ASSERTS,
1719 inbuf, MC_CMD_GET_ASSERTS_IN_LEN,
1720 outbuf, sizeof(outbuf), &outlen);
Edward Cree267d9d72015-05-06 00:59:18 +01001721 if (rc == -EPERM)
1722 return 0;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001723 } while ((rc == -EINTR || rc == -EIO) && retry-- > 0);
1724
Edward Cree1e0b8122013-05-31 18:36:12 +01001725 if (rc) {
1726 efx_mcdi_display_error(efx, MC_CMD_GET_ASSERTS,
1727 MC_CMD_GET_ASSERTS_IN_LEN, outbuf,
1728 outlen, rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001729 return rc;
Edward Cree1e0b8122013-05-31 18:36:12 +01001730 }
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001731 if (outlen < MC_CMD_GET_ASSERTS_OUT_LEN)
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001732 return -EIO;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001733
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001734 /* Print out any recorded assertion state */
1735 flags = MCDI_DWORD(outbuf, GET_ASSERTS_OUT_GLOBAL_FLAGS);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001736 if (flags == MC_CMD_GET_ASSERTS_FLAGS_NO_FAILS)
1737 return 0;
1738
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001739 reason = (flags == MC_CMD_GET_ASSERTS_FLAGS_SYS_FAIL)
1740 ? "system-level assertion"
1741 : (flags == MC_CMD_GET_ASSERTS_FLAGS_THR_FAIL)
1742 ? "thread-level assertion"
1743 : (flags == MC_CMD_GET_ASSERTS_FLAGS_WDOG_FIRED)
1744 ? "watchdog reset"
1745 : "unknown assertion";
Ben Hutchings62776d02010-06-23 11:30:07 +00001746 netif_err(efx, hw, efx->net_dev,
1747 "MCPU %s at PC = 0x%.8x in thread 0x%.8x\n", reason,
1748 MCDI_DWORD(outbuf, GET_ASSERTS_OUT_SAVED_PC_OFFS),
1749 MCDI_DWORD(outbuf, GET_ASSERTS_OUT_THREAD_OFFS));
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001750
1751 /* Print out the registers */
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +01001752 for (index = 0;
1753 index < MC_CMD_GET_ASSERTS_OUT_GP_REGS_OFFS_NUM;
1754 index++)
1755 netif_err(efx, hw, efx->net_dev, "R%.2d (?): 0x%.8x\n",
1756 1 + index,
1757 MCDI_ARRAY_DWORD(outbuf, GET_ASSERTS_OUT_GP_REGS_OFFS,
1758 index));
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001759
Edward Cree267d9d72015-05-06 00:59:18 +01001760 return 1;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001761}
1762
Edward Cree267d9d72015-05-06 00:59:18 +01001763static int efx_mcdi_exit_assertion(struct efx_nic *efx)
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001764{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001765 MCDI_DECLARE_BUF(inbuf, MC_CMD_REBOOT_IN_LEN);
Edward Cree267d9d72015-05-06 00:59:18 +01001766 int rc;
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001767
Ben Hutchings0f1e54a2012-07-02 23:37:40 +01001768 /* If the MC is running debug firmware, it might now be
1769 * waiting for a debugger to attach, but we just want it to
1770 * reboot. We set a flag that makes the command a no-op if it
Edward Cree267d9d72015-05-06 00:59:18 +01001771 * has already done so.
1772 * The MCDI will thus return either 0 or -EIO.
Ben Hutchings0f1e54a2012-07-02 23:37:40 +01001773 */
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001774 BUILD_BUG_ON(MC_CMD_REBOOT_OUT_LEN != 0);
1775 MCDI_SET_DWORD(inbuf, REBOOT_IN_FLAGS,
1776 MC_CMD_REBOOT_FLAGS_AFTER_ASSERTION);
Edward Cree267d9d72015-05-06 00:59:18 +01001777 rc = efx_mcdi_rpc_quiet(efx, MC_CMD_REBOOT, inbuf, MC_CMD_REBOOT_IN_LEN,
1778 NULL, 0, NULL);
1779 if (rc == -EIO)
1780 rc = 0;
1781 if (rc)
1782 efx_mcdi_display_error(efx, MC_CMD_REBOOT, MC_CMD_REBOOT_IN_LEN,
1783 NULL, 0, rc);
1784 return rc;
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001785}
1786
1787int efx_mcdi_handle_assertion(struct efx_nic *efx)
1788{
1789 int rc;
1790
1791 rc = efx_mcdi_read_assertion(efx);
Edward Cree267d9d72015-05-06 00:59:18 +01001792 if (rc <= 0)
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001793 return rc;
1794
Edward Cree267d9d72015-05-06 00:59:18 +01001795 return efx_mcdi_exit_assertion(efx);
Steve Hodgson8b2103a2010-02-03 09:30:17 +00001796}
1797
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001798void efx_mcdi_set_id_led(struct efx_nic *efx, enum efx_led_mode mode)
1799{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001800 MCDI_DECLARE_BUF(inbuf, MC_CMD_SET_ID_LED_IN_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001801 int rc;
1802
1803 BUILD_BUG_ON(EFX_LED_OFF != MC_CMD_LED_OFF);
1804 BUILD_BUG_ON(EFX_LED_ON != MC_CMD_LED_ON);
1805 BUILD_BUG_ON(EFX_LED_DEFAULT != MC_CMD_LED_DEFAULT);
1806
1807 BUILD_BUG_ON(MC_CMD_SET_ID_LED_OUT_LEN != 0);
1808
1809 MCDI_SET_DWORD(inbuf, SET_ID_LED_IN_STATE, mode);
1810
1811 rc = efx_mcdi_rpc(efx, MC_CMD_SET_ID_LED, inbuf, sizeof(inbuf),
1812 NULL, 0, NULL);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001813}
1814
Jon Cooper3e336262014-01-17 19:48:06 +00001815static int efx_mcdi_reset_func(struct efx_nic *efx)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001816{
Jon Cooper3e336262014-01-17 19:48:06 +00001817 MCDI_DECLARE_BUF(inbuf, MC_CMD_ENTITY_RESET_IN_LEN);
1818 int rc;
1819
1820 BUILD_BUG_ON(MC_CMD_ENTITY_RESET_OUT_LEN != 0);
1821 MCDI_POPULATE_DWORD_1(inbuf, ENTITY_RESET_IN_FLAG,
1822 ENTITY_RESET_IN_FUNCTION_RESOURCE_RESET, 1);
1823 rc = efx_mcdi_rpc(efx, MC_CMD_ENTITY_RESET, inbuf, sizeof(inbuf),
1824 NULL, 0, NULL);
1825 return rc;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001826}
1827
Ben Hutchings6bff8612012-09-18 02:33:52 +01001828static int efx_mcdi_reset_mc(struct efx_nic *efx)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001829{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001830 MCDI_DECLARE_BUF(inbuf, MC_CMD_REBOOT_IN_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001831 int rc;
1832
1833 BUILD_BUG_ON(MC_CMD_REBOOT_OUT_LEN != 0);
1834 MCDI_SET_DWORD(inbuf, REBOOT_IN_FLAGS, 0);
1835 rc = efx_mcdi_rpc(efx, MC_CMD_REBOOT, inbuf, sizeof(inbuf),
1836 NULL, 0, NULL);
1837 /* White is black, and up is down */
1838 if (rc == -EIO)
1839 return 0;
1840 if (rc == 0)
1841 rc = -EIO;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001842 return rc;
1843}
1844
Ben Hutchings6bff8612012-09-18 02:33:52 +01001845enum reset_type efx_mcdi_map_reset_reason(enum reset_type reason)
1846{
1847 return RESET_TYPE_RECOVER_OR_ALL;
1848}
1849
1850int efx_mcdi_reset(struct efx_nic *efx, enum reset_type method)
1851{
1852 int rc;
1853
Edward Creee2835462014-04-16 19:27:48 +01001854 /* If MCDI is down, we can't handle_assertion */
1855 if (method == RESET_TYPE_MCDI_TIMEOUT) {
1856 rc = pci_reset_function(efx->pci_dev);
1857 if (rc)
1858 return rc;
1859 /* Re-enable polled MCDI completion */
1860 if (efx->mcdi) {
1861 struct efx_mcdi_iface *mcdi = efx_mcdi(efx);
1862 mcdi->mode = MCDI_MODE_POLL;
1863 }
1864 return 0;
1865 }
1866
Ben Hutchings6bff8612012-09-18 02:33:52 +01001867 /* Recover from a failed assertion pre-reset */
1868 rc = efx_mcdi_handle_assertion(efx);
1869 if (rc)
1870 return rc;
1871
Jon Cooper087e9022015-05-20 11:11:35 +01001872 if (method == RESET_TYPE_DATAPATH)
1873 return 0;
1874 else if (method == RESET_TYPE_WORLD)
Ben Hutchings6bff8612012-09-18 02:33:52 +01001875 return efx_mcdi_reset_mc(efx);
1876 else
Jon Cooper3e336262014-01-17 19:48:06 +00001877 return efx_mcdi_reset_func(efx);
Ben Hutchings6bff8612012-09-18 02:33:52 +01001878}
1879
stephen hemmingerd2156972010-10-18 05:27:31 +00001880static int efx_mcdi_wol_filter_set(struct efx_nic *efx, u32 type,
1881 const u8 *mac, int *id_out)
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001882{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001883 MCDI_DECLARE_BUF(inbuf, MC_CMD_WOL_FILTER_SET_IN_LEN);
1884 MCDI_DECLARE_BUF(outbuf, MC_CMD_WOL_FILTER_SET_OUT_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001885 size_t outlen;
1886 int rc;
1887
1888 MCDI_SET_DWORD(inbuf, WOL_FILTER_SET_IN_WOL_TYPE, type);
1889 MCDI_SET_DWORD(inbuf, WOL_FILTER_SET_IN_FILTER_MODE,
1890 MC_CMD_FILTER_MODE_SIMPLE);
Edward Creecd84ff42014-03-07 18:27:41 +00001891 ether_addr_copy(MCDI_PTR(inbuf, WOL_FILTER_SET_IN_MAGIC_MAC), mac);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001892
1893 rc = efx_mcdi_rpc(efx, MC_CMD_WOL_FILTER_SET, inbuf, sizeof(inbuf),
1894 outbuf, sizeof(outbuf), &outlen);
1895 if (rc)
1896 goto fail;
1897
1898 if (outlen < MC_CMD_WOL_FILTER_SET_OUT_LEN) {
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001899 rc = -EIO;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001900 goto fail;
1901 }
1902
1903 *id_out = (int)MCDI_DWORD(outbuf, WOL_FILTER_SET_OUT_FILTER_ID);
1904
1905 return 0;
1906
1907fail:
1908 *id_out = -1;
Ben Hutchings62776d02010-06-23 11:30:07 +00001909 netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d\n", __func__, rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001910 return rc;
1911
1912}
1913
1914
1915int
1916efx_mcdi_wol_filter_set_magic(struct efx_nic *efx, const u8 *mac, int *id_out)
1917{
1918 return efx_mcdi_wol_filter_set(efx, MC_CMD_WOL_TYPE_MAGIC, mac, id_out);
1919}
1920
1921
1922int efx_mcdi_wol_filter_get_magic(struct efx_nic *efx, int *id_out)
1923{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001924 MCDI_DECLARE_BUF(outbuf, MC_CMD_WOL_FILTER_GET_OUT_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001925 size_t outlen;
1926 int rc;
1927
1928 rc = efx_mcdi_rpc(efx, MC_CMD_WOL_FILTER_GET, NULL, 0,
1929 outbuf, sizeof(outbuf), &outlen);
1930 if (rc)
1931 goto fail;
1932
1933 if (outlen < MC_CMD_WOL_FILTER_GET_OUT_LEN) {
Ben Hutchings00bbb4a2010-04-28 09:27:14 +00001934 rc = -EIO;
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001935 goto fail;
1936 }
1937
1938 *id_out = (int)MCDI_DWORD(outbuf, WOL_FILTER_GET_OUT_FILTER_ID);
1939
1940 return 0;
1941
1942fail:
1943 *id_out = -1;
Ben Hutchings62776d02010-06-23 11:30:07 +00001944 netif_err(efx, hw, efx->net_dev, "%s: failed rc=%d\n", __func__, rc);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001945 return rc;
1946}
1947
1948
1949int efx_mcdi_wol_filter_remove(struct efx_nic *efx, int id)
1950{
Ben Hutchings59cfc472012-09-14 17:30:10 +01001951 MCDI_DECLARE_BUF(inbuf, MC_CMD_WOL_FILTER_REMOVE_IN_LEN);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001952 int rc;
1953
1954 MCDI_SET_DWORD(inbuf, WOL_FILTER_REMOVE_IN_FILTER_ID, (u32)id);
1955
1956 rc = efx_mcdi_rpc(efx, MC_CMD_WOL_FILTER_REMOVE, inbuf, sizeof(inbuf),
1957 NULL, 0, NULL);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001958 return rc;
1959}
1960
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001961int efx_mcdi_flush_rxqs(struct efx_nic *efx)
1962{
1963 struct efx_channel *channel;
1964 struct efx_rx_queue *rx_queue;
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +01001965 MCDI_DECLARE_BUF(inbuf,
1966 MC_CMD_FLUSH_RX_QUEUES_IN_LEN(EFX_MAX_CHANNELS));
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001967 int rc, count;
1968
Ben Hutchings45078372012-09-19 02:53:34 +01001969 BUILD_BUG_ON(EFX_MAX_CHANNELS >
1970 MC_CMD_FLUSH_RX_QUEUES_IN_QID_OFST_MAXNUM);
1971
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001972 count = 0;
1973 efx_for_each_channel(channel, efx) {
1974 efx_for_each_channel_rx_queue(rx_queue, channel) {
1975 if (rx_queue->flush_pending) {
1976 rx_queue->flush_pending = false;
1977 atomic_dec(&efx->rxq_flush_pending);
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +01001978 MCDI_SET_ARRAY_DWORD(
1979 inbuf, FLUSH_RX_QUEUES_IN_QID_OFST,
1980 count, efx_rx_queue_index(rx_queue));
1981 count++;
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001982 }
1983 }
1984 }
1985
Ben Hutchingsc5bb0e92012-09-14 17:31:33 +01001986 rc = efx_mcdi_rpc(efx, MC_CMD_FLUSH_RX_QUEUES, inbuf,
1987 MC_CMD_FLUSH_RX_QUEUES_IN_LEN(count), NULL, 0, NULL);
Ben Hutchingsbbec9692012-09-11 18:25:13 +01001988 WARN_ON(rc < 0);
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001989
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001990 return rc;
1991}
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001992
1993int efx_mcdi_wol_filter_reset(struct efx_nic *efx)
1994{
1995 int rc;
1996
1997 rc = efx_mcdi_rpc(efx, MC_CMD_WOL_FILTER_RESET, NULL, 0, NULL, 0, NULL);
Ben Hutchingsafd4aea2009-11-29 15:15:25 +00001998 return rc;
1999}
2000
Daniel Pieczko34ccfe62015-07-21 15:09:43 +01002001int efx_mcdi_set_workaround(struct efx_nic *efx, u32 type, bool enabled,
2002 unsigned int *flags)
Ben Hutchings8127d662013-08-29 19:19:29 +01002003{
2004 MCDI_DECLARE_BUF(inbuf, MC_CMD_WORKAROUND_IN_LEN);
Daniel Pieczko34ccfe62015-07-21 15:09:43 +01002005 MCDI_DECLARE_BUF(outbuf, MC_CMD_WORKAROUND_EXT_OUT_LEN);
2006 size_t outlen;
2007 int rc;
Ben Hutchings8127d662013-08-29 19:19:29 +01002008
2009 BUILD_BUG_ON(MC_CMD_WORKAROUND_OUT_LEN != 0);
2010 MCDI_SET_DWORD(inbuf, WORKAROUND_IN_TYPE, type);
2011 MCDI_SET_DWORD(inbuf, WORKAROUND_IN_ENABLED, enabled);
Daniel Pieczko34ccfe62015-07-21 15:09:43 +01002012 rc = efx_mcdi_rpc(efx, MC_CMD_WORKAROUND, inbuf, sizeof(inbuf),
2013 outbuf, sizeof(outbuf), &outlen);
2014 if (rc)
2015 return rc;
2016
2017 if (!flags)
2018 return 0;
2019
2020 if (outlen >= MC_CMD_WORKAROUND_EXT_OUT_LEN)
2021 *flags = MCDI_DWORD(outbuf, WORKAROUND_EXT_OUT_FLAGS);
2022 else
2023 *flags = 0;
2024
2025 return 0;
Ben Hutchings8127d662013-08-29 19:19:29 +01002026}
2027
Edward Cree267d9d72015-05-06 00:59:18 +01002028int efx_mcdi_get_workarounds(struct efx_nic *efx, unsigned int *impl_out,
2029 unsigned int *enabled_out)
2030{
Jon Cooperaa09a3d2015-05-20 11:10:41 +01002031 MCDI_DECLARE_BUF(outbuf, MC_CMD_GET_WORKAROUNDS_OUT_LEN);
Edward Cree267d9d72015-05-06 00:59:18 +01002032 size_t outlen;
2033 int rc;
2034
2035 rc = efx_mcdi_rpc(efx, MC_CMD_GET_WORKAROUNDS, NULL, 0,
2036 outbuf, sizeof(outbuf), &outlen);
2037 if (rc)
2038 goto fail;
2039
2040 if (outlen < MC_CMD_GET_WORKAROUNDS_OUT_LEN) {
2041 rc = -EIO;
2042 goto fail;
2043 }
2044
2045 if (impl_out)
2046 *impl_out = MCDI_DWORD(outbuf, GET_WORKAROUNDS_OUT_IMPLEMENTED);
2047
2048 if (enabled_out)
2049 *enabled_out = MCDI_DWORD(outbuf, GET_WORKAROUNDS_OUT_ENABLED);
2050
2051 return 0;
2052
2053fail:
Edward Cree832dc9e2015-07-21 15:09:31 +01002054 /* Older firmware lacks GET_WORKAROUNDS and this isn't especially
2055 * terrifying. The call site will have to deal with it though.
2056 */
Jon Cooper34e7aef2017-01-27 15:02:39 +00002057 netif_cond_dbg(efx, hw, efx->net_dev, rc == -ENOSYS, err,
2058 "%s: failed rc=%d\n", __func__, rc);
Edward Cree267d9d72015-05-06 00:59:18 +01002059 return rc;
2060}
2061
Ben Hutchings45a3fd52012-11-28 04:38:14 +00002062#ifdef CONFIG_SFC_MTD
2063
2064#define EFX_MCDI_NVRAM_LEN_MAX 128
2065
2066static int efx_mcdi_nvram_update_start(struct efx_nic *efx, unsigned int type)
2067{
2068 MCDI_DECLARE_BUF(inbuf, MC_CMD_NVRAM_UPDATE_START_IN_LEN);
2069 int rc;
2070
2071 MCDI_SET_DWORD(inbuf, NVRAM_UPDATE_START_IN_TYPE, type);
2072
2073 BUILD_BUG_ON(MC_CMD_NVRAM_UPDATE_START_OUT_LEN != 0);
2074
2075 rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_UPDATE_START, inbuf, sizeof(inbuf),
2076 NULL, 0, NULL);
Ben Hutchings45a3fd52012-11-28 04:38:14 +00002077 return rc;
2078}
2079
2080static int efx_mcdi_nvram_read(struct efx_nic *efx, unsigned int type,
2081 loff_t offset, u8 *buffer, size_t length)
2082{
2083 MCDI_DECLARE_BUF(inbuf, MC_CMD_NVRAM_READ_IN_LEN);
2084 MCDI_DECLARE_BUF(outbuf,
2085 MC_CMD_NVRAM_READ_OUT_LEN(EFX_MCDI_NVRAM_LEN_MAX));
2086 size_t outlen;
2087 int rc;
2088
2089 MCDI_SET_DWORD(inbuf, NVRAM_READ_IN_TYPE, type);
2090 MCDI_SET_DWORD(inbuf, NVRAM_READ_IN_OFFSET, offset);
2091 MCDI_SET_DWORD(inbuf, NVRAM_READ_IN_LENGTH, length);
2092
2093 rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_READ, inbuf, sizeof(inbuf),
2094 outbuf, sizeof(outbuf), &outlen);
2095 if (rc)
Edward Cree1e0b8122013-05-31 18:36:12 +01002096 return rc;
Ben Hutchings45a3fd52012-11-28 04:38:14 +00002097
2098 memcpy(buffer, MCDI_PTR(outbuf, NVRAM_READ_OUT_READ_BUFFER), length);
2099 return 0;
Ben Hutchings45a3fd52012-11-28 04:38:14 +00002100}
2101
2102static int efx_mcdi_nvram_write(struct efx_nic *efx, unsigned int type,
2103 loff_t offset, const u8 *buffer, size_t length)
2104{
2105 MCDI_DECLARE_BUF(inbuf,
2106 MC_CMD_NVRAM_WRITE_IN_LEN(EFX_MCDI_NVRAM_LEN_MAX));
2107 int rc;
2108
2109 MCDI_SET_DWORD(inbuf, NVRAM_WRITE_IN_TYPE, type);
2110 MCDI_SET_DWORD(inbuf, NVRAM_WRITE_IN_OFFSET, offset);
2111 MCDI_SET_DWORD(inbuf, NVRAM_WRITE_IN_LENGTH, length);
2112 memcpy(MCDI_PTR(inbuf, NVRAM_WRITE_IN_WRITE_BUFFER), buffer, length);
2113
2114 BUILD_BUG_ON(MC_CMD_NVRAM_WRITE_OUT_LEN != 0);
2115
2116 rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_WRITE, inbuf,
2117 ALIGN(MC_CMD_NVRAM_WRITE_IN_LEN(length), 4),
2118 NULL, 0, NULL);
Ben Hutchings45a3fd52012-11-28 04:38:14 +00002119 return rc;
2120}
2121
2122static int efx_mcdi_nvram_erase(struct efx_nic *efx, unsigned int type,
2123 loff_t offset, size_t length)
2124{
2125 MCDI_DECLARE_BUF(inbuf, MC_CMD_NVRAM_ERASE_IN_LEN);
2126 int rc;
2127
2128 MCDI_SET_DWORD(inbuf, NVRAM_ERASE_IN_TYPE, type);
2129 MCDI_SET_DWORD(inbuf, NVRAM_ERASE_IN_OFFSET, offset);
2130 MCDI_SET_DWORD(inbuf, NVRAM_ERASE_IN_LENGTH, length);
2131
2132 BUILD_BUG_ON(MC_CMD_NVRAM_ERASE_OUT_LEN != 0);
2133
2134 rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_ERASE, inbuf, sizeof(inbuf),
2135 NULL, 0, NULL);
Ben Hutchings45a3fd52012-11-28 04:38:14 +00002136 return rc;
2137}
2138
2139static int efx_mcdi_nvram_update_finish(struct efx_nic *efx, unsigned int type)
2140{
2141 MCDI_DECLARE_BUF(inbuf, MC_CMD_NVRAM_UPDATE_FINISH_IN_LEN);
2142 int rc;
2143
2144 MCDI_SET_DWORD(inbuf, NVRAM_UPDATE_FINISH_IN_TYPE, type);
2145
2146 BUILD_BUG_ON(MC_CMD_NVRAM_UPDATE_FINISH_OUT_LEN != 0);
2147
2148 rc = efx_mcdi_rpc(efx, MC_CMD_NVRAM_UPDATE_FINISH, inbuf, sizeof(inbuf),
2149 NULL, 0, NULL);
Ben Hutchings45a3fd52012-11-28 04:38:14 +00002150 return rc;
2151}
2152
2153int efx_mcdi_mtd_read(struct mtd_info *mtd, loff_t start,
2154 size_t len, size_t *retlen, u8 *buffer)
2155{
2156 struct efx_mcdi_mtd_partition *part = to_efx_mcdi_mtd_partition(mtd);
2157 struct efx_nic *efx = mtd->priv;
2158 loff_t offset = start;
2159 loff_t end = min_t(loff_t, start + len, mtd->size);
2160 size_t chunk;
2161 int rc = 0;
2162
2163 while (offset < end) {
2164 chunk = min_t(size_t, end - offset, EFX_MCDI_NVRAM_LEN_MAX);
2165 rc = efx_mcdi_nvram_read(efx, part->nvram_type, offset,
2166 buffer, chunk);
2167 if (rc)
2168 goto out;
2169 offset += chunk;
2170 buffer += chunk;
2171 }
2172out:
2173 *retlen = offset - start;
2174 return rc;
2175}
2176
2177int efx_mcdi_mtd_erase(struct mtd_info *mtd, loff_t start, size_t len)
2178{
2179 struct efx_mcdi_mtd_partition *part = to_efx_mcdi_mtd_partition(mtd);
2180 struct efx_nic *efx = mtd->priv;
2181 loff_t offset = start & ~((loff_t)(mtd->erasesize - 1));
2182 loff_t end = min_t(loff_t, start + len, mtd->size);
2183 size_t chunk = part->common.mtd.erasesize;
2184 int rc = 0;
2185
2186 if (!part->updating) {
2187 rc = efx_mcdi_nvram_update_start(efx, part->nvram_type);
2188 if (rc)
2189 goto out;
2190 part->updating = true;
2191 }
2192
2193 /* The MCDI interface can in fact do multiple erase blocks at once;
2194 * but erasing may be slow, so we make multiple calls here to avoid
2195 * tripping the MCDI RPC timeout. */
2196 while (offset < end) {
2197 rc = efx_mcdi_nvram_erase(efx, part->nvram_type, offset,
2198 chunk);
2199 if (rc)
2200 goto out;
2201 offset += chunk;
2202 }
2203out:
2204 return rc;
2205}
2206
2207int efx_mcdi_mtd_write(struct mtd_info *mtd, loff_t start,
2208 size_t len, size_t *retlen, const u8 *buffer)
2209{
2210 struct efx_mcdi_mtd_partition *part = to_efx_mcdi_mtd_partition(mtd);
2211 struct efx_nic *efx = mtd->priv;
2212 loff_t offset = start;
2213 loff_t end = min_t(loff_t, start + len, mtd->size);
2214 size_t chunk;
2215 int rc = 0;
2216
2217 if (!part->updating) {
2218 rc = efx_mcdi_nvram_update_start(efx, part->nvram_type);
2219 if (rc)
2220 goto out;
2221 part->updating = true;
2222 }
2223
2224 while (offset < end) {
2225 chunk = min_t(size_t, end - offset, EFX_MCDI_NVRAM_LEN_MAX);
2226 rc = efx_mcdi_nvram_write(efx, part->nvram_type, offset,
2227 buffer, chunk);
2228 if (rc)
2229 goto out;
2230 offset += chunk;
2231 buffer += chunk;
2232 }
2233out:
2234 *retlen = offset - start;
2235 return rc;
2236}
2237
2238int efx_mcdi_mtd_sync(struct mtd_info *mtd)
2239{
2240 struct efx_mcdi_mtd_partition *part = to_efx_mcdi_mtd_partition(mtd);
2241 struct efx_nic *efx = mtd->priv;
2242 int rc = 0;
2243
2244 if (part->updating) {
2245 part->updating = false;
2246 rc = efx_mcdi_nvram_update_finish(efx, part->nvram_type);
2247 }
2248
2249 return rc;
2250}
2251
2252void efx_mcdi_mtd_rename(struct efx_mtd_partition *part)
2253{
2254 struct efx_mcdi_mtd_partition *mcdi_part =
2255 container_of(part, struct efx_mcdi_mtd_partition, common);
2256 struct efx_nic *efx = part->mtd.priv;
2257
2258 snprintf(part->name, sizeof(part->name), "%s %s:%02x",
2259 efx->name, part->type_name, mcdi_part->fw_subtype);
2260}
2261
2262#endif /* CONFIG_SFC_MTD */